From pavlin@icir.org Wed Jun 1 01:37:03 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:37:03 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/mld6igmp xorp/pim xorp/rtrmgr xorp/xrl/interfaces xorp/xrl/targets Message-ID: <200506010037.j510b3gx057755@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:37:03 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp pimsm4.tp pimsm6.tp mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_config.cc mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh pim pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh rtrmgr config.boot.sample xrl/interfaces mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh pim.xif pim_xif.cc pim_xif.hh xrl/targets mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: * Add new XRLs to get/set/reset the "IP Router Alert option check" flag per vif (for both MLD/IGMP and PIM): - get_vif_ip_router_alert_option_check - set_vif_ip_router_alert_option_check - reset_vif_ip_router_alert_option_check * If the "IP Router Alert option check" flag is enabled per vif, then drop the IGMP/MLD or PIM packets that don't have that IP option. [Note that this check does not apply for some protocol messages]. The default value is "false", i.e., don't check, because some protocol implementations may not set that flag properly (e.g., the OpenBSD IGMP host implementation). * Add new XORP configuration option per interface/vif for MLD/IGMP and PIM: "enable-ip-router-alert-option-check: bool" with default value of "false". Revision Changes Path 1.12 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/igmp.tp 1.12 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/mld.tp 1.24 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/pimsm4.tp 1.24 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/pimsm6.tp 1.31 +39 -35; commitid: e013429d01907ea6; xorp/mld6igmp/igmp_proto.cc 1.34 +36 -32; commitid: e013429d01907ea6; xorp/mld6igmp/mld6_proto.cc 1.6 +91 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_config.cc 1.23 +39 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_node.hh 1.38 +2 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_vif.cc 1.19 +15 -2; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_vif.hh 1.46 +54 -1; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc 1.32 +56 -7; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_node.hh 1.14 +44 -1; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_shell_funcs.sh 1.40 +76 -1; commitid: e013429d01907ea6; xorp/pim/pim_config.cc 1.56 +67 -2; commitid: e013429d01907ea6; xorp/pim/pim_node.hh 1.54 +44 -38; commitid: e013429d01907ea6; xorp/pim/pim_vif.cc 1.36 +13 -1; commitid: e013429d01907ea6; xorp/pim/pim_vif.hh 1.88 +52 -1; commitid: e013429d01907ea6; xorp/pim/xrl_pim_node.cc 1.62 +65 -7; commitid: e013429d01907ea6; xorp/pim/xrl_pim_node.hh 1.30 +44 -1; commitid: e013429d01907ea6; xorp/pim/xrl_pim_shell_funcs.sh 1.28 +5 -1; commitid: e013429d01907ea6; xorp/rtrmgr/config.boot.sample 1.6 +46 -10; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp.xif 1.18 +107 -1; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp_xif.cc 1.16 +96 -7; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp_xif.hh 1.23 +52 -4; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim.xif 1.35 +107 -1; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim_xif.cc 1.33 +107 -8; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim_xif.hh 1.20 +43 -5; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp.xrls 1.25 +106 -1; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp_base.cc 1.26 +70 -5; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp_base.hh 1.48 +51 -4; commitid: e013429d01907ea6; xorp/xrl/targets/pim.xrls 1.51 +106 -1; commitid: e013429d01907ea6; xorp/xrl/targets/pim_base.cc 1.54 +81 -5; commitid: e013429d01907ea6; xorp/xrl/targets/pim_base.hh From pavlin@icir.org Wed Jun 1 01:38:28 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:38:28 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex Message-ID: <200506010038.j510cSat057867@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:38:28 UTC XORP CVS repository Modified files: docs/tex xorp.bib Log message: * Add RFC2113 to the list of references. * Fix a typo. Revision Changes Path 1.13 +12 -2; commitid: e1f1429d03767ea6; xorp/docs/tex/xorp.bib From pavlin@icir.org Wed Jun 1 01:39:10 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:39:10 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual Message-ID: <200506010039.j510dABF057961@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:39:10 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex igmp.tex pimsm.tex Log message: Document the new "enable-ip-router-alert-option-check" configuration option for MLD/IGMP and PIM. Revision Changes Path 1.76 +12 -2; commitid: e226429d038f7ea6; xorp/RELEASE_NOTES 1.12 +15 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/config_overview.tex 1.14 +10 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/igmp.tex 1.19 +11 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/pimsm.tex From pavlin@icir.org Wed Jun 1 01:39:24 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:39:24 GMT Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Message-ID: <200506010039.j510dOGO058030@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-01 00:39:24 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the new "enable-ip-router-alert-option-check" configuration option for MLD/IGMP and PIM. Revision Changes Path 1.48 +16 -3; commitid: e280429d03b87ea6; www/getting_started.html 1.22 +15 -2; commitid: e280429d03b87ea6; www/html_src/getting_started.html From pavlin@icir.org Wed Jun 1 01:47:37 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:47:37 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Message-ID: <200506010047.j510lb1s058355@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:47:37 UTC XORP CVS repository Modified files: mld6igmp TODO Log message: Remove a TODO entry that is done. Revision Changes Path 1.17 +1 -4; commitid: e3d1429d059f7ea6; xorp/mld6igmp/TODO From pavlin@icir.org Wed Jun 1 01:58:05 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 00:58:05 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Message-ID: <200506010058.j510w5OG058670@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:58:05 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex pimsm.tex Log message: Edit the text that describes the "enable-ip-router-alert-option-check" configuration statement. Revision Changes Path 1.15 +7 -5; commitid: e509429d080d7ea6; xorp/docs/user_manual/igmp.tex 1.20 +5 -4; commitid: e509429d080d7ea6; xorp/docs/user_manual/pimsm.tex From pavlin@icir.org Wed Jun 1 10:34:03 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 09:34:03 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/mld6igmp xorp/xrl/interfaces xorp/xrl/targets Message-ID: <200506010934.j519Y3Fa000505@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:34:03 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_config.cc mld6igmp_member_query.cc mld6igmp_node.hh mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xrl/interfaces mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xrl/targets mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Log message: * Add new XRLs to get/set/reset MLD/IGMP related parameters (per vif): - {get,set,reset}_vif_query_interval - {get,set,reset}_vif_query_last_member_interval - {get,set,reset}_vif_query_response_interval - {get,set,reset}_vif_robust_count * Add new XORP configuration option per interface/vif for MLD/IGMP with default values: - query-interval: u32 = 125 - query-last-member-interval: u32 = 1 - query-response-interval: u32 = 10 - robust-count: u32 = 2 * Use the configuration parameters to control the MLD/IGMP behavior to set timers, etc. Revision Changes Path 1.13 +37 -1; commitid: 67429d7f867ea6; xorp/etc/templates/igmp.tp 1.13 +37 -1; commitid: 67429d7f867ea6; xorp/etc/templates/mld.tp 1.32 +19 -13; commitid: 67429d7f867ea6; xorp/mld6igmp/igmp_proto.cc 1.35 +20 -14; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6_proto.cc 1.7 +289 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_config.cc 1.12 +9 -7; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_member_query.cc 1.24 +137 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_node.hh 1.14 +22 -17; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_proto.cc 1.39 +27 -9; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_vif.cc 1.20 +33 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_vif.hh 1.47 +217 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc 1.33 +162 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_node.hh 1.15 +176 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_shell_funcs.sh 1.7 +122 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp.xif 1.19 +437 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp_xif.cc 1.17 +290 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp_xif.hh 1.21 +119 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp.xrls 1.26 +433 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp_base.cc 1.27 +210 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp_base.hh From pavlin@icir.org Wed Jun 1 10:36:11 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 09:36:11 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual xorp/rtrmgr Message-ID: <200506010936.j519aBff000684@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:36:11 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex igmp.tex rtrmgr config.boot.sample Log message: Document the following new MLD/IGMP configuration options: - query-interval - query-last-member-interval - query-response-interval - robust-count Revision Changes Path 1.77 +23 -1; commitid: 24e429d81597ea6; xorp/RELEASE_NOTES 1.13 +32 -1; commitid: 24e429d81597ea6; xorp/docs/user_manual/config_overview.tex 1.16 +55 -7; commitid: 24e429d81597ea6; xorp/docs/user_manual/igmp.tex 1.29 +9 -1; commitid: 24e429d81597ea6; xorp/rtrmgr/config.boot.sample From pavlin@icir.org Wed Jun 1 10:36:29 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 09:36:29 GMT Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Message-ID: <200506010936.j519aTZC000761@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-01 09:36:29 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the following new MLD/IGMP configuration options: - query-interval - query-last-member-interval - query-response-interval - robust-count Revision Changes Path 1.49 +29 -4; commitid: 2c6429d81997ea6; www/getting_started.html 1.23 +28 -3; commitid: 2c6429d81997ea6; www/html_src/getting_started.html From pavlin@icir.org Wed Jun 1 10:45:50 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 09:45:50 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Message-ID: <200506010945.j519joMe001151@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:45:50 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Formatting nits. Revision Changes Path 1.17 +15 -3; commitid: 462429d83ca7ea6; xorp/docs/user_manual/igmp.tex From pavlin@icir.org Thu Jun 2 00:45:46 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 1 Jun 2005 23:45:46 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Message-ID: <200506012345.j51NjkSH044126@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 23:45:46 UTC XORP CVS repository Modified files: mrt random.c random.h Log message: * Update the local copy of the random(3) implementation by using the NetBSD version instead of the FreeBSD version. Hopefully, the NetBSD version is more portable and should fix compilation problem on MIPS and other platforms that are sensitive to cast alignment. * Now that most of the code is replaced, update the copyright message as well. Revision Changes Path 1.2 +155 -138; commitid: abf8429e47ed7ea6; xorp/mrt/random.c 1.2 +15 -30; commitid: abf8429e47ed7ea6; xorp/mrt/random.h From pavlin@icir.org Thu Jun 2 19:37:20 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 2 Jun 2005 18:37:20 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Message-ID: <200506021837.j52IbKE5094034@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-02 18:37:20 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Use the domain-wide address on an interface as the primary address only in case of IPv4. In case of IPv6 the PIM-SM spec is clear that all multicast messages must be originated from the link-local address of the interface. Revision Changes Path 1.55 +18 -11; commitid: 16f14429f512b7ea6; xorp/pim/pim_vif.cc From pavlin@icir.org Thu Jun 2 19:59:14 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 2 Jun 2005 18:59:14 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Message-ID: <200506021859.j52IxEvC094428@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-02 18:59:14 UTC XORP CVS repository Modified files: docs/user_manual config_overview.tex igmp.tex pimsm.tex Log message: Add the following info to the configuration documentation: * In case of IGMP each enabled interface must have a valid IPv4 address. * In case of MLD each enabled interface must have a valid IPv6 link-local address. * In case of PIM-SM for IPv4 each enabled interface must have a valid IPv4 address. * In case of PIM-SM for IPv6 each enabled interface must have a valid link-local and a valid domain-wide IPv6 addresses. Revision Changes Path 1.14 +8 -1; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/config_overview.tex 1.18 +15 -4; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/igmp.tex 1.21 +13 -8; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/pimsm.tex From pavlin@icir.org Thu Jun 2 19:59:36 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 2 Jun 2005 18:59:36 GMT Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Message-ID: <200506021859.j52Ixafj094510@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-02 18:59:36 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Add the following info to the configuration documentation: * In case of IGMP each enabled interface must have a valid IPv4 address. * In case of MLD each enabled interface must have a valid IPv6 link-local address. * In case of PIM-SM for IPv4 each enabled interface must have a valid IPv4 address. * In case of PIM-SM for IPv6 each enabled interface must have a valid link-local and a valid domain-wide IPv6 addresses. Revision Changes Path 1.50 +9 -1; commitid: 170fb429f57137ea6; www/getting_started.html 1.24 +8 -0; commitid: 170fb429f57137ea6; www/html_src/getting_started.html From pavlin@icir.org Fri Jun 3 20:00:06 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 19:00:06 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Message-ID: <200506031900.j53J066N080370@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:00:06 UTC XORP CVS repository Modified files: mld6igmp igmp_proto.cc mld6_proto.cc Log message: Set the querier's address using the appropriate method instead of directly assigning the value. Revision Changes Path 1.33 +2 -2; commitid: 139d042a0a89f7ea6; xorp/mld6igmp/igmp_proto.cc 1.36 +2 -2; commitid: 139d042a0a89f7ea6; xorp/mld6igmp/mld6_proto.cc From pavlin@icir.org Fri Jun 3 20:02:33 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 19:02:33 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Message-ID: <200506031902.j53J2X1t080501@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:02:33 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_vif.cc Log message: * Refactor the implementation of Mld6igmpVif::update_primary_address() so now it does better job in updating the primary address and the querier's address. * Set the querier's address using the appropriate method instead of directly assigning the value. Revision Changes Path 1.40 +32 -11; commitid: 13a4142a0a8d97ea6; xorp/mld6igmp/mld6igmp_vif.cc From pavlin@icir.org Fri Jun 3 20:04:44 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 19:04:44 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Message-ID: <200506031904.j53J4iXS080580@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:04:44 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_config.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Log message: Update the mechanism for updating the interfaces info so now it does better job when interface addresses are added or deleted (similar to the PIM-SM implementation). Revision Changes Path 1.8 +101 -1; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/mld6igmp_config.cc 1.25 +9 -1; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/mld6igmp_node.hh 1.48 +34 -30; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc From pavlin@icir.org Fri Jun 3 20:06:12 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 19:06:12 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Message-ID: <200506031906.j53J6CEv080679@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:06:12 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Refactor the implementation of PimVif::update_primary_and_domain_wide_address() so now it does better job in updating the primary address, the domain-wide address and the DR address. Revision Changes Path 1.56 +32 -11; commitid: 13b0842a0a9ee7ea6; xorp/pim/pim_vif.cc From pavlin@icir.org Fri Jun 3 20:07:30 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 19:07:30 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Message-ID: <200506031907.j53J7UGX080776@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:07:30 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.cc pim_node.hh Log message: Update the mechanism for updating the interface addresses, so now it sends the appropriate PIM Hello messages when the interface addresses are added or deleted. Revision Changes Path 1.41 +33 -4; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_config.cc 1.72 +17 -5; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_node.cc 1.57 +7 -1; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_node.hh From pavlin@icir.org Fri Jun 3 22:33:07 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 21:33:07 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp Message-ID: <200506032133.j53LX74U008989@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 21:33:07 UTC XORP CVS repository Modified files: libxipc xrl_router.cc . RELEASE_NOTES Log message: * Add support to set the finder server address from the XORP_FINDER_SERVER_ADDRESS environmental variable. This variable in combination with the existing XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes on different machines. * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable to XORP_FINDER_SERVER_PORT (to reflect better its purpose). Note that we cannot set the client port, because it is automatically assigned/selected by the sockets. * Add release notes. Revision Changes Path 1.78 +6 -3; commitid: 229b42a0cb887ea6; xorp/RELEASE_NOTES 1.47 +26 -8; commitid: 229b42a0cb887ea6; xorp/libxipc/xrl_router.cc From pavlin@icir.org Fri Jun 3 23:30:43 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 22:30:43 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp Message-ID: <200506032230.j53MUhEr010677@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:30:43 UTC XORP CVS repository Modified files: . configure configure.in Log message: Conditionally add the user-specified flags that must be after all other compiler flags. Those are specified in the "CFLAGS_END" and "CXXFLAGS_END" environmental variables (for the C and C++ compiler respectively). Revision Changes Path 1.146 +155 -0; commitid: 298142a0d9c77ea6; xorp/configure 1.136 +12 -2; commitid: 298142a0d9c77ea6; xorp/configure.in From pavlin@icir.org Fri Jun 3 23:30:59 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 22:30:59 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Message-ID: <200506032230.j53MUxsr010720@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:30:59 UTC XORP CVS repository Modified files: mibs configure Log message: Regenerate. Revision Changes Path 1.15 +1 -1; commitid: 29c742a0da1e7ea6; xorp/mibs/configure From pavlin@icir.org Fri Jun 3 23:40:46 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 22:40:46 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp Message-ID: <200506032240.j53Mekop010984@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:40:46 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for the new "CFLAGS_END" and "CXXFLAGS_END" user environmental flags. Revision Changes Path 1.79 +6 -1; commitid: 2ac542a0dc5c7ea6; xorp/RELEASE_NOTES From pavlin@icir.org Fri Jun 3 23:50:46 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 3 Jun 2005 22:50:46 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp Message-ID: <200506032250.j53Mokrc011216@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:50:46 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add compilation notes for the following environmental variables: CC, CXX, CFLAGS, CXXFLAGS, CFLAGS_END, CXXFLAGS_END. Revision Changes Path 1.30 +16 -1; commitid: 2ba542a0de9d7ea6; xorp/BUILD_NOTES From M.Handley@cs.ucl.ac.uk Sat Jun 4 10:13:31 2005 From: M.Handley@cs.ucl.ac.uk (Mark Handley) Date: Sat, 04 Jun 2005 10:13:31 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp In-Reply-To: Your message of "Fri, 03 Jun 2005 21:33:07 GMT." <200506032133.j53LX74U008989@xorpc.icir.org> Message-ID: <48863.1117876411@vulture.xorp.org> >Log message: > * Add support to set the finder server address from the > XORP_FINDER_SERVER_ADDRESS environmental variable. > This variable in combination with the existing > XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes > on different machines. > > * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable > to XORP_FINDER_SERVER_PORT (to reflect better its purpose). > Note that we cannot set the client port, because it is automatically > assigned/selected by the sockets. I'm confused. Are you saying that to rib (say) bgp on a different machine, I need to set XORP_FINDER_CLIENT_ADDRESS and XORP_FINDER_SERVER_PORT to communicate with the remote finder? Surely they should be consistent. - Mark From pavlin@icir.org Sat Jun 4 18:58:35 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Sat, 4 Jun 2005 17:58:35 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Message-ID: <200506041758.j54HwZBZ075339@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-04 17:58:35 UTC XORP CVS repository Modified files: libxipc finder_server.cc Log message: Consider the environmental variables XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT when binding the finder to a local address and port. Previously, the only option was to use the "-i " and "-p " command line options (to libxipc/xorp_finder and rtrmgr/xorp_rtrmgr) to add the interface addresses and the port we want to listen to. Revision Changes Path 1.12 +43 -2; commitid: 1254542a1e9007ea6; xorp/libxipc/finder_server.cc From pavlin@icir.org Sat Jun 4 19:07:49 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Sat, 04 Jun 2005 11:07:49 -0700 Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp In-Reply-To: Message from Mark Handley of "Sat, 04 Jun 2005 10:13:31 BST." <48863.1117876411@vulture.xorp.org> Message-ID: <200506041807.j54I7nof012864@possum.icir.org> > > >Log message: > > * Add support to set the finder server address from the > > XORP_FINDER_SERVER_ADDRESS environmental variable. > > This variable in combination with the existing > > XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes > > on different machines. > > > > * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable > > to XORP_FINDER_SERVER_PORT (to reflect better its purpose). > > Note that we cannot set the client port, because it is automatically > > assigned/selected by the sockets. > > I'm confused. Are you saying that to rib (say) bgp on a different > machine, I need to set XORP_FINDER_CLIENT_ADDRESS and > XORP_FINDER_SERVER_PORT to communicate with the remote finder? Surely > they should be consistent. After the change XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT specify the address and the port of the finder. XORP_FINDER_CLIENT_ADDRESS is the address that the client will choose to communicate with the finder. This also will be the address that the finder will associate with that client. Typically, if you want to communicate with a remote finder you need to set both XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_CLIENT_ADDRESS on the client side: - The server address needs to be set so the client knows where to find the finder. - The client address needs to be set so the client uses that address instead of the default 127.0.0.1 to listen for messages from the finder, and also to create its own instance name. That instance name is sent to the finder and the finder decodes it to obtain the client's address (in other words the client has to explicitly tell the finder its own address). The XORP_FINDER_SERVER_PORT is optional and is an additional clarifier to XORP_FINDER_SERVER_ADDRESS in case the finder is not listening on the default port. On the finder side, you have to tell the finder to listen to a routable address (in addition to the default 127.0.0.1). For that you have to start the libxipc/xorp_finder or the rtrmgr/xorp_rtrmgr binaries with the "-i " command line option (and the "-p " option to change the default port as well); see FinderServer::add_binding(). Though, now that I think of it, it makes sense that the finder itself also should consider the XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT environmental variables when binding to local interface addresses. I just committed a modification to the FinderServer constructor that does this, so we are not forced to use the "-i " and "-p " command-line options to xorp_finder xorp_rtrmgr. Pavlin From bms@icir.org Mon Jun 6 16:25:25 2005 From: bms@icir.org (Bruce Simpson) Date: Mon, 6 Jun 2005 15:25:25 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Message-ID: <200506061525.j56FPPtM050946@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-06-06 15:25:25 UTC XORP CVS repository Modified files: mrt random.c Log message: Add explicit include file sentinel for to fix build on platforms which do not have this header. Revision Changes Path 1.3 +5 -1; commitid: c6bc42a46ac07ea6; xorp/mrt/random.c From pavlin@icir.org Mon Jun 6 19:15:43 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 18:15:43 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Message-ID: <200506061815.j56IFhVM054559@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 18:15:43 UTC XORP CVS repository Modified files: mrt random.c Log message: * Don't "#include ", because it is not needed * Remove duplicated "#include "libxorp/xorp.h"" Revision Changes Path 1.4 +1 -8; commitid: d4e442a492997ea6; xorp/mrt/random.c From pavlin@icir.org Mon Jun 6 21:25:13 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 20:25:13 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506062025.j56KPD8E059572@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:25:13 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: Add extra brackets inside the body of macro LONG_ROUNDUP_SIZEOF() Revision Changes Path 1.30 +3 -3; commitid: e87a42a4b1037ea6; xorp/fea/fticonfig_entry_set_rtsock.cc From pavlin@icir.org Mon Jun 6 21:26:32 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 20:26:32 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <200506062026.j56KQWmH059634@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:26:32 UTC XORP CVS repository Modified files: libxorp heap.cc Log message: Fix the implementation of SET_OFFSET() and RESET_OFFSET() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.13 +7 -3; commitid: e8d342a4b13c7ea6; xorp/libxorp/heap.cc From pavlin@icir.org Mon Jun 6 21:27:39 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 20:27:39 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Message-ID: <200506062027.j56KRdT1059694@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:27:39 UTC XORP CVS repository Modified files: rip xrl_target_common.hh Log message: Fix the implementation of PORT_TIMER_GET_HANDLER() and PORT_TIMER_SET_HANDLER() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.20 +7 -3; commitid: e90442a4b1927ea6; xorp/rip/xrl_target_common.hh From pavlin@icir.org Mon Jun 6 21:29:04 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 20:29:04 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/common Message-ID: <200506062029.j56KT4nN059764@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:29:04 UTC XORP CVS repository Modified files: policy/common register_operations.cc Log message: Fix the implementation of a number of ADD_FOO() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.3 +69 -59; commitid: e94642a4b1da7ea6; xorp/policy/common/register_operations.cc From pavlin@icir.org Mon Jun 6 22:21:04 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 6 Jun 2005 21:21:04 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/cli/libtecla xorp/config Message-ID: <200506062121.j56LL4gn060672@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 21:21:04 UTC XORP CVS repository Modified files: . configure cli/libtecla config.guess config.sub config config.guess config.sub Log message: Update config.guess and config.sub to the lastest versions from the following URLs: http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub Submitted by: Kristian Larsson Revision Changes Path 1.3 +353 -242; commitid: ec7842a4bd6f7ea6; xorp/cli/libtecla/config.guess 1.3 +136 -48; commitid: ec7842a4bd6f7ea6; xorp/cli/libtecla/config.sub 1.4 +353 -242; commitid: ec7842a4bd6f7ea6; xorp/config/config.guess 1.4 +136 -48; commitid: ec7842a4bd6f7ea6; xorp/config/config.sub 1.147 +1 -1; commitid: ec7842a4bd6f7ea6; xorp/configure From pavlin@icir.org Wed Jun 8 16:37:16 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 08 Jun 2005 08:37:16 -0700 Subject: [Xorp-cvs] XORP cvs commit: xorp/pim In-Reply-To: Message from Pavlin Radoslavov of "Tue, 26 Apr 2005 01:15:42 GMT." <200504260115.j3Q1Fg5J030388@xorpc.icir.org> Message-ID: <200506081537.j58FbGiX096868@possum.icir.org> [Just for the record: a correction of the log message below] [Error found by "edrt" ] > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2005-04-26 01:15:42 UTC > > XORP CVS repository > > > Modified files: > pim pim_mre_assert.cc > > Log message: > Update the implementation of the (*,G) Assert state machine > to match the specification in the newest newest -11 I-D spec: > > * Check the RPTbit when in "I am Assert Loser" state to match > the following events as described in Figure 11: > "Receive acceptable assert from current winner with RPTbit clear [A2]" The above message should say "with RPTbit set" instead of "with RPTbit clear". The code modification itself is correct. Pavlin > "Receive preferred assert with RPTbit set [A2]" > > Note that the above text hasn't changed since the -05 I-D, but > the original implementation didn't consider the RPTbit because > the "with RPTbit set" was only in Figure 11, but not in the > corresponding table or the text that describes the events. > This mismatch is still in the -11 I-D spec. > > Revision Changes Path > 1.32 +6 -4; commitid: 7644426d94d67ea6; xorp/pim/pim_mre_assert.cc > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From mjh@icir.org Wed Jun 15 20:14:53 2005 From: mjh@icir.org (Mark Handley) Date: Wed, 15 Jun 2005 19:14:53 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506151914.j5FJErhW070897@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-15 19:14:53 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc conf_tree_node.hh master_conf_tree_node.hh template_tree_node.cc template_tree_node.hh Log message: Add template file command to support ordering of config nodes of the same type, either numerically or alphabetically. Revision Changes Path 1.63 +91 -1; commitid: 114cb42b07de37ea6; xorp/rtrmgr/conf_tree_node.cc 1.32 +13 -1; commitid: 114cb42b07de37ea6; xorp/rtrmgr/conf_tree_node.hh 1.10 +1 -8; commitid: 114cb42b07de37ea6; xorp/rtrmgr/master_conf_tree_node.hh 1.36 +28 -2; commitid: 114cb42b07de37ea6; xorp/rtrmgr/template_tree_node.cc 1.24 +12 -1; commitid: 114cb42b07de37ea6; xorp/rtrmgr/template_tree_node.hh From mjh@icir.org Wed Jun 15 21:15:35 2005 From: mjh@icir.org (Mark Handley) Date: Wed, 15 Jun 2005 20:15:35 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/figs Message-ID: <200506152015.j5FKFZ83071616@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-15 20:15:35 UTC XORP CVS repository Modified files: docs/rtrmgr/figs processes3.ps Log message: Fix bad idraw postscript (was crashing ghostscript 7) Revision Changes Path 1.2 +18 -5; commitid: 117a242b08c4e7ea6; xorp/docs/rtrmgr/figs/processes3.ps From mjh@icir.org Wed Jun 15 21:22:21 2005 From: mjh@icir.org (Mark Handley) Date: Wed, 15 Jun 2005 20:22:21 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/figs Message-ID: <200506152022.j5FKMLMv071718@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-15 20:22:21 UTC XORP CVS repository Modified files: docs/rtrmgr/figs config.ps template.ps xorpsh.ps Log message: Fix broken postscript Revision Changes Path 1.2 +18 -5; commitid: 1180942b08ded7ea6; xorp/docs/rtrmgr/figs/config.ps 1.2 +18 -5; commitid: 1180942b08ded7ea6; xorp/docs/rtrmgr/figs/template.ps 1.2 +17 -4; commitid: 1180942b08ded7ea6; xorp/docs/rtrmgr/figs/xorpsh.ps From mjh@icir.org Wed Jun 15 21:38:43 2005 From: mjh@icir.org (Mark Handley) Date: Wed, 15 Jun 2005 20:38:43 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Message-ID: <200506152038.j5FKchW6071946@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-15 20:38:43 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: Update rtrmgr documentation to include %order command. Revision Changes Path 1.32 +96 -7; commitid: 118e942b091ba7ea6; xorp/docs/rtrmgr/rtrmgr.tex From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Wed Dec 11 16:46:37 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Dec 2002 16:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBC0l3h1028379 for ; Wed, 11 Dec 2002 16:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC0l2wP042184 for ; Wed, 11 Dec 2002 16:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21293 for ; Wed, 11 Dec 2002 16:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21284 for ; Wed, 11 Dec 2002 16:46:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC0kbwP042178 for ; Wed, 11 Dec 2002 16:46:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBC0kbTO073472 for ; Wed, 11 Dec 2002 16:46:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBC0kbam073471; Wed, 11 Dec 2002 16:46:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212120046.gBC0kbam073471@xorpc.icir.org> Date: Wed, 11 Dec 2002 16:46:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 02/12/11 16:46:37 Modified files: ./: README Log message: Add bgp reference and nsf grant number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Wed Dec 11 17:43:26 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Dec 2002 17:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBC1i3h1042332 for ; Wed, 11 Dec 2002 17:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC1i3wP042673 for ; Wed, 11 Dec 2002 17:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22493 for ; Wed, 11 Dec 2002 17:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22476 for ; Wed, 11 Dec 2002 17:43:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC1hRwP042669 for ; Wed, 11 Dec 2002 17:43:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBC1hQTO085716 for ; Wed, 11 Dec 2002 17:43:26 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBC1hQsn085715; Wed, 11 Dec 2002 17:43:26 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212120143.gBC1hQsn085715@xorpc.icir.org> Date: Wed, 11 Dec 2002 17:43:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ license.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: atanu@xorpc.icir.org. 02/12/11 17:43:26 Modified files: ./: license.html Log message: Try and clarify the difference between XORP and ospfd. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Wed Dec 11 18:12:07 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Dec 2002 18:13:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBC2D3h1044515 for ; Wed, 11 Dec 2002 18:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC2D2wP042889 for ; Wed, 11 Dec 2002 18:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22918 for ; Wed, 11 Dec 2002 18:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22906 for ; Wed, 11 Dec 2002 18:12:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBC2C7wP042882 for ; Wed, 11 Dec 2002 18:12:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBC2C7TO092860 for ; Wed, 11 Dec 2002 18:12:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBC2C7EF092859; Wed, 11 Dec 2002 18:12:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212120212.gBC2C7EF092859@xorpc.icir.org> Date: Wed, 11 Dec 2002 18:12:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ cvs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 02/12/11 18:12:07 Modified files: ./: cvs.html Log message: Make anonymous cvs repository path match reality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Thu Dec 12 8:58:53 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Dec 2002 08:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBCGx3h1018548 for ; Thu, 12 Dec 2002 08:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCGx2wP050981 for ; Thu, 12 Dec 2002 08:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA06896 for ; Thu, 12 Dec 2002 08:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA06888 for ; Thu, 12 Dec 2002 08:58:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCGwswP050979 for ; Thu, 12 Dec 2002 08:58:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBCGwsTO000976 for ; Thu, 12 Dec 2002 08:58:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBCGwsVv000975; Thu, 12 Dec 2002 08:58:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212121658.gBCGwsVv000975@xorpc.icir.org> Date: Thu, 12 Dec 2002 8:58:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/html_templates/ index.html.bottom Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/html_templates/ Changes by: hodson@xorpc.icir.org. 02/12/12 08:58:53 Modified files: xorp/docs/kdoc/html_templates/: index.html.bottom Log message: Update directory path for anonymous cvs (replicating change already on web server). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Thu Dec 12 8:59:58 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Dec 2002 09:00:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBCH03h1018632 for ; Thu, 12 Dec 2002 09:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCH03wP050997 for ; Thu, 12 Dec 2002 09:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA06929 for ; Thu, 12 Dec 2002 09:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA06918 for ; Thu, 12 Dec 2002 08:59:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCGxxwP050989 for ; Thu, 12 Dec 2002 08:59:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBCGxwTO001014 for ; Thu, 12 Dec 2002 08:59:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBCGxwYV001013; Thu, 12 Dec 2002 08:59:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212121659.gBCGxwYV001013@xorpc.icir.org> Date: Thu, 12 Dec 2002 8:59:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ cvs.html downloads.html people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 02/12/12 08:59:58 Modified files: ./: cvs.html downloads.html people.html Log message: o Synchronize style of tables. o Add XORP logo to pages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Thu Dec 12 12:24:14 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Dec 2002 12:25:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBCKP3h1034053 for ; Thu, 12 Dec 2002 12:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCKP2wP052776 for ; Thu, 12 Dec 2002 12:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11915 for ; Thu, 12 Dec 2002 12:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11895 for ; Thu, 12 Dec 2002 12:24:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBCKOEwP052769 for ; Thu, 12 Dec 2002 12:24:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBCKOETO009249 for ; Thu, 12 Dec 2002 12:24:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBCKOERu009248; Thu, 12 Dec 2002 12:24:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212122024.gBCKOERu009248@xorpc.icir.org> Date: Thu, 12 Dec 2002 12:24:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/12 12:24:14 Modified files: xorp/bgp/: TODO Log message: Add work plan to take us to a 1.0 release and beyond. We need to go through the other TODO entries in this file and prune those that are done. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Thu Dec 12 17:35:45 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Dec 2002 17:36:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBD1a4h1059502 for ; Thu, 12 Dec 2002 17:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBD1a3wP055397 for ; Thu, 12 Dec 2002 17:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19432 for ; Thu, 12 Dec 2002 17:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19422 for ; Thu, 12 Dec 2002 17:35:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBD1ZjwP055395 for ; Thu, 12 Dec 2002 17:35:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBD1ZjTO038610 for ; Thu, 12 Dec 2002 17:35:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBD1ZjlL038609; Thu, 12 Dec 2002 17:35:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212130135.gBD1ZjlL038609@xorpc.icir.org> Date: Thu, 12 Dec 2002 17:35:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 02/12/12 17:35:45 Modified files: xorp/bgp/: TODO Added files: xorp/devnotes/: WORKPLAN Log message: * Add new file WORKPLAN that contains the workplan for various tasks * Move BGP workplan from bgp/TODO to devnotes/WORKPLAN * Add Multicast and Other workplans to devnotes/WORKPLAN _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Thu Dec 12 17:46:07 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Dec 2002 17:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBD1l3h1062502 for ; Thu, 12 Dec 2002 17:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBD1l2wP055517 for ; Thu, 12 Dec 2002 17:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19649 for ; Thu, 12 Dec 2002 17:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19634 for ; Thu, 12 Dec 2002 17:46:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBD1k7wP055515 for ; Thu, 12 Dec 2002 17:46:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBD1k7TO038725 for ; Thu, 12 Dec 2002 17:46:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBD1k7TP038724; Thu, 12 Dec 2002 17:46:07 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212130146.gBD1k7TP038724@xorpc.icir.org> Date: Thu, 12 Dec 2002 17:46:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib_fea1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/12 17:46:07 Modified files: xorp/bgp/harness/: test_rib_fea1.sh Log message: Add test4 in order to track a problem with the RIB on Linux. 1) Send an update packet on peer1 with a nexthop that is not resolvable. 2) Make the next hop resolvable by adding a route to the RIB. 3) Verify that an update packet now pops out of peer2 and peer3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Fri Dec 13 10:46:54 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 10:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDIl3h1066908 for ; Fri, 13 Dec 2002 10:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIl2wP064726 for ; Fri, 13 Dec 2002 10:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05582 for ; Fri, 13 Dec 2002 10:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05575 for ; Fri, 13 Dec 2002 10:46:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIkswP064723 for ; Fri, 13 Dec 2002 10:46:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDIksTO090044 for ; Fri, 13 Dec 2002 10:46:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDIksJP090043; Fri, 13 Dec 2002 10:46:54 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212131846.gBDIksJP090043@xorpc.icir.org> Date: Fri, 13 Dec 2002 10:46:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/13 10:46:54 Modified files: xorp/bgp/harness/: test_rib1.sh Log message: Fix a typo in the comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Fri Dec 13 10:51:12 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 10:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDIq2h1067291 for ; Fri, 13 Dec 2002 10:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIq2wP064773 for ; Fri, 13 Dec 2002 10:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05679 for ; Fri, 13 Dec 2002 10:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05656 for ; Fri, 13 Dec 2002 10:51:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIpCwP064771 for ; Fri, 13 Dec 2002 10:51:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDIpCTO090103 for ; Fri, 13 Dec 2002 10:51:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDIpCmN090102; Fri, 13 Dec 2002 10:51:12 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212131851.gBDIpCmN090102@xorpc.icir.org> Date: Fri, 13 Dec 2002 10:51:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/13 10:51:12 Modified files: xorp/bgp/harness/: xrl_shell_funcs.sh Log message: The shell function "coord" sends commands to the coordinator process via an XRL call. After sending the command the shell function would repeatedly call the pending (waits for the previous command to complete) XRL on the coordinator. The number of calls to pending is now limited to five. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Fri Dec 13 10:56:32 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 10:57:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDIv3h1067682 for ; Fri, 13 Dec 2002 10:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIv3wP064820 for ; Fri, 13 Dec 2002 10:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05775 for ; Fri, 13 Dec 2002 10:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05764 for ; Fri, 13 Dec 2002 10:56:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDIuWwP064818 for ; Fri, 13 Dec 2002 10:56:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDIuWTO090157 for ; Fri, 13 Dec 2002 10:56:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDIuWcD090156; Fri, 13 Dec 2002 10:56:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212131856.gBDIuWcD090156@xorpc.icir.org> Date: Fri, 13 Dec 2002 10:56:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/13 10:56:32 Modified files: xorp/bgp/harness/: peer.cc Log message: Recently the argument "not" was allowed with the "lookup" argument: "peer2 trie recv lookup 10.10.10.0/24 not" The command is used to verify that a route is not in the trie. The code worked fine if the route wasn't in the trie. There was no code to deal with the case that the route was in the trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:30 2005 Subject: No subject Fri Dec 13 12:01:05 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 12:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDK23h1081963 for ; Fri, 13 Dec 2002 12:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDK22wP065414 for ; Fri, 13 Dec 2002 12:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07562 for ; Fri, 13 Dec 2002 12:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07539 for ; Fri, 13 Dec 2002 12:01:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDK15wP065389 for ; Fri, 13 Dec 2002 12:01:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDK15TO094800 for ; Fri, 13 Dec 2002 12:01:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDK156g094799; Fri, 13 Dec 2002 12:01:05 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212132001.gBDK156g094799@xorpc.icir.org> Date: Fri, 13 Dec 2002 12:01:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ register_server.cc rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 02/12/13 12:01:05 Modified files: xorp/rib/: register_server.cc rt_tab_register.cc Log message: Fix initialization error that was causing some tests to fail on koala. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 12:09:27 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 12:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDKA2h1082751 for ; Fri, 13 Dec 2002 12:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDKA2wP065514 for ; Fri, 13 Dec 2002 12:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07713 for ; Fri, 13 Dec 2002 12:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07696 for ; Fri, 13 Dec 2002 12:09:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDK9RwP065504 for ; Fri, 13 Dec 2002 12:09:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDK9RTO094916 for ; Fri, 13 Dec 2002 12:09:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDK9RTL094915; Fri, 13 Dec 2002 12:09:27 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212132009.gBDK9RTL094915@xorpc.icir.org> Date: Fri, 13 Dec 2002 12:09:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 02/12/13 12:09:27 Modified files: other/tinderbox/scripts/: build_xorp.sh Log message: Add timeout to catch non-terminating tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 12:26:08 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 12:27:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDKR3h1087065 for ; Fri, 13 Dec 2002 12:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDKR2wP065650 for ; Fri, 13 Dec 2002 12:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07998 for ; Fri, 13 Dec 2002 12:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07983 for ; Fri, 13 Dec 2002 12:26:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDKQ8wP065648 for ; Fri, 13 Dec 2002 12:26:08 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDKQ8TO001957 for ; Fri, 13 Dec 2002 12:26:08 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDKQ89x001955; Fri, 13 Dec 2002 12:26:08 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212132026.gBDKQ89x001955@xorpc.icir.org> Date: Fri, 13 Dec 2002 12:26:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 02/12/13 12:26:08 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: o Add start time to information in log messages. o Put log header code into common function. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 12:52:39 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 12:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDKr2h1089004 for ; Fri, 13 Dec 2002 12:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDKr2wP065889 for ; Fri, 13 Dec 2002 12:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA08534 for ; Fri, 13 Dec 2002 12:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA08524 for ; Fri, 13 Dec 2002 12:52:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDKqdwP065887 for ; Fri, 13 Dec 2002 12:52:39 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDKqdTO010486 for ; Fri, 13 Dec 2002 12:52:39 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDKqdBx010485; Fri, 13 Dec 2002 12:52:39 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212132052.gBDKqdBx010485@xorpc.icir.org> Date: Fri, 13 Dec 2002 12:52:39 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/13 12:52:39 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: Fix bug in next_hop_resolver - when a route doesn't resolve, the metric value is undefined. So if a route changes from resolved to unresolved, you can't safely say that if the metric doesn't change, then we don't need to care about the change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 13:23:35 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 13:24:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDLO7h1091320 for ; Fri, 13 Dec 2002 13:24:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDLO3wP066182 for ; Fri, 13 Dec 2002 13:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA09166 for ; Fri, 13 Dec 2002 13:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA09153 for ; Fri, 13 Dec 2002 13:23:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDLNZwP066178 for ; Fri, 13 Dec 2002 13:23:35 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDLNZTO010702 for ; Fri, 13 Dec 2002 13:23:35 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDLNZLU010701; Fri, 13 Dec 2002 13:23:35 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212132123.gBDLNZLU010701@xorpc.icir.org> Date: Fri, 13 Dec 2002 13:23:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 02/12/13 13:23:35 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in Log message: Re-enable test_rib_fea1.sh, as all the tests now seem to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 14:13:40 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 14:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDME3h1097688 for ; Fri, 13 Dec 2002 14:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDME2wP066619 for ; Fri, 13 Dec 2002 14:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA10551 for ; Fri, 13 Dec 2002 14:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA10538 for ; Fri, 13 Dec 2002 14:13:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMDewP066615 for ; Fri, 13 Dec 2002 14:13:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDMDeTO013366 for ; Fri, 13 Dec 2002 14:13:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDMDegU013365; Fri, 13 Dec 2002 14:13:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212132213.gBDMDegU013365@xorpc.icir.org> Date: Fri, 13 Dec 2002 14:13:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 02/12/13 14:13:40 Modified files: xorp/docs/: index.html Log message: * Change the header from "Documentation" to "XORP Documentation" * Add the XORP logo at the top. The link to the logo is relative and points to the appropriate file when docs/index.html is placed on the WEB server, but within the xorp repository itself the link doesn't work (to make it working we would have to copy the logo to xorp/docs as well). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 14:30:55 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 14:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDMV2h1005438 for ; Fri, 13 Dec 2002 14:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMV2wP066817 for ; Fri, 13 Dec 2002 14:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA10972 for ; Fri, 13 Dec 2002 14:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA10965 for ; Fri, 13 Dec 2002 14:30:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMUuwP066815 for ; Fri, 13 Dec 2002 14:30:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDMUuTO013619 for ; Fri, 13 Dec 2002 14:30:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDMUu1k013618; Fri, 13 Dec 2002 14:30:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212132230.gBDMUu1k013618@xorpc.icir.org> Date: Fri, 13 Dec 2002 14:30:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 02/12/13 14:30:55 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: Same bug in reregister code. Fix bug in next_hop_resolver - when a route doesn't resolve, the metric value is undefined. So if a route changes from resolved to unresolved, you can't safely say that if the metric doesn't change, then we don't need to care about the change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 14:32:02 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 14:33:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDMX4h1005648 for ; Fri, 13 Dec 2002 14:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMX3wP066836 for ; Fri, 13 Dec 2002 14:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11043 for ; Fri, 13 Dec 2002 14:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11013 for ; Fri, 13 Dec 2002 14:32:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMW3wP066828 for ; Fri, 13 Dec 2002 14:32:03 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDMW2TO013668 for ; Fri, 13 Dec 2002 14:32:02 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDMW2VG013667; Fri, 13 Dec 2002 14:32:02 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200212132232.gBDMW2VG013667@xorpc.icir.org> Date: Fri, 13 Dec 2002 14:32:02 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in asnum.hh xorp/libxorp/ asnum.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: rizzo@xorpc.icir.org. 02/12/13 14:32:02 Modified files: xorp/libxorp/: Makefile.am Makefile.in asnum.hh Removed files: xorp/libxorp/: asnum.cc Log message: First step at documenting and cleaning up the AsNum class. Next step (after reading the spec carefully to make sure that there cannot be extended AS numbers with a value < 65536) will be removing the 'extended' flag to make the object smaller and faster. Changes to xorp/bgp/ committed separately. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 14:38:56 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 14:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDMd2h1006107 for ; Fri, 13 Dec 2002 14:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMd2wP066889 for ; Fri, 13 Dec 2002 14:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11168 for ; Fri, 13 Dec 2002 14:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11161 for ; Fri, 13 Dec 2002 14:38:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDMcuwP066887 for ; Fri, 13 Dec 2002 14:38:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDMcuTO018455 for ; Fri, 13 Dec 2002 14:38:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDMcuEp018454; Fri, 13 Dec 2002 14:38:56 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200212132238.gBDMcuEp018454@xorpc.icir.org> Date: Fri, 13 Dec 2002 14:38:56 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh aspath_test.cc bgp_trie.hh local_data.cc local_data.hh packet_coding_test.cc packet_test.cc path_attribute.cc peer.cc peer_data.cc plumbing_test.cc route_queue.cc route_queue.hh ...test_cache.reference ...test_decision.reference ...test_deletion.reference ...test_dump.reference ...test_fanout.reference ...test_filter.reference ...test_nhlookup.reference ...test_ribin.reference ...test_ribout.reference ...update_test.cc xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 02/12/13 14:38:56 Modified files: xorp/bgp/: aspath.cc aspath.hh aspath_test.cc bgp_trie.hh local_data.cc local_data.hh packet_coding_test.cc packet_test.cc path_attribute.cc peer.cc peer_data.cc plumbing_test.cc route_queue.cc route_queue.hh test_cache.reference test_decision.reference test_deletion.reference test_dump.reference test_fanout.reference test_filter.reference test_nhlookup.reference test_ribin.reference test_ribout.reference update_test.cc xorp/bgp/harness/: peer.cc Log message: Major cleanup of the AsPath and related classes: Use a single class for AS_SET and AS_SEQUENCES, simplify the internal representation, fix printing, remove some redundant methods, etc. etc. The code passes all checks though there are surely some memory leaks as a result of a change in AsPath::encode() routine that I am going to address next when revising the Packet class. This code might still enjoy some work -- e.g. the external representation of AsPaths (the one used in packets) is quite compact and fast and easy to parse, which makes me wonder why we are not using the same one (or something very similar) for internal representation. Also, the way the code is structured now, it makes a lot of possibly unnecessary memory allocations and copies. Once the Packet class has been revised, we might try to optimize things so that we construct packets in preallocated buffers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 15:57:05 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 15:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBDNw3h1012749 for ; Fri, 13 Dec 2002 15:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDNw3wP067526 for ; Fri, 13 Dec 2002 15:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12941 for ; Fri, 13 Dec 2002 15:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12903 for ; Fri, 13 Dec 2002 15:57:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBDNv5wP067512 for ; Fri, 13 Dec 2002 15:57:05 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBDNv5TO022814 for ; Fri, 13 Dec 2002 15:57:05 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBDNv5DO022813; Fri, 13 Dec 2002 15:57:05 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200212132357.gBDNv5DO022813@xorpc.icir.org> Date: Fri, 13 Dec 2002 15:57:05 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 02/12/13 15:57:05 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: Free memory returned by AsPath::encode (one line) Make sure PathAttribute fields are properly initialized Misc code cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 16:21:01 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 16:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE0M2h1015030 for ; Fri, 13 Dec 2002 16:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0M2wP067730 for ; Fri, 13 Dec 2002 16:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13468 for ; Fri, 13 Dec 2002 16:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13422 for ; Fri, 13 Dec 2002 16:21:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0L2wP067722 for ; Fri, 13 Dec 2002 16:21:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE0L2TO023185 for ; Fri, 13 Dec 2002 16:21:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE0L2KS023184; Fri, 13 Dec 2002 16:21:02 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212140021.gBE0L2KS023184@xorpc.icir.org> Date: Fri, 13 Dec 2002 16:21:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/13 16:21:01 Modified files: xorp/bgp/: aspath.cc path_attribute.cc Log message: Fix mismatched new and delete. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 16:26:52 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 16:27:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE0R3h1015433 for ; Fri, 13 Dec 2002 16:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0R3wP067781 for ; Fri, 13 Dec 2002 16:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13555 for ; Fri, 13 Dec 2002 16:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13546 for ; Fri, 13 Dec 2002 16:26:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0QrwP067779 for ; Fri, 13 Dec 2002 16:26:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE0QrTO026153 for ; Fri, 13 Dec 2002 16:26:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE0Qrde026152; Fri, 13 Dec 2002 16:26:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212140026.gBE0Qrde026152@xorpc.icir.org> Date: Fri, 13 Dec 2002 16:26:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config7.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 02/12/13 16:26:52 Modified files: other/testbed/config/: config7.xt Log message: Change linux kernel path for xorp4 from /home/xorpc/u2/homes/pavlin/xorp4.nb to /home/xorpc/u2/homes/pavlin/kernel.linux.xorp4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 16:31:14 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 16:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE0W2h1015879 for ; Fri, 13 Dec 2002 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0W2wP067821 for ; Fri, 13 Dec 2002 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13644 for ; Fri, 13 Dec 2002 16:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13624 for ; Fri, 13 Dec 2002 16:31:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0VEwP067819 for ; Fri, 13 Dec 2002 16:31:14 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE0VETO026913 for ; Fri, 13 Dec 2002 16:31:14 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE0VERJ026912; Fri, 13 Dec 2002 16:31:14 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200212140031.gBE0VERJ026912@xorpc.icir.org> Date: Fri, 13 Dec 2002 16:31:14 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ keepalive_packet.cc notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 02/12/13 16:31:14 Modified files: xorp/bgp/: keepalive_packet.cc notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc update_packet.cc Log message: Remove explicit constants in favour of the corresponding macros for packet and object sizes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 16:51:07 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 16:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE0q2h1017529 for ; Fri, 13 Dec 2002 16:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0q2wP067949 for ; Fri, 13 Dec 2002 16:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13992 for ; Fri, 13 Dec 2002 16:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13979 for ; Fri, 13 Dec 2002 16:51:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE0p8wP067947 for ; Fri, 13 Dec 2002 16:51:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE0p8TO035746 for ; Fri, 13 Dec 2002 16:51:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE0p7wm035745; Fri, 13 Dec 2002 16:51:08 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212140051.gBE0p7wm035745@xorpc.icir.org> Date: Fri, 13 Dec 2002 16:51:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc route_table_ribin.hh test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/13 16:51:07 Modified files: xorp/bgp/: route_table_ribin.cc route_table_ribin.hh test_ribin.cc Log message: Fix some unimportant memory leaks to keep LeakCheck quiet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 17:22:55 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 17:23:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE1N2h1022951 for ; Fri, 13 Dec 2002 17:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE1N2wP068206 for ; Fri, 13 Dec 2002 17:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA14556 for ; Fri, 13 Dec 2002 17:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA14549 for ; Fri, 13 Dec 2002 17:22:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE1MtwP068204 for ; Fri, 13 Dec 2002 17:22:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE1MtTO037025 for ; Fri, 13 Dec 2002 17:22:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE1Mtea037024; Fri, 13 Dec 2002 17:22:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212140122.gBE1Mtea037024@xorpc.icir.org> Date: Fri, 13 Dec 2002 17:22:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 02/12/13 17:22:55 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: * Bug fix: If (S,G,rpt) Join message is received, and there was no corresponding (S,G,rpt) multicast routing entry in the table, then don't create one. * Remove a duplicated line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Fri Dec 13 21:31:56 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Dec 2002 21:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBE5W2h1044483 for ; Fri, 13 Dec 2002 21:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE5W2wP069861 for ; Fri, 13 Dec 2002 21:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA17575 for ; Fri, 13 Dec 2002 21:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA17568 for ; Fri, 13 Dec 2002 21:31:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBE5VuwP069859 for ; Fri, 13 Dec 2002 21:31:56 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBE5VuTO055859 for ; Fri, 13 Dec 2002 21:31:56 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBE5VuPM055858; Fri, 13 Dec 2002 21:31:56 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212140531.gBE5VuPM055858@xorpc.icir.org> Date: Fri, 13 Dec 2002 21:31:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_deletion.cc route_table_deletion.hh route_table_ribin.cc route_table_ribin.hh test_deletion.cc test_filter.cc test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/13 21:31:56 Modified files: xorp/bgp/: route_table_deletion.cc route_table_deletion.hh route_table_ribin.cc route_table_ribin.hh test_deletion.cc test_filter.cc test_ribin.cc Log message: Fix minor memory leak in DeletionTable. Fix unimportant memory leaks in test_ribin and test_deletion, which now leak no memory. Coding style fixes for RibInTable, DeletionTable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Sat Dec 14 13:25:47 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 13:26:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBELQ3h1028848 for ; Sat, 14 Dec 2002 13:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBELQ2wP080673 for ; Sat, 14 Dec 2002 13:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA00208 for ; Sat, 14 Dec 2002 13:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA00199 for ; Sat, 14 Dec 2002 13:25:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBELPlwP080671 for ; Sat, 14 Dec 2002 13:25:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBELPlTO011799 for ; Sat, 14 Dec 2002 13:25:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBELPl2I011798; Sat, 14 Dec 2002 13:25:47 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212142125.gBELPl2I011798@xorpc.icir.org> Date: Sat, 14 Dec 2002 13:25:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.cc route_table_cache.cc route_table_debug.cc route_table_fanout.cc route_table_filter.cc test_cache.cc test_decision.cc test_decision.reference test_fanout.cc test_filter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/14 13:25:47 Modified files: xorp/bgp/: peer_data.cc route_table_cache.cc route_table_debug.cc route_table_fanout.cc route_table_filter.cc test_cache.cc test_decision.cc test_decision.reference test_fanout.cc test_filter.cc Log message: Fix serious space leak in FanoutTable's queue handling. Fix unimportant space leaks in isolation tests. Aslo some minor coding style fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Sat Dec 14 13:50:44 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 13:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBELp3h1031800 for ; Sat, 14 Dec 2002 13:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBELp2wP080866 for ; Sat, 14 Dec 2002 13:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA00500 for ; Sat, 14 Dec 2002 13:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA00489 for ; Sat, 14 Dec 2002 13:50:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBELoiwP080862 for ; Sat, 14 Dec 2002 13:50:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBELoiTO011977 for ; Sat, 14 Dec 2002 13:50:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBELoiJF011976; Sat, 14 Dec 2002 13:50:44 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212142150.gBELoiJF011976@xorpc.icir.org> Date: Sat, 14 Dec 2002 13:50:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_nhlookup.cc test_nhlookup.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/14 13:50:44 Modified files: xorp/bgp/: route_table_nhlookup.cc test_nhlookup.cc Log message: Fix memory leak in NhLookupTable's queue handling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Sat Dec 14 15:15:33 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 15:16:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBENG2h1041724 for ; Sat, 14 Dec 2002 15:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENG2wP081366 for ; Sat, 14 Dec 2002 15:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01445 for ; Sat, 14 Dec 2002 15:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01432 for ; Sat, 14 Dec 2002 15:15:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENFXwP081364 for ; Sat, 14 Dec 2002 15:15:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBENFXTO013323 for ; Sat, 14 Dec 2002 15:15:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBENFXCK013322; Sat, 14 Dec 2002 15:15:33 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212142315.gBENFXCK013322@xorpc.icir.org> Date: Sat, 14 Dec 2002 15:15:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc route_table_ribout.cc test_dump.cc test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/14 15:15:33 Modified files: xorp/bgp/: route_table_dump.cc route_table_ribout.cc test_dump.cc test_ribout.cc Log message: Fix memory leak in RiboutTable's output queue. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:31 2005 Subject: No subject Sat Dec 14 15:32:44 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 15:33:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBENX8h1043716 for ; Sat, 14 Dec 2002 15:33:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENX2wP081458 for ; Sat, 14 Dec 2002 15:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01620 for ; Sat, 14 Dec 2002 15:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01612 for ; Sat, 14 Dec 2002 15:32:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENWiwP081456 for ; Sat, 14 Dec 2002 15:32:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBENWiTO013583 for ; Sat, 14 Dec 2002 15:32:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBENWiqi013582; Sat, 14 Dec 2002 15:32:44 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212142332.gBENWiqi013582@xorpc.icir.org> Date: Sat, 14 Dec 2002 15:32:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/14 15:32:44 Modified files: xorp/bgp/: test_ribout.cc Log message: Fix uninitialized BGP peering type in test_ribout. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sat Dec 14 15:43:16 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 15:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBENi3h1044991 for ; Sat, 14 Dec 2002 15:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENi3wP081525 for ; Sat, 14 Dec 2002 15:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01759 for ; Sat, 14 Dec 2002 15:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01745 for ; Sat, 14 Dec 2002 15:43:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBENhGwP081523 for ; Sat, 14 Dec 2002 15:43:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBENhGTO013786 for ; Sat, 14 Dec 2002 15:43:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBENhG80013785; Sat, 14 Dec 2002 15:43:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212142343.gBENhG80013785@xorpc.icir.org> Date: Sat, 14 Dec 2002 15:43:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc main.hh next_hop_resolver.hh plumbing_test.cc rib_ipc_handler.hh xrl_target.cc xorp/bgp/harness/ command.cc coord.cc peer.cc test_peer.cc xorp/cli/ test_cli.cc xorp/fea/ demo_fea_ifmgr_client.cc fea_click.cc fea_dummy.cc fea_rtsock.cc test_fea.cc xrl_fti.hh xrl_ifmanager.hh xrl_ifupdate.hh xrl_rawsock4.hh xrl_target.cc xorp/libxipc/ .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc test_finder_client.cc test_finder_client2.cc test_finder_ipc.cc test_finder_ipc2.cc test_finder_msg.cc ...test_finder_transport.cc ...test_inproc.cc ...test_lemming.cc ...test_stcp.cc ...test_stcppf.cc ...test_sudp.cc ...test_xrl.cc ...xrl.cc ...xrl.hh ...xrlcmdmap.hh xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/ospfd/xorp/ ospfd_xorp.C ospfd_xorp.h xrl_target.h xorp/pim/ test_pim.cc xorp/rib/ rib_manager.hh test_f! ea_client.c! c test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/ cli.hh main_rtrmgr.cc template_commands.cc unexpanded_xrl.hh xorp_client.hh xorpsh_main.hh xrldb.cc xrldb.hh xorp/xrl/ README xorp/xrl/interfaces/ bgp_xif.hh cli_manager_xif.hh cli_processor_xif.hh common_xif.hh coord_xif.hh datain_xif.hh fea_fti_xif.hh fea_ifmgr_client_xif.hh fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.hh ...finder_client_xif.hh ...finder_xif.hh ...mfea_client_xif.hh ...mfea_xif.hh ...mld6igmp_client_xif.hh ...mld6igmp_xif.hh ...ospf_xif.hh ...pim_xif.hh ...rib_client_xif.hh ...rib_xif.hh ...rtrmgr_client_xif.hh ...rtrmgr_xif.hh ...test_peer_xif.hh ...test_xif.hh xorp/xrl/scripts/ clnt-gen tgt-gen xorp/xrl/targets/ bgp_base.hh cli_base.hh coord.xrls coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh fin! der_base.hh finder_client_base.hh mfea_ba! se.hh . Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 02/12/14 15:43:16 Modified files: xorp/bgp/: bgp.cc main.hh next_hop_resolver.hh plumbing_test.cc rib_ipc_handler.hh xrl_target.cc xorp/bgp/harness/: command.cc coord.cc peer.cc test_peer.cc xorp/cli/: test_cli.cc xorp/fea/: demo_fea_ifmgr_client.cc fea_click.cc fea_dummy.cc fea_rtsock.cc test_fea.cc xrl_fti.hh xrl_ifmanager.hh xrl_ifupdate.hh xrl_rawsock4.hh xrl_target.cc xorp/libxipc/: .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc test_finder_client.cc test_finder_client2.cc test_finder_ipc.cc test_finder_ipc2.cc test_finder_msg.cc test_finder_transport.cc test_inproc.cc test_lemming.cc test_stcp.cc test_stcppf.cc test_sudp.cc test_xrl.cc xrl.cc xrl.hh xrlcmdmap.hh xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/ospfd/xorp/: ospfd_xorp.C ospfd_xorp.h xrl_target.h xorp/pim/: test_pim.cc xorp/rib/: rib_manager.hh test_fea_client.cc test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/: cli.hh main_rtrmgr.cc template_commands.cc unexpanded_xrl.hh xorp_client.hh xorpsh_main.hh xrldb.cc xrldb.hh xorp/xrl/: README xorp/xrl/interfaces/: bgp_xif.hh cli_manager_xif.hh cli_processor_xif.hh common_xif.hh coord_xif.hh datain_xif.hh fea_fti_xif.hh fea_ifmgr_client_xif.hh fea_ifmgr_xif.hh fea_rawpkt_client_xif.hh fea_rawpkt_xif.hh finder_client_xif.hh finder_xif.hh mfea_client_xif.hh mfea_xif.hh mld6igmp_client_xif.hh mld6igmp_xif.hh ospf_xif.hh pim_xif.hh rib_client_xif.hh rib_xif.hh rtrmgr_client_xif.hh rtrmgr_xif.hh test_peer_xif.hh test_xif.hh xorp/xrl/scripts/: clnt-gen tgt-gen xorp/xrl/targets/: bgp_base.hh cli_base.hh coord.xrls coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh pim_base.hh rib_base.hh ribclient_base.hh rtrmgr_base.hh test_base.hh test_peer_base.hh xorpsh_base.hh xorp/xrl/tests/: test_generated.cc Added files: xorp/libxipc/: finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_msg.cc finder_msg.hh finder_server.cc finder_server.hh finder_transport.cc finder_transport.hh test_xrl_args.cc test_xrl_atom.cc test_xrl_error.cc test_xrl_parser.cc test_xrl_parser.data test_xrl_parser.sh test_xrl_router.cc xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_atom_list.cc xrl_atom_list.hh xrl_error.cc xrl_error.hh xrl_parser.cc xrl_parser.hh xrl_parser_input.cc xrl_parser_input.hh xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_std_router.cc xrl_std_router.hh xrl_tokens.cc xrl_tokens.hh Removed files: xorp/libxipc/: finder-client.cc finder-client.hh finder-ipc.cc finder-ipc.hh finder-msg.cc finder-msg.hh finder-server.cc finder-server.hh finder-transport.cc finder-transport.hh test_xrlargs.cc test_xrlatom.cc test_xrlerror.cc test_xrlparser.cc test_xrlparser.sh test_xrlrouter.cc xrl-parser-input.cc xrl-parser-input.hh xrl-parser.cc xrl-parser.hh xrl-parser.test xrl-tokens.cc xrl-tokens.hh xrlargs.cc xrlargs.hh xrlatom-encoding.cc xrlatom-encoding.hh xrlatom-list.cc xrlatom-list.hh xrlatom.cc xrlatom.hh xrlerror.cc xrlerror.hh xrlpf-factory.cc xrlpf-factory.hh xrlpf-inproc.cc xrlpf-inproc.hh xrlpf-stcp-ph.cc xrlpf-stcp-ph.hh xrlpf-stcp.cc xrlpf-stcp.hh xrlpf-sudp.cc xrlpf-sudp.hh xrlpf.hh xrlrouter.cc xrlrouter.hh xrlstdrouter.cc xrlstdrouter.hh Log message: Fix naming inconsistencies with libxipc files and propagate changes to affected files.. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sat Dec 14 20:09:29 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Dec 2002 20:10:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBF4A3h1076125 for ; Sat, 14 Dec 2002 20:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBF4A3wP083108 for ; Sat, 14 Dec 2002 20:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04222 for ; Sat, 14 Dec 2002 20:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04208 for ; Sat, 14 Dec 2002 20:09:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBF49TwP083103 for ; Sat, 14 Dec 2002 20:09:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBF49TTO030997 for ; Sat, 14 Dec 2002 20:09:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBF49TXr030996; Sat, 14 Dec 2002 20:09:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212150409.gBF49TXr030996@xorpc.icir.org> Date: Sat, 14 Dec 2002 20:09:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath_test.cc notification_packet.cc packet_coding_test.cc packet_test.cc plumbing.cc plumbing.hh plumbing_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/14 20:09:29 Modified files: xorp/bgp/: aspath_test.cc notification_packet.cc packet_coding_test.cc packet_test.cc plumbing.cc plumbing.hh plumbing_test.cc Log message: Fix unimportant memory leaks in tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sun Dec 15 14:53:24 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Dec 2002 14:54:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBFMs2h1071691 for ; Sun, 15 Dec 2002 14:54:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBFMs2wP091856 for ; Sun, 15 Dec 2002 14:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16932 for ; Sun, 15 Dec 2002 14:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16922 for ; Sun, 15 Dec 2002 14:53:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBFMrOwP091854 for ; Sun, 15 Dec 2002 14:53:24 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBFMrOTO001945 for ; Sun, 15 Dec 2002 14:53:24 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBFMrOht001944; Sun, 15 Dec 2002 14:53:24 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212152253.gBFMrOht001944@xorpc.icir.org> Date: Sun, 15 Dec 2002 14:53:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xrl_pf.hh xrl_pf_stcp.cc xrl_router.cc xrl_router.hh xorp/libxipc/ xrl_cmd_map.cc xrl_cmd_map.hh xorp/libxipc/ xrlcmdmap.cc xrlcmdmap.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 02/12/15 14:53:24 Modified files: xorp/libxipc/: Makefile.am Makefile.in xrl_pf.hh xrl_pf_stcp.cc xrl_router.cc xrl_router.hh Added files: xorp/libxipc/: xrl_cmd_map.cc xrl_cmd_map.hh Removed files: xorp/libxipc/: xrlcmdmap.cc xrlcmdmap.hh Log message: o Rename xrlcmdmap.{hh,cc} as xrl_cmd_map.{hh,c} o Propagate change and prune extraneous #includes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sun Dec 15 19:08:22 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Dec 2002 19:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBG393h1090660 for ; Sun, 15 Dec 2002 19:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG392wP093536 for ; Sun, 15 Dec 2002 19:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA20104 for ; Sun, 15 Dec 2002 19:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA20095 for ; Sun, 15 Dec 2002 19:08:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG38MwP093527 for ; Sun, 15 Dec 2002 19:08:22 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBG38MTO016248 for ; Sun, 15 Dec 2002 19:08:22 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBG38MqW016247; Sun, 15 Dec 2002 19:08:22 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212160308.gBG38MqW016247@xorpc.icir.org> Date: Sun, 15 Dec 2002 19:08:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in internal_message.cc internal_message.hh plumbing.cc route_queue.hh route_table_decision.cc route_table_decision.hh route_table_fanout.cc route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.hh ...test_decision.cc ...test_decision.reference ...test_filter.cc xorp/bgp/harness/ test_rib1.sh test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 02/12/15 19:08:22 Modified files: xorp/bgp/: Makefile.am Makefile.in internal_message.cc internal_message.hh plumbing.cc route_queue.hh route_table_decision.cc route_table_decision.hh route_table_fanout.cc route_table_filter.cc route_table_filter.hh route_table_nhlookup.hh test_decision.cc test_decision.reference test_filter.cc xorp/bgp/harness/: test_rib1.sh test_routing1.sh Log message: Add support for adding and removing MED attributes. This turns out to be a pain, because for consistency reasons we want to add the MED using the metric that existed when the route passed through DecisionTable, but there's a queue in FanoutTable, so the metric might have changed or become unresolvable in the meantime. The solution to this is to annotate the internal message in the DecisionTable to include the IGP metric, and to make sure that whenever we create a modified message in the FanoutTable or the filters, we remember to propagate the IGP metric too. test6 in test_routing1.sh is now disabled, because it expects a route without a MED, and we now send a MED. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sun Dec 15 20:05:14 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Dec 2002 20:06:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBG462h1094920 for ; Sun, 15 Dec 2002 20:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG462wP093877 for ; Sun, 15 Dec 2002 20:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA21094 for ; Sun, 15 Dec 2002 20:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA21012 for ; Sun, 15 Dec 2002 20:05:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG45EwP093874 for ; Sun, 15 Dec 2002 20:05:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBG45ETO016538 for ; Sun, 15 Dec 2002 20:05:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBG45EnP016537; Sun, 15 Dec 2002 20:05:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212160405.gBG45EnP016537@xorpc.icir.org> Date: Sun, 15 Dec 2002 20:05:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/15 20:05:14 Modified files: xorp/bgp/: test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: Modify tests so that the temporary file they use contains the user's username. This should prevent tests failing due to spurious old test failures left lying around by other users (this seems common on koala and xorpc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Sun Dec 15 21:25:53 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Dec 2002 21:26:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBG5Q3h1000978 for ; Sun, 15 Dec 2002 21:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG5Q3wP094391 for ; Sun, 15 Dec 2002 21:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA22305 for ; Sun, 15 Dec 2002 21:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA22298 for ; Sun, 15 Dec 2002 21:25:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBG5PrwP094389 for ; Sun, 15 Dec 2002 21:25:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBG5PrTO025995 for ; Sun, 15 Dec 2002 21:25:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBG5Prd9025994; Sun, 15 Dec 2002 21:25:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212160525.gBG5Prd9025994@xorpc.icir.org> Date: Sun, 15 Dec 2002 21:25:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 02/12/15 21:25:53 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Schedule an (S,G,rpt) routing entry as a candidate for removal if the state-machine of one of its interfaces transitions to NoInfo state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Mon Dec 16 13:48:34 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Dec 2002 13:49:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBGLn4h1080462 for ; Mon, 16 Dec 2002 13:49:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBGLn3wP003730 for ; Mon, 16 Dec 2002 13:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA09868 for ; Mon, 16 Dec 2002 13:49:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA09838 for ; Mon, 16 Dec 2002 13:48:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBGLmYwP003724 for ; Mon, 16 Dec 2002 13:48:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBGLmYTO071227 for ; Mon, 16 Dec 2002 13:48:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBGLmYYg071226; Mon, 16 Dec 2002 13:48:34 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212162148.gBGLmYYg071226@xorpc.icir.org> Date: Mon, 16 Dec 2002 13:48:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_queue.hh route_table_decision.cc route_table_fanout.cc route_table_filter.cc subnet_route.cc subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/16 13:48:34 Modified files: xorp/bgp/: route_queue.hh route_table_decision.cc route_table_fanout.cc route_table_filter.cc subnet_route.cc subnet_route.hh Log message: Re-think how we store IGP metrics for MED insertion. We now store the IGP metric that is used by Decision in the subnet route that wins. This uses more storage than the previous version, but it means the metric that was used will still be around when the route is later replaced. This will eventually allow RibOut to suppress sending changes to peers if the final route we were about to send hasn't actually changed (because for example, the route changed internally due to the MED changing, but we removed the MED from this peering, so externally the route is unchanged). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Mon Dec 16 14:39:20 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Dec 2002 14:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBGMe3h1090435 for ; Mon, 16 Dec 2002 14:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBGMe2wP004126 for ; Mon, 16 Dec 2002 14:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11052 for ; Mon, 16 Dec 2002 14:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11031 for ; Mon, 16 Dec 2002 14:39:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBGMdKwP004121 for ; Mon, 16 Dec 2002 14:39:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBGMdKTO071619 for ; Mon, 16 Dec 2002 14:39:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBGMdKcD071618; Mon, 16 Dec 2002 14:39:20 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212162239.gBGMdKcD071618@xorpc.icir.org> Date: Mon, 16 Dec 2002 14:39:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc test_routing1.sh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 02/12/16 14:39:20 Modified files: xorp/bgp/harness/: peer.cc test_routing1.sh xorp/docs/test_harness/: test_harness.tex Log message: The test harness parser now supports the "med" argument when building update packets. Updated documentation, re-enabled test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Mon Dec 16 20:49:17 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Dec 2002 20:50:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBH4o2h1028732 for ; Mon, 16 Dec 2002 20:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBH4o2wP007050 for ; Mon, 16 Dec 2002 20:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA17852 for ; Mon, 16 Dec 2002 20:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA17834 for ; Mon, 16 Dec 2002 20:49:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBH4nIwP007045 for ; Mon, 16 Dec 2002 20:49:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBH4nITO098400 for ; Mon, 16 Dec 2002 20:49:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBH4nI7a098399; Mon, 16 Dec 2002 20:49:18 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212170449.gBH4nI7a098399@xorpc.icir.org> Date: Mon, 16 Dec 2002 20:49:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh path_attribute_list.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/16 20:49:17 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh path_attribute_list.cc update_packet.cc Log message: Add (untested) support for transiting unknown optional transitive attributes between our peers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 2:03:47 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 02:04:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBHA43h1055632 for ; Tue, 17 Dec 2002 02:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHA42wP009425 for ; Tue, 17 Dec 2002 02:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA22759 for ; Tue, 17 Dec 2002 02:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA22747 for ; Tue, 17 Dec 2002 02:03:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHA3lwP009417 for ; Tue, 17 Dec 2002 02:03:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBHA3lTO013561 for ; Tue, 17 Dec 2002 02:03:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBHA3lmQ013560; Tue, 17 Dec 2002 02:03:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212171003.gBHA3lmQ013560@xorpc.icir.org> Date: Tue, 17 Dec 2002 2:03:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre.hh pim_mre_join_prune.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc pim_node_cli.cc pim_proto_join_prune.cc ...pim_proto_join_prune_message.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 02/12/17 02:03:47 Modified files: xorp/pim/: pim_mre.cc pim_mre.hh pim_mre_join_prune.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc pim_node_cli.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Redesign and reimplement the mechanism for handling the downstream (S,G,rpt) state machine (per interface): - The previous mechanism didn't work properly - The new mechanism follows much closer the spec (e.g., it models even the PruneTmp and PrunePendingTmp transient states). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 12:12:25 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 12:13:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBHKD3h1024488 for ; Tue, 17 Dec 2002 12:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHKD3wP015705 for ; Tue, 17 Dec 2002 12:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA04931 for ; Tue, 17 Dec 2002 12:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA04916 for ; Tue, 17 Dec 2002 12:12:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHKCPwP015702 for ; Tue, 17 Dec 2002 12:12:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBHKCPTO038895 for ; Tue, 17 Dec 2002 12:12:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBHKCPC0038894; Tue, 17 Dec 2002 12:12:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212172012.gBHKCPC0038894@xorpc.icir.org> Date: Tue, 17 Dec 2002 12:12:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 02/12/17 12:12:25 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Modification to PimJpHeader::mrt_commit() to improve the processing of (S,G,rpt) Prune messages: add a separate map of the group addresses for all (*,G)Join messages that have seen so far within the same control message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 14:06:08 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 14:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBHM73h1033264 for ; Tue, 17 Dec 2002 14:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHM72wP016995 for ; Tue, 17 Dec 2002 14:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA07651 for ; Tue, 17 Dec 2002 14:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA07637 for ; Tue, 17 Dec 2002 14:06:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBHM68wP016989 for ; Tue, 17 Dec 2002 14:06:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBHM68TO048814 for ; Tue, 17 Dec 2002 14:06:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBHM688w048813; Tue, 17 Dec 2002 14:06:08 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212172206.gBHM688w048813@xorpc.icir.org> Date: Tue, 17 Dec 2002 14:06:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh ...route_table_decision.cc ...route_table_decision.hh ...route_table_deletion.cc ...route_table_deletion.hh ...route_table_dump.cc ...route_table_dump.hh ...route_table_fanout.cc ...route_table_fanout.hh ...route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_dump.reference ...test_fanout.cc ...test_fanout.reference ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/17 14:06:08 Modified files: xorp/bgp/: dummy_next_hop_resolver.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_dump.reference test_fanout.cc test_fanout.reference test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: Rename BGP RouteTables, dropping the BGP prefix, so the tables names match the documentation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 16:36:38 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 16:37:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBI0b3h1050080 for ; Tue, 17 Dec 2002 16:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI0b2wP018230 for ; Tue, 17 Dec 2002 16:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA10831 for ; Tue, 17 Dec 2002 16:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA10818 for ; Tue, 17 Dec 2002 16:36:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI0acwP018228 for ; Tue, 17 Dec 2002 16:36:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBI0acTO056237 for ; Tue, 17 Dec 2002 16:36:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBI0acib056236; Tue, 17 Dec 2002 16:36:38 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212180036.gBI0acib056236@xorpc.icir.org> Date: Tue, 17 Dec 2002 16:36:38 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/17 16:36:38 Modified files: xorp/bgp/: peer.cc peer.hh Log message: Add counters and timers needed for the BGP MIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 16:50:56 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 16:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBI0p3h1053519 for ; Tue, 17 Dec 2002 16:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI0p3wP018340 for ; Tue, 17 Dec 2002 16:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11196 for ; Tue, 17 Dec 2002 16:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11186 for ; Tue, 17 Dec 2002 16:50:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI0ouwP018338 for ; Tue, 17 Dec 2002 16:50:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBI0ouTO059084 for ; Tue, 17 Dec 2002 16:50:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBI0ou0M059083; Tue, 17 Dec 2002 16:50:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212180050.gBI0ou0M059083@xorpc.icir.org> Date: Tue, 17 Dec 2002 16:50:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps pim_test_4_4_receiving_sg_rpt_join_prune_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 02/12/17 16:50:56 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps pim_test_4_4_receiving_sg_rpt_join_prune_messages.fig Log message: Add section "4.4 Receiving (S,G,rpt) Join/Prune Messages" to the PIM testsuite. All described scenarios work in the implementation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:32 2005 Subject: No subject Tue Dec 17 19:06:07 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 19:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBI373h1074096 for ; Tue, 17 Dec 2002 19:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI373wP019269 for ; Tue, 17 Dec 2002 19:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13239 for ; Tue, 17 Dec 2002 19:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13231 for ; Tue, 17 Dec 2002 19:06:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI367wP019267 for ; Tue, 17 Dec 2002 19:06:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBI367TO062505 for ; Tue, 17 Dec 2002 19:06:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBI367QC062504; Tue, 17 Dec 2002 19:06:07 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212180306.gBI367QC062504@xorpc.icir.org> Date: Tue, 17 Dec 2002 19:06:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Makefile.am Makefile.in next_hop_resolver.cc next_hop_resolver.hh route_table_nhlookup.hh xorp/libxorp/ .cvsignore Makefile.am Makefile.in xorp/bgp/ test_next_hop_resolver.cc xorp/libxorp/ test_main.hh test_test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 02/12/17 19:06:07 Modified files: xorp/bgp/: .cvsignore Makefile.am Makefile.in next_hop_resolver.cc next_hop_resolver.hh route_table_nhlookup.hh xorp/libxorp/: .cvsignore Makefile.am Makefile.in Added files: xorp/bgp/: test_next_hop_resolver.cc xorp/libxorp/: test_main.hh test_test_main.cc Log message: Add a unit test program for the next hop resolver. Fixed a number of bugs in the next hop resolver to do with reference counting next hops. Placed a TestMain helper class in libxorp that can handle common argument parsing and xlog setup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Tue Dec 17 19:17:52 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 19:18:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBI3I3h1077759 for ; Tue, 17 Dec 2002 19:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI3I3wP019348 for ; Tue, 17 Dec 2002 19:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13364 for ; Tue, 17 Dec 2002 19:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13357 for ; Tue, 17 Dec 2002 19:17:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI3HqwP019346 for ; Tue, 17 Dec 2002 19:17:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBI3HqTO068552 for ; Tue, 17 Dec 2002 19:17:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBI3HqAg068551; Tue, 17 Dec 2002 19:17:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212180317.gBI3HqAg068551@xorpc.icir.org> Date: Tue, 17 Dec 2002 19:17:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ soak.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/17 19:17:52 Modified files: xorp/bgp/harness/: soak.sh Log message: Add "test_rib_fea1.sh" and "test_terminate.sh" to the soak tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Tue Dec 17 20:10:42 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Dec 2002 20:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBI4B2h1091347 for ; Tue, 17 Dec 2002 20:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI4B2wP019717 for ; Tue, 17 Dec 2002 20:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14122 for ; Tue, 17 Dec 2002 20:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14099 for ; Tue, 17 Dec 2002 20:10:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBI4AgwP019715 for ; Tue, 17 Dec 2002 20:10:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBI4AgTO076828 for ; Tue, 17 Dec 2002 20:10:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBI4AgAI076827; Tue, 17 Dec 2002 20:10:42 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212180410.gBI4AgAI076827@xorpc.icir.org> Date: Tue, 17 Dec 2002 20:10:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in route_table_decision.hh test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 02/12/17 20:10:42 Modified files: xorp/bgp/: Makefile.am Makefile.in route_table_decision.hh test_next_hop_resolver.cc Log message: If a nexthop for which we have an answer from the RIB becomes invalid make sure we do the right stuff. That is return the old values then call the decision table with the new values if they have changed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 14:54:31 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 14:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBIMt2h1052006 for ; Wed, 18 Dec 2002 14:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBIMt2wP030507 for ; Wed, 18 Dec 2002 14:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA03886 for ; Wed, 18 Dec 2002 14:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA03864 for ; Wed, 18 Dec 2002 14:54:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBIMsVwP030502 for ; Wed, 18 Dec 2002 14:54:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBIMsVTO035546 for ; Wed, 18 Dec 2002 14:54:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBIMsVZZ035545; Wed, 18 Dec 2002 14:54:31 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212182254.gBIMsVZZ035545@xorpc.icir.org> Date: Wed, 18 Dec 2002 14:54:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.cc finder_client.hh test_finder_client.cc test_finder_client2.cc test_inproc.cc test_stcp.cc test_sudp.cc test_xrl_router.cc xrl_cmd_map.cc xrl_cmd_map.hh ...xrl_pf.hh ...xrl_pf_inproc.cc ...xrl_pf_inproc.hh ...xrl_pf_stcp.cc ...xrl_pf_stcp.hh ...xrl_pf_sudp.cc ...xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 02/12/18 14:54:31 Modified files: xorp/libxipc/: finder_client.cc finder_client.hh test_finder_client.cc test_finder_client2.cc test_inproc.cc test_stcp.cc test_sudp.cc test_xrl_router.cc xrl_cmd_map.cc xrl_cmd_map.hh xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Log message: o Remove declarations, definitions, and use of deprecated API calls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 15:22:18 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 15:23:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBINN8h1062786 for ; Wed, 18 Dec 2002 15:23:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBINN2wP030763 for ; Wed, 18 Dec 2002 15:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA04659 for ; Wed, 18 Dec 2002 15:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA04634 for ; Wed, 18 Dec 2002 15:22:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBINMIwP030758 for ; Wed, 18 Dec 2002 15:22:18 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBINMITO041552 for ; Wed, 18 Dec 2002 15:22:18 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBINMIJD041551; Wed, 18 Dec 2002 15:22:18 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212182322.gBINMIJD041551@xorpc.icir.org> Date: Wed, 18 Dec 2002 15:22:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 02/12/18 15:22:18 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc Log message: 1) If a next hop changed and we re-registered interest with the RIB, in the case that the next hop stayed unresolvable and the metric change we were incorrectly calling the decision process. Moved this test into a separate function. 2) The soak tests were repeatedly hitting a recently added assertion in "register_nexthop" that the reference count could not be zero. This could happen if a next hop became invalid and we de-registered interest before the response from the RIB. Added tests to detect the problems described above. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 17:13:17 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 17:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1E2h1082925 for ; Wed, 18 Dec 2002 17:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1E2wP031688 for ; Wed, 18 Dec 2002 17:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06848 for ; Wed, 18 Dec 2002 17:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06826 for ; Wed, 18 Dec 2002 17:13:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1DIwP031682 for ; Wed, 18 Dec 2002 17:13:18 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1DITO060195 for ; Wed, 18 Dec 2002 17:13:18 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBJ1DIi0060194; Wed, 18 Dec 2002 17:13:18 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212190113.gBJ1DIi0060194@xorpc.icir.org> Date: Wed, 18 Dec 2002 17:13:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ bogon-be-gone.sed Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 02/12/18 17:13:17 Modified files: xorp/utils/: bogon-be-gone.sed Log message: o Add commands to remove opening brace from function name definition line per style discussion. o Do not touch anything but trailing spaces within C comments. o Try not to touch alignment of const values and values within enums. o Fix while substitution to match comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 17:29:15 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 17:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1U3h1088048 for ; Wed, 18 Dec 2002 17:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1U2wP031848 for ; Wed, 18 Dec 2002 17:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07177 for ; Wed, 18 Dec 2002 17:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07097 for ; Wed, 18 Dec 2002 17:29:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1TFwP031841 for ; Wed, 18 Dec 2002 17:29:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1TFTO060348 for ; Wed, 18 Dec 2002 17:29:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBJ1TFLK060347; Wed, 18 Dec 2002 17:29:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200212190129.gBJ1TFLK060347@xorpc.icir.org> Date: Wed, 18 Dec 2002 17:29:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc finder.cc finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_msg.cc finder_msg.hh finder_server.cc finder_server.hh finder_transport.cc ...finder_transport.hh ...header.cc ...header.hh ...hmac.cc ...hmac.hh ...hmac_md5.c ...hmac_md5.h ...md5.c ...sockutil.cc ...sockutil.hh ...test_finder_client.cc ...test_finder_client2.cc ...test_finder_ipc.cc ...test_finder_ipc2.cc ...test_finder_msg.cc ...test_finder_transport.cc ...test_header.cc ...test_inproc.cc ...test_lemming.cc ...test_stcp.cc ...test_stcppf.cc ...test_sudp.cc ...test_xrl.cc ...test_xrl_args.cc ...test_xrl_atom.cc ...test_xrl_error.cc ...test_xrl_parser.cc ...test_xrl_router.cc ...xrl.cc ...xrl.hh ...xrl_args.cc ...xrl_args.hh ...xrl_atom.cc ...xrl_atom.hh ...xrl_atom_encoding.cc ...xrl_atom_encoding.hh ...xrl_atom_list.cc ...xrl_atom_list.hh ...xr! l_cmd_map.c! c ...xrl_cmd_map.hh ...xrl_error.cc ...xrl_error.hh ...xrl_parser.cc ...xrl_parser.hh ...xrl_parser_input.cc ...xrl_parser_input.hh ...xrl_pf.hh ...xrl_pf_factory.cc ...xrl_pf_factory.hh ...xrl_pf_inproc.cc ...xrl_pf_inproc.hh ...xrl_pf_stcp.cc ...xrl_pf_stcp.hh ...xrl_pf_stcp_ph.cc ...xrl_pf_stcp_ph.hh ...xrl_pf_sudp.cc ...xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh ...xrl_std_router.hh ...xrl_tokens.hh ...xuid.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 02/12/18 17:29:15 Modified files: xorp/libxipc/: call_xrl.cc finder.cc finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_msg.cc finder_msg.hh finder_server.cc finder_server.hh finder_transport.cc finder_transport.hh header.cc header.hh hmac.cc hmac.hh hmac_md5.c hmac_md5.h md5.c sockutil.cc sockutil.hh test_finder_client.cc test_finder_client2.cc test_finder_ipc.cc test_finder_ipc2.cc test_finder_msg.cc test_finder_transport.cc test_header.cc test_inproc.cc test_lemming.cc test_stcp.cc test_stcppf.cc test_sudp.cc test_xrl.cc test_xrl_args.cc test_xrl_atom.cc test_xrl_error.cc test_xrl_parser.cc test_xrl_router.cc xrl.cc xrl.hh xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_atom_list.cc xrl_atom_list.hh xrl_cmd_map.cc xrl_cmd_map.hh xrl_error.cc xrl_error.hh xrl_parser.cc xrl_parser.hh xrl_parser_input.cc xrl_parser_input.hh xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_std_router.hh xrl_tokens.hh xuid.cc Log message: De-bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 17:36:50 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 17:37:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1b3h1092593 for ; Wed, 18 Dec 2002 17:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1b2wP031928 for ; Wed, 18 Dec 2002 17:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07338 for ; Wed, 18 Dec 2002 17:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07331 for ; Wed, 18 Dec 2002 17:36:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1aowP031924 for ; Wed, 18 Dec 2002 17:36:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1aoTO065233 for ; Wed, 18 Dec 2002 17:36:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBJ1ao8D065232; Wed, 18 Dec 2002 17:36:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212190136.gBJ1ao8D065232@xorpc.icir.org> Date: Wed, 18 Dec 2002 17:36:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config7.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 02/12/18 17:36:50 Modified files: other/testbed/config/: config7.xt Log message: Reconfigure xorp6 with a multicast kernel _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Wed Dec 18 17:55:22 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Dec 2002 17:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1u2h1095250 for ; Wed, 18 Dec 2002 17:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1u2wP032100 for ; Wed, 18 Dec 2002 17:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07688 for ; Wed, 18 Dec 2002 17:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA07668 for ; Wed, 18 Dec 2002 17:55:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1tMwP032098 for ; Wed, 18 Dec 2002 17:55:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBJ1tMTO068627 for ; Wed, 18 Dec 2002 17:55:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBJ1tMpg068625; Wed, 18 Dec 2002 17:55:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212190155.gBJ1tMpg068625@xorpc.icir.org> Date: Wed, 18 Dec 2002 17:55:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 02/12/18 17:55:22 Modified files: xorp/pim/: configure_pim Log message: * Add configuration for xorp6 * Change the configuration such that only xorp3 is the Cand-BSR/Cand-RP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:33 2005 Subject: No subject Thu Dec 19 14:28:45 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Dec 2002 14:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBJMT2h1047896 for ; Thu, 19 Dec 2002 14:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJMT2wP043523 for ; Thu, 19 Dec 2002 14:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28546 for ; Thu, 19 Dec 2002 14:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28536 for ; Thu, 19 Dec 2002 14:28:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBJMSjwP043519 for ; Thu, 19 Dec 2002 14:28:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBJMSjTO026394 for ; Thu, 19 Dec 2002 14:28:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBJMSjRX026393; Thu, 19 Dec 2002 14:28:45 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200212192228.gBJMSjRX026393@xorpc.icir.org> Date: Thu, 19 Dec 2002 14:28:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 02/12/19 14:28:45 Modified files: xorp/bgp/harness/: test_routing1.sh Log message: Re-enabled tests "test4" and "test5". The tests required the aspaths to reflect the AS numbers actually being used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Thu Dec 19 16:30:15 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Dec 2002 16:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBK0V2h1057115 for ; Thu, 19 Dec 2002 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK0V2wP044537 for ; Thu, 19 Dec 2002 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01372 for ; Thu, 19 Dec 2002 16:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01357 for ; Thu, 19 Dec 2002 16:30:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK0UFwP044529 for ; Thu, 19 Dec 2002 16:30:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBK0UFTO032422 for ; Thu, 19 Dec 2002 16:30:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBK0UFSS032421; Thu, 19 Dec 2002 16:30:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212200030.gBK0UFSS032421@xorpc.icir.org> Date: Thu, 19 Dec 2002 16:30:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 02/12/19 16:30:15 Modified files: xorp/libxipc/: Makefile.in Log message: Makefile.in regenerated _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Thu Dec 19 16:37:39 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Dec 2002 16:38:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBK0c4h1057646 for ; Thu, 19 Dec 2002 16:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK0c4wP044598 for ; Thu, 19 Dec 2002 16:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01478 for ; Thu, 19 Dec 2002 16:38:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01467 for ; Thu, 19 Dec 2002 16:37:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK0bdwP044596 for ; Thu, 19 Dec 2002 16:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBK0bdTO035689 for ; Thu, 19 Dec 2002 16:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBK0bdMT035688; Thu, 19 Dec 2002 16:37:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200212200037.gBK0bdMT035688@xorpc.icir.org> Date: Thu, 19 Dec 2002 16:37:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 02/12/19 16:37:39 Modified files: xorp/pim/: TODO Log message: Add two more TODO entries _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Thu Dec 19 22:42:49 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Dec 2002 22:43:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBK6h3h1084924 for ; Thu, 19 Dec 2002 22:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK6h3wP047027 for ; Thu, 19 Dec 2002 22:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA06312 for ; Thu, 19 Dec 2002 22:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA06304 for ; Thu, 19 Dec 2002 22:42:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBK6gnwP047025 for ; Thu, 19 Dec 2002 22:42:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBK6gnTO052062 for ; Thu, 19 Dec 2002 22:42:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBK6gnEl052061; Thu, 19 Dec 2002 22:42:49 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212200642.gBK6gnEl052061@xorpc.icir.org> Date: Thu, 19 Dec 2002 22:42:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ iptuple.cc iptuple.hh main.cc main.hh peer.cc peer.hh peer_list.cc peer_list.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 02/12/19 22:42:49 Modified files: xorp/bgp/: iptuple.cc iptuple.hh main.cc main.hh peer.cc peer.hh peer_list.cc peer_list.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Add XRL interface to supply the data required by the Peer table part of the MIB and by the CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Fri Dec 20 15:40:50 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Dec 2002 15:41:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBKNf3h1062707 for ; Fri, 20 Dec 2002 15:41:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBKNf2wP056674 for ; Fri, 20 Dec 2002 15:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22568 for ; Fri, 20 Dec 2002 15:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22550 for ; Fri, 20 Dec 2002 15:40:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBKNeowP056670 for ; Fri, 20 Dec 2002 15:40:50 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBKNeoTO096505 for ; Fri, 20 Dec 2002 15:40:50 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBKNeoH1096504; Fri, 20 Dec 2002 15:40:50 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212202340.gBKNeoH1096504@xorpc.icir.org> Date: Fri, 20 Dec 2002 15:40:50 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 02/12/20 15:40:50 Modified files: xorp/bgp/: route_table_cache.cc Log message: Fix bug in CacheTable route_dump, where the version of the route passed on downstream was not the version from the cache which we'd added the igp_metric information to. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Fri Dec 20 16:30:14 2002 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Dec 2002 16:31:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id gBL0V3h1066458 for ; Fri, 20 Dec 2002 16:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBL0V3wP057085 for ; Fri, 20 Dec 2002 16:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA23437 for ; Fri, 20 Dec 2002 16:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA23427 for ; Fri, 20 Dec 2002 16:30:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id gBL0UFwP057076 for ; Fri, 20 Dec 2002 16:30:15 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gBL0UETO000199 for ; Fri, 20 Dec 2002 16:30:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gBL0UEbk000198; Fri, 20 Dec 2002 16:30:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200212210030.gBL0UEbk000198@xorpc.icir.org> Date: Fri, 20 Dec 2002 16:30:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 02/12/20 16:30:14 xorp/bgp/tools Update of /usr/local/share/doc/apache/cvs/xorp/bgp/tools In directory xorpc.icir.org:/tmp/cvs-serv185/tools Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/bgp/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Mon Jan 6 12:28:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jan 2003 12:29:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h06KT3wL085560 for ; Mon, 6 Jan 2003 12:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h06KT3wP049311 for ; Mon, 6 Jan 2003 12:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA05984; Mon, 6 Jan 2003 12:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA05977 for ; Mon, 6 Jan 2003 12:28:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h06KSkwP049308 for ; Mon, 6 Jan 2003 12:28:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h06KSkTO097655 for ; Mon, 6 Jan 2003 12:28:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h06KSkTo097654; Mon, 6 Jan 2003 12:28:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301062028.h06KSkTo097654@xorpc.icir.org> Date: Mon, 6 Jan 2003 12:28:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO pim_nbr.cc pim_nbr.hh pim_proto_hello.cc pim_vif.cc pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/06 12:28:46 Modified files: xorp/pim/: TODO pim_nbr.cc pim_nbr.hh pim_proto_hello.cc pim_vif.cc pim_vif.hh Log message: * Renamed *tracking_support_present to *tracking_support_disabled * Remove the corresponding TODO entry _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Mon Jan 6 17:43:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jan 2003 17:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h071i2wL008684 for ; Mon, 6 Jan 2003 17:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h071i2wP052137 for ; Mon, 6 Jan 2003 17:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13024; Mon, 6 Jan 2003 17:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13008 for ; Mon, 6 Jan 2003 17:43:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h071h5wP052135 for ; Mon, 6 Jan 2003 17:43:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h071h4TO017487 for ; Mon, 6 Jan 2003 17:43:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h071h4fc017486; Mon, 6 Jan 2003 17:43:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301070143.h071h4fc017486@xorpc.icir.org> Date: Mon, 6 Jan 2003 17:43:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/01/06 17:43:04 Modified files: xorp/pim/: pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: * Add new PIM-related configuration XRLs and the appropriate support for them: - get_vif_is_tracking_support_disabled - set_vif_is_tracking_support_disabled - reset_vif_is_tracking_support_disabled * Fix PimVif::set_lan_delay_callback() and PimVif::set_override_interval_callback() such that they do not modify the "tracking_support_disabled" configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Mon Jan 6 18:36:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jan 2003 18:36:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h072a4wL008968 for ; Mon, 6 Jan 2003 18:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h072a4wP052583 for ; Mon, 6 Jan 2003 18:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA13692; Mon, 6 Jan 2003 18:36:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA13685 for ; Mon, 6 Jan 2003 18:36:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h072a0wP052581 for ; Mon, 6 Jan 2003 18:36:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h072a0TO018762 for ; Mon, 6 Jan 2003 18:36:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h072a0XF018761; Mon, 6 Jan 2003 18:36:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301070236.h072a0XF018761@xorpc.icir.org> Date: Mon, 6 Jan 2003 18:36:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_join_prune.cc pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/06 18:36:00 Modified files: xorp/pim/: pim_mre.hh pim_mre_join_prune.cc pim_proto_join_prune_message.cc Log message: * Bugfix the processing of the following events, so now the processing considers the recently introduced t_joinsuppress: - (*,*,RP) See Join (*,*,RP) to MRIB.next_hop(RP) - (*,G) See Join(*,G) to RPF'(*,G) - (S,G) See Join(S,G) to RPF'(S,G) The modified methods are: - PimMre::rp_see_join_rp() - PimMre::wc_see_join_wc() - PimMre::sg_see_join_sg() * For consistency, add the additional holdtime argument to (almost) all methods PimMre::foo_see_join_foo() and PimMre::foo_see_prune_foo() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Mon Jan 6 19:08:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jan 2003 19:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h07393wL009131 for ; Mon, 6 Jan 2003 19:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h07392wP052866 for ; Mon, 6 Jan 2003 19:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA14110; Mon, 6 Jan 2003 19:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA14100 for ; Mon, 6 Jan 2003 19:08:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h07382wP052863 for ; Mon, 6 Jan 2003 19:08:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h07382TO019376 for ; Mon, 6 Jan 2003 19:08:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h07382Wp019375; Mon, 6 Jan 2003 19:08:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301070308.h07382Wp019375@xorpc.icir.org> Date: Mon, 6 Jan 2003 19:08:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/06 19:08:02 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Minor comment rewording (to make the comments more consistent with the spec wording). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:34 2005 Subject: No subject Mon Jan 6 20:31:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jan 2003 20:32:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h074W6wL009518 for ; Mon, 6 Jan 2003 20:32:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h074W6wP053443 for ; Mon, 6 Jan 2003 20:32:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15150; Mon, 6 Jan 2003 20:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15139 for ; Mon, 6 Jan 2003 20:31:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h074VSwP053435 for ; Mon, 6 Jan 2003 20:31:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h074VSTO023434 for ; Mon, 6 Jan 2003 20:31:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h074VSLG023433; Mon, 6 Jan 2003 20:31:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301070431.h074VSLG023433@xorpc.icir.org> Date: Mon, 6 Jan 2003 20:31:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asyncio.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/01/06 20:31:28 Modified files: xorp/libxorp/: asyncio.hh Log message: o constify fd() and running() methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Tue Jan 7 14:54:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Jan 2003 14:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h07Mt3wL019655 for ; Tue, 7 Jan 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h07Mt3wP063670 for ; Tue, 7 Jan 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA04815; Tue, 7 Jan 2003 14:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA04807 for ; Tue, 7 Jan 2003 14:54:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h07MsjwP063664 for ; Tue, 7 Jan 2003 14:54:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h07MsjTO079501 for ; Tue, 7 Jan 2003 14:54:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h07Msj9F079500; Tue, 7 Jan 2003 14:54:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301072254.h07Msj9F079500@xorpc.icir.org> Date: Tue, 7 Jan 2003 14:54:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_hello.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/07 14:54:45 Modified files: xorp/pim/: pim_proto_hello.cc Log message: Bugfix: conditionally set the T-bit in the LAN Prune Delay Hello option based on the interface configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Tue Jan 7 16:24:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Jan 2003 16:25:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h080P4wL020338 for ; Tue, 7 Jan 2003 16:25:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h080P3wP064351 for ; Tue, 7 Jan 2003 16:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06546; Tue, 7 Jan 2003 16:25:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06527 for ; Tue, 7 Jan 2003 16:24:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h080OkwP064342 for ; Tue, 7 Jan 2003 16:24:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h080OkTO082616 for ; Tue, 7 Jan 2003 16:24:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h080OksQ082615; Tue, 7 Jan 2003 16:24:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301080024.h080OksQ082615@xorpc.icir.org> Date: Tue, 7 Jan 2003 16:24:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config8.eps config8.fig config8.ps config8.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/01/07 16:24:46 Added files: other/testbed/config/: config8.eps config8.fig config8.ps config8.xt Log message: Add a new testbed configuration file: the difference between config7 and config8 is the addition of a link from xorp2/dc2 to LAN 10.4.0.* _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Tue Jan 7 18:06:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Jan 2003 18:07:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0827DwL022395 for ; Tue, 7 Jan 2003 18:07:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0827DwP065194 for ; Tue, 7 Jan 2003 18:07:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA08556; Tue, 7 Jan 2003 18:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA08548 for ; Tue, 7 Jan 2003 18:06:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0826mwP065186 for ; Tue, 7 Jan 2003 18:06:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0826mTO090150 for ; Tue, 7 Jan 2003 18:06:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0826m1h090149; Tue, 7 Jan 2003 18:06:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301080206.h0826m1h090149@xorpc.icir.org> Date: Tue, 7 Jan 2003 18:06:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config8.eps config8.fig config8.ps config8.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/01/07 18:06:48 Modified files: other/testbed/config/: config8.eps config8.fig config8.ps config8.xt Log message: Replace xorp2/dc3 with xorp2/dc4, because dc3 is already hard-wired to another connection. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Tue Jan 7 18:09:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Jan 2003 18:10:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h082A6wL022522 for ; Tue, 7 Jan 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h082A6wP065214 for ; Tue, 7 Jan 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA08608; Tue, 7 Jan 2003 18:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA08593 for ; Tue, 7 Jan 2003 18:09:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0829WwP065197 for ; Tue, 7 Jan 2003 18:09:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0829VTO090275 for ; Tue, 7 Jan 2003 18:09:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0829VL0090274; Tue, 7 Jan 2003 18:09:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301080209.h0829VL0090274@xorpc.icir.org> Date: Tue, 7 Jan 2003 18:09:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config8.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/01/07 18:09:31 Modified files: other/testbed/config/: config8.xt Log message: Fix a mistake in the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Tue Jan 7 19:10:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Jan 2003 19:11:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h083B7wL023663 for ; Tue, 7 Jan 2003 19:11:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h083B6wP065617 for ; Tue, 7 Jan 2003 19:11:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA09354; Tue, 7 Jan 2003 19:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA09330 for ; Tue, 7 Jan 2003 19:10:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h083AkwP065607 for ; Tue, 7 Jan 2003 19:10:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h083AkTO090853 for ; Tue, 7 Jan 2003 19:10:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h083AjZe090852; Tue, 7 Jan 2003 19:10:45 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301080310.h083AjZe090852@xorpc.icir.org> Date: Tue, 7 Jan 2003 19:10:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/01/07 19:10:45 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: The arguments to enable and disable interface were incorrect. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Wed Jan 8 10:34:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 10:35:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h08IZ2wL029581 for ; Wed, 8 Jan 2003 10:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08IZ2wP073861 for ; Wed, 8 Jan 2003 10:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23303; Wed, 8 Jan 2003 10:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23296 for ; Wed, 8 Jan 2003 10:34:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08IYqwP073856 for ; Wed, 8 Jan 2003 10:34:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h08IYqTO035521 for ; Wed, 8 Jan 2003 10:34:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h08IYqrW035520; Wed, 8 Jan 2003 10:34:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301081834.h08IYqrW035520@xorpc.icir.org> Date: Wed, 8 Jan 2003 10:34:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom_encoding.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/08 10:34:52 Modified files: xorp/libxipc/: xrl_atom_encoding.hh Log message: Comment nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Wed Jan 8 10:35:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 10:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h08Ia2wL029604 for ; Wed, 8 Jan 2003 10:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08Ia2wP073888 for ; Wed, 8 Jan 2003 10:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23338; Wed, 8 Jan 2003 10:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23325 for ; Wed, 8 Jan 2003 10:35:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08IZcwP073886 for ; Wed, 8 Jan 2003 10:35:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h08IZcTO035563 for ; Wed, 8 Jan 2003 10:35:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h08IZcD7035562; Wed, 8 Jan 2003 10:35:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301081835.h08IZcD7035562@xorpc.icir.org> Date: Wed, 8 Jan 2003 10:35:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_args.hh xrl_pf.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/08 10:35:38 Modified files: xorp/libxipc/: xrl_args.hh xrl_pf.hh Log message: o Make XrlArgs(const char*) constructor explicit and propagate change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Wed Jan 8 13:59:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 14:00:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h08M08wL030783 for ; Wed, 8 Jan 2003 14:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08M08wP075663 for ; Wed, 8 Jan 2003 14:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28428; Wed, 8 Jan 2003 14:00:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA28406 for ; Wed, 8 Jan 2003 13:59:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08LxxwP075631 for ; Wed, 8 Jan 2003 13:59:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h08LxwTO046720 for ; Wed, 8 Jan 2003 13:59:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h08Lxwc1046719; Wed, 8 Jan 2003 13:59:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301082159.h08Lxwc1046719@xorpc.icir.org> Date: Wed, 8 Jan 2003 13:59:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/01/08 13:59:58 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh Log message: Add modifier and accessor methods to xrl interfaces for enabled property of interface addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Wed Jan 8 13:59:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 14:00:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h08M0CwL030789 for ; Wed, 8 Jan 2003 14:00:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08M0CwP075667 for ; Wed, 8 Jan 2003 14:00:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28417; Wed, 8 Jan 2003 14:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA28392 for ; Wed, 8 Jan 2003 13:59:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08LxHwP075628 for ; Wed, 8 Jan 2003 13:59:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h08LxHTO046669 for ; Wed, 8 Jan 2003 13:59:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h08LxHQ4046668; Wed, 8 Jan 2003 13:59:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301082159.h08LxHQ4046668@xorpc.icir.org> Date: Wed, 8 Jan 2003 13:59:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/01/08 13:59:17 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Add modifier and accessor methods to xif interfaces for enabled property of interface addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:35 2005 Subject: No subject Wed Jan 8 15:59:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 16:00:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h09007wL058197 for ; Wed, 8 Jan 2003 16:00:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h09007wP076601 for ; Wed, 8 Jan 2003 16:00:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01211; Wed, 8 Jan 2003 16:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01174 for ; Wed, 8 Jan 2003 15:59:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h08Nx5wP076567 for ; Wed, 8 Jan 2003 15:59:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h08Nx5TO051528 for ; Wed, 8 Jan 2003 15:59:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h08Nx5tA051527; Wed, 8 Jan 2003 15:59:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301082359.h08Nx5tA051527@xorpc.icir.org> Date: Wed, 8 Jan 2003 15:59:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/01/08 15:59:05 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Add the functions to enable and disable addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Wed Jan 8 17:18:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jan 2003 17:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h091J3wL058978 for ; Wed, 8 Jan 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h091J3wP077184 for ; Wed, 8 Jan 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03255; Wed, 8 Jan 2003 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03244 for ; Wed, 8 Jan 2003 17:18:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h091IbwP077181 for ; Wed, 8 Jan 2003 17:18:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h091IbTO055610 for ; Wed, 8 Jan 2003 17:18:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h091Ibc5055609; Wed, 8 Jan 2003 17:18:37 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301090118.h091Ibc5055609@xorpc.icir.org> Date: Wed, 8 Jan 2003 17:18:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/01/08 17:18:37 Modified files: xorp/fea/: ifconfig_rtsock.cc Log message: Ignore RTM_DELETE messages when they pop up from the routing socket. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Thu Jan 9 16:30:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Jan 2003 16:31:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0A0V3wL083585 for ; Thu, 9 Jan 2003 16:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A0V3wP088968 for ; Thu, 9 Jan 2003 16:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27942; Thu, 9 Jan 2003 16:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27928 for ; Thu, 9 Jan 2003 16:30:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A0UWwP088965 for ; Thu, 9 Jan 2003 16:30:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0A0UVTO022686 for ; Thu, 9 Jan 2003 16:30:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0A0UV6x022685; Thu, 9 Jan 2003 16:30:31 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301100030.h0A0UV6x022685@xorpc.icir.org> Date: Thu, 9 Jan 2003 16:30:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am call_xrl.cc test_lemming.cc test_xrl_router.cc xrl_router.cc xrl_router.hh xorp/rtrmgr/ template_commands.cc template_commands.hh xorp_client.cc xorp_client.hh xorp/xrl/interfaces/ bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_fti_xif.cc ...fea_fti_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_xif.cc ...finder_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh ...mfea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_clie! nt_xif.hh ! ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...pim_xif.hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr_client_xif.hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh xorp/xrl/scripts/ clnt-gen xorp/libxipc/ xrl_sender.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/09 16:30:30 Modified files: xorp/libxipc/: Makefile.am call_xrl.cc test_lemming.cc test_xrl_router.cc xrl_router.cc xrl_router.hh xorp/rtrmgr/: template_commands.cc template_commands.hh xorp_client.cc xorp_client.hh xorp/xrl/interfaces/: bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_fti_xif.cc fea_fti_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp/xrl/scripts/: clnt-gen Added files: xorp/libxipc/: xrl_sender.hh Log message: o Add new base class XrlSender for classes that are capable for sending Xrls. o Change XrlRouter accordingly. o Propagate change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Thu Jan 9 17:55:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Jan 2003 17:56:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0A1u7wL005739 for ; Thu, 9 Jan 2003 17:56:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1u7wP089563 for ; Thu, 9 Jan 2003 17:56:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29777; Thu, 9 Jan 2003 17:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29768 for ; Thu, 9 Jan 2003 17:55:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1tWwP089557 for ; Thu, 9 Jan 2003 17:55:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0A1tWTO029134 for ; Thu, 9 Jan 2003 17:55:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0A1tW6C029133; Thu, 9 Jan 2003 17:55:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301100155.h0A1tW6C029133@xorpc.icir.org> Date: Thu, 9 Jan 2003 17:55:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/09 17:55:32 Modified files: xorp/bgp/: main.cc rib_ipc_handler.cc Log message: Rework the destructor for BGPMain. Previously calling the rib_ipc_handler destructor would cause the ebgp and ibgp tables to be deleted from the RIB. Unfortunately the callback would be occur on the freed rib_ipc_handler. Now the table deletion is done explictly from the BGPMain destructor. The rib_ipc_handler no longer attempts the table deletion in the destructor but will generate a warning if the table exist. Fixed a bug in the rib_ipc_handler that stopped the deletion working, the RIB name was being cleared and then used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Thu Jan 9 17:56:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Jan 2003 17:57:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0A1v7wL006312 for ; Thu, 9 Jan 2003 17:57:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1v7wP089573 for ; Thu, 9 Jan 2003 17:57:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29804; Thu, 9 Jan 2003 17:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29788 for ; Thu, 9 Jan 2003 17:56:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1u3wP089561 for ; Thu, 9 Jan 2003 17:56:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0A1u3TO029159 for ; Thu, 9 Jan 2003 17:56:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0A1u3P6029158; Thu, 9 Jan 2003 17:56:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301100156.h0A1u3P6029158@xorpc.icir.org> Date: Thu, 9 Jan 2003 17:56:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/09 17:56:03 Modified files: xorp/bgp/: bgp.cc Log message: Increase the XLOG level for INFO to be high. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Thu Jan 9 17:56:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Jan 2003 17:57:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0A1v8wL006320 for ; Thu, 9 Jan 2003 17:57:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1v8wP089577 for ; Thu, 9 Jan 2003 17:57:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29815; Thu, 9 Jan 2003 17:57:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA29796 for ; Thu, 9 Jan 2003 17:56:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A1uqwP089567 for ; Thu, 9 Jan 2003 17:56:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0A1uqTO029187 for ; Thu, 9 Jan 2003 17:56:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0A1uqu8029186; Thu, 9 Jan 2003 17:56:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301100156.h0A1uqu8029186@xorpc.icir.org> Date: Thu, 9 Jan 2003 17:56:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/09 17:56:52 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: Changed XLOG_WARNING to XLOG_INFO when using stale metrics. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Thu Jan 9 21:10:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Jan 2003 21:11:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0A5B7wL010189 for ; Thu, 9 Jan 2003 21:11:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A5B3wP090839 for ; Thu, 9 Jan 2003 21:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02654; Thu, 9 Jan 2003 21:11:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02628 for ; Thu, 9 Jan 2003 21:10:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0A5AYwP090835 for ; Thu, 9 Jan 2003 21:10:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0A5AYTO034564 for ; Thu, 9 Jan 2003 21:10:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0A5AYu3034563; Thu, 9 Jan 2003 21:10:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301100510.h0A5AYu3034563@xorpc.icir.org> Date: Thu, 9 Jan 2003 21:10:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_5_sending_rp_join_prune_messages.eps pim_test_4_5_sending_rp_join_prune_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/01/09 21:10:34 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_5_sending_rp_join_prune_messages.eps pim_test_4_5_sending_rp_join_prune_messages.fig Log message: * Add Section 4.5 "Sending (*,*,RP) Join/Prune Messages" All described tests pass. * Add "MRIB" to the list of acronyms * Change all "rand(x,y)" to "rand(x, y)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Fri Jan 10 12:01:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Jan 2003 12:02:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0AK27wL016416 for ; Fri, 10 Jan 2003 12:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0AK27wP099181 for ; Fri, 10 Jan 2003 12:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18241; Fri, 10 Jan 2003 12:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18228 for ; Fri, 10 Jan 2003 12:01:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0AK1jwP099177 for ; Fri, 10 Jan 2003 12:01:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0AK1jTO078722 for ; Fri, 10 Jan 2003 12:01:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0AK1jAX078721; Fri, 10 Jan 2003 12:01:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301102001.h0AK1jAX078721@xorpc.icir.org> Date: Fri, 10 Jan 2003 12:01:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/10 12:01:45 Modified files: xorp/pim/: TODO Log message: Add a TODO entry to fix the ordering (in IMPL, SPEC and TESTSUITE) of the Join and Prune messages sent when the MRIB(RP) or MRIB(S) changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Fri Jan 10 18:00:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Jan 2003 18:01:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0B217wL021416 for ; Fri, 10 Jan 2003 18:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0B217wP001975 for ; Fri, 10 Jan 2003 18:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26445; Fri, 10 Jan 2003 18:01:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26412 for ; Fri, 10 Jan 2003 18:00:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0B200wP001947 for ; Fri, 10 Jan 2003 18:00:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0B200TO099538 for ; Fri, 10 Jan 2003 18:00:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0B200Fu099537; Fri, 10 Jan 2003 18:00:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301110200.h0B200Fu099537@xorpc.icir.org> Date: Fri, 10 Jan 2003 18:00:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_6_sending_wc_join_prune_messages.eps pim_test_4_6_sending_wc_join_prune_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/01/10 18:00:00 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_6_sending_wc_join_prune_messages.eps pim_test_4_6_sending_wc_join_prune_messages.fig Log message: * Add Section 4.6 Sending (*,G) Join/Prune Messages. One test scenario (Part G) is postponed until test-generation of Assert messages is implemented and tested. All other tests are OK. * Minor fixes in Section 4.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Fri Jan 10 18:02:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Jan 2003 18:03:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0B239wL021424 for ; Fri, 10 Jan 2003 18:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0B239wP001988 for ; Fri, 10 Jan 2003 18:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26488; Fri, 10 Jan 2003 18:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26481 for ; Fri, 10 Jan 2003 18:02:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0B22vwP001979 for ; Fri, 10 Jan 2003 18:02:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0B22vTO099594 for ; Fri, 10 Jan 2003 18:02:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0B22vtL099593; Fri, 10 Jan 2003 18:02:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301110202.h0B22vtL099593@xorpc.icir.org> Date: Fri, 10 Jan 2003 18:02:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/10 18:02:57 Modified files: xorp/pim/: TODO Log message: Add three more TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Sat Jan 11 20:52:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Jan 2003 20:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0C4r3wL033150 for ; Sat, 11 Jan 2003 20:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C4r3wP016388 for ; Sat, 11 Jan 2003 20:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15448; Sat, 11 Jan 2003 20:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15438 for ; Sat, 11 Jan 2003 20:52:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C4qlwP016386 for ; Sat, 11 Jan 2003 20:52:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0C4qlTO071623 for ; Sat, 11 Jan 2003 20:52:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0C4ql5b071622; Sat, 11 Jan 2003 20:52:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301120452.h0C4ql5b071622@xorpc.icir.org> Date: Sat, 11 Jan 2003 20:52:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/11 20:52:46 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Minor comment change (for consistency with the text in the spec). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:36 2005 Subject: No subject Sat Jan 11 20:56:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Jan 2003 20:57:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0C4v8wL033180 for ; Sat, 11 Jan 2003 20:57:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C4v3wP016426 for ; Sat, 11 Jan 2003 20:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15480; Sat, 11 Jan 2003 20:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA15471 for ; Sat, 11 Jan 2003 20:56:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C4uUwP016424 for ; Sat, 11 Jan 2003 20:56:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0C4uUTO071678 for ; Sat, 11 Jan 2003 20:56:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0C4uUSF071677; Sat, 11 Jan 2003 20:56:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301120456.h0C4uUSF071677@xorpc.icir.org> Date: Sat, 11 Jan 2003 20:56:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/11 20:56:30 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Bugfix: if processing (S,G) or (S,G,rpt) Join/Prune message, and we need to find the (S,G,rpt) or (S,G) routing entry that is in pair with (S,G) or (S,G,rpt), then use the appropriate lookup flag to pim_mre_find(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Sat Jan 11 21:03:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Jan 2003 21:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0C542wL033211 for ; Sat, 11 Jan 2003 21:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C542wP016473 for ; Sat, 11 Jan 2003 21:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15573; Sat, 11 Jan 2003 21:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15565 for ; Sat, 11 Jan 2003 21:03:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0C53LwP016471 for ; Sat, 11 Jan 2003 21:03:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0C53LTO071850 for ; Sat, 11 Jan 2003 21:03:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0C53L99071849; Sat, 11 Jan 2003 21:03:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301120503.h0C53L99071849@xorpc.icir.org> Date: Sat, 11 Jan 2003 21:03:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_7_sending_sg_join_prune_messages.eps pim_test_4_7_sending_sg_join_prune_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/01/11 21:03:21 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_7_sending_sg_join_prune_messages.eps pim_test_4_7_sending_sg_join_prune_messages.fig Log message: * Add Section 4.7 Sending (S,G) Join/Prune Messages All tests are OK. Only Part G is not tested (pending implementation of test-generation of Assert messages). * Fixes to Section 4.5 and Section 4.6 - Change the text in Part E, such that the Prune message should be observed before the Join message. - spell check and other minor fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Sun Jan 12 21:51:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Jan 2003 21:52:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0D5qCwL041698 for ; Sun, 12 Jan 2003 21:52:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0D5qCwP027473 for ; Sun, 12 Jan 2003 21:52:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02098; Sun, 12 Jan 2003 21:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02090 for ; Sun, 12 Jan 2003 21:51:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0D5pjwP027466 for ; Sun, 12 Jan 2003 21:51:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0D5pjTO043018 for ; Sun, 12 Jan 2003 21:51:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0D5pjaU043017; Sun, 12 Jan 2003 21:51:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301130551.h0D5pjaU043017@xorpc.icir.org> Date: Sun, 12 Jan 2003 21:51:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/12 21:51:45 Modified files: xorp/pim/: pim_vif.hh pim_proto_assert.cc Log message: Clean-up the arguments of PimVif::pim_assert_send(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Sun Jan 12 21:54:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Jan 2003 21:55:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0D5t6wL041711 for ; Sun, 12 Jan 2003 21:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0D5t6wP027502 for ; Sun, 12 Jan 2003 21:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02141; Sun, 12 Jan 2003 21:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA02129 for ; Sun, 12 Jan 2003 21:54:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0D5sNwP027478 for ; Sun, 12 Jan 2003 21:54:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0D5sNTO043406 for ; Sun, 12 Jan 2003 21:54:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0D5sNLg043405; Sun, 12 Jan 2003 21:54:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301130554.h0D5sNLg043405@xorpc.icir.org> Date: Sun, 12 Jan 2003 21:54:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/01/12 21:54:23 Modified files: xorp/libxipc/: Makefile.in Log message: Re-generate Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 11:38:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 11:39:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0DJdIwL047331 for ; Mon, 13 Jan 2003 11:39:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DJdHwP035788 for ; Mon, 13 Jan 2003 11:39:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA17698; Mon, 13 Jan 2003 11:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA17673 for ; Mon, 13 Jan 2003 11:38:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DJcKwP035775 for ; Mon, 13 Jan 2003 11:38:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0DJcKTO078393 for ; Mon, 13 Jan 2003 11:38:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0DJcKUQ078392; Mon, 13 Jan 2003 11:38:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301131938.h0DJcKUQ078392@xorpc.icir.org> Date: Mon, 13 Jan 2003 11:38:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/13 11:38:20 Modified files: xorp/pim/: pim_vif.hh pim_proto_assert.cc Log message: Reorder route_metric and metric_preference arguments in PimVif::pim_assert_send() and the related code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 11:49:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 11:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0DJo6wL047392 for ; Mon, 13 Jan 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DJo6wP035904 for ; Mon, 13 Jan 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA18021; Mon, 13 Jan 2003 11:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA17996 for ; Mon, 13 Jan 2003 11:49:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DJnGwP035873 for ; Mon, 13 Jan 2003 11:49:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0DJnGTO079065 for ; Mon, 13 Jan 2003 11:49:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0DJnGHx079064; Mon, 13 Jan 2003 11:49:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301131949.h0DJnGHx079064@xorpc.icir.org> Date: Mon, 13 Jan 2003 11:49:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/13 11:49:16 Modified files: xorp/pim/: configure_pim Log message: * Configure xorp3/dc0 as the RP * Enable xorp4/eth7 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 12:11:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 12:12:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0DKC3wL047537 for ; Mon, 13 Jan 2003 12:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKC3wP036119 for ; Mon, 13 Jan 2003 12:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18551; Mon, 13 Jan 2003 12:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18532 for ; Mon, 13 Jan 2003 12:11:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKBNwP036117 for ; Mon, 13 Jan 2003 12:11:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0DKBNTO079965 for ; Mon, 13 Jan 2003 12:11:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0DKBNEk079964; Mon, 13 Jan 2003 12:11:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301132011.h0DKBNEk079964@xorpc.icir.org> Date: Mon, 13 Jan 2003 12:11:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/01/13 12:11:23 Modified files: xorp/pim/: pim_config.cc pim_node.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Add XRL interface to generate PIM Assert messages (for testing purpose) on a network interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 12:27:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 12:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0DKS2wL047677 for ; Mon, 13 Jan 2003 12:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKS2wP036277 for ; Mon, 13 Jan 2003 12:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18966; Mon, 13 Jan 2003 12:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA18945 for ; Mon, 13 Jan 2003 12:27:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKRqwP036275 for ; Mon, 13 Jan 2003 12:27:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0DKRqTO083121 for ; Mon, 13 Jan 2003 12:27:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0DKRqXl083120; Mon, 13 Jan 2003 12:27:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301132027.h0DKRqXl083120@xorpc.icir.org> Date: Mon, 13 Jan 2003 12:27:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_cmd_map.hh xrl_cmd_map.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/13 12:27:52 Modified files: xorp/libxipc/: xrl_cmd_map.hh xrl_cmd_map.cc Log message: Minor interface tidy up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 12:40:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 12:41:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0DKf3wL051379 for ; Mon, 13 Jan 2003 12:41:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKf2wP036394 for ; Mon, 13 Jan 2003 12:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA19250; Mon, 13 Jan 2003 12:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA19227 for ; Mon, 13 Jan 2003 12:40:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0DKePwP036390 for ; Mon, 13 Jan 2003 12:40:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0DKePTO084812 for ; Mon, 13 Jan 2003 12:40:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0DKePUR084811; Mon, 13 Jan 2003 12:40:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301132040.h0DKePUR084811@xorpc.icir.org> Date: Mon, 13 Jan 2003 12:40:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node_cli.cc mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc xrl_mfea_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.hh xorp/mrt/ mrib_table.cc mrib_table.hh xorp/pim/ pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_assert.hh pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/ mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/ mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/01/13 12:40:25 Modified files: xorp/mfea/: mfea_node_cli.cc mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc xrl_mfea_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.hh xorp/mrt/: mrib_table.cc mrib_table.hh xorp/pim/: pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_assert.hh pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/: mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/: mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Stylistic cleanup: * Remane route_metric to metric * Reorder metric and metric_preference such that metric_preference is mentioned always first. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:37 2005 Subject: No subject Mon Jan 13 17:30:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 17:31:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0E1V7wL054196 for ; Mon, 13 Jan 2003 17:31:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0E1V7wP038722 for ; Mon, 13 Jan 2003 17:31:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA26776; Mon, 13 Jan 2003 17:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA26765 for ; Mon, 13 Jan 2003 17:30:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0E1U1wP038700 for ; Mon, 13 Jan 2003 17:30:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0E1U1TO002622 for ; Mon, 13 Jan 2003 17:30:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0E1U1Oa002621; Mon, 13 Jan 2003 17:30:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301140130.h0E1U1Oa002621@xorpc.icir.org> Date: Mon, 13 Jan 2003 17:30:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/13 17:30:01 Modified files: xorp/pim/: TODO Log message: Add two TODO entries about bugs in the implementation of the Bootstrap mechanism, and about a proposed changed to the Bootstrap spec. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Mon Jan 13 18:44:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Jan 2003 18:45:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0E2j8wL055643 for ; Mon, 13 Jan 2003 18:45:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0E2j3wP039227 for ; Mon, 13 Jan 2003 18:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27982; Mon, 13 Jan 2003 18:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27972 for ; Mon, 13 Jan 2003 18:44:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0E2iSwP039221 for ; Mon, 13 Jan 2003 18:44:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0E2iSTO005676 for ; Mon, 13 Jan 2003 18:44:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0E2iSvL005675; Mon, 13 Jan 2003 18:44:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301140244.h0E2iSvL005675@xorpc.icir.org> Date: Mon, 13 Jan 2003 18:44:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/13 18:44:28 Modified files: xorp/pim/: pim_mre.cc Log message: Bugfix in PimMre::entry_can_remove() : ignore assert state when attempting to remove PimMre entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Tue Jan 14 12:36:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Jan 2003 12:37:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0EKbDwL065403 for ; Tue, 14 Jan 2003 12:37:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0EKbCwP049136 for ; Tue, 14 Jan 2003 12:37:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17861; Tue, 14 Jan 2003 12:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17854 for ; Tue, 14 Jan 2003 12:36:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0EKauwP049128 for ; Tue, 14 Jan 2003 12:36:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0EKauTO060015 for ; Tue, 14 Jan 2003 12:36:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0EKauO7060014; Tue, 14 Jan 2003 12:36:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301142036.h0EKauO7060014@xorpc.icir.org> Date: Tue, 14 Jan 2003 12:36:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/14 12:36:55 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc pim_node_cli.cc Log message: * Disable PimMre::compute_mrib_next_hop_s() for (S,G,rpt) entries, because MRIB(S) for (S,G,rpt) is never used. * Fix "show pim join" CLI output: - Print Joined/NotJoined state only for (*,*,RP), (*,G) and (S,G) entries - Print RptNotJoined/Pruned/NotPruned only for (S,G,rpt) entries - Print "Upstream MRIB next hop (S):" only for (S,G) entries (i.e., don't print it for (S,G,rpt) entries, because MRIB(S) for such entries doesn't apply). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Tue Jan 14 12:37:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Jan 2003 12:38:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0EKc6wL065417 for ; Tue, 14 Jan 2003 12:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0EKc5wP049150 for ; Tue, 14 Jan 2003 12:38:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17898; Tue, 14 Jan 2003 12:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17875 for ; Tue, 14 Jan 2003 12:37:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0EKbZwP049144 for ; Tue, 14 Jan 2003 12:37:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0EKbZTO060054 for ; Tue, 14 Jan 2003 12:37:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0EKbZrJ060053; Tue, 14 Jan 2003 12:37:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301142037.h0EKbZrJ060053@xorpc.icir.org> Date: Tue, 14 Jan 2003 12:37:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/14 12:37:35 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Tue Jan 14 16:31:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Jan 2003 16:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0F0W3wL066747 for ; Tue, 14 Jan 2003 16:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0F0W2wP051030 for ; Tue, 14 Jan 2003 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA23600; Tue, 14 Jan 2003 16:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA23577 for ; Tue, 14 Jan 2003 16:31:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0F0VZwP051027 for ; Tue, 14 Jan 2003 16:31:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0F0VZTO071012 for ; Tue, 14 Jan 2003 16:31:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0F0VZnX071011; Tue, 14 Jan 2003 16:31:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301150031.h0F0VZnX071011@xorpc.icir.org> Date: Tue, 14 Jan 2003 16:31:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/01/14 16:31:35 Modified files: xorp/devnotes/: WORKPLAN Log message: Add initial entry for things to include with the next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Wed Jan 15 11:56:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Jan 2003 11:57:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0FJv4wL076983 for ; Wed, 15 Jan 2003 11:57:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0FJv3wP061762 for ; Wed, 15 Jan 2003 11:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA15292; Wed, 15 Jan 2003 11:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA15269 for ; Wed, 15 Jan 2003 11:56:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0FJunwP061758 for ; Wed, 15 Jan 2003 11:56:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0FJunTO023798 for ; Wed, 15 Jan 2003 11:56:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0FJunCU023797; Wed, 15 Jan 2003 11:56:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301151956.h0FJunCU023797@xorpc.icir.org> Date: Wed, 15 Jan 2003 11:56:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/15 11:56:49 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Add some debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Wed Jan 15 16:29:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Jan 2003 16:30:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0G0U6wL079753 for ; Wed, 15 Jan 2003 16:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0G0U6wP064250 for ; Wed, 15 Jan 2003 16:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22078; Wed, 15 Jan 2003 16:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22066 for ; Wed, 15 Jan 2003 16:29:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0G0TbwP064225 for ; Wed, 15 Jan 2003 16:29:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0G0TbTO038161 for ; Wed, 15 Jan 2003 16:29:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0G0Tbr0038160; Wed, 15 Jan 2003 16:29:37 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301160029.h0G0Tbr0038160@xorpc.icir.org> Date: Wed, 15 Jan 2003 16:29:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ fea_client.cc fea_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/01/15 16:29:37 Modified files: xorp/rib/: fea_client.cc fea_client.hh Log message: Route add/delete commands from the RIB to the FEA are bracketed between start_transaction and commit_transaction calls to the FEA. Previously only one add/delete command would be sent per transaction. Now when a add/delete command completes if there are any more add/delete command queued they are sent in the same transaction. There is a configurable limit for the number of commands per transaction currently set to 100. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 7:35:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 07:36:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GFaCwL003712 for ; Thu, 16 Jan 2003 07:36:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GFaCwP071411 for ; Thu, 16 Jan 2003 07:36:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id HAA07090; Thu, 16 Jan 2003 07:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id HAA07080 for ; Thu, 16 Jan 2003 07:35:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GFZ6wP071405 for ; Thu, 16 Jan 2003 07:35:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GFZ6TO086153 for ; Thu, 16 Jan 2003 07:35:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GFZ63j086152; Thu, 16 Jan 2003 07:35:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301161535.h0GFZ63j086152@xorpc.icir.org> Date: Thu, 16 Jan 2003 7:35:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/01/16 07:35:06 Modified files: xorp/libxorp/: selector.cc Log message: A first step fix to better handle SelectorList callbacks that manipulate the SelectorList. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 10:59:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:00:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ07wL006169 for ; Thu, 16 Jan 2003 11:00:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ06wP074542 for ; Thu, 16 Jan 2003 11:00:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11749; Thu, 16 Jan 2003 11:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA11733 for ; Thu, 16 Jan 2003 10:59:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GIxUwP074510 for ; Thu, 16 Jan 2003 10:59:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GIxUTO098423 for ; Thu, 16 Jan 2003 10:59:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GIxU2i098422; Thu, 16 Jan 2003 10:59:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301161859.h0GIxU2i098422@xorpc.icir.org> Date: Thu, 16 Jan 2003 10:59:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/01/16 10:59:29 Modified files: ./: acconfig.h config.h.in configure configure.in Log message: Configuration related changes to enable compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 11:08:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ97wL006222 for ; Thu, 16 Jan 2003 11:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ97wP074628 for ; Thu, 16 Jan 2003 11:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11964; Thu, 16 Jan 2003 11:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11948 for ; Thu, 16 Jan 2003 11:08:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ8nwP074622 for ; Thu, 16 Jan 2003 11:08:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ8nTO098599 for ; Thu, 16 Jan 2003 11:08:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJ8nmS098598; Thu, 16 Jan 2003 11:08:49 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301161908.h0GJ8nmS098598@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:08:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ template.c template.cc template.h template.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: mjh@xorpc.icir.org. 03/01/16 11:08:48 Modified files: xorp/devnotes/: template.c template.cc template.h template.hh Log message: update copyright _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 11:09:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:10:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJA6wL006233 for ; Thu, 16 Jan 2003 11:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJA6wP074647 for ; Thu, 16 Jan 2003 11:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12003; Thu, 16 Jan 2003 11:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11986 for ; Thu, 16 Jan 2003 11:09:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ9TwP074636 for ; Thu, 16 Jan 2003 11:09:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJ9STO098614 for ; Thu, 16 Jan 2003 11:09:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJ9SxM098613; Thu, 16 Jan 2003 11:09:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301161909.h0GJ9SxM098613@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:09:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ c_format.hh callback-gen.py callback.hh config_param.hh exceptions.cc ipv6.hh ipvx.hh timer.cc timer.hh timeval.hh token.hh trie.hh xorp.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/01/16 11:09:28 Modified files: xorp/libxorp/: c_format.hh callback-gen.py callback.hh config_param.hh exceptions.cc ipv6.hh ipvx.hh timer.cc timer.hh timeval.hh token.hh trie.hh xorp.h Log message: Changes to enable libxorp compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 11:26:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:27:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJRHwL006352 for ; Thu, 16 Jan 2003 11:27:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJRHwP074868 for ; Thu, 16 Jan 2003 11:27:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12433; Thu, 16 Jan 2003 11:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12418 for ; Thu, 16 Jan 2003 11:26:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJQgwP074852 for ; Thu, 16 Jan 2003 11:26:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJQgTO099180 for ; Thu, 16 Jan 2003 11:26:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJQfco099179; Thu, 16 Jan 2003 11:26:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161926.h0GJQfco099179@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:26:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:26:41 Modified files: xorp/utils/: runit.cc Log message: Changes to enable utils compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:38 2005 Subject: No subject Thu Jan 16 11:27:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:28:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJS7wL006360 for ; Thu, 16 Jan 2003 11:28:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJS6wP074880 for ; Thu, 16 Jan 2003 11:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12472; Thu, 16 Jan 2003 11:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12460 for ; Thu, 16 Jan 2003 11:27:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJRwwP074873 for ; Thu, 16 Jan 2003 11:27:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJRwTO099229 for ; Thu, 16 Jan 2003 11:27:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJRw5S099228; Thu, 16 Jan 2003 11:27:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161927.h0GJRw5S099228@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:27:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:27:57 Modified files: xorp/libproto/: proto_node.hh Log message: Changes to enable libproto compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 11:28:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:29:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJT6wL006368 for ; Thu, 16 Jan 2003 11:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJT6wP074892 for ; Thu, 16 Jan 2003 11:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12511; Thu, 16 Jan 2003 11:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12504 for ; Thu, 16 Jan 2003 11:28:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJSvwP074886 for ; Thu, 16 Jan 2003 11:28:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJSvTO099283 for ; Thu, 16 Jan 2003 11:28:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJSvJ7099282; Thu, 16 Jan 2003 11:28:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161928.h0GJSvJ7099282@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:28:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.hh cli_command.hh cli_command_pipe.hh cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:28:57 Modified files: xorp/cli/: cli_client.hh cli_command.hh cli_command_pipe.hh cli_node.hh Log message: Changes to enable cli compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 11:31:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:32:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJW6wL006409 for ; Thu, 16 Jan 2003 11:32:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJW5wP074933 for ; Thu, 16 Jan 2003 11:32:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12620; Thu, 16 Jan 2003 11:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12585 for ; Thu, 16 Jan 2003 11:31:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJV8wP074921 for ; Thu, 16 Jan 2003 11:31:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJV8TO099374 for ; Thu, 16 Jan 2003 11:31:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJV8k9099373; Thu, 16 Jan 2003 11:31:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161931.h0GJV8k9099373@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:31:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.hh mrt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:31:08 Modified files: xorp/mrt/: mrib_table.hh mrt.hh Log message: Changes to enable mrt compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 11:31:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:32:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJW7wL006417 for ; Thu, 16 Jan 2003 11:32:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJW7wP074936 for ; Thu, 16 Jan 2003 11:32:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12631; Thu, 16 Jan 2003 11:32:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12612 for ; Thu, 16 Jan 2003 11:31:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJVuwP074924 for ; Thu, 16 Jan 2003 11:31:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJVuTO099409 for ; Thu, 16 Jan 2003 11:31:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJVuSi099408; Thu, 16 Jan 2003 11:31:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161931.h0GJVuSi099408@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:31:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:31:56 Modified files: xorp/mfea/: xrl_mfea_node.cc Log message: Changes to enable mfea compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 11:32:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:33:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJX7wL008650 for ; Thu, 16 Jan 2003 11:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJX7wP074953 for ; Thu, 16 Jan 2003 11:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12707; Thu, 16 Jan 2003 11:33:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12683 for ; Thu, 16 Jan 2003 11:32:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJWpwP074942 for ; Thu, 16 Jan 2003 11:32:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJWpTO099492 for ; Thu, 16 Jan 2003 11:32:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJWpJe099491; Thu, 16 Jan 2003 11:32:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161932.h0GJWpJe099491@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:32:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:32:51 Modified files: xorp/pim/: pim_bsr.cc xrl_pim_node.cc Log message: Changes to enable pim compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 11:32:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 11:33:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GJXBwL008689 for ; Thu, 16 Jan 2003 11:33:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJXBwP074957 for ; Thu, 16 Jan 2003 11:33:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12696; Thu, 16 Jan 2003 11:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12647 for ; Thu, 16 Jan 2003 11:32:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GJWMwP074940 for ; Thu, 16 Jan 2003 11:32:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GJWMTO099457 for ; Thu, 16 Jan 2003 11:32:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GJWLg0099456; Thu, 16 Jan 2003 11:32:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301161932.h0GJWLg0099456@xorpc.icir.org> Date: Thu, 16 Jan 2003 11:32:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/01/16 11:32:21 Modified files: xorp/mld6igmp/: xrl_mld6igmp_node.cc Log message: Changes to enable mld6igmp compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 15:18:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 15:19:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0GNJ4wL013545 for ; Thu, 16 Jan 2003 15:19:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GNJ4wP076780 for ; Thu, 16 Jan 2003 15:19:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18190; Thu, 16 Jan 2003 15:19:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18183 for ; Thu, 16 Jan 2003 15:19:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0GNIxwP076778 for ; Thu, 16 Jan 2003 15:18:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0GNIxTO025086 for ; Thu, 16 Jan 2003 15:18:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0GNIxsS025085; Thu, 16 Jan 2003 15:18:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301162318.h0GNIxsS025085@xorpc.icir.org> Date: Thu, 16 Jan 2003 15:18:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ attribute_manager.cc bgp_trie.cc bgp_trie.hh dump_iterators.cc dump_iterators.hh next_hop_resolver.cc next_hop_resolver.hh notification_packet.cc packet.cc packet.hh ...peer_route_pair.hh ...plumbing.cc ...route_table_cache.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_deletion.hh ...route_table_fanout.cc ...route_table_filter.cc ...route_table_nhlookup.cc ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/16 15:18:59 Modified files: xorp/bgp/: attribute_manager.cc bgp_trie.cc bgp_trie.hh dump_iterators.cc dump_iterators.hh next_hop_resolver.cc next_hop_resolver.hh notification_packet.cc packet.cc packet.hh peer_route_pair.hh plumbing.cc route_table_cache.cc route_table_decision.cc route_table_deletion.cc route_table_deletion.hh route_table_fanout.cc route_table_filter.cc route_table_nhlookup.cc route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc update_packet.cc Log message: Changes to bgp compilation on gcc 3.2.1 and gcc 2.9x. Note: changes are incomplete, so the code doesn't compile yet on gcc 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 16:49:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 16:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H0o3wL014049 for ; Thu, 16 Jan 2003 16:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H0o2wP077579 for ; Thu, 16 Jan 2003 16:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20106; Thu, 16 Jan 2003 16:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20072 for ; Thu, 16 Jan 2003 16:49:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H0nDwP077571 for ; Thu, 16 Jan 2003 16:49:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H0nDTO029703 for ; Thu, 16 Jan 2003 16:49:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H0nD5A029702; Thu, 16 Jan 2003 16:49:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301170049.h0H0nD5A029702@xorpc.icir.org> Date: Thu, 16 Jan 2003 16:49:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc finder_client.hh finder_msg.cc finder_transport.cc sockutil.hh test_finder_transport.cc test_xrl_atom.cc xrl_args.cc xrl_atom.cc xrl_atom_encoding.cc ...xrl_atom_encoding.hh ...xrl_parser_input.hh ...xrl_pf.hh ...xrl_pf_inproc.cc ...xrl_pf_stcp.cc ...xrl_pf_stcp.hh ...xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/16 16:49:13 Modified files: xorp/libxipc/: call_xrl.cc finder_client.hh finder_msg.cc finder_transport.cc sockutil.hh test_finder_transport.cc test_xrl_atom.cc xrl_args.cc xrl_atom.cc xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_parser_input.hh xrl_pf.hh xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc Log message: Changes to enable libxipc compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 17:29:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 17:30:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H1U6wL018407 for ; Thu, 16 Jan 2003 17:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H1U6wP077872 for ; Thu, 16 Jan 2003 17:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20922; Thu, 16 Jan 2003 17:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20915 for ; Thu, 16 Jan 2003 17:29:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H1TwwP077863 for ; Thu, 16 Jan 2003 17:29:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H1TwTO033767 for ; Thu, 16 Jan 2003 17:29:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H1TvbO033766; Thu, 16 Jan 2003 17:29:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301170129.h0H1TvbO033766@xorpc.icir.org> Date: Thu, 16 Jan 2003 17:29:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fti_rtsock.cc fti_transaction.cc fti_transaction.hh rawsock4.cc rtsock.hh xrl_rawsock4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/01/16 17:29:57 Modified files: xorp/fea/: fti_rtsock.cc fti_transaction.cc fti_transaction.hh rawsock4.cc rtsock.hh xrl_rawsock4.cc Log message: Changes to enable fea compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 17:33:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 17:34:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H1Y7wL020562 for ; Thu, 16 Jan 2003 17:34:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H1Y6wP077915 for ; Thu, 16 Jan 2003 17:34:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21000; Thu, 16 Jan 2003 17:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20983 for ; Thu, 16 Jan 2003 17:33:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H1XBwP077907 for ; Thu, 16 Jan 2003 17:33:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H1XATO035044 for ; Thu, 16 Jan 2003 17:33:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H1XAb5035043; Thu, 16 Jan 2003 17:33:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301170133.h0H1XAb5035043@xorpc.icir.org> Date: Thu, 16 Jan 2003 17:33:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_rawsock4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/01/16 17:33:10 Modified files: xorp/fea/: test_rawsock4.cc Log message: Add a forgotten change to enable fea compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:39 2005 Subject: No subject Thu Jan 16 19:46:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 19:47:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H3l6wL023246 for ; Thu, 16 Jan 2003 19:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H3l6wP078784 for ; Thu, 16 Jan 2003 19:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22877; Thu, 16 Jan 2003 19:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22870 for ; Thu, 16 Jan 2003 19:46:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H3khwP078778 for ; Thu, 16 Jan 2003 19:46:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H3kgTO039411 for ; Thu, 16 Jan 2003 19:46:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H3kgM3039410; Thu, 16 Jan 2003 19:46:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301170346.h0H3kgM3039410@xorpc.icir.org> Date: Thu, 16 Jan 2003 19:46:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser.hh rib.cc route.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_origin.cc rt_tab_register.cc rt_tab_register.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/01/16 19:46:42 Modified files: xorp/rib/: parser.hh rib.cc route.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_origin.cc rt_tab_register.cc rt_tab_register.hh Log message: - Changes to enable rib compilation on gcc 3.2.1 and gcc 2.9x. - Fix a hidden problem inside RIB::admin_distance() (in rib.cc) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 19:50:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 19:51:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H3p6wL023274 for ; Thu, 16 Jan 2003 19:51:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H3p6wP078833 for ; Thu, 16 Jan 2003 19:51:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22934; Thu, 16 Jan 2003 19:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22927 for ; Thu, 16 Jan 2003 19:50:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H3omwP078820 for ; Thu, 16 Jan 2003 19:50:48 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H3omTO039524 for ; Thu, 16 Jan 2003 19:50:48 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H3omVc039523; Thu, 16 Jan 2003 19:50:48 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170350.h0H3omVc039523@xorpc.icir.org> Date: Thu, 16 Jan 2003 19:50:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.hh route_table_ribin.cc plumbing.cc test_ribin.cc test_deletion.cc test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/16 19:50:48 Modified files: xorp/bgp/: route_table_ribin.hh route_table_ribin.cc plumbing.cc test_ribin.cc test_deletion.cc test_dump.cc Log message: Change method name (to less self-explanatory name!) to satisfy g++ 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 20:07:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 20:08:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H487wL023347 for ; Thu, 16 Jan 2003 20:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H487wP078978 for ; Thu, 16 Jan 2003 20:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23212; Thu, 16 Jan 2003 20:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23188 for ; Thu, 16 Jan 2003 20:07:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H47PwP078972 for ; Thu, 16 Jan 2003 20:07:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H47PTO040419 for ; Thu, 16 Jan 2003 20:07:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H47P51040418; Thu, 16 Jan 2003 20:07:25 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170407.h0H47P51040418@xorpc.icir.org> Date: Thu, 16 Jan 2003 20:07:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am main.cc main.hh peer_list.cc peer_list.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/01/16 20:07:25 Modified files: xorp/bgp/: Makefile.am main.cc main.hh peer_list.cc peer_list.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Fixes to BGP peer monitoring XRLs that I seem to have forgotten to commit before Christmas. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 21:51:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 21:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H5q7wL023850 for ; Thu, 16 Jan 2003 21:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H5q7wP079707 for ; Thu, 16 Jan 2003 21:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA24461; Thu, 16 Jan 2003 21:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA24452 for ; Thu, 16 Jan 2003 21:51:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H5p8wP079701 for ; Thu, 16 Jan 2003 21:51:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H5p8TO051302 for ; Thu, 16 Jan 2003 21:51:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H5p83O051301; Thu, 16 Jan 2003 21:51:08 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170551.h0H5p83O051301@xorpc.icir.org> Date: Thu, 16 Jan 2003 21:51:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet_coding_test.cc path_attribute.cc path_attribute.hh path_attribute_list.cc path_attribute_list.hh peer_handler.cc route_table_decision.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/16 21:51:08 Modified files: xorp/bgp/: packet_coding_test.cc path_attribute.cc path_attribute.hh path_attribute_list.cc path_attribute_list.hh peer_handler.cc route_table_decision.cc update_packet.cc Log message: Make BGP PathAttribute encode methods non-const. Previously they made use of mutable, but this was probably pushing beyond reasonable use of mutable. g++ 3.2.1 forced the issue by correctly spotting const violations that g++ 2.95 didn't spot. All the other changes are to deal with the consequences of this single change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 22:01:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 22:02:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H622wL023903 for ; Thu, 16 Jan 2003 22:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H622wP079790 for ; Thu, 16 Jan 2003 22:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24555; Thu, 16 Jan 2003 22:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24543 for ; Thu, 16 Jan 2003 22:01:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H614wP079784 for ; Thu, 16 Jan 2003 22:01:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H613TO051390 for ; Thu, 16 Jan 2003 22:01:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H6136I051389; Thu, 16 Jan 2003 22:01:03 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170601.h0H6136I051389@xorpc.icir.org> Date: Thu, 16 Jan 2003 22:01:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc route_table_dump.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/16 22:01:03 Modified files: xorp/bgp/: route_table_dump.cc route_table_dump.hh Log message: Rename DumpTable::dump_next_route() to do_next_route_dump() to keep g++ 3.2.1 quiet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 22:20:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 22:21:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H6L2wL023991 for ; Thu, 16 Jan 2003 22:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H6L2wP079934 for ; Thu, 16 Jan 2003 22:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24789; Thu, 16 Jan 2003 22:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24769 for ; Thu, 16 Jan 2003 22:20:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H6KFwP079930 for ; Thu, 16 Jan 2003 22:20:15 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H6KFTO052621 for ; Thu, 16 Jan 2003 22:20:15 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H6KFXw052620; Thu, 16 Jan 2003 22:20:15 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170620.h0H6KFXw052620@xorpc.icir.org> Date: Thu, 16 Jan 2003 22:20:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing_test.cc plumbing_test.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/16 22:20:15 Modified files: xorp/bgp/: plumbing_test.cc plumbing_test.hh Log message: Remove unused methods from DummyPeerHandler _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 22:36:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 22:37:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H6b3wL024070 for ; Thu, 16 Jan 2003 22:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H6b3wP080066 for ; Thu, 16 Jan 2003 22:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA25009; Thu, 16 Jan 2003 22:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24999 for ; Thu, 16 Jan 2003 22:36:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H6aJwP080064 for ; Thu, 16 Jan 2003 22:36:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H6aJTO052818 for ; Thu, 16 Jan 2003 22:36:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H6aJWD052817; Thu, 16 Jan 2003 22:36:19 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301170636.h0H6aJWD052817@xorpc.icir.org> Date: Thu, 16 Jan 2003 22:36:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/16 22:36:19 Modified files: xorp/bgp/: dummy_next_hop_resolver.cc Log message: More compilation fixes on g++ 3.2.1. BGP now compiles with g++ 3.2.1, and all the isolation tests pass, but not all the tests in the test hardness succeed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Thu Jan 16 23:01:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Jan 2003 23:02:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H728wL024189 for ; Thu, 16 Jan 2003 23:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H723wP080210 for ; Thu, 16 Jan 2003 23:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25339; Thu, 16 Jan 2003 23:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25332 for ; Thu, 16 Jan 2003 23:01:49 -0800 (PST) Received: from vulture.icir.org (adsl-67-117-79-130.dsl.sntc01.pacbell.net [67.117.79.130]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H71fwP080208 for ; Thu, 16 Jan 2003 23:01:46 -0800 (PST) (envelope-from mjh@vulture.icir.org) Received: from vulture.icir.org (localhost [127.0.0.1]) by vulture.icir.org (8.12.3/8.12.3) with ESMTP id h0H71WGo044873 for ; Thu, 16 Jan 2003 23:01:32 -0800 (PST) (envelope-from mjh@vulture.icir.org) From: Mark Handley X-Organisation: ICIR cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.cc In-reply-to: Your message of "Thu, 16 Jan 2003 22:36:19." <200301170636.h0H6aJWD052817@xorpc.icir.org> Date: Thu, 16 Jan 2003 23:01:32 -0800 Message-ID: <44872.1042786892@vulture.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > BGP now compiles with g++ 3.2.1, and all the isolation tests pass, but > not all the tests in the test hardness succeed. Actually all the BGP tests now succeed with the g++ 3.2.1 build - I just hadn't compiled the RIB before running the tests. They also still succeed with the g++ 2.95.2 build. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Fri Jan 17 0:02:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 00:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H832wL024510 for ; Fri, 17 Jan 2003 00:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H832wP080680 for ; Fri, 17 Jan 2003 00:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA26828; Fri, 17 Jan 2003 00:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA26809 for ; Fri, 17 Jan 2003 00:02:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H82QwP080676 for ; Fri, 17 Jan 2003 00:02:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H82QTO053799 for ; Fri, 17 Jan 2003 00:02:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H82QaH053798; Fri, 17 Jan 2003 00:02:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301170802.h0H82QaH053798@xorpc.icir.org> Date: Fri, 17 Jan 2003 0:02:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ DEVNOTES pim_mre.cc pim_mre_join_prune.cc pim_mrt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 00:02:26 Modified files: xorp/pim/: DEVNOTES pim_mre.cc pim_mre_join_prune.cc pim_mrt.cc Log message: Fix the creation/deletion of (S,G,rpt) routing entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Fri Jan 17 0:03:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 00:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0H842wL024518 for ; Fri, 17 Jan 2003 00:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H842wP080690 for ; Fri, 17 Jan 2003 00:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA26865; Fri, 17 Jan 2003 00:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA26851 for ; Fri, 17 Jan 2003 00:03:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0H83JwP080686 for ; Fri, 17 Jan 2003 00:03:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0H83JTO053850 for ; Fri, 17 Jan 2003 00:03:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0H83Jfj053849; Fri, 17 Jan 2003 00:03:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301170803.h0H83Jfj053849@xorpc.icir.org> Date: Fri, 17 Jan 2003 0:03:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 00:03:19 Modified files: xorp/pim/: TODO Log message: Add a TODO entry about handing of (S,G,rpt) routing entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Fri Jan 17 10:01:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:02:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HI26wL029112 for ; Fri, 17 Jan 2003 10:02:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HI26wP087226 for ; Fri, 17 Jan 2003 10:02:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07317; Fri, 17 Jan 2003 10:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07291 for ; Fri, 17 Jan 2003 10:01:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HI12wP087213 for ; Fri, 17 Jan 2003 10:01:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HI12TO086891 for ; Fri, 17 Jan 2003 10:01:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HI124l086890; Fri, 17 Jan 2003 10:01:02 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171801.h0HI124l086890@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:01:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ Makefile.am bgptools_module.h print_peer.cc print_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/17 10:01:02 Added files: xorp/bgp/tools/: Makefile.am bgptools_module.h print_peer.cc print_peer.hh Log message: A start at some debugging/diagnostic tools for BGP. Doesn't do anything useful yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:40 2005 Subject: No subject Fri Jan 17 10:11:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:12:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HICDwL029160 for ; Fri, 17 Jan 2003 10:12:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HICDwP087295 for ; Fri, 17 Jan 2003 10:12:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07543; Fri, 17 Jan 2003 10:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07529 for ; Fri, 17 Jan 2003 10:11:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIBYwP087287 for ; Fri, 17 Jan 2003 10:11:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HIBYTO087064 for ; Fri, 17 Jan 2003 10:11:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HIBYJK087063; Fri, 17 Jan 2003 10:11:34 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171811.h0HIBYJK087063@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:11:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/17 10:11:34 Added files: xorp/bgp/tools/: Makefile.in Log message: the real missing file :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 10:15:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:16:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HIGBwL029188 for ; Fri, 17 Jan 2003 10:16:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIGBwP087351 for ; Fri, 17 Jan 2003 10:16:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07627; Fri, 17 Jan 2003 10:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07607 for ; Fri, 17 Jan 2003 10:15:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIFIwP087337 for ; Fri, 17 Jan 2003 10:15:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HIFITO087132 for ; Fri, 17 Jan 2003 10:15:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HIFIsH087131; Fri, 17 Jan 2003 10:15:18 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171815.h0HIFIsH087131@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:15:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 03/01/17 10:15:18 Modified files: ./: configure.in Log message: add bgp/tools to build directories _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 10:17:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:18:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HII6wL029198 for ; Fri, 17 Jan 2003 10:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HII6wP087362 for ; Fri, 17 Jan 2003 10:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07664; Fri, 17 Jan 2003 10:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07653 for ; Fri, 17 Jan 2003 10:17:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIHEwP087355 for ; Fri, 17 Jan 2003 10:17:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HIHDTO087170 for ; Fri, 17 Jan 2003 10:17:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HIHD1g087169; Fri, 17 Jan 2003 10:17:13 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171817.h0HIHD1g087169@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:17:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure xorp/bgp/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/17 10:17:13 Modified files: ./: configure xorp/bgp/: Makefile.in Log message: Update Makefile.in in bgp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 10:19:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:20:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HIK6wL029221 for ; Fri, 17 Jan 2003 10:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIK5wP087387 for ; Fri, 17 Jan 2003 10:20:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07728; Fri, 17 Jan 2003 10:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07721 for ; Fri, 17 Jan 2003 10:19:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIJwwP087377 for ; Fri, 17 Jan 2003 10:19:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HIJwTO087198 for ; Fri, 17 Jan 2003 10:19:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HIJwf3087197; Fri, 17 Jan 2003 10:19:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301171819.h0HIJwf3087197@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:19:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/src/ asexlsa.C lsalist.C ospf.C ospf.h spfarea.C spfifc.C spfnbr.C spfvl.C xorp/ospfd/xorp/ ospfd_browser.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: hodson@xorpc.icir.org. 03/01/17 10:19:58 Modified files: xorp/ospfd/src/: asexlsa.C lsalist.C ospf.C ospf.h spfarea.C spfifc.C spfnbr.C spfvl.C xorp/ospfd/xorp/: ospfd_browser.C Log message: Changes to enable rib compilation on gcc 3.2.1 and gcc 2.9x. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 10:42:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:43:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HIh7wL029338 for ; Fri, 17 Jan 2003 10:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIh6wP087601 for ; Fri, 17 Jan 2003 10:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08293; Fri, 17 Jan 2003 10:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08249 for ; Fri, 17 Jan 2003 10:42:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIg5wP087593 for ; Fri, 17 Jan 2003 10:42:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HIg5TO087439 for ; Fri, 17 Jan 2003 10:42:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HIg5N0087438; Fri, 17 Jan 2003 10:42:05 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171842.h0HIg5N0087438@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:42:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ split.cc template_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/01/17 10:42:05 Modified files: xorp/rtrmgr/: split.cc template_commands.hh Log message: Fixes to allow rtrmgr to build on g++ 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 10:55:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 10:56:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HIu6wL029415 for ; Fri, 17 Jan 2003 10:56:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HIu6wP087743 for ; Fri, 17 Jan 2003 10:56:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08578; Fri, 17 Jan 2003 10:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08554 for ; Fri, 17 Jan 2003 10:55:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HItQwP087731 for ; Fri, 17 Jan 2003 10:55:26 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HItQTO087601 for ; Fri, 17 Jan 2003 10:55:26 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HItQmv087600; Fri, 17 Jan 2003 10:55:26 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301171855.h0HItQmv087600@xorpc.icir.org> Date: Fri, 17 Jan 2003 10:55:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/route6d/ route6d.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/route6d/ Changes by: mjh@xorpc.icir.org. 03/01/17 10:55:26 Modified files: xorp/rip/route6d/: route6d.c Log message: Remove spurious semi-colon from #ident. Note: all of XORP now builds with g++ 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 11:48:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 11:48:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HJmEwL033386 for ; Fri, 17 Jan 2003 11:48:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HJmDwP088191 for ; Fri, 17 Jan 2003 11:48:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09619; Fri, 17 Jan 2003 11:48:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09613 for ; Fri, 17 Jan 2003 11:48:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HJm0wP088185 for ; Fri, 17 Jan 2003 11:48:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HJm0TO088345 for ; Fri, 17 Jan 2003 11:48:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HJm0s2088344; Fri, 17 Jan 2003 11:48:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301171948.h0HJm0s2088344@xorpc.icir.org> Date: Fri, 17 Jan 2003 11:48:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: pavlin@xorpc.icir.org. 03/01/17 11:48:00 Modified files: xorp/bgp/tools/: print_peer.hh Log message: Expand __PATH_TO_FILE_HH__ in the header file #ifndef wrapper to include the complete path to that file (from the xorp top-level directory) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 12:17:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 12:18:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HKI4wL033714 for ; Fri, 17 Jan 2003 12:18:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HKI3wP088451 for ; Fri, 17 Jan 2003 12:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10305; Fri, 17 Jan 2003 12:18:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10266 for ; Fri, 17 Jan 2003 12:17:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HKHcwP088449 for ; Fri, 17 Jan 2003 12:17:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HKHcTO088621 for ; Fri, 17 Jan 2003 12:17:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HKHcCv088620; Fri, 17 Jan 2003 12:17:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301172017.h0HKHcCv088620@xorpc.icir.org> Date: Fri, 17 Jan 2003 12:17:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/01/17 12:17:38 Modified files: ./: index.html Log message: Add news section and add note that repository code now compiles under GCC 3.2.1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 14:19:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 14:20:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HMK3wL034335 for ; Fri, 17 Jan 2003 14:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HMK3wP089474 for ; Fri, 17 Jan 2003 14:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12845; Fri, 17 Jan 2003 14:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12816 for ; Fri, 17 Jan 2003 14:19:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HMJUwP089469 for ; Fri, 17 Jan 2003 14:19:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HMJUTO009237 for ; Fri, 17 Jan 2003 14:19:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HMJUOT009236; Fri, 17 Jan 2003 14:19:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301172219.h0HMJUOT009236@xorpc.icir.org> Date: Fri, 17 Jan 2003 14:19:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_stcp.cc test_inproc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/17 14:19:30 Modified files: xorp/libxipc/: test_stcp.cc test_inproc.cc Log message: Minor output tidying up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 14:57:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 14:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HMw3wL034610 for ; Fri, 17 Jan 2003 14:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HMw2wP089819 for ; Fri, 17 Jan 2003 14:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13828; Fri, 17 Jan 2003 14:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13811 for ; Fri, 17 Jan 2003 14:57:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HMv2wP089813 for ; Fri, 17 Jan 2003 14:57:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HMv2TO009957 for ; Fri, 17 Jan 2003 14:57:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HMv2V1009956; Fri, 17 Jan 2003 14:57:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301172257.h0HMv2V1009956@xorpc.icir.org> Date: Fri, 17 Jan 2003 14:57:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 14:57:02 Modified files: xorp/pim/: pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc Log message: * Fix the code for restarting the Join Timer for (*,*,RP), (*,G) and (S,G) routing entries * If RPF'(S,G,rpt) changes, fix the code to restart the Override Timer in case of (S,G,rpt) entry (previously it was the Join Timer that was restarted) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 15:07:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 15:08:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HN83wL034718 for ; Fri, 17 Jan 2003 15:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HN83wP089932 for ; Fri, 17 Jan 2003 15:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14036; Fri, 17 Jan 2003 15:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14015 for ; Fri, 17 Jan 2003 15:07:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HN7dwP089921 for ; Fri, 17 Jan 2003 15:07:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HN7dTO010453 for ; Fri, 17 Jan 2003 15:07:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HN7dIY010452; Fri, 17 Jan 2003 15:07:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301172307.h0HN7dIY010452@xorpc.icir.org> Date: Fri, 17 Jan 2003 15:07:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 15:07:39 Modified files: xorp/pim/: pim_mre_join_prune.cc pim_mre_rpf.cc Log message: Fix the restarting of the (S,G,rpt) Override Timer, such that if it is not running, it is considered to have an infinite value. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:41 2005 Subject: No subject Fri Jan 17 15:57:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 15:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0HNw3wL035250 for ; Fri, 17 Jan 2003 15:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HNw3wP090337 for ; Fri, 17 Jan 2003 15:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15414; Fri, 17 Jan 2003 15:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15389 for ; Fri, 17 Jan 2003 15:57:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0HNvNwP090331 for ; Fri, 17 Jan 2003 15:57:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0HNvNTO010958 for ; Fri, 17 Jan 2003 15:57:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0HNvNHo010957; Fri, 17 Jan 2003 15:57:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301172357.h0HNvNHo010957@xorpc.icir.org> Date: Fri, 17 Jan 2003 15:57:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 15:57:23 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Fix the code such that when a router sees (S,G) Prune or (S,G,rpt) Prune sent to RPF'(S,G,rpt), it creates (S,G,rpt) routing state that will later trigger the overriding (S,G,rpt) Join message. If the entry is not really needed, the entry is deleted, so it might be very short-living. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Fri Jan 17 16:23:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 16:24:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0I0O2wL035414 for ; Fri, 17 Jan 2003 16:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I0O2wP090570 for ; Fri, 17 Jan 2003 16:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15982; Fri, 17 Jan 2003 16:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15964 for ; Fri, 17 Jan 2003 16:23:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I0NDwP090563 for ; Fri, 17 Jan 2003 16:23:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0I0NDTO011275 for ; Fri, 17 Jan 2003 16:23:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0I0ND1B011274; Fri, 17 Jan 2003 16:23:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301180023.h0I0ND1B011274@xorpc.icir.org> Date: Fri, 17 Jan 2003 16:23:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/17 16:23:13 Modified files: xorp/pim/: pim_mre.cc Log message: Don't delete (S,G,rpt) routing entry if it is in NotPruned state, and the Override Timer is running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Fri Jan 17 16:47:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 16:48:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0I0m3wL035530 for ; Fri, 17 Jan 2003 16:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I0m2wP090733 for ; Fri, 17 Jan 2003 16:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16369; Fri, 17 Jan 2003 16:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16357 for ; Fri, 17 Jan 2003 16:47:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I0ldwP090731 for ; Fri, 17 Jan 2003 16:47:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0I0ldTO011525 for ; Fri, 17 Jan 2003 16:47:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0I0ldra011524; Fri, 17 Jan 2003 16:47:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301180047.h0I0ldra011524@xorpc.icir.org> Date: Fri, 17 Jan 2003 16:47:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: pavlin@xorpc.icir.org. 03/01/17 16:47:39 Added files: xorp/bgp/tools/: .cvsignore Log message: Add .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Fri Jan 17 20:02:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 20:03:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0I43CwL039714 for ; Fri, 17 Jan 2003 20:03:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I43CwP092109 for ; Fri, 17 Jan 2003 20:03:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA18934; Fri, 17 Jan 2003 20:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA18918 for ; Fri, 17 Jan 2003 20:02:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I42UwP092101 for ; Fri, 17 Jan 2003 20:02:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0I42TTO044433 for ; Fri, 17 Jan 2003 20:02:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0I42TvR044396; Fri, 17 Jan 2003 20:02:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301180402.h0I42TvR044396@xorpc.icir.org> Date: Fri, 17 Jan 2003 20:02:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_list.cc xorp/bgp/tools/ print_peer.cc print_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/17 20:02:29 Modified files: xorp/bgp/: peer_list.cc xorp/bgp/tools/: print_peer.cc print_peer.hh Log message: tools/print_peers can now print the list of BGP peers _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Fri Jan 17 21:32:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Jan 2003 21:33:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0I5X6wL040134 for ; Fri, 17 Jan 2003 21:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I5X6wP092667 for ; Fri, 17 Jan 2003 21:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA19838; Fri, 17 Jan 2003 21:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA19829 for ; Fri, 17 Jan 2003 21:32:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0I5W5wP092660 for ; Fri, 17 Jan 2003 21:32:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0I5W5TO050100 for ; Fri, 17 Jan 2003 21:32:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0I5W5vY050099; Fri, 17 Jan 2003 21:32:05 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301180532.h0I5W5vY050099@xorpc.icir.org> Date: Fri, 17 Jan 2003 21:32:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_list.cc xorp/bgp/tools/ print_peer.cc print_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/17 21:32:05 Modified files: xorp/bgp/: peer_list.cc xorp/bgp/tools/: print_peer.cc print_peer.hh Log message: print_peers now prints verbose stats on each peer if given the -v flag _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Sat Jan 18 13:41:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 18 Jan 2003 13:42:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0ILg2wL048723 for ; Sat, 18 Jan 2003 13:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ILg2wP003640 for ; Sat, 18 Jan 2003 13:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA01874; Sat, 18 Jan 2003 13:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA01864 for ; Sat, 18 Jan 2003 13:41:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ILf4wP003636 for ; Sat, 18 Jan 2003 13:41:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0ILf4TO095117 for ; Sat, 18 Jan 2003 13:41:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0ILf479095116; Sat, 18 Jan 2003 13:41:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301182141.h0ILf479095116@xorpc.icir.org> Date: Sat, 18 Jan 2003 13:41:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_list.cc xorp/bgp/tools/ print_peer.cc print_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/18 13:41:04 Modified files: xorp/bgp/: peer_list.cc xorp/bgp/tools/: print_peer.cc print_peer.hh Log message: Fix corner case where a peering is removed while we're listing the peerings. Add -i interval flag to print_peers to specify repeated peer listing every seconds - this allows continuous BGP monitoring. Some pretty printing tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Sat Jan 18 16:42:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 18 Jan 2003 16:43:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0J0h6wL049553 for ; Sat, 18 Jan 2003 16:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0J0h6wP004958 for ; Sat, 18 Jan 2003 16:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03750; Sat, 18 Jan 2003 16:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03741 for ; Sat, 18 Jan 2003 16:42:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0J0g7wP004944 for ; Sat, 18 Jan 2003 16:42:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0J0g7TO009848 for ; Sat, 18 Jan 2003 16:42:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0J0g7I5009847; Sat, 18 Jan 2003 16:42:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301190042.h0J0g7I5009847@xorpc.icir.org> Date: Sat, 18 Jan 2003 16:42:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/01/18 16:42:07 Modified files: xorp/bgp/tools/: print_peer.cc Log message: Don't display values when they're not meaningful. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Sat Jan 18 16:59:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 18 Jan 2003 17:00:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0J108wL049629 for ; Sat, 18 Jan 2003 17:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0J108wP005090 for ; Sat, 18 Jan 2003 17:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03931; Sat, 18 Jan 2003 17:00:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03916 for ; Sat, 18 Jan 2003 16:59:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0J0xRwP005062 for ; Sat, 18 Jan 2003 16:59:27 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0J0xRTO010018 for ; Sat, 18 Jan 2003 16:59:27 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0J0xR6h010017; Sat, 18 Jan 2003 16:59:27 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301190059.h0J0xR6h010017@xorpc.icir.org> Date: Sat, 18 Jan 2003 16:59:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc main.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/ print_peer.cc print_peer.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/01/18 16:59:27 Modified files: xorp/bgp/: main.cc main.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/: print_peer.cc print_peer.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: The commands to retrieve the state in the peer part of the BGP MIB were missing MinimumRouteAdvertisementInterval. Add code to retrieve this, even though we don't currently implement it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Mon Jan 20 12:33:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 12:34:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0KKY9wL065187 for ; Mon, 20 Jan 2003 12:34:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKY9wP027268 for ; Mon, 20 Jan 2003 12:34:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA06997; Mon, 20 Jan 2003 12:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA06987 for ; Mon, 20 Jan 2003 12:33:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKXbwP027262 for ; Mon, 20 Jan 2003 12:33:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0KKXaTO063791 for ; Mon, 20 Jan 2003 12:33:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0KKXamc063790; Mon, 20 Jan 2003 12:33:36 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301202033.h0KKXamc063790@xorpc.icir.org> Date: Mon, 20 Jan 2003 12:33:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/20 12:33:36 Modified files: other/tinderbox/scripts/: build_xorp.sh Log message: o Change timeout detection so that builds do not wait until end of timeout before reporting success or failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Mon Jan 20 12:34:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 12:35:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0KKZ6wL065198 for ; Mon, 20 Jan 2003 12:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKZ5wP027285 for ; Mon, 20 Jan 2003 12:35:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07020; Mon, 20 Jan 2003 12:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07011 for ; Mon, 20 Jan 2003 12:34:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKYYwP027274 for ; Mon, 20 Jan 2003 12:34:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0KKYYTO063846 for ; Mon, 20 Jan 2003 12:34:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0KKYYJO063845; Mon, 20 Jan 2003 12:34:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301202034.h0KKYYJO063845@xorpc.icir.org> Date: Mon, 20 Jan 2003 12:34:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/20 12:34:34 Modified files: other/tinderbox/scripts/: config Log message: o New style configuration settings to allow tinderbox to deal with different compiler versions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:42 2005 Subject: No subject Mon Jan 20 12:35:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 12:36:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0KKaBwL065223 for ; Mon, 20 Jan 2003 12:36:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKaBwP027326 for ; Mon, 20 Jan 2003 12:36:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07044; Mon, 20 Jan 2003 12:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07036 for ; Mon, 20 Jan 2003 12:35:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKZnwP027312 for ; Mon, 20 Jan 2003 12:35:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0KKZnTO063927 for ; Mon, 20 Jan 2003 12:35:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0KKZn7S063926; Mon, 20 Jan 2003 12:35:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301202035.h0KKZn7S063926@xorpc.icir.org> Date: Mon, 20 Jan 2003 12:35:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ filter-error.awk Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/20 12:35:49 Modified files: other/tinderbox/scripts/: filter-error.awk Log message: o Run dump_error on finding "gmake foo foo blah Terminated" in output. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 12:36:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 12:37:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0KKbAwL065231 for ; Mon, 20 Jan 2003 12:37:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKb9wP027334 for ; Mon, 20 Jan 2003 12:37:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07078; Mon, 20 Jan 2003 12:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07056 for ; Mon, 20 Jan 2003 12:36:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KKaNwP027328 for ; Mon, 20 Jan 2003 12:36:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0KKaNTO063975 for ; Mon, 20 Jan 2003 12:36:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0KKaNUc063974; Mon, 20 Jan 2003 12:36:23 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301202036.h0KKaNUc063974@xorpc.icir.org> Date: Mon, 20 Jan 2003 12:36:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/20 12:36:23 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: o Use new style configuration settings to allow tinderbox to deal with different compiler versions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 15:08:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 15:09:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0KN9AwL066039 for ; Mon, 20 Jan 2003 15:09:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KN99wP028463 for ; Mon, 20 Jan 2003 15:09:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA09254; Mon, 20 Jan 2003 15:09:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA09232 for ; Mon, 20 Jan 2003 15:08:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0KN84wP028453 for ; Mon, 20 Jan 2003 15:08:04 -0800 (PST) (envelope-from greenhal@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0KN84TO065073 for ; Mon, 20 Jan 2003 15:08:04 -0800 (PST) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0KN84I3065072; Mon, 20 Jan 2003 15:08:04 -0800 (PST) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200301202308.h0KN84I3065072@xorpc.icir.org> Date: Mon, 20 Jan 2003 15:08:04 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_parser_input.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: greenhal@xorpc.icir.org. 03/01/20 15:08:04 Modified files: xorp/libxipc/: xrl_parser_input.cc Log message: gcc 3.2 fix line 50: ::getline(*stack_top().input(), line); -> std::getline(*stack_top().input(), line); thanks orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 17:11:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 17:12:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L1C4wL066667 for ; Mon, 20 Jan 2003 17:12:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1C3wP029468 for ; Mon, 20 Jan 2003 17:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11230; Mon, 20 Jan 2003 17:12:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11216 for ; Mon, 20 Jan 2003 17:11:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1B7wP029464 for ; Mon, 20 Jan 2003 17:11:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L1B7TO076086 for ; Mon, 20 Jan 2003 17:11:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L1B7kn076085; Mon, 20 Jan 2003 17:11:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301210111.h0L1B7kn076085@xorpc.icir.org> Date: Mon, 20 Jan 2003 17:11:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in xorp/libxorp/ ref_trie.hh test_ref_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/20 17:11:07 Modified files: xorp/libxorp/: Makefile.am Makefile.in Added files: xorp/libxorp/: ref_trie.hh test_ref_trie.cc Log message: First pass at reference-counted Trie. This is a Trie in which iterators cannot become invalid due to nodes being deleted because node deletion is delayed until the reference count becomes zero. Other than this, behaviour is unchanged (deleted nodes don't show up in find or when incrementing iterators). At least that's the intent. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 17:12:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 17:13:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L1D2wL066675 for ; Mon, 20 Jan 2003 17:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1D2wP029475 for ; Mon, 20 Jan 2003 17:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11251; Mon, 20 Jan 2003 17:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11241 for ; Mon, 20 Jan 2003 17:12:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1CEwP029471 for ; Mon, 20 Jan 2003 17:12:14 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L1CETO076121 for ; Mon, 20 Jan 2003 17:12:14 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L1CENs076120; Mon, 20 Jan 2003 17:12:14 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301210112.h0L1CENs076120@xorpc.icir.org> Date: Mon, 20 Jan 2003 17:12:14 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: rizzo@xorpc.icir.org. 03/01/20 17:12:14 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh Log message: Add copy_out() method to ipv4 and ipv6 to copy the raw address into a specified memory location. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 17:31:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 17:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L1W3wL066765 for ; Mon, 20 Jan 2003 17:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1W2wP029679 for ; Mon, 20 Jan 2003 17:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11502; Mon, 20 Jan 2003 17:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11490 for ; Mon, 20 Jan 2003 17:31:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L1VnwP029677 for ; Mon, 20 Jan 2003 17:31:49 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L1VnTO084184 for ; Mon, 20 Jan 2003 17:31:49 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L1VngY084183; Mon, 20 Jan 2003 17:31:49 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301210131.h0L1VngY084183@xorpc.icir.org> Date: Mon, 20 Jan 2003 17:31:49 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.hh aspath.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/20 17:31:49 Modified files: xorp/bgp/: aspath.hh aspath.cc Log message: Some clarification in the documentation, and add a constructor to create an AsPath from the data in a received BGP message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 19:33:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 19:34:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L3Y3wL067360 for ; Mon, 20 Jan 2003 19:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3Y3wP030628 for ; Mon, 20 Jan 2003 19:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13096; Mon, 20 Jan 2003 19:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13080 for ; Mon, 20 Jan 2003 19:33:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3XIwP030625 for ; Mon, 20 Jan 2003 19:33:18 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L3XITO001489 for ; Mon, 20 Jan 2003 19:33:18 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L3XI4C001486; Mon, 20 Jan 2003 19:33:18 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301210333.h0L3XI4C001486@xorpc.icir.org> Date: Mon, 20 Jan 2003 19:33:18 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/20 19:33:18 Modified files: xorp/bgp/: peer.cc Log message: Add a comment and remove a useless copy of the header _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 19:34:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 19:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L3Z3wL067371 for ; Mon, 20 Jan 2003 19:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3Z3wP030641 for ; Mon, 20 Jan 2003 19:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13124; Mon, 20 Jan 2003 19:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13116 for ; Mon, 20 Jan 2003 19:34:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3YuwP030636 for ; Mon, 20 Jan 2003 19:34:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L3YuTO001992 for ; Mon, 20 Jan 2003 19:34:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L3YuwD001991; Mon, 20 Jan 2003 19:34:56 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301210334.h0L3YuwD001991@xorpc.icir.org> Date: Mon, 20 Jan 2003 19:34:56 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/20 19:34:56 Modified files: xorp/bgp/: socket.cc Log message: Remove a useless copy of the header, add some comments and fix spacing in some places. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Mon Jan 20 19:52:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Jan 2003 19:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0L3r2wL067473 for ; Mon, 20 Jan 2003 19:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3r2wP030793 for ; Mon, 20 Jan 2003 19:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13337; Mon, 20 Jan 2003 19:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA13327 for ; Mon, 20 Jan 2003 19:52:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0L3qXwP030791 for ; Mon, 20 Jan 2003 19:52:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0L3qWTO004408 for ; Mon, 20 Jan 2003 19:52:32 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0L3qWb3004407; Mon, 20 Jan 2003 19:52:32 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301210352.h0L3qWb3004407@xorpc.icir.org> Date: Mon, 20 Jan 2003 19:52:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/20 19:52:32 Modified files: xorp/libxorp/: ref_trie.hh Log message: Fix initialization error that caused crash on Linux and FreeBSD with gcc 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Tue Jan 21 8:03:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 08:04:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LG48wL071275 for ; Tue, 21 Jan 2003 08:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LG48wP036374 for ; Tue, 21 Jan 2003 08:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA24349; Tue, 21 Jan 2003 08:04:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA24321 for ; Tue, 21 Jan 2003 08:03:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LG3fwP036365 for ; Tue, 21 Jan 2003 08:03:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LG3fTO040988 for ; Tue, 21 Jan 2003 08:03:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LG3fb4040987; Tue, 21 Jan 2003 08:03:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301211603.h0LG3fb4040987@xorpc.icir.org> Date: Tue, 21 Jan 2003 8:03:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/21 08:03:41 Modified files: other/tinderbox/scripts/: build_xorp.sh Log message: Fix error propagation of build task. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:43 2005 Subject: No subject Tue Jan 21 8:03:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 08:04:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LG4CwL071283 for ; Tue, 21 Jan 2003 08:04:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LG4CwP036377 for ; Tue, 21 Jan 2003 08:04:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA24338; Tue, 21 Jan 2003 08:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA24308 for ; Tue, 21 Jan 2003 08:03:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LG3HwP036358 for ; Tue, 21 Jan 2003 08:03:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LG3HTO040945 for ; Tue, 21 Jan 2003 08:03:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LG3Gnv040944; Tue, 21 Jan 2003 08:03:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301211603.h0LG3Gnv040944@xorpc.icir.org> Date: Tue, 21 Jan 2003 8:03:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/21 08:03:16 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: o Add log directory roll over. Directories are named: ${TINDERBOX_HOME}/log/0, ${TINDERBOX_HOME}/log/1, ... ${TINDERBOX_HOME}/log/N _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 8:56:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 08:57:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LGvEwL073004 for ; Tue, 21 Jan 2003 08:57:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LGvEwP038299 for ; Tue, 21 Jan 2003 08:57:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA25296; Tue, 21 Jan 2003 08:57:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA25288 for ; Tue, 21 Jan 2003 08:57:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LGv0wP038291 for ; Tue, 21 Jan 2003 08:57:00 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LGuxTO055000 for ; Tue, 21 Jan 2003 08:56:59 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LGuxLR054999; Tue, 21 Jan 2003 08:56:59 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301211656.h0LGuxLR054999@xorpc.icir.org> Date: Tue, 21 Jan 2003 8:56:59 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc packet.cc packet.hh packet_coding_test.cc peer.cc xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/21 08:56:59 Modified files: xorp/bgp/: notification_packet.cc packet.cc packet.hh packet_coding_test.cc peer.cc xorp/bgp/harness/: peer.cc Log message: be consistent with coding style and use foo() instead of get_foo() for the getter method in objects (_type and _Length so far) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 10:51:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 10:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LIq7wL073728 for ; Tue, 21 Jan 2003 10:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LIq7wP039445 for ; Tue, 21 Jan 2003 10:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA27982; Tue, 21 Jan 2003 10:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA27972 for ; Tue, 21 Jan 2003 10:51:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LIpbwP039440 for ; Tue, 21 Jan 2003 10:51:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LIpbTO062725 for ; Tue, 21 Jan 2003 10:51:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LIpbbE062724; Tue, 21 Jan 2003 10:51:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301211851.h0LIpbbE062724@xorpc.icir.org> Date: Tue, 21 Jan 2003 10:51:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xorp/libxipc/ finder_messenger.cc finder_messenger.hh finder_msgs.cc finder_msgs.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh test_finder_messenger.cc ...test_finder_msgs.cc ...test_finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/21 10:51:37 Modified files: xorp/libxipc/: Makefile.am Makefile.in Added files: xorp/libxipc/: finder_messenger.cc finder_messenger.hh finder_msgs.cc finder_msgs.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh test_finder_messenger.cc test_finder_msgs.cc test_finder_tcp.cc Log message: o Add framework for Xrl based Finder and FinderClient. This does not include the changes that make the Finder and FinderClient Xrl based. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 10:54:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 10:55:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LIt6wL073759 for ; Tue, 21 Jan 2003 10:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LIt6wP039512 for ; Tue, 21 Jan 2003 10:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA28049; Tue, 21 Jan 2003 10:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA28038 for ; Tue, 21 Jan 2003 10:54:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LIsSwP039481 for ; Tue, 21 Jan 2003 10:54:28 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LIsSTO062764 for ; Tue, 21 Jan 2003 10:54:28 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LIsSx3062763; Tue, 21 Jan 2003 10:54:28 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301211854.h0LIsSx3062763@xorpc.icir.org> Date: Tue, 21 Jan 2003 10:54:28 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc packet.hh packet_coding_test.cc peer.cc socket.cc update_packet.cc xorp/bgp/harness/ bgppp.cc peer.cc test_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/21 10:54:28 Modified files: xorp/bgp/: notification_packet.cc packet.hh packet_coding_test.cc peer.cc socket.cc update_packet.cc xorp/bgp/harness/: bgppp.cc peer.cc test_peer.cc Log message: Use only one constructor for locally created NotificationPacket()s. Fix a bug in checking data_len in parsing incoming NotificationPacket(). Improve documentation of the various constants in packet.hh -- especially related to packet sizes and types, and simplify some expressions using them. Remove the leading underscore from members of struct fixed_header _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 11:21:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 11:22:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LJM6wL073925 for ; Tue, 21 Jan 2003 11:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJM6wP039744 for ; Tue, 21 Jan 2003 11:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA28636; Tue, 21 Jan 2003 11:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA28619 for ; Tue, 21 Jan 2003 11:21:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJLJwP039738 for ; Tue, 21 Jan 2003 11:21:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LJLJTO063094 for ; Tue, 21 Jan 2003 11:21:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LJLJWm063093; Tue, 21 Jan 2003 11:21:19 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301211921.h0LJLJWm063093@xorpc.icir.org> Date: Tue, 21 Jan 2003 11:21:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: hodson@xorpc.icir.org. 03/01/21 11:21:19 Modified files: xorp/bgp/tools/: Makefile.am Makefile.in Log message: Remove empty TESTS variable as it generates bad shell code with autoconf 2.13 on koala (RH7.3) , but curiously not autoconf 2.13 on freebsd 4.6.2 boxes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 11:27:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 11:28:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LJS6wL073962 for ; Tue, 21 Jan 2003 11:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJS6wP039807 for ; Tue, 21 Jan 2003 11:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA28770; Tue, 21 Jan 2003 11:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA28750 for ; Tue, 21 Jan 2003 11:27:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJRUwP039803 for ; Tue, 21 Jan 2003 11:27:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LJRUTO063171 for ; Tue, 21 Jan 2003 11:27:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LJRTxE063170; Tue, 21 Jan 2003 11:27:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301211927.h0LJRTxE063170@xorpc.icir.org> Date: Tue, 21 Jan 2003 11:27:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh trie.hh xorp/libxorp/ minitraits.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/21 11:27:29 Modified files: xorp/libxorp/: ref_trie.hh trie.hh Added files: xorp/libxorp/: minitraits.hh Log message: Move minitraits to a separate file to avoid compilation problems in modules using both trie and ref_trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 11:49:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 11:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LJo6wL079414 for ; Tue, 21 Jan 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJo6wP040014 for ; Tue, 21 Jan 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA29336; Tue, 21 Jan 2003 11:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA29328 for ; Tue, 21 Jan 2003 11:49:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LJnvwP039989 for ; Tue, 21 Jan 2003 11:49:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LJnvTO063405 for ; Tue, 21 Jan 2003 11:49:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LJnvsn063404; Tue, 21 Jan 2003 11:49:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301211949.h0LJnvsn063404@xorpc.icir.org> Date: Tue, 21 Jan 2003 11:49:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/21 11:49:57 Modified files: other/tinderbox/scripts/: build_xorp.sh config Log message: o Move TIMEOUT constants in config. o Cosmetics (gulp) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 12:15:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 12:16:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LKG3wL080055 for ; Tue, 21 Jan 2003 12:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LKG3wP040254 for ; Tue, 21 Jan 2003 12:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00193; Tue, 21 Jan 2003 12:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00183 for ; Tue, 21 Jan 2003 12:15:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LKFnwP040251 for ; Tue, 21 Jan 2003 12:15:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LKFnTO063811 for ; Tue, 21 Jan 2003 12:15:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LKFn2i063810; Tue, 21 Jan 2003 12:15:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301212015.h0LKFn2i063810@xorpc.icir.org> Date: Tue, 21 Jan 2003 12:15:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/21 12:15:49 Modified files: xorp/libxipc/: .cvsignore Log message: o Ignore new test binaries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 12:24:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 12:25:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0LKP2wL082264 for ; Tue, 21 Jan 2003 12:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LKP2wP040345 for ; Tue, 21 Jan 2003 12:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00447; Tue, 21 Jan 2003 12:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00431 for ; Tue, 21 Jan 2003 12:24:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0LKOUwP040340 for ; Tue, 21 Jan 2003 12:24:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0LKOUTO066262 for ; Tue, 21 Jan 2003 12:24:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0LKOUwM066258; Tue, 21 Jan 2003 12:24:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301212024.h0LKOUwM066258@xorpc.icir.org> Date: Tue, 21 Jan 2003 12:24:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/21 12:24:30 Modified files: xorp/libxipc/: README Log message: Add note about xrl based finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 16:43:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 01:14:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0M9EQot000286 for ; Wed, 22 Jan 2003 01:14:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M0i3wP042791 for ; Tue, 21 Jan 2003 16:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06865; Tue, 21 Jan 2003 16:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06845 for ; Tue, 21 Jan 2003 16:43:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M0hZwP042785 for ; Tue, 21 Jan 2003 16:43:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0M0hZTO086509 for ; Tue, 21 Jan 2003 16:43:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0M0hZ9t086508; Tue, 21 Jan 2003 16:43:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301220043.h0M0hZ9t086508@xorpc.icir.org> Date: Tue, 21 Jan 2003 16:43:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/01/21 16:43:35 Modified files: xorp/bgp/: notification_packet.cc Log message: o Compilation fix - do not duplicate default values of arguments in method implementation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 16:32:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 01:14:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0M9EQp1000286 for ; Wed, 22 Jan 2003 01:14:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M0X2wP042676 for ; Tue, 21 Jan 2003 16:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06579; Tue, 21 Jan 2003 16:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA06565 for ; Tue, 21 Jan 2003 16:32:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M0WtwP042674 for ; Tue, 21 Jan 2003 16:32:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0M0WtTO082907 for ; Tue, 21 Jan 2003 16:32:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0M0WtuB082906; Tue, 21 Jan 2003 16:32:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301220032.h0M0WtuB082906@xorpc.icir.org> Date: Tue, 21 Jan 2003 16:32:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/21 16:32:55 Modified files: xorp/libxipc/: finder_tcp.cc Log message: o Mark sockets non-blocking after accepting them since Linux does not propagate non-blocking state to child sockets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:44 2005 Subject: No subject Tue Jan 21 16:07:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 01:14:27 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0M9EQpH000286 for ; Wed, 22 Jan 2003 01:14:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M082wP042437 for ; Tue, 21 Jan 2003 16:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA05821; Tue, 21 Jan 2003 16:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA05800 for ; Tue, 21 Jan 2003 16:07:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M07OwP042432 for ; Tue, 21 Jan 2003 16:07:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0M07NTO079315 for ; Tue, 21 Jan 2003 16:07:23 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0M07NGS079314; Tue, 21 Jan 2003 16:07:23 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301220007.h0M07NGS079314@xorpc.icir.org> Date: Tue, 21 Jan 2003 16:07:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/21 16:07:23 Modified files: xorp/bgp/: bgp_trie.hh Log message: Change BGP to use RefTrie _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Tue Jan 21 18:46:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 18:47:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0M2l7WO000921 for ; Tue, 21 Jan 2003 18:47:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M2l6wP043792 for ; Tue, 21 Jan 2003 18:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA09270; Tue, 21 Jan 2003 18:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA09262 for ; Tue, 21 Jan 2003 18:46:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M2kZwP043788 for ; Tue, 21 Jan 2003 18:46:35 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0M2kZTO000542 for ; Tue, 21 Jan 2003 18:46:35 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0M2kZ7G000541; Tue, 21 Jan 2003 18:46:35 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301220246.h0M2kZ7G000541@xorpc.icir.org> Date: Tue, 21 Jan 2003 18:46:35 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ keepalive_packet.cc notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc update_packet.cc update_test.cc xorp/bgp/harness/ bgppp.cc peer.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/21 18:46:35 Modified files: xorp/bgp/: keepalive_packet.cc notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc update_packet.cc update_test.cc xorp/bgp/harness/: bgppp.cc peer.cc trie.hh Log message: Initial sweep at simplifying the packet handling code. In BGPPacket and derived classes: Remove _Data, embed decode() into the constructor, move trivial methods into the header file. Remove Marker[] as a member of the object as it is a constant for the time being. Update users of the classes not to use decode() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Tue Jan 21 19:02:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Jan 2003 19:03:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0M337WO005853 for ; Tue, 21 Jan 2003 19:03:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M336wP043912 for ; Tue, 21 Jan 2003 19:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA09529; Tue, 21 Jan 2003 19:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA09511 for ; Tue, 21 Jan 2003 19:02:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0M329wP043906 for ; Tue, 21 Jan 2003 19:02:09 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0M329TO000727 for ; Tue, 21 Jan 2003 19:02:09 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0M329nl000726; Tue, 21 Jan 2003 19:02:09 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301220302.h0M329nl000726@xorpc.icir.org> Date: Tue, 21 Jan 2003 19:02:09 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/21 19:02:09 Modified files: xorp/bgp/: update_packet.cc Log message: whitespace and formatting changes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 11:12:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 11:13:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0MJDDWO018219 for ; Wed, 22 Jan 2003 11:13:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0MJD7wP052902 for ; Wed, 22 Jan 2003 11:13:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA26913; Wed, 22 Jan 2003 11:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA26897 for ; Wed, 22 Jan 2003 11:12:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0MJCswP052898 for ; Wed, 22 Jan 2003 11:12:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0MJCsTO084090 for ; Wed, 22 Jan 2003 11:12:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0MJCskj084089; Wed, 22 Jan 2003 11:12:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301221912.h0MJCskj084089@xorpc.icir.org> Date: Wed, 22 Jan 2003 11:12:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/22 11:12:54 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc Log message: Fix the computation of RPF'(S,G,rpt) : if there is no (*,G) entry, then PimMre::compute_rpfp_nbr_sg_rpt() returns MRIB.next_hop(RP(G)) Note: in this case the computation of RPF'(S,G,rpt) uses internal knowledge about how RPF'(*,G) is computed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 11:14:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 11:15:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0MJFDWO018235 for ; Wed, 22 Jan 2003 11:15:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0MJF7wP052940 for ; Wed, 22 Jan 2003 11:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA26981; Wed, 22 Jan 2003 11:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA26972 for ; Wed, 22 Jan 2003 11:14:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0MJEwwP052916 for ; Wed, 22 Jan 2003 11:14:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0MJEwTO084125 for ; Wed, 22 Jan 2003 11:14:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0MJEwEv084124; Wed, 22 Jan 2003 11:14:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301221914.h0MJEwEv084124@xorpc.icir.org> Date: Wed, 22 Jan 2003 11:14:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/22 11:14:58 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: o Make subject line more user friendly, ie PASS: foo, FAIL: foo. o Minor edits that'll probably break tinderbox. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 19:43:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 19:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N3i3Rw006997 for ; Wed, 22 Jan 2003 19:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N3i2wP057187 for ; Wed, 22 Jan 2003 19:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA08445; Wed, 22 Jan 2003 19:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA08426 for ; Wed, 22 Jan 2003 19:43:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N3hYwP057179 for ; Wed, 22 Jan 2003 19:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N3hYTO031670 for ; Wed, 22 Jan 2003 19:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N3hY0x031669; Wed, 22 Jan 2003 19:43:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230343.h0N3hY0x031669@xorpc.icir.org> Date: Wed, 22 Jan 2003 19:43:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/01/22 19:43:34 Modified files: xorp/libxorp/: .cvsignore Log message: Add test_ref_trie to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 20:06:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 20:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N473Rw007118 for ; Wed, 22 Jan 2003 20:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N472wP057364 for ; Wed, 22 Jan 2003 20:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08703; Wed, 22 Jan 2003 20:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08695 for ; Wed, 22 Jan 2003 20:06:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N46owP057362 for ; Wed, 22 Jan 2003 20:06:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N46oTO032082 for ; Wed, 22 Jan 2003 20:06:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N46ojm032081; Wed, 22 Jan 2003 20:06:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230406.h0N46ojm032081@xorpc.icir.org> Date: Wed, 22 Jan 2003 20:06:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: pavlin@xorpc.icir.org. 03/01/22 20:06:50 Modified files: xorp/bgp/tools/: Makefile.in Log message: Regenerate Makefile.in with the default automake-1.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 20:08:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 20:09:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N492Rw007126 for ; Wed, 22 Jan 2003 20:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N492wP057374 for ; Wed, 22 Jan 2003 20:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08743; Wed, 22 Jan 2003 20:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08736 for ; Wed, 22 Jan 2003 20:08:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N48cwP057372 for ; Wed, 22 Jan 2003 20:08:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N48cTO032132 for ; Wed, 22 Jan 2003 20:08:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N48ck8032131; Wed, 22 Jan 2003 20:08:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230408.h0N48ck8032131@xorpc.icir.org> Date: Wed, 22 Jan 2003 20:08:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ config.guess config.sub Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/01/22 20:08:38 Modified files: xorp/config/: config.guess config.sub Log message: Update config.guess and config.sub with the lastest version (as of January 22, 2003) from ftp://ftp.gnu.org/pub/gnu/config/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 21:01:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 21:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N523Rw007458 for ; Wed, 22 Jan 2003 21:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N522wP057773 for ; Wed, 22 Jan 2003 21:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA09864; Wed, 22 Jan 2003 21:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA09854 for ; Wed, 22 Jan 2003 21:01:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N51SwP057770 for ; Wed, 22 Jan 2003 21:01:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N51STO047277 for ; Wed, 22 Jan 2003 21:01:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N51Spj047276; Wed, 22 Jan 2003 21:01:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230501.h0N51Spj047276@xorpc.icir.org> Date: Wed, 22 Jan 2003 21:01:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_join_prune.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/01/22 21:01:27 Modified files: xorp/pim/: pim_mre.hh pim_mre_join_prune.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: * Add a new method PimMre::recompute_is_prune_desired_sg_rpt_sg() that can be used to recompute PruneDesired(S,G,rpt) indirectly by using an existing (S,G) routing state. If there is no corresponding (S,G,rpt) routing state, the above method will create one, and then will call the existing PimMre::recompute_is_prune_desired_sg_rpt() to perform the real computation. * Add the appropriate support to the mechanism for tracking dependency to call the new PimMre::recompute_is_prune_desired_sg_rpt_sg() right after PimMre::recompute_is_prune_desired_sg_rpt() (just in case there is no (S,G,rpt) routing state). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Wed Jan 22 22:54:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Jan 2003 22:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N6t2Rw008032 for ; Wed, 22 Jan 2003 22:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N6t2wP058543 for ; Wed, 22 Jan 2003 22:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA11351; Wed, 22 Jan 2003 22:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA11343 for ; Wed, 22 Jan 2003 22:54:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N6sowP058537 for ; Wed, 22 Jan 2003 22:54:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N6soTO053992 for ; Wed, 22 Jan 2003 22:54:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N6soTt053991; Wed, 22 Jan 2003 22:54:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230654.h0N6soTt053991@xorpc.icir.org> Date: Wed, 22 Jan 2003 22:54:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/01/22 22:54:50 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: * Add a new method PimMre::recompute_rpfp_nbr_sg_rpt_sg_changed() that can be used to recompute whether RPF'(S,G,rpt) has changed indirectly by using an existing (S,G) routing state. If there is no corresponding (S,G,rpt) routing state, the above method will create one, and then will call the existing PimMre::recompute_rpfp_nbr_sg_rpt_changed() to perform the real computation. * Add the appropriate support to the mechanism for tracking dependency to call the new PimMre::recompute_rpfp_nbr_sg_rpt_sg_changed() right after PimMre::recompute_rpfp_nbr_sg_rpt_changed() (just in case there is no (S,G,rpt) routing state). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Thu Jan 23 0:34:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 00:43:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N8h9Rw008536 for ; Thu, 23 Jan 2003 00:43:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N8h8wP059236 for ; Thu, 23 Jan 2003 00:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA13433; Thu, 23 Jan 2003 00:35:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA13412 for ; Thu, 23 Jan 2003 00:34:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N8YKwP059162 for ; Thu, 23 Jan 2003 00:34:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N8YJTO064578 for ; Thu, 23 Jan 2003 00:34:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N8YJxd064577; Thu, 23 Jan 2003 00:34:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230834.h0N8YJxd064577@xorpc.icir.org> Date: Thu, 23 Jan 2003 0:34:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/23 00:34:19 Modified files: xorp/pim/: pim_mre.cc Log message: Don't delete PimMre routing entry if any of its interfaces is in Assert Winner or Assert Loser state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:45 2005 Subject: No subject Thu Jan 23 0:42:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 00:54:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N8sFRw008584 for ; Thu, 23 Jan 2003 00:54:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N8sFwP059318 for ; Thu, 23 Jan 2003 00:54:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA13535; Thu, 23 Jan 2003 00:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA13526 for ; Thu, 23 Jan 2003 00:42:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N8ghwP059230 for ; Thu, 23 Jan 2003 00:42:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N8ghTO067957 for ; Thu, 23 Jan 2003 00:42:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N8ghvO067956; Thu, 23 Jan 2003 00:42:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230842.h0N8ghvO067956@xorpc.icir.org> Date: Thu, 23 Jan 2003 0:42:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/23 00:42:43 Modified files: xorp/pim/: pim_mre_assert.cc Log message: If the PimMre interface state is set to NoInfo, try to remove that PimMre entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 1:06:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 01:12:40 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N9CeRw008703 for ; Thu, 23 Jan 2003 01:12:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N9CewP059516 for ; Thu, 23 Jan 2003 01:12:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA13812; Thu, 23 Jan 2003 01:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA13805 for ; Thu, 23 Jan 2003 01:06:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N96twP059467 for ; Thu, 23 Jan 2003 01:06:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N96tTO075138 for ; Thu, 23 Jan 2003 01:06:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N96txS075137; Thu, 23 Jan 2003 01:06:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230906.h0N96txS075137@xorpc.icir.org> Date: Thu, 23 Jan 2003 1:06:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/01/23 01:06:55 Modified files: xorp/cli/: cli_node.cc cli_node.hh Log message: Argument renaming: ipvxnet -> subnet_addr _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 1:16:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 01:32:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0N9W5Rw008852 for ; Thu, 23 Jan 2003 01:32:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N9W5wP059680 for ; Thu, 23 Jan 2003 01:32:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA13996; Thu, 23 Jan 2003 01:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA13986 for ; Thu, 23 Jan 2003 01:16:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0N9GbwP059549 for ; Thu, 23 Jan 2003 01:16:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0N9GbTO079528 for ; Thu, 23 Jan 2003 01:16:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0N9GbH3079527; Thu, 23 Jan 2003 01:16:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301230916.h0N9GbH3079527@xorpc.icir.org> Date: Thu, 23 Jan 2003 1:16:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/01/23 01:16:37 Modified files: xorp/cli/: cli_node.cc cli_node.hh Log message: Minor comments formatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 3:22:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 03:23:49 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0NBNnRw009702 for ; Thu, 23 Jan 2003 03:23:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0NBNnwP060876 for ; Thu, 23 Jan 2003 03:23:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA15630; Thu, 23 Jan 2003 03:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA15614 for ; Thu, 23 Jan 2003 03:22:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0NBMbwP060864 for ; Thu, 23 Jan 2003 03:22:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0NBMbTO084924 for ; Thu, 23 Jan 2003 03:22:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0NBMbq8084923; Thu, 23 Jan 2003 03:22:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301231122.h0NBMbq8084923@xorpc.icir.org> Date: Thu, 23 Jan 2003 3:22:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/23 03:22:37 Modified files: xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc Log message: Comment-out the enabling of CLI access inside mfea/test_mfea.cc mld6igmp/test_mld6igmp.cc and pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 3:14:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 03:40:46 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0NBekRw009809 for ; Thu, 23 Jan 2003 03:40:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0NBejwP061009 for ; Thu, 23 Jan 2003 03:40:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA15546; Thu, 23 Jan 2003 03:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA15516 for ; Thu, 23 Jan 2003 03:14:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0NBERwP060793 for ; Thu, 23 Jan 2003 03:14:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0NBERTO084387 for ; Thu, 23 Jan 2003 03:14:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0NBERTj084386; Thu, 23 Jan 2003 03:14:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301231114.h0NBERTj084386@xorpc.icir.org> Date: Thu, 23 Jan 2003 3:14:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh xorp/mfea/ command_mfea configure_mfea test_mfea.cc xrl_mfea_node.hh xorp/mld6igmp/ command_mld6igmp configure_mld6igmp test_mld6igmp.cc xrl_mld6igmp_node.hh xorp/pim/ command_pim configure_pim test_pim.cc xrl_pim_node.hh xorp/xrl/interfaces/ cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh cli_processor.xif cli_processor_xif.hh xorp/xrl/targets/ cli.xrls cli_base.cc cli_base.hh mfea.xrls mfea_base.hh mld6igmp.xrls mld6igmp_base.hh pim.xrls pim_base.hh xorp/cli/ xrl_cli_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/01/23 03:14:27 Modified files: xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh xorp/mfea/: command_mfea configure_mfea test_mfea.cc xrl_mfea_node.hh xorp/mld6igmp/: command_mld6igmp configure_mld6igmp test_mld6igmp.cc xrl_mld6igmp_node.hh xorp/pim/: command_pim configure_pim test_pim.cc xrl_pim_node.hh xorp/xrl/interfaces/: cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh cli_processor.xif cli_processor_xif.hh xorp/xrl/targets/: cli.xrls cli_base.cc cli_base.hh mfea.xrls mfea_base.hh mld6igmp.xrls mld6igmp_base.hh pim.xrls pim_base.hh Added files: xorp/cli/: xrl_cli_shell_funcs.sh Log message: * Add XRLs to add/delete subnet address to the set of subnets with enabled/disabled CLI access. * Add XRLs to start/stop/enable/disable the CLI. * Change the configuration files to configure the subnets with CLI access (instead of hard-coding those subnets in the C++ source code), and to explicitly enable and start the CLI. * Various cosmetic cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 16:51:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 16:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O0q7Rw035982 for ; Thu, 23 Jan 2003 16:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0q7wP069111 for ; Thu, 23 Jan 2003 16:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04026; Thu, 23 Jan 2003 16:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04010 for ; Thu, 23 Jan 2003 16:51:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0pbwP069097 for ; Thu, 23 Jan 2003 16:51:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O0pbTO057741 for ; Thu, 23 Jan 2003 16:51:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O0pbw3057740; Thu, 23 Jan 2003 16:51:37 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301240051.h0O0pbw3057740@xorpc.icir.org> Date: Thu, 23 Jan 2003 16:51:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/23 16:51:37 Modified files: xorp/libxorp/: ref_trie.hh Log message: Modifications to force an iterator to point to a valid (undeleted) node during comparison, and assert if the user attempts to access the key or payload of a deleted node. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 16:53:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 16:54:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O0s7Rw036148 for ; Thu, 23 Jan 2003 16:54:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0s6wP069131 for ; Thu, 23 Jan 2003 16:54:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04105; Thu, 23 Jan 2003 16:54:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04064 for ; Thu, 23 Jan 2003 16:53:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0r6wP069119 for ; Thu, 23 Jan 2003 16:53:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O0r6TO059833 for ; Thu, 23 Jan 2003 16:53:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O0r6Rw059832; Thu, 23 Jan 2003 16:53:06 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301240053.h0O0r6Rw059832@xorpc.icir.org> Date: Thu, 23 Jan 2003 16:53:06 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_reader.cc route_table_reader.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/23 16:53:06 Added files: xorp/bgp/: route_table_reader.cc route_table_reader.hh Log message: A start at code to read back the routing tables. Not yet linked in for compilation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 16:57:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 16:58:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O0w6Rw036464 for ; Thu, 23 Jan 2003 16:58:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0w6wP069177 for ; Thu, 23 Jan 2003 16:58:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04182; Thu, 23 Jan 2003 16:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA04174 for ; Thu, 23 Jan 2003 16:57:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O0vuwP069173 for ; Thu, 23 Jan 2003 16:57:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O0vuTO060817 for ; Thu, 23 Jan 2003 16:57:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O0vuCj060816; Thu, 23 Jan 2003 16:57:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301240057.h0O0vuCj060816@xorpc.icir.org> Date: Thu, 23 Jan 2003 16:57:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/23 16:57:55 Modified files: xorp/bgp/harness/: peer.cc Log message: Incorrect index to array when calling c_format. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 17:19:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 17:20:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O1K3Rw038276 for ; Thu, 23 Jan 2003 17:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1K2wP069357 for ; Thu, 23 Jan 2003 17:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA04654; Thu, 23 Jan 2003 17:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA04641 for ; Thu, 23 Jan 2003 17:19:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1JVwP069352 for ; Thu, 23 Jan 2003 17:19:31 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O1JVTO067335 for ; Thu, 23 Jan 2003 17:19:31 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O1JVHq067334; Thu, 23 Jan 2003 17:19:31 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301240119.h0O1JVHq067334@xorpc.icir.org> Date: Thu, 23 Jan 2003 17:19:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/23 17:19:31 Modified files: xorp/bgp/harness/: test_routing1.sh Log message: Set the NEXT_HOP variable unconditionally. Previously it was only getting set when configuring BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 17:29:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 17:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O1U3Rw039045 for ; Thu, 23 Jan 2003 17:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1U3wP069440 for ; Thu, 23 Jan 2003 17:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA04853; Thu, 23 Jan 2003 17:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA04825 for ; Thu, 23 Jan 2003 17:29:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1TBwP069431 for ; Thu, 23 Jan 2003 17:29:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O1TBTO067424 for ; Thu, 23 Jan 2003 17:29:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O1TBBF067423; Thu, 23 Jan 2003 17:29:11 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301240129.h0O1TBBF067423@xorpc.icir.org> Date: Thu, 23 Jan 2003 17:29:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/23 17:29:11 Modified files: xorp/bgp/harness/: test_routing1.sh Log message: Start a dummy fea so the RIB has someone to talk to. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 17:45:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 17:46:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O1k3Rw040252 for ; Thu, 23 Jan 2003 17:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1k3wP069592 for ; Thu, 23 Jan 2003 17:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA05218; Thu, 23 Jan 2003 17:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA05195 for ; Thu, 23 Jan 2003 17:45:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O1jdwP069589 for ; Thu, 23 Jan 2003 17:45:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O1jdTO067775 for ; Thu, 23 Jan 2003 17:45:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O1jdu2067774; Thu, 23 Jan 2003 17:45:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301240145.h0O1jdu2067774@xorpc.icir.org> Date: Thu, 23 Jan 2003 17:45:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.hh finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/23 17:45:39 Modified files: xorp/libxipc/: finder_tcp.hh finder_tcp.cc Log message: Add methods to permit list of nets and hosts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 18:03:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 18:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O242Rw042109 for ; Thu, 23 Jan 2003 18:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O242wP069729 for ; Thu, 23 Jan 2003 18:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA05529; Thu, 23 Jan 2003 18:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA05518 for ; Thu, 23 Jan 2003 18:03:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O23EwP069725 for ; Thu, 23 Jan 2003 18:03:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O23ETO068121 for ; Thu, 23 Jan 2003 18:03:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O23EmL068120; Thu, 23 Jan 2003 18:03:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301240203.h0O23EmL068120@xorpc.icir.org> Date: Thu, 23 Jan 2003 18:03:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc finder_tcp.hh test_finder_messenger.cc test_finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/23 18:03:14 Modified files: xorp/libxipc/: finder_tcp.cc finder_tcp.hh test_finder_messenger.cc test_finder_tcp.cc Log message: Add network interface argument to FinderTcpListenerBase and propagate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 18:11:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 18:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O2C3Rw042821 for ; Thu, 23 Jan 2003 18:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2C3wP069820 for ; Thu, 23 Jan 2003 18:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA05697; Thu, 23 Jan 2003 18:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA05674 for ; Thu, 23 Jan 2003 18:11:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2BJwP069812 for ; Thu, 23 Jan 2003 18:11:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O2BJTO068239 for ; Thu, 23 Jan 2003 18:11:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O2BJJv068238; Thu, 23 Jan 2003 18:11:19 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301240211.h0O2BJJv068238@xorpc.icir.org> Date: Thu, 23 Jan 2003 18:11:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/23 18:11:19 Modified files: xorp/bgp/: peer.cc Log message: In the active state if the tcp connection has succeeded we are supposed to start the holdtimer. The recommended value is 4 minutes. We were correctly starting the hold timer but the value of the hold timer variable was uninitialized. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 18:47:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 18:48:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O2m2Rw049036 for ; Thu, 23 Jan 2003 18:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2m2wP070157 for ; Thu, 23 Jan 2003 18:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA06413; Thu, 23 Jan 2003 18:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA06404 for ; Thu, 23 Jan 2003 18:47:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2lQwP070155 for ; Thu, 23 Jan 2003 18:47:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O2lQTO072830 for ; Thu, 23 Jan 2003 18:47:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O2lQ5j072829; Thu, 23 Jan 2003 18:47:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301240247.h0O2lQ5j072829@xorpc.icir.org> Date: Thu, 23 Jan 2003 18:47:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_tcp.cc test_finder_messenger.cc finder_tcp.cc finder_tcp.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/23 18:47:26 Modified files: xorp/libxipc/: test_finder_tcp.cc test_finder_messenger.cc finder_tcp.cc finder_tcp.hh Log message: Minor renaming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:46 2005 Subject: No subject Thu Jan 23 18:48:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 18:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O2n2Rw049116 for ; Thu, 23 Jan 2003 18:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2n2wP070165 for ; Thu, 23 Jan 2003 18:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA06439; Thu, 23 Jan 2003 18:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA06427 for ; Thu, 23 Jan 2003 18:48:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O2mMwP070163 for ; Thu, 23 Jan 2003 18:48:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O2mMTO072860 for ; Thu, 23 Jan 2003 18:48:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O2mMm9072859; Thu, 23 Jan 2003 18:48:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301240248.h0O2mMm9072859@xorpc.icir.org> Date: Thu, 23 Jan 2003 18:48:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Makefile.am Makefile.in xorp/libxipc/ finder_ng.cc finder_ng.hh finder_ng_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/23 18:48:22 Modified files: xorp/libxipc/: .cvsignore Makefile.am Makefile.in Added files: xorp/libxipc/: finder_ng.cc finder_ng.hh finder_ng_main.cc Log message: Add skeleton xrl finder. At least it wasn't called finder_xp :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Thu Jan 23 21:53:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 21:54:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O5s3Rw094242 for ; Thu, 23 Jan 2003 21:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O5s3wP071582 for ; Thu, 23 Jan 2003 21:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA09031; Thu, 23 Jan 2003 21:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA09020 for ; Thu, 23 Jan 2003 21:53:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O5rpwP071573 for ; Thu, 23 Jan 2003 21:53:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O5rpTO093812 for ; Thu, 23 Jan 2003 21:53:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O5rpem093811; Thu, 23 Jan 2003 21:53:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301240553.h0O5rpem093811@xorpc.icir.org> Date: Thu, 23 Jan 2003 21:53:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/01/23 21:53:51 Modified files: xorp/libxipc/: xrl_pf_stcp.cc Log message: Change the type of the last argument to accept(2) from size_t to socklen_t _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Thu Jan 23 22:10:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 22:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O6B3Rw001104 for ; Thu, 23 Jan 2003 22:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O6B3wP071710 for ; Thu, 23 Jan 2003 22:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09234; Thu, 23 Jan 2003 22:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09210 for ; Thu, 23 Jan 2003 22:10:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O6AMwP071708 for ; Thu, 23 Jan 2003 22:10:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O6AMTO093990 for ; Thu, 23 Jan 2003 22:10:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O6AMJR093989; Thu, 23 Jan 2003 22:10:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301240610.h0O6AMJR093989@xorpc.icir.org> Date: Thu, 23 Jan 2003 22:10:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/01/23 22:10:22 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Add (uint32_t) and (uint32_t&) casting of size_t argument passed to HeaderWriter::add() and get(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Thu Jan 23 22:31:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 22:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O6W3Rw008961 for ; Thu, 23 Jan 2003 22:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O6W2wP071845 for ; Thu, 23 Jan 2003 22:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09553; Thu, 23 Jan 2003 22:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09545 for ; Thu, 23 Jan 2003 22:31:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O6VYwP071841 for ; Thu, 23 Jan 2003 22:31:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O6VYTO094178 for ; Thu, 23 Jan 2003 22:31:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O6VYg0094177; Thu, 23 Jan 2003 22:31:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301240631.h0O6VYg0094177@xorpc.icir.org> Date: Thu, 23 Jan 2003 22:31:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_xif.cc cli_manager_xif.cc cli_processor_xif.cc common_xif.cc coord_xif.cc datain_xif.cc fea_fti_xif.cc fea_ifmgr_client_xif.cc fea_ifmgr_xif.cc ...fea_rawpkt_client_xif.cc ...fea_rawpkt_xif.cc ...finder_client_xif.cc ...finder_xif.cc ...mfea_client_xif.cc ...mfea_xif.cc ...mld6igmp_client_xif.cc ...mld6igmp_xif.cc ...ospf_xif.cc ...pim_xif.cc ...rib_client_xif.cc ...rib_xif.cc ...rtrmgr_client_xif.cc ...rtrmgr_xif.cc ...test_peer_xif.cc ...test_xif.cc xorp/xrl/scripts/ clnt-gen tgt-gen xorp/xrl/targets/ bgp_base.cc cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc finder_base.cc finder_client_base.cc mfea_base.cc mld6igmp_base.cc ospf_base.cc ...pim_base.cc ...rib_base.cc ...ribclient_base.cc ...rtrmgr_base.cc ...test_base.cc ...test_peer_b! ase.cc ...! xorpsh_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/01/23 22:31:34 Modified files: xorp/xrl/interfaces/: bgp_xif.cc cli_manager_xif.cc cli_processor_xif.cc common_xif.cc coord_xif.cc datain_xif.cc fea_fti_xif.cc fea_ifmgr_client_xif.cc fea_ifmgr_xif.cc fea_rawpkt_client_xif.cc fea_rawpkt_xif.cc finder_client_xif.cc finder_xif.cc mfea_client_xif.cc mfea_xif.cc mld6igmp_client_xif.cc mld6igmp_xif.cc ospf_xif.cc pim_xif.cc rib_client_xif.cc rib_xif.cc rtrmgr_client_xif.cc rtrmgr_xif.cc test_peer_xif.cc test_xif.cc xorp/xrl/scripts/: clnt-gen tgt-gen xorp/xrl/targets/: bgp_base.cc cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc finder_base.cc finder_client_base.cc mfea_base.cc mld6igmp_base.cc ospf_base.cc pim_base.cc rib_base.cc ribclient_base.cc rtrmgr_base.cc test_base.cc test_peer_base.cc xorpsh_base.cc Log message: * Cast size_t argument to (uint32_t) in the Python scripts xrl/scripts/clnt-gen xrl/scripts/tgt-gen : OLD: "Wrong number of arguments (%%d != %d)\", a->size() NEW: "Wrong number of arguments (%%u != %d)\", (uint32_t)a->size() and then regenerate the autogenerated XRL-related files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Thu Jan 23 23:31:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Jan 2003 23:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O7W2Rw027942 for ; Thu, 23 Jan 2003 23:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O7W2wP072268 for ; Thu, 23 Jan 2003 23:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA10644; Thu, 23 Jan 2003 23:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA10626 for ; Thu, 23 Jan 2003 23:31:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O7VbwP072264 for ; Thu, 23 Jan 2003 23:31:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O7VaTO094652 for ; Thu, 23 Jan 2003 23:31:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O7VaSh094651; Thu, 23 Jan 2003 23:31:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301240731.h0O7VaSh094651@xorpc.icir.org> Date: Thu, 23 Jan 2003 23:31:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_task.cc pim_mre_task.hh pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/23 23:31:36 Modified files: xorp/pim/: pim_mre_task.cc pim_mre_task.hh pim_mrt_task.cc Log message: Changes to how PimMre and PimMfc entries are deleted: the entries pending deletion are added to a separate list in PimMreTask instead of reusing one of the lists for processing such entries. This makes things cleaner when exactly an entry pending deletion should be deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 0:09:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 00:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0O8A2Rw040941 for ; Fri, 24 Jan 2003 00:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O8A2wP072512 for ; Fri, 24 Jan 2003 00:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA11498; Fri, 24 Jan 2003 00:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA11491 for ; Fri, 24 Jan 2003 00:09:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0O89swP072507 for ; Fri, 24 Jan 2003 00:09:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0O89sTO095034 for ; Fri, 24 Jan 2003 00:09:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0O89s5q095033; Fri, 24 Jan 2003 00:09:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301240809.h0O89s5q095033@xorpc.icir.org> Date: Fri, 24 Jan 2003 0:09:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_task.cc pim_mre_task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/24 00:09:54 Modified files: xorp/pim/: pim_mre_task.cc pim_mre_task.hh Log message: * Separate the PimMre entries pending deletion into different lists: for (*,*,RP), (*,G), (S,G), (S,G,rpt) entries. * Add XLOG_ASSERT conditions that each PimMre or PimMfc entry that is on one of the delete lists must been processed first by the appropriate pre-deletion task before it is deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 10:38:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 10:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OId3Rw085585 for ; Fri, 24 Jan 2003 10:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OId360002316 for ; Fri, 24 Jan 2003 10:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08023; Fri, 24 Jan 2003 10:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08014 for ; Fri, 24 Jan 2003 10:38:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OIcv60002314 for ; Fri, 24 Jan 2003 10:38:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OIcvNU016198 for ; Fri, 24 Jan 2003 10:38:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OIcvEH016197; Fri, 24 Jan 2003 10:38:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301241838.h0OIcvEH016197@xorpc.icir.org> Date: Fri, 24 Jan 2003 10:38:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ filter-error.awk Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/24 10:38:57 Modified files: other/tinderbox/scripts/: filter-error.awk Log message: o Catch errors with Makefile's and their includes, should fix empty messages from last night caused by a corrupt dependency file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 10:52:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 10:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OIr3Rw086644 for ; Fri, 24 Jan 2003 10:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OIr260002435 for ; Fri, 24 Jan 2003 10:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08387; Fri, 24 Jan 2003 10:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA08359 for ; Fri, 24 Jan 2003 10:52:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OIqQ60002426 for ; Fri, 24 Jan 2003 10:52:26 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OIqPNU016360 for ; Fri, 24 Jan 2003 10:52:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OIqPHV016359; Fri, 24 Jan 2003 10:52:25 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301241852.h0OIqPHV016359@xorpc.icir.org> Date: Fri, 24 Jan 2003 10:52:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_reader.cc route_table_reader.hh route_table_ribin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/24 10:52:25 Modified files: xorp/bgp/: route_table_reader.cc route_table_reader.hh route_table_ribin.hh Log message: Route table reader extensions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 11:50:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 11:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OJp3Rw091074 for ; Fri, 24 Jan 2003 11:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OJp260003017 for ; Fri, 24 Jan 2003 11:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09969; Fri, 24 Jan 2003 11:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09934 for ; Fri, 24 Jan 2003 11:50:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OJo360002995 for ; Fri, 24 Jan 2003 11:50:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OJo3NU017024 for ; Fri, 24 Jan 2003 11:50:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OJo3pg017023; Fri, 24 Jan 2003 11:50:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301241950.h0OJo3pg017023@xorpc.icir.org> Date: Fri, 24 Jan 2003 11:50:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre_task.cc pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/24 11:50:03 Modified files: xorp/pim/: pim_mre.cc pim_mre_task.cc pim_mrt_task.cc Log message: Fix the mechanism for deletion of PimMre entries: If an entry is marked for deletion, then schedule a task that will adjust the pointers from other related PimMre entries to that entry. When the task is executed, it will check first whether the entry is still a candidate for removal (e.g., if there was a Join message received right before this task was run). Only if the entry is still a candidate for removal, then pull it out of the multicast routing lookup table, and adjust the pointers to that entry. After all entries scheduled for removal with the same task have been processed and pulled out, then free the memory they are using. Previously, a PimMre routing entry was pulled-out of the lookup table right when the "PimMre delete" task was scheduled, and then the task had only to adjust the pointers to it and to free its memory. However, this created the race condition that there might be already some other tasks (scheduled to run before the "PimMre delete" task) that may be refering to (and modifying) this entry. If the PimMre entry was already pulled-out of the multicast routing lookup table, then those tasks will be modifying "half-dead" PimMre entry, and there will be some loss of information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 11:50:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 11:51:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OJp4Rw091082 for ; Fri, 24 Jan 2003 11:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OJp460003021 for ; Fri, 24 Jan 2003 11:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09981; Fri, 24 Jan 2003 11:51:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09943 for ; Fri, 24 Jan 2003 11:50:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OJoC60003014 for ; Fri, 24 Jan 2003 11:50:12 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OJoBNU017042 for ; Fri, 24 Jan 2003 11:50:11 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OJoB2T017041; Fri, 24 Jan 2003 11:50:11 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301241950.h0OJoB2T017041@xorpc.icir.org> Date: Fri, 24 Jan 2003 11:50:11 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_main.cc main.cc main.hh notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc peer.hh peer_list.cc update_packet.cc xorp/bgp/harness/ peer.cc test_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/24 11:50:11 Modified files: xorp/bgp/: dummy_main.cc main.cc main.hh notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc peer.hh peer_list.cc update_packet.cc xorp/bgp/harness/: peer.cc test_peer.hh Log message: restructure the BGP state machine _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 12:08:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 12:09:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OK96Rw092442 for ; Fri, 24 Jan 2003 12:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OK9660003176 for ; Fri, 24 Jan 2003 12:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10622; Fri, 24 Jan 2003 12:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10602 for ; Fri, 24 Jan 2003 12:08:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OK8Q60003164 for ; Fri, 24 Jan 2003 12:08:26 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OK8QOM000599 for ; Fri, 24 Jan 2003 12:08:26 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OK8Q6c000598; Fri, 24 Jan 2003 12:08:26 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301242008.h0OK8Q6c000598@xorpc.icir.org> Date: Fri, 24 Jan 2003 12:08:26 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/24 12:08:26 Modified files: xorp/bgp/: peer.cc xorp/bgp/harness/: peer.cc Log message: bring in two minor fixes from yesterday _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:47 2005 Subject: No subject Fri Jan 24 14:14:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 14:15:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0OMF9Rw002170 for ; Fri, 24 Jan 2003 14:15:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OMF860004177 for ; Fri, 24 Jan 2003 14:15:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13533; Fri, 24 Jan 2003 14:15:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13498 for ; Fri, 24 Jan 2003 14:14:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0OMEj60004149 for ; Fri, 24 Jan 2003 14:14:45 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0OMEjOM017371 for ; Fri, 24 Jan 2003 14:14:45 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0OMEjI5017370; Fri, 24 Jan 2003 14:14:45 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301242214.h0OMEjI5017370@xorpc.icir.org> Date: Fri, 24 Jan 2003 14:14:45 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ local_data.cc open_packet.cc parameter.cc parameter.hh path_attribute.cc path_attribute.hh peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/24 14:14:45 Modified files: xorp/bgp/: local_data.cc open_packet.cc parameter.cc parameter.hh path_attribute.cc path_attribute.hh peer_data.cc Log message: minor cleanups in preparation of further simplification of PathAttribute class _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 15:13:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 15:14:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0ONE6Rw012348 for ; Fri, 24 Jan 2003 15:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ONE660004713 for ; Fri, 24 Jan 2003 15:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15127; Fri, 24 Jan 2003 15:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15110 for ; Fri, 24 Jan 2003 15:13:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ONDH60004702 for ; Fri, 24 Jan 2003 15:13:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0ONDHOM018277 for ; Fri, 24 Jan 2003 15:13:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0ONDHSJ018276; Fri, 24 Jan 2003 15:13:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301242313.h0ONDHSJ018276@xorpc.icir.org> Date: Fri, 24 Jan 2003 15:13:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ commitinfo loginfo Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/01/24 15:13:17 Modified files: ./: commitinfo loginfo Log message: Add a new line at end of one file, and remove extra empty lines from the end of another file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 15:52:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 15:53:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0ONr8Rw016154 for ; Fri, 24 Jan 2003 15:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ONr860005051 for ; Fri, 24 Jan 2003 15:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16153; Fri, 24 Jan 2003 15:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16134 for ; Fri, 24 Jan 2003 15:52:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0ONqU60005045 for ; Fri, 24 Jan 2003 15:52:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0ONqUOM030327 for ; Fri, 24 Jan 2003 15:52:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0ONqUtP030326; Fri, 24 Jan 2003 15:52:30 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301242352.h0ONqUtP030326@xorpc.icir.org> Date: Fri, 24 Jan 2003 15:52:29 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/24 15:52:29 Modified files: xorp/bgp/: peer.cc Log message: Removed bogus comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 16:44:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 16:45:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P0j7Rw021434 for ; Fri, 24 Jan 2003 16:45:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P0j660005456 for ; Fri, 24 Jan 2003 16:45:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17262; Fri, 24 Jan 2003 16:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17251 for ; Fri, 24 Jan 2003 16:44:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P0if60005438 for ; Fri, 24 Jan 2003 16:44:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P0ieOM035739 for ; Fri, 24 Jan 2003 16:44:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P0ieuJ035738; Fri, 24 Jan 2003 16:44:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301250044.h0P0ieuJ035738@xorpc.icir.org> Date: Fri, 24 Jan 2003 16:44:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO pim_mre.cc pim_mre.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/24 16:44:40 Modified files: xorp/pim/: TODO pim_mre.cc pim_mre.hh Log message: * Remove some old TODO items * Remove some obsolete #if 0 code _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 17:49:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 17:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P1o3ws002262 for ; Fri, 24 Jan 2003 17:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1o260005951 for ; Fri, 24 Jan 2003 17:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18585; Fri, 24 Jan 2003 17:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18570 for ; Fri, 24 Jan 2003 17:49:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1ni60005946 for ; Fri, 24 Jan 2003 17:49:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P1ni8a000565 for ; Fri, 24 Jan 2003 17:49:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P1niGo000564; Fri, 24 Jan 2003 17:49:44 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301250149.h0P1niGo000564@xorpc.icir.org> Date: Fri, 24 Jan 2003 17:49:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/24 17:49:44 Modified files: xorp/libxorp/: trie.hh Log message: re-commit minor change after power glitch _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 17:25:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 17:54:54 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P1ssws002903 for ; Fri, 24 Jan 2003 17:54:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1Q360005788 for ; Fri, 24 Jan 2003 17:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17957; Fri, 24 Jan 2003 17:26:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17950 for ; Fri, 24 Jan 2003 17:25:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1Px60005786 for ; Fri, 24 Jan 2003 17:25:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P1Px8a000291 for ; Fri, 24 Jan 2003 17:25:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P1Px5w000290; Fri, 24 Jan 2003 17:25:59 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301250125.h0P1Px5w000290@xorpc.icir.org> Date: Fri, 24 Jan 2003 17:25:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/24 17:25:59 Modified files: xorp/libxorp/: ref_trie.hh Log message: Make RefTrieIterator::key() a const method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 17:11:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 17:54:54 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P1sswu002903 for ; Fri, 24 Jan 2003 17:54:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1C360005667 for ; Fri, 24 Jan 2003 17:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17737; Fri, 24 Jan 2003 17:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17722 for ; Fri, 24 Jan 2003 17:11:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P1BN60005662 for ; Fri, 24 Jan 2003 17:11:23 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P1BMOM037350 for ; Fri, 24 Jan 2003 17:11:22 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P1BMaU037349; Fri, 24 Jan 2003 17:11:22 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301250111.h0P1BMaU037349@xorpc.icir.org> Date: Fri, 24 Jan 2003 17:11:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/24 17:11:22 Modified files: xorp/libxorp/: trie.hh Log message: Make TrieIterator::key() a const method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 18:06:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 18:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P273ws003990 for ; Fri, 24 Jan 2003 18:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P27260006081 for ; Fri, 24 Jan 2003 18:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA18919; Fri, 24 Jan 2003 18:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA18912 for ; Fri, 24 Jan 2003 18:06:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P26r60006079 for ; Fri, 24 Jan 2003 18:06:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P26r8a005048 for ; Fri, 24 Jan 2003 18:06:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P26r1u005047; Fri, 24 Jan 2003 18:06:53 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301250206.h0P26r1u005047@xorpc.icir.org> Date: Fri, 24 Jan 2003 18:06:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: atanu@xorpc.icir.org. 03/01/24 18:06:53 Modified files: xorp/bgp/tools/: print_peer.cc Log message: If an interval isn't specified do something. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 18:10:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 18:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P2B3ws004471 for ; Fri, 24 Jan 2003 18:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P2B360006118 for ; Fri, 24 Jan 2003 18:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA19028; Fri, 24 Jan 2003 18:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA18978 for ; Fri, 24 Jan 2003 18:10:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P2A860006114 for ; Fri, 24 Jan 2003 18:10:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P2A88a005114 for ; Fri, 24 Jan 2003 18:10:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P2A80H005113; Fri, 24 Jan 2003 18:10:08 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301250210.h0P2A80H005113@xorpc.icir.org> Date: Fri, 24 Jan 2003 18:10:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in peer_handler.cc peer_handler.hh plumbing.cc plumbing.hh route_table_reader.cc route_table_reader.hh route_table_ribin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/24 18:10:08 Modified files: xorp/bgp/: Makefile.am Makefile.in peer_handler.cc peer_handler.hh plumbing.cc plumbing.hh route_table_reader.cc route_table_reader.hh route_table_ribin.hh Log message: Link the route table reader for compilation. Add hooks to plumbing to call it. Fix compilation errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:48 2005 Subject: No subject Fri Jan 24 22:43:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Jan 2003 22:46:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P6kKws026174 for ; Fri, 24 Jan 2003 22:46:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P6kK60007783 for ; Fri, 24 Jan 2003 22:46:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA22415; Fri, 24 Jan 2003 22:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA22404 for ; Fri, 24 Jan 2003 22:43:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P6hc60007745 for ; Fri, 24 Jan 2003 22:43:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P6hc8a022778 for ; Fri, 24 Jan 2003 22:43:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P6hcUp022777; Fri, 24 Jan 2003 22:43:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301250643.h0P6hcUp022777@xorpc.icir.org> Date: Fri, 24 Jan 2003 22:43:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ Makefile.rules Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/01/24 22:43:38 Modified files: xorp/cli/libtecla/: Makefile.rules Log message: Use ranlib over the generated libtecla library _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 0:34:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 00:35:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0P8ZQws035711 for ; Sat, 25 Jan 2003 00:35:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P8ZQ60008506 for ; Sat, 25 Jan 2003 00:35:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA24073; Sat, 25 Jan 2003 00:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA24065 for ; Sat, 25 Jan 2003 00:34:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0P8YJ60008482 for ; Sat, 25 Jan 2003 00:34:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0P8YI8a029593 for ; Sat, 25 Jan 2003 00:34:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0P8YIjL029592; Sat, 25 Jan 2003 00:34:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301250834.h0P8YIjL029592@xorpc.icir.org> Date: Sat, 25 Jan 2003 0:34:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/25 00:34:18 Modified files: xorp/bgp/: Makefile.am Makefile.in Log message: Remove extra whitespaces after file names. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 9:20:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 09:21:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0PHL7ws079321 for ; Sat, 25 Jan 2003 09:21:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0PHL760016495 for ; Sat, 25 Jan 2003 09:21:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA01395; Sat, 25 Jan 2003 09:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA01382 for ; Sat, 25 Jan 2003 09:20:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0PHKQ60016489 for ; Sat, 25 Jan 2003 09:20:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0PHKQ8a076720 for ; Sat, 25 Jan 2003 09:20:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0PHKQT8076719; Sat, 25 Jan 2003 09:20:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301251720.h0PHKQT8076719@xorpc.icir.org> Date: Sat, 25 Jan 2003 9:20:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ remote_xorp_copy.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/25 09:20:26 Modified files: other/tinderbox/scripts/: remote_xorp_copy.sh Log message: Uncluster deletes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 17:22:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 17:23:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1N8ws018462 for ; Sat, 25 Jan 2003 17:23:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1N760020058 for ; Sat, 25 Jan 2003 17:23:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06603; Sat, 25 Jan 2003 17:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06594 for ; Sat, 25 Jan 2003 17:22:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1Mc60020049 for ; Sat, 25 Jan 2003 17:22:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1Mc8a028548 for ; Sat, 25 Jan 2003 17:22:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0Q1McFu028547; Sat, 25 Jan 2003 17:22:38 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301260122.h0Q1McFu028547@xorpc.icir.org> Date: Sat, 25 Jan 2003 17:22:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh main.cc main.hh path_attribute_list.cc path_attribute_list.hh xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/25 17:22:37 Modified files: xorp/bgp/: aspath.cc aspath.hh main.cc main.hh path_attribute_list.cc path_attribute_list.hh xrl_target.cc xrl_target.hh Log message: Routing table reader is now more or less complete. Not yet tested though. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 17:25:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 17:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1Q6ws018694 for ; Sat, 25 Jan 2003 17:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1Q660020104 for ; Sat, 25 Jan 2003 17:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06633; Sat, 25 Jan 2003 17:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA06625 for ; Sat, 25 Jan 2003 17:25:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1PT60020098 for ; Sat, 25 Jan 2003 17:25:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0Q1PT8a029813 for ; Sat, 25 Jan 2003 17:25:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0Q1PTno029812; Sat, 25 Jan 2003 17:25:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301260125.h0Q1PTno029812@xorpc.icir.org> Date: Sat, 25 Jan 2003 17:25:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/01/25 17:25:29 Modified files: xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: XRL extensions for BGP routing table reader _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 19:13:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 19:14:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0Q3E7ws026801 for ; Sat, 25 Jan 2003 19:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q3E660020954 for ; Sat, 25 Jan 2003 19:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA07849; Sat, 25 Jan 2003 19:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA07837 for ; Sat, 25 Jan 2003 19:13:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q3Dp60020950 for ; Sat, 25 Jan 2003 19:13:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0Q3Dp8a041786 for ; Sat, 25 Jan 2003 19:13:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0Q3Dpij041785; Sat, 25 Jan 2003 19:13:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301260313.h0Q3Dpij041785@xorpc.icir.org> Date: Sat, 25 Jan 2003 19:13:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/01/25 19:13:51 Modified files: ./: acconfig.h config.h.in configure configure.in Log message: Add autoconf configuration to define HOST_OS_MACOSX for MacOS X _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 20:06:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 20:07:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0Q477ws030802 for ; Sat, 25 Jan 2003 20:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q47760021373 for ; Sat, 25 Jan 2003 20:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08343; Sat, 25 Jan 2003 20:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA08329 for ; Sat, 25 Jan 2003 20:06:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q46P60021367 for ; Sat, 25 Jan 2003 20:06:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0Q46P8a042381 for ; Sat, 25 Jan 2003 20:06:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0Q46PLb042380; Sat, 25 Jan 2003 20:06:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301260406.h0Q46PLb042380@xorpc.icir.org> Date: Sat, 25 Jan 2003 20:06:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh local_data.cc notification_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc path_attribute.cc peer.cc rib_ipc_handler.cc ...route_table_fanout.cc ...socket.cc ...update_packet.cc xorp/bgp/harness/ command.cc coord.cc peer.cc test_peer.cc xorp/cli/ cli_command.cc cli_node_internal_commands.cc cli_node_net.cc test_cli.cc xorp/fea/ rawsock4.cc xrl_rawsock4.cc xorp/libxipc/ finder_client.cc finder_ipc.cc finder_msg.cc finder_server.cc finder_transport.cc test_xrl_atom.cc xrl_atom.cc xrl_parser.cc xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_sudp.cc xorp/libxorp/ asyncio.cc exceptions.hh ipnet.hh mac.cc selector.cc test_ipnet.cc test_timer.cc xlog.c xorp/mfea/ mfea_node.cc mfea_unix_comm.cc mfea_unix_if_getifaddrs.cc mfea_unix_mrib_rawsock.cc xrl_m! fea_node.cc! xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_node_cli.cc xorp/mrt/ test_mrib.cc test_mrt.cc xorp/pim/ pim_bsr.cc pim_mre_track_state.cc pim_node.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_register_stop.cc pim_vif.cc xorp/rib/ fea_client.cc xorp/rtrmgr/ conf_tree_node.cc randomness.cc template_commands.cc xorp_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/01/25 20:06:25 Modified files: xorp/bgp/: aspath.cc aspath.hh local_data.cc notification_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc path_attribute.cc peer.cc rib_ipc_handler.cc route_table_fanout.cc socket.cc update_packet.cc xorp/bgp/harness/: command.cc coord.cc peer.cc test_peer.cc xorp/cli/: cli_command.cc cli_node_internal_commands.cc cli_node_net.cc test_cli.cc xorp/fea/: rawsock4.cc xrl_rawsock4.cc xorp/libxipc/: finder_client.cc finder_ipc.cc finder_msg.cc finder_server.cc finder_transport.cc test_xrl_atom.cc xrl_atom.cc xrl_parser.cc xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_sudp.cc xorp/libxorp/: asyncio.cc exceptions.hh ipnet.hh mac.cc selector.cc test_ipnet.cc test_timer.cc xlog.c xorp/mfea/: mfea_node.cc mfea_unix_comm.cc mfea_unix_if_getifaddrs.cc mfea_unix_mrib_rawsock.cc xrl_mfea_node.cc xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_node_cli.cc xorp/mrt/: test_mrib.cc test_mrt.cc xorp/pim/: pim_bsr.cc pim_mre_track_state.cc pim_node.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_register_stop.cc pim_vif.cc xorp/rib/: fea_client.cc xorp/rtrmgr/: conf_tree_node.cc randomness.cc template_commands.cc xorp_client.cc Log message: Code changes to make it (almost) compile on MacOS X version 10.2.3 with GCC version "gcc (GCC) 3.1 20020420 (prerelease)". The changes are: * Most of the changes are to fix the arguments to printf(3) and friends when printing size_t argument: OLD: printf("%d\n", my_list.size()); NEW: printf("%u\n", (uint32_t)my_list.size()); * Explicitly cast timeval.tv_sec and timeval.tv_usec to (unsigned long) when used inside printf(3) and friends. * Explicit cast when assigning to msghdr.msg_name: OLD: mh.msg_name = &foo; NEW: mh.msg_name = (caddr_t)&foo; On FreeBSD and Linux, msghdr.msg_name is of type (void *), but on OS X it is of type (char *), therefore the need for explicit cast. * Change "template " to "template ", and propagate the change inside the template, because the compiler didn't like underscore in front of the class name. * De-constify the argument to ether_ntoa(3): OLD: ether_ntoa(&ea); NEW: ether_ntoa(const_cast(&ea)); The reason is because OS X has a broken ether_ntoa() declaration in , even though the manual page shows the argument is const. * Use "#ifdef SIOCGETSGCNT_IN6" to isolate code that uses ioctl(SIOCGETSGCNT_IN6). This is IPv6 multicast-related, and even though it exists in KAME, somehow it is missing from OSX, even though it appears that OSX is using KAME's IPv6 code. Currently, if ioctl(SIOCGETSGCNT_IN6) is missing, the multicast code will abort at run time. In the future, the solution should be to detect this in compilation time, and to completely disable IPv6 compilation of the multicast code. * Use #ifndef SIOCGETMIFCNT_IN6 to isolate code that uses ioctl(#ifndef SIOCGETMIFCNT_IN6). See the above comment about SIOCGETSGCNT_IN6 for further details. * Use #ifdef HOST_OS_MACOSX to isolate code that uses "struct in6_ifreq". See the above comment about SIOCGETSGCNT_IN6 for further details. The only place where the compilation fails is in bgp/harness/command.cc in assigments like: _commands["reset"] = &Command::reset; However, I think this is a problem with the compiler, hence I didn't try to modify the code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sat Jan 25 22:15:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Jan 2003 22:16:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0Q6G7ws050420 for ; Sat, 25 Jan 2003 22:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q6G760022223 for ; Sat, 25 Jan 2003 22:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09617; Sat, 25 Jan 2003 22:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA09609 for ; Sat, 25 Jan 2003 22:15:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0Q6Ft60022217 for ; Sat, 25 Jan 2003 22:15:55 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0Q6Ft8a079199 for ; Sat, 25 Jan 2003 22:15:55 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0Q6FtWU079198; Sat, 25 Jan 2003 22:15:55 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301260615.h0Q6FtWU079198@xorpc.icir.org> Date: Sat, 25 Jan 2003 22:15:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc main.hh peer.cc peer_data.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/01/25 22:15:55 Modified files: xorp/bgp/: main.cc main.hh peer.cc peer_data.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Dynamically add next hop re-write filter. This is a temporary hack which can be removed once we have programmable filters. Required for integration tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sun Jan 26 8:57:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Jan 2003 08:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0QGw3ws026761 for ; Sun, 26 Jan 2003 08:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QGw260028008 for ; Sun, 26 Jan 2003 08:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA18421; Sun, 26 Jan 2003 08:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA18414 for ; Sun, 26 Jan 2003 08:57:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QGvj60028006 for ; Sun, 26 Jan 2003 08:57:46 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0QGvj8a056067 for ; Sun, 26 Jan 2003 08:57:45 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0QGvjPI056066; Sun, 26 Jan 2003 08:57:45 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301261657.h0QGvjPI056066@xorpc.icir.org> Date: Sun, 26 Jan 2003 8:57:45 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/26 08:57:45 Modified files: xorp/bgp/: bgp_trie.cc Log message: remove empty lines at the end of the file _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sun Jan 26 9:03:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Jan 2003 09:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0QH43ws027468 for ; Sun, 26 Jan 2003 09:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QH4260028051 for ; Sun, 26 Jan 2003 09:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA18494; Sun, 26 Jan 2003 09:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA18480 for ; Sun, 26 Jan 2003 09:03:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QH3J60028046 for ; Sun, 26 Jan 2003 09:03:19 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0QH3J8a056861 for ; Sun, 26 Jan 2003 09:03:19 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0QH3J7r056860; Sun, 26 Jan 2003 09:03:19 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301261703.h0QH3J7r056860@xorpc.icir.org> Date: Sun, 26 Jan 2003 9:03:19 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh aspath_test.cc packet_test.cc peer.cc route_table_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/26 09:03:19 Modified files: xorp/bgp/: aspath.cc aspath.hh aspath_test.cc packet_test.cc peer.cc route_table_decision.cc Log message: Rename get_foo() methods to foo() consistently with the developer notes. Add some comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:49 2005 Subject: No subject Sun Jan 26 9:22:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Jan 2003 09:22:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0QHM4ws029602 for ; Sun, 26 Jan 2003 09:22:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QHM460028170 for ; Sun, 26 Jan 2003 09:22:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA18719; Sun, 26 Jan 2003 09:22:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA18712 for ; Sun, 26 Jan 2003 09:22:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QHM060028168 for ; Sun, 26 Jan 2003 09:22:00 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0QHM08a060928 for ; Sun, 26 Jan 2003 09:22:00 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0QHM0Ue060927; Sun, 26 Jan 2003 09:22:00 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301261722.h0QHM0Ue060927@xorpc.icir.org> Date: Sun, 26 Jan 2003 9:22:00 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute_list.cc path_attribute_list.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/26 09:22:00 Modified files: xorp/bgp/: path_attribute_list.cc path_attribute_list.hh Log message: typedef iterator and const_iterator for ease of use. Call assert_rehash on both operands in operator= and operator< Update the mandatory attribute pointers in _replace_*() Add a few comments here and there _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Sun Jan 26 9:55:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Jan 2003 09:56:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0QHu3ws033590 for ; Sun, 26 Jan 2003 09:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QHu360028409 for ; Sun, 26 Jan 2003 09:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA19103; Sun, 26 Jan 2003 09:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA19094 for ; Sun, 26 Jan 2003 09:55:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QHtn60028407 for ; Sun, 26 Jan 2003 09:55:49 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0QHtn8a073772 for ; Sun, 26 Jan 2003 09:55:49 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0QHtnDe073762; Sun, 26 Jan 2003 09:55:49 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301261755.h0QHtnDe073762@xorpc.icir.org> Date: Sun, 26 Jan 2003 9:55:49 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in aspath.hh packet.hh path_attribute.hh xorp/bgp/ exceptions.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/26 09:55:49 Modified files: xorp/bgp/: Makefile.am Makefile.in aspath.hh packet.hh path_attribute.hh Added files: xorp/bgp/: exceptions.hh Log message: Take CorruptMessage exception out from packet.hh and put it into an exceptions.hh file meant to store bgp-specific exceptions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Sun Jan 26 12:51:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Jan 2003 12:52:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0QKq8ws054258 for ; Sun, 26 Jan 2003 12:52:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QKq860029616 for ; Sun, 26 Jan 2003 12:52:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21294; Sun, 26 Jan 2003 12:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21280 for ; Sun, 26 Jan 2003 12:51:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0QKpH60029612 for ; Sun, 26 Jan 2003 12:51:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0QKpH8a085422 for ; Sun, 26 Jan 2003 12:51:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0QKpHIk085421; Sun, 26 Jan 2003 12:51:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301262051.h0QKpHIk085421@xorpc.icir.org> Date: Sun, 26 Jan 2003 12:51:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ exceptions.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/26 12:51:17 Modified files: xorp/bgp/: exceptions.hh Log message: Comment-out text after #endif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 0:05:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 00:06:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0R863ws036336 for ; Mon, 27 Jan 2003 00:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R86360034291 for ; Mon, 27 Jan 2003 00:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA29808; Mon, 27 Jan 2003 00:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA29797 for ; Mon, 27 Jan 2003 00:05:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R85E60034287 for ; Mon, 27 Jan 2003 00:05:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0R85E8a067734 for ; Mon, 27 Jan 2003 00:05:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0R85E4A067733; Mon, 27 Jan 2003 00:05:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301270805.h0R85E4A067733@xorpc.icir.org> Date: Mon, 27 Jan 2003 0:05:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/27 00:05:14 Modified files: xorp/pim/: pim_mre_rpf.cc Log message: Bugfix inside PimMre::recompute_rpfp_nbr_sg_rpt_sg_changed() : Fix the method name that should be called with the (S,G,rpt) entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 0:37:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 00:38:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0R8c4ws040111 for ; Mon, 27 Jan 2003 00:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R8c460034497 for ; Mon, 27 Jan 2003 00:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA00309; Mon, 27 Jan 2003 00:38:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA00300 for ; Mon, 27 Jan 2003 00:37:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R8bW60034495 for ; Mon, 27 Jan 2003 00:37:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0R8bW8a073921 for ; Mon, 27 Jan 2003 00:37:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0R8bWSB073920; Mon, 27 Jan 2003 00:37:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301270837.h0R8bWSB073920@xorpc.icir.org> Date: Mon, 27 Jan 2003 0:37:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ mac.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/01/27 00:37:32 Modified files: xorp/libxorp/: mac.cc Log message: Add a comment to explain why const_cast is used in ether_ntoa() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 1:23:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 01:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0R9O3ws045535 for ; Mon, 27 Jan 2003 01:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9O360034830 for ; Mon, 27 Jan 2003 01:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01036; Mon, 27 Jan 2003 01:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01026 for ; Mon, 27 Jan 2003 01:23:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9Nq60034827 for ; Mon, 27 Jan 2003 01:23:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0R9Nq8a087407 for ; Mon, 27 Jan 2003 01:23:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0R9Nq1m087406; Mon, 27 Jan 2003 01:23:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301270923.h0R9Nq1m087406@xorpc.icir.org> Date: Mon, 27 Jan 2003 1:23:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/27 01:23:52 Modified files: xorp/pim/: pim_mre_assert.cc Log message: In PimMre:::set_i_am_assert_loser_state(), always set the state to AssertLoser and add the INPUT_STATE_ASSERT_STATE_* task even though the previous state might be same. The reason is because we want the Assert task always scheduled in case the assert winner has changed (e.g., this may change the corresponding RPF' neighbor). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 1:28:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 01:29:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0R9T4ws046141 for ; Mon, 27 Jan 2003 01:29:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9T460034864 for ; Mon, 27 Jan 2003 01:29:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01110; Mon, 27 Jan 2003 01:29:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01096 for ; Mon, 27 Jan 2003 01:28:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9SS60034862 for ; Mon, 27 Jan 2003 01:28:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0R9SS8a088724 for ; Mon, 27 Jan 2003 01:28:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0R9SS7K088723; Mon, 27 Jan 2003 01:28:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301270928.h0R9SS7K088723@xorpc.icir.org> Date: Mon, 27 Jan 2003 1:28:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_8_sg_rpt_periodic_messages.eps pim_test_4_8_sg_rpt_periodic_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/01/27 01:28:28 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_8_sg_rpt_periodic_messages.eps pim_test_4_8_sg_rpt_periodic_messages.fig Log message: Add Section 4.8 "(S,G,rpt) Periodic Messages" Now the code passes all described tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 1:35:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 01:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0R9a2ws046968 for ; Mon, 27 Jan 2003 01:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9a260034931 for ; Mon, 27 Jan 2003 01:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01244; Mon, 27 Jan 2003 01:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA01234 for ; Mon, 27 Jan 2003 01:35:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0R9ZN60034927 for ; Mon, 27 Jan 2003 01:35:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0R9ZN8a090247 for ; Mon, 27 Jan 2003 01:35:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0R9ZNbo090246; Mon, 27 Jan 2003 01:35:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301270935.h0R9ZNbo090246@xorpc.icir.org> Date: Mon, 27 Jan 2003 1:35:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/01/27 01:35:23 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Add an extra sentence in describing the results in Section 4.8, Part C. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 10:04:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 10:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0RI53ws003505 for ; Mon, 27 Jan 2003 10:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RI5360040535 for ; Mon, 27 Jan 2003 10:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA10485; Mon, 27 Jan 2003 10:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA10475 for ; Mon, 27 Jan 2003 10:04:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RI4r60040528 for ; Mon, 27 Jan 2003 10:04:53 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0RI4r8a064709 for ; Mon, 27 Jan 2003 10:04:53 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0RI4r5h064707; Mon, 27 Jan 2003 10:04:53 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301271804.h0RI4r5h064707@xorpc.icir.org> Date: Mon, 27 Jan 2003 10:04:53 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh path_attribute_list.cc peer.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/27 10:04:53 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh path_attribute_list.cc peer.cc update_packet.cc Log message: change get_foo() into foo() methods, rename variables to avoid name clashes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 11:16:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 11:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0RJH3ws012065 for ; Mon, 27 Jan 2003 11:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RJH260041320 for ; Mon, 27 Jan 2003 11:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12900; Mon, 27 Jan 2003 11:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12842 for ; Mon, 27 Jan 2003 11:16:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RJGD60041313 for ; Mon, 27 Jan 2003 11:16:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0RJGD8a065704 for ; Mon, 27 Jan 2003 11:16:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0RJGDXb065703; Mon, 27 Jan 2003 11:16:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301271916.h0RJGDXb065703@xorpc.icir.org> Date: Mon, 27 Jan 2003 11:16:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/27 11:16:13 Modified files: xorp/pim/: TODO Log message: Add a TODO entry whether to delete PimMfc if the iif changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:50 2005 Subject: No subject Mon Jan 27 11:21:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 11:22:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0RJM3ws012674 for ; Mon, 27 Jan 2003 11:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RJM360041369 for ; Mon, 27 Jan 2003 11:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13016; Mon, 27 Jan 2003 11:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13002 for ; Mon, 27 Jan 2003 11:21:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RJLP60041363 for ; Mon, 27 Jan 2003 11:21:25 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0RJLO8a065798 for ; Mon, 27 Jan 2003 11:21:24 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0RJLOeu065797; Mon, 27 Jan 2003 11:21:24 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301271921.h0RJLOeu065797@xorpc.icir.org> Date: Mon, 27 Jan 2003 11:21:24 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/27 11:21:24 Modified files: xorp/bgp/: aspath.cc aspath.hh Log message: typedef iterator and const_iterator to manipulate AsPath's _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 14:47:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 14:48:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0RMmGws042581 for ; Mon, 27 Jan 2003 14:48:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RMmF60043413 for ; Mon, 27 Jan 2003 14:48:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA18896; Mon, 27 Jan 2003 14:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA18880 for ; Mon, 27 Jan 2003 14:47:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0RMld60043403 for ; Mon, 27 Jan 2003 14:47:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0RMld8a098062 for ; Mon, 27 Jan 2003 14:47:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0RMldqp098061; Mon, 27 Jan 2003 14:47:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301272247.h0RMldqp098061@xorpc.icir.org> Date: Mon, 27 Jan 2003 14:47:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/27 14:47:39 Modified files: xorp/pim/: pim_mre.cc Log message: Fix PimMre::is_prune_desired_sg_rpt() such that it computes the result properly even if there is no (*,G) routing state (i.e, in case when there is only (*,*,RP) routing state). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 16:35:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 16:36:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S0a7ws056481 for ; Mon, 27 Jan 2003 16:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0a760044397 for ; Mon, 27 Jan 2003 16:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21656; Mon, 27 Jan 2003 16:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21644 for ; Mon, 27 Jan 2003 16:35:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0ZS60044389 for ; Mon, 27 Jan 2003 16:35:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S0ZS8a004499 for ; Mon, 27 Jan 2003 16:35:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S0ZSme004497; Mon, 27 Jan 2003 16:35:28 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301280035.h0S0ZSme004497@xorpc.icir.org> Date: Mon, 27 Jan 2003 16:35:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/27 16:35:26 Modified files: xorp/bgp/: main.cc peer.cc Log message: The next hop rewrite code now changes the next hop attribute on the update packet rather than on a copy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 16:37:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 16:38:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S0c7ws058800 for ; Mon, 27 Jan 2003 16:38:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0c660044414 for ; Mon, 27 Jan 2003 16:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21716; Mon, 27 Jan 2003 16:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21709 for ; Mon, 27 Jan 2003 16:37:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0bw60044410 for ; Mon, 27 Jan 2003 16:37:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S0bw8a004978 for ; Mon, 27 Jan 2003 16:37:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S0bwrD004977; Mon, 27 Jan 2003 16:37:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301280037.h0S0bwrD004977@xorpc.icir.org> Date: Mon, 27 Jan 2003 16:37:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc xorp/fea/ demo_fea_ifmgr_client.cc xorp/libxipc/ xrl_cmd_map.hh xorp/mfea/ xrl_mfea_node.hh xorp/mld6igmp/ xrl_mld6igmp_node.hh xorp/ospfd/xorp/ xrl_target.C xorp/pim/ xrl_pim_node.hh xorp/rib/ xrl_target.cc xorp/rtrmgr/ xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc xorp/xrl/interfaces/ finder.xif finder_xif.cc finder_xif.hh xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client_base.hh mfea_base.hh ...mld6igmp_base.hh ...ospf_base.hh ...pim_base.hh ...rib_base.hh ...ribclient_base.hh ...rtrmgr_base.hh ...test_base.hh ...test_peer_base.hh ...xorpsh_base.hh xorp/xrl/tests/ test_tgt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/01/27 16:37:58 Modified files: xorp/cli/: xrl_cli_node.cc xorp/fea/: demo_fea_ifmgr_client.cc xorp/libxipc/: xrl_cmd_map.hh xorp/mfea/: xrl_mfea_node.hh xorp/mld6igmp/: xrl_mld6igmp_node.hh xorp/ospfd/xorp/: xrl_target.C xorp/pim/: xrl_pim_node.hh xorp/rib/: xrl_target.cc xorp/rtrmgr/: xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc xorp/xrl/interfaces/: finder.xif finder_xif.cc finder_xif.hh xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh pim_base.hh rib_base.hh ribclient_base.hh rtrmgr_base.hh test_base.hh test_peer_base.hh xorpsh_base.hh xorp/xrl/tests/: test_tgt.hh Log message: Fix naming bug in Xrl target generation. The variable _router is an xrl cmd map and add name() method to xrl target base classes. Propagate changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 16:42:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 16:43:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S0h8ws062633 for ; Mon, 27 Jan 2003 16:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0h860044460 for ; Mon, 27 Jan 2003 16:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21863; Mon, 27 Jan 2003 16:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21843 for ; Mon, 27 Jan 2003 16:42:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0gR60044456 for ; Mon, 27 Jan 2003 16:42:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S0gR8a005665 for ; Mon, 27 Jan 2003 16:42:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S0gQJT005661; Mon, 27 Jan 2003 16:42:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301280042.h0S0gQJT005661@xorpc.icir.org> Date: Mon, 27 Jan 2003 16:42:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in finder_messenger.cc finder_messenger.hh finder_ng.cc finder_ng.hh finder_ng_main.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh ...finder_transport.hh ...test_finder_messenger.cc xorp/libxipc/ finder_ng_xrl_target.cc finder_ng_xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/01/27 16:42:26 Modified files: xorp/libxipc/: Makefile.am Makefile.in finder_messenger.cc finder_messenger.hh finder_ng.cc finder_ng.hh finder_ng_main.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh finder_transport.hh test_finder_messenger.cc Added files: xorp/libxipc/: finder_ng_xrl_target.cc finder_ng_xrl_target.hh Log message: Continuing support for Xrl based finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 16:54:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 16:55:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S0t6ws067532 for ; Mon, 27 Jan 2003 16:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0t560044577 for ; Mon, 27 Jan 2003 16:55:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22250; Mon, 27 Jan 2003 16:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22239 for ; Mon, 27 Jan 2003 16:54:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S0se60044568 for ; Mon, 27 Jan 2003 16:54:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S0se8a009935 for ; Mon, 27 Jan 2003 16:54:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S0seXl009934; Mon, 27 Jan 2003 16:54:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301280054.h0S0seXl009934@xorpc.icir.org> Date: Mon, 27 Jan 2003 16:54:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/27 16:54:39 Modified files: xorp/pim/: TODO Log message: Add two implementation-related TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 17:02:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 17:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S142ws068907 for ; Mon, 27 Jan 2003 17:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S14260044679 for ; Mon, 27 Jan 2003 17:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22563; Mon, 27 Jan 2003 17:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22541 for ; Mon, 27 Jan 2003 17:03:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S13060044677 for ; Mon, 27 Jan 2003 17:03:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S1308a011086 for ; Mon, 27 Jan 2003 17:03:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S12w1T011085; Mon, 27 Jan 2003 17:02:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301280102.h0S12w1T011085@xorpc.icir.org> Date: Mon, 27 Jan 2003 17:02:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/01/27 17:02:57 Modified files: xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh Log message: Add new method XrlCliNode::my_xrl_target_name() (for consistency with other XrlFooNode), and use it as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 17:11:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 17:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S1C2ws070142 for ; Mon, 27 Jan 2003 17:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S1C260044774 for ; Mon, 27 Jan 2003 17:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22721; Mon, 27 Jan 2003 17:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22713 for ; Mon, 27 Jan 2003 17:11:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S1Ba60044772 for ; Mon, 27 Jan 2003 17:11:36 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S1Ba8a014781 for ; Mon, 27 Jan 2003 17:11:36 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S1BaDP014780; Mon, 27 Jan 2003 17:11:36 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301280111.h0S1BaDP014780@xorpc.icir.org> Date: Mon, 27 Jan 2003 17:11:36 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/27 17:11:36 Modified files: xorp/bgp/: aspath.cc Log message: make sure we do not do unaligned memory accesses of 16-bit integers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 18:20:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 18:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S2L3ws078701 for ; Mon, 27 Jan 2003 18:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S2L360045332 for ; Mon, 27 Jan 2003 18:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23953; Mon, 27 Jan 2003 18:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23943 for ; Mon, 27 Jan 2003 18:20:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S2KZ60045328 for ; Mon, 27 Jan 2003 18:20:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S2KY8a034618 for ; Mon, 27 Jan 2003 18:20:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S2KYsM034617; Mon, 27 Jan 2003 18:20:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301280220.h0S2KYsM034617@xorpc.icir.org> Date: Mon, 27 Jan 2003 18:20:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ coord.xif datain.xif fea_rawpkt.xif rtrmgr_client.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 03/01/27 18:20:34 Modified files: xorp/xrl/interfaces/: coord.xif datain.xif fea_rawpkt.xif rtrmgr_client.xif Log message: Add newline at end of files (spotted by a warning generated during compilation). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 19:21:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 19:22:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S3M5ws087157 for ; Mon, 27 Jan 2003 19:22:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S3M460045784 for ; Mon, 27 Jan 2003 19:22:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24812; Mon, 27 Jan 2003 19:22:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24789 for ; Mon, 27 Jan 2003 19:21:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S3Lr60045778 for ; Mon, 27 Jan 2003 19:21:53 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S3Lr8a035627 for ; Mon, 27 Jan 2003 19:21:53 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S3Lrp0035626; Mon, 27 Jan 2003 19:21:53 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301280321.h0S3Lrp0035626@xorpc.icir.org> Date: Mon, 27 Jan 2003 19:21:52 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asnum.hh xorp/bgp/ aspath.cc aspath_test.cc local_data.hh main.cc peer_data.cc xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/27 19:21:52 Modified files: xorp/libxorp/: asnum.hh xorp/bgp/: aspath.cc aspath_test.cc local_data.hh main.cc peer_data.cc xorp/bgp/harness/: peer.cc Log message: After reading the draft on 32-bit AS numbers, implement AsNum correctly: there is only one constructor irrespective of the numeric value of the AsNum. As per the spec, the 16-bit as() method will return the IANA-assigned constant AS_TRAN for values > 0xffff, and the 32-bit as32() method will return a 32-bit value in all cases. The draft specifies how to convert AS_TRAN in the correct value -- specifically, an attribute which contains AS_TRAN will always be accompanied by a NEW_AS_PATH attribute (opaque to old speakers) with the full 32-bit values. Because none of our code is able to deal with 32-bit AsNum's, and we will never voluntarily create a 32-bit AsNum, abort() if we try to construct one such object. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 20:00:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 20:01:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S412ws092321 for ; Mon, 27 Jan 2003 20:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S41260046079 for ; Mon, 27 Jan 2003 20:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25296; Mon, 27 Jan 2003 20:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25286 for ; Mon, 27 Jan 2003 20:00:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S40D60046077 for ; Mon, 27 Jan 2003 20:00:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S40D8a035881 for ; Mon, 27 Jan 2003 20:00:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S40Dhh035880; Mon, 27 Jan 2003 20:00:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301280400.h0S40Dhh035880@xorpc.icir.org> Date: Mon, 27 Jan 2003 20:00:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_asyncio.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/01/27 20:00:13 Modified files: xorp/libxorp/: test_asyncio.cc Log message: Change uint8_t msg[MAX_BUFFER_BYTES]; to static uint8_t msg[MAX_BUFFER_BYTES]; The reason is because if msg is allocated on the stack, and if MAX_BUFFER_SIZE (=1M) is larger than the max. allowed stacksize, then the program coredumps. Now "gmake check" in libxorp succeeds on MacOS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:51 2005 Subject: No subject Mon Jan 27 20:17:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Jan 2003 20:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0S4I2ws094468 for ; Mon, 27 Jan 2003 20:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S4I260046203 for ; Mon, 27 Jan 2003 20:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25514; Mon, 27 Jan 2003 20:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25504 for ; Mon, 27 Jan 2003 20:17:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0S4HB60046201 for ; Mon, 27 Jan 2003 20:17:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0S4HB8a036022 for ; Mon, 27 Jan 2003 20:17:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0S4HBdI036021; Mon, 27 Jan 2003 20:17:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301280417.h0S4HBdI036021@xorpc.icir.org> Date: Mon, 27 Jan 2003 20:17:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute_list.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/27 20:17:11 Modified files: xorp/bgp/: path_attribute_list.hh Log message: printf("%d", size_t) -> printf("%u", (uint32_t)size_t) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 10:19:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 10:20:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0SIKAws080535 for ; Tue, 28 Jan 2003 10:20:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SIKA60054232 for ; Tue, 28 Jan 2003 10:20:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA11103; Tue, 28 Jan 2003 10:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA11081 for ; Tue, 28 Jan 2003 10:19:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SIJN60054208 for ; Tue, 28 Jan 2003 10:19:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0SIJN8a061824 for ; Tue, 28 Jan 2003 10:19:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0SIJNSM061823; Tue, 28 Jan 2003 10:19:23 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301281819.h0SIJNSM061823@xorpc.icir.org> Date: Tue, 28 Jan 2003 10:19:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh ...pim_base.hh ...rib_base.hh ...ribclient_base.hh ...rtrmgr_base.hh ...test_base.hh ...test_peer_base.hh ...xorpsh_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/01/28 10:19:23 Modified files: xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh pim_base.hh rib_base.hh ribclient_base.hh rtrmgr_base.hh test_base.hh test_peer_base.hh xorpsh_base.hh Log message: Add version() method to xrl target base classes and generator script. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 11:15:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 11:16:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0SJG2ws084763 for ; Tue, 28 Jan 2003 11:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SJG260054721 for ; Tue, 28 Jan 2003 11:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12365; Tue, 28 Jan 2003 11:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12339 for ; Tue, 28 Jan 2003 11:15:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SJFH60054715 for ; Tue, 28 Jan 2003 11:15:17 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0SJFH8a062406 for ; Tue, 28 Jan 2003 11:15:17 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0SJFHcm062405; Tue, 28 Jan 2003 11:15:17 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301281915.h0SJFHcm062405@xorpc.icir.org> Date: Tue, 28 Jan 2003 11:15:17 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asnum.hh xorp/bgp/ aspath.cc main.cc open_packet.cc packet_coding_test.cc packet_test.cc plumbing_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 11:15:17 Modified files: xorp/libxorp/: asnum.hh xorp/bgp/: aspath.cc main.cc open_packet.cc packet_coding_test.cc packet_test.cc plumbing_test.cc Log message: Make AsNum constructor explicit to catch places where we were using the wrong argument type in function calls. Add methods to construct AsNum from a memory block, and to copy_out() to a memory block, so that we do not have to repeat htons() and memcpy() all over the place (plus, this also avoids that we make assumptions on the alignment of data in memory buffers). It will be probably useful to introduce AsNum(int) constructor (with appropriate checks) given how many times we use this notation when manually constructing packets for test programs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 12:09:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 12:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0SKA7ws092996 for ; Tue, 28 Jan 2003 12:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SKA760055225 for ; Tue, 28 Jan 2003 12:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13834; Tue, 28 Jan 2003 12:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13815 for ; Tue, 28 Jan 2003 12:09:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SK9L60055193 for ; Tue, 28 Jan 2003 12:09:21 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0SK9L8a062884 for ; Tue, 28 Jan 2003 12:09:21 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0SK9Lhj062883; Tue, 28 Jan 2003 12:09:21 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301282009.h0SK9Lhj062883@xorpc.icir.org> Date: Tue, 28 Jan 2003 12:09:21 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc main.cc path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 12:09:21 Modified files: xorp/bgp/: aspath.cc main.cc path_attribute.cc Log message: replace memcpy() with copy_out() and constructor from uint8_t * for AsNum() and IPv4() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 14:06:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 14:07:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0SM77ws002463 for ; Tue, 28 Jan 2003 14:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SM7760056389 for ; Tue, 28 Jan 2003 14:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16925; Tue, 28 Jan 2003 14:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16906 for ; Tue, 28 Jan 2003 14:06:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SM6V60056369 for ; Tue, 28 Jan 2003 14:06:31 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0SM6V8a093208 for ; Tue, 28 Jan 2003 14:06:31 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0SM6UQV093207; Tue, 28 Jan 2003 14:06:30 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301282206.h0SM6UQV093207@xorpc.icir.org> Date: Tue, 28 Jan 2003 14:06:30 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asnum.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 14:06:30 Modified files: xorp/libxorp/: asnum.hh Log message: Allow AsNum(int), with proper range checking. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 14:06:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 14:07:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0SM79ws002471 for ; Tue, 28 Jan 2003 14:07:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SM7860056391 for ; Tue, 28 Jan 2003 14:07:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16936; Tue, 28 Jan 2003 14:07:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16918 for ; Tue, 28 Jan 2003 14:06:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0SM6x60056379 for ; Tue, 28 Jan 2003 14:06:59 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0SM6x8a093238 for ; Tue, 28 Jan 2003 14:06:59 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0SM6xDS093237; Tue, 28 Jan 2003 14:06:59 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301282206.h0SM6xDS093237@xorpc.icir.org> Date: Tue, 28 Jan 2003 14:06:59 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath_test.cc open_packet.cc packet_coding_test.cc packet_test.cc plumbing.cc plumbing_test.cc test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc ...update_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 14:06:59 Modified files: xorp/bgp/: aspath_test.cc open_packet.cc packet_coding_test.cc packet_test.cc plumbing.cc plumbing_test.cc test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc update_test.cc Log message: Remove now-useless casts for AsNum(int) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 16:12:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 16:13:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T0D7ws016771 for ; Tue, 28 Jan 2003 16:13:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0D760057796 for ; Tue, 28 Jan 2003 16:13:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20364; Tue, 28 Jan 2003 16:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20355 for ; Tue, 28 Jan 2003 16:12:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0CZ60057792 for ; Tue, 28 Jan 2003 16:12:35 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T0CZ8a094365 for ; Tue, 28 Jan 2003 16:12:35 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T0CZ7l094364; Tue, 28 Jan 2003 16:12:35 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290012.h0T0CZ7l094364@xorpc.icir.org> Date: Tue, 28 Jan 2003 16:12:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 16:12:35 Modified files: xorp/bgp/harness/: peer.cc Log message: Incorrect error message. update -> open. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 16:38:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 16:39:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T0d6ws020851 for ; Tue, 28 Jan 2003 16:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0d660058026 for ; Tue, 28 Jan 2003 16:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20928; Tue, 28 Jan 2003 16:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20920 for ; Tue, 28 Jan 2003 16:38:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0cw60058021 for ; Tue, 28 Jan 2003 16:38:58 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T0cw8a000706 for ; Tue, 28 Jan 2003 16:38:58 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T0cwxP000705; Tue, 28 Jan 2003 16:38:58 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301290038.h0T0cwxP000705@xorpc.icir.org> Date: Tue, 28 Jan 2003 16:38:58 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh aspath_test.cc main.cc packet_coding_test.cc path_attribute.cc route_table_filter.cc test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 16:38:58 Modified files: xorp/bgp/: aspath.cc aspath.hh aspath_test.cc main.cc packet_coding_test.cc path_attribute.cc route_table_filter.cc test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: typedef iterators to navigate in AsNum lists Rename add_AS_in_sequence() to prepend_as() and update programs to reflect the change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 16:43:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 16:44:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T0i6ws021298 for ; Tue, 28 Jan 2003 16:44:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0i660058072 for ; Tue, 28 Jan 2003 16:44:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21083; Tue, 28 Jan 2003 16:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21062 for ; Tue, 28 Jan 2003 16:43:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T0hE60058067 for ; Tue, 28 Jan 2003 16:43:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T0hE8a001258 for ; Tue, 28 Jan 2003 16:43:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T0hE0D001255; Tue, 28 Jan 2003 16:43:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301290043.h0T0hE0D001255@xorpc.icir.org> Date: Tue, 28 Jan 2003 16:43:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/01/28 16:43:14 Modified files: xorp/libxorp/: ref_trie.hh Log message: Fix spurious warning. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 17:05:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 17:06:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T163ws024423 for ; Tue, 28 Jan 2003 17:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T16360058278 for ; Tue, 28 Jan 2003 17:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21638; Tue, 28 Jan 2003 17:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21623 for ; Tue, 28 Jan 2003 17:05:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T15W60058274 for ; Tue, 28 Jan 2003 17:05:32 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T15W8a007611 for ; Tue, 28 Jan 2003 17:05:32 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T15WdK007610; Tue, 28 Jan 2003 17:05:32 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301290105.h0T15WdK007610@xorpc.icir.org> Date: Tue, 28 Jan 2003 17:05:32 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh update_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 17:05:32 Modified files: xorp/bgp/: aspath.cc aspath.hh update_test.cc Log message: Change the interface to the encode() methods for AsSegment and AsPath so that the caller can provide an optional buffer. Introduce a wire_length() method to return the required buffer size in advance. (first step in moving towards the use of a vector for buffers). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:52 2005 Subject: No subject Tue Jan 28 17:35:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 17:36:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T1a4ws032768 for ; Tue, 28 Jan 2003 17:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T1a460058519 for ; Tue, 28 Jan 2003 17:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22377; Tue, 28 Jan 2003 17:36:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22364 for ; Tue, 28 Jan 2003 17:35:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T1Zm60058514 for ; Tue, 28 Jan 2003 17:35:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T1Zm8a017104 for ; Tue, 28 Jan 2003 17:35:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T1ZmeD017100; Tue, 28 Jan 2003 17:35:48 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290135.h0T1ZmeD017100@xorpc.icir.org> Date: Tue, 28 Jan 2003 17:35:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 17:35:48 Modified files: xorp/bgp/harness/: xrl_shell_funcs.sh Log message: The coord command will not block if the environment variable NOBLOCK is set to true. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 17:39:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 17:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T1e3ws034146 for ; Tue, 28 Jan 2003 17:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T1e360058563 for ; Tue, 28 Jan 2003 17:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22482; Tue, 28 Jan 2003 17:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22466 for ; Tue, 28 Jan 2003 17:39:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T1dj60058555 for ; Tue, 28 Jan 2003 17:39:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T1dj8a020206 for ; Tue, 28 Jan 2003 17:39:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T1dj4f020205; Tue, 28 Jan 2003 17:39:45 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290139.h0T1dj4f020205@xorpc.icir.org> Date: Tue, 28 Jan 2003 17:39:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 17:39:45 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Change test15 to make multiple connections. Indent the code to match other tests. Use 65000 the AS number of our Cisco so we can keep the same BGP process running across tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 18:09:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 18:10:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T2A3ws038968 for ; Tue, 28 Jan 2003 18:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T2A360058935 for ; Tue, 28 Jan 2003 18:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23113; Tue, 28 Jan 2003 18:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23105 for ; Tue, 28 Jan 2003 18:09:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T29b60058929 for ; Tue, 28 Jan 2003 18:09:37 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T29b8a025315 for ; Tue, 28 Jan 2003 18:09:37 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T29bv5025314; Tue, 28 Jan 2003 18:09:37 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301290209.h0T29bv5025314@xorpc.icir.org> Date: Tue, 28 Jan 2003 18:09:37 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.hh path_attribute.cc update_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 18:09:37 Modified files: xorp/bgp/: aspath.hh path_attribute.cc update_test.cc Log message: Enforce passing a buffer to as*() encoding _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 18:59:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 19:00:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T303ws044779 for ; Tue, 28 Jan 2003 19:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T30360059391 for ; Tue, 28 Jan 2003 19:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23906; Tue, 28 Jan 2003 19:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23884 for ; Tue, 28 Jan 2003 18:59:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T2x660059382 for ; Tue, 28 Jan 2003 18:59:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T2x68a025714 for ; Tue, 28 Jan 2003 18:59:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T2x69s025713; Tue, 28 Jan 2003 18:59:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301290259.h0T2x69s025713@xorpc.icir.org> Date: Tue, 28 Jan 2003 18:59:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/01/28 18:59:06 Modified files: xorp/config/: acipv6.m4 Log message: Better comparison for $enable_ipv6 value. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 19:04:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 19:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T353ws045674 for ; Tue, 28 Jan 2003 19:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T35360059427 for ; Tue, 28 Jan 2003 19:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24010; Tue, 28 Jan 2003 19:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23998 for ; Tue, 28 Jan 2003 19:04:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T34Y60059422 for ; Tue, 28 Jan 2003 19:04:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T34Y8a025799 for ; Tue, 28 Jan 2003 19:04:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T34YFH025798; Tue, 28 Jan 2003 19:04:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301290304.h0T34YFH025798@xorpc.icir.org> Date: Tue, 28 Jan 2003 19:04:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/01/28 19:04:33 Modified files: ./: configure.in configure Log message: * Add --disable-debug flag to ./configure to explicitly disable compiling with debug information (i.e., the -g flag in the compiler). * Fix AC_ARG_ENABLE(ipv6) to explicitly set $enable_ipv6 and perform better testing for the value of $enable_ipv6 * Print the C and C++ compiler flags at the end of running ./configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 20:43:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 20:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T4i3ws061850 for ; Tue, 28 Jan 2003 20:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T4i260060158 for ; Tue, 28 Jan 2003 20:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25402; Tue, 28 Jan 2003 20:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25392 for ; Tue, 28 Jan 2003 20:43:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T4hc60060146 for ; Tue, 28 Jan 2003 20:43:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T4hc8a033243 for ; Tue, 28 Jan 2003 20:43:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T4hcwK033241; Tue, 28 Jan 2003 20:43:38 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290443.h0T4hcwK033241@xorpc.icir.org> Date: Tue, 28 Jan 2003 20:43:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 20:43:38 Added files: xorp/bgp/harness/: test_peering2.sh Log message: Peering tests that use saved traffic files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 21:13:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 21:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T5E2ws064456 for ; Tue, 28 Jan 2003 21:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5E260060391 for ; Tue, 28 Jan 2003 21:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25761; Tue, 28 Jan 2003 21:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25754 for ; Tue, 28 Jan 2003 21:13:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5Dp60060388 for ; Tue, 28 Jan 2003 21:13:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T5Dp8a041531 for ; Tue, 28 Jan 2003 21:13:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T5DpWc041530; Tue, 28 Jan 2003 21:13:51 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290513.h0T5DpWc041530@xorpc.icir.org> Date: Tue, 28 Jan 2003 21:13:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: data Repository: ./ Changes by: atanu@xorpc.icir.org. 03/01/28 21:13:51 data Update of /usr/local/www/data/cvs/data In directory xorpc.icir.org:/tmp/cvs-serv41522/data Log Message: Directory /usr/local/www/data/cvs/data added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 21:14:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 21:15:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T5F2ws064561 for ; Tue, 28 Jan 2003 21:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5F260060408 for ; Tue, 28 Jan 2003 21:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25787; Tue, 28 Jan 2003 21:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25776 for ; Tue, 28 Jan 2003 21:14:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5E960060396 for ; Tue, 28 Jan 2003 21:14:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T5E88a041592 for ; Tue, 28 Jan 2003 21:14:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T5E8Yq041591; Tue, 28 Jan 2003 21:14:08 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290514.h0T5E8Yq041591@xorpc.icir.org> Date: Tue, 28 Jan 2003 21:14:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: data Repository: data/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/28 21:14:08 data/bgp Update of /usr/local/www/data/cvs/data/bgp In directory xorpc.icir.org:/tmp/cvs-serv41580/data/bgp Log Message: Directory /usr/local/www/data/cvs/data/bgp added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 21:15:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 21:16:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T5G4ws064667 for ; Tue, 28 Jan 2003 21:16:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5G460060437 for ; Tue, 28 Jan 2003 21:16:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25819; Tue, 28 Jan 2003 21:16:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25807 for ; Tue, 28 Jan 2003 21:15:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5Fn60060433 for ; Tue, 28 Jan 2003 21:15:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T5Fn8a041858 for ; Tue, 28 Jan 2003 21:15:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T5FnqG041857; Tue, 28 Jan 2003 21:15:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290515.h0T5FnqG041857@xorpc.icir.org> Date: Tue, 28 Jan 2003 21:15:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh data/bgp/ icsi1.mrtd Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 21:15:49 Modified files: xorp/bgp/harness/: test_peering2.sh Added files: data/bgp/: icsi1.mrtd Log message: Add a mrtd format dump from our border router to the repository. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 21:43:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 21:44:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T5i4ws075532 for ; Tue, 28 Jan 2003 21:44:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5i460060609 for ; Tue, 28 Jan 2003 21:44:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26263; Tue, 28 Jan 2003 21:44:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26251 for ; Tue, 28 Jan 2003 21:43:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5hu60060605 for ; Tue, 28 Jan 2003 21:43:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T5hu8a052714 for ; Tue, 28 Jan 2003 21:43:56 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T5hu3M052713; Tue, 28 Jan 2003 21:43:56 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301290543.h0T5hu3M052713@xorpc.icir.org> Date: Tue, 28 Jan 2003 21:43:56 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc packet_coding_test.cc path_attribute.cc path_attribute.hh path_attribute_list.cc path_attribute_list.hh update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/28 21:43:56 Modified files: xorp/bgp/: aspath.cc packet_coding_test.cc path_attribute.cc path_attribute.hh path_attribute_list.cc path_attribute_list.hh update_packet.cc Log message: rewrite of PathAttribute class, and adaptation of its users (path_attribute_list) Passes all tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 21:44:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 21:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T5j3ws075603 for ; Tue, 28 Jan 2003 21:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5j360060618 for ; Tue, 28 Jan 2003 21:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26293; Tue, 28 Jan 2003 21:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26256 for ; Tue, 28 Jan 2003 21:44:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T5i060060607 for ; Tue, 28 Jan 2003 21:44:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T5i08a052726 for ; Tue, 28 Jan 2003 21:44:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T5i0u3052725; Tue, 28 Jan 2003 21:44:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301290544.h0T5i0u3052725@xorpc.icir.org> Date: Tue, 28 Jan 2003 21:44:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/28 21:44:00 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc pim_proto_assert.cc Log message: Various PIM Assert related changes and bug fixes: * Use wrong_iif_data_arrived_{sg,wc}() methods to perform the appropriate state machine processing * If (*,G) Assert is received, apply it first on the (S,G) Assert machine, and only if that state machine is in NoInfo state then apply it to the (*,G) Assert state machine. * If (*,G) Assert is sent as result of a data packet received on oifs, the source address inside the Assert message is set to the source address of the data packet. In all other cases the source address inside (*,G) Assert message is set to ANY. * Simplify the arguments to some of the Assert-related processing methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:53 2005 Subject: No subject Tue Jan 28 22:13:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 22:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T6E2ws077808 for ; Tue, 28 Jan 2003 22:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T6E260060829 for ; Tue, 28 Jan 2003 22:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA26732; Tue, 28 Jan 2003 22:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA26707 for ; Tue, 28 Jan 2003 22:13:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T6DK60060825 for ; Tue, 28 Jan 2003 22:13:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T6DJ8a058155 for ; Tue, 28 Jan 2003 22:13:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T6DJZP058154; Tue, 28 Jan 2003 22:13:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301290613.h0T6DJZP058154@xorpc.icir.org> Date: Tue, 28 Jan 2003 22:13:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/28 22:13:19 Modified files: xorp/pim/: pim_mre.cc Log message: Add missing delete_assert_winner_metric*() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Tue Jan 28 23:03:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Jan 2003 23:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0T743ws081565 for ; Tue, 28 Jan 2003 23:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T74360061195 for ; Tue, 28 Jan 2003 23:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA27578; Tue, 28 Jan 2003 23:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA27571 for ; Tue, 28 Jan 2003 23:03:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0T73w60061193 for ; Tue, 28 Jan 2003 23:03:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0T73w8a058590 for ; Tue, 28 Jan 2003 23:03:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0T73wkH058589; Tue, 28 Jan 2003 23:03:58 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301290703.h0T73wkH058589@xorpc.icir.org> Date: Tue, 28 Jan 2003 23:03:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in soak.sh test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/28 23:03:58 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in soak.sh test_peering2.sh Log message: Add test_peering2.sh to the make check target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 12:09:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 12:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0TKA7ws048007 for ; Wed, 29 Jan 2003 12:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TKA760069449 for ; Wed, 29 Jan 2003 12:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13582; Wed, 29 Jan 2003 12:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13560 for ; Wed, 29 Jan 2003 12:09:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TK9260069423 for ; Wed, 29 Jan 2003 12:09:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0TK928a054936 for ; Wed, 29 Jan 2003 12:09:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0TK9246054935; Wed, 29 Jan 2003 12:09:02 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301292009.h0TK9246054935@xorpc.icir.org> Date: Wed, 29 Jan 2003 12:09:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/29 12:09:02 Modified files: xorp/bgp/harness/: peer.cc Log message: If constructing a packet causes an exception catch it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 12:32:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 12:33:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0TKX7ws051851 for ; Wed, 29 Jan 2003 12:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TKX660069627 for ; Wed, 29 Jan 2003 12:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14119; Wed, 29 Jan 2003 12:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14097 for ; Wed, 29 Jan 2003 12:32:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TKWY60069621 for ; Wed, 29 Jan 2003 12:32:34 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0TKWX8a060142 for ; Wed, 29 Jan 2003 12:32:33 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0TKWXfk060141; Wed, 29 Jan 2003 12:32:33 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301292032.h0TKWXfk060141@xorpc.icir.org> Date: Wed, 29 Jan 2003 12:32:33 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ net_layer_reachability.cc net_layer_reachability.hh notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc peer.hh peer_handler.cc update_attrib.cc ...update_attrib.hh ...update_packet.cc ...withdrawn_route.cc ...withdrawn_route.hh xorp/bgp/harness/ peer.cc trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: rizzo@xorpc.icir.org. 03/01/29 12:32:33 Modified files: xorp/bgp/: net_layer_reachability.cc net_layer_reachability.hh notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc peer.cc peer.hh peer_handler.cc update_attrib.cc update_attrib.hh update_packet.cc withdrawn_route.cc withdrawn_route.hh xorp/bgp/harness/: peer.cc trie.cc Log message: Updated version of packet handling routines, now able to fill an externally-passed buffer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 14:17:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 14:18:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0TMI3ws063161 for ; Wed, 29 Jan 2003 14:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TMI360070611 for ; Wed, 29 Jan 2003 14:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16776; Wed, 29 Jan 2003 14:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16739 for ; Wed, 29 Jan 2003 14:17:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TMHB60070606 for ; Wed, 29 Jan 2003 14:17:11 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0TMHB8a085719 for ; Wed, 29 Jan 2003 14:17:11 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0TMHBpf085718; Wed, 29 Jan 2003 14:17:11 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301292217.h0TMHBpf085718@xorpc.icir.org> Date: Wed, 29 Jan 2003 14:17:11 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in packet.hh peer_handler.cc update_packet.cc xorp/bgp/ keepalive_packet.cc net_layer_reachability.cc net_layer_reachability.hh withdrawn_route.cc withdrawn_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/29 14:17:11 Modified files: xorp/bgp/: Makefile.am Makefile.in packet.hh peer_handler.cc update_packet.cc Removed files: xorp/bgp/: keepalive_packet.cc net_layer_reachability.cc net_layer_reachability.hh withdrawn_route.cc withdrawn_route.hh Log message: remove empty files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 15:38:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 15:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0TNd3ws072227 for ; Wed, 29 Jan 2003 15:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TNd260071368 for ; Wed, 29 Jan 2003 15:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18860; Wed, 29 Jan 2003 15:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18827 for ; Wed, 29 Jan 2003 15:38:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0TNcD60071358 for ; Wed, 29 Jan 2003 15:38:13 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0TNcD8a091311 for ; Wed, 29 Jan 2003 15:38:13 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0TNcDbr091310; Wed, 29 Jan 2003 15:38:13 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301292338.h0TNcDbr091310@xorpc.icir.org> Date: Wed, 29 Jan 2003 15:38:13 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ local_data.hh main.cc open_packet.cc packet.hh packet_coding_test.cc parameter.cc parameter.hh peer.cc peer_data.cc peer_data.hh peer_handler.cc peer_handler.hh plumbing_test.cc test_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/29 15:38:13 Modified files: xorp/bgp/: local_data.hh main.cc open_packet.cc packet.hh packet_coding_test.cc parameter.cc parameter.hh peer.cc peer_data.cc peer_data.hh peer_handler.cc peer_handler.hh plumbing_test.cc test_decision.cc Log message: Move the handling of open parameters into its proper class. Shorten names to make them consistent with other pieces of code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 16:36:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 16:37:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U0b2ws079505 for ; Wed, 29 Jan 2003 16:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U0b260071879 for ; Wed, 29 Jan 2003 16:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20486; Wed, 29 Jan 2003 16:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20474 for ; Wed, 29 Jan 2003 16:36:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U0ac60071877 for ; Wed, 29 Jan 2003 16:36:38 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U0ac8a099965 for ; Wed, 29 Jan 2003 16:36:38 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U0abHL099964; Wed, 29 Jan 2003 16:36:37 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301300036.h0U0abHL099964@xorpc.icir.org> Date: Wed, 29 Jan 2003 16:36:37 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/29 16:36:37 Modified files: xorp/bgp/: parameter.cc Log message: this is a programming error -- namely reverse the logic of assert() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 16:39:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 16:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U0e3ws079844 for ; Wed, 29 Jan 2003 16:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U0e360071899 for ; Wed, 29 Jan 2003 16:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20560; Wed, 29 Jan 2003 16:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20544 for ; Wed, 29 Jan 2003 16:39:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U0dX60071893 for ; Wed, 29 Jan 2003 16:39:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U0dW8a000670 for ; Wed, 29 Jan 2003 16:39:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U0dW19000669; Wed, 29 Jan 2003 16:39:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300039.h0U0dW19000669@xorpc.icir.org> Date: Wed, 29 Jan 2003 16:39:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.hh pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_scope_zone_table.cc pim_scope_zone_table.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/29 16:39:32 Modified files: xorp/pim/: pim_mfc.hh pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_scope_zone_table.cc pim_scope_zone_table.hh Log message: Merge all set_foo() and reset_foo() to set_foo(bool v) that sets the value of "foo" to "v". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:54 2005 Subject: No subject Wed Jan 29 17:10:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 17:11:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U1B6ws085255 for ; Wed, 29 Jan 2003 17:11:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1B660072173 for ; Wed, 29 Jan 2003 17:11:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21381; Wed, 29 Jan 2003 17:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21249 for ; Wed, 29 Jan 2003 17:10:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1AI60072164 for ; Wed, 29 Jan 2003 17:10:18 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U1AI8a008221 for ; Wed, 29 Jan 2003 17:10:18 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U1AI1M008220; Wed, 29 Jan 2003 17:10:18 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301300110.h0U1AI1M008220@xorpc.icir.org> Date: Wed, 29 Jan 2003 17:10:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/29 17:10:18 Modified files: xorp/bgp/: parameter.cc Log message: The length that was passed back from create forgot to add the size of the type and length fields. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 17:43:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 17:44:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U1i7ws092245 for ; Wed, 29 Jan 2003 17:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1i660072442 for ; Wed, 29 Jan 2003 17:44:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22104; Wed, 29 Jan 2003 17:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22096 for ; Wed, 29 Jan 2003 17:43:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1hl60072437 for ; Wed, 29 Jan 2003 17:43:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U1hl8a020632 for ; Wed, 29 Jan 2003 17:43:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U1hl6D020631; Wed, 29 Jan 2003 17:43:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300143.h0U1hl6D020631@xorpc.icir.org> Date: Wed, 29 Jan 2003 17:43:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc pim_mre.hh pim_mre_register.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/01/29 17:43:47 Modified files: xorp/pim/: pim_mfc.cc pim_mre.hh pim_mre_register.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: * Rename PimMre::recompute_rp_register_sg_changed() to rp_register_sg_changed() and call it from PimMre::uncond_set_pim_rp() whenever the RP changes, instead of adding it as one of the operations when INPUT_STATE_RP_CHANGED set of actions is performed. The reason is because by the time recompute_rp_register_sg_changed() is called, the RP has been already changed in the (S,G) state, and therefore recompute_rp_register_sg_changed() doesn't have the state to know whether the RP really changed, or it is still the same as earlier. * Remove OUTPUT_STATE_RP_REGISTER_SG_CHANGED and related methods * Regenerate docs/pim_track_state_name.txt and pim_track_state_num.txt * Refactor PimMfc::recompute_iif_olist_mfc() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 17:48:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 17:49:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U1n6ws092815 for ; Wed, 29 Jan 2003 17:49:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1n560072482 for ; Wed, 29 Jan 2003 17:49:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22199; Wed, 29 Jan 2003 17:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22190 for ; Wed, 29 Jan 2003 17:48:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U1mH60072476 for ; Wed, 29 Jan 2003 17:48:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U1mH8a021313 for ; Wed, 29 Jan 2003 17:48:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U1mHmq021312; Wed, 29 Jan 2003 17:48:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300148.h0U1mHmq021312@xorpc.icir.org> Date: Wed, 29 Jan 2003 17:48:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/29 17:48:17 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 18:36:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 18:37:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U2b7ws096534 for ; Wed, 29 Jan 2003 18:37:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U2b660072893 for ; Wed, 29 Jan 2003 18:37:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22960; Wed, 29 Jan 2003 18:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22949 for ; Wed, 29 Jan 2003 18:36:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U2aH60072881 for ; Wed, 29 Jan 2003 18:36:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U2aH8a025797 for ; Wed, 29 Jan 2003 18:36:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U2aHkJ025796; Wed, 29 Jan 2003 18:36:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300236.h0U2aHkJ025796@xorpc.icir.org> Date: Wed, 29 Jan 2003 18:36:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre_assert.cc pim_mre_data.cc pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/29 18:36:17 Modified files: xorp/pim/: pim_mre.cc pim_mre_assert.cc pim_mre_data.cc pim_mre_rpf.cc Log message: * Fix the following methods to appropriately assign the new state value whenever it changes: - PimMre::recompute_assert_tracking_desired_sg() - PimMre::recompute_assert_tracking_desired_wc() - PimMre::recompute_could_assert_wc() - PimMre::recompute_could_assert_sg() * Misc. comments cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 18:38:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 18:39:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U2d7ws096708 for ; Wed, 29 Jan 2003 18:39:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U2d660072903 for ; Wed, 29 Jan 2003 18:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23000; Wed, 29 Jan 2003 18:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22993 for ; Wed, 29 Jan 2003 18:38:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U2cd60072898 for ; Wed, 29 Jan 2003 18:38:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U2cd8a026191 for ; Wed, 29 Jan 2003 18:38:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U2cd4g026190; Wed, 29 Jan 2003 18:38:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301300238.h0U2cd4g026190@xorpc.icir.org> Date: Wed, 29 Jan 2003 18:38:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/29 18:38:39 Modified files: xorp/bgp/: peer.cc Log message: Remove redundant cast. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 19:35:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 19:36:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U3a6ws001152 for ; Wed, 29 Jan 2003 19:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U3a660073299 for ; Wed, 29 Jan 2003 19:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24035; Wed, 29 Jan 2003 19:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24022 for ; Wed, 29 Jan 2003 19:35:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U3Zn60073293 for ; Wed, 29 Jan 2003 19:35:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U3Zn8a026669 for ; Wed, 29 Jan 2003 19:35:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U3Znre026668; Wed, 29 Jan 2003 19:35:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300335.h0U3Znre026668@xorpc.icir.org> Date: Wed, 29 Jan 2003 19:35:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/29 19:35:49 Modified files: xorp/pim/: TODO Log message: Add two more TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 19:40:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 19:41:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U3f7ws001541 for ; Wed, 29 Jan 2003 19:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U3f760073333 for ; Wed, 29 Jan 2003 19:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24156; Wed, 29 Jan 2003 19:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24137 for ; Wed, 29 Jan 2003 19:40:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U3eD60073327 for ; Wed, 29 Jan 2003 19:40:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U3eD8a026708 for ; Wed, 29 Jan 2003 19:40:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U3eDcf026707; Wed, 29 Jan 2003 19:40:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300340.h0U3eDcf026707@xorpc.icir.org> Date: Wed, 29 Jan 2003 19:40:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/29 19:40:13 Modified files: xorp/pim/: pim_proto_assert.cc Log message: Bugfix in PimVif::pim_assert_process() : Add a task that tries to remove an (*,G) or (S,G) entry that probably was just created because of an Assert message, but is not really needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 20:06:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:07:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U476ws003470 for ; Wed, 29 Jan 2003 20:07:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U47560073530 for ; Wed, 29 Jan 2003 20:07:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24462; Wed, 29 Jan 2003 20:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24452 for ; Wed, 29 Jan 2003 20:06:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U46X60073526 for ; Wed, 29 Jan 2003 20:06:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U46X8a027083 for ; Wed, 29 Jan 2003 20:06:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U46X3O027082; Wed, 29 Jan 2003 20:06:33 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301300406.h0U46X3O027082@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:06:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_nhlookup.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/29 20:06:33 Modified files: xorp/bgp/: route_table_nhlookup.hh Log message: Fix subtle little bug in NhLookupTable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 20:10:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:11:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4B7ws003786 for ; Wed, 29 Jan 2003 20:11:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4B760073568 for ; Wed, 29 Jan 2003 20:11:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24533; Wed, 29 Jan 2003 20:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24509 for ; Wed, 29 Jan 2003 20:10:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Aw60073564 for ; Wed, 29 Jan 2003 20:10:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Aw8a027164 for ; Wed, 29 Jan 2003 20:10:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4AwAE027163; Wed, 29 Jan 2003 20:10:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300410.h0U4AwAE027163@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:10:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:10:58 Modified files: xorp/bgp/: notification_packet.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 20:11:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:12:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4C7ws003858 for ; Wed, 29 Jan 2003 20:12:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4C660073587 for ; Wed, 29 Jan 2003 20:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24556; Wed, 29 Jan 2003 20:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24549 for ; Wed, 29 Jan 2003 20:11:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Bt60073582 for ; Wed, 29 Jan 2003 20:11:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Bt8a027190 for ; Wed, 29 Jan 2003 20:11:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4BthF027189; Wed, 29 Jan 2003 20:11:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300411.h0U4BthF027189@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:11:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ open_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:11:55 Modified files: xorp/bgp/: open_packet.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 20:13:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:14:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4E5ws004014 for ; Wed, 29 Jan 2003 20:14:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4E560073602 for ; Wed, 29 Jan 2003 20:14:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24606; Wed, 29 Jan 2003 20:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24589 for ; Wed, 29 Jan 2003 20:13:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4DY60073598 for ; Wed, 29 Jan 2003 20:13:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4DY8a027221 for ; Wed, 29 Jan 2003 20:13:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4DYgS027220; Wed, 29 Jan 2003 20:13:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300413.h0U4DYgS027220@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:13:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:13:34 Modified files: xorp/bgp/: parameter.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:55 2005 Subject: No subject Wed Jan 29 20:15:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:16:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4G6ws004186 for ; Wed, 29 Jan 2003 20:16:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4G660073643 for ; Wed, 29 Jan 2003 20:16:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24660; Wed, 29 Jan 2003 20:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24649 for ; Wed, 29 Jan 2003 20:15:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Fp60073638 for ; Wed, 29 Jan 2003 20:15:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Fp8a027270 for ; Wed, 29 Jan 2003 20:15:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4FplI027269; Wed, 29 Jan 2003 20:15:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300415.h0U4FplI027269@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:15:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:15:51 Modified files: xorp/bgp/: path_attribute.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Wed Jan 29 20:25:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Q6ws004930 for ; Wed, 29 Jan 2003 20:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Q660073716 for ; Wed, 29 Jan 2003 20:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24772; Wed, 29 Jan 2003 20:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24758 for ; Wed, 29 Jan 2003 20:25:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4P660073702 for ; Wed, 29 Jan 2003 20:25:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4P68a030746 for ; Wed, 29 Jan 2003 20:25:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4P6PO030745; Wed, 29 Jan 2003 20:25:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300425.h0U4P6PO030745@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:25:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:25:06 Modified files: xorp/bgp/: update_packet.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Wed Jan 29 20:26:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:27:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4R6ws005018 for ; Wed, 29 Jan 2003 20:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4R660073731 for ; Wed, 29 Jan 2003 20:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24796; Wed, 29 Jan 2003 20:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24789 for ; Wed, 29 Jan 2003 20:26:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Qw60073727 for ; Wed, 29 Jan 2003 20:26:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Qw8a031134 for ; Wed, 29 Jan 2003 20:26:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4QwsO031133; Wed, 29 Jan 2003 20:26:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300426.h0U4QwsO031133@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:26:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:26:58 Modified files: xorp/bgp/: update_test.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Wed Jan 29 20:32:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:33:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4X6ws005468 for ; Wed, 29 Jan 2003 20:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4X660073786 for ; Wed, 29 Jan 2003 20:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24888; Wed, 29 Jan 2003 20:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24879 for ; Wed, 29 Jan 2003 20:32:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Wc60073778 for ; Wed, 29 Jan 2003 20:32:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4Wc8a032399 for ; Wed, 29 Jan 2003 20:32:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4Wcku032398; Wed, 29 Jan 2003 20:32:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300432.h0U4Wcku032398@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:32:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:32:38 Modified files: xorp/bgp/harness/: peer.cc Log message: Cast (size_t) to (uint32_t) when printing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Wed Jan 29 20:46:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Jan 2003 20:47:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0U4l7ws006535 for ; Wed, 29 Jan 2003 20:47:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4l660073890 for ; Wed, 29 Jan 2003 20:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25096; Wed, 29 Jan 2003 20:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25083 for ; Wed, 29 Jan 2003 20:46:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0U4k460073878 for ; Wed, 29 Jan 2003 20:46:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0U4k48a034346 for ; Wed, 29 Jan 2003 20:46:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0U4k4Mf034345; Wed, 29 Jan 2003 20:46:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301300446.h0U4k4Mf034345@xorpc.icir.org> Date: Wed, 29 Jan 2003 20:46:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/01/29 20:46:04 Modified files: xorp/bgp/harness/: command.cc command.hh Log message: Apply Orion's patch to the MacOS X compilation problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 11:20:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 11:21:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0UJLLws081249 for ; Thu, 30 Jan 2003 11:21:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJLL60082557 for ; Thu, 30 Jan 2003 11:21:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11304; Thu, 30 Jan 2003 11:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11279 for ; Thu, 30 Jan 2003 11:20:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJK060082530 for ; Thu, 30 Jan 2003 11:20:00 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0UJK08a061187 for ; Thu, 30 Jan 2003 11:20:00 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0UJK0jf061186; Thu, 30 Jan 2003 11:20:00 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301301920.h0UJK0jf061186@xorpc.icir.org> Date: Thu, 30 Jan 2003 11:20:00 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: mjh@xorpc.icir.org. 03/01/30 11:20:00 xorp/policy Update of /usr/local/share/doc/apache/cvs/xorp/policy In directory xorpc.icir.org:/tmp/cvs-serv61180/policy Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/policy added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 11:21:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 11:22:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0UJMCws081324 for ; Thu, 30 Jan 2003 11:22:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJMB60082563 for ; Thu, 30 Jan 2003 11:22:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11350; Thu, 30 Jan 2003 11:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11318 for ; Thu, 30 Jan 2003 11:21:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJLB60082555 for ; Thu, 30 Jan 2003 11:21:11 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0UJLB8a061234 for ; Thu, 30 Jan 2003 11:21:11 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0UJLBfB061233; Thu, 30 Jan 2003 11:21:11 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301301921.h0UJLBfB061233@xorpc.icir.org> Date: Thu, 30 Jan 2003 11:21:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ Makefile.am action.hh from.hh policy_route.cc policy_route.hh statement.cc statement.hh term.hh then.hh to.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: mjh@xorpc.icir.org. 03/01/30 11:21:11 Added files: xorp/policy/: Makefile.am action.hh from.hh policy_route.cc policy_route.hh statement.cc statement.hh term.hh then.hh to.hh Log message: Unfinished policy filter code. Not yet linked in for compilation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 11:29:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 11:30:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0UJU6ws081909 for ; Thu, 30 Jan 2003 11:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJU660082640 for ; Thu, 30 Jan 2003 11:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11569; Thu, 30 Jan 2003 11:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11561 for ; Thu, 30 Jan 2003 11:29:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UJTt60082627 for ; Thu, 30 Jan 2003 11:29:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0UJTt8a061338 for ; Thu, 30 Jan 2003 11:29:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0UJTtkR061337; Thu, 30 Jan 2003 11:29:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301301929.h0UJTtkR061337@xorpc.icir.org> Date: Thu, 30 Jan 2003 11:29:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/30 11:29:55 Modified files: xorp/pim/: TODO Log message: Add a TODO entry _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 12:20:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 12:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0UKL3ws088019 for ; Thu, 30 Jan 2003 12:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UKL260083112 for ; Thu, 30 Jan 2003 12:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13029; Thu, 30 Jan 2003 12:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13014 for ; Thu, 30 Jan 2003 12:20:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0UKKR60083110 for ; Thu, 30 Jan 2003 12:20:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0UKKR8a062014 for ; Thu, 30 Jan 2003 12:20:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0UKKRDx062013; Thu, 30 Jan 2003 12:20:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301302020.h0UKKRDx062013@xorpc.icir.org> Date: Thu, 30 Jan 2003 12:20:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/30 12:20:27 Modified files: xorp/pim/: pim_mfc.cc Log message: Bugfix in PimMfc::recompute_iif_olist_mfc() in comparing whether the iif and olist have changed. This is a bug that was introduced with the previous commit to pim_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 16:08:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 16:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V093ws008220 for ; Thu, 30 Jan 2003 16:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V09260085213 for ; Thu, 30 Jan 2003 16:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19156; Thu, 30 Jan 2003 16:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19137 for ; Thu, 30 Jan 2003 16:08:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V08F60085202 for ; Thu, 30 Jan 2003 16:08:15 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V08F8a093280 for ; Thu, 30 Jan 2003 16:08:15 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V08FL9093279; Thu, 30 Jan 2003 16:08:15 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200301310008.h0V08FL9093279@xorpc.icir.org> Date: Thu, 30 Jan 2003 16:08:15 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc peer_handler.hh route_table_decision.cc route_table_reader.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/01/30 16:08:15 Modified files: xorp/bgp/: peer_handler.cc peer_handler.hh route_table_decision.cc route_table_reader.cc Log message: remove a redundant method to fetch the bgp_id(), and rename the old one to id() for consistency with other pieces of code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 16:50:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 16:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V0p3ws012604 for ; Thu, 30 Jan 2003 16:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V0p260085630 for ; Thu, 30 Jan 2003 16:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20155; Thu, 30 Jan 2003 16:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20140 for ; Thu, 30 Jan 2003 16:50:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V0oW60085624 for ; Thu, 30 Jan 2003 16:50:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V0oV8a001577 for ; Thu, 30 Jan 2003 16:50:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V0oVAq001576; Thu, 30 Jan 2003 16:50:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301310050.h0V0oVAq001576@xorpc.icir.org> Date: Thu, 30 Jan 2003 16:50:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/30 16:50:31 Modified files: xorp/pim/: pim_mfc.cc Log message: Add XLOG_TRACE() log message to PimMfc::delete_mfc_from_kernel() to print MFC entry info whenever it is deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 18:50:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 18:51:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V2p7ws031736 for ; Thu, 30 Jan 2003 18:51:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V2p760086558 for ; Thu, 30 Jan 2003 18:51:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22381; Thu, 30 Jan 2003 18:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22364 for ; Thu, 30 Jan 2003 18:50:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V2oM60086552 for ; Thu, 30 Jan 2003 18:50:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V2oM8a024946 for ; Thu, 30 Jan 2003 18:50:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V2oMdP024945; Thu, 30 Jan 2003 18:50:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301310250.h0V2oMdP024945@xorpc.icir.org> Date: Thu, 30 Jan 2003 18:50:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/30 18:50:22 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc Log message: * Fix PimMre::rpfp_nbr_wc() to return properly MRIB.next_hop(RP(G)) for (S,G) and (S,G,rpt) routing entries if there is no (*,G) routing entry. * Fix PimMre::recompute_rpfp_nbr_sg_rpt_changed() such that the processing doesn't consider explicitly whether there is (*,G) routing entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 19:00:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 19:01:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V31Gws032774 for ; Thu, 30 Jan 2003 19:01:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V31G60086638 for ; Thu, 30 Jan 2003 19:01:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22525; Thu, 30 Jan 2003 19:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22515 for ; Thu, 30 Jan 2003 19:00:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V30Q60086630 for ; Thu, 30 Jan 2003 19:00:26 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V30Q8a025447 for ; Thu, 30 Jan 2003 19:00:26 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V30QsC025446; Thu, 30 Jan 2003 19:00:26 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301310300.h0V30QsC025446@xorpc.icir.org> Date: Thu, 30 Jan 2003 19:00:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/30 19:00:26 Modified files: xorp/bgp/harness/: test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh xrl_shell_funcs.sh Log message: Allow these scripts to be called from other directories. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 19:02:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 19:03:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V336ws032926 for ; Thu, 30 Jan 2003 19:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V33660086648 for ; Thu, 30 Jan 2003 19:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22569; Thu, 30 Jan 2003 19:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22549 for ; Thu, 30 Jan 2003 19:02:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V32E60086640 for ; Thu, 30 Jan 2003 19:02:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V32E8a025500 for ; Thu, 30 Jan 2003 19:02:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V32EXo025499; Thu, 30 Jan 2003 19:02:14 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301310302.h0V32EXo025499@xorpc.icir.org> Date: Thu, 30 Jan 2003 19:02:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ inject.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/01/30 19:02:14 Added files: xorp/bgp/harness/: inject.sh Log message: Script to inject a saved feed into our BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 19:02:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 19:03:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V337ws032946 for ; Thu, 30 Jan 2003 19:03:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V33760086650 for ; Thu, 30 Jan 2003 19:03:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22580; Thu, 30 Jan 2003 19:03:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22555 for ; Thu, 30 Jan 2003 19:02:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V32L60086642 for ; Thu, 30 Jan 2003 19:02:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V32L8a025516 for ; Thu, 30 Jan 2003 19:02:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V32LLn025515; Thu, 30 Jan 2003 19:02:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301310302.h0V32LLn025515@xorpc.icir.org> Date: Thu, 30 Jan 2003 19:02:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/30 19:02:21 other/bgp Update of /usr/local/www/data/cvs/other/bgp In directory xorpc.icir.org:/tmp/cvs-serv25507/other/bgp Log Message: Directory /usr/local/www/data/cvs/other/bgp added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 19:03:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 19:04:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V346ws033018 for ; Thu, 30 Jan 2003 19:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V34660086658 for ; Thu, 30 Jan 2003 19:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22607; Thu, 30 Jan 2003 19:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22597 for ; Thu, 30 Jan 2003 19:03:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V33N60086652 for ; Thu, 30 Jan 2003 19:03:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V33N8a025556 for ; Thu, 30 Jan 2003 19:03:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V33NvO025555; Thu, 30 Jan 2003 19:03:23 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301310303.h0V33NvO025555@xorpc.icir.org> Date: Thu, 30 Jan 2003 19:03:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ host_to_as.sh peer_with_icsi.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/30 19:03:23 Added files: other/bgp/: host_to_as.sh peer_with_icsi.sh Log message: Script to peer with the Cisco in our testbed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 19:45:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 19:46:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V3k6ws036621 for ; Thu, 30 Jan 2003 19:46:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V3k560086921 for ; Thu, 30 Jan 2003 19:46:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23117; Thu, 30 Jan 2003 19:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23104 for ; Thu, 30 Jan 2003 19:45:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V3jR60086917 for ; Thu, 30 Jan 2003 19:45:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V3jR8a026225 for ; Thu, 30 Jan 2003 19:45:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V3jRQa026224; Thu, 30 Jan 2003 19:45:27 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301310345.h0V3jRQa026224@xorpc.icir.org> Date: Thu, 30 Jan 2003 19:45:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ collect.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/30 19:45:27 Added files: other/bgp/: collect.sh Log message: Script to peer with the Cisco in our testbed and collect traffic. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Thu Jan 30 20:30:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Jan 2003 20:31:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0V4V3ws039962 for ; Thu, 30 Jan 2003 20:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V4V260087211 for ; Thu, 30 Jan 2003 20:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23661; Thu, 30 Jan 2003 20:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23648 for ; Thu, 30 Jan 2003 20:30:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0V4Ul60087209 for ; Thu, 30 Jan 2003 20:30:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0V4Ul8a031351 for ; Thu, 30 Jan 2003 20:30:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0V4UlJJ031350; Thu, 30 Jan 2003 20:30:47 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301310430.h0V4UlJJ031350@xorpc.icir.org> Date: Thu, 30 Jan 2003 20:30:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/30 20:30:47 Modified files: xorp/bgp/: peer.cc Log message: Fix bug where the keepalive timer would expire while we were in state stopped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:56 2005 Subject: No subject Fri Jan 31 11:52:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 11:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VJr3ws010947 for ; Fri, 31 Jan 2003 11:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VJr360096067 for ; Fri, 31 Jan 2003 11:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10811; Fri, 31 Jan 2003 11:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10793 for ; Fri, 31 Jan 2003 11:52:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VJq760096060 for ; Fri, 31 Jan 2003 11:52:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VJq78a053265 for ; Fri, 31 Jan 2003 11:52:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VJq7kZ053264; Fri, 31 Jan 2003 11:52:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301311952.h0VJq7kZ053264@xorpc.icir.org> Date: Fri, 31 Jan 2003 11:52:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 11:52:07 Modified files: xorp/pim/: pim_vif.cc Log message: Bugfix in assignment to a local static variable in method PimVif::upstream_join_timer_t_override() Originally the code was: static struct timeval timeval = vif_override_interval(); However, 'timeval' was suppose to be assigned every time the method is called, which will not happen because 'timeval' is static (i.e., it will be assigned only the first time the method is called). The solution is to explicitly perform the assigment on a separate line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 12:23:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 12:24:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VKO6ws016187 for ; Fri, 31 Jan 2003 12:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VKO660096402 for ; Fri, 31 Jan 2003 12:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11582; Fri, 31 Jan 2003 12:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11573 for ; Fri, 31 Jan 2003 12:23:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VKNV60096394 for ; Fri, 31 Jan 2003 12:23:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VKNV8a054154 for ; Fri, 31 Jan 2003 12:23:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VKNVxP054153; Fri, 31 Jan 2003 12:23:31 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200301312023.h0VKNVxP054153@xorpc.icir.org> Date: Fri, 31 Jan 2003 12:23:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ co_xorp.sh remote_xorp_copy.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/31 12:23:31 Modified files: other/tinderbox/scripts/: co_xorp.sh remote_xorp_copy.sh Log message: Add data directory for check target data. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 12:51:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 12:52:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VKqEws018447 for ; Fri, 31 Jan 2003 12:52:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VKqD60096682 for ; Fri, 31 Jan 2003 12:52:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA12055; Fri, 31 Jan 2003 12:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA12046 for ; Fri, 31 Jan 2003 12:51:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VKpw60096673 for ; Fri, 31 Jan 2003 12:51:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VKpw8a054578 for ; Fri, 31 Jan 2003 12:51:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VKpwdG054577; Fri, 31 Jan 2003 12:51:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301312051.h0VKpwdG054577@xorpc.icir.org> Date: Fri, 31 Jan 2003 12:51:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 12:51:58 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Fix pim_mre_override_timer_timeout() such that RPF'(*,G) is computed even if there is no (*,G) routing entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 13:01:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 13:02:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VL28ws019220 for ; Fri, 31 Jan 2003 13:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VL2760096775 for ; Fri, 31 Jan 2003 13:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12286; Fri, 31 Jan 2003 13:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12275 for ; Fri, 31 Jan 2003 13:01:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VL1u60096771 for ; Fri, 31 Jan 2003 13:01:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VL1u8a054751 for ; Fri, 31 Jan 2003 13:01:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VL1uRn054750; Fri, 31 Jan 2003 13:01:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301312101.h0VL1uRn054750@xorpc.icir.org> Date: Fri, 31 Jan 2003 13:01:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 13:01:56 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Compilation bugfix that was introduced with the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 13:04:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 13:05:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VL5Wws019481 for ; Fri, 31 Jan 2003 13:05:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VL5V60096814 for ; Fri, 31 Jan 2003 13:05:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12356; Fri, 31 Jan 2003 13:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12339 for ; Fri, 31 Jan 2003 13:04:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VL4a60096790 for ; Fri, 31 Jan 2003 13:04:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VL4a8a054798 for ; Fri, 31 Jan 2003 13:04:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VL4auu054797; Fri, 31 Jan 2003 13:04:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200301312104.h0VL4auu054797@xorpc.icir.org> Date: Fri, 31 Jan 2003 13:04:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 13:04:36 Modified files: xorp/pim/: pim_mre.cc Log message: * Fix the computation of PimMre::rpt_assert_metric() such that it will return the appropriate value even if there is no (*,G) routing entry. * Add XLOG_ASSERT() to PimMre::recompute_my_assert_metric_sg() and PimMre::recompute_my_assert_metric_wc() when using "my_assert_metric_sg()". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 15:39:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 15:40:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VNeHws031608 for ; Fri, 31 Jan 2003 15:40:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VNeG60098275 for ; Fri, 31 Jan 2003 15:40:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16080; Fri, 31 Jan 2003 15:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16063 for ; Fri, 31 Jan 2003 15:39:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VNdf60098249 for ; Fri, 31 Jan 2003 15:39:41 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VNdf8a059711 for ; Fri, 31 Jan 2003 15:39:41 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VNdftZ059710; Fri, 31 Jan 2003 15:39:41 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200301312339.h0VNdftZ059710@xorpc.icir.org> Date: Fri, 31 Jan 2003 15:39:41 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ attribute_manager.cc attribute_manager.hh bgp_trie.cc dump_iterators.cc dump_iterators.hh path_attribute_list.cc route_table_dump.cc route_table_ribin.cc test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/31 15:39:41 Modified files: xorp/bgp/: attribute_manager.cc attribute_manager.hh bgp_trie.cc dump_iterators.cc dump_iterators.hh path_attribute_list.cc route_table_dump.cc route_table_ribin.cc test_dump.reference Log message: Fix bugs in DumpTable: - change assumptions about trie iterator to match the RefTrie semantics. - push every route as it's dumped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 15:51:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 15:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h0VNq7ws032577 for ; Fri, 31 Jan 2003 15:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VNq660098358 for ; Fri, 31 Jan 2003 15:52:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16299; Fri, 31 Jan 2003 15:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16283 for ; Fri, 31 Jan 2003 15:51:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h0VNps60098354 for ; Fri, 31 Jan 2003 15:51:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h0VNps8a059971 for ; Fri, 31 Jan 2003 15:51:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h0VNpsTQ059970; Fri, 31 Jan 2003 15:51:54 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200301312351.h0VNpsTQ059970@xorpc.icir.org> Date: Fri, 31 Jan 2003 15:51:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/01/31 15:51:54 Modified files: xorp/bgp/: peer.cc Log message: In state active we set the hold duration to 4 minutes. If the following conditions were true we never cancelled the hold timer and after 4 minutes the peering was being dropped. 1) A hold time of zero is negotiated. 2) No update packets are sent by the peer. Fixed by resetting the hold timer, when moving to the established state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 16:37:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 16:38:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h110c6ws041137 for ; Fri, 31 Jan 2003 16:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110c560098766 for ; Fri, 31 Jan 2003 16:38:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17290; Fri, 31 Jan 2003 16:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17276 for ; Fri, 31 Jan 2003 16:37:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110b460098760 for ; Fri, 31 Jan 2003 16:37:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h110b48a060477 for ; Fri, 31 Jan 2003 16:37:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h110b4TH060476; Fri, 31 Jan 2003 16:37:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302010037.h110b4TH060476@xorpc.icir.org> Date: Fri, 31 Jan 2003 16:37:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/01/31 16:37:04 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.fig Log message: Add Section 4.9 "State Machine for (S,G,rpt) Triggered Messages" All test scenarios are tested and they pass. The only scenario that is not tested is the last case of Part J: Prune override behavior in NotPruned(S,G,rpt) state when RPF'(S,G,rpt) -> RPF'(*,G) (in case of (*,*,RP) Joins). Testing this scenario is pending spec-related clarification about changing RPF'(S,G,rpt) with (S,G)Asserts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 16:40:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 16:41:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h110f9ws041391 for ; Fri, 31 Jan 2003 16:41:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110f860098802 for ; Fri, 31 Jan 2003 16:41:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17365; Fri, 31 Jan 2003 16:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17345 for ; Fri, 31 Jan 2003 16:40:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110ej60098798 for ; Fri, 31 Jan 2003 16:40:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h110ej8a060528 for ; Fri, 31 Jan 2003 16:40:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h110ejJs060527; Fri, 31 Jan 2003 16:40:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302010040.h110ejJs060527@xorpc.icir.org> Date: Fri, 31 Jan 2003 16:40:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 16:40:45 Modified files: xorp/pim/: TODO Log message: Add a TODO entry about pending test scenario from Section 4.9 in the PIM Testsuite. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 16:47:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 16:48:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h110m6ws041911 for ; Fri, 31 Jan 2003 16:48:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110m660098843 for ; Fri, 31 Jan 2003 16:48:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17481; Fri, 31 Jan 2003 16:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17469 for ; Fri, 31 Jan 2003 16:47:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h110lj60098838 for ; Fri, 31 Jan 2003 16:47:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h110li8a061287 for ; Fri, 31 Jan 2003 16:47:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h110lisN061286; Fri, 31 Jan 2003 16:47:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302010047.h110lisN061286@xorpc.icir.org> Date: Fri, 31 Jan 2003 16:47:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ remote_xorp_copy.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/01/31 16:47:44 Modified files: other/tinderbox/scripts/: remote_xorp_copy.sh Log message: add -f flag to rm. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 17:28:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 17:29:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h111T3ws044984 for ; Fri, 31 Jan 2003 17:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h111T360099194 for ; Fri, 31 Jan 2003 17:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18122; Fri, 31 Jan 2003 17:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18114 for ; Fri, 31 Jan 2003 17:28:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h111Sj60099192 for ; Fri, 31 Jan 2003 17:28:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h111Sj8a061861 for ; Fri, 31 Jan 2003 17:28:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h111Sji3061860; Fri, 31 Jan 2003 17:28:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302010128.h111Sji3061860@xorpc.icir.org> Date: Fri, 31 Jan 2003 17:28:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 17:28:45 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Remove a TODO comment that is not valid anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 17:45:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 17:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h111k2ws046275 for ; Fri, 31 Jan 2003 17:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h111k260099354 for ; Fri, 31 Jan 2003 17:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18532; Fri, 31 Jan 2003 17:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA18512 for ; Fri, 31 Jan 2003 17:45:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h111jK60099348 for ; Fri, 31 Jan 2003 17:45:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h111jJ8a062087 for ; Fri, 31 Jan 2003 17:45:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h111jJDl062086; Fri, 31 Jan 2003 17:45:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302010145.h111jJDl062086@xorpc.icir.org> Date: Fri, 31 Jan 2003 17:45:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/01/31 17:45:19 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Fri Jan 31 20:41:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Jan 2003 20:42:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h114g7ws059523 for ; Fri, 31 Jan 2003 20:42:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h114g760000604 for ; Fri, 31 Jan 2003 20:42:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20815; Fri, 31 Jan 2003 20:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20808 for ; Fri, 31 Jan 2003 20:41:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h114ft60000600 for ; Fri, 31 Jan 2003 20:41:55 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h114fs8a069584 for ; Fri, 31 Jan 2003 20:41:54 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h114fsqj069583; Fri, 31 Jan 2003 20:41:54 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302010441.h114fsqj069583@xorpc.icir.org> Date: Fri, 31 Jan 2003 20:41:54 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/01/31 20:41:54 Modified files: xorp/bgp/: path_attribute.cc Log message: Fix very hard to find little bug in PathAttribute::operator< which had been causing the BgpTrie behaviour to be non-deterministic. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:57 2005 Subject: No subject Sat Feb 1 13:08:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Feb 2003 13:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h11L97ws037615 for ; Sat, 1 Feb 2003 13:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h11L9760012433 for ; Sat, 1 Feb 2003 13:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA05278; Sat, 1 Feb 2003 13:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA05256 for ; Sat, 1 Feb 2003 13:08:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h11L8460012425 for ; Sat, 1 Feb 2003 13:08:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h11L848a004538 for ; Sat, 1 Feb 2003 13:08:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h11L84OK004537; Sat, 1 Feb 2003 13:08:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302012108.h11L84OK004537@xorpc.icir.org> Date: Sat, 1 Feb 2003 13:08:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/01 13:08:04 Modified files: xorp/bgp/: main.cc peer.cc Log message: Fix bug in reporting MIB data - several timer values were stored in milliseconds but reported as if they were in seconds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Sat Feb 1 16:10:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Feb 2003 16:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h120B3ws051240 for ; Sat, 1 Feb 2003 16:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h120B360013663 for ; Sat, 1 Feb 2003 16:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA07427; Sat, 1 Feb 2003 16:11:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA07395 for ; Sat, 1 Feb 2003 16:10:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h120AT60013661 for ; Sat, 1 Feb 2003 16:10:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h120AT8a022216 for ; Sat, 1 Feb 2003 16:10:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h120ATZE022215; Sat, 1 Feb 2003 16:10:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302020010.h120ATZE022215@xorpc.icir.org> Date: Sat, 1 Feb 2003 16:10:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh xorp/libxorp/ asnum.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/02/01 16:10:28 Modified files: xorp/bgp/: aspath.cc aspath.hh xorp/libxorp/: asnum.hh Log message: Add print_routes test tool which prints out all the routes a XORP BGP process has in its RIB-In. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Sun Feb 2 11:40:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Feb 2003 11:41:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h12Jf6ws045294 for ; Sun, 2 Feb 2003 11:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h12Jf660023001 for ; Sun, 2 Feb 2003 11:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA22470; Sun, 2 Feb 2003 11:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA22455 for ; Sun, 2 Feb 2003 11:40:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h12JeB60022990 for ; Sun, 2 Feb 2003 11:40:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h12JeB8a077747 for ; Sun, 2 Feb 2003 11:40:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h12JeAK5077746; Sun, 2 Feb 2003 11:40:10 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302021940.h12JeAK5077746@xorpc.icir.org> Date: Sun, 2 Feb 2003 11:40:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/02/02 11:40:10 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Remove test1 as is has started failing on Koala. This test is not deterministic. We had been lucky up to this point. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Mon Feb 3 15:40:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Feb 2003 15:41:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h13Nf7ws072627 for ; Mon, 3 Feb 2003 15:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h13Nf760037749 for ; Mon, 3 Feb 2003 15:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20719; Mon, 3 Feb 2003 15:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20687 for ; Mon, 3 Feb 2003 15:40:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h13NeT60037730 for ; Mon, 3 Feb 2003 15:40:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h13NeT8a096245 for ; Mon, 3 Feb 2003 15:40:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h13NeTeu096244; Mon, 3 Feb 2003 15:40:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302032340.h13NeTeu096244@xorpc.icir.org> Date: Mon, 3 Feb 2003 15:40:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ Makefile.am Makefile.in xorp/bgp/tools/ print_routes.cc print_routes.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/02/03 15:40:28 Modified files: xorp/bgp/tools/: Makefile.am Makefile.in Added files: xorp/bgp/tools/: print_routes.cc print_routes.hh Log message: Enable building of print_routes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Mon Feb 3 16:13:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Feb 2003 16:14:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h140E6ws075091 for ; Mon, 3 Feb 2003 16:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h140E660038003 for ; Mon, 3 Feb 2003 16:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21483; Mon, 3 Feb 2003 16:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21472 for ; Mon, 3 Feb 2003 16:13:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h140Dd60037997 for ; Mon, 3 Feb 2003 16:13:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h140Dd8a096509 for ; Mon, 3 Feb 2003 16:13:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h140Dd9B096508; Mon, 3 Feb 2003 16:13:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302040013.h140Dd9B096508@xorpc.icir.org> Date: Mon, 3 Feb 2003 16:13:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: pavlin@xorpc.icir.org. 03/02/03 16:13:39 Modified files: xorp/bgp/tools/: .cvsignore Log message: Add print_routes to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 12:00:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 12:01:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14K13ws065755 for ; Tue, 4 Feb 2003 12:01:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K1360049860 for ; Tue, 4 Feb 2003 12:01:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14653; Tue, 4 Feb 2003 12:01:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14646 for ; Tue, 4 Feb 2003 12:00:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K0u60049854 for ; Tue, 4 Feb 2003 12:00:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14K0t8a054213 for ; Tue, 4 Feb 2003 12:00:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14K0tkM054212; Tue, 4 Feb 2003 12:00:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302042000.h14K0tkM054212@xorpc.icir.org> Date: Tue, 4 Feb 2003 12:00:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/02/04 12:00:55 Modified files: xorp/mfea/: mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc Log message: When reading the whole forwarding table at once from the kernel, set metric and metric preference to the result Mrib entries to their default values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 12:01:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 12:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14K23ws065835 for ; Tue, 4 Feb 2003 12:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K2260049874 for ; Tue, 4 Feb 2003 12:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14696; Tue, 4 Feb 2003 12:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14683 for ; Tue, 4 Feb 2003 12:01:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K1m60049872 for ; Tue, 4 Feb 2003 12:01:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14K1m8a054404 for ; Tue, 4 Feb 2003 12:01:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14K1mRn054403; Tue, 4 Feb 2003 12:01:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302042001.h14K1mRn054403@xorpc.icir.org> Date: Tue, 4 Feb 2003 12:01:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 12:01:48 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 12:08:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 12:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14K93ws066371 for ; Tue, 4 Feb 2003 12:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K9260049946 for ; Tue, 4 Feb 2003 12:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14876; Tue, 4 Feb 2003 12:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14868 for ; Tue, 4 Feb 2003 12:08:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14K8c60049944 for ; Tue, 4 Feb 2003 12:08:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14K8c8a055391 for ; Tue, 4 Feb 2003 12:08:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14K8cjD055390; Tue, 4 Feb 2003 12:08:38 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302042008.h14K8cjD055390@xorpc.icir.org> Date: Tue, 4 Feb 2003 12:08:38 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.cc print_routes.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/02/04 12:08:37 Modified files: xorp/bgp/tools/: print_routes.cc print_routes.hh Log message: Pipeline get_next requests for routing table routes. Uses a fixed pipeline of 4 requests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 13:53:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 13:54:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14Ls7ws078952 for ; Tue, 4 Feb 2003 13:54:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Ls660050871 for ; Tue, 4 Feb 2003 13:54:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17515; Tue, 4 Feb 2003 13:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17505 for ; Tue, 4 Feb 2003 13:53:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Lrm60050863 for ; Tue, 4 Feb 2003 13:53:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14Lrm8a084027 for ; Tue, 4 Feb 2003 13:53:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14LrlBa084026; Tue, 4 Feb 2003 13:53:47 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302042153.h14LrlBa084026@xorpc.icir.org> Date: Tue, 4 Feb 2003 13:53:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/02/04 13:53:47 Modified files: xorp/bgp/: peer.cc Log message: Add an additional half a second when priming the hold timer. This allows the peer some more time for the third keepalive to be received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 13:55:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 13:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14Lv1ws079209 for ; Tue, 4 Feb 2003 13:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Lv160050925 for ; Tue, 4 Feb 2003 13:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17594; Tue, 4 Feb 2003 13:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17587 for ; Tue, 4 Feb 2003 13:55:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Ltq60050909 for ; Tue, 4 Feb 2003 13:55:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14Ltq8a084603 for ; Tue, 4 Feb 2003 13:55:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14Ltq2E084602; Tue, 4 Feb 2003 13:55:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302042155.h14Ltq2E084602@xorpc.icir.org> Date: Tue, 4 Feb 2003 13:55:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/02/04 13:55:52 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Put back the hold time test. With the additional half second this test should be deterministic for our implementation at least. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 15:06:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 15:07:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14N77ws084481 for ; Tue, 4 Feb 2003 15:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14N7760051593 for ; Tue, 4 Feb 2003 15:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19573; Tue, 4 Feb 2003 15:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19559 for ; Tue, 4 Feb 2003 15:06:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14N6h60051588 for ; Tue, 4 Feb 2003 15:06:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14N6h8a086361 for ; Tue, 4 Feb 2003 15:06:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14N6hMw086360; Tue, 4 Feb 2003 15:06:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302042306.h14N6hMw086360@xorpc.icir.org> Date: Tue, 4 Feb 2003 15:06:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/02/04 15:06:43 Modified files: xorp/devnotes/: WORKPLAN Log message: Update with wish-list for next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 15:48:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 15:49:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h14NnBws091039 for ; Tue, 4 Feb 2003 15:49:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14NnB60052000 for ; Tue, 4 Feb 2003 15:49:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20392; Tue, 4 Feb 2003 15:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20383 for ; Tue, 4 Feb 2003 15:48:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Nmg60051987 for ; Tue, 4 Feb 2003 15:48:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14Nmg8a086785 for ; Tue, 4 Feb 2003 15:48:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14NmgDC086784; Tue, 4 Feb 2003 15:48:42 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302042348.h14NmgDC086784@xorpc.icir.org> Date: Tue, 4 Feb 2003 15:48:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/02/04 15:48:42 Modified files: xorp/bgp/: peer.cc Log message: Only do this if the hold timer is non zero, oops. Put back the hold time test. With the additional half second this test should be deterministic for our implementation at least. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 15:59:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 16:00:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1500uws095901 for ; Tue, 4 Feb 2003 16:00:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1500u60052138 for ; Tue, 4 Feb 2003 16:00:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20618; Tue, 4 Feb 2003 16:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20578 for ; Tue, 4 Feb 2003 15:59:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h14Nx660052086 for ; Tue, 4 Feb 2003 15:59:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h14Nx68a086944 for ; Tue, 4 Feb 2003 15:59:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h14Nx6qj086943; Tue, 4 Feb 2003 15:59:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302042359.h14Nx6qj086943@xorpc.icir.org> Date: Tue, 4 Feb 2003 15:59:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/04 15:59:06 Modified files: xorp/libxipc/: xrl_router.cc Log message: Interpret finder client errors into XrlError's rather than punting to an unhelpful default. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 16:04:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 16:05:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15056ws096227 for ; Tue, 4 Feb 2003 16:05:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1505560052191 for ; Tue, 4 Feb 2003 16:05:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20764; Tue, 4 Feb 2003 16:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20744 for ; Tue, 4 Feb 2003 16:04:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1504F60052170 for ; Tue, 4 Feb 2003 16:04:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1504F8a087053 for ; Tue, 4 Feb 2003 16:04:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1504FGT087052; Tue, 4 Feb 2003 16:04:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302050004.h1504FGT087052@xorpc.icir.org> Date: Tue, 4 Feb 2003 16:04:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/02/04 16:04:15 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Enable test2. Inject a saved feed and then toggle another peering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 16:59:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 17:00:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15108ws000589 for ; Tue, 4 Feb 2003 17:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1510860052804 for ; Tue, 4 Feb 2003 17:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21940; Tue, 4 Feb 2003 17:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21927 for ; Tue, 4 Feb 2003 16:59:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h150xw60052776 for ; Tue, 4 Feb 2003 16:59:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h150xv8a095571 for ; Tue, 4 Feb 2003 16:59:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h150xv7J095567; Tue, 4 Feb 2003 16:59:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050059.h150xv7J095567@xorpc.icir.org> Date: Tue, 4 Feb 2003 16:59:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 16:59:56 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 20:55:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 20:56:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h154u2ws018709 for ; Tue, 4 Feb 2003 20:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h154u260055556 for ; Tue, 4 Feb 2003 20:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25598; Tue, 4 Feb 2003 20:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25582 for ; Tue, 4 Feb 2003 20:55:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h154t360055536 for ; Tue, 4 Feb 2003 20:55:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h154t38a010123 for ; Tue, 4 Feb 2003 20:55:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h154t3H3010122; Tue, 4 Feb 2003 20:55:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050455.h154t3H3010122@xorpc.icir.org> Date: Tue, 4 Feb 2003 20:55:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 20:55:03 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 21:02:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 21:03:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15532ws019248 for ; Tue, 4 Feb 2003 21:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1553260055633 for ; Tue, 4 Feb 2003 21:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25722; Tue, 4 Feb 2003 21:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25713 for ; Tue, 4 Feb 2003 21:02:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1552S60055631 for ; Tue, 4 Feb 2003 21:02:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1552S8a017378 for ; Tue, 4 Feb 2003 21:02:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1552Su1017377; Tue, 4 Feb 2003 21:02:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050502.h1552Su1017377@xorpc.icir.org> Date: Tue, 4 Feb 2003 21:02:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 21:02:28 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc Log message: * Modify PimMre::set_assert_winner_metric() to delete the old assert metric if it is not NULL, and then set the new metric. * Modify PimMre::delete_assert_winner_metric() to take advantage of the smarter new PimMre::set_assert_winner_metric() * Bugfix: Always use PimMre::set_assert_winner_metric*() whenever we need to set or update the assert metric. Before, the assert metric update was directly copying the data values by bypassing set_assert_winner_metric*(). This was a bug because _assert_winner_metric_is_better_than_spt_assert_metric_sg was not updated properly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 21:20:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 21:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h155L3ws020610 for ; Tue, 4 Feb 2003 21:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155L260055800 for ; Tue, 4 Feb 2003 21:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25921; Tue, 4 Feb 2003 21:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25913 for ; Tue, 4 Feb 2003 21:20:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155Kc60055798 for ; Tue, 4 Feb 2003 21:20:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h155Kc8a023203 for ; Tue, 4 Feb 2003 21:20:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h155KccD023202; Tue, 4 Feb 2003 21:20:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050520.h155KccD023202@xorpc.icir.org> Date: Tue, 4 Feb 2003 21:20:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 21:20:38 Modified files: xorp/pim/: pim_mfc.cc Log message: Modify PimMfc::recompute_iif_olist_mfc() : Whenever we try to update the iif and/or oifs of a PimMfc entry, if that entry has valid iif, but NULL olist, then just delete this PimMfc entry (and the underlying MFC entry in the kernel). Later the appropriate MFC entry will be installed when NOCACHE upcall is received. The reason we need to delete the PimMfc entry is that we want to set properly the SPT bit when the next data packet is received, hence we need the NOCACHE upcall to trigger the SPT bit recomputation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 21:22:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 21:23:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h155N2ws020762 for ; Tue, 4 Feb 2003 21:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155N260055810 for ; Tue, 4 Feb 2003 21:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25983; Tue, 4 Feb 2003 21:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25969 for ; Tue, 4 Feb 2003 21:22:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155Mm60055806 for ; Tue, 4 Feb 2003 21:22:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h155Ml8a023934 for ; Tue, 4 Feb 2003 21:22:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h155Ml2E023933; Tue, 4 Feb 2003 21:22:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050522.h155Ml2E023933@xorpc.icir.org> Date: Tue, 4 Feb 2003 21:22:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 21:22:47 Modified files: xorp/pim/: pim_mfc.cc Log message: Compilation bugfix introduced with the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:58 2005 Subject: No subject Tue Feb 4 21:28:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 21:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h155T2ws021214 for ; Tue, 4 Feb 2003 21:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155T260055883 for ; Tue, 4 Feb 2003 21:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26079; Tue, 4 Feb 2003 21:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26070 for ; Tue, 4 Feb 2003 21:28:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h155Sh60055881 for ; Tue, 4 Feb 2003 21:28:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h155Sg8a025556 for ; Tue, 4 Feb 2003 21:28:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h155SgaJ025555; Tue, 4 Feb 2003 21:28:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302050528.h155SgaJ025555@xorpc.icir.org> Date: Tue, 4 Feb 2003 21:28:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/04 21:28:42 Modified files: xorp/pim/: TODO Log message: Remove half of the most recent TODO entry, because it was done by a previous commit to pim_mfc.cc (file revision 1.5) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Tue Feb 4 23:22:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Feb 2003 23:23:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h157N6ws034381 for ; Tue, 4 Feb 2003 23:23:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h157N660056982 for ; Tue, 4 Feb 2003 23:23:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA27925; Tue, 4 Feb 2003 23:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA27910 for ; Tue, 4 Feb 2003 23:22:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h157ME60056977 for ; Tue, 4 Feb 2003 23:22:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h157ME8a047327 for ; Tue, 4 Feb 2003 23:22:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h157MEtk047326; Tue, 4 Feb 2003 23:22:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302050722.h157MEtk047326@xorpc.icir.org> Date: Tue, 4 Feb 2003 23:22:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/04 23:22:14 Modified files: xorp/bgp/: main.cc rib_ipc_handler.cc rib_ipc_handler.hh Log message: Changes to RibIpcHandler's Xrl queue so that we can retransmit if we see certain Xrl failures. In particular, it seems that under certain circumstances we can drop our finder connection. We should try hard to avoid this happening, but if it does happen we don't want BGP and the RIB to get out of sync, or for BGP to exit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 11:13:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 11:14:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15JE7ws020431 for ; Wed, 5 Feb 2003 11:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15JE760065668 for ; Wed, 5 Feb 2003 11:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14139; Wed, 5 Feb 2003 11:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14114 for ; Wed, 5 Feb 2003 11:13:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15JDH60065652 for ; Wed, 5 Feb 2003 11:13:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15JDH8a044924 for ; Wed, 5 Feb 2003 11:13:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15JDHnd044923; Wed, 5 Feb 2003 11:13:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302051913.h15JDHnd044923@xorpc.icir.org> Date: Wed, 5 Feb 2003 11:13:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/02/05 11:13:17 Modified files: xorp/libxorp/: selector.cc Log message: Change selector callback order from fixed order round-robin to randomized order round robin. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 11:36:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 11:37:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15Jb6ws023327 for ; Wed, 5 Feb 2003 11:37:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15Jb660065974 for ; Wed, 5 Feb 2003 11:37:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14639; Wed, 5 Feb 2003 11:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14631 for ; Wed, 5 Feb 2003 11:36:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15Jam60065967 for ; Wed, 5 Feb 2003 11:36:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15Jam8a045233 for ; Wed, 5 Feb 2003 11:36:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15Jama6045232; Wed, 5 Feb 2003 11:36:48 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302051936.h15Jama6045232@xorpc.icir.org> Date: Wed, 5 Feb 2003 11:36:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/02/05 11:36:48 Modified files: xorp/libxorp/: selector.cc Log message: Add missing cast. Weird, did I edit the code before commit? I must have since the code compiled and ran through checks numerous times. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:01:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:02:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15N22ws048109 for ; Wed, 5 Feb 2003 15:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15N2260068146 for ; Wed, 5 Feb 2003 15:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19453; Wed, 5 Feb 2003 15:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19446 for ; Wed, 5 Feb 2003 15:01:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15N1p60068144 for ; Wed, 5 Feb 2003 15:01:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15N1p8a076312 for ; Wed, 5 Feb 2003 15:01:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15N1prQ076311; Wed, 5 Feb 2003 15:01:51 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302052301.h15N1prQ076311@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:01:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/02/05 15:01:51 Modified files: xorp/bgp/: peer.cc Log message: When we receive an open message unconditionally clear all timers and then start the keepalive and holdtimers. The test for holdtime == 0 is already in the set_timer code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:16:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:17:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15NH2ws050987 for ; Wed, 5 Feb 2003 15:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NH260068276 for ; Wed, 5 Feb 2003 15:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19865; Wed, 5 Feb 2003 15:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19791 for ; Wed, 5 Feb 2003 15:16:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NGG60068274 for ; Wed, 5 Feb 2003 15:16:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15NGF8a076774 for ; Wed, 5 Feb 2003 15:16:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15NGF3u076773; Wed, 5 Feb 2003 15:16:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302052316.h15NGF3u076773@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:16:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/02/05 15:16:15 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Use a holdtime of 30 seconds for the holdtime test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:23:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15NO3ws051806 for ; Wed, 5 Feb 2003 15:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NO360068326 for ; Wed, 5 Feb 2003 15:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20082; Wed, 5 Feb 2003 15:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20055 for ; Wed, 5 Feb 2003 15:23:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NNE60068314 for ; Wed, 5 Feb 2003 15:23:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15NND8a076912 for ; Wed, 5 Feb 2003 15:23:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15NNDYF076911; Wed, 5 Feb 2003 15:23:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302052323.h15NNDYF076911@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:23:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_dataflow.hh mfea_dataflow.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/02/05 15:23:13 Modified files: xorp/mfea/: mfea_dataflow.hh mfea_dataflow.cc Log message: Add a number of methods to MfeaDfe to access various dataflow-related information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:23:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:24:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15NO5ws051814 for ; Wed, 5 Feb 2003 15:24:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NO460068330 for ; Wed, 5 Feb 2003 15:24:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20093; Wed, 5 Feb 2003 15:24:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20075 for ; Wed, 5 Feb 2003 15:23:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NNv60068322 for ; Wed, 5 Feb 2003 15:23:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15NNv8a076990 for ; Wed, 5 Feb 2003 15:23:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15NNvGe076989; Wed, 5 Feb 2003 15:23:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302052323.h15NNvGe076989@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:23:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node_cli.cc mfea_node_cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/02/05 15:23:57 Modified files: xorp/mfea/: mfea_node_cli.cc mfea_node_cli.hh Log message: Add new CLI command "show mfea dataflow" that prints information about installed dataflow entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:26:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:27:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15NR2ws052191 for ; Wed, 5 Feb 2003 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NR260068376 for ; Wed, 5 Feb 2003 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20168; Wed, 5 Feb 2003 15:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20155 for ; Wed, 5 Feb 2003 15:26:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15NQl60068374 for ; Wed, 5 Feb 2003 15:26:47 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15NQk8a077398 for ; Wed, 5 Feb 2003 15:26:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15NQkXO077397; Wed, 5 Feb 2003 15:26:46 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302052326.h15NQkXO077397@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:26:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/05 15:26:46 Added files: other/testbed/config/: XORP-4.7 Log message: Add FreeBSD 4.7 GENERIC config file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 15:43:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 15:44:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h15Ni2ws054225 for ; Wed, 5 Feb 2003 15:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15Ni260068511 for ; Wed, 5 Feb 2003 15:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20501; Wed, 5 Feb 2003 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20494 for ; Wed, 5 Feb 2003 15:43:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h15Nhm60068509 for ; Wed, 5 Feb 2003 15:43:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h15Nhm8a077625 for ; Wed, 5 Feb 2003 15:43:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h15NhmxW077624; Wed, 5 Feb 2003 15:43:48 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302052343.h15NhmxW077624@xorpc.icir.org> Date: Wed, 5 Feb 2003 15:43:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/05 15:43:48 Modified files: other/testbed/config/: XORP-4.7 Log message: XORP testbed specific modifications. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 16:01:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 16:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16023ws056397 for ; Wed, 5 Feb 2003 16:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1602260068674 for ; Wed, 5 Feb 2003 16:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20977; Wed, 5 Feb 2003 16:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA20970 for ; Wed, 5 Feb 2003 16:01:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1601v60068672 for ; Wed, 5 Feb 2003 16:01:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1601v8a077851 for ; Wed, 5 Feb 2003 16:01:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1601vFh077850; Wed, 5 Feb 2003 16:01:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060001.h1601vFh077850@xorpc.icir.org> Date: Wed, 5 Feb 2003 16:01:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/02/05 16:01:57 Modified files: other/testbed/config/: XORP-4.7 Log message: Comment-out RAID controller devices _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 16:37:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 16:38:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h160c3ws063286 for ; Wed, 5 Feb 2003 16:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h160c260069086 for ; Wed, 5 Feb 2003 16:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21743; Wed, 5 Feb 2003 16:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21730 for ; Wed, 5 Feb 2003 16:37:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h160bh60069081 for ; Wed, 5 Feb 2003 16:37:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h160bh8a087168 for ; Wed, 5 Feb 2003 16:37:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h160bhtZ087167; Wed, 5 Feb 2003 16:37:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060037.h160bhtZ087167@xorpc.icir.org> Date: Wed, 5 Feb 2003 16:37:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 16:37:42 Modified files: xorp/pim/: TODO Log message: Remove some TODO stuff that is done. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 16:51:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 16:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h160q2ws064963 for ; Wed, 5 Feb 2003 16:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h160q260069245 for ; Wed, 5 Feb 2003 16:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22041; Wed, 5 Feb 2003 16:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22022 for ; Wed, 5 Feb 2003 16:51:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h160p760069243 for ; Wed, 5 Feb 2003 16:51:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h160p78a090217 for ; Wed, 5 Feb 2003 16:51:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h160p7fD090216; Wed, 5 Feb 2003 16:51:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060051.h160p7fD090216@xorpc.icir.org> Date: Wed, 5 Feb 2003 16:51:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 16:51:07 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: If a dataflow upcall is received, and if there is no matching PimMre routing entry, silently delete the corresponding PimMfc entry. The deletion of the PimMfc entry will remove the dataflow filters as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 17:39:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 17:40:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h161e7ws070761 for ; Wed, 5 Feb 2003 17:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h161e760069665 for ; Wed, 5 Feb 2003 17:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22833; Wed, 5 Feb 2003 17:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22811 for ; Wed, 5 Feb 2003 17:39:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h161dK60069641 for ; Wed, 5 Feb 2003 17:39:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h161dJ8a020692 for ; Wed, 5 Feb 2003 17:39:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h161dJkO020691; Wed, 5 Feb 2003 17:39:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060139.h161dJkO020691@xorpc.icir.org> Date: Wed, 5 Feb 2003 17:39:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 17:39:19 Modified files: xorp/pim/: pim_mfc.cc Log message: If we delete PimMfc entry inside method PimMfc::recompute_iif_olist_mfc(), then cancel the (S,G) Keepalive Timer, and try to remove the (S,G) routing entry (if exists). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 18:09:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 18:10:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h162A6ws074426 for ; Wed, 5 Feb 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h162A660069947 for ; Wed, 5 Feb 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23298; Wed, 5 Feb 2003 18:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23288 for ; Wed, 5 Feb 2003 18:09:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1629Q60069920 for ; Wed, 5 Feb 2003 18:09:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1629Q8a029377 for ; Wed, 5 Feb 2003 18:09:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1629QvX029376; Wed, 5 Feb 2003 18:09:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060209.h1629QvX029376@xorpc.icir.org> Date: Wed, 5 Feb 2003 18:09:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 18:09:26 Modified files: xorp/pim/: TODO Log message: Add a TODO entry about (*,*,RP) Joins and AssertTrackingDesired(S,G,I) problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 20:09:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 20:10:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h164A3ws088808 for ; Wed, 5 Feb 2003 20:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h164A260070874 for ; Wed, 5 Feb 2003 20:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24633; Wed, 5 Feb 2003 20:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24617 for ; Wed, 5 Feb 2003 20:09:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1649P60070868 for ; Wed, 5 Feb 2003 20:09:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1649P8a031374 for ; Wed, 5 Feb 2003 20:09:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1649PX7031373; Wed, 5 Feb 2003 20:09:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060409.h1649PX7031373@xorpc.icir.org> Date: Wed, 5 Feb 2003 20:09:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 20:09:25 Modified files: xorp/pim/: pim_mre_assert.cc Log message: Fix the processing of assert messages when in I Am Assert Loser state (both for (S,G) and (*,G)). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 20:19:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 20:20:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h164K3ws090013 for ; Wed, 5 Feb 2003 20:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h164K260070966 for ; Wed, 5 Feb 2003 20:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24786; Wed, 5 Feb 2003 20:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24773 for ; Wed, 5 Feb 2003 20:19:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h164JN60070961 for ; Wed, 5 Feb 2003 20:19:23 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h164JN8a032111 for ; Wed, 5 Feb 2003 20:19:23 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h164JNmO032110; Wed, 5 Feb 2003 20:19:23 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200302060419.h164JNmO032110@xorpc.icir.org> Date: Wed, 5 Feb 2003 20:19:23 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh path_attribute.cc path_attribute.hh path_attribute_list.cc peer.cc update_attrib.hh update_packet.cc update_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/02/05 20:19:23 Modified files: xorp/bgp/: aspath.cc aspath.hh path_attribute.cc path_attribute.hh path_attribute_list.cc peer.cc update_attrib.hh update_packet.cc update_test.cc Log message: s/size()/wire_size()/ where appropriate to make it clear what these methods return. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 20:33:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 20:34:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h164Y3ws091668 for ; Wed, 5 Feb 2003 20:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h164Y360071065 for ; Wed, 5 Feb 2003 20:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24953; Wed, 5 Feb 2003 20:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24946 for ; Wed, 5 Feb 2003 20:33:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h164Xb60071063 for ; Wed, 5 Feb 2003 20:33:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h164Xb8a037246 for ; Wed, 5 Feb 2003 20:33:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h164XbeI037245; Wed, 5 Feb 2003 20:33:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060433.h164XbeI037245@xorpc.icir.org> Date: Wed, 5 Feb 2003 20:33:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_register.cc pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/05 20:33:37 Modified files: xorp/pim/: pim_mre_register.cc pim_mre_track_state.cc Log message: Add dependency tracking for the CouldRegister(S,G) recomputation to happen whenever the RP changes. Note that the in the current spec CouldRegister(S,G) does not consider (! I_am_RP(G)), but the implementation was considering it (except that the dependency tracking was missing). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 21:16:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 21:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h165H3ws096771 for ; Wed, 5 Feb 2003 21:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h165H360071481 for ; Wed, 5 Feb 2003 21:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25521; Wed, 5 Feb 2003 21:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25504 for ; Wed, 5 Feb 2003 21:16:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h165GC60071479 for ; Wed, 5 Feb 2003 21:16:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h165GC8a047238 for ; Wed, 5 Feb 2003 21:16:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h165GCr2047237; Wed, 5 Feb 2003 21:16:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302060516.h165GCr2047237@xorpc.icir.org> Date: Wed, 5 Feb 2003 21:16:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/02/05 21:16:12 Modified files: xorp/pim/: test_pim.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Regenerate the dependency tracking info files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Wed Feb 5 22:44:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Feb 2003 22:45:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h166j2ws007331 for ; Wed, 5 Feb 2003 22:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h166j260072070 for ; Wed, 5 Feb 2003 22:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA26562; Wed, 5 Feb 2003 22:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA26545 for ; Wed, 5 Feb 2003 22:44:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h166ia60072065 for ; Wed, 5 Feb 2003 22:44:36 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h166ia8a063352 for ; Wed, 5 Feb 2003 22:44:36 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h166iZsb063351; Wed, 5 Feb 2003 22:44:35 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302060644.h166iZsb063351@xorpc.icir.org> Date: Wed, 5 Feb 2003 22:44:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc plumbing_test.cc rib_ipc_handler.cc route_table_cache.cc route_table_filter.cc route_table_ribin.cc subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/05 22:44:35 Modified files: xorp/bgp/: peer_handler.cc plumbing_test.cc rib_ipc_handler.cc route_table_cache.cc route_table_filter.cc route_table_ribin.cc subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: Changes to SubnetRoute to include a parent route pointer. We use this to chain back to the original unmodified copy of the route, so we can know in the RibIn whether a modified verions of a route in RibIn was later chosen by Decision, what it's IGP metric was, etc. Doing this without a parent pointer would be pretty inefficient. The downside of the parent pointer is that you have to be careful it can't point to something that no longer exists which, while not trotally trivial, seems do-able. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:09:59 2005 Subject: No subject Thu Feb 6 11:23:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 11:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16JO3ws030374 for ; Thu, 6 Feb 2003 11:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16JO360080237 for ; Thu, 6 Feb 2003 11:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10531; Thu, 6 Feb 2003 11:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10508 for ; Thu, 6 Feb 2003 11:23:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16JNR60080233 for ; Thu, 6 Feb 2003 11:23:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16JNQ8a060085 for ; Thu, 6 Feb 2003 11:23:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16JNQjT060084; Thu, 6 Feb 2003 11:23:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302061923.h16JNQjT060084@xorpc.icir.org> Date: Thu, 6 Feb 2003 11:23:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ finder.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/02/06 11:23:26 Modified files: xorp/xrl/interfaces/: finder.xif Log message: Simplify number of methods for initial version of xrl finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 06 11:32:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 11:33:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16JX2ws031886 for ; Thu, 6 Feb 2003 11:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16JX260080315 for ; Thu, 6 Feb 2003 11:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10730; Thu, 6 Feb 2003 11:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA10713 for ; Thu, 6 Feb 2003 11:32:07 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16JW660080313 for ; Thu, 6 Feb 2003 11:32:06 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h16JW68J077643 for ; Thu, 6 Feb 2003 11:32:06 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200302061932.h16JW68J077643@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ finder.xif In-Reply-To: Your message of "Thu, 06 Feb 2003 11:23:26." <200302061923.h16JNQjT060084@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 06 Feb 2003 11:32:06 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/xrl/interfaces/ | Changes by: hodson@xorpc.icir.org. 03/02/06 11:23:26 | | Modified files: | xorp/xrl/interfaces/: finder.xif | | Log message: | Simplify number of methods for initial version of xrl finder. I have not committed the generated files here, as there are client script generation changes pending and a complete xorp build before committing those. Just wanting to separate the changes cleanly. Cheers - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 11:56:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 11:57:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16Jv3ws035820 for ; Thu, 6 Feb 2003 11:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16Jv260080502 for ; Thu, 6 Feb 2003 11:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11224; Thu, 6 Feb 2003 11:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA11212 for ; Thu, 6 Feb 2003 11:56:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16Jur60080500 for ; Thu, 6 Feb 2003 11:56:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16Jur8a060317 for ; Thu, 6 Feb 2003 11:56:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16Jur9D060316; Thu, 6 Feb 2003 11:56:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302061956.h16Jur9D060316@xorpc.icir.org> Date: Thu, 6 Feb 2003 11:56:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/06 11:56:53 Modified files: xorp/pim/: pim_mre.cc Log message: Ignore the Assert state for (S,G,rpt) entries when attepmting to delete a (S,G,rpt) routing entry. The reason is because the assert state is kept only for (*,G) and (S,G) entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 14:15:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 14:16:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16MGCws058281 for ; Thu, 6 Feb 2003 14:16:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MGC60081705 for ; Thu, 6 Feb 2003 14:16:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14540; Thu, 6 Feb 2003 14:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14528 for ; Thu, 6 Feb 2003 14:15:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MFL60081693 for ; Thu, 6 Feb 2003 14:15:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16MFL8a080202 for ; Thu, 6 Feb 2003 14:15:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16MFLZO080199; Thu, 6 Feb 2003 14:15:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302062215.h16MFLZO080199@xorpc.icir.org> Date: Thu, 6 Feb 2003 14:15:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/06 14:15:21 Modified files: other/testbed/config/: XORP-4.7 Log message: Enable SMP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 14:19:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 14:20:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16MK7ws058917 for ; Thu, 6 Feb 2003 14:20:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MK660081746 for ; Thu, 6 Feb 2003 14:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14635; Thu, 6 Feb 2003 14:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14614 for ; Thu, 6 Feb 2003 14:19:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MJ360081717 for ; Thu, 6 Feb 2003 14:19:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16MJ28a083009 for ; Thu, 6 Feb 2003 14:19:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16MJ2t7083008; Thu, 6 Feb 2003 14:19:02 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302062219.h16MJ2t7083008@xorpc.icir.org> Date: Thu, 6 Feb 2003 14:19:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/06 14:19:02 Modified files: other/testbed/config/: XORP-4.7 Log message: Enable device polling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 14:21:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 14:22:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16MM6ws059270 for ; Thu, 6 Feb 2003 14:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MM660081760 for ; Thu, 6 Feb 2003 14:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14679; Thu, 6 Feb 2003 14:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14663 for ; Thu, 6 Feb 2003 14:21:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MLW60081749 for ; Thu, 6 Feb 2003 14:21:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16MLW8a083434 for ; Thu, 6 Feb 2003 14:21:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16MLW0k083433; Thu, 6 Feb 2003 14:21:32 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302062221.h16MLW0k083433@xorpc.icir.org> Date: Thu, 6 Feb 2003 14:21:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_fti_xif.cc ...fea_fti_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_xif.cc ...finder_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh ...mfea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...pim_xif.hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr! _client_xif! .hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh xorp/xrl/scripts/ clnt-gen xorp/xrl/targets/ finder.xrls finder_base.cc finder_base.hh xorp/xrl/tests/ test_xifs.hh xorp/cli/ xrl_cli_node.hh xorp/mfea/ xrl_mfea_node.hh xorp/mld6igmp/ xrl_mld6igmp_node.hh xorp/pim/ xrl_pim_node.hh xorp/rib/ fea_client.cc fea_client.hh register_server.cc vifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/02/06 14:21:32 Modified files: xorp/xrl/interfaces/: bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_fti_xif.cc fea_fti_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp/xrl/scripts/: clnt-gen xorp/xrl/targets/: finder.xrls finder_base.cc finder_base.hh xorp/xrl/tests/: test_xifs.hh xorp/cli/: xrl_cli_node.hh xorp/mfea/: xrl_mfea_node.hh xorp/mld6igmp/: xrl_mld6igmp_node.hh xorp/pim/: xrl_pim_node.hh xorp/rib/: fea_client.cc fea_client.hh register_server.cc vifmanager.hh Log message: No longer include libxipc/xrl_router.hh in interface client files. Propagate fixes to places where compilation breaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 14:21:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 14:22:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16MM8ws059278 for ; Thu, 6 Feb 2003 14:22:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MM760081764 for ; Thu, 6 Feb 2003 14:22:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14691; Thu, 6 Feb 2003 14:22:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14669 for ; Thu, 6 Feb 2003 14:21:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MLi60081751 for ; Thu, 6 Feb 2003 14:21:44 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16MLh8a083511 for ; Thu, 6 Feb 2003 14:21:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16MLheT083510; Thu, 6 Feb 2003 14:21:43 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302062221.h16MLheT083510@xorpc.icir.org> Date: Thu, 6 Feb 2003 14:21:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/06 14:21:43 Modified files: other/testbed/config/: XORP-4.7 Log message: Add a newline to end of file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 14:29:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 14:30:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h16MU6ws064078 for ; Thu, 6 Feb 2003 14:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MU660081836 for ; Thu, 6 Feb 2003 14:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14850; Thu, 6 Feb 2003 14:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14831 for ; Thu, 6 Feb 2003 14:29:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h16MTJ60081808 for ; Thu, 6 Feb 2003 14:29:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h16MTJ8a084292 for ; Thu, 6 Feb 2003 14:29:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h16MTJE8084291; Thu, 6 Feb 2003 14:29:19 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302062229.h16MTJE8084291@xorpc.icir.org> Date: Thu, 6 Feb 2003 14:29:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/06 14:29:19 Modified files: other/testbed/config/: XORP-4.7 Log message: SMP and device polling are mutually exclusive. Disable device polling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 16:26:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 16:27:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h170R9ws083385 for ; Thu, 6 Feb 2003 16:27:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170R860082845 for ; Thu, 6 Feb 2003 16:27:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17727; Thu, 6 Feb 2003 16:27:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17686 for ; Thu, 6 Feb 2003 16:26:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170Qd60082830 for ; Thu, 6 Feb 2003 16:26:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h170Qd8a092998 for ; Thu, 6 Feb 2003 16:26:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h170Qd9t092997; Thu, 6 Feb 2003 16:26:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070026.h170Qd9t092997@xorpc.icir.org> Date: Thu, 6 Feb 2003 16:26:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/06 16:26:39 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 16:39:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 16:40:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h170e6ws085500 for ; Thu, 6 Feb 2003 16:40:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170e660082938 for ; Thu, 6 Feb 2003 16:40:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17996; Thu, 6 Feb 2003 16:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17984 for ; Thu, 6 Feb 2003 16:39:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170dV60082926 for ; Thu, 6 Feb 2003 16:39:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h170dV8a095377 for ; Thu, 6 Feb 2003 16:39:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h170dVXR095376; Thu, 6 Feb 2003 16:39:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070039.h170dVXR095376@xorpc.icir.org> Date: Thu, 6 Feb 2003 16:39:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/06 16:39:31 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: * Bugfix in PimMrt::receive_data() : If we need to send (*,G) Assert message, use an existing (*,G) or create a new one (*,G) routing entry, which can be used to keep the Assert state. If we create the routing entry, then call PimMre::entry_try_remove() in case we don't really need that entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:00 2005 Subject: No subject Thu Feb 6 16:40:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 16:41:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h170f7ws085683 for ; Thu, 6 Feb 2003 16:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170f660082968 for ; Thu, 6 Feb 2003 16:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18049; Thu, 6 Feb 2003 16:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18025 for ; Thu, 6 Feb 2003 16:40:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h170eN60082963 for ; Thu, 6 Feb 2003 16:40:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h170eM8a095568 for ; Thu, 6 Feb 2003 16:40:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h170eMHq095567; Thu, 6 Feb 2003 16:40:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070040.h170eMHq095567@xorpc.icir.org> Date: Thu, 6 Feb 2003 16:40:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/06 16:40:22 Modified files: xorp/pim/: pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_data.cc Log message: * Add comments to clarify most of the PimMre methods which type of routing entry they apply to. * Change PimMre::is_join_desired_wc() such that it applies PimMre::assert_winner_metric_wc() explicitly to the (*,G) entry (if exists). * Modify PimMre::assert_tracking_desired_wc() such that it applies only for (*,G) entry * Bugfix in PimMre::recompute_assert_tracking_desired_wc() * Modify PimMre::rpt_assert_metric() such that it applies only for (*,G) and (S,G) * Comment-out assert-related cleanup in PimMre::recompute_stop_vif_rp() and PimMre::recompute_stop_vif_sg_rpt() because those methods apply for (*,*,RP) and (S,G,rpt) entries, and those entries don't keep assert-related state. * Modify PimMre::assert_winner_metric_wc(), PimMre::set_assert_winner_metric_wc(), and PimMre::delete_assert_winner_metric_wc() such that they apply only for (*,G) and (S,G) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 17:21:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 17:22:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h171M3ws092273 for ; Thu, 6 Feb 2003 17:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h171M260083327 for ; Thu, 6 Feb 2003 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19095; Thu, 6 Feb 2003 17:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19079 for ; Thu, 6 Feb 2003 17:21:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h171Ld60083321 for ; Thu, 6 Feb 2003 17:21:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h171Lc8a009230 for ; Thu, 6 Feb 2003 17:21:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h171LcGL009229; Thu, 6 Feb 2003 17:21:38 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302070121.h171LcGL009229@xorpc.icir.org> Date: Thu, 6 Feb 2003 17:21:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/06 17:21:38 Modified files: other/testbed/config/: XORP-4.7 Log message: The multiprocess kernel is failing on older machines. Disable SMP and enable device polling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 19:12:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 19:13:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h173D3ws010596 for ; Thu, 6 Feb 2003 19:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h173D360084220 for ; Thu, 6 Feb 2003 19:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA21172; Thu, 6 Feb 2003 19:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA21158 for ; Thu, 6 Feb 2003 19:12:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h173C960084210 for ; Thu, 6 Feb 2003 19:12:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h173C88a019887 for ; Thu, 6 Feb 2003 19:12:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h173C8ho019886; Thu, 6 Feb 2003 19:12:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070312.h173C8ho019886@xorpc.icir.org> Date: Thu, 6 Feb 2003 19:12:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config8.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/02/06 19:12:08 Modified files: other/testbed/config/: config8.xt Log message: * Point xorp0 and xorp7 to the default kernel (non-SMP) /home/xorpc/u2/freebsd.kernels/kernel-fxp0 * temporary disable xorp3's connectivity to subnet 10.2.0.0/24 * temporary disable xorp2's connectivity to subnet 10.4.0.0/24 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 21:16:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 21:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h175H3ws030450 for ; Thu, 6 Feb 2003 21:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175H360085030 for ; Thu, 6 Feb 2003 21:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23018; Thu, 6 Feb 2003 21:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23005 for ; Thu, 6 Feb 2003 21:16:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175G760085026 for ; Thu, 6 Feb 2003 21:16:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h175G78a042381 for ; Thu, 6 Feb 2003 21:16:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h175G7SU042379; Thu, 6 Feb 2003 21:16:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070516.h175G7SU042379@xorpc.icir.org> Date: Thu, 6 Feb 2003 21:16:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt_task.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/02/06 21:16:07 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt_task.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Implement the processing of assert-related "Current Winner's GenID changes" and add the processing to the dependency-tracking mechanism. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 21:35:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 21:36:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h175a3ws033302 for ; Thu, 6 Feb 2003 21:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175a260085154 for ; Thu, 6 Feb 2003 21:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23259; Thu, 6 Feb 2003 21:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23252 for ; Thu, 6 Feb 2003 21:35:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175Zf60085152 for ; Thu, 6 Feb 2003 21:35:41 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h175Ze8a048632 for ; Thu, 6 Feb 2003 21:35:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h175ZeYs048631; Thu, 6 Feb 2003 21:35:40 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302070535.h175ZeYs048631@xorpc.icir.org> Date: Thu, 6 Feb 2003 21:35:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.hh internal_message.hh plumbing_test.cc route_queue.hh route_table_cache.cc route_table_deletion.cc route_table_filter.cc route_table_ribin.cc subnet_route.cc subnet_route.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc xorp/libxorp/ ref_trie.hh trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/02/06 21:35:40 Modified files: xorp/bgp/: bgp_trie.hh internal_message.hh plumbing_test.cc route_queue.hh route_table_cache.cc route_table_deletion.cc route_table_filter.cc route_table_ribin.cc subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/libxorp/: ref_trie.hh trie.hh Log message: Add reference counting to SubnetRoute parent_route pointer, and delayed deletion, so that a route will only be freed when all the routes that reference it have been deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 21:53:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 21:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h175s2ws035876 for ; Thu, 6 Feb 2003 21:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175s260085268 for ; Thu, 6 Feb 2003 21:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23524; Thu, 6 Feb 2003 21:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23505 for ; Thu, 6 Feb 2003 21:53:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175r660085264 for ; Thu, 6 Feb 2003 21:53:06 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h175r68a052567 for ; Thu, 6 Feb 2003 21:53:06 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h175r6so052566; Thu, 6 Feb 2003 21:53:06 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200302070553.h175r6so052566@xorpc.icir.org> Date: Thu, 6 Feb 2003 21:53:06 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh packet_coding_test.cc peer_handler.cc update_attrib.cc update_attrib.hh update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/02/06 21:53:06 Modified files: xorp/bgp/: packet.hh packet_coding_test.cc peer_handler.cc update_attrib.cc update_attrib.hh update_packet.cc Log message: Introduce a BGPUpdateAttribList class and make use of it _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 21:58:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 21:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h175x3ws036743 for ; Thu, 6 Feb 2003 21:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175x260085300 for ; Thu, 6 Feb 2003 21:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23588; Thu, 6 Feb 2003 21:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA23566 for ; Thu, 6 Feb 2003 21:58:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h175w160085298 for ; Thu, 6 Feb 2003 21:58:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h175w18a052733 for ; Thu, 6 Feb 2003 21:58:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h175w1fv052732; Thu, 6 Feb 2003 21:58:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302070558.h175w1fv052732@xorpc.icir.org> Date: Thu, 6 Feb 2003 21:58:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/06 21:58:01 Modified files: xorp/pim/: pim_mre_assert.cc pim_mrt_task.cc Log message: * Fix the dependency tracking mechanism for INPUT_STATE_ASSERT_WINNER_NBR_WC_GEN_ID_CHANGED and INPUT_STATE_ASSERT_WINNER_NBR_SG_GEN_ID_CHANGED * Bugfixes in PimMre::recompute_assert_winner_nbr_sg_gen_id_changed() and PimMre::recompute_assert_winner_nbr_wc_gen_id_changed() * Cosmetic changes to pim_mrt_task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Thu Feb 6 22:23:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Feb 2003 22:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h176O2ws048460 for ; Thu, 6 Feb 2003 22:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h176O260085476 for ; Thu, 6 Feb 2003 22:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23954; Thu, 6 Feb 2003 22:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23943 for ; Thu, 6 Feb 2003 22:23:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h176N460085474 for ; Thu, 6 Feb 2003 22:23:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h176N48a053019 for ; Thu, 6 Feb 2003 22:23:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h176N43d053018; Thu, 6 Feb 2003 22:23:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302070623.h176N43d053018@xorpc.icir.org> Date: Thu, 6 Feb 2003 22:23:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_queue.hh route_table_fanout.cc route_table_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/06 22:23:04 Modified files: xorp/bgp/: route_queue.hh route_table_fanout.cc route_table_ribout.cc Log message: Minor tidying: RouteQueueEntry now takes a route reference rather than a route pointer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 9:50:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 09:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17Hp2ws065159 for ; Fri, 7 Feb 2003 09:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17Hp260092563 for ; Fri, 7 Feb 2003 09:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05741; Fri, 7 Feb 2003 09:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05728 for ; Fri, 7 Feb 2003 09:50:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17HoX60092552 for ; Fri, 7 Feb 2003 09:50:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17HoX8a043721 for ; Fri, 7 Feb 2003 09:50:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17HoXtn043720; Fri, 7 Feb 2003 09:50:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302071750.h17HoXtn043720@xorpc.icir.org> Date: Fri, 7 Feb 2003 9:50:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/02/07 09:50:33 Modified files: xorp/libxorp/: selector.cc Log message: Only write values into fdtable if maximum number of fd's has increased. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 10:35:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 10:36:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17Ia3ws070865 for ; Fri, 7 Feb 2003 10:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17Ia260092962 for ; Fri, 7 Feb 2003 10:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06746; Fri, 7 Feb 2003 10:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06731 for ; Fri, 7 Feb 2003 10:35:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17IZi60092958 for ; Fri, 7 Feb 2003 10:35:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17IZi8a044109 for ; Fri, 7 Feb 2003 10:35:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17IZiNQ044108; Fri, 7 Feb 2003 10:35:44 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302071835.h17IZiNQ044108@xorpc.icir.org> Date: Fri, 7 Feb 2003 10:35:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/07 10:35:44 Modified files: xorp/bgp/: route_table_deletion.cc Log message: Fix two space leaks I introduced yesterday. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 11:13:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 11:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17JE2ws075385 for ; Fri, 7 Feb 2003 11:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17JE260093344 for ; Fri, 7 Feb 2003 11:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA07592; Fri, 7 Feb 2003 11:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA07573 for ; Fri, 7 Feb 2003 11:13:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17JDL60093336 for ; Fri, 7 Feb 2003 11:13:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17JDL8a044499 for ; Fri, 7 Feb 2003 11:13:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17JDLth044498; Fri, 7 Feb 2003 11:13:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302071913.h17JDLth044498@xorpc.icir.org> Date: Fri, 7 Feb 2003 11:13:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/07 11:13:21 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 14:55:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 14:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17Mu2ws002191 for ; Fri, 7 Feb 2003 14:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17Mu260095373 for ; Fri, 7 Feb 2003 14:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12032; Fri, 7 Feb 2003 14:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12008 for ; Fri, 7 Feb 2003 14:55:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17MtL60095365 for ; Fri, 7 Feb 2003 14:55:21 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17MtL8a074353 for ; Fri, 7 Feb 2003 14:55:21 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17MtLD5074352; Fri, 7 Feb 2003 14:55:21 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302072255.h17MtLD5074352@xorpc.icir.org> Date: Fri, 7 Feb 2003 14:55:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_queue.cc route_queue.hh route_table_cache.cc route_table_fanout.cc route_table_ribout.cc subnet_route.cc subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/07 14:55:21 Modified files: xorp/bgp/: route_queue.cc route_queue.hh route_table_cache.cc route_table_fanout.cc route_table_ribout.cc subnet_route.cc subnet_route.hh Log message: Add SubnetRouteRef class, which simply maintains a pointer to a SubnetRoute and updates the SubnetRoute's reference count appropriately. This avoids needing to store a copy of a SubnetRoute in any of our internal queues, because the original SubnetRoute won't be deleted until the reference count goes to zero. Also, remove token sanity check from SubnetRoute as the reference count makes it unnecessary. Minor change to RouteQueueEntry API. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 15:11:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 15:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17NC3ws004123 for ; Fri, 7 Feb 2003 15:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17NC260095536 for ; Fri, 7 Feb 2003 15:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12626; Fri, 7 Feb 2003 15:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12593 for ; Fri, 7 Feb 2003 15:11:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17NBC60095532 for ; Fri, 7 Feb 2003 15:11:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17NBC8a074705 for ; Fri, 7 Feb 2003 15:11:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17NBCoV074704; Fri, 7 Feb 2003 15:11:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302072311.h17NBCoV074704@xorpc.icir.org> Date: Fri, 7 Feb 2003 15:11:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre_join_prune.cc pim_mre_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/07 15:11:12 Modified files: xorp/pim/: pim_mre.cc pim_mre_join_prune.cc pim_mre_register.cc Log message: * Fixes to PimMre::entry_can_remove() * Call PimMre::entry_try_remove() from more places that may change the state of an entry such that we don't need that entry anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:01 2005 Subject: No subject Fri Feb 7 15:53:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 15:54:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h17Ns3ws011960 for ; Fri, 7 Feb 2003 15:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17Ns260095844 for ; Fri, 7 Feb 2003 15:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA13294; Fri, 7 Feb 2003 15:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA13279 for ; Fri, 7 Feb 2003 15:53:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h17Nrs60095842 for ; Fri, 7 Feb 2003 15:53:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h17Nrs8a076699 for ; Fri, 7 Feb 2003 15:53:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h17NrsQk076698; Fri, 7 Feb 2003 15:53:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302072353.h17NrsQk076698@xorpc.icir.org> Date: Fri, 7 Feb 2003 15:53:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/02/07 15:53:54 Modified files: xorp/libxorp/: ref_ptr.hh Log message: Remove extraneous include and a blank line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Fri Feb 7 17:06:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 17:07:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1817Aws020769 for ; Fri, 7 Feb 2003 17:07:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1817960096418 for ; Fri, 7 Feb 2003 17:07:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA14675; Fri, 7 Feb 2003 17:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA14655 for ; Fri, 7 Feb 2003 17:06:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1816U60096412 for ; Fri, 7 Feb 2003 17:06:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1816T8a090591 for ; Fri, 7 Feb 2003 17:06:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1816TAo090590; Fri, 7 Feb 2003 17:06:29 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302080106.h1816TAo090590@xorpc.icir.org> Date: Fri, 7 Feb 2003 17:06:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/02/07 17:06:29 Modified files: xorp/libxorp/: ref_ptr.hh ref_ptr.cc Log message: Add cref_ptr - compact reference pointer class. A slower, but more compact reference pointer class with exactly the same interface as the existing ref_ptr. A cref_ptr is 4 bytes big. It represents an index into a table. Each entry in the table contains a 4 byte counter and a void* pointer. The entry is shared by however many cref_ptr's reference the underlying data. The penalty of cref_ptr is a function call and an indirection when accessing the data. In contrast, ref_ptr has the pointer as part of the structure and has no access penalty, but is larger at 4 bytes plus the size of the pointer. On a 32-bit box with n cref_ptr's to same data the size is 8 + 4n bytes, whilst for a ref_ptr it's 4 + 8n bytes. We could squeeze the cref_ptr size of cref_ptr down further, but the current implementation will cause limit the number of available cref_ptr's accordingly (see code to understand why). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Fri Feb 7 17:32:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 17:33:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h181X9ws027755 for ; Fri, 7 Feb 2003 17:33:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h181X860096646 for ; Fri, 7 Feb 2003 17:33:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15291; Fri, 7 Feb 2003 17:33:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15270 for ; Fri, 7 Feb 2003 17:33:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h181Wx60096637 for ; Fri, 7 Feb 2003 17:32:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h181Wx8a002205 for ; Fri, 7 Feb 2003 17:32:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h181Wxkj002204; Fri, 7 Feb 2003 17:32:59 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302080132.h181Wxkj002204@xorpc.icir.org> Date: Fri, 7 Feb 2003 17:32:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc bgp_trie.hh peer_handler.cc rib_ipc_handler.cc route_queue.cc route_queue.hh route_table_cache.cc route_table_cache.hh route_table_fanout.cc route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_ribout.cc ...subnet_route.cc ...subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/07 17:32:59 Modified files: xorp/bgp/: bgp_trie.cc bgp_trie.hh peer_handler.cc rib_ipc_handler.cc route_queue.cc route_queue.hh route_table_cache.cc route_table_cache.hh route_table_fanout.cc route_table_nhlookup.cc route_table_nhlookup.hh route_table_ribout.cc subnet_route.cc subnet_route.hh Log message: Move the message queue in NhLookupTable to use SubnetRouteConstRef instead of a copy of the original SubnetRoute. Make SubnetRoute and ChainedSubnetRoute destructors private, so they can't be called accidentally. Fix a few bugs this found. Change SubnetRouteConstRef to hold a pointer rather than a reference, because there are cases where the pointer needs to be NULL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Fri Feb 7 22:53:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 22:54:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h186sCws069679 for ; Fri, 7 Feb 2003 22:54:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h186sB60098974 for ; Fri, 7 Feb 2003 22:54:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA19479; Fri, 7 Feb 2003 22:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA19470 for ; Fri, 7 Feb 2003 22:53:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h186rX60098964 for ; Fri, 7 Feb 2003 22:53:33 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h186rX8a044306 for ; Fri, 7 Feb 2003 22:53:33 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h186rXji044305; Fri, 7 Feb 2003 22:53:33 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200302080653.h186rXji044305@xorpc.icir.org> Date: Fri, 7 Feb 2003 22:53:33 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: rizzo@xorpc.icir.org. 03/02/07 22:53:33 Modified files: xorp/bgp/: update_packet.cc Log message: use the decode() method in BGPUpdateAttribList instead of replicating the code inline. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Fri Feb 7 23:30:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Feb 2003 23:31:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h187V6ws075723 for ; Fri, 7 Feb 2003 23:31:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h187V560099308 for ; Fri, 7 Feb 2003 23:31:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA20291; Fri, 7 Feb 2003 23:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA20257 for ; Fri, 7 Feb 2003 23:30:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h187UP60099303 for ; Fri, 7 Feb 2003 23:30:25 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h187UP8a044864 for ; Fri, 7 Feb 2003 23:30:25 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h187UPFi044863; Fri, 7 Feb 2003 23:30:25 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200302080730.h187UPFi044863@xorpc.icir.org> Date: Fri, 7 Feb 2003 23:30:25 () To: xorp-cvs@icir.org Reply-To: rizzo@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in attribute_manager.hh dummy_main.cc dump_iterators.hh main.cc main.hh packet_coding_test.cc path_attribute.cc path_attribute.hh subnet_route.hh test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/bgp/ path_attribute_list.cc path_attribute_list.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: rizzo@xorpc.icir.org. 03/02/07 23:30:25 Modified files: xorp/bgp/: Makefile.am Makefile.in attribute_manager.hh dummy_main.cc dump_iterators.hh main.cc main.hh packet_coding_test.cc path_attribute.cc path_attribute.hh subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in Removed files: xorp/bgp/: path_attribute_list.cc path_attribute_list.hh Log message: merge PathAttribute and PathAttributeList _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 1:14:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 01:15:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h189F7ws088728 for ; Sat, 8 Feb 2003 01:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189F760099955 for ; Sat, 8 Feb 2003 01:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21929; Sat, 8 Feb 2003 01:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21920 for ; Sat, 8 Feb 2003 01:14:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189Ea60099929 for ; Sat, 8 Feb 2003 01:14:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h189EZ8a064105 for ; Sat, 8 Feb 2003 01:14:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h189EZTK064104; Sat, 8 Feb 2003 01:14:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302080914.h189EZTK064104@xorpc.icir.org> Date: Sat, 8 Feb 2003 1:14:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/02/08 01:14:35 Modified files: xorp/mrt/: mrib_table.cc Log message: Bugfix: reset the root of the MRIB lookup table to NULL if the last lookup entry is deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 1:16:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 01:17:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h189HGws089005 for ; Sat, 8 Feb 2003 01:17:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189HG60099961 for ; Sat, 8 Feb 2003 01:17:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21954; Sat, 8 Feb 2003 01:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21945 for ; Sat, 8 Feb 2003 01:16:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189Gg60099957 for ; Sat, 8 Feb 2003 01:16:42 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h189Gf8a064911 for ; Sat, 8 Feb 2003 01:16:41 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h189Gfo0064910; Sat, 8 Feb 2003 01:16:41 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200302080916.h189Gfo0064910@xorpc.icir.org> Date: Sat, 8 Feb 2003 1:16:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh packet_coding_test.cc path_attribute.cc path_attribute.hh peer.cc peer_handler.cc route_table_decision.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/02/08 01:16:41 Modified files: xorp/bgp/: packet.hh packet_coding_test.cc path_attribute.cc path_attribute.hh peer.cc peer_handler.cc route_table_decision.cc update_packet.cc Log message: replace list with PathAttributeList _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 1:18:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 01:19:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h189J6ws089225 for ; Sat, 8 Feb 2003 01:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189J660099971 for ; Sat, 8 Feb 2003 01:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21978; Sat, 8 Feb 2003 01:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA21969 for ; Sat, 8 Feb 2003 01:18:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189IT60099967 for ; Sat, 8 Feb 2003 01:18:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h189IT8a065648 for ; Sat, 8 Feb 2003 01:18:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h189ITmi065647; Sat, 8 Feb 2003 01:18:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302080918.h189ITmi065647@xorpc.icir.org> Date: Sat, 8 Feb 2003 1:18:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ Makefile.am Makefile.in mfea_node.cc mfea_node.hh mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_osdep.hh mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc xrl_mfea_node.cc ...xrl_mfea_node.hh ...xrl_mfea_shell_funcs.sh xorp/xrl/interfaces/ mfea.xif mfea_xif.cc mfea_xif.hh xorp/xrl/targets/ mfea.xrls mfea_base.cc mfea_base.hh xorp/mfea/ mfea_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/02/08 01:18:29 Modified files: xorp/mfea/: Makefile.am Makefile.in mfea_node.cc mfea_node.hh mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_osdep.hh mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/xrl/interfaces/: mfea.xif mfea_xif.cc mfea_xif.hh xorp/xrl/targets/: mfea.xrls mfea_base.cc mfea_base.hh Added files: xorp/mfea/: mfea_config.cc Log message: * Make the MRIB default metric and metric preferences configurable. * Add XRLs to change the values of the MRIB default metric and metric preferences. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 1:26:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 01:27:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h189R6ws090179 for ; Sat, 8 Feb 2003 01:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189R660000136 for ; Sat, 8 Feb 2003 01:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA22046; Sat, 8 Feb 2003 01:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA22036 for ; Sat, 8 Feb 2003 01:26:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189QA60000120 for ; Sat, 8 Feb 2003 01:26:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h189QA8a067433 for ; Sat, 8 Feb 2003 01:26:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h189Q9c2067432; Sat, 8 Feb 2003 01:26:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302080926.h189Q9c2067432@xorpc.icir.org> Date: Sat, 8 Feb 2003 1:26:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/08 01:26:09 Modified files: xorp/pim/: configure_pim Log message: Add configuration to setup MRIB default metric and metric preference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 1:42:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 01:43:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h189h6ws092088 for ; Sat, 8 Feb 2003 01:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189h660000240 for ; Sat, 8 Feb 2003 01:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA22231; Sat, 8 Feb 2003 01:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA22219 for ; Sat, 8 Feb 2003 01:42:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h189gC60000235 for ; Sat, 8 Feb 2003 01:42:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h189gC8a072804 for ; Sat, 8 Feb 2003 01:42:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h189gCJ3072803; Sat, 8 Feb 2003 01:42:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302080942.h189gCJ3072803@xorpc.icir.org> Date: Sat, 8 Feb 2003 1:42:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_mrib_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/02/08 01:42:12 Modified files: xorp/mfea/: mfea_unix_mrib_netlink.cc Log message: Compilation bugfix for Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 3:08:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 03:09:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h18B92ws002630 for ; Sat, 8 Feb 2003 03:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h18B9260001215 for ; Sat, 8 Feb 2003 03:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA23114; Sat, 8 Feb 2003 03:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA23105 for ; Sat, 8 Feb 2003 03:08:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h18B8b60001210 for ; Sat, 8 Feb 2003 03:08:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h18B8b8a078222 for ; Sat, 8 Feb 2003 03:08:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h18B8beA078221; Sat, 8 Feb 2003 03:08:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302081108.h18B8beA078221@xorpc.icir.org> Date: Sat, 8 Feb 2003 3:08:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/08 03:08:36 Modified files: xorp/pim/: pim_vif.hh Log message: Add an extra space. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 12:30:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 12:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h18KV2ws073233 for ; Sat, 8 Feb 2003 12:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h18KV260008974 for ; Sat, 8 Feb 2003 12:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00624; Sat, 8 Feb 2003 12:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA00612 for ; Sat, 8 Feb 2003 12:30:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h18KU360008955 for ; Sat, 8 Feb 2003 12:30:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h18KU38a047000 for ; Sat, 8 Feb 2003 12:30:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h18KU3ie046999; Sat, 8 Feb 2003 12:30:03 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302082030.h18KU3ie046999@xorpc.icir.org> Date: Sat, 8 Feb 2003 12:30:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc route_table_deletion.cc route_table_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/08 12:30:03 Modified files: xorp/bgp/: route_table_cache.cc route_table_deletion.cc route_table_ribin.cc Log message: Use SubnetRoute references to avoid the need to make temporary copies of a route while deleting it. The reference prevents the original route from being deleeted when it is erased from the Trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 16:25:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 16:26:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h190Q3ws001227 for ; Sat, 8 Feb 2003 16:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190Q360010511 for ; Sat, 8 Feb 2003 16:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03241; Sat, 8 Feb 2003 16:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03231 for ; Sat, 8 Feb 2003 16:25:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190PV60010509 for ; Sat, 8 Feb 2003 16:25:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h190PU8a076100 for ; Sat, 8 Feb 2003 16:25:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h190PUCQ076099; Sat, 8 Feb 2003 16:25:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302090025.h190PUCQ076099@xorpc.icir.org> Date: Sat, 8 Feb 2003 16:25:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/02/08 16:25:30 Modified files: xorp/pim/: pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Reorganize the dependency tracking mechanism to add support for "RPF_interface(S) stops being I" and "RPF_interface(RP(G)) stops being I" for the (S,G) and (*,G) assert state machine. For this, methods PimMre::recompute_mrib_rp_sg() and PimMre::recompute_mrib_rp_wc() recompute also the old and new RPF interfaces (toward S and RP respectively), and if they are different, they schedule the appropriate tasks that will take care of the Assert state machine. Previously, the dependency tracking mechanism did not contain the old value of the RPF interface, therefore it could not know whether the RPF interface has really changed or not. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:02 2005 Subject: No subject Sat Feb 8 16:42:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 16:43:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h190h3ws003244 for ; Sat, 8 Feb 2003 16:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190h360010621 for ; Sat, 8 Feb 2003 16:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03419; Sat, 8 Feb 2003 16:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03406 for ; Sat, 8 Feb 2003 16:42:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190gb60010619 for ; Sat, 8 Feb 2003 16:42:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h190gb8a079263 for ; Sat, 8 Feb 2003 16:42:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h190gbrd079262; Sat, 8 Feb 2003 16:42:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302090042.h190gbrd079262@xorpc.icir.org> Date: Sat, 8 Feb 2003 16:42:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/08 16:42:37 Modified files: xorp/pim/: pim_mre_track_state.cc Log message: Use XLOG_ASSERT() for some output actions to verify that the supplied vif_index is valid (i.e., when the vif_index must have been supplied when the task was scheduled) instead of applying the same action on all interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sat Feb 8 16:52:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 16:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h190r3ws004431 for ; Sat, 8 Feb 2003 16:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190r360010675 for ; Sat, 8 Feb 2003 16:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03528; Sat, 8 Feb 2003 16:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA03517 for ; Sat, 8 Feb 2003 16:52:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h190qK60010673 for ; Sat, 8 Feb 2003 16:52:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h190qK8a080668 for ; Sat, 8 Feb 2003 16:52:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h190qKeh080667; Sat, 8 Feb 2003 16:52:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302090052.h190qKeh080667@xorpc.icir.org> Date: Sat, 8 Feb 2003 16:52:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_5_1_sg_assert_message_state_machine.eps pim_test_5_1_sg_assert_message_state_machine.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/02/08 16:52:20 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_5_1_sg_assert_message_state_machine.eps pim_test_5_1_sg_assert_message_state_machine.fig Log message: Add Section 5.1 "(S,G) Assert Message State Machine". The implementation passes all described scenarios. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sat Feb 8 19:35:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 19:36:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h193a7ws023730 for ; Sat, 8 Feb 2003 19:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193a760011675 for ; Sat, 8 Feb 2003 19:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05180; Sat, 8 Feb 2003 19:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05171 for ; Sat, 8 Feb 2003 19:35:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193ZS60011665 for ; Sat, 8 Feb 2003 19:35:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h193ZS8a002464 for ; Sat, 8 Feb 2003 19:35:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h193ZSCB002463; Sat, 8 Feb 2003 19:35:28 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302090335.h193ZSCB002463@xorpc.icir.org> Date: Sat, 8 Feb 2003 19:35:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc route_table_cache.cc xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/08 19:35:28 Modified files: xorp/bgp/: aspath.cc route_table_cache.cc xrl_target.cc Log message: Minor fixes for route table reporting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sat Feb 8 19:40:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 19:41:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h193f6ws024351 for ; Sat, 8 Feb 2003 19:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193f660011722 for ; Sat, 8 Feb 2003 19:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05267; Sat, 8 Feb 2003 19:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05247 for ; Sat, 8 Feb 2003 19:40:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193eD60011713 for ; Sat, 8 Feb 2003 19:40:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h193eD8a002571 for ; Sat, 8 Feb 2003 19:40:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h193eD8O002570; Sat, 8 Feb 2003 19:40:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302090340.h193eD8O002570@xorpc.icir.org> Date: Sat, 8 Feb 2003 19:40:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/08 19:40:13 Modified files: xorp/pim/: pim_mre.cc pim_mre_assert.cc Log message: * Remove redundant couple of XLOG_ASSERT() from PimMre::set_i_am_assert_loser_state() * Move the implementation of several PimMre assert-related methods from pim_mre.cc to pim_mre_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sat Feb 8 19:40:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 Feb 2003 19:41:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h193f7ws024359 for ; Sat, 8 Feb 2003 19:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193f760011726 for ; Sat, 8 Feb 2003 19:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05278; Sat, 8 Feb 2003 19:41:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA05254 for ; Sat, 8 Feb 2003 19:40:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h193eJ60011715 for ; Sat, 8 Feb 2003 19:40:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h193eJ8a002607 for ; Sat, 8 Feb 2003 19:40:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h193eJSc002606; Sat, 8 Feb 2003 19:40:19 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302090340.h193eJSc002606@xorpc.icir.org> Date: Sat, 8 Feb 2003 19:40:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.cc print_routes.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/02/08 19:40:19 Modified files: xorp/bgp/tools/: print_routes.cc print_routes.hh Log message: Improvements to route table display - now indicates which routes won. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sun Feb 9 17:22:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 09 Feb 2003 17:23:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1A1N7ws081471 for ; Sun, 9 Feb 2003 17:23:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1A1N760022057 for ; Sun, 9 Feb 2003 17:23:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21803; Sun, 9 Feb 2003 17:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21792 for ; Sun, 9 Feb 2003 17:22:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1A1M260022053 for ; Sun, 9 Feb 2003 17:22:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1A1M18a073463 for ; Sun, 9 Feb 2003 17:22:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1A1M1LL073455; Sun, 9 Feb 2003 17:22:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302100122.h1A1M1LL073455@xorpc.icir.org> Date: Sun, 9 Feb 2003 17:22:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/09 17:22:01 Modified files: xorp/pim/: pim_proto_assert.cc Log message: * Check the inner source and group address of an Assert message: - the group address must be multicast - the source address must be unicast or ZERO - the source address must be unicast if the RPTbit is not set. * Implement properly the mechanism that checks whether an (*,G) message should be applied to the (*,G) assert state machine: only if there was no transition in the (S,G) assert state machine, and only if the (S,G) assert state machine is in NoInfo state, then we can apply the (*,G) assert message to the (*,G) assert state machine. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Sun Feb 9 19:09:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 09 Feb 2003 19:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1A3A7ws094113 for ; Sun, 9 Feb 2003 19:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1A3A760022780 for ; Sun, 9 Feb 2003 19:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23260; Sun, 9 Feb 2003 19:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA23251 for ; Sun, 9 Feb 2003 19:09:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1A39660022756 for ; Sun, 9 Feb 2003 19:09:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1A3968a082758 for ; Sun, 9 Feb 2003 19:09:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1A3966P082757; Sun, 9 Feb 2003 19:09:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302100309.h1A3966P082757@xorpc.icir.org> Date: Sun, 9 Feb 2003 19:09:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/09 19:09:06 Modified files: xorp/pim/: pim_proto_assert.cc Log message: Fix the content of the AssertCancel(S,G) and AssertCancel(*,G) messages: - the source address is always set to S for (S,G) messages, regardless of the SPT bit - the RPT bit is always set _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 14:19:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 14:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1AMK2ws041210 for ; Mon, 10 Feb 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AMK260033353 for ; Mon, 10 Feb 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14933; Mon, 10 Feb 2003 14:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14919 for ; Mon, 10 Feb 2003 14:19:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AMJf60033344 for ; Mon, 10 Feb 2003 14:19:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1AMJf8a020421 for ; Mon, 10 Feb 2003 14:19:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1AMJf4I020420; Mon, 10 Feb 2003 14:19:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302102219.h1AMJf4I020420@xorpc.icir.org> Date: Mon, 10 Feb 2003 14:19:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_error.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/10 14:19:41 Modified files: xorp/libxipc/: xrl_error.hh Log message: Add operator != rather than relying on stl relops. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 14:20:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 14:21:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1AML2ws041394 for ; Mon, 10 Feb 2003 14:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AML260033385 for ; Mon, 10 Feb 2003 14:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14978; Mon, 10 Feb 2003 14:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA14951 for ; Mon, 10 Feb 2003 14:20:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AMKG60033380 for ; Mon, 10 Feb 2003 14:20:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1AMKG8a020470 for ; Mon, 10 Feb 2003 14:20:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1AMKGhI020469; Mon, 10 Feb 2003 14:20:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302102220.h1AMKGhI020469@xorpc.icir.org> Date: Mon, 10 Feb 2003 14:20:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_sender.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/10 14:20:16 Modified files: xorp/libxipc/: xrl_sender.hh Log message: Remove extraneous #include. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 14:44:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 14:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1AMj3ws045271 for ; Mon, 10 Feb 2003 14:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AMj360033581 for ; Mon, 10 Feb 2003 14:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15684; Mon, 10 Feb 2003 14:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15654 for ; Mon, 10 Feb 2003 14:44:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AMi260033570 for ; Mon, 10 Feb 2003 14:44:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1AMi28a021103 for ; Mon, 10 Feb 2003 14:44:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1AMi1e7021102; Mon, 10 Feb 2003 14:44:01 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302102244.h1AMi1e7021102@xorpc.icir.org> Date: Mon, 10 Feb 2003 14:44:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: mjh@xorpc.icir.org. 03/02/10 14:44:01 Modified files: xorp/bgp/: Makefile.am Makefile.in test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in Log message: Integrate most of the BGP isolation tests into a single binary. A complete BGP build will now require ~200MB less disk space. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 15:09:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 15:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ANA2ws049323 for ; Mon, 10 Feb 2003 15:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANA260033801 for ; Mon, 10 Feb 2003 15:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16492; Mon, 10 Feb 2003 15:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16482 for ; Mon, 10 Feb 2003 15:09:44 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1AN9i60033795; Mon, 10 Feb 2003 15:09:44 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h1AN9h8J060639; Mon, 10 Feb 2003 15:09:43 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200302102309.h1AN9h8J060639@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in In-Reply-To: Your message of "Mon, 10 Feb 2003 14:44:01." <200302102244.h1AMi1e7021102@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 10 Feb 2003 15:09:43 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/bgp/tools/ | Changes by: mjh@xorpc.icir.org. 03/02/10 14:44:01 | | Modified files: | xorp/bgp/: Makefile.am Makefile.in | xorp/bgp/harness/: Makefile.in | xorp/bgp/tools/: Makefile.in The build is broken, looks like a file or two got missed. Can you "cvs up" in the bgp directory, find the files that got missed, and commit them? cheers - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 15:30:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 15:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ANV2ws052653 for ; Mon, 10 Feb 2003 15:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANV260034008 for ; Mon, 10 Feb 2003 15:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16955; Mon, 10 Feb 2003 15:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA16934 for ; Mon, 10 Feb 2003 15:30:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANUL60034001 for ; Mon, 10 Feb 2003 15:30:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ANUL8a022111 for ; Mon, 10 Feb 2003 15:30:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ANULuV022110; Mon, 10 Feb 2003 15:30:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302102330.h1ANULuV022110@xorpc.icir.org> Date: Mon, 10 Feb 2003 15:30:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/10 15:30:21 Modified files: xorp/pim/: pim_mfc.cc Log message: Initialize PimMfc::_flags to zero in PimMfc constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 15:35:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 15:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ANa2ws053469 for ; Mon, 10 Feb 2003 15:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANa260034061 for ; Mon, 10 Feb 2003 15:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17108; Mon, 10 Feb 2003 15:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17095 for ; Mon, 10 Feb 2003 15:35:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANZg60034059 for ; Mon, 10 Feb 2003 15:35:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ANZg8a022237 for ; Mon, 10 Feb 2003 15:35:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ANZgDA022236; Mon, 10 Feb 2003 15:35:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302102335.h1ANZgDA022236@xorpc.icir.org> Date: Mon, 10 Feb 2003 15:35:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/02/10 15:35:42 Modified files: xorp/bgp/: .cvsignore Log message: Add new binaries to .cvsignore and prune old ones. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 15:40:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 15:41:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ANf2ws056956 for ; Mon, 10 Feb 2003 15:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANf260034113 for ; Mon, 10 Feb 2003 15:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17243; Mon, 10 Feb 2003 15:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17207 for ; Mon, 10 Feb 2003 15:40:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANe960034110 for ; Mon, 10 Feb 2003 15:40:09 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ANe98a022365 for ; Mon, 10 Feb 2003 15:40:09 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ANe9aD022364; Mon, 10 Feb 2003 15:40:09 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302102340.h1ANe9aD022364@xorpc.icir.org> Date: Mon, 10 Feb 2003 15:40:09 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore xorp/bgp/ test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/10 15:40:09 Modified files: xorp/bgp/: .cvsignore Added files: xorp/bgp/: test_main.cc Log message: Add missing file, remove old test binaries from .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 16:02:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 15:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ANn3ws058830 for ; Mon, 10 Feb 2003 15:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANn260034188 for ; Mon, 10 Feb 2003 15:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17422; Mon, 10 Feb 2003 15:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17409 for ; Mon, 10 Feb 2003 15:48:36 -0800 (PST) Received: from nilla.icir.org (eth-0-2-2d-1-95-fa.dhcp.nanog27.merit.net [192.35.167.197]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANmZ60034181; Mon, 10 Feb 2003 15:48:35 -0800 (PST) (envelope-from mjh@nilla.icir.org) Received: from nilla.icir.org (localhost [127.0.0.1]) by nilla.icir.org (8.12.3/8.11.1) with ESMTP id h1B02gBP000285; Mon, 10 Feb 2003 16:02:42 -0800 (PST) (envelope-from mjh@nilla.icir.org) Message-Id: <200302110002.h1B02gBP000285@nilla.icir.org> From: Mark Handley X-Organisation: ICIR To: Orion Hodson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in In-reply-to: Your message of "Mon, 10 Feb 2003 15:09:43 PST." <200302102309.h1AN9h8J060639@puma.icir.org> Date: Mon, 10 Feb 2003 16:02:42 -0800 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >The build is broken, looks like a file or two got missed. Can you "cvs up" in >the bgp directory, find the files that got missed, and commit them? Sorry - fixed now. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 16:06:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 16:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B073ws066074 for ; Mon, 10 Feb 2003 16:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B07360034352 for ; Mon, 10 Feb 2003 16:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17874; Mon, 10 Feb 2003 16:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17847 for ; Mon, 10 Feb 2003 16:06:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B06860034350 for ; Mon, 10 Feb 2003 16:06:08 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1B0678a022740 for ; Mon, 10 Feb 2003 16:06:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1B067w7022739; Mon, 10 Feb 2003 16:06:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302110006.h1B067w7022739@xorpc.icir.org> Date: Mon, 10 Feb 2003 16:06:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/10 16:06:07 Modified files: xorp/bgp/: test_main.cc Log message: Return correct exit status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Mon Feb 10 15:44:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Feb 2003 16:26:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B0QWws068346 for ; Mon, 10 Feb 2003 16:26:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANj260034139 for ; Mon, 10 Feb 2003 15:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17324; Mon, 10 Feb 2003 15:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17306 for ; Mon, 10 Feb 2003 15:44:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ANi860034134 for ; Mon, 10 Feb 2003 15:44:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ANi78a022504 for ; Mon, 10 Feb 2003 15:44:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ANi72X022503; Mon, 10 Feb 2003 15:44:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302102344.h1ANi72X022503@xorpc.icir.org> Date: Mon, 10 Feb 2003 15:44:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/02/10 15:44:07 Modified files: xorp/bgp/: .cvsignore Log message: Remove repetition of "isolation_tests" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Tue Feb 11 0:13:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 00:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B8E3ws023830 for ; Tue, 11 Feb 2003 00:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B8E260037926 for ; Tue, 11 Feb 2003 00:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA25859; Tue, 11 Feb 2003 00:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA25834 for ; Tue, 11 Feb 2003 00:13:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B8DI60037924 for ; Tue, 11 Feb 2003 00:13:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1B8DI8a080516 for ; Tue, 11 Feb 2003 00:13:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1B8DIAU080515; Tue, 11 Feb 2003 00:13:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302110813.h1B8DIAU080515@xorpc.icir.org> Date: Tue, 11 Feb 2003 0:13:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/11 00:13:18 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc pim_mre_track_state.cc Log message: Change the mechanism to recompute CouldAssert(S,G,I), CouldAssert(*,G,I), AssertTrackingDesired(S,G,I), and AssertTrackingDesired(*,G,I): Originally, PimMre::recompute_assert_tracking_desired_sg(vif_index) and friends were applied per interface, and that interface was the one that had triggered the recomputation (e.g., because a Join/Prune, etc message was received on that interface). However, in case of events such as receiving winning Assert message, Join/Prune, etc on an interface, this may change the AssertTrackingDesired(S,G,I) state of the RPF_interface(S) or RPF_interface(RP(G)); i.e., the state of an interface that is different from the one that had triggered the recomputation. The solution is whenever there is a single event that may affect the AssertTrackingDesired(S,G,I) state for any interface, then recompute AssertTrackingDesired(S,G,I) for all interfaces in parallel, and apply the appropriate actions only for those interfaces whose state has changed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:03 2005 Subject: No subject Tue Feb 11 1:16:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 01:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B9H3ws031337 for ; Tue, 11 Feb 2003 01:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9H260038382 for ; Tue, 11 Feb 2003 01:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA26774; Tue, 11 Feb 2003 01:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA26764 for ; Tue, 11 Feb 2003 01:16:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9Ge60038376 for ; Tue, 11 Feb 2003 01:16:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1B9Ge8a000622 for ; Tue, 11 Feb 2003 01:16:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1B9GeuV000621; Tue, 11 Feb 2003 01:16:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302110916.h1B9GeuV000621@xorpc.icir.org> Date: Tue, 11 Feb 2003 1:16:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_5_2_wc_assert_message_state_machine.eps pim_test_5_2_wc_assert_message_state_machine.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/02/11 01:16:40 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_5_2_wc_assert_message_state_machine.eps pim_test_5_2_wc_assert_message_state_machine.fig Log message: Add Section 5.2 (*,G) Assert Message State Machine The implementation passes all described scenarios. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 1:42:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 01:43:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B9h3ws034426 for ; Tue, 11 Feb 2003 01:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9h360038544 for ; Tue, 11 Feb 2003 01:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA27143; Tue, 11 Feb 2003 01:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA27133 for ; Tue, 11 Feb 2003 01:42:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9gU60038540 for ; Tue, 11 Feb 2003 01:42:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1B9gU8a008970 for ; Tue, 11 Feb 2003 01:42:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1B9gUmc008969; Tue, 11 Feb 2003 01:42:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302110942.h1B9gUmc008969@xorpc.icir.org> Date: Tue, 11 Feb 2003 1:42:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/02/11 01:42:30 Modified files: xorp/pim/: pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Modify the dependency tracking mechanism such that "Receive Join(*,*,RP(G)) on Interface I" triggers transitions from Assert Loser state to NoInfo state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 1:49:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 01:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1B9o3ws035273 for ; Tue, 11 Feb 2003 01:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9o360038599 for ; Tue, 11 Feb 2003 01:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA27243; Tue, 11 Feb 2003 01:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA27231 for ; Tue, 11 Feb 2003 01:49:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1B9ne60038594 for ; Tue, 11 Feb 2003 01:49:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1B9ne8a010507 for ; Tue, 11 Feb 2003 01:49:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1B9ne7L010506; Tue, 11 Feb 2003 01:49:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302110949.h1B9ne7L010506@xorpc.icir.org> Date: Tue, 11 Feb 2003 1:49:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/02/11 01:49:40 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Add extra text to describe the test scenario when (*,*,RP) Join is received, and the (*,G) assert state machine is in I Am Assert Loser state. Now the implemetation passes scenario as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 12:45:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 12:46:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1BKk9ws024209 for ; Tue, 11 Feb 2003 12:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BKk960045524 for ; Tue, 11 Feb 2003 12:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11552; Tue, 11 Feb 2003 12:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA11529 for ; Tue, 11 Feb 2003 12:45:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BKjZ60045517 for ; Tue, 11 Feb 2003 12:45:35 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1BKjZ8a081473 for ; Tue, 11 Feb 2003 12:45:35 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1BKjZ9m081472; Tue, 11 Feb 2003 12:45:35 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302112045.h1BKjZ9m081472@xorpc.icir.org> Date: Tue, 11 Feb 2003 12:45:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/11 12:45:35 Modified files: xorp/bgp/: test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: don't reinitialized XLOG multiple times _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 13:51:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 13:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1BLq7ws034411 for ; Tue, 11 Feb 2003 13:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BLq760046091 for ; Tue, 11 Feb 2003 13:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA13092; Tue, 11 Feb 2003 13:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA13076 for ; Tue, 11 Feb 2003 13:51:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BLpG60046086 for ; Tue, 11 Feb 2003 13:51:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1BLpG8a003273 for ; Tue, 11 Feb 2003 13:51:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1BLpGgW003272; Tue, 11 Feb 2003 13:51:16 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302112151.h1BLpGgW003272@xorpc.icir.org> Date: Tue, 11 Feb 2003 13:51:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_debug.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/11 13:51:16 Modified files: xorp/bgp/: route_table_debug.cc Log message: Fix initialization bug (shouldn't affect anything) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 14:06:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 14:07:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1BM76ws036837 for ; Tue, 11 Feb 2003 14:07:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BM7660046234 for ; Tue, 11 Feb 2003 14:07:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13523; Tue, 11 Feb 2003 14:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13511 for ; Tue, 11 Feb 2003 14:06:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BM6P60046229 for ; Tue, 11 Feb 2003 14:06:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1BM6P8a003374 for ; Tue, 11 Feb 2003 14:06:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1BM6PgF003373; Tue, 11 Feb 2003 14:06:25 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302112206.h1BM6PgF003373@xorpc.icir.org> Date: Tue, 11 Feb 2003 14:06:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_debug.cc route_table_debug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/11 14:06:25 Modified files: xorp/bgp/: route_table_debug.cc route_table_debug.hh Log message: Don't close debug output file multiple times. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 11 15:29:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Feb 2003 15:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1BNU2ws050329 for ; Tue, 11 Feb 2003 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BNU260046850 for ; Tue, 11 Feb 2003 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15929; Tue, 11 Feb 2003 15:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15914 for ; Tue, 11 Feb 2003 15:29:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1BNTW60046841 for ; Tue, 11 Feb 2003 15:29:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1BNTW8a004327 for ; Tue, 11 Feb 2003 15:29:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1BNTWW9004326; Tue, 11 Feb 2003 15:29:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302112329.h1BNTWW9004326@xorpc.icir.org> Date: Tue, 11 Feb 2003 15:29:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/11 15:29:32 Modified files: xorp/pim/: TODO Log message: Prune and/or update some obsolete TODO stuff. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 12:24:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 12:25:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1CKP3ws072468 for ; Wed, 12 Feb 2003 12:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CKP260058026 for ; Wed, 12 Feb 2003 12:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09962; Wed, 12 Feb 2003 12:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09949 for ; Wed, 12 Feb 2003 12:24:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CKOS60058017 for ; Wed, 12 Feb 2003 12:24:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1CKOS8a057444 for ; Wed, 12 Feb 2003 12:24:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1CKORU9057443; Wed, 12 Feb 2003 12:24:27 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302122024.h1CKORU9057443@xorpc.icir.org> Date: Wed, 12 Feb 2003 12:24:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in test_main.cc test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/02/12 12:24:27 Modified files: xorp/bgp/: Makefile.am Makefile.in test_main.cc test_next_hop_resolver.cc Log message: Integrate test_next_hop_resolver into single isolation_tests binary. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 14:08:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 14:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1CM93ws086495 for ; Wed, 12 Feb 2003 14:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CM9360058829 for ; Wed, 12 Feb 2003 14:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12261; Wed, 12 Feb 2003 14:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12236 for ; Wed, 12 Feb 2003 14:08:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CM8460058827 for ; Wed, 12 Feb 2003 14:08:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1CM848a083472 for ; Wed, 12 Feb 2003 14:08:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1CM84rg083471; Wed, 12 Feb 2003 14:08:04 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302122208.h1CM84rg083471@xorpc.icir.org> Date: Wed, 12 Feb 2003 14:08:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xtreset.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/tools/ Changes by: atanu@xorpc.icir.org. 03/02/12 14:08:04 Modified files: other/testbed/tools/: xtreset.py Log message: Remove incorrect comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 15:32:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 15:33:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1CNX9ws096604 for ; Wed, 12 Feb 2003 15:33:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CNX860059578 for ; Wed, 12 Feb 2003 15:33:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14772; Wed, 12 Feb 2003 15:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14754 for ; Wed, 12 Feb 2003 15:32:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1CNWD60059568 for ; Wed, 12 Feb 2003 15:32:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1CNWD8a084415 for ; Wed, 12 Feb 2003 15:32:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1CNWD8J084414; Wed, 12 Feb 2003 15:32:13 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302122332.h1CNWD8J084414@xorpc.icir.org> Date: Wed, 12 Feb 2003 15:32:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.7 other/testbed/config/ XORP-4.7-smp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 03/02/12 15:32:13 Modified files: other/testbed/config/: XORP-4.7 Added files: other/testbed/config/: XORP-4.7-smp Log message: Previously we hardwired which interface the DHCP packets were sent on. This no longer seems necessary. I know Luigi told me so. Also added a SMP config file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 16:51:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 16:52:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1D0q6ws006338 for ; Wed, 12 Feb 2003 16:52:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D0q660060221 for ; Wed, 12 Feb 2003 16:52:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16784; Wed, 12 Feb 2003 16:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16737 for ; Wed, 12 Feb 2003 16:51:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D0p560060213 for ; Wed, 12 Feb 2003 16:51:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1D0p48a002515 for ; Wed, 12 Feb 2003 16:51:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1D0p4wE002514; Wed, 12 Feb 2003 16:51:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302130051.h1D0p4wE002514@xorpc.icir.org> Date: Wed, 12 Feb 2003 16:51:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ action.hh from.hh policy_route.hh statement.hh term.hh then.hh to.hh xorp/policy/ from.cc term.cc then.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: mjh@xorpc.icir.org. 03/02/12 16:51:04 Modified files: xorp/policy/: action.hh from.hh policy_route.hh statement.hh term.hh then.hh to.hh Added files: xorp/policy/: from.cc term.cc then.cc Log message: Make more of this compile. Doesn't do anything useful yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 17:17:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 17:18:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1D1I3ws009509 for ; Wed, 12 Feb 2003 17:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D1I260060454 for ; Wed, 12 Feb 2003 17:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17522; Wed, 12 Feb 2003 17:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA17505 for ; Wed, 12 Feb 2003 17:17:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D1H760060452 for ; Wed, 12 Feb 2003 17:17:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1D1H78a013974 for ; Wed, 12 Feb 2003 17:17:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1D1H7KO013973; Wed, 12 Feb 2003 17:17:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302130117.h1D1H7KO013973@xorpc.icir.org> Date: Wed, 12 Feb 2003 17:17:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config8.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/02/12 17:17:07 Modified files: other/testbed/config/: config8.xt Log message: Fix the path to the default non-SMP kernel to reflect reality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 20:27:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 20:28:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1D4S3ws029631 for ; Wed, 12 Feb 2003 20:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D4S360061930 for ; Wed, 12 Feb 2003 20:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20750; Wed, 12 Feb 2003 20:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20741 for ; Wed, 12 Feb 2003 20:27:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D4Rn60061928 for ; Wed, 12 Feb 2003 20:27:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1D4Rn8a028537 for ; Wed, 12 Feb 2003 20:27:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1D4RnnX028534; Wed, 12 Feb 2003 20:27:49 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302130427.h1D4RnnX028534@xorpc.icir.org> Date: Wed, 12 Feb 2003 20:27:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure xorp/policy/ policy_route.cc statement.cc xorp/policy/ .cvsignore Makefile.in action.cc test_policy.cc to.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: mjh@xorpc.icir.org. 03/02/12 20:27:48 Modified files: ./: configure xorp/policy/: policy_route.cc statement.cc Added files: xorp/policy/: .cvsignore Makefile.in action.cc test_policy.cc to.cc Log message: Fix remaining compilation errors in policy, and link for compilation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Wed Feb 12 20:39:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Feb 2003 20:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1D4e3ws030522 for ; Wed, 12 Feb 2003 20:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D4e360062015 for ; Wed, 12 Feb 2003 20:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20921; Wed, 12 Feb 2003 20:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20914 for ; Wed, 12 Feb 2003 20:39:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1D4db60062006 for ; Wed, 12 Feb 2003 20:39:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1D4db8a030681 for ; Wed, 12 Feb 2003 20:39:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1D4dboD030680; Wed, 12 Feb 2003 20:39:37 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302130439.h1D4dboD030680@xorpc.icir.org> Date: Wed, 12 Feb 2003 20:39:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 03/02/12 20:39:37 Modified files: ./: Makefile.am Makefile.in configure.in Log message: Really compile policy dir _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Thu Feb 13 10:25:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Feb 2003 10:27:30 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1DIRUws094371 for ; Thu, 13 Feb 2003 10:27:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1DIRU60069837 for ; Thu, 13 Feb 2003 10:27:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05863; Thu, 13 Feb 2003 10:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA05846 for ; Thu, 13 Feb 2003 10:25:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1DIPR60069816 for ; Thu, 13 Feb 2003 10:25:27 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1DIPR8a044839 for ; Thu, 13 Feb 2003 10:25:27 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1DIPR6T044838; Thu, 13 Feb 2003 10:25:27 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302131825.h1DIPR6T044838@xorpc.icir.org> Date: Thu, 13 Feb 2003 10:25:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: mjh@xorpc.icir.org. 03/02/13 10:25:27 Modified files: xorp/policy/: Makefile.am Makefile.in Log message: Don't define an empty TESTS variable in Makefile.am, or automake on Linux gets confused. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Thu Feb 13 21:37:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Feb 2003 21:38:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1E5cEws032682 for ; Thu, 13 Feb 2003 21:38:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1E5cE60075393 for ; Thu, 13 Feb 2003 21:38:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA20410; Thu, 13 Feb 2003 21:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA20395 for ; Thu, 13 Feb 2003 21:37:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1E5bJ60075387 for ; Thu, 13 Feb 2003 21:37:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1E5bJ8a030995 for ; Thu, 13 Feb 2003 21:37:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1E5bJbu030994; Thu, 13 Feb 2003 21:37:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302140537.h1E5bJbu030994@xorpc.icir.org> Date: Thu, 13 Feb 2003 21:37:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_attrib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/02/13 21:37:19 Modified files: xorp/bgp/: update_attrib.cc Log message: MacOS X printf() compilation fix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Fri Feb 14 15:44:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Feb 2003 15:45:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ENjCws040974 for ; Fri, 14 Feb 2003 15:45:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENjB60085556 for ; Fri, 14 Feb 2003 15:45:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10627; Fri, 14 Feb 2003 15:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10617 for ; Fri, 14 Feb 2003 15:44:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENib60085530 for ; Fri, 14 Feb 2003 15:44:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ENib8a059137 for ; Fri, 14 Feb 2003 15:44:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ENibDC059136; Fri, 14 Feb 2003 15:44:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302142344.h1ENibDC059136@xorpc.icir.org> Date: Fri, 14 Feb 2003 15:44:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/02/14 15:44:37 Modified files: xorp/libproto/: proto_node.hh Log message: Change return type of ProtoNode::maxvifs() from size_t to uint16_t, because everywhere vif index is assumed to be of uint16_t _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Fri Feb 14 15:55:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Feb 2003 15:56:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ENu8ws041050 for ; Fri, 14 Feb 2003 15:56:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENu760085670 for ; Fri, 14 Feb 2003 15:56:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10827; Fri, 14 Feb 2003 15:56:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10808 for ; Fri, 14 Feb 2003 15:55:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENtx60085661 for ; Fri, 14 Feb 2003 15:55:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ENtw8a059476 for ; Fri, 14 Feb 2003 15:55:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ENtwmA059475; Fri, 14 Feb 2003 15:55:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302142355.h1ENtwmA059475@xorpc.icir.org> Date: Fri, 14 Feb 2003 15:55:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node_cli.cc xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/02/14 15:55:58 Modified files: xorp/mld6igmp/: mld6igmp_node_cli.cc xrl_mld6igmp_node.cc Log message: Change vif index type from size_t to uint16_t _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Fri Feb 14 15:55:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Feb 2003 15:56:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ENuCws041058 for ; Fri, 14 Feb 2003 15:56:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENuC60085673 for ; Fri, 14 Feb 2003 15:56:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10815; Fri, 14 Feb 2003 15:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10786 for ; Fri, 14 Feb 2003 15:55:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENtJ60085659 for ; Fri, 14 Feb 2003 15:55:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ENtI8a059438 for ; Fri, 14 Feb 2003 15:55:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ENtI4b059437; Fri, 14 Feb 2003 15:55:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302142355.h1ENtI4b059437@xorpc.icir.org> Date: Fri, 14 Feb 2003 15:55:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node_cli.cc mfea_unix_comm.cc xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/02/14 15:55:18 Modified files: xorp/mfea/: mfea_node_cli.cc mfea_unix_comm.cc xrl_mfea_node.cc Log message: * Change vif index type from size_t to uint16_t * Replace variable name "vif_index" with "i" inside vif index related loops. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Fri Feb 14 15:59:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Feb 2003 16:00:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1F006ws041107 for ; Fri, 14 Feb 2003 16:00:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1F00660085715 for ; Fri, 14 Feb 2003 16:00:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA10907; Fri, 14 Feb 2003 16:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA10889 for ; Fri, 14 Feb 2003 15:59:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ENx360085683 for ; Fri, 14 Feb 2003 15:59:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ENx38a059663 for ; Fri, 14 Feb 2003 15:59:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ENx362059662; Fri, 14 Feb 2003 15:59:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302142359.h1ENx362059662@xorpc.icir.org> Date: Fri, 14 Feb 2003 15:59:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc pim_node.cc pim_node_cli.cc pim_node_cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/14 15:59:03 Modified files: xorp/pim/: pim_mfc.cc pim_node.cc pim_node_cli.cc pim_node_cli.hh Log message: Change vif index type from size_t to uint16_t _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:04 2005 Subject: No subject Tue Feb 18 16:30:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Feb 2003 16:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1J0V2ws099105 for ; Tue, 18 Feb 2003 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J0V2nR002238 for ; Tue, 18 Feb 2003 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA08131; Tue, 18 Feb 2003 16:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA08120 for ; Tue, 18 Feb 2003 16:30:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J0UanR002236 for ; Tue, 18 Feb 2003 16:30:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1J0Ua95005296 for ; Tue, 18 Feb 2003 16:30:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1J0UZZY005295; Tue, 18 Feb 2003 16:30:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302190030.h1J0UZZY005295@xorpc.icir.org> Date: Tue, 18 Feb 2003 16:30:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_error.hh xrl_error.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/18 16:30:35 Modified files: xorp/libxipc/: xrl_error.hh xrl_error.cc Log message: Move static members out of XrlError. Too painful to print classes containing an XrlError in gdb otherwise. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Tue Feb 18 16:58:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Feb 2003 16:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1J0x3ws099553 for ; Tue, 18 Feb 2003 16:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J0x3nR002491 for ; Tue, 18 Feb 2003 16:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA09098; Tue, 18 Feb 2003 16:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA09073 for ; Tue, 18 Feb 2003 16:58:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J0wQnR002489 for ; Tue, 18 Feb 2003 16:58:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1J0wQ95012501 for ; Tue, 18 Feb 2003 16:58:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1J0wQKD012496; Tue, 18 Feb 2003 16:58:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302190058.h1J0wQKD012496@xorpc.icir.org> Date: Tue, 18 Feb 2003 16:58:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ buffer.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/02/18 16:58:26 Modified files: xorp/mrt/: buffer.h Log message: Add BUFFER_COMPARE() macro. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Tue Feb 18 21:35:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Feb 2003 21:36:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1J5aCws020804 for ; Tue, 18 Feb 2003 21:36:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J5aBnR004828 for ; Tue, 18 Feb 2003 21:36:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA13522; Tue, 18 Feb 2003 21:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA13513 for ; Tue, 18 Feb 2003 21:35:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1J5ZHnR004818 for ; Tue, 18 Feb 2003 21:35:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1J5ZH95057602 for ; Tue, 18 Feb 2003 21:35:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1J5ZHAD057601; Tue, 18 Feb 2003 21:35:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302190535.h1J5ZHAD057601@xorpc.icir.org> Date: Tue, 18 Feb 2003 21:35:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_scope_zone_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/18 21:35:17 Modified files: xorp/pim/: pim_scope_zone_table.cc Log message: Bugfix in PimScopeZone::set_scoped_vif() : vif_index must be < _scoped_vifs.size() instead of <= _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 14:11:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 14:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1LMC3ws018668 for ; Fri, 21 Feb 2003 14:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1LMC3nR040764 for ; Fri, 21 Feb 2003 14:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28018; Fri, 21 Feb 2003 14:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA27996 for ; Fri, 21 Feb 2003 14:11:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1LMBbnR040762 for ; Fri, 21 Feb 2003 14:11:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1LMBb95047149 for ; Fri, 21 Feb 2003 14:11:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1LMBbb2047148; Fri, 21 Feb 2003 14:11:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302212211.h1LMBbb2047148@xorpc.icir.org> Date: Fri, 21 Feb 2003 14:11:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_parser.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/21 14:11:37 Modified files: xorp/libxipc/: xrl_parser.cc Log message: Uncomment part of parsing code for XrlAtomSpells as without it the rtrmgr is broken. Pointy hat to mjh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 14:54:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 14:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1LMt3ws021990 for ; Fri, 21 Feb 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1LMt3nR041182 for ; Fri, 21 Feb 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28951; Fri, 21 Feb 2003 14:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28904 for ; Fri, 21 Feb 2003 14:54:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1LMsWnR041164 for ; Fri, 21 Feb 2003 14:54:32 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1LMsW95047522 for ; Fri, 21 Feb 2003 14:54:32 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1LMsWgK047521; Fri, 21 Feb 2003 14:54:32 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302212254.h1LMsWgK047521@xorpc.icir.org> Date: Fri, 21 Feb 2003 14:54:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ .cvsignore Makefile.am Makefile.in xorp/rtrmgr/ test_templates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/21 14:54:32 Modified files: xorp/rtrmgr/: .cvsignore Makefile.am Makefile.in Added files: xorp/rtrmgr/: test_templates.cc Log message: Add test suite to ensure that rtrmgr template files in CVS parse correctly and that the XRLs in the template files match the XRLs in the XIF files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 16:41:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 16:42:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M0g3ws030134 for ; Fri, 21 Feb 2003 16:42:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M0g3nR042154 for ; Fri, 21 Feb 2003 16:42:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01476; Fri, 21 Feb 2003 16:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01456 for ; Fri, 21 Feb 2003 16:41:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M0fcnR042152 for ; Fri, 21 Feb 2003 16:41:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M0fb95058440 for ; Fri, 21 Feb 2003 16:41:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M0fbMI058439; Fri, 21 Feb 2003 16:41:37 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302220041.h1M0fbMI058439@xorpc.icir.org> Date: Fri, 21 Feb 2003 16:41:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp xorp/rtrmgr/ conf_tree_node.cc config.boot template_commands.cc template_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/21 16:41:37 Modified files: xorp/etc/templates/: bgp.tp xorp/rtrmgr/: conf_tree_node.cc config.boot template_commands.cc template_commands.hh Log message: Fix BGP template file and config.boot for aardvark. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 16:46:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 16:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M0l3ws030540 for ; Fri, 21 Feb 2003 16:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M0l3nR042188 for ; Fri, 21 Feb 2003 16:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01635; Fri, 21 Feb 2003 16:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01606 for ; Fri, 21 Feb 2003 16:46:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M0kAnR042186 for ; Fri, 21 Feb 2003 16:46:10 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M0kA95059063 for ; Fri, 21 Feb 2003 16:46:10 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M0kApA059062; Fri, 21 Feb 2003 16:46:10 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302220046.h1M0kApA059062@xorpc.icir.org> Date: Fri, 21 Feb 2003 16:46:10 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/21 16:46:10 Modified files: xorp/rtrmgr/: template_commands.cc Log message: Better failure diagnosis. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 18:12:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 18:13:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M2D7ws045685 for ; Fri, 21 Feb 2003 18:13:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M2D6nR042832 for ; Fri, 21 Feb 2003 18:13:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03135; Fri, 21 Feb 2003 18:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03120 for ; Fri, 21 Feb 2003 18:12:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M2C2nR042824 for ; Fri, 21 Feb 2003 18:12:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M2C295081396 for ; Fri, 21 Feb 2003 18:12:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M2C2j1081395; Fri, 21 Feb 2003 18:12:02 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200302220212.h1M2C2j1081395@xorpc.icir.org> Date: Fri, 21 Feb 2003 18:12:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/02/21 18:12:02 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: The xrl delete_peer does not require an AS number so remove this argument. Also print a warning message that deleting peers is not currently supported. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 21:46:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 21:47:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M5l6ws063917 for ; Fri, 21 Feb 2003 21:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M5l6nR044304 for ; Fri, 21 Feb 2003 21:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA05713; Fri, 21 Feb 2003 21:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA05692 for ; Fri, 21 Feb 2003 21:46:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M5kHnR044293 for ; Fri, 21 Feb 2003 21:46:17 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M5kH95010556 for ; Fri, 21 Feb 2003 21:46:17 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M5kHJr010555; Fri, 21 Feb 2003 21:46:17 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302220546.h1M5kHJr010555@xorpc.icir.org> Date: Fri, 21 Feb 2003 21:46:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/02/21 21:46:17 Modified files: xorp/etc/templates/: bgp.tp Log message: Fix BGP rtrmgr template to match the change Atanu made in BGP XIF - this should fix the most recent tinderbox failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 21:55:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 21:56:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M5u6ws064605 for ; Fri, 21 Feb 2003 21:56:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M5u5nR044376 for ; Fri, 21 Feb 2003 21:56:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA05862; Fri, 21 Feb 2003 21:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA05854 for ; Fri, 21 Feb 2003 21:55:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M5t6nR044369 for ; Fri, 21 Feb 2003 21:55:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M5t695011680 for ; Fri, 21 Feb 2003 21:55:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M5t6Da011679; Fri, 21 Feb 2003 21:55:06 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302220555.h1M5t6Da011679@xorpc.icir.org> Date: Fri, 21 Feb 2003 21:55:06 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/02/21 21:55:06 Modified files: xorp/etc/templates/: bgp.tp Log message: Add peer enable/disable switch to BGP template. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Fri Feb 21 23:14:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Feb 2003 23:15:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1M7F7ws070544 for ; Fri, 21 Feb 2003 23:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M7F7nR044862 for ; Fri, 21 Feb 2003 23:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA06829; Fri, 21 Feb 2003 23:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA06816 for ; Fri, 21 Feb 2003 23:14:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1M7EXnR044837 for ; Fri, 21 Feb 2003 23:14:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1M7EX95012179 for ; Fri, 21 Feb 2003 23:14:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1M7EXes012178; Fri, 21 Feb 2003 23:14:33 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302220714.h1M7EXes012178@xorpc.icir.org> Date: Fri, 21 Feb 2003 23:14:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rib.tp xorp/rtrmgr/ conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh template_commands.cc template_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/21 23:14:33 Modified files: xorp/etc/templates/: rib.tp xorp/rtrmgr/: conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh template_commands.cc template_commands.hh Log message: Ensure that modules such as the RIB that don't need any explicit configuration from the rtrmgr still get started up when they are needed to satisfy a dependency. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 12:21:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 12:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1MKM2ws033930 for ; Sat, 22 Feb 2003 12:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MKM2nR054486 for ; Sat, 22 Feb 2003 12:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17284; Sat, 22 Feb 2003 12:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA17264 for ; Sat, 22 Feb 2003 12:21:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MKLVnR054484 for ; Sat, 22 Feb 2003 12:21:31 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1MKLV95006400 for ; Sat, 22 Feb 2003 12:21:31 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1MKLVXe006399; Sat, 22 Feb 2003 12:21:31 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302222021.h1MKLVXe006399@xorpc.icir.org> Date: Sat, 22 Feb 2003 12:21:31 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 12:21:31 Modified files: xorp/rtrmgr/: conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh Log message: Remove some unused code, and make the mechanism for starting modules more regular - all modules are now started in the same way, irrespective of whether they need any configuration from the rtrmgr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 13:02:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 13:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1ML32ws036995 for ; Sat, 22 Feb 2003 13:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ML32nR054734 for ; Sat, 22 Feb 2003 13:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17751; Sat, 22 Feb 2003 13:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17728 for ; Sat, 22 Feb 2003 13:02:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1ML2OnR054730 for ; Sat, 22 Feb 2003 13:02:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1ML2O95019108 for ; Sat, 22 Feb 2003 13:02:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1ML2OCn019107; Sat, 22 Feb 2003 13:02:24 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302222102.h1ML2OCn019107@xorpc.icir.org> Date: Sat, 22 Feb 2003 13:02:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc main_rtrmgr.cc template_commands.cc unexpanded_xrl.cc xorp_client.cc xorpsh_main.cc xrldb.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 13:02:23 Modified files: xorp/rtrmgr/: conf_tree_node.cc main_rtrmgr.cc template_commands.cc unexpanded_xrl.cc xorp_client.cc xorpsh_main.cc xrldb.cc Log message: Turn off all non-critical debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 13:13:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 13:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1MLE3ws037827 for ; Sat, 22 Feb 2003 13:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MLE3nR054830 for ; Sat, 22 Feb 2003 13:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17881; Sat, 22 Feb 2003 13:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA17867 for ; Sat, 22 Feb 2003 13:13:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MLDMnR054828 for ; Sat, 22 Feb 2003 13:13:22 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1MLDM95024357 for ; Sat, 22 Feb 2003 13:13:22 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1MLDMZY024356; Sat, 22 Feb 2003 13:13:22 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302222113.h1MLDMZY024356@xorpc.icir.org> Date: Sat, 22 Feb 2003 13:13:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 13:13:22 Modified files: xorp/etc/templates/: bgp.tp xorp/rtrmgr/: template_commands.cc Log message: The sense of the BGP peer disable command in the rtrmgr was reversed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 13:28:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 13:29:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1MLT3ws038966 for ; Sat, 22 Feb 2003 13:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MLT3nR054935 for ; Sat, 22 Feb 2003 13:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA18020; Sat, 22 Feb 2003 13:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA18009 for ; Sat, 22 Feb 2003 13:28:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MLSOnR054931 for ; Sat, 22 Feb 2003 13:28:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1MLSN95028081 for ; Sat, 22 Feb 2003 13:28:23 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1MLSN9P028080; Sat, 22 Feb 2003 13:28:23 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302222128.h1MLSN9P028080@xorpc.icir.org> Date: Sat, 22 Feb 2003 13:28:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/02/22 13:28:23 Modified files: xorp/etc/templates/: bgp.tp Log message: Add no-op set commands to BGP peer nodes, so that xorpsh will allow us to set these from the CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 15:57:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 15:58:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1MNw5ws050245 for ; Sat, 22 Feb 2003 15:58:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MNw5nR055894 for ; Sat, 22 Feb 2003 15:58:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19688; Sat, 22 Feb 2003 15:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19672 for ; Sat, 22 Feb 2003 15:57:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1MNvEnR055890 for ; Sat, 22 Feb 2003 15:57:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1MNvE95036032 for ; Sat, 22 Feb 2003 15:57:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1MNvEsj036031; Sat, 22 Feb 2003 15:57:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302222357.h1MNvEsj036031@xorpc.icir.org> Date: Sat, 22 Feb 2003 15:57:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ .cvsignore Makefile.am Makefile.in print_peer.cc xorp/rtrmgr/ op_commands.cc op_commands.hh xorp/bgp/tools/ print_peers.cc xorpsh_print_peers.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 15:57:14 Modified files: xorp/bgp/tools/: .cvsignore Makefile.am Makefile.in print_peer.cc xorp/rtrmgr/: op_commands.cc op_commands.hh Added files: xorp/bgp/tools/: print_peers.cc xorpsh_print_peers.cc Log message: Add the operational-mode rtrmgr command to print BGP peers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 16:18:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 16:19:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1N0J4ws052030 for ; Sat, 22 Feb 2003 16:19:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N0J4nR056021 for ; Sat, 22 Feb 2003 16:19:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19940; Sat, 22 Feb 2003 16:19:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19935 for ; Sat, 22 Feb 2003 16:19:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N0J0nR056019 for ; Sat, 22 Feb 2003 16:19:00 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1N0J095036230 for ; Sat, 22 Feb 2003 16:19:00 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1N0J087036229; Sat, 22 Feb 2003 16:19:00 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302230019.h1N0J087036229@xorpc.icir.org> Date: Sat, 22 Feb 2003 16:18:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ show_interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 16:18:59 Added files: xorp/rtrmgr/: show_interfaces Log message: Dummy show_interfaces command to keep xorpsh happy _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 16:20:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 16:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1N0L3ws052213 for ; Sat, 22 Feb 2003 16:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N0L3nR056059 for ; Sat, 22 Feb 2003 16:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19978; Sat, 22 Feb 2003 16:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19966 for ; Sat, 22 Feb 2003 16:20:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N0KEnR056056 for ; Sat, 22 Feb 2003 16:20:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1N0KE95036305 for ; Sat, 22 Feb 2003 16:20:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1N0KEnu036304; Sat, 22 Feb 2003 16:20:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302230020.h1N0KEnu036304@xorpc.icir.org> Date: Sat, 22 Feb 2003 16:20:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/02/22 16:20:14 Added files: xorp/etc/templates/: bgp.cmds Log message: Operation-mode rtrmgr config file for BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 17:20:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 17:21:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1N1LAws056782 for ; Sat, 22 Feb 2003 17:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N1L9nR056469 for ; Sat, 22 Feb 2003 17:21:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20671; Sat, 22 Feb 2003 17:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20661 for ; Sat, 22 Feb 2003 17:20:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N1KSnR056460 for ; Sat, 22 Feb 2003 17:20:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1N1KS95056400 for ; Sat, 22 Feb 2003 17:20:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1N1KSAs056399; Sat, 22 Feb 2003 17:20:28 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302230120.h1N1KSAs056399@xorpc.icir.org> Date: Sat, 22 Feb 2003 17:20:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/22 17:20:27 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Fix bug in reading operational-mode command responses - if stderr is closed before stdout, this isn't an error unless there was actually data on stderr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sat Feb 22 22:45:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Feb 2003 22:46:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1N6k3ws081007 for ; Sat, 22 Feb 2003 22:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N6k2nR058513 for ; Sat, 22 Feb 2003 22:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23789; Sat, 22 Feb 2003 22:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23781 for ; Sat, 22 Feb 2003 22:45:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1N6jDnR058511 for ; Sat, 22 Feb 2003 22:45:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1N6jD95000584 for ; Sat, 22 Feb 2003 22:45:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1N6jDdE000583; Sat, 22 Feb 2003 22:45:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302230645.h1N6jDdE000583@xorpc.icir.org> Date: Sat, 22 Feb 2003 22:45:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipnet.hh test_ipv4net.cc test_ipv6net.cc test_ipvxnet.cc timer.hh xorp/rib/ route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/02/22 22:45:13 Modified files: xorp/libxorp/: ipnet.hh test_ipv4net.cc test_ipv6net.cc test_ipvxnet.cc timer.hh xorp/rib/: route.hh Log message: Replace "operator bool()" with method "bool is_valid()". This replacement is for "class XorpTimer" and "template class IPnet". The reason for this replacement is because I got bitten by bool and IPvXNet arguments misordering that wasn't caught by the compiler. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sun Feb 23 9:52:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 09:53:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1NHr2ws032891 for ; Sun, 23 Feb 2003 09:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NHr2nR064828 for ; Sun, 23 Feb 2003 09:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA06456; Sun, 23 Feb 2003 09:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA06444 for ; Sun, 23 Feb 2003 09:52:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NHqQnR064826 for ; Sun, 23 Feb 2003 09:52:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1NHqQ95095594 for ; Sun, 23 Feb 2003 09:52:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1NHqQ8L095593; Sun, 23 Feb 2003 09:52:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302231752.h1NHqQ8L095593@xorpc.icir.org> Date: Sun, 23 Feb 2003 9:52:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/ finder.xrls finder_base.cc finder_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/02/23 09:52:25 Modified files: xorp/xrl/interfaces/: finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/: finder.xrls finder_base.cc finder_base.hh Log message: Add cookie as argument and return value to finder registration call. Avoids issues when connection dies, ie client detects failure before finder and attempts reconnect. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:05 2005 Subject: No subject Sun Feb 23 14:08:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 14:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1NM97ws052266 for ; Sun, 23 Feb 2003 14:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NM96nR066846 for ; Sun, 23 Feb 2003 14:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA21667; Sun, 23 Feb 2003 14:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA21653 for ; Sun, 23 Feb 2003 14:08:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NM85nR066836 for ; Sun, 23 Feb 2003 14:08:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1NM8595026081 for ; Sun, 23 Feb 2003 14:08:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1NM85en026080; Sun, 23 Feb 2003 14:08:05 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302232208.h1NM85en026080@xorpc.icir.org> Date: Sun, 23 Feb 2003 14:08:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/02/23 14:08:05 Modified files: xorp/rtrmgr/: master_conf_tree.cc template_commands.cc Log message: Fix bug in rtrmgr process dependency tracking. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Sun Feb 23 15:57:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 15:58:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1NNw7ws060443 for ; Sun, 23 Feb 2003 15:58:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NNw7nR067643 for ; Sun, 23 Feb 2003 15:58:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22913; Sun, 23 Feb 2003 15:58:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22898 for ; Sun, 23 Feb 2003 15:57:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NNv5nR067639 for ; Sun, 23 Feb 2003 15:57:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1NNv595033779 for ; Sun, 23 Feb 2003 15:57:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1NNv5oQ033778; Sun, 23 Feb 2003 15:57:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302232357.h1NNv5oQ033778@xorpc.icir.org> Date: Sun, 23 Feb 2003 15:57:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/02/23 15:57:05 Modified files: xorp/fea/: ifconfig_rtsock.cc Log message: Remove an unused temporary. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Sun Feb 23 15:58:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 15:59:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1NNx6ws060528 for ; Sun, 23 Feb 2003 15:59:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NNx5nR067652 for ; Sun, 23 Feb 2003 15:59:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22939; Sun, 23 Feb 2003 15:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22930 for ; Sun, 23 Feb 2003 15:58:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1NNwTnR067647 for ; Sun, 23 Feb 2003 15:58:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1NNwS95034102 for ; Sun, 23 Feb 2003 15:58:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1NNwS3p034101; Sun, 23 Feb 2003 15:58:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302232358.h1NNwS3p034101@xorpc.icir.org> Date: Sun, 23 Feb 2003 15:58:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/click_elements/ acclick.m4 aclocal.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/click_elements/ Changes by: hodson@xorpc.icir.org. 03/02/23 15:58:28 Modified files: xorp/fea/click_elements/: acclick.m4 aclocal.m4 Log message: Use a more verbose error message for compiler incompatibility. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Sun Feb 23 20:28:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 20:29:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1O4T3ws080851 for ; Sun, 23 Feb 2003 20:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1O4T3nR069615 for ; Sun, 23 Feb 2003 20:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA26181; Sun, 23 Feb 2003 20:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA26173 for ; Sun, 23 Feb 2003 20:28:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1O4SinR069613 for ; Sun, 23 Feb 2003 20:28:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1O4Si95097036 for ; Sun, 23 Feb 2003 20:28:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1O4SiYB097035; Sun, 23 Feb 2003 20:28:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302240428.h1O4SiYB097035@xorpc.icir.org> Date: Sun, 23 Feb 2003 20:28:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrls.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/02/23 20:28:44 Modified files: xorp/fea/: test_xrls.sh Log message: Update to reflect current FEA - test is fairly simple. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Sun Feb 23 20:37:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 Feb 2003 20:38:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1O4c2ws081535 for ; Sun, 23 Feb 2003 20:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1O4c2nR069691 for ; Sun, 23 Feb 2003 20:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA26317; Sun, 23 Feb 2003 20:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA26303 for ; Sun, 23 Feb 2003 20:37:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1O4bgnR069685 for ; Sun, 23 Feb 2003 20:37:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1O4bg95099049 for ; Sun, 23 Feb 2003 20:37:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1O4bgLs099048; Sun, 23 Feb 2003 20:37:42 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302240437.h1O4bgLs099048@xorpc.icir.org> Date: Sun, 23 Feb 2003 20:37:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/02/23 20:37:42 Modified files: xorp/fea/: ifconfig_rtsock.cc Log message: o Handle the addition of added disabled addresses. They cause no state to be rippled up from the routing socket since the kernel does not have such a concept and has no state for them. Instead the info should be pushed into the live config directly. o Don't bother attempting to push info on non-changed interfaces to push_addr routines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 4:48:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 04:49:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OCn5ws018829 for ; Mon, 24 Feb 2003 04:49:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OCn5nR073815 for ; Mon, 24 Feb 2003 04:49:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA04562; Mon, 24 Feb 2003 04:49:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA04532 for ; Mon, 24 Feb 2003 04:48:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OCmwnR073813 for ; Mon, 24 Feb 2003 04:48:58 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OCmw95062441 for ; Mon, 24 Feb 2003 04:48:58 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OCmwZq062440; Mon, 24 Feb 2003 04:48:58 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302241248.h1OCmwZq062440@xorpc.icir.org> Date: Mon, 24 Feb 2003 4:48:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: mjh@xorpc.icir.org. 03/02/24 04:48:58 xorp/rtrmgr/tools Update of /usr/local/share/doc/apache/cvs/xorp/rtrmgr/tools In directory xorpc.icir.org:/tmp/cvs-serv62434/tools Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/rtrmgr/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 4:53:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 04:54:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OCs3ws019201 for ; Mon, 24 Feb 2003 04:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OCs3nR073859 for ; Mon, 24 Feb 2003 04:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA04835; Mon, 24 Feb 2003 04:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA04827 for ; Mon, 24 Feb 2003 04:53:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OCrmnR073855 for ; Mon, 24 Feb 2003 04:53:48 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OCrm95062903 for ; Mon, 24 Feb 2003 04:53:48 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OCrmhF062902; Mon, 24 Feb 2003 04:53:48 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302241253.h1OCrmhF062902@xorpc.icir.org> Date: Mon, 24 Feb 2003 4:53:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/bgp/tools/ .cvsignore Makefile.am Makefile.in print_routes.cc print_routes.hh xorp/etc/templates/ bgp.cmds xorp/rtrmgr/ Makefile.am Makefile.in xorp/bgp/tools/ print_routes_main.cc xorpsh_print_routes.cc xorp/rtrmgr/tools/ .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: mjh@xorpc.icir.org. 03/02/24 04:53:48 Modified files: ./: configure configure.in xorp/bgp/tools/: .cvsignore Makefile.am Makefile.in print_routes.cc print_routes.hh xorp/etc/templates/: bgp.cmds xorp/rtrmgr/: Makefile.am Makefile.in Added files: xorp/bgp/tools/: print_routes_main.cc xorpsh_print_routes.cc xorp/rtrmgr/tools/: .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh Log message: Add router manager command to display BGP route table. Add a start at a router manager command to display interfaces and vifs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 7:54:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 07:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OFt3ws032837 for ; Mon, 24 Feb 2003 07:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OFt2nR075724 for ; Mon, 24 Feb 2003 07:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id HAA06937; Mon, 24 Feb 2003 07:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id HAA06930 for ; Mon, 24 Feb 2003 07:54:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OFsunR075719 for ; Mon, 24 Feb 2003 07:54:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OFsu95086430 for ; Mon, 24 Feb 2003 07:54:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OFsuoN086429; Mon, 24 Feb 2003 07:54:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302241554.h1OFsuoN086429@xorpc.icir.org> Date: Mon, 24 Feb 2003 7:54:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 03/02/24 07:54:56 Modified files: xorp/etc/templates/: fea.tp Log message: Add toggle for address disable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 11:39:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 11:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OJe3ws051218 for ; Mon, 24 Feb 2003 11:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OJe3nR079154 for ; Mon, 24 Feb 2003 11:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12197; Mon, 24 Feb 2003 11:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12177 for ; Mon, 24 Feb 2003 11:39:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OJdKnR079146 for ; Mon, 24 Feb 2003 11:39:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OJdK95019714 for ; Mon, 24 Feb 2003 11:39:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OJdKSe019713; Mon, 24 Feb 2003 11:39:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302241939.h1OJdKSe019713@xorpc.icir.org> Date: Mon, 24 Feb 2003 11:39:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in finder_messenger.cc finder_messenger.hh finder_module.h finder_msgs.cc finder_ng.cc finder_ng.hh finder_ng_main.cc finder_ng_xrl_target.cc ...finder_ng_xrl_target.hh ...finder_tcp.cc ...finder_tcp.hh ...finder_tcp_messenger.cc ...finder_tcp_messenger.hh ...test_finder_messenger.cc ...test_finder_msgs.cc xorp/libxipc/ finder_ng_client.cc finder_ng_client.hh finder_ng_client_xrl_target.cc finder_ng_client_xrl_target.hh finder_ng_xrl_queue.cc finder_ng_xrl_queue.hh ...test_finder_ng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/24 11:39:20 Modified files: xorp/libxipc/: Makefile.am Makefile.in finder_messenger.cc finder_messenger.hh finder_module.h finder_msgs.cc finder_ng.cc finder_ng.hh finder_ng_main.cc finder_ng_xrl_target.cc finder_ng_xrl_target.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh test_finder_messenger.cc test_finder_msgs.cc Added files: xorp/libxipc/: finder_ng_client.cc finder_ng_client.hh finder_ng_client_xrl_target.cc finder_ng_client_xrl_target.hh finder_ng_xrl_queue.cc finder_ng_xrl_queue.hh test_finder_ng.cc Log message: Add Xrl based finder code. This is not yet hooked into XrlRouter. The new code and classes use the wonderful "NG" tuplet to imply "Next-Generation". When the old finder code is retired, we'll dump this designation (in case we want to do another version). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 11:42:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 11:43:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OJh4ws051535 for ; Mon, 24 Feb 2003 11:43:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OJh3nR079198 for ; Mon, 24 Feb 2003 11:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12266; Mon, 24 Feb 2003 11:43:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12248 for ; Mon, 24 Feb 2003 11:42:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OJgDnR079194 for ; Mon, 24 Feb 2003 11:42:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OJgD95019756 for ; Mon, 24 Feb 2003 11:42:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OJgDtt019755; Mon, 24 Feb 2003 11:42:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302241942.h1OJgDtt019755@xorpc.icir.org> Date: Mon, 24 Feb 2003 11:42:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/24 11:42:13 Modified files: xorp/libxipc/: finder_module.h Log message: Remove DEBUG_LOGGING define. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 14:20:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 14:21:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1OMLBws069050 for ; Mon, 24 Feb 2003 14:21:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OMLAnR080653 for ; Mon, 24 Feb 2003 14:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15410; Mon, 24 Feb 2003 14:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15400 for ; Mon, 24 Feb 2003 14:20:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1OMKhnR080647 for ; Mon, 24 Feb 2003 14:20:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1OMKh95054703 for ; Mon, 24 Feb 2003 14:20:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1OMKhtR054702; Mon, 24 Feb 2003 14:20:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302242220.h1OMKhtR054702@xorpc.icir.org> Date: Mon, 24 Feb 2003 14:20:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc rt_tab_origin.cc rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/02/24 14:20:43 Modified files: xorp/rib/: rib.cc rt_tab_origin.cc rt_tab_register.cc Log message: Compilation fixes for when DEBUG_LOGGING is defined with gcc 3.2.x as compiler. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 17:18:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 17:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P1J3ws087229 for ; Mon, 24 Feb 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P1J3nR082003 for ; Mon, 24 Feb 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19960; Mon, 24 Feb 2003 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19953 for ; Mon, 24 Feb 2003 17:18:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P1IknR082000 for ; Mon, 24 Feb 2003 17:18:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P1Ik95099134 for ; Mon, 24 Feb 2003 17:18:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P1IkSK099133; Mon, 24 Feb 2003 17:18:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302250118.h1P1IkSK099133@xorpc.icir.org> Date: Mon, 24 Feb 2003 17:18:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/02/24 17:18:46 Modified files: xorp/libxipc/: .cvsignore Log message: Add test_finder_ng to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 17:38:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 17:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P1d3ws088777 for ; Mon, 24 Feb 2003 17:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P1d2nR082188 for ; Mon, 24 Feb 2003 17:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20312; Mon, 24 Feb 2003 17:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20304 for ; Mon, 24 Feb 2003 17:38:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P1cpnR082186 for ; Mon, 24 Feb 2003 17:38:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P1cp95008532 for ; Mon, 24 Feb 2003 17:38:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P1cpJC008531; Mon, 24 Feb 2003 17:38:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302250138.h1P1cpJC008531@xorpc.icir.org> Date: Mon, 24 Feb 2003 17:38:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO configure_pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_node.hh pim_node_cli.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_hello.cc pim_scope_zone_table.cc pim_scope_zone_table.hh ...xrl_pim_node.cc ...xrl_pim_node.hh ...xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/02/24 17:38:51 Modified files: xorp/pim/: TODO configure_pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_node.hh pim_node_cli.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_hello.cc pim_scope_zone_table.cc pim_scope_zone_table.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: * Reimplement the PIM Bootstrap mechanism The overall design is very similar to the previous implementation, but the new implementation adds various missing pieces, and fixes a number of problems (some known, other discovered in the process). In addition, several other Bootstrap-related problems are fixed as well. The code passes various (relatively simple) tests, and appears to work better than the previous implementation, but detailed testing is a TODO item. * Note that the configuration format in configure_pim is slightly different; more specifically, the ordering of some of the arguments is different for the following commands: - pim_add_config_cand_bsr_* - pim_add_config_cand_rp_* The format for some PIM Bootstrap configuration-related XRLs is slightly changed as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 18:18:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 18:19:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P2J2ws091876 for ; Mon, 24 Feb 2003 18:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P2J2nR082472 for ; Mon, 24 Feb 2003 18:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20861; Mon, 24 Feb 2003 18:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20852 for ; Mon, 24 Feb 2003 18:18:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P2I2nR082470 for ; Mon, 24 Feb 2003 18:18:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P2I295021845 for ; Mon, 24 Feb 2003 18:18:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P2I18N021844; Mon, 24 Feb 2003 18:18:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302250218.h1P2I18N021844@xorpc.icir.org> Date: Mon, 24 Feb 2003 18:18:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/02/24 18:18:01 Added files: ./: RELEASE_NOTES Log message: Add a new RELEASE_NOTES file. This file is suppose to contain high-level information about various changes to XORP (between releases). The specific format and content is a subject to change. In the mean time, feel free to add high-level description about various changes since release-0.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 20:05:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 20:06:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P463ws000239 for ; Mon, 24 Feb 2003 20:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P463nR083231 for ; Mon, 24 Feb 2003 20:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22374; Mon, 24 Feb 2003 20:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22361 for ; Mon, 24 Feb 2003 20:05:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P45LnR083223 for ; Mon, 24 Feb 2003 20:05:21 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P45LY0008759 for ; Mon, 24 Feb 2003 20:05:21 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P45LkT008758; Mon, 24 Feb 2003 20:05:21 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302250405.h1P45LkT008758@xorpc.icir.org> Date: Mon, 24 Feb 2003 20:05:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ protocol.hh rib.cc rib.hh route.cc route.hh rt_tab_export.cc rt_tab_extint.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/02/24 20:05:21 Modified files: xorp/rib/: protocol.hh rib.cc rib.hh route.cc route.hh rt_tab_export.cc rt_tab_extint.cc Log message: Some code cleanup - remove unused default route constructors, and ensure that every route must carry a reference to the Protocol that created it (or "connected" for directly connected subnets). Use the protocol to ensure that we don't try and add routes for directly connected interfaces through the fea, because it already knows about them, and doesn't like them being added again. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 22:53:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 22:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P6s2ws015164 for ; Mon, 24 Feb 2003 22:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P6s2nR084320 for ; Mon, 24 Feb 2003 22:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24424; Mon, 24 Feb 2003 22:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24416 for ; Mon, 24 Feb 2003 22:53:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P6rqnR084317 for ; Mon, 24 Feb 2003 22:53:52 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P6rpY0051117 for ; Mon, 24 Feb 2003 22:53:51 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P6rp8t051116; Mon, 24 Feb 2003 22:53:51 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302250653.h1P6rp8t051116@xorpc.icir.org> Date: Mon, 24 Feb 2003 22:53:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: mjh@xorpc.icir.org. 03/02/24 22:53:51 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc show_interfaces.hh Log message: Enable retrieval if VIF flags, and printing of results. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Mon Feb 24 22:55:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Feb 2003 22:56:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1P6u3ws015334 for ; Mon, 24 Feb 2003 22:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P6u2nR084356 for ; Mon, 24 Feb 2003 22:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24469; Mon, 24 Feb 2003 22:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24460 for ; Mon, 24 Feb 2003 22:55:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1P6tJnR084350 for ; Mon, 24 Feb 2003 22:55:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1P6tJY0051166 for ; Mon, 24 Feb 2003 22:55:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1P6tJ5g051165; Mon, 24 Feb 2003 22:55:19 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200302250655.h1P6tJ5g051165@xorpc.icir.org> Date: Mon, 24 Feb 2003 22:55:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/02/24 22:55:19 Modified files: xorp/etc/templates/: fea.cmds Log message: Use rtrmgr/tools/show_interfaces from xorpsh to query interface state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Tue Feb 25 10:58:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 10:59:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1PIx7ws099955 for ; Tue, 25 Feb 2003 10:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PIx7nR091850 for ; Tue, 25 Feb 2003 10:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07835; Tue, 25 Feb 2003 10:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07824 for ; Tue, 25 Feb 2003 10:58:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PIwpnR091845 for ; Tue, 25 Feb 2003 10:58:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1PIwoY0028820 for ; Tue, 25 Feb 2003 10:58:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1PIwoXc028819; Tue, 25 Feb 2003 10:58:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302251858.h1PIwoXc028819@xorpc.icir.org> Date: Tue, 25 Feb 2003 10:58:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in finder_ng_main.cc finder_tcp.cc finder_tcp.hh test_finder_messenger.cc test_finder_ng.cc test_finder_tcp.cc xorp/libxipc/ permits.cc permits.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/25 10:58:50 Modified files: xorp/libxipc/: Makefile.am Makefile.in finder_ng_main.cc finder_tcp.cc finder_tcp.hh test_finder_messenger.cc test_finder_ng.cc test_finder_tcp.cc Added files: xorp/libxipc/: permits.cc permits.hh Log message: Move XIPC access lists for hosts and nets into permits.hh and permits.cc. Currently only the new finder observes these, but when we ditch the old finder, all IP based communications will use these as part of their security strategy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Tue Feb 25 11:15:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 11:16:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1PJG7ws002116 for ; Tue, 25 Feb 2003 11:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PJG7nR092019 for ; Tue, 25 Feb 2003 11:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08187; Tue, 25 Feb 2003 11:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08174 for ; Tue, 25 Feb 2003 11:15:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PJFJnR092003 for ; Tue, 25 Feb 2003 11:15:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1PJFJY0029004 for ; Tue, 25 Feb 2003 11:15:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1PJFJkj029003; Tue, 25 Feb 2003 11:15:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302251915.h1PJFJkj029003@xorpc.icir.org> Date: Tue, 25 Feb 2003 11:15:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/25 11:15:19 Modified files: xorp/pim/: pim_bsr.cc Log message: Compilation fix for gcc32 (on FreeBSD). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Tue Feb 25 11:52:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 11:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1PJr7ws023522 for ; Tue, 25 Feb 2003 11:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PJr7nR092336 for ; Tue, 25 Feb 2003 11:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08890; Tue, 25 Feb 2003 11:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08864 for ; Tue, 25 Feb 2003 11:52:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1PJq2nR092325 for ; Tue, 25 Feb 2003 11:52:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1PJq2Y0029960 for ; Tue, 25 Feb 2003 11:52:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1PJq2aH029959; Tue, 25 Feb 2003 11:52:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302251952.h1PJq2aH029959@xorpc.icir.org> Date: Tue, 25 Feb 2003 11:52:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_std_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/25 11:52:02 Modified files: xorp/libxipc/: xrl_pf.hh xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_std_router.hh Log message: Base XrlPFConstructorError on XorpReasonedException. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:06 2005 Subject: No subject Tue Feb 25 16:11:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0C3ws077615 for ; Tue, 25 Feb 2003 16:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0C3nR094615 for ; Tue, 25 Feb 2003 16:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15199; Tue, 25 Feb 2003 16:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15160 for ; Tue, 25 Feb 2003 16:11:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0B9nR094606 for ; Tue, 25 Feb 2003 16:11:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0B9Y0060365 for ; Tue, 25 Feb 2003 16:11:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q0B9Yw060364; Tue, 25 Feb 2003 16:11:09 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302260011.h1Q0B9Yw060364@xorpc.icir.org> Date: Tue, 25 Feb 2003 16:11:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/25 16:11:09 Modified files: xorp/libxipc/: finder_ng_client.cc Log message: Move clean of finder info to point when new connection with finder is established, rather than first detecting when finder has gone away, ie allow processes to continue in absence of finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 16:12:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:13:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0D6ws077743 for ; Tue, 25 Feb 2003 16:13:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0D2nR094626 for ; Tue, 25 Feb 2003 16:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15237; Tue, 25 Feb 2003 16:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15216 for ; Tue, 25 Feb 2003 16:12:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0CFnR094621 for ; Tue, 25 Feb 2003 16:12:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0CFY0060478 for ; Tue, 25 Feb 2003 16:12:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q0CFR0060476; Tue, 25 Feb 2003 16:12:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302260012.h1Q0CFR0060476@xorpc.icir.org> Date: Tue, 25 Feb 2003 16:12:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/25 16:12:15 Modified files: xorp/libxipc/: test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Log message: Move the dispatching of Xrl's out of per protocol family methods into XrlCmdDispatcher class. This is primarily a shim to allow both sets of finder code to exist simultaneous. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 16:14:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:15:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F3ws077978 for ; Tue, 25 Feb 2003 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F3nR094655 for ; Tue, 25 Feb 2003 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15320; Tue, 25 Feb 2003 16:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15285 for ; Tue, 25 Feb 2003 16:14:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0EFnR094636 for ; Tue, 25 Feb 2003 16:14:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0EFY0060556 for ; Tue, 25 Feb 2003 16:14:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q0EFET060555; Tue, 25 Feb 2003 16:14:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302260014.h1Q0EFET060555@xorpc.icir.org> Date: Tue, 25 Feb 2003 16:14:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ buffer.hh config_param.hh heap.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.hh ipvxnet.hh test_ipnet.cc transaction.hh trie.hh vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/02/25 16:14:15 Modified files: xorp/libxorp/: buffer.hh config_param.hh heap.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.hh ipvxnet.hh test_ipnet.cc transaction.hh trie.hh vif.hh Log message: Add "explicit" to some of the class constructors in libxorp that have a single argument (mostly when the argument is "int"-like). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 16:14:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:15:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F5ws077986 for ; Tue, 25 Feb 2003 16:15:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F5nR094659 for ; Tue, 25 Feb 2003 16:15:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15335; Tue, 25 Feb 2003 16:15:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15303 for ; Tue, 25 Feb 2003 16:14:44 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0EinR094648 for ; Tue, 25 Feb 2003 16:14:44 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0Ei8J070858 for ; Tue, 25 Feb 2003 16:14:44 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200302260014.h1Q0Ei8J070858@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh In-Reply-To: Your message of "Tue, 25 Feb 2003 16:12:15." <200302260012.h1Q0CFR0060476@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 25 Feb 2003 16:14:44 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/libxipc/ | Changes by: hodson@xorpc.icir.org. 03/02/25 16:12:15 | | Modified files: | xorp/libxipc/: test_inproc.cc test_stcp.cc test_sudp.cc | xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh | xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc | xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh | xrl_router.cc xrl_router.hh | | Log message: | Move the dispatching of Xrl's out of per protocol family methods into | XrlCmdDispatcher class. This is primarily a shim to allow both sets | of finder code to exist simultaneous. s/ous/ously/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 16:14:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:15:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F7ws077996 for ; Tue, 25 Feb 2003 16:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0F7nR094681 for ; Tue, 25 Feb 2003 16:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15351; Tue, 25 Feb 2003 16:15:06 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15312 for ; Tue, 25 Feb 2003 16:14:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0ExnR094650 for ; Tue, 25 Feb 2003 16:14:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0EwY0060590 for ; Tue, 25 Feb 2003 16:14:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q0EwKD060589; Tue, 25 Feb 2003 16:14:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302260014.h1Q0EwKD060589@xorpc.icir.org> Date: Tue, 25 Feb 2003 16:14:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_attrib.hh xorp/fea/ fti_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/02/25 16:14:58 Modified files: xorp/bgp/: update_attrib.hh xorp/fea/: fti_rtsock.cc Log message: Add explicit casting due to the "explicit" constructor modification. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 16:34:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 16:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0Z3ws080406 for ; Tue, 25 Feb 2003 16:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0Z2nR094843 for ; Tue, 25 Feb 2003 16:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15821; Tue, 25 Feb 2003 16:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15801 for ; Tue, 25 Feb 2003 16:34:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0YPnR094834 for ; Tue, 25 Feb 2003 16:34:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q0YOY0066231 for ; Tue, 25 Feb 2003 16:34:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q0YOcZ066230; Tue, 25 Feb 2003 16:34:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302260034.h1Q0YOcZ066230@xorpc.icir.org> Date: Tue, 25 Feb 2003 16:34:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/25 16:34:24 Modified files: xorp/pim/: pim_proto.h Log message: Change the definition of PIM_BOOTSTRAP_SCOPE_ZONE_TIMEOUT_DEFAULT to be 10 times of PIM_BOOTSTRAP_BOOTSTRAP_TIMEOUT_DEFAULT i.e., 1300 instead of 1500 (according to a change in the spec that will be in the next BSR draft (03 or 04?)). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Tue Feb 25 19:32:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Feb 2003 19:33:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1Q3X7ws007380 for ; Tue, 25 Feb 2003 19:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q3X7nR096319 for ; Tue, 25 Feb 2003 19:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA18982; Tue, 25 Feb 2003 19:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA18970 for ; Tue, 25 Feb 2003 19:32:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1Q3WCnR096314 for ; Tue, 25 Feb 2003 19:32:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1Q3WCY0095827 for ; Tue, 25 Feb 2003 19:32:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1Q3WCj2095826; Tue, 25 Feb 2003 19:32:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302260332.h1Q3WCj2095826@xorpc.icir.org> Date: Tue, 25 Feb 2003 19:32:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/25 19:32:12 Modified files: xorp/pim/: pim_bsr.cc Log message: Bugfix in computing the "Randomized Override Interval": divide log(X) by log(2.0) to get the log_2(X) result, because the log() function computes the natural logarithm. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 10:32:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 10:33:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QIX2ws016246 for ; Wed, 26 Feb 2003 10:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIX2nR004916 for ; Wed, 26 Feb 2003 10:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04627; Wed, 26 Feb 2003 10:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04609 for ; Wed, 26 Feb 2003 10:32:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIWWnR004910 for ; Wed, 26 Feb 2003 10:32:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QIWWY0018703 for ; Wed, 26 Feb 2003 10:32:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QIWWtj018702; Wed, 26 Feb 2003 10:32:32 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302261832.h1QIWWtj018702@xorpc.icir.org> Date: Wed, 26 Feb 2003 10:32:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ permits.hh permits.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/26 10:32:32 Modified files: xorp/libxipc/: permits.hh permits.cc Log message: Add methods to clear permission lists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 10:32:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 10:33:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QIX4ws016254 for ; Wed, 26 Feb 2003 10:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIX4nR004920 for ; Wed, 26 Feb 2003 10:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04642; Wed, 26 Feb 2003 10:33:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04620 for ; Wed, 26 Feb 2003 10:32:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIWvnR004914 for ; Wed, 26 Feb 2003 10:32:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QIWvY0018741 for ; Wed, 26 Feb 2003 10:32:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QIWvjl018740; Wed, 26 Feb 2003 10:32:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302261832.h1QIWvjl018740@xorpc.icir.org> Date: Wed, 26 Feb 2003 10:32:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/26 10:32:57 Modified files: xorp/libxipc/: finder_tcp.cc Log message: Method rename. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 10:33:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 10:34:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QIY3ws016381 for ; Wed, 26 Feb 2003 10:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIY3nR004933 for ; Wed, 26 Feb 2003 10:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04688; Wed, 26 Feb 2003 10:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04664 for ; Wed, 26 Feb 2003 10:33:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QIXdnR004930 for ; Wed, 26 Feb 2003 10:33:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QIXdY0018786 for ; Wed, 26 Feb 2003 10:33:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QIXdrj018785; Wed, 26 Feb 2003 10:33:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302261833.h1QIXdrj018785@xorpc.icir.org> Date: Wed, 26 Feb 2003 10:33:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_xrl_target.hh finder_ng_xrl_target.cc xorp/xrl/interfaces/ finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/ finder.xrls finder_base.cc finder_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/02/26 10:33:39 Modified files: xorp/libxipc/: finder_ng_xrl_target.hh finder_ng_xrl_target.cc xorp/xrl/interfaces/: finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/: finder.xrls finder_base.cc finder_base.hh Log message: Export permitted host and net lists from finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 11:07:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 11:08:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QJ82ws051801 for ; Wed, 26 Feb 2003 11:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QJ82nR005246 for ; Wed, 26 Feb 2003 11:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05679; Wed, 26 Feb 2003 11:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05672 for ; Wed, 26 Feb 2003 11:07:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QJ7unR005244 for ; Wed, 26 Feb 2003 11:07:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QJ7uY0019571 for ; Wed, 26 Feb 2003 11:07:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QJ7uAe019570; Wed, 26 Feb 2003 11:07:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302261907.h1QJ7uAe019570@xorpc.icir.org> Date: Wed, 26 Feb 2003 11:07:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/26 11:07:56 Modified files: xorp/libxipc/: call_xrl.cc Log message: Remove extraneous include. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 11:46:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 11:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QJl2ws075987 for ; Wed, 26 Feb 2003 11:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QJl2nR005568 for ; Wed, 26 Feb 2003 11:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06756; Wed, 26 Feb 2003 11:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06723 for ; Wed, 26 Feb 2003 11:46:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QJk3nR005564 for ; Wed, 26 Feb 2003 11:46:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QJk3Y0020127 for ; Wed, 26 Feb 2003 11:46:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QJk3wt020126; Wed, 26 Feb 2003 11:46:03 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302261946.h1QJk3wt020126@xorpc.icir.org> Date: Wed, 26 Feb 2003 11:46:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_msgs.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/02/26 11:46:03 Modified files: xorp/libxipc/: finder_msgs.hh Log message: Remove extraneous include. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 11:59:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 12:00:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1QK0Bws077560 for ; Wed, 26 Feb 2003 12:00:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QK0BnR005683 for ; Wed, 26 Feb 2003 12:00:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07049; Wed, 26 Feb 2003 12:00:10 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA07032 for ; Wed, 26 Feb 2003 11:59:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1QJxenR005648 for ; Wed, 26 Feb 2003 11:59:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1QJxdY0020287 for ; Wed, 26 Feb 2003 11:59:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1QJxd99020286; Wed, 26 Feb 2003 11:59:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302261959.h1QJxd99020286@xorpc.icir.org> Date: Wed, 26 Feb 2003 11:59:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim pim_bsr.cc pim_bsr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/26 11:59:39 Modified files: xorp/pim/: configure_pim pim_bsr.cc pim_bsr.hh Log message: * Add flags to BsrZone to distinguish between "config", "active", "expire", and "test" BSR zones. * Fix BsrGroupPrefix::delete_rp() to delete RPs from the RP table only if the zone we are deleting from is "active" or "expire". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 17:58:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 17:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1R1x2ws079010 for ; Wed, 26 Feb 2003 17:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R1x2nR008663 for ; Wed, 26 Feb 2003 17:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15069; Wed, 26 Feb 2003 17:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15060 for ; Wed, 26 Feb 2003 17:58:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R1wOnR008655 for ; Wed, 26 Feb 2003 17:58:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1R1wOY0081078 for ; Wed, 26 Feb 2003 17:58:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1R1wOVI081077; Wed, 26 Feb 2003 17:58:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302270158.h1R1wOVI081077@xorpc.icir.org> Date: Wed, 26 Feb 2003 17:58:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/02/26 17:58:24 Modified files: xorp/libxipc/: finder_ng_client.cc Log message: Cast (size_t) argument to (uint32_t) inside printf(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 18:03:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 18:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1R243ws079549 for ; Wed, 26 Feb 2003 18:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R242nR008711 for ; Wed, 26 Feb 2003 18:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA15156; Wed, 26 Feb 2003 18:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA15146 for ; Wed, 26 Feb 2003 18:03:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R23TnR008709 for ; Wed, 26 Feb 2003 18:03:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1R23TY0081121 for ; Wed, 26 Feb 2003 18:03:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1R23T3t081120; Wed, 26 Feb 2003 18:03:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302270203.h1R23T3t081120@xorpc.icir.org> Date: Wed, 26 Feb 2003 18:03:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp_messenger.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/02/26 18:03:29 Modified files: xorp/libxipc/: finder_tcp_messenger.cc Log message: Cast (size_t) argument to (uint32_t) inside XLOG_ERROR() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 19:11:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 19:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1R3C3ws096616 for ; Wed, 26 Feb 2003 19:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R3C3nR009219 for ; Wed, 26 Feb 2003 19:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16436; Wed, 26 Feb 2003 19:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16414 for ; Wed, 26 Feb 2003 19:11:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R3B7nR009215 for ; Wed, 26 Feb 2003 19:11:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1R3B7Y0082956 for ; Wed, 26 Feb 2003 19:11:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1R3B768082955; Wed, 26 Feb 2003 19:11:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302270311.h1R3B768082955@xorpc.icir.org> Date: Wed, 26 Feb 2003 19:11:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_node.hh pim_proto_cand_rp_adv.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/02/26 19:11:07 Modified files: xorp/pim/: configure_pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_node.hh pim_proto_cand_rp_adv.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Implement generation of PIM Bootstrap and Cand-RP-Adv messages (for testing purpose), and add the appropriate XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Wed Feb 26 19:23:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Feb 2003 19:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1R3O3ws002959 for ; Wed, 26 Feb 2003 19:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R3O3nR009291 for ; Wed, 26 Feb 2003 19:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16593; Wed, 26 Feb 2003 19:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16586 for ; Wed, 26 Feb 2003 19:23:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1R3NnnR009289 for ; Wed, 26 Feb 2003 19:23:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1R3NnY0083549 for ; Wed, 26 Feb 2003 19:23:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1R3Nm1p083548; Wed, 26 Feb 2003 19:23:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302270323.h1R3Nm1p083548@xorpc.icir.org> Date: Wed, 26 Feb 2003 19:23:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_cand_rp_adv.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/26 19:23:48 Modified files: xorp/pim/: pim_proto_cand_rp_adv.cc Log message: If attempt to send PIM Cand-RP-Adv message(s), but the address of one of the RPs in a zone is not my address, then PimVif::pim_cand_rp_adv_send() returns an error (XORP_ERROR) instead of silently ignoring this RP address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Thu Feb 27 11:42:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Feb 2003 11:43:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1RJh8ws033561 for ; Thu, 27 Feb 2003 11:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1RJh7nR018815 for ; Thu, 27 Feb 2003 11:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03810; Thu, 27 Feb 2003 11:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03768 for ; Thu, 27 Feb 2003 11:42:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1RJgOnR018809 for ; Thu, 27 Feb 2003 11:42:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1RJgOY0006734 for ; Thu, 27 Feb 2003 11:42:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1RJgOo0006733; Thu, 27 Feb 2003 11:42:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302271942.h1RJgOo0006733@xorpc.icir.org> Date: Thu, 27 Feb 2003 11:42:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc pim_proto_cand_rp_adv.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/27 11:42:24 Modified files: xorp/pim/: pim_bsr.cc pim_proto_cand_rp_adv.cc Log message: * On second thought, reverse-back my previous change to PimVif::pim_cand_rp_adv_send() inside pim_proto_cand_rp_adv.cc : now, if one of the RP addresses in a BsrZone is not mine, then silently ignore it and don't send a Cand-RP-Adv for that address. Thus, the code in pim_proto_cand_rp_adv.cc is less architecturally-dependent on the rest of the Bootstrap-related code. * Add explicit check to PimBsr::send_test_cand_rp_adv() (inside pim_bsr.cc) that all RP addresses are mine before generating a Cand-RP-Adv message (that is intended for testing purpose). In the future, the above logistics might be revised again: e.g., if we want to enable test-generating of Cand-RP-Adv messages for third-party RP addresses. For security reasons, currently this is disabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Thu Feb 27 11:54:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Feb 2003 11:55:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1RJt6ws035123 for ; Thu, 27 Feb 2003 11:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1RJt6nR018941 for ; Thu, 27 Feb 2003 11:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA04163; Thu, 27 Feb 2003 11:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA04132 for ; Thu, 27 Feb 2003 11:54:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1RJsGnR018915 for ; Thu, 27 Feb 2003 11:54:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1RJsGY0006933 for ; Thu, 27 Feb 2003 11:54:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1RJsGVm006932; Thu, 27 Feb 2003 11:54:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200302271954.h1RJsGVm006932@xorpc.icir.org> Date: Thu, 27 Feb 2003 11:54:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/harness/ Makefile.am Makefile.in xorp/bgp/tools/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in xorp/rtrmgr/tools/ Makefile.am Makefile.in xorp/xrl/tests/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/02/27 11:54:15 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/bgp/harness/: Makefile.am Makefile.in xorp/bgp/tools/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in xorp/rtrmgr/tools/: Makefile.am Makefile.in xorp/xrl/tests/: Makefile.am Makefile.in Log message: Link against libcomm where libxipc is used since libxipc will shortly depend on libcomm. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:07 2005 Subject: No subject Thu Feb 27 19:00:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Feb 2003 19:01:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1S317ws016828 for ; Thu, 27 Feb 2003 19:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1S316nR022391 for ; Thu, 27 Feb 2003 19:01:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25892; Thu, 27 Feb 2003 19:01:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25791 for ; Thu, 27 Feb 2003 19:00:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1S30CnR022382 for ; Thu, 27 Feb 2003 19:00:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1S30CY0070994 for ; Thu, 27 Feb 2003 19:00:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1S30CS7070993; Thu, 27 Feb 2003 19:00:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302280300.h1S30CS7070993@xorpc.icir.org> Date: Thu, 27 Feb 2003 19:00:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/27 19:00:12 Modified files: xorp/pim/: pim_bsr.cc Log message: On startup, set the BS Timer for a candidate BSR to BS Timeout (as specified in the spec), instead of "BS Timeout"/10 (the shorter value was used for fast convergence during non-Bootstrap related testing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Thu Feb 27 19:01:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Feb 2003 19:02:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1S326ws016945 for ; Thu, 27 Feb 2003 19:02:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1S326nR022409 for ; Thu, 27 Feb 2003 19:02:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25963; Thu, 27 Feb 2003 19:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25933 for ; Thu, 27 Feb 2003 19:01:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1S31NnR022395 for ; Thu, 27 Feb 2003 19:01:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1S31NY0071050 for ; Thu, 27 Feb 2003 19:01:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1S31NKW071049; Thu, 27 Feb 2003 19:01:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302280301.h1S31NKW071049@xorpc.icir.org> Date: Thu, 27 Feb 2003 19:01:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/27 19:01:23 Modified files: xorp/pim/: pim_node_cli.cc Log message: Show info for "Expiring zones" and "Expiring RPs" for the "show pim bootstrap" and "show pim bootstrap rps" CLI commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Fri Feb 28 14:52:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Feb 2003 14:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h1SMr7ws067156 for ; Fri, 28 Feb 2003 14:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1SMr7nR033562 for ; Fri, 28 Feb 2003 14:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16743; Fri, 28 Feb 2003 14:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA16721 for ; Fri, 28 Feb 2003 14:52:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h1SMq3nR033557 for ; Fri, 28 Feb 2003 14:52:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h1SMq3Y0024617 for ; Fri, 28 Feb 2003 14:52:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h1SMq3k8024616; Fri, 28 Feb 2003 14:52:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200302282252.h1SMq3k8024616@xorpc.icir.org> Date: Fri, 28 Feb 2003 14:52:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/02/28 14:52:03 Modified files: xorp/pim/: TODO Log message: Add a TODO entry re. the Bootstrap spec. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Fri Feb 28 16:04:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Feb 2003 16:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h21053ws092075 for ; Fri, 28 Feb 2003 16:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h21052nR034137 for ; Fri, 28 Feb 2003 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18152; Fri, 28 Feb 2003 16:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18144 for ; Fri, 28 Feb 2003 16:04:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2104fnR034132 for ; Fri, 28 Feb 2003 16:04:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2104fY0025272 for ; Fri, 28 Feb 2003 16:04:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2104fij025271; Fri, 28 Feb 2003 16:04:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303010004.h2104fij025271@xorpc.icir.org> Date: Fri, 28 Feb 2003 16:04:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_1_candidate_bsr_state_machine.eps pim_test_6_1_candidate_bsr_state_machine.fig xorp/docs/pim_testsuite/figs/ pim_test_6_1_single_bsr_election.eps pim_test_6_1_single_bsr_election.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/02/28 16:04:41 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_1_candidate_bsr_state_machine.eps pim_test_6_1_candidate_bsr_state_machine.fig Removed files: xorp/docs/pim_testsuite/figs/: pim_test_6_1_single_bsr_election.eps pim_test_6_1_single_bsr_election.fig Log message: * Add Section 6.1 "Candidate BSR State Machine". The implementation passes all described scenarious. * Remove the old Section 6.1 "Single BSR election", because its content is superseded by the new Section 6.1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 11:50:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 11:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h21Jp2ws047487 for ; Sat, 1 Mar 2003 11:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h21Jp2nR046466 for ; Sat, 1 Mar 2003 11:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05245; Sat, 1 Mar 2003 11:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05236 for ; Sat, 1 Mar 2003 11:50:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h21JoDnR046464 for ; Sat, 1 Mar 2003 11:50:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h21JoCY0079714 for ; Sat, 1 Mar 2003 11:50:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h21JoCuN079713; Sat, 1 Mar 2003 11:50:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303011950.h21JoCuN079713@xorpc.icir.org> Date: Sat, 1 Mar 2003 11:50:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/01 11:50:12 Modified files: xorp/pim/: pim_mre_track_state.cc Log message: * Remove incorrect XLOG_ASSERT() statements * Add XLOG_ASSERT() statements to other places. * Remove duplicated "break;". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 13:49:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 13:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h21Lo6ws061600 for ; Sat, 1 Mar 2003 13:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h21Lo6nR047267 for ; Sat, 1 Mar 2003 13:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA06572; Sat, 1 Mar 2003 13:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA06556 for ; Sat, 1 Mar 2003 13:49:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h21Ln5nR047237 for ; Sat, 1 Mar 2003 13:49:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h21Ln5Y0008927 for ; Sat, 1 Mar 2003 13:49:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h21Ln5Li008926; Sat, 1 Mar 2003 13:49:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303012149.h21Ln5Li008926@xorpc.icir.org> Date: Sat, 1 Mar 2003 13:49:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/01 13:49:05 Modified files: xorp/libxorp/: selector.hh Log message: Remove remnant of ref counted file selector. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 20:58:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 20:59:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h224x7ws012480 for ; Sat, 1 Mar 2003 20:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h224x7nR049864 for ; Sat, 1 Mar 2003 20:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA11813; Sat, 1 Mar 2003 20:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA11803 for ; Sat, 1 Mar 2003 20:58:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h224wrnR049860 for ; Sat, 1 Mar 2003 20:58:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h224wrY0051778 for ; Sat, 1 Mar 2003 20:58:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h224wrmk051777; Sat, 1 Mar 2003 20:58:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303020458.h224wrmk051777@xorpc.icir.org> Date: Sat, 1 Mar 2003 20:58:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/01 20:58:52 Modified files: xorp/pim/: pim_config.cc Log message: Modify PimNode::add_config_cand_rp_by_addr() such that the BSR Zone ID is set to the default 224.0.0.0/4 for non-scoped zones if we are configuring a Cand-RP for a given group prefix only. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 22:46:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 22:47:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h226l6ws025204 for ; Sat, 1 Mar 2003 22:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226l6nR050516 for ; Sat, 1 Mar 2003 22:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12856; Sat, 1 Mar 2003 22:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12846 for ; Sat, 1 Mar 2003 22:46:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226kWnR050511 for ; Sat, 1 Mar 2003 22:46:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h226kWY0070987 for ; Sat, 1 Mar 2003 22:46:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h226kWwS070986; Sat, 1 Mar 2003 22:46:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303020646.h226kWwS070986@xorpc.icir.org> Date: Sat, 1 Mar 2003 22:46:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/01 22:46:31 Modified files: xorp/pim/: pim_bsr.cc Log message: Send the periodic or the cancelling (on shutdown) Cand-RP-Adv messages only if the BSR state machine is in Candidate-BSR or Accept Preferred state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 22:51:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 22:52:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h226q3ws025796 for ; Sat, 1 Mar 2003 22:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226q2nR050543 for ; Sat, 1 Mar 2003 22:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12912; Sat, 1 Mar 2003 22:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12899 for ; Sat, 1 Mar 2003 22:51:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226pVnR050541 for ; Sat, 1 Mar 2003 22:51:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h226pVY0071070 for ; Sat, 1 Mar 2003 22:51:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h226pV78071069; Sat, 1 Mar 2003 22:51:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303020651.h226pV78071069@xorpc.icir.org> Date: Sat, 1 Mar 2003 22:51:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_2_non_candidate_bsr_state_machine.fig xorp/docs/pim_testsuite/figs/ pim_test_6_2_single_router_rpset.eps pim_test_6_2_single_router_rpset.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/01 22:51:31 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_2_non_candidate_bsr_state_machine.fig Removed files: xorp/docs/pim_testsuite/figs/: pim_test_6_2_single_router_rpset.eps pim_test_6_2_single_router_rpset.fig Log message: * Add Section 6.2 "Non-Candidate BSR State Machine". The implementation passes all described scenarious. * Remove the old Section 6.2 "Single Router RP-Set", because its content will superseded by another section later (6.3 or 6.4?). * Fix the SZ Timeout value to be 1300 instead of 1500 (according to the lastest edition of the spec). * Minor editing to the rest of the text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sat Mar 1 22:52:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 Mar 2003 22:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h226r3ws025908 for ; Sat, 1 Mar 2003 22:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226r2nR050551 for ; Sat, 1 Mar 2003 22:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12941; Sat, 1 Mar 2003 22:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA12927 for ; Sat, 1 Mar 2003 22:52:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h226q8nR050549 for ; Sat, 1 Mar 2003 22:52:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h226q8Y0071116 for ; Sat, 1 Mar 2003 22:52:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h226q8il071115; Sat, 1 Mar 2003 22:52:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303020652.h226q8il071115@xorpc.icir.org> Date: Sat, 1 Mar 2003 22:52:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/figs/ pim_test_6_2_non_candidate_bsr_state_machine.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/01 22:52:08 Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_2_non_candidate_bsr_state_machine.eps Log message: Add forgotten auto-generated EPS file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 18:00:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 18:01:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23217ws063687 for ; Sun, 2 Mar 2003 18:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23217nR059683 for ; Sun, 2 Mar 2003 18:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27241; Sun, 2 Mar 2003 18:01:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27218 for ; Sun, 2 Mar 2003 18:00:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2320NnR059672 for ; Sun, 2 Mar 2003 18:00:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2320MY0027869 for ; Sun, 2 Mar 2003 18:00:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2320Mxr027868; Sun, 2 Mar 2003 18:00:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030200.h2320Mxr027868@xorpc.icir.org> Date: Sun, 2 Mar 2003 18:00:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/02 18:00:22 Modified files: xorp/mfea/: xrl_mfea_shell_funcs.sh Log message: Print type of XRL arguments when printing the usage string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 18:00:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 18:01:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23218ws063697 for ; Sun, 2 Mar 2003 18:01:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23218nR059687 for ; Sun, 2 Mar 2003 18:01:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27256; Sun, 2 Mar 2003 18:01:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27226 for ; Sun, 2 Mar 2003 18:00:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2320gnR059674 for ; Sun, 2 Mar 2003 18:00:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2320gY0027899 for ; Sun, 2 Mar 2003 18:00:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2320gXh027898; Sun, 2 Mar 2003 18:00:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030200.h2320gXh027898@xorpc.icir.org> Date: Sun, 2 Mar 2003 18:00:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/02 18:00:42 Modified files: xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh Log message: Print type of XRL arguments when printing the usage string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 18:07:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 18:08:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23286ws064532 for ; Sun, 2 Mar 2003 18:08:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23286nR059724 for ; Sun, 2 Mar 2003 18:08:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27333; Sun, 2 Mar 2003 18:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27314 for ; Sun, 2 Mar 2003 18:07:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23272nR059718 for ; Sun, 2 Mar 2003 18:07:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h23272Y0028124 for ; Sun, 2 Mar 2003 18:07:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h23272oD028123; Sun, 2 Mar 2003 18:07:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030207.h23272oD028123@xorpc.icir.org> Date: Sun, 2 Mar 2003 18:07:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.hh pim_scope_zone_table.cc pim_scope_zone_table.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/02 18:07:02 Modified files: xorp/pim/: pim_config.cc pim_node.hh pim_scope_zone_table.cc pim_scope_zone_table.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Add XRLs to configure PIM scope zones by adding/deleting network interfaces as part of each zone. Currently, the scoped zones configuration is used only by the Bootstrap mechanism. Though, probably the handling of some other PIM messages (e.g., PIM Join/Prune, Assert) should consider whether a Join/Prune message is going to cross a scope zone boundary. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 19:25:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 19:26:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h233Q7ws073713 for ; Sun, 2 Mar 2003 19:26:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h233Q7nR060256 for ; Sun, 2 Mar 2003 19:26:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA28123; Sun, 2 Mar 2003 19:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA28114 for ; Sun, 2 Mar 2003 19:25:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h233PonR060251 for ; Sun, 2 Mar 2003 19:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h233PoY0029799 for ; Sun, 2 Mar 2003 19:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h233PoCT029798; Sun, 2 Mar 2003 19:25:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030325.h233PoCT029798@xorpc.icir.org> Date: Sun, 2 Mar 2003 19:25:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_scope_zone_table.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/02 19:25:50 Modified files: xorp/pim/: pim_scope_zone_table.hh Log message: Add new methods to return the list of scoped zones, and to return the scope zone prefix for each zone. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 19:26:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 19:27:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h233RAws073841 for ; Sun, 2 Mar 2003 19:27:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h233RAnR060272 for ; Sun, 2 Mar 2003 19:27:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA28156; Sun, 2 Mar 2003 19:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA28139 for ; Sun, 2 Mar 2003 19:26:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h233QQnR060259 for ; Sun, 2 Mar 2003 19:26:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h233QQY0029838 for ; Sun, 2 Mar 2003 19:26:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h233QQ8V029837; Sun, 2 Mar 2003 19:26:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030326.h233QQ8V029837@xorpc.icir.org> Date: Sun, 2 Mar 2003 19:26:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.hh pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/02 19:26:26 Modified files: xorp/pim/: pim_node_cli.hh pim_node_cli.cc Log message: Add new CLI command "show pim scope" to show the configured PIM scope zones. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 20:27:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 20:28:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h234S6ws081048 for ; Sun, 2 Mar 2003 20:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h234S6nR060697 for ; Sun, 2 Mar 2003 20:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA28804; Sun, 2 Mar 2003 20:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA28797 for ; Sun, 2 Mar 2003 20:27:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h234RgnR060691 for ; Sun, 2 Mar 2003 20:27:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h234RfY0034755 for ; Sun, 2 Mar 2003 20:27:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h234RfRb034754; Sun, 2 Mar 2003 20:27:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030427.h234RfRb034754@xorpc.icir.org> Date: Sun, 2 Mar 2003 20:27:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_scope_zone_table.hh pim_scope_zone_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/02 20:27:41 Modified files: xorp/pim/: pim_scope_zone_table.hh pim_scope_zone_table.cc Log message: Add new method PimScopeZoneTable::is_zone_border_router() to test whether the router is a zone border router for a group prefix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 20:30:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 20:31:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h234V8ws081419 for ; Sun, 2 Mar 2003 20:31:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h234V7nR060737 for ; Sun, 2 Mar 2003 20:31:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA28873; Sun, 2 Mar 2003 20:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA28853 for ; Sun, 2 Mar 2003 20:30:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h234UInR060731 for ; Sun, 2 Mar 2003 20:30:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h234UIY0035396 for ; Sun, 2 Mar 2003 20:30:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h234UHRJ035395; Sun, 2 Mar 2003 20:30:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030430.h234UHRJ035395@xorpc.icir.org> Date: Sun, 2 Mar 2003 20:30:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_cand_rp_adv.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/02 20:30:17 Modified files: xorp/pim/: pim_proto_cand_rp_adv.cc Log message: * When sending Cand-RP-Adv message, set the Zone bit only if the router is a zone border router. * When receiving Cand-RP-Adv message at the BSR, don't use the Zone bit to search for a zone for the group prefix. Instead, first try a scoped zone for that group prefix, and only if nothing found then try non-scoped zone. The reason for this is because the Zone bit may not be set even if the group prefix corresponds to a scoped zone (see the above bullet). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 22:18:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 22:19:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h236J7ws094093 for ; Sun, 2 Mar 2003 22:19:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h236J6nR061394 for ; Sun, 2 Mar 2003 22:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA00099; Sun, 2 Mar 2003 22:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA00085 for ; Sun, 2 Mar 2003 22:18:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h236IinR061390 for ; Sun, 2 Mar 2003 22:18:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h236IiY0060917 for ; Sun, 2 Mar 2003 22:18:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h236IiVt060916; Sun, 2 Mar 2003 22:18:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030618.h236IiVt060916@xorpc.icir.org> Date: Sun, 2 Mar 2003 22:18:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_3_sending_candidate_rp_advertisements.eps pim_test_6_3_sending_candidate_rp_advertisements.fig xorp/docs/pim_testsuite/figs/ pim_test_6_3_bootstrap_timeout.eps pim_test_6_3_bootstrap_timeout.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/02 22:18:44 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_3_sending_candidate_rp_advertisements.eps pim_test_6_3_sending_candidate_rp_advertisements.fig Removed files: xorp/docs/pim_testsuite/figs/: pim_test_6_3_bootstrap_timeout.eps pim_test_6_3_bootstrap_timeout.fig Log message: * Add Section 6.3 "Sending Candidate-RP-Advertisements" The implementation passes all described scenarious. * Remove the old Section 6.3 "Bootstrap Timeout", because its content is superseded by the new sections 6.1 and 6.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Sun Mar 2 22:20:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Mar 2003 22:21:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h236L6ws094353 for ; Sun, 2 Mar 2003 22:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h236L6nR061423 for ; Sun, 2 Mar 2003 22:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA00147; Sun, 2 Mar 2003 22:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA00138 for ; Sun, 2 Mar 2003 22:20:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h236KcnR061418 for ; Sun, 2 Mar 2003 22:20:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h236KcY0060975 for ; Sun, 2 Mar 2003 22:20:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h236Kc32060974; Sun, 2 Mar 2003 22:20:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303030620.h236Kc32060974@xorpc.icir.org> Date: Sun, 2 Mar 2003 22:20:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/03/02 22:20:38 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Remove an obsolete sentence from "Possible problems" in Section 6.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Mon Mar 3 5:46:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 05:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23Dl2ws047382 for ; Mon, 3 Mar 2003 05:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23Dl2nR065133 for ; Mon, 3 Mar 2003 05:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id FAA08260; Mon, 3 Mar 2003 05:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id FAA08250 for ; Mon, 3 Mar 2003 05:46:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23DkLnR065127 for ; Mon, 3 Mar 2003 05:46:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h23DkLY0014504 for ; Mon, 3 Mar 2003 05:46:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h23DkLmB014503; Mon, 3 Mar 2003 05:46:21 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303031346.h23DkLmB014503@xorpc.icir.org> Date: Mon, 3 Mar 2003 5:46:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asyncio.hh asyncio.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/03 05:46:21 Modified files: xorp/libxorp/: asyncio.hh asyncio.cc Log message: Invalidate descriptor in AsyncFileOperator destructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:08 2005 Subject: No subject Mon Mar 3 5:53:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 05:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23Ds2ws048209 for ; Mon, 3 Mar 2003 05:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23Ds2nR065188 for ; Mon, 3 Mar 2003 05:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id FAA08356; Mon, 3 Mar 2003 05:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id FAA08346 for ; Mon, 3 Mar 2003 05:53:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23Dr4nR065184 for ; Mon, 3 Mar 2003 05:53:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h23Dr4Y0018048 for ; Mon, 3 Mar 2003 05:53:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h23Dr4ln018047; Mon, 3 Mar 2003 05:53:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303031353.h23Dr4ln018047@xorpc.icir.org> Date: Mon, 3 Mar 2003 5:53:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/03 05:53:04 Modified files: xorp/libxorp/: selector.cc Log message: xlog an error when an invalid file descriptor is added. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 03 12:10:53 2003 Return-Path: xorp-dev-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 12:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h23KB3ws094512 for ; Mon, 3 Mar 2003 12:11:03 -0800 (PST) (envelope-from xorp-dev-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23KB2nR070570 for ; Mon, 3 Mar 2003 12:11:02 -0800 (PST) (envelope-from xorp-dev-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA16142 for ; Mon, 3 Mar 2003 12:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA16117; Mon, 3 Mar 2003 12:10:53 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h23KArnR070568; Mon, 3 Mar 2003 12:10:53 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h23KArsW078728; Mon, 3 Mar 2003 12:10:53 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200303032010.h23KArsW078728@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 From: Orion Hodson To: xorp-dev@icir.org, xorp-cvs@icir.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Mar 2003 12:10:53 -0800 Subject: [Xorp-dev] HEADS UP: Xrl Finder commit pending Sender: xorp-dev-admin@icir.org Errors-To: xorp-dev-admin@icir.org X-BeenThere: xorp-dev@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: XORP developer list List-Unsubscribe: , The new finder code will be committed today - this makes the finder Xrl based and provides an Xrl interface that the rtrmgr/xorpsh can use to configure and query finder state centrally. Whilst the new code passes the tests in libxipc, there are probably a whole host of problems that will only be revealed when it's run in anger. When you experience finder problems, please let me know. The old finder code still exists as a fallback so that if a nasty problems shows up, people can revert to the old code quickly and continue working without further interruption. Backwards compatibility is enabled by running configure with the --enable-original-finder command line flag. You'll then need to rebuild libxipc and re-link your applications. Once we are happy with the new code, the old finder code will get moved or pruned and the file names and classes for the Xrl based finder will get sanitized (right now we have NG designations, but once there's only one it's not NG :-). - Orion _______________________________________________ Xorp-dev mailing list Xorp-dev@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-dev From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 3 19:35:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 19:36:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h243a7ws047638 for ; Mon, 3 Mar 2003 19:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h243a6nR074311 for ; Mon, 3 Mar 2003 19:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25627; Mon, 3 Mar 2003 19:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA25620 for ; Mon, 3 Mar 2003 19:35:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h243ZunR074305 for ; Mon, 3 Mar 2003 19:35:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h243ZuY0018055 for ; Mon, 3 Mar 2003 19:35:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h243ZuWn018054; Mon, 3 Mar 2003 19:35:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303040335.h243ZuWn018054@xorpc.icir.org> Date: Mon, 3 Mar 2003 19:35:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.hh pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/03 19:35:56 Modified files: xorp/pim/: pim_bsr.hh pim_bsr.cc Log message: * Fix PimBsr::add_expire_bsr_zone(), so only the prefixes that have RPs are added to the zone with the RPs that are expiring. * If a BSR, then whenever the last RP for a prefix from an active zone is deleted, then decrement the number of RPs for that prefix. In addition, if the number of RPs for that prefix becomes zero, then schedule a timer to delete that prefix after BS Timeout seconds (150). Thus, the BSR will continue to include the prefix with no RPs in the Bootstrap messages for up to 150 seconds, and all other routers will appropriately remove the RPs for that prefix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 3 21:24:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 21:25:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h245P7ws055847 for ; Mon, 3 Mar 2003 21:25:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245P7nR075060 for ; Mon, 3 Mar 2003 21:25:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27017; Mon, 3 Mar 2003 21:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27003 for ; Mon, 3 Mar 2003 21:24:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245OsnR075049 for ; Mon, 3 Mar 2003 21:24:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h245OsY0040426 for ; Mon, 3 Mar 2003 21:24:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h245OsLf040425; Mon, 3 Mar 2003 21:24:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303040524.h245OsLf040425@xorpc.icir.org> Date: Mon, 3 Mar 2003 21:24:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/03 21:24:54 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: If we are sending a cancelling Bootstrap message, then set the Holdtime to zero for my RP addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 3 21:25:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 21:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h245Q6lu055944 for ; Mon, 3 Mar 2003 21:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245Q5fh075097 for ; Mon, 3 Mar 2003 21:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27042; Mon, 3 Mar 2003 21:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27035 for ; Mon, 3 Mar 2003 21:25:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245Pvfh075092 for ; Mon, 3 Mar 2003 21:25:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h245PvAq040663 for ; Mon, 3 Mar 2003 21:25:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h245PvBX040662; Mon, 3 Mar 2003 21:25:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303040525.h245PvBX040662@xorpc.icir.org> Date: Mon, 3 Mar 2003 21:25:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/03 21:25:57 Modified files: xorp/pim/: pim_bsr.cc Log message: Fix PimBsr::stop() so the BSR sends properly the cancelling Bootstrap messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 3 21:32:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 21:33:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h245X5lu056465 for ; Mon, 3 Mar 2003 21:33:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245X5fh075143 for ; Mon, 3 Mar 2003 21:33:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27168; Mon, 3 Mar 2003 21:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27154 for ; Mon, 3 Mar 2003 21:32:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245W6fh075138 for ; Mon, 3 Mar 2003 21:32:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h245W6Aq042139 for ; Mon, 3 Mar 2003 21:32:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h245W6Rj042128; Mon, 3 Mar 2003 21:32:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303040532.h245W6Rj042128@xorpc.icir.org> Date: Mon, 3 Mar 2003 21:32:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_4_creating_the_rp_set_at_the_bsr.eps pim_test_6_4_creating_the_rp_set_at_the_bsr.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/03 21:32:05 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_4_creating_the_rp_set_at_the_bsr.eps pim_test_6_4_creating_the_rp_set_at_the_bsr.fig Log message: Add Section 6.4 "Creating the RP-Set at the BSR". The implementation passes all described scenarios. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Mon Mar 3 21:45:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Mar 2003 21:46:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h245k6lu057467 for ; Mon, 3 Mar 2003 21:46:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245k6fh075255 for ; Mon, 3 Mar 2003 21:46:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27369; Mon, 3 Mar 2003 21:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA27352 for ; Mon, 3 Mar 2003 21:45:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h245jBfh075244 for ; Mon, 3 Mar 2003 21:45:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h245jBAq047743 for ; Mon, 3 Mar 2003 21:45:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h245jBvf047741; Mon, 3 Mar 2003 21:45:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303040545.h245jBvf047741@xorpc.icir.org> Date: Mon, 3 Mar 2003 21:45:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/03 21:45:10 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: Move the check whether we are sending a Bootstrap message across zone boundary to PimVif::pim_bootstrap_send() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 11:58:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 11:59:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24Jx7lu026715 for ; Tue, 4 Mar 2003 11:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24Jx7fh084203 for ; Tue, 4 Mar 2003 11:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14558; Tue, 4 Mar 2003 11:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA14530 for ; Tue, 4 Mar 2003 11:58:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24JwBfh084198 for ; Tue, 4 Mar 2003 11:58:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24JwBAq043763 for ; Tue, 4 Mar 2003 11:58:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24JwBte043762; Tue, 4 Mar 2003 11:58:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303041958.h24JwBte043762@xorpc.icir.org> Date: Tue, 4 Mar 2003 11:58:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs/ draft-ietf-pim-sm-bsr-03.ps draft-ietf-pim-sm-bsr-03.txt xorp/pim/docs/ draft-ietf-pim-sm-bsr-01.ps draft-ietf-pim-sm-bsr-01.txt draft-ietf-pim-sm-bsr-02.ps draft-ietf-pim-sm-bsr-02.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/03/04 11:58:11 Added files: xorp/pim/docs/: draft-ietf-pim-sm-bsr-03.ps draft-ietf-pim-sm-bsr-03.txt Removed files: xorp/pim/docs/: draft-ietf-pim-sm-bsr-01.ps draft-ietf-pim-sm-bsr-01.txt draft-ietf-pim-sm-bsr-02.ps draft-ietf-pim-sm-bsr-02.txt Log message: * Remove the old PIM-SM BSR specs (bsr-01 and bsr-02). * Add the lastest PIM-SM BSR spec (bsr-03). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 12:07:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 12:08:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24K87lu027420 for ; Tue, 4 Mar 2003 12:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24K82fh084302 for ; Tue, 4 Mar 2003 12:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14750; Tue, 4 Mar 2003 12:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14709 for ; Tue, 4 Mar 2003 12:07:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24K7Ffh084299 for ; Tue, 4 Mar 2003 12:07:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24K7FAq043872 for ; Tue, 4 Mar 2003 12:07:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24K7FPX043871; Tue, 4 Mar 2003 12:07:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303042007.h24K7FPX043871@xorpc.icir.org> Date: Tue, 4 Mar 2003 12:07:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/04 12:07:15 Modified files: ./: README xorp/pim/: README Log message: Update the PIM-SM BSR spec reference from bsr-02 to bsr-03 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 12:29:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 12:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24KU3lu029020 for ; Tue, 4 Mar 2003 12:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24KU3fh084552 for ; Tue, 4 Mar 2003 12:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15357; Tue, 4 Mar 2003 12:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15334 for ; Tue, 4 Mar 2003 12:29:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24KTWfh084545 for ; Tue, 4 Mar 2003 12:29:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24KTWAq048500 for ; Tue, 4 Mar 2003 12:29:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24KTW4C048499; Tue, 4 Mar 2003 12:29:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303042029.h24KTW4C048499@xorpc.icir.org> Date: Tue, 4 Mar 2003 12:29:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 03/03/04 12:29:32 Modified files: xorp/docs/tex/: xorp.bib Log message: Update the bib entry for the PIM-SM BSR spec from bsr-02 to bsr-03 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 12:32:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 12:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24KX3lu029275 for ; Tue, 4 Mar 2003 12:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24KX3fh084618 for ; Tue, 4 Mar 2003 12:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15457; Tue, 4 Mar 2003 12:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15438 for ; Tue, 4 Mar 2003 12:32:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24KWtfh084614 for ; Tue, 4 Mar 2003 12:32:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24KWsAq049304 for ; Tue, 4 Mar 2003 12:32:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24KWsOp049303; Tue, 4 Mar 2003 12:32:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303042032.h24KWsOp049303@xorpc.icir.org> Date: Tue, 4 Mar 2003 12:32:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/04 12:32:54 Modified files: xorp/docs/pim/: pim_arch.tex Log message: * Update the PIM-SM architecture document to reflect the newer BSR implementation, as well as few other minor changes. * Update the reference for the PIM-SM Bootstrap spec from bsr-02 to bsr-03 * Bump-up the document version from 0.1 to 0.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 12:35:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 12:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24Ka2lu029597 for ; Tue, 4 Mar 2003 12:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24Ka2fh084662 for ; Tue, 4 Mar 2003 12:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15558; Tue, 4 Mar 2003 12:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA15523 for ; Tue, 4 Mar 2003 12:35:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24KZMfh084660 for ; Tue, 4 Mar 2003 12:35:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24KZMAq049809 for ; Tue, 4 Mar 2003 12:35:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24KZMv1049808; Tue, 4 Mar 2003 12:35:22 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303042035.h24KZMv1049808@xorpc.icir.org> Date: Tue, 4 Mar 2003 12:35:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ draft-ietf-idr-bgp4-19.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/03/04 12:35:22 Added files: xorp/bgp/docs/: draft-ietf-idr-bgp4-19.txt Log message: Hopefully the last draft. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 15:41:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 15:42:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h24Ng3lu047279 for ; Tue, 4 Mar 2003 15:42:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24Ng2fh086497 for ; Tue, 4 Mar 2003 15:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20608; Tue, 4 Mar 2003 15:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA20581 for ; Tue, 4 Mar 2003 15:41:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h24NfQfh086495 for ; Tue, 4 Mar 2003 15:41:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h24NfQAq074521 for ; Tue, 4 Mar 2003 15:41:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h24NfQ2H074520; Tue, 4 Mar 2003 15:41:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303042341.h24NfQ2H074520@xorpc.icir.org> Date: Tue, 4 Mar 2003 15:41:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in xorp/libxipc/ Makefile.am Makefile.in call_xrl.cc finder.cc finder_messenger.cc finder_module.h finder_ng_client.cc finder_ng_client.hh finder_ng_main.cc finder_ng_xrl_target.cc ...finder_server.hh ...finder_tcp.cc ...finder_tcp.hh ...finder_tcp_messenger.cc ...finder_tcp_messenger.hh ...sockutil.cc ...test_finder_ng.cc ...test_finder_tcp.cc ...test_lemming.cc ...test_xrl_router.cc ...xrl.cc ...xrl.hh ...xrl_cmd_map.cc ...xrl_cmd_map.hh ...xrl_pf.hh ...xrl_pf_factory.cc ...xrl_pf_factory.hh ...xrl_pf_sudp.cc ...xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh ...xrl_std_router.hh xorp/rib/ Makefile.am Makefile.in test_rib_xrls.cc xorp/xrl/tests/ Makefile.am Makefile.in test_generated.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/03/04 15:41:26 Modified files: ./: acconfig.h config.h.in configure configure.in xorp/libxipc/: Makefile.am Makefile.in call_xrl.cc finder.cc finder_messenger.cc finder_module.h finder_ng_client.cc finder_ng_client.hh finder_ng_main.cc finder_ng_xrl_target.cc finder_server.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh sockutil.cc test_finder_ng.cc test_finder_tcp.cc test_lemming.cc test_xrl_router.cc xrl.cc xrl.hh xrl_cmd_map.cc xrl_cmd_map.hh xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_std_router.hh xorp/rib/: Makefile.am Makefile.in test_rib_xrls.cc xorp/xrl/tests/: Makefile.am Makefile.in test_generated.cc Log message: Xrl based finder mega-commit. This commit swaps XORP over to the Xrl based Finder. In case of difficulties following this large change, the top-level configure script accepts --enable-original-finder to revert to the earlier finder code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 17:18:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 17:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h251J3lu066910 for ; Tue, 4 Mar 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251J3fh087509 for ; Tue, 4 Mar 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22571; Tue, 4 Mar 2003 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22548 for ; Tue, 4 Mar 2003 17:18:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251Imfh087507 for ; Tue, 4 Mar 2003 17:18:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h251ImAq098169 for ; Tue, 4 Mar 2003 17:18:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h251ImkW098168; Tue, 4 Mar 2003 17:18:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050118.h251ImkW098168@xorpc.icir.org> Date: Tue, 4 Mar 2003 17:18:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/04 17:18:48 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh Log message: Add the argument type when printing usage for CLI-related XRL shell functions/wrappers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 17:49:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 17:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h251o3lu071880 for ; Tue, 4 Mar 2003 17:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251o2fh087814 for ; Tue, 4 Mar 2003 17:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23150; Tue, 4 Mar 2003 17:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23137 for ; Tue, 4 Mar 2003 17:49:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251nLfh087809 for ; Tue, 4 Mar 2003 17:49:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h251nLAq013763 for ; Tue, 4 Mar 2003 17:49:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h251nLHF013762; Tue, 4 Mar 2003 17:49:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050149.h251nLHF013762@xorpc.icir.org> Date: Tue, 4 Mar 2003 17:49:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/04 17:49:21 Modified files: xorp/libxipc/: Makefile.am Makefile.in Log message: A typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 17:53:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 17:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h251s2lu072772 for ; Tue, 4 Mar 2003 17:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251s2fh087867 for ; Tue, 4 Mar 2003 17:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23258; Tue, 4 Mar 2003 17:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23248 for ; Tue, 4 Mar 2003 17:53:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h251rPfh087863 for ; Tue, 4 Mar 2003 17:53:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h251rPAq017435 for ; Tue, 4 Mar 2003 17:53:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h251rPrR017434; Tue, 4 Mar 2003 17:53:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050153.h251rPrR017434@xorpc.icir.org> Date: Tue, 4 Mar 2003 17:53:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/04 17:53:25 Modified files: xorp/libxipc/: .cvsignore Log message: Remove finder_ng from .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 18:01:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 18:02:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25222lu074532 for ; Tue, 4 Mar 2003 18:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25222fh087955 for ; Tue, 4 Mar 2003 18:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23429; Tue, 4 Mar 2003 18:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23421 for ; Tue, 4 Mar 2003 18:01:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2521pfh087952 for ; Tue, 4 Mar 2003 18:01:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2521pAq017673 for ; Tue, 4 Mar 2003 18:01:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2521ppA017672; Tue, 4 Mar 2003 18:01:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303050201.h2521ppA017672@xorpc.icir.org> Date: Tue, 4 Mar 2003 18:01:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng.cc finder_ng.hh finder_ng_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/04 18:01:50 Modified files: xorp/libxipc/: finder_ng.cc finder_ng.hh finder_ng_xrl_target.cc Log message: Add Xrls to finder to query registered targets and xrls associated with a given target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 18:11:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 18:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h252C3lu076680 for ; Tue, 4 Mar 2003 18:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252C3fh088034 for ; Tue, 4 Mar 2003 18:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23645; Tue, 4 Mar 2003 18:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23634 for ; Tue, 4 Mar 2003 18:11:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252Bnfh088032 for ; Tue, 4 Mar 2003 18:11:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h252BnAq021480 for ; Tue, 4 Mar 2003 18:11:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h252BnNG021479; Tue, 4 Mar 2003 18:11:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303050211.h252BnNG021479@xorpc.icir.org> Date: Tue, 4 Mar 2003 18:11:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: atanu@xorpc.icir.org. 03/03/04 18:11:48 Modified files: xorp/utils/: runit.cc Log message: Put a one second delay between starting a program and firing an xrl at it. This is a temporary hack to make the tests work and will go away tomorrow. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:09 2005 Subject: No subject Tue Mar 4 18:14:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 18:15:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h252F3lu078998 for ; Tue, 4 Mar 2003 18:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252F2fh088052 for ; Tue, 4 Mar 2003 18:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23728; Tue, 4 Mar 2003 18:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23697 for ; Tue, 4 Mar 2003 18:14:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252E6fh088045 for ; Tue, 4 Mar 2003 18:14:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h252E6Aq021541 for ; Tue, 4 Mar 2003 18:14:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h252E6tL021540; Tue, 4 Mar 2003 18:14:06 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303050214.h252E6tL021540@xorpc.icir.org> Date: Tue, 4 Mar 2003 18:14:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_attrib.cc update_attrib.hh update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/03/04 18:14:06 Modified files: xorp/bgp/: update_attrib.cc update_attrib.hh update_packet.cc Log message: When printing out an update packet distinguish between an NLRI or Withdrawn (in most cases) and also print the network number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 18:22:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 18:23:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h252N3lu080637 for ; Tue, 4 Mar 2003 18:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252N2fh088124 for ; Tue, 4 Mar 2003 18:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23841; Tue, 4 Mar 2003 18:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23831 for ; Tue, 4 Mar 2003 18:22:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252Mafh088117 for ; Tue, 4 Mar 2003 18:22:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h252MaAq021687 for ; Tue, 4 Mar 2003 18:22:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h252Ma90021686; Tue, 4 Mar 2003 18:22:36 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303050222.h252Ma90021686@xorpc.icir.org> Date: Tue, 4 Mar 2003 18:22:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: atanu@xorpc.icir.org. 03/03/04 18:22:36 Modified files: xorp/utils/: runit.cc Log message: If the wait command fails then terminate the test immediately. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 18:28:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 18:29:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h252T2lu083214 for ; Tue, 4 Mar 2003 18:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252T2fh088164 for ; Tue, 4 Mar 2003 18:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23961; Tue, 4 Mar 2003 18:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23952 for ; Tue, 4 Mar 2003 18:28:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h252SXfh088162 for ; Tue, 4 Mar 2003 18:28:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h252SXAq021894 for ; Tue, 4 Mar 2003 18:28:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h252SXOn021893; Tue, 4 Mar 2003 18:28:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050228.h252SXOn021893@xorpc.icir.org> Date: Tue, 4 Mar 2003 18:28:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/04 18:28:33 Modified files: xorp/libxipc/: finder_ng_main.cc Log message: Remove add_permitted_host() for "0.0.0.0", because it is not really needed. Approved by Orion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 19:05:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 19:06:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25363lu086011 for ; Tue, 4 Mar 2003 19:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25363fh088457 for ; Tue, 4 Mar 2003 19:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24506; Tue, 4 Mar 2003 19:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24494 for ; Tue, 4 Mar 2003 19:05:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2535Qfh088449 for ; Tue, 4 Mar 2003 19:05:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2535QAq026287 for ; Tue, 4 Mar 2003 19:05:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2535Qco026286; Tue, 4 Mar 2003 19:05:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050305.h2535Qco026286@xorpc.icir.org> Date: Tue, 4 Mar 2003 19:05:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ Makefile.am Makefile.in test_cli.cc xorp/mfea/ Makefile.am Makefile.in test_mfea.cc xorp/mld6igmp/ Makefile.am Makefile.in test_mld6igmp.cc xorp/pim/ Makefile.am Makefile.in test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/04 19:05:25 Modified files: xorp/cli/: Makefile.am Makefile.in test_cli.cc xorp/mfea/: Makefile.am Makefile.in test_mfea.cc xorp/mld6igmp/: Makefile.am Makefile.in test_mld6igmp.cc xorp/pim/: Makefile.am Makefile.in test_pim.cc Log message: * Use typedef to switch to the new finder * Link aginst libfinder * Nitlet to the CLI test-command "print" in test_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 20:31:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 20:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h254W3lu092426 for ; Tue, 4 Mar 2003 20:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h254W3fh089143 for ; Tue, 4 Mar 2003 20:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25572; Tue, 4 Mar 2003 20:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA25563 for ; Tue, 4 Mar 2003 20:31:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h254Vifh089138 for ; Tue, 4 Mar 2003 20:31:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h254ViAq032156 for ; Tue, 4 Mar 2003 20:31:44 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h254ViGM032155; Tue, 4 Mar 2003 20:31:44 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303050431.h254ViGM032155@xorpc.icir.org> Date: Tue, 4 Mar 2003 20:31:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/03/04 20:31:44 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: BGP seems to be getting SEND_FAILED occasionally when trying to send to the RIB. This fix is a workaround - retry the same XRL up to ten times if it gets a SEND_FAILED in case the error is transient. We shouldn't really need this, but it's probably good to be a little more robust anyway. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 22:38:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 22:39:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h256d2lu002237 for ; Tue, 4 Mar 2003 22:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h256d2fh090169 for ; Tue, 4 Mar 2003 22:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA27401; Tue, 4 Mar 2003 22:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA27378 for ; Tue, 4 Mar 2003 22:38:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h256cEfh090157 for ; Tue, 4 Mar 2003 22:38:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h256cEAq057740 for ; Tue, 4 Mar 2003 22:38:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h256cE02057739; Tue, 4 Mar 2003 22:38:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303050638.h256cE02057739@xorpc.icir.org> Date: Tue, 4 Mar 2003 22:38:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: mjh@xorpc.icir.org. 03/03/04 22:38:14 Modified files: xorp/docs/bgp/: bgp.tex Log message: Update BGP design document to match current BGP status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Tue Mar 4 23:54:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Mar 2003 23:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h257t3lu010223 for ; Tue, 4 Mar 2003 23:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h257t3fh090733 for ; Tue, 4 Mar 2003 23:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA29435; Tue, 4 Mar 2003 23:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA29410 for ; Tue, 4 Mar 2003 23:54:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h257shfh090728 for ; Tue, 4 Mar 2003 23:54:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h257shAq058623 for ; Tue, 4 Mar 2003 23:54:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h257shdT058622; Tue, 4 Mar 2003 23:54:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303050754.h257shdT058622@xorpc.icir.org> Date: Tue, 4 Mar 2003 23:54:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_5_forwarding_bootstrap_messages.eps pim_test_6_5_forwarding_bootstrap_messages.fig pim_test_6_6_receiving_and_using_the_rp_set.eps ...pim_test_6_6_receiving_and_using_the_rp_set.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/04 23:54:43 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_5_forwarding_bootstrap_messages.eps pim_test_6_5_forwarding_bootstrap_messages.fig pim_test_6_6_receiving_and_using_the_rp_set.eps pim_test_6_6_receiving_and_using_the_rp_set.fig Log message: * Bump-up the version to 0.2 * Change all references to the PIM-SM BSR spec to point to bsr-03 * Add Section 6.5 "Forwarding Bootstrap Messages" * Add Section 6.6 "Receiving and Using the RP-Set" The implementation passes all described scenarios in 6.5 and 6.6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 10:19:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 10:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25IK2lu059178 for ; Wed, 5 Mar 2003 10:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25IK2fh098330 for ; Wed, 5 Mar 2003 10:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA11284; Wed, 5 Mar 2003 10:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA11274 for ; Wed, 5 Mar 2003 10:19:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25IJjfh098325 for ; Wed, 5 Mar 2003 10:19:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25IJjAq050058 for ; Wed, 5 Mar 2003 10:19:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25IJjkR050057; Wed, 5 Mar 2003 10:19:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303051819.h25IJjkR050057@xorpc.icir.org> Date: Wed, 5 Mar 2003 10:19:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_client.cc finder_ng_client.hh xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/05 10:19:44 Modified files: xorp/libxipc/: finder_ng_client.cc finder_ng_client.hh xrl_router.cc Log message: Add xrl forwarding via XrlRouter to Finder. Try this for a piece of navel gazing: cd libxipc ../fea/fea_dummy ./finder ./call_xrl finder://finder/finder/0.1/get_xrls_registered_by?target_name:txt=fea _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 11:36:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 11:37:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25Jb9lu065234 for ; Wed, 5 Mar 2003 11:37:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25Jb8fh099298 for ; Wed, 5 Mar 2003 11:37:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13355; Wed, 5 Mar 2003 11:37:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13318 for ; Wed, 5 Mar 2003 11:36:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25Ja1fh099287 for ; Wed, 5 Mar 2003 11:36:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25Ja1Aq054291 for ; Wed, 5 Mar 2003 11:36:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25Ja1mh054290; Wed, 5 Mar 2003 11:36:01 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303051936.h25Ja1mh054290@xorpc.icir.org> Date: Wed, 5 Mar 2003 11:36:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_cmd_map.hh xrl_cmd_map.cc xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh ...pim_base.hh ...rib_base.hh ...ribclient_base.hh ...rtrmgr_base.hh ...test_base.hh ...test_peer_base.hh ...xorpsh_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/03/05 11:36:01 Modified files: xorp/libxipc/: xrl_cmd_map.hh xrl_cmd_map.cc xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp_base.hh cli_base.hh coord_base.hh demo_fea_ifmgr_client_base.hh fea_base.hh finder_base.hh finder_client_base.hh mfea_base.hh mld6igmp_base.hh ospf_base.hh pim_base.hh rib_base.hh ribclient_base.hh rtrmgr_base.hh test_base.hh test_peer_base.hh xorpsh_base.hh Log message: Add finalize() method to XrlCmdMap so end of command additions can be signaled to derived classes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 11:58:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 11:59:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25Jx7lu066899 for ; Wed, 5 Mar 2003 11:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25Jx7fh099579 for ; Wed, 5 Mar 2003 11:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13901; Wed, 5 Mar 2003 11:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13892 for ; Wed, 5 Mar 2003 11:58:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25Jwrfh099572 for ; Wed, 5 Mar 2003 11:58:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25JwrAq057602 for ; Wed, 5 Mar 2003 11:58:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25JwrVL057601; Wed, 5 Mar 2003 11:58:53 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303051958.h25JwrVL057601@xorpc.icir.org> Date: Wed, 5 Mar 2003 11:58:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_cmd_map.hh xrl_cmd_map.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/05 11:58:53 Modified files: xorp/libxipc/: xrl_cmd_map.hh xrl_cmd_map.cc Log message: Add get_command_names() to export command names to a list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 12:01:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 12:02:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25K24lu067161 for ; Wed, 5 Mar 2003 12:02:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25K24fh099630 for ; Wed, 5 Mar 2003 12:02:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14058; Wed, 5 Mar 2003 12:02:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14045 for ; Wed, 5 Mar 2003 12:01:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25K1sfh099626 for ; Wed, 5 Mar 2003 12:01:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25K1sAq057726 for ; Wed, 5 Mar 2003 12:01:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25K1sfx057725; Wed, 5 Mar 2003 12:01:54 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303052001.h25K1sfx057725@xorpc.icir.org> Date: Wed, 5 Mar 2003 12:01:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/03/05 12:01:54 Modified files: xorp/bgp/harness/: test_peer.cc Log message: Increase the variable that holds the count of number in XRLs in flight before trying to send an XRL. Its possible that if there is a failure that we will be called back immediately, in which case the counter value will be inconsistent. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 12:02:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 12:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25K32lu067229 for ; Wed, 5 Mar 2003 12:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25K32fh099646 for ; Wed, 5 Mar 2003 12:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14090; Wed, 5 Mar 2003 12:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA14081 for ; Wed, 5 Mar 2003 12:02:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25K2kfh099642 for ; Wed, 5 Mar 2003 12:02:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25K2kAq057764 for ; Wed, 5 Mar 2003 12:02:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25K2kOU057763; Wed, 5 Mar 2003 12:02:46 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303052002.h25K2kOU057763@xorpc.icir.org> Date: Wed, 5 Mar 2003 12:02:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/05 12:02:46 Modified files: xorp/libxipc/: finder_ng_xrl_target.cc Log message: Add finder introspection hooks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 15:13:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 15:14:55 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25NEtlu081640 for ; Wed, 5 Mar 2003 15:14:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25NEtfh001777 for ; Wed, 5 Mar 2003 15:14:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18114; Wed, 5 Mar 2003 15:14:54 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18056 for ; Wed, 5 Mar 2003 15:13:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25ND9fh001767 for ; Wed, 5 Mar 2003 15:13:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25ND9Aq093621 for ; Wed, 5 Mar 2003 15:13:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25ND9NP093611; Wed, 5 Mar 2003 15:13:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303052313.h25ND9NP093611@xorpc.icir.org> Date: Wed, 5 Mar 2003 15:13:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_if_getifaddrs.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/05 15:13:09 Modified files: xorp/mfea/: mfea_unix_if_getifaddrs.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc Log message: Compilation fix for Linux RedHat 8.0 : Use #ifdef AF_LINK to conditionally compile code that uses AF_LINK _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 15:17:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 15:18:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25NI3lu081890 for ; Wed, 5 Mar 2003 15:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25NI3fh001828 for ; Wed, 5 Mar 2003 15:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18267; Wed, 5 Mar 2003 15:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18226 for ; Wed, 5 Mar 2003 15:17:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25NH7fh001824 for ; Wed, 5 Mar 2003 15:17:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25NH7Aq093816 for ; Wed, 5 Mar 2003 15:17:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25NH7er093815; Wed, 5 Mar 2003 15:17:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303052317.h25NH7er093815@xorpc.icir.org> Date: Wed, 5 Mar 2003 15:17:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: mjh@xorpc.icir.org. 03/03/05 15:17:07 Modified files: xorp/docs/rib/: rib.tex Log message: Update RIB design document to match current state of RIB code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 15:34:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 15:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h25NZ3lu083261 for ; Wed, 5 Mar 2003 15:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25NZ2fh002032 for ; Wed, 5 Mar 2003 15:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19130; Wed, 5 Mar 2003 15:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19112 for ; Wed, 5 Mar 2003 15:34:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h25NYefh002027 for ; Wed, 5 Mar 2003 15:34:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h25NYeAq094080 for ; Wed, 5 Mar 2003 15:34:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h25NYe8Z094079; Wed, 5 Mar 2003 15:34:40 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303052334.h25NYe8Z094079@xorpc.icir.org> Date: Wed, 5 Mar 2003 15:34:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/03/05 15:34:40 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update version number and date - no other changes are needed to reflect the current state of the rtrmgr code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 16:49:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 16:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h260o3lu089541 for ; Wed, 5 Mar 2003 16:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h260o3fh002690 for ; Wed, 5 Mar 2003 16:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21317; Wed, 5 Mar 2003 16:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA21273 for ; Wed, 5 Mar 2003 16:49:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h260n1fh002682 for ; Wed, 5 Mar 2003 16:49:01 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h260n1Aq006188 for ; Wed, 5 Mar 2003 16:49:01 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h260n1SL006185; Wed, 5 Mar 2003 16:49:01 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303060049.h260n1SL006185@xorpc.icir.org> Date: Wed, 5 Mar 2003 16:49:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex xorp/docs/fea/figs/ ifi.eps ifmgmt.eps iftreeitem.eps xrl_ifs.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/figs/ Changes by: mjh@xorpc.icir.org. 03/03/05 16:49:01 Modified files: xorp/docs/fea/: fea.tex xorp/docs/fea/figs/: ifi.eps ifmgmt.eps iftreeitem.eps xrl_ifs.eps Log message: Minor changes to bring FEA design doc up to date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 17:18:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 17:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h261J3lu091784 for ; Wed, 5 Mar 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261J3fh002928 for ; Wed, 5 Mar 2003 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21852; Wed, 5 Mar 2003 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21845 for ; Wed, 5 Mar 2003 17:18:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261Iwfh002925 for ; Wed, 5 Mar 2003 17:18:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h261IwAq018401 for ; Wed, 5 Mar 2003 17:18:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h261Iwis018400; Wed, 5 Mar 2003 17:18:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303060118.h261Iwis018400@xorpc.icir.org> Date: Wed, 5 Mar 2003 17:18:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng.cc finder_ng.hh finder_ng_client.cc finder_ng_client.hh finder_ng_xrl_target.cc finder_ng_xrl_target.hh xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/05 17:18:58 Modified files: xorp/libxipc/: finder_ng.cc finder_ng.hh finder_ng_client.cc finder_ng_client.hh finder_ng_xrl_target.cc finder_ng_xrl_target.hh xrl_router.cc xrl_router.hh Log message: Add support to enable and disable Xrls associated with a target. When a target is disabled it can register Xrls with the Finder, but the finder does not report their resolution to other clients. Only when the client sends "enable xrls" to the finder are other clients able to resolve the associated Xrls associated with the client. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 17:19:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 17:20:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h261K3lu091900 for ; Wed, 5 Mar 2003 17:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261K3fh002939 for ; Wed, 5 Mar 2003 17:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21890; Wed, 5 Mar 2003 17:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA21873 for ; Wed, 5 Mar 2003 17:19:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261JMfh002934 for ; Wed, 5 Mar 2003 17:19:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h261JMAq018494 for ; Wed, 5 Mar 2003 17:19:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h261JM1R018493; Wed, 5 Mar 2003 17:19:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303060119.h261JM1R018493@xorpc.icir.org> Date: Wed, 5 Mar 2003 17:19:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_ng.cc test_xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/05 17:19:22 Modified files: xorp/libxipc/: test_finder_ng.cc test_xrl_router.cc Log message: Update tests to send enable_xrls to finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 17:26:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 17:27:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h261R2lu092538 for ; Wed, 5 Mar 2003 17:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261R2fh003017 for ; Wed, 5 Mar 2003 17:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22066; Wed, 5 Mar 2003 17:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22047 for ; Wed, 5 Mar 2003 17:26:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261QPfh003013 for ; Wed, 5 Mar 2003 17:26:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h261QPAq020372 for ; Wed, 5 Mar 2003 17:26:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h261QPgI020370; Wed, 5 Mar 2003 17:26:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303060126.h261QPgI020370@xorpc.icir.org> Date: Wed, 5 Mar 2003 17:26:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/ finder.xrls finder_base.cc finder_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/03/05 17:26:25 Modified files: xorp/xrl/interfaces/: finder.xif finder_xif.cc finder_xif.hh xorp/xrl/targets/: finder.xrls finder_base.cc finder_base.hh Log message: Add missing return value to finder xrl. The joys of cross directory dependencies... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:10 2005 Subject: No subject Wed Mar 5 17:29:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 17:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h261U3lu092771 for ; Wed, 5 Mar 2003 17:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261U2fh003036 for ; Wed, 5 Mar 2003 17:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22174; Wed, 5 Mar 2003 17:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22148 for ; Wed, 5 Mar 2003 17:29:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261TGfh003029 for ; Wed, 5 Mar 2003 17:29:16 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h261TFAq022723 for ; Wed, 5 Mar 2003 17:29:15 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h261TFaa022722; Wed, 5 Mar 2003 17:29:15 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303060129.h261TFaa022722@xorpc.icir.org> Date: Wed, 5 Mar 2003 17:29:15 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: jcardona@xorpc.icir.org. 03/03/05 17:29:15 Modified files: xorp/docs/libxipc/: xrl_interfaces.tex Log message: Incremented version number and corrected minor spelling errors and typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 17:47:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 17:48:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h261m3lu094260 for ; Wed, 5 Mar 2003 17:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261m3fh003217 for ; Wed, 5 Mar 2003 17:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22661; Wed, 5 Mar 2003 17:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA22635 for ; Wed, 5 Mar 2003 17:47:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h261l5fh003210 for ; Wed, 5 Mar 2003 17:47:05 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h261l4Aq031605 for ; Wed, 5 Mar 2003 17:47:04 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h261l43B031604; Wed, 5 Mar 2003 17:47:04 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303060147.h261l43B031604@xorpc.icir.org> Date: Wed, 5 Mar 2003 17:47:04 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/03/05 17:47:04 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Incremented version number and corrected a few typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 18:05:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 18:06:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26267lu095707 for ; Wed, 5 Mar 2003 18:06:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26267fh003367 for ; Wed, 5 Mar 2003 18:06:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA23014; Wed, 5 Mar 2003 18:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22998 for ; Wed, 5 Mar 2003 18:05:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2625cfh003360 for ; Wed, 5 Mar 2003 18:05:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2625cAq035357 for ; Wed, 5 Mar 2003 18:05:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2625cA5035356; Wed, 5 Mar 2003 18:05:38 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303060205.h2625cA5035356@xorpc.icir.org> Date: Wed, 5 Mar 2003 18:05:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/03/05 18:05:38 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Minor clarifications and bumped the release number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 21:16:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 21:17:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h265HClu010205 for ; Wed, 5 Mar 2003 21:17:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265HCfh004805 for ; Wed, 5 Mar 2003 21:17:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25958; Wed, 5 Mar 2003 21:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25947 for ; Wed, 5 Mar 2003 21:16:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265GJfh004799 for ; Wed, 5 Mar 2003 21:16:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h265GJAq055870 for ; Wed, 5 Mar 2003 21:16:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h265GJYF055869; Wed, 5 Mar 2003 21:16:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303060516.h265GJYF055869@xorpc.icir.org> Date: Wed, 5 Mar 2003 21:16:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/05 21:16:19 Modified files: xorp/pim/: pim_node_cli.cc Log message: Add a second optional argument ("scoped") to CLI commands "show pim bootstrap" and "show pim bootstrap rps" to specify whether to show the scoped zones. E.g.: Xorp> show pim bootstrap 226.0.0.0/8 scoped ... Xorp> show pim bootstrap rps 226.0.0.0/8 scoped ... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 21:30:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 21:31:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h265V9lu011251 for ; Wed, 5 Mar 2003 21:31:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265V9fh004902 for ; Wed, 5 Mar 2003 21:31:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26197; Wed, 5 Mar 2003 21:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26173 for ; Wed, 5 Mar 2003 21:30:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265U7fh004896 for ; Wed, 5 Mar 2003 21:30:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h265U7Aq058965 for ; Wed, 5 Mar 2003 21:30:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h265U7c5058964; Wed, 5 Mar 2003 21:30:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303060530.h265U7c5058964@xorpc.icir.org> Date: Wed, 5 Mar 2003 21:30:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: mjh@xorpc.icir.org. 03/03/05 21:30:07 Modified files: xorp/docs/design_arch/: design_arch.tex Log message: Update Design Architecture document to match current XORP status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 21:58:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 21:59:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h265x6lu013345 for ; Wed, 5 Mar 2003 21:59:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265x6fh005099 for ; Wed, 5 Mar 2003 21:59:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26606; Wed, 5 Mar 2003 21:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA26587 for ; Wed, 5 Mar 2003 21:58:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h265wYfh005090 for ; Wed, 5 Mar 2003 21:58:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h265wYAq065922 for ; Wed, 5 Mar 2003 21:58:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h265wYIn065921; Wed, 5 Mar 2003 21:58:34 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303060558.h265wYIn065921@xorpc.icir.org> Date: Wed, 5 Mar 2003 21:58:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: mjh@xorpc.icir.org. 03/03/05 21:58:34 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Add information about RefTrie. Fix date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Wed Mar 5 23:48:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Mar 2003 23:49:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h267n7lu021656 for ; Wed, 5 Mar 2003 23:49:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h267n6fh005911 for ; Wed, 5 Mar 2003 23:49:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA28774; Wed, 5 Mar 2003 23:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA28767 for ; Wed, 5 Mar 2003 23:48:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h267mvfh005907 for ; Wed, 5 Mar 2003 23:48:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h267mvAq067624 for ; Wed, 5 Mar 2003 23:48:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h267mvVM067623; Wed, 5 Mar 2003 23:48:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303060748.h267mvVM067623@xorpc.icir.org> Date: Wed, 5 Mar 2003 23:48:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/05 23:48:57 Modified files: xorp/pim/: pim_bsr.cc Log message: Nasty bugfix. What I meant originally was: foo1 = new Foo(bar, foo2) where foo1 and foo2 are of the same type Foo. What I wrote was foo1 = new Foo(foo2) I (intentionally) hadn't defined a copy constructor, because I never intended to create Foo in such way. I completely forgot that in the above line the compiler will invoke the default copy constructor it has created by itself, so the code compiled fine. Well, the copy-result of that default copy constructor is something I never anticipate.... Ouch.... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 2:47:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 02:48:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Am8lu035339 for ; Thu, 6 Mar 2003 02:48:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Am8fh007510 for ; Thu, 6 Mar 2003 02:48:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA01382; Thu, 6 Mar 2003 02:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA01371 for ; Thu, 6 Mar 2003 02:47:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26AlWfh007504 for ; Thu, 6 Mar 2003 02:47:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26AlWAq096530 for ; Thu, 6 Mar 2003 02:47:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26AlWGu096529; Thu, 6 Mar 2003 02:47:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303061047.h26AlWGu096529@xorpc.icir.org> Date: Thu, 6 Mar 2003 2:47:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/06 02:47:32 Modified files: xorp/pim/: pim_bsr.cc Log message: * Bugfix regarding keeping and removing RPs for group-prefixes from older fragments. * Use more consistent naming scheme for iterator variables. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 4:21:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 04:22:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26CMAlu042555 for ; Thu, 6 Mar 2003 04:22:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26CMAfh008298 for ; Thu, 6 Mar 2003 04:22:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA02693; Thu, 6 Mar 2003 04:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA02684 for ; Thu, 6 Mar 2003 04:21:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26CLefh008290 for ; Thu, 6 Mar 2003 04:21:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26CLdAq097942 for ; Thu, 6 Mar 2003 04:21:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26CLd00097941; Thu, 6 Mar 2003 04:21:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303061221.h26CLd00097941@xorpc.icir.org> Date: Thu, 6 Mar 2003 4:21:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_6_7_semantic_fragmentation_of_bsms.eps pim_test_6_7_semantic_fragmentation_of_bsms.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/06 04:21:38 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Added files: xorp/docs/pim_testsuite/figs/: pim_test_6_7_semantic_fragmentation_of_bsms.eps pim_test_6_7_semantic_fragmentation_of_bsms.fig Log message: Add Section 6.7 "Segmantic Fragmentation of BSMs" The implementation passes all described scenarios. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 11:39:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 11:40:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Je7lu077206 for ; Thu, 6 Mar 2003 11:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Je7fh013981 for ; Thu, 6 Mar 2003 11:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12213; Thu, 6 Mar 2003 11:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12198 for ; Thu, 6 Mar 2003 11:39:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26JdGfh013954 for ; Thu, 6 Mar 2003 11:39:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26JdGAq056892 for ; Thu, 6 Mar 2003 11:39:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26JdGDZ056891; Thu, 6 Mar 2003 11:39:16 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303061939.h26JdGDZ056891@xorpc.icir.org> Date: Thu, 6 Mar 2003 11:39:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex xorp/docs/test_harness/figs/ harness.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/figs/ Changes by: mjh@xorpc.icir.org. 03/03/06 11:39:16 Modified files: xorp/docs/test_harness/: test_harness.tex xorp/docs/test_harness/figs/: harness.eps Log message: Fix typos and some layout improvements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 11:54:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 11:55:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Jt7lu081967 for ; Thu, 6 Mar 2003 11:55:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Jt7fh014101 for ; Thu, 6 Mar 2003 11:55:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12499; Thu, 6 Mar 2003 11:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA12486 for ; Thu, 6 Mar 2003 11:54:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26JsXfh014075 for ; Thu, 6 Mar 2003 11:54:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26JsXAq057121 for ; Thu, 6 Mar 2003 11:54:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26JsXQe057120; Thu, 6 Mar 2003 11:54:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303061954.h26JsXQe057120@xorpc.icir.org> Date: Thu, 6 Mar 2003 11:54:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 11:54:33 Modified files: xorp/libxipc/: call_xrl.cc Log message: - Use a XorpTimer to trigger resends. - Propagate errors upto process exit status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 12:18:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 12:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26KJ3lu087012 for ; Thu, 6 Mar 2003 12:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26KJ3fh014286 for ; Thu, 6 Mar 2003 12:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13055; Thu, 6 Mar 2003 12:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13029 for ; Thu, 6 Mar 2003 12:18:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26KI2fh014274 for ; Thu, 6 Mar 2003 12:18:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26KI2Aq057417 for ; Thu, 6 Mar 2003 12:18:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26KI2c7057416; Thu, 6 Mar 2003 12:18:02 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303062018.h26KI2c7057416@xorpc.icir.org> Date: Thu, 6 Mar 2003 12:18:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_proto_abstraction.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/figs/ Changes by: mjh@xorpc.icir.org. 03/03/06 12:18:02 Modified files: xorp/docs/multicast/: multicast_arch.tex xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_proto_abstraction.eps Log message: Minor grammar fixes and typos. Note: this doc still needs updating regarding current status - there are a number of references to "Currently (December 2002)" which want updating. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 12:32:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 12:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26KX3lu088885 for ; Thu, 6 Mar 2003 12:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26KX3fh014420 for ; Thu, 6 Mar 2003 12:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13355; Thu, 6 Mar 2003 12:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA13341 for ; Thu, 6 Mar 2003 12:32:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26KWafh014418 for ; Thu, 6 Mar 2003 12:32:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26KWZAq062581 for ; Thu, 6 Mar 2003 12:32:35 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26KWZei062580; Thu, 6 Mar 2003 12:32:35 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303062032.h26KWZei062580@xorpc.icir.org> Date: Thu, 6 Mar 2003 12:32:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: atanu@xorpc.icir.org. 03/03/06 12:32:35 Modified files: xorp/utils/: runit.cc Log message: 1) Standard error is no longer re-directed. So all the XLOG messages should be seen. 2) If a process exits don't remove it from the command table in the signal handler. Tends to confuse the main line code that is traversing the table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 13:39:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 13:40:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Le3lu094502 for ; Thu, 6 Mar 2003 13:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Le2fh015035 for ; Thu, 6 Mar 2003 13:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA14818; Thu, 6 Mar 2003 13:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA14794 for ; Thu, 6 Mar 2003 13:39:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26LdDfh015014 for ; Thu, 6 Mar 2003 13:39:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26LdDAq084108 for ; Thu, 6 Mar 2003 13:39:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26LdDSp084107; Thu, 6 Mar 2003 13:39:13 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303062139.h26LdDSp084107@xorpc.icir.org> Date: Thu, 6 Mar 2003 13:39:12 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ Makefile.am Makefile.in xrl_interfaces.tex xorp/docs/libxipc/figs/ xrl_ifs.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/figs/ Changes by: mjh@xorpc.icir.org. 03/03/06 13:39:12 Modified files: xorp/docs/libxipc/: Makefile.am Makefile.in xrl_interfaces.tex xorp/docs/libxipc/figs/: xrl_ifs.eps Log message: Fix minor typos and undefined reference. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 13:43:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 13:44:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Li2lu096904 for ; Thu, 6 Mar 2003 13:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Li2fh015085 for ; Thu, 6 Mar 2003 13:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA15006; Thu, 6 Mar 2003 13:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA14981 for ; Thu, 6 Mar 2003 13:43:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Lhffh015079 for ; Thu, 6 Mar 2003 13:43:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26LhfAq084211 for ; Thu, 6 Mar 2003 13:43:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26Lhf68084210; Thu, 6 Mar 2003 13:43:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303062143.h26Lhf68084210@xorpc.icir.org> Date: Thu, 6 Mar 2003 13:43:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 13:43:41 Modified files: xorp/libxipc/: call_xrl.cc Log message: Remove fprintf's. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 13:58:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 13:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Lx2lu005315 for ; Thu, 6 Mar 2003 13:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Lx2fh015216 for ; Thu, 6 Mar 2003 13:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA15286; Thu, 6 Mar 2003 13:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA15273 for ; Thu, 6 Mar 2003 13:58:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Lwnfh015212 for ; Thu, 6 Mar 2003 13:58:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26LwnAq084744 for ; Thu, 6 Mar 2003 13:58:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26Lwnop084743; Thu, 6 Mar 2003 13:58:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303062158.h26Lwnop084743@xorpc.icir.org> Date: Thu, 6 Mar 2003 13:58:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 13:58:49 Modified files: xorp/libxipc/: finder_ng_xrl_target.cc Log message: Formatting bogons. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 14:04:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 14:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26M53lu007596 for ; Thu, 6 Mar 2003 14:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26M53fh015292 for ; Thu, 6 Mar 2003 14:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15412; Thu, 6 Mar 2003 14:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15391 for ; Thu, 6 Mar 2003 14:04:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26M4Jfh015287 for ; Thu, 6 Mar 2003 14:04:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26M4JAq084811 for ; Thu, 6 Mar 2003 14:04:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26M4JHJ084810; Thu, 6 Mar 2003 14:04:19 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303062204.h26M4JHJ084810@xorpc.icir.org> Date: Thu, 6 Mar 2003 14:04:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: mjh@xorpc.icir.org. 03/03/06 14:04:19 Modified files: xorp/docs/: status.html Log message: Update status.html - I updated everything except multicast, but feel free to all more notes if you want. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 14:24:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 14:25:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26MP8lu009408 for ; Thu, 6 Mar 2003 14:25:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26MP3fh015495 for ; Thu, 6 Mar 2003 14:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15888; Thu, 6 Mar 2003 14:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA15865 for ; Thu, 6 Mar 2003 14:24:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26MOUfh015488 for ; Thu, 6 Mar 2003 14:24:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26MOUAq085055 for ; Thu, 6 Mar 2003 14:24:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26MOUtO085054; Thu, 6 Mar 2003 14:24:30 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303062224.h26MOUtO085054@xorpc.icir.org> Date: Thu, 6 Mar 2003 14:24:30 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 03/03/06 14:24:30 Modified files: ./: RELEASE_NOTES Log message: Update release notes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 15:11:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 15:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26NC2lu028601 for ; Thu, 6 Mar 2003 15:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26NC2fh015859 for ; Thu, 6 Mar 2003 15:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17242; Thu, 6 Mar 2003 15:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17235 for ; Thu, 6 Mar 2003 15:11:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26NBufh015856 for ; Thu, 6 Mar 2003 15:11:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26NBuAq085456 for ; Thu, 6 Mar 2003 15:11:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26NBu9R085455; Thu, 6 Mar 2003 15:11:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303062311.h26NBu9R085455@xorpc.icir.org> Date: Thu, 6 Mar 2003 15:11:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/03/06 15:11:55 Modified files: xorp/libxorp/: heap.cc Log message: Replace calls to panic with XLOG_FATAL and calls to fprintf to XLOG_WARNING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:11 2005 Subject: No subject Thu Mar 6 15:19:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 15:20:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26NK5lu032842 for ; Thu, 6 Mar 2003 15:20:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26NK5fh015927 for ; Thu, 6 Mar 2003 15:20:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17456; Thu, 6 Mar 2003 15:20:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17447 for ; Thu, 6 Mar 2003 15:19:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26NJvfh015920 for ; Thu, 6 Mar 2003 15:19:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26NJvAq085617 for ; Thu, 6 Mar 2003 15:19:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26NJvoM085616; Thu, 6 Mar 2003 15:19:57 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303062319.h26NJvoM085616@xorpc.icir.org> Date: Thu, 6 Mar 2003 15:19:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: atanu@xorpc.icir.org. 03/03/06 15:19:56 Modified files: xorp/utils/: runit.cc Log message: Correct comment _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 15:57:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 15:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h26Nw3lu036890 for ; Thu, 6 Mar 2003 15:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26Nw2fh016221 for ; Thu, 6 Mar 2003 15:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18128; Thu, 6 Mar 2003 15:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA18120 for ; Thu, 6 Mar 2003 15:57:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h26NvQfh016219 for ; Thu, 6 Mar 2003 15:57:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h26NvQAq085885 for ; Thu, 6 Mar 2003 15:57:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h26NvQOI085884; Thu, 6 Mar 2003 15:57:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303062357.h26NvQOI085884@xorpc.icir.org> Date: Thu, 6 Mar 2003 15:57:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ Makefile.am Makefile.in pim_testsuite.tex xorp/docs/pim_testsuite/figs/ pim_test_7_1_single_router_samelan_membership.eps pim_test_7_1_single_router_samelan_membership.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/06 15:57:26 Modified files: xorp/docs/pim_testsuite/: Makefile.am Makefile.in pim_testsuite.tex Removed files: xorp/docs/pim_testsuite/figs/: pim_test_7_1_single_router_samelan_membership.eps pim_test_7_1_single_router_samelan_membership.fig Log message: * Change the date to March 7, 2003 * Remove the page with the list of authors * Take care of all the TODOs to add missing text. * Move the default protocol values to two tables. * "spec" -> "specification" * Remove Chapter 7 "Multicast Routing Table", because it is obsolete * Comment-out the template for organizing a section (at the very end of the document). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 16:06:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 16:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27073lu037570 for ; Thu, 6 Mar 2003 16:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27072fh016307 for ; Thu, 6 Mar 2003 16:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18294; Thu, 6 Mar 2003 16:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18276 for ; Thu, 6 Mar 2003 16:06:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2706Zfh016301 for ; Thu, 6 Mar 2003 16:06:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2706ZAq085984 for ; Thu, 6 Mar 2003 16:06:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2706ZFw085983; Thu, 6 Mar 2003 16:06:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070006.h2706ZFw085983@xorpc.icir.org> Date: Thu, 6 Mar 2003 16:06:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/03/06 16:06:35 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Spell check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 16:19:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 16:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h270K2lu038541 for ; Thu, 6 Mar 2003 16:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h270K2fh016422 for ; Thu, 6 Mar 2003 16:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18555; Thu, 6 Mar 2003 16:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18545 for ; Thu, 6 Mar 2003 16:19:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h270Jjfh016411 for ; Thu, 6 Mar 2003 16:19:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h270JiAq086121 for ; Thu, 6 Mar 2003 16:19:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h270Jifm086120; Thu, 6 Mar 2003 16:19:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070019.h270Jifm086120@xorpc.icir.org> Date: Thu, 6 Mar 2003 16:19:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 16:19:44 Modified files: xorp/libxipc/: finder_ng.cc Log message: Switch messenger_event_stopped to use debug_msg rather than XLOG_INFO for output. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 16:48:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 16:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h270n3lu044305 for ; Thu, 6 Mar 2003 16:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h270n3fh016679 for ; Thu, 6 Mar 2003 16:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19058; Thu, 6 Mar 2003 16:49:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA19045 for ; Thu, 6 Mar 2003 16:48:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h270mIfh016677 for ; Thu, 6 Mar 2003 16:48:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h270mIAq093399 for ; Thu, 6 Mar 2003 16:48:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h270mIAY093398; Thu, 6 Mar 2003 16:48:18 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303070048.h270mIAY093398@xorpc.icir.org> Date: Thu, 6 Mar 2003 16:48:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/03/06 16:48:17 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: abort on SEND_FAILED. This is temporary, to give the tinderbox the chance to show up any remaining problems. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:02:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:03:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27136lu050341 for ; Thu, 6 Mar 2003 17:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27136fh016815 for ; Thu, 6 Mar 2003 17:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19278; Thu, 6 Mar 2003 17:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19256 for ; Thu, 6 Mar 2003 17:02:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2712ffh016811 for ; Thu, 6 Mar 2003 17:02:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2712fAq098334 for ; Thu, 6 Mar 2003 17:02:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2712flJ098333; Thu, 6 Mar 2003 17:02:41 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303070102.h2712flJ098333@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:02:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/03/06 17:02:41 Modified files: xorp/bgp/: peer.cc Log message: If we are being asked to release resources and the _handler was null this was previously being flagged as an error. It is perfectly valid for a peering to be enable and disabled without a session being established. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:18:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:19:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h271J6lu053735 for ; Thu, 6 Mar 2003 17:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271J6fh016931 for ; Thu, 6 Mar 2003 17:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19539; Thu, 6 Mar 2003 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19531 for ; Thu, 6 Mar 2003 17:18:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271ILfh016923 for ; Thu, 6 Mar 2003 17:18:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h271IKAq005149 for ; Thu, 6 Mar 2003 17:18:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h271IKWC005140; Thu, 6 Mar 2003 17:18:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070118.h271IKWC005140@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:18:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/03/06 17:18:20 Modified files: xorp/docs/: status.html Log message: * Update the status for multicast * "software overview" link renamed to "software documentation" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:19:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:20:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h271K6lu053871 for ; Thu, 6 Mar 2003 17:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271K5fh016949 for ; Thu, 6 Mar 2003 17:20:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19565; Thu, 6 Mar 2003 17:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19556 for ; Thu, 6 Mar 2003 17:19:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271JSfh016937 for ; Thu, 6 Mar 2003 17:19:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h271JSAq005351 for ; Thu, 6 Mar 2003 17:19:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h271JSvV005350; Thu, 6 Mar 2003 17:19:28 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303070119.h271JSvV005350@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:19:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/03/06 17:19:28 Modified files: xorp/bgp/: peer.cc Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:32:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:33:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h271X8lu059237 for ; Thu, 6 Mar 2003 17:33:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271X7fh017073 for ; Thu, 6 Mar 2003 17:33:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19745; Thu, 6 Mar 2003 17:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19735 for ; Thu, 6 Mar 2003 17:32:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271WSfh017060 for ; Thu, 6 Mar 2003 17:32:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h271WSAq009833 for ; Thu, 6 Mar 2003 17:32:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h271WSmw009832; Thu, 6 Mar 2003 17:32:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070132.h271WSmw009832@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:32:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 17:32:28 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Delete request state in XrlPFSUDP destructor rather than waiting for static map destructor to do it. Deletion order issues may arise otherwise. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:37:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:38:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h271c7lu061881 for ; Thu, 6 Mar 2003 17:38:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271c6fh017122 for ; Thu, 6 Mar 2003 17:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19877; Thu, 6 Mar 2003 17:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19861 for ; Thu, 6 Mar 2003 17:37:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271bUfh017115 for ; Thu, 6 Mar 2003 17:37:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h271bUAq011258 for ; Thu, 6 Mar 2003 17:37:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h271bUqo011257; Thu, 6 Mar 2003 17:37:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070137.h271bUqo011257@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:37:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ policy_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: pavlin@xorpc.icir.org. 03/03/06 17:37:30 Modified files: xorp/policy/: policy_route.hh Log message: Add the subdir name __POLICY in the beginning of the following header-file wrapper: #ifndef __PATH_TO_TEMPLATE_HH__ #define __PATH_TO_TEMPLATE_HH__ ... #endif // __PATH_TO_TEMPLATE_HH__ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 17:51:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 17:52:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h271q8lu063101 for ; Thu, 6 Mar 2003 17:52:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271q8fh017275 for ; Thu, 6 Mar 2003 17:52:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20434; Thu, 6 Mar 2003 17:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20423 for ; Thu, 6 Mar 2003 17:51:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h271p5fh017257 for ; Thu, 6 Mar 2003 17:51:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h271p5Aq013854 for ; Thu, 6 Mar 2003 17:51:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h271p5J2013853; Thu, 6 Mar 2003 17:51:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070151.h271p5J2013853@xorpc.icir.org> Date: Thu, 6 Mar 2003 17:51:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_msgs.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/06 17:51:05 Modified files: xorp/libxipc/: finder_msgs.hh Log message: kdoc nit: "@throw" -> "@throws" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:07:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:08:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27287lu066968 for ; Thu, 6 Mar 2003 18:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27287fh017384 for ; Thu, 6 Mar 2003 18:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20706; Thu, 6 Mar 2003 18:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20689 for ; Thu, 6 Mar 2003 18:07:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2727Rfh017376 for ; Thu, 6 Mar 2003 18:07:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2727RAq014052 for ; Thu, 6 Mar 2003 18:07:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2727Rqa014051; Thu, 6 Mar 2003 18:07:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070207.h2727Rqa014051@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:07:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/03/06 18:07:27 Modified files: xorp/bgp/: next_hop_resolver.hh Log message: kdoc nit: "@requester" -> "@param requester" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:07:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:08:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2728Plu067000 for ; Thu, 6 Mar 2003 18:08:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2728Pfh017390 for ; Thu, 6 Mar 2003 18:08:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20721; Thu, 6 Mar 2003 18:08:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20698 for ; Thu, 6 Mar 2003 18:07:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2727rfh017378 for ; Thu, 6 Mar 2003 18:07:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2727rAq014079 for ; Thu, 6 Mar 2003 18:07:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2727rFF014078; Thu, 6 Mar 2003 18:07:53 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070207.h2727rFF014078@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:07:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 18:07:53 Modified files: xorp/libxipc/: xrl_pf_sudp.hh Log message: Clean up declaration ordering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:14:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:15:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h272F8lu067521 for ; Thu, 6 Mar 2003 18:15:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272F8fh017473 for ; Thu, 6 Mar 2003 18:15:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20962; Thu, 6 Mar 2003 18:15:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20940 for ; Thu, 6 Mar 2003 18:14:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272Etfh017444 for ; Thu, 6 Mar 2003 18:14:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h272EtAq014231 for ; Thu, 6 Mar 2003 18:14:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h272EtQo014230; Thu, 6 Mar 2003 18:14:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070214.h272EtQo014230@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:14:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 18:14:55 Modified files: xorp/libxipc/: call_xrl.cc Log message: Increment retry counter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:14:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:16:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h272GFlu067642 for ; Thu, 6 Mar 2003 18:16:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272GFfh017476 for ; Thu, 6 Mar 2003 18:16:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20947; Thu, 6 Mar 2003 18:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA20929 for ; Thu, 6 Mar 2003 18:14:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272E9fh017440 for ; Thu, 6 Mar 2003 18:14:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h272E8Aq014188 for ; Thu, 6 Mar 2003 18:14:08 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h272E8bc014187; Thu, 6 Mar 2003 18:14:08 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070214.h272E8bc014187@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:14:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 18:14:08 Modified files: xorp/libxipc/: finder_ng_client.cc Log message: Map Finder related Xrl errors to XrlError:RESOLVE_FAILED. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:34:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:35:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h272Z6lu074298 for ; Thu, 6 Mar 2003 18:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272Z6fh017615 for ; Thu, 6 Mar 2003 18:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21281; Thu, 6 Mar 2003 18:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21269 for ; Thu, 6 Mar 2003 18:34:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272Y7fh017604 for ; Thu, 6 Mar 2003 18:34:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h272Y6Aq014410 for ; Thu, 6 Mar 2003 18:34:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h272Y65d014409; Thu, 6 Mar 2003 18:34:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070234.h272Y65d014409@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:34:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/06 18:34:06 Modified files: xorp/libxorp/: TODO Log message: * Add a TODO entry to kdoc-ify ref_trie.hh and trie.hh in libxorp * Prune old TODO entries _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 18:39:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 18:40:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h272e7lu074674 for ; Thu, 6 Mar 2003 18:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272e6fh017676 for ; Thu, 6 Mar 2003 18:40:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21374; Thu, 6 Mar 2003 18:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21364 for ; Thu, 6 Mar 2003 18:39:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h272dmfh017652 for ; Thu, 6 Mar 2003 18:39:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h272dmAq014485 for ; Thu, 6 Mar 2003 18:39:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h272dmEe014484; Thu, 6 Mar 2003 18:39:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070239.h272dmEe014484@xorpc.icir.org> Date: Thu, 6 Mar 2003 18:39:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 03/03/06 18:39:48 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: * Move libcomm before libxipc, so the libcomm documentation will be generated before libxipc * Change all xref="$xref foo2" to xref="foo1 foo2", to make it clearer what is the dependency between directories (for kdoc purpose). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 22:11:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 22:12:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h276C6lu090561 for ; Thu, 6 Mar 2003 22:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h276C6fh019295 for ; Thu, 6 Mar 2003 22:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24449; Thu, 6 Mar 2003 22:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA24439 for ; Thu, 6 Mar 2003 22:11:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h276Bcfh019285 for ; Thu, 6 Mar 2003 22:11:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h276BcAq043751 for ; Thu, 6 Mar 2003 22:11:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h276BcUe043750; Thu, 6 Mar 2003 22:11:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070611.h276BcUe043750@xorpc.icir.org> Date: Thu, 6 Mar 2003 22:11:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/06 22:11:38 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Fix two Latex compilation problems. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:12 2005 Subject: No subject Thu Mar 6 23:03:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 23:04:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27746lu094446 for ; Thu, 6 Mar 2003 23:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27746fh019697 for ; Thu, 6 Mar 2003 23:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25137; Thu, 6 Mar 2003 23:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25107 for ; Thu, 6 Mar 2003 23:03:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2773Mfh019692 for ; Thu, 6 Mar 2003 23:03:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2773MAq047880 for ; Thu, 6 Mar 2003 23:03:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2773Mev047879; Thu, 6 Mar 2003 23:03:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303070703.h2773Mev047879@xorpc.icir.org> Date: Thu, 6 Mar 2003 23:03:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_ng_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/06 23:03:22 Modified files: xorp/libxipc/: finder_ng_client.cc Log message: Distinguish between a command failure on resolve (ie not resolve) and transport error with finder. Avoids all queued resolution requests failing when one being executed fails to resolve. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Thu Mar 6 23:08:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Mar 2003 23:09:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27796lu094822 for ; Thu, 6 Mar 2003 23:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27796fh019736 for ; Thu, 6 Mar 2003 23:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25272; Thu, 6 Mar 2003 23:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25245 for ; Thu, 6 Mar 2003 23:08:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2778Ffh019729 for ; Thu, 6 Mar 2003 23:08:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2778FAq048541 for ; Thu, 6 Mar 2003 23:08:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2778FuU048540; Thu, 6 Mar 2003 23:08:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303070708.h2778FuU048540@xorpc.icir.org> Date: Thu, 6 Mar 2003 23:08:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/06 23:08:15 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Updated to match XORP version 0.2 release code; cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 07 07:19:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 08:00:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27G03lu035181 for ; Fri, 7 Mar 2003 08:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27G03fh024230 for ; Fri, 7 Mar 2003 08:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04261; Fri, 7 Mar 2003 08:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id HAA04234 for ; Fri, 7 Mar 2003 07:59:17 -0800 (PST) Received: from nilla.icir.org (adsl-67-117-79-131.dsl.sntc01.pacbell.net [67.117.79.131]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27FxGfh024218 for ; Fri, 7 Mar 2003 07:59:16 -0800 (PST) (envelope-from mjh@nilla.icir.org) Received: from nilla.icir.org (localhost [127.0.0.1]) by nilla.icir.org (8.12.3/8.11.1) with ESMTP id h27FJHEf001425 for ; Fri, 7 Mar 2003 07:19:17 -0800 (PST) (envelope-from mjh@nilla.icir.org) Message-Id: <200303071519.h27FJHEf001425@nilla.icir.org> From: Mark Handley X-Organisation: ICIR To: xorp-cvs@icir.org Date: Fri, 07 Mar 2003 07:19:17 -0800 Subject: [Xorp-cvs] list restricted to member-only posting Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , I've changed the xorp-cvs list to only permit posting from list members. Others will be bounced to me for approval. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 9:03:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 09:04:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27H48lu041427 for ; Fri, 7 Mar 2003 09:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27H48fh026377 for ; Fri, 7 Mar 2003 09:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05413; Fri, 7 Mar 2003 09:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05382 for ; Fri, 7 Mar 2003 09:03:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27H3Cfh026365 for ; Fri, 7 Mar 2003 09:03:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27H3CAq020734 for ; Fri, 7 Mar 2003 09:03:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27H3ClY020733; Fri, 7 Mar 2003 09:03:12 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303071703.h27H3ClY020733@xorpc.icir.org> Date: Fri, 7 Mar 2003 9:03:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/07 09:03:12 Modified files: xorp/libxipc/: test_xrl.cc Log message: Fix memory bug resulting from use of c_str() on a temporary string, ie Xrl x1(...); const char* s = x.str().c_str(); // string returned by x.str() is a temporary // we're officially screwed here as the memory pointed to by s is tidied // in destruction of temporary. Xrl x2(s); _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 9:09:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 09:10:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27HA6lu041918 for ; Fri, 7 Mar 2003 09:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27HA6fh026461 for ; Fri, 7 Mar 2003 09:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05534; Fri, 7 Mar 2003 09:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA05526 for ; Fri, 7 Mar 2003 09:09:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27H9jfh026435 for ; Fri, 7 Mar 2003 09:09:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27H9jAq025650 for ; Fri, 7 Mar 2003 09:09:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27H9jt7025649; Fri, 7 Mar 2003 09:09:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303071709.h27H9jt7025649@xorpc.icir.org> Date: Fri, 7 Mar 2003 9:09:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/07 09:09:45 Modified files: xorp/libxipc/: test_xrl.cc Log message: Fix similiar problem that was not picked up with memory checking. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 10:23:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 10:24:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27IO7lu047464 for ; Fri, 7 Mar 2003 10:24:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27IO7fh027176 for ; Fri, 7 Mar 2003 10:24:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07526; Fri, 7 Mar 2003 10:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07514 for ; Fri, 7 Mar 2003 10:23:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27INjfh027172 for ; Fri, 7 Mar 2003 10:23:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27INjAq035003 for ; Fri, 7 Mar 2003 10:23:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27INiJR035002; Fri, 7 Mar 2003 10:23:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303071823.h27INiJR035002@xorpc.icir.org> Date: Fri, 7 Mar 2003 10:23:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_messenger.cc finder_messenger.hh finder_ng_client.cc finder_tcp.cc finder_tcp_messenger.cc finder_tcp_messenger.hh test_xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/07 10:23:44 Modified files: xorp/libxipc/: finder_messenger.cc finder_messenger.hh finder_ng_client.cc finder_tcp.cc finder_tcp_messenger.cc finder_tcp_messenger.hh test_xrl_router.cc Log message: o Add ability to unhook FinderMessenger event targets from their managers. Avoids nasty destructor cases. o Remove couple of extraneoue event generation cases, ie an error_event is an error_event and does not to be signalled with a close_event too. I think this stems from earlier debugging, but is bogus. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 11:23:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 11:24:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27JO6lu054653 for ; Fri, 7 Mar 2003 11:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JO6fh027747 for ; Fri, 7 Mar 2003 11:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08977; Fri, 7 Mar 2003 11:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08955 for ; Fri, 7 Mar 2003 11:23:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JNefh027737 for ; Fri, 7 Mar 2003 11:23:40 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27JNeAq035436 for ; Fri, 7 Mar 2003 11:23:40 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27JNeeP035435; Fri, 7 Mar 2003 11:23:40 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303071923.h27JNeeP035435@xorpc.icir.org> Date: Fri, 7 Mar 2003 11:23:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/07 11:23:40 Modified files: xorp/libxipc/: finder_tcp.cc Log message: Remove another double event notification. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 11:25:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 11:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27JQ6lu055198 for ; Fri, 7 Mar 2003 11:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JQ6fh027789 for ; Fri, 7 Mar 2003 11:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09043; Fri, 7 Mar 2003 11:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09022 for ; Fri, 7 Mar 2003 11:25:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JPafh027777 for ; Fri, 7 Mar 2003 11:25:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27JPaAq035489 for ; Fri, 7 Mar 2003 11:25:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27JPaGM035488; Fri, 7 Mar 2003 11:25:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303071925.h27JPaGM035488@xorpc.icir.org> Date: Fri, 7 Mar 2003 11:25:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/07 11:25:36 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Minor edits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 11:28:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 11:29:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27JT6lu056681 for ; Fri, 7 Mar 2003 11:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JT6fh027803 for ; Fri, 7 Mar 2003 11:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09145; Fri, 7 Mar 2003 11:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09119 for ; Fri, 7 Mar 2003 11:28:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27JS4fh027794 for ; Fri, 7 Mar 2003 11:28:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27JS4Aq035530 for ; Fri, 7 Mar 2003 11:28:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27JS3A6035529; Fri, 7 Mar 2003 11:28:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303071928.h27JS3A6035529@xorpc.icir.org> Date: Fri, 7 Mar 2003 11:28:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/07 11:28:03 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Updated to match XORP version 0.2 release code; cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 11:49:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 11:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27Jo6lu058931 for ; Fri, 7 Mar 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Jo6fh028008 for ; Fri, 7 Mar 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09673; Fri, 7 Mar 2003 11:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09666 for ; Fri, 7 Mar 2003 11:49:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Jnvfh027983 for ; Fri, 7 Mar 2003 11:49:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27JnuAq035701 for ; Fri, 7 Mar 2003 11:49:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27JnuNd035700; Fri, 7 Mar 2003 11:49:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303071949.h27JnuNd035700@xorpc.icir.org> Date: Fri, 7 Mar 2003 11:49:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_cmd_map.hh finder_ng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/07 11:49:56 Modified files: xorp/libxipc/: xrl_cmd_map.hh finder_ng.hh Log message: Prevent copy and assignment operators being invoked (not currently a problem). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 14:03:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 14:04:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27M44lu068965 for ; Fri, 7 Mar 2003 14:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27M44fh029296 for ; Fri, 7 Mar 2003 14:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12689; Fri, 7 Mar 2003 14:04:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12661 for ; Fri, 7 Mar 2003 14:03:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27M3Qfh029292 for ; Fri, 7 Mar 2003 14:03:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27M3QAq063648 for ; Fri, 7 Mar 2003 14:03:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27M3Qlb063647; Fri, 7 Mar 2003 14:03:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072203.h27M3Qlb063647@xorpc.icir.org> Date: Fri, 7 Mar 2003 14:03:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/07 14:03:26 Modified files: xorp/docs/pim/: pim_arch.tex Log message: Cleanip. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 14:03:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 14:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27M53lu069036 for ; Fri, 7 Mar 2003 14:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27M53fh029312 for ; Fri, 7 Mar 2003 14:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12725; Fri, 7 Mar 2003 14:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12678 for ; Fri, 7 Mar 2003 14:03:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27M3xfh029294 for ; Fri, 7 Mar 2003 14:03:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27M3xAq063697 for ; Fri, 7 Mar 2003 14:03:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27M3xYw063696; Fri, 7 Mar 2003 14:03:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072203.h27M3xYw063696@xorpc.icir.org> Date: Fri, 7 Mar 2003 14:03:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/07 14:03:59 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex xorp/docs/mfea/: mfea_arch.tex Log message: Minor cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 14:34:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 14:34:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27MY4lu071218 for ; Fri, 7 Mar 2003 14:34:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27MY4fh029630 for ; Fri, 7 Mar 2003 14:34:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13467; Fri, 7 Mar 2003 14:34:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13462 for ; Fri, 7 Mar 2003 14:34:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27MY0fh029628 for ; Fri, 7 Mar 2003 14:34:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27MY0Aq063921 for ; Fri, 7 Mar 2003 14:34:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27MY0Pw063920; Fri, 7 Mar 2003 14:34:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072234.h27MY0Pw063920@xorpc.icir.org> Date: Fri, 7 Mar 2003 14:34:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/ Changes by: pavlin@xorpc.icir.org. 03/03/07 14:34:00 Modified files: xorp/docs/multicast/: multicast_arch.tex Log message: Cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 14:37:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 14:38:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27Mc3lu071522 for ; Fri, 7 Mar 2003 14:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Mc3fh029698 for ; Fri, 7 Mar 2003 14:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13562; Fri, 7 Mar 2003 14:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13542 for ; Fri, 7 Mar 2003 14:37:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Mb8fh029677 for ; Fri, 7 Mar 2003 14:37:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27Mb8Aq063980 for ; Fri, 7 Mar 2003 14:37:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27Mb8fI063979; Fri, 7 Mar 2003 14:37:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072237.h27Mb8fI063979@xorpc.icir.org> Date: Fri, 7 Mar 2003 14:37:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_modules_interaction.fig mcast_proto_abstraction.eps mcast_proto_abstraction.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/07 14:37:08 Modified files: xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_modules_interaction.fig mcast_proto_abstraction.eps mcast_proto_abstraction.fig Log message: Replace some of "messages" with "packets" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 14:56:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 14:57:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27Mv5lu072965 for ; Fri, 7 Mar 2003 14:57:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Mv4fh029882 for ; Fri, 7 Mar 2003 14:57:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13888; Fri, 7 Mar 2003 14:57:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13872 for ; Fri, 7 Mar 2003 14:56:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27MuIfh029880 for ; Fri, 7 Mar 2003 14:56:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27MuIAq064148 for ; Fri, 7 Mar 2003 14:56:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27MuIXu064147; Fri, 7 Mar 2003 14:56:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072256.h27MuIXu064147@xorpc.icir.org> Date: Fri, 7 Mar 2003 14:56:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/03/07 14:56:18 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Bump-up the date to March 10, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Fri Mar 7 15:36:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Mar 2003 15:37:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h27Nb2lu075952 for ; Fri, 7 Mar 2003 15:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27Nb2fh030251 for ; Fri, 7 Mar 2003 15:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14715; Fri, 7 Mar 2003 15:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14690 for ; Fri, 7 Mar 2003 15:36:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h27NaNfh030237 for ; Fri, 7 Mar 2003 15:36:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h27NaNAq064448 for ; Fri, 7 Mar 2003 15:36:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h27NaNIa064447; Fri, 7 Mar 2003 15:36:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303072336.h27NaNIa064447@xorpc.icir.org> Date: Fri, 7 Mar 2003 15:36:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ c_format.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/07 15:36:23 Modified files: xorp/libxorp/: c_format.cc Log message: Sync the file with the XORP coding style. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Mon Mar 10 10:06:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 10:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AI73lu081710 for ; Mon, 10 Mar 2003 10:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AI72fh065125 for ; Mon, 10 Mar 2003 10:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA22047; Mon, 10 Mar 2003 10:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA22022 for ; Mon, 10 Mar 2003 10:06:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AI61fh065115 for ; Mon, 10 Mar 2003 10:06:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AI61Aq055922 for ; Mon, 10 Mar 2003 10:06:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AI61eM055921; Mon, 10 Mar 2003 10:06:01 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303101806.h2AI61eM055921@xorpc.icir.org> Date: Mon, 10 Mar 2003 10:06:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ fea_client.hh fea_client.cc rib_manager.hh rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/03/10 10:06:01 Modified files: xorp/rib/: fea_client.hh fea_client.cc rib_manager.hh rib_manager.cc Log message: Add commands to set and get enabled state of FeaClient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Mon Mar 10 10:11:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 10:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AIC3lu082092 for ; Mon, 10 Mar 2003 10:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AIC2fh065175 for ; Mon, 10 Mar 2003 10:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA22206; Mon, 10 Mar 2003 10:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA22180 for ; Mon, 10 Mar 2003 10:11:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AIB4fh065170 for ; Mon, 10 Mar 2003 10:11:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AIB4Aq056030 for ; Mon, 10 Mar 2003 10:11:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AIB4Tf056029; Mon, 10 Mar 2003 10:11:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303101811.h2AIB4Tf056029@xorpc.icir.org> Date: Mon, 10 Mar 2003 10:11:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/03/10 10:11:04 Modified files: xorp/rib/: main_rib.cc Log message: Add -F flag for "no FEA" or shut the **** up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Mon Mar 10 10:50:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 10:51:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AIp4lu085511 for ; Mon, 10 Mar 2003 10:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AIp3fh066023 for ; Mon, 10 Mar 2003 10:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23133; Mon, 10 Mar 2003 10:51:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA23121 for ; Mon, 10 Mar 2003 10:50:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AIoKfh066017 for ; Mon, 10 Mar 2003 10:50:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AIoKAq056803 for ; Mon, 10 Mar 2003 10:50:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AIoKnI056802; Mon, 10 Mar 2003 10:50:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303101850.h2AIoKnI056802@xorpc.icir.org> Date: Mon, 10 Mar 2003 10:50:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/03/10 10:50:20 Modified files: xorp/bgp/harness/: test_rib1.sh Log message: Start rib with -F flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Mon Mar 10 12:01:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:02:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AK28lu098264 for ; Mon, 10 Mar 2003 12:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AK28fh066695 for ; Mon, 10 Mar 2003 12:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA24887; Mon, 10 Mar 2003 12:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA24872 for ; Mon, 10 Mar 2003 12:01:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AK1cfh066689 for ; Mon, 10 Mar 2003 12:01:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AK1bAq075296 for ; Mon, 10 Mar 2003 12:01:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AK1bvR075294; Mon, 10 Mar 2003 12:01:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102001.h2AK1bvR075294@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:01:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:01:37 Modified files: ./: README Log message: Add Javier Cardona to the list of core team members. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:13 2005 Subject: No subject Mon Mar 10 12:09:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:10:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKA8lu002378 for ; Mon, 10 Mar 2003 12:10:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKA7fh066827 for ; Mon, 10 Mar 2003 12:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25187; Mon, 10 Mar 2003 12:10:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25152 for ; Mon, 10 Mar 2003 12:09:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AK9Rfh066795 for ; Mon, 10 Mar 2003 12:09:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AK9RAq077522 for ; Mon, 10 Mar 2003 12:09:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AK9R81077521; Mon, 10 Mar 2003 12:09:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102009.h2AK9R81077521@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:09:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:09:27 Modified files: ./: people.html Log message: Added Javier Cardona to the list of core members. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 12:20:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:21:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKLAlu005324 for ; Mon, 10 Mar 2003 12:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKL9fh066931 for ; Mon, 10 Mar 2003 12:21:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25575; Mon, 10 Mar 2003 12:21:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25544 for ; Mon, 10 Mar 2003 12:20:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKKEfh066921 for ; Mon, 10 Mar 2003 12:20:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AKKEAq079919 for ; Mon, 10 Mar 2003 12:20:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AKKE0C079918; Mon, 10 Mar 2003 12:20:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102020.h2AKKE0C079918@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:20:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:20:14 Modified files: ./: README Log message: * Add gcc/g++ 3.2.1 to the list of supported platforms. * Add a short description for directory "policy": * policy : Policy-related library. Currently, it is work in progress, and is not used yet. Mark, if necessary, please edit this description as apppropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 12:24:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:25:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKPClu005623 for ; Mon, 10 Mar 2003 12:25:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKPCfh066975 for ; Mon, 10 Mar 2003 12:25:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25705; Mon, 10 Mar 2003 12:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25674 for ; Mon, 10 Mar 2003 12:24:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKO4fh066939 for ; Mon, 10 Mar 2003 12:24:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AKO4Aq082334 for ; Mon, 10 Mar 2003 12:24:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AKO4js082333; Mon, 10 Mar 2003 12:24:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102024.h2AKO4js082333@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:24:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:24:04 Modified files: ./: README Log message: Moved SNMP from the list of long-term future plans to the list of short-term future plans. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 12:26:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:27:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKRElu005798 for ; Mon, 10 Mar 2003 12:27:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKREfh066999 for ; Mon, 10 Mar 2003 12:27:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25765; Mon, 10 Mar 2003 12:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA25752 for ; Mon, 10 Mar 2003 12:26:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKQnfh066993 for ; Mon, 10 Mar 2003 12:26:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AKQnAq083071 for ; Mon, 10 Mar 2003 12:26:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AKQnOo083070; Mon, 10 Mar 2003 12:26:49 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303102026.h2AKQnOo083070@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:26:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib1.sh xorp/rib/ fea_client.cc fea_client.hh main_rib.cc rib.hh rib_manager.cc test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/rtrmgr/ config.boot xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.tgt rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/03/10 12:26:49 Modified files: xorp/bgp/harness/: test_rib1.sh xorp/rib/: fea_client.cc fea_client.hh main_rib.cc rib.hh rib_manager.cc test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/rtrmgr/: config.boot xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.tgt rib.xrls rib_base.cc rib_base.hh Log message: Move the disabling of RIB->FEA communication to an XRL (as opposed to a command-line flag). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 12:40:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:41:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKfDlu011071 for ; Mon, 10 Mar 2003 12:41:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKfDfh067149 for ; Mon, 10 Mar 2003 12:41:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA26101; Mon, 10 Mar 2003 12:41:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA26086 for ; Mon, 10 Mar 2003 12:40:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKekfh067141 for ; Mon, 10 Mar 2003 12:40:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AKekAq086421 for ; Mon, 10 Mar 2003 12:40:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AKekB7086420; Mon, 10 Mar 2003 12:40:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102040.h2AKekB7086420@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:40:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:40:46 Modified files: ./: README Log message: Add a reference to xorp/RELEASE_NOTES. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 12:43:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 12:44:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AKi8lu011891 for ; Mon, 10 Mar 2003 12:44:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKi7fh067164 for ; Mon, 10 Mar 2003 12:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA26154; Mon, 10 Mar 2003 12:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA26147 for ; Mon, 10 Mar 2003 12:43:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AKhtfh067160 for ; Mon, 10 Mar 2003 12:43:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AKhtAq086465 for ; Mon, 10 Mar 2003 12:43:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AKhtZt086464; Mon, 10 Mar 2003 12:43:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102043.h2AKhtZt086464@xorpc.icir.org> Date: Mon, 10 Mar 2003 12:43:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 12:43:55 Modified files: ./: RELEASE_NOTES Log message: * Set the release date for Release 0.2 * Update the release notes for PIM-SM * Minor edits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 14:31:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 14:32:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AMWAlu024302 for ; Mon, 10 Mar 2003 14:32:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMWAfh068087 for ; Mon, 10 Mar 2003 14:32:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28953; Mon, 10 Mar 2003 14:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA28931 for ; Mon, 10 Mar 2003 14:31:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMVKfh068075 for ; Mon, 10 Mar 2003 14:31:20 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AMVKAq087115 for ; Mon, 10 Mar 2003 14:31:20 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AMVKik087114; Mon, 10 Mar 2003 14:31:20 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303102231.h2AMVKik087114@xorpc.icir.org> Date: Mon, 10 Mar 2003 14:31:20 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ libxipc_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: mjh@xorpc.icir.org. 03/03/10 14:31:20 Modified files: xorp/docs/libxipc/: libxipc_overview.tex Log message: Fix typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 14:36:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 14:36:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AMaAlu024619 for ; Mon, 10 Mar 2003 14:36:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMaAfh068126 for ; Mon, 10 Mar 2003 14:36:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29026; Mon, 10 Mar 2003 14:36:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29019 for ; Mon, 10 Mar 2003 14:36:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMa0fh068120 for ; Mon, 10 Mar 2003 14:36:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AMa0Aq087206 for ; Mon, 10 Mar 2003 14:36:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AMa07S087205; Mon, 10 Mar 2003 14:36:00 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303102236.h2AMa07S087205@xorpc.icir.org> Date: Mon, 10 Mar 2003 14:36:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_tokens.cc xrl_tokens.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/10 14:36:00 Modified files: xorp/libxipc/: xrl_tokens.cc xrl_tokens.hh Log message: Compilation fix for GCC3.2.2 (reported by Adam). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 14:50:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 14:51:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AMp9lu025748 for ; Mon, 10 Mar 2003 14:51:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMp9fh068258 for ; Mon, 10 Mar 2003 14:51:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29314; Mon, 10 Mar 2003 14:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29295 for ; Mon, 10 Mar 2003 14:50:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMo2fh068235 for ; Mon, 10 Mar 2003 14:50:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AMo2Aq087452 for ; Mon, 10 Mar 2003 14:50:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AMo2YL087451; Mon, 10 Mar 2003 14:50:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102250.h2AMo2YL087451@xorpc.icir.org> Date: Mon, 10 Mar 2003 14:50:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 14:50:02 Modified files: ./: index.html Added files: ./: news.html Log message: * Moved the XORP news section to a separate page/file: news.html, and added a link from the top-level XORP web page to it (the link is in the upper-right corner) * Added a news items for compiling XORP under OS X * Added a news item about Javier joining the core team. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 14:57:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 14:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AMw8lu026286 for ; Mon, 10 Mar 2003 14:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMw8fh068312 for ; Mon, 10 Mar 2003 14:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29535; Mon, 10 Mar 2003 14:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA29514 for ; Mon, 10 Mar 2003 14:57:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AMvEfh068306 for ; Mon, 10 Mar 2003 14:57:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AMvEAq087545 for ; Mon, 10 Mar 2003 14:57:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AMvEgb087544; Mon, 10 Mar 2003 14:57:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102257.h2AMvEgb087544@xorpc.icir.org> Date: Mon, 10 Mar 2003 14:57:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 14:57:14 Modified files: ./: news.html Log message: Added a news item about Release 0.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:01:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:02:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AN28lu028888 for ; Mon, 10 Mar 2003 15:02:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN28fh068341 for ; Mon, 10 Mar 2003 15:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29652; Mon, 10 Mar 2003 15:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29636 for ; Mon, 10 Mar 2003 15:01:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN1bfh068333 for ; Mon, 10 Mar 2003 15:01:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AN1bAq087623 for ; Mon, 10 Mar 2003 15:01:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AN1bjc087622; Mon, 10 Mar 2003 15:01:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303102301.h2AN1bjc087622@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:01:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_fti_xif.cc ...fea_fti_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_xif.cc ...finder_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh ...mfea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...pim_xif.hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr! _client_xif! .hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh xorp/xrl/scripts/Xif/ util.py xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls ...demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea.xrls ...fea_base.cc ...fea_base.hh ...finder.xrls ...finder_base.cc ...finder_base.hh ...finder_client.xrls ...finder_client_base.cc ...finder_client_base.hh ...mfea.xrls ...mfea_base.cc ...mfea_base.hh ...mld6igmp.xrls ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf.xrls ...ospf_base.cc ...ospf_base.hh ...pim.xrls ...pim_base.cc ...pim_base.hh ...rib.xrls ...rib_base.cc ...rib_base.hh ...ribclient.xrls ...ribclient_base.cc ...ribclient_base.hh ...rtrmgr.xrls ...rtrmgr_base.cc ...rtrmgr_base.hh ...test.xrls ...test_b! ase.cc ...test_base.hh ...test_peer.xrls ...test_peer_base.! cc ...t Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/03/10 15:01:37 Modified files: xorp/xrl/interfaces/: bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_fti_xif.cc fea_fti_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp/xrl/scripts/Xif/: util.py xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh test.xrls test_base.cc test_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh Log message: Update copyright. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:03:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:04:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AN47lu029258 for ; Mon, 10 Mar 2003 15:04:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN47fh068365 for ; Mon, 10 Mar 2003 15:04:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29741; Mon, 10 Mar 2003 15:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29726 for ; Mon, 10 Mar 2003 15:03:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN3afh068355 for ; Mon, 10 Mar 2003 15:03:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AN3aAq087656 for ; Mon, 10 Mar 2003 15:03:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AN3a70087655; Mon, 10 Mar 2003 15:03:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102303.h2AN3a70087655@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:03:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ license.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:03:36 Modified files: ./: license.html Log message: Update the copyright year in the XORP license in the web page. Basically, replace "(c) 2001,2002" with "Copyright (c) 2001-2003" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:08:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:09:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2AN98lu030959 for ; Mon, 10 Mar 2003 15:09:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN98fh068412 for ; Mon, 10 Mar 2003 15:09:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29893; Mon, 10 Mar 2003 15:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA29879 for ; Mon, 10 Mar 2003 15:08:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2AN8Qfh068402 for ; Mon, 10 Mar 2003 15:08:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2AN8QAq087728 for ; Mon, 10 Mar 2003 15:08:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2AN8QOS087727; Mon, 10 Mar 2003 15:08:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102308.h2AN8QOS087727@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:08:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:08:26 Modified files: ./: downloads.html Log message: Add an entry for Release 0.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:21:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:22:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANMDlu035364 for ; Mon, 10 Mar 2003 15:22:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANM8fh068533 for ; Mon, 10 Mar 2003 15:22:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00248; Mon, 10 Mar 2003 15:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00221 for ; Mon, 10 Mar 2003 15:21:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANL5fh068525 for ; Mon, 10 Mar 2003 15:21:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANL5Aq090830 for ; Mon, 10 Mar 2003 15:21:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANL59m090829; Mon, 10 Mar 2003 15:21:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303102321.h2ANL59m090829@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:21:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc aspath.hh aspath_test.cc attribute_manager.cc attribute_manager.hh bgp.cc bgp_module.h bgp_trie.cc bgp_trie.hh dummy_main.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh dump_iterators.cc ...dump_iterators.hh ...exceptions.hh ...internal_message.cc ...internal_message.hh ...iptuple.cc ...iptuple.hh ...local_data.cc ...local_data.hh ...main.cc ...main.hh ...next_hop_resolver.cc ...next_hop_resolver.hh ...notification_packet.cc ...open_packet.cc ...packet.cc ...packet.hh ...packet_coding_test.cc ...packet_test.cc ...packet_test.hh ...parameter.cc ...parameter.hh ...path_attribute.cc ...path_attribute.hh ...peer.cc ...peer.hh ...peer_data.cc ...peer_data.hh ...peer_handler.cc ...peer_handler.hh ...peer_handler_debug.cc ...peer_handler_debug.hh ...peer_list.cc ...peer_list.hh ...peer_route_pair.hh ...plumbing.cc ...plumbing.hh ...plumbing_! test.cc ..! .plumbing_test.hh ...rib_ipc_handler.cc ...rib_ipc_handler.hh ...route_queue.cc ...route_queue.hh ...route_table_base.cc ...route_table_base.hh ...route_table_cache.cc ...route_table_cache.hh ...route_table_debug.cc ...route_table_debug.hh ...route_table_decision.cc ...route_table_decision.hh ...route_table_deletion.cc ...route_table_deletion.hh ...route_table_dump.cc ...route_table_dump.hh ...route_table_fanout.cc ...route_table_fanout.hh ...route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh ...socket.cc ...socket.hh ...subnet_route.cc ...subnet_route.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_main.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc ...timer_const.hh ...updat! e_attrib.cc ...update_attrib.hh ...update_packet.cc ...upda! te_test. Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/03/10 15:21:05 Modified files: xorp/bgp/: aspath.cc aspath.hh aspath_test.cc attribute_manager.cc attribute_manager.hh bgp.cc bgp_module.h bgp_trie.cc bgp_trie.hh dummy_main.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh dump_iterators.cc dump_iterators.hh exceptions.hh internal_message.cc internal_message.hh iptuple.cc iptuple.hh local_data.cc local_data.hh main.cc main.hh next_hop_resolver.cc next_hop_resolver.hh notification_packet.cc open_packet.cc packet.cc packet.hh packet_coding_test.cc packet_test.cc packet_test.hh parameter.cc parameter.hh path_attribute.cc path_attribute.hh peer.cc peer.hh peer_data.cc peer_data.hh peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh peer_list.cc peer_list.hh peer_route_pair.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh rib_ipc_handler.cc rib_ipc_handler.hh route_queue.cc route_queue.hh route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh socket.cc socket.hh subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_next_hop_resolver.cc test_nhlookup.cc test_ribin.cc test_ribout.cc timer_const.hh update_attrib.cc update_attrib.hh update_packet.cc update_test.cc xrl_target.cc xrl_target.hh xorp/bgp/harness/: bgppp.cc bgppp.hh command.cc command.hh coord.cc coord.hh peer.cc peer.hh test_peer.cc test_peer.hh trie.cc trie.hh xorp/bgp/tools/: bgptools_module.h print_peer.cc print_peer.hh print_peers.cc print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_peers.cc xorpsh_print_routes.cc xorp/cli/: cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_command_pipe.cc cli_command_pipe.hh cli_module.h cli_node.cc cli_node.hh cli_node_internal_commands.cc cli_node_net.cc cli_private.hh test_cli.cc xrl_cli_node.cc xrl_cli_node.hh xorp/cli/libtecla/: nettest_libtecla.c xorp/fea/: click.cc click.hh click_glue.hh demo_fea_ifmgr_client.cc fea_click.cc fea_dummy.cc fea_module.h fea_rtsock.cc fti.hh fti_click.cc fti_click.hh fti_dummy.cc fti_dummy.hh fti_rtsock.cc fti_rtsock.hh fti_transaction.cc fti_transaction.hh ifconfig.cc ifconfig.hh ifconfig_click.cc ifconfig_click.hh ifconfig_dummy.cc ifconfig_dummy.hh ifconfig_rtsock.cc ifconfig_rtsock.hh ifmanager.hh ifmanager_transaction.cc ifmanager_transaction.hh iftree.cc iftree.hh rawsock4.cc rawsock4.hh rtsock.cc rtsock.hh test_fea.cc test_fti.cc test_ifconfig_rtsock.cc test_ifmanager.cc test_ifmanager_transaction.cc test_rawsock4.cc xrl_fti.cc xrl_fti.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_rawsock4.cc xrl_rawsock4.hh xrl_target.cc xrl_target.hh xorp/fea/click_elements/: forward1.cc forward1.hh forward2.cc forward2.hh ipv4address.hh rtable1.cc rtable1.hh rtable2.cc rtable2.hh trie.cc xorp/libcomm/: comm_module.h test_comm.c xorp/libproto/: libproto_module.h proto_node.hh proto_node_cli.cc proto_node_cli.hh proto_register.cc proto_register.hh proto_unit.cc proto_unit.hh xorp/libxipc/: call_xrl.cc finder.cc finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_messenger.cc finder_messenger.hh finder_module.h finder_msg.cc finder_msg.hh finder_msgs.cc finder_msgs.hh finder_server.cc finder_server.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh finder_transport.cc finder_transport.hh header.cc header.hh hmac.cc hmac.hh ipc_module.h sockutil.cc sockutil.hh test_finder_client2.cc test_finder_messenger.cc test_finder_msgs.cc test_finder_ng.cc test_finder_tcp.cc test_header.cc test_inproc.cc test_lemming.cc test_stcp.cc test_sudp.cc test_xrl.cc test_xrl_args.cc test_xrl_atom.cc test_xrl_parser.cc xrl.cc xrl.hh xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_atom_list.cc xrl_atom_list.hh xrl_cmd_map.cc xrl_cmd_map.hh xrl_error.cc xrl_error.hh xrl_module.h xrl_parser.cc xrl_parser.hh xrl_parser_input.cc xrl_parser_input.hh xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_sender.hh xrl_std_router.cc xrl_std_router.hh xrl_tokens.cc xrl_tokens.hh xuid.cc xuid.hh xorp/libxorp/: asnum.hh asyncio.cc asyncio.hh buffer.hh c_format.cc c_format.hh callback.hh config_param.hh debug.c debug.h ether_compat.h eventloop.cc eventloop.hh exceptions.cc exceptions.hh heap.cc heap.hh ipnet.hh ipv4.cc ipv4.hh ipv4net.hh ipv6.cc ipv6.hh ipv6net.hh ipvx.cc ipvx.hh ipvxnet.hh libxorp_module.h mac.cc mac.hh minitraits.hh nexthop.cc nexthop.hh old_trie.hh ref_ptr.cc ref_ptr.hh ref_trie.hh selector.cc selector.hh test_asyncio.cc test_callback.cc test_config_param.cc test_ipnet.cc test_ipv4.cc test_ipv4net.cc test_ipv6.cc test_ipv6net.cc test_ipvx.cc test_ipvxnet.cc test_mac.cc test_main.hh test_ref_trie.cc test_test_main.cc test_time_slice.cc test_timer.cc test_trie.cc test_types.cc test_vif.cc time_slice.cc time_slice.hh timer.cc timer.hh timeval.hh token.cc token.hh transaction.cc transaction.hh trie.hh utility.h utils.hh vif.cc vif.hh xlog.c xlog.h xorp.h xorp/mfea/: mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_module.h mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_private.hh mfea_unix_comm.cc mfea_unix_comm.hh mfea_unix_if_getifaddrs.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc mfea_unix_kernel_messages.hh mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_osdep.hh mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/: igmp_proto.cc igmp_proto.h mld6_proto.cc mld6_proto.h mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_module.h mld6igmp_node.cc mld6igmp_node.hh mld6igmp_node_cli.cc mld6igmp_node_cli.hh mld6igmp_private.hh mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/mrt/: buffer.c buffer.h counter.h inet_cksum.c inet_cksum.h max_vifs.h mifset.cc mifset.hh mrib_table.cc mrib_table.hh mrt.hh mrt_module.h multicast_defs.h netstream_access.h test_mrib.cc test_mrt.cc test_mtimer.cc timer.hh timer2xorp.cc xorp/mrt/include/: ip_mroute.h xorp/ospfd/xorp/: ospf_config.h ospf_module.h xrl_target.h xorp/pim/: pim_bsr.cc pim_bsr.hh pim_config.cc pim_mfc.cc pim_mfc.hh pim_module.h pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_data.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_task.hh pim_mre_track_state.cc pim_mre_track_state.hh pim_mrib_table.cc pim_mrib_table.hh pim_mrt.cc pim_mrt.hh pim_mrt_mfc.cc pim_mrt_task.cc pim_nbr.cc pim_nbr.hh pim_node.cc pim_node.hh pim_node_cli.cc pim_node_cli.hh pim_private.hh pim_proto.h pim_proto_assert.cc pim_proto_assert.hh pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_graft_ack.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_proto_register.cc pim_proto_register_stop.cc pim_rp.cc pim_rp.hh pim_scope_zone_table.cc pim_scope_zone_table.hh pim_vif.cc pim_vif.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh xorp/rib/: dummy_register_server.cc dummy_register_server.hh fea_client.cc fea_client.hh main_rib.cc main_routemap.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh protocol.cc protocol.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.cc route.hh routemap.cc routemap.hh rt_tab_base.cc rt_tab_base.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_redist.hh rt_tab_register.cc rt_tab_register.hh test_fea_client.cc test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc urib_module.h vifmanager.cc vifmanager.hh xrl_target.cc xrl_target.hh xorp/rip/routed/: xorp-rip.cc xorp-rip.h xorp/rtrmgr/: cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh master_conf_tree_node.cc master_conf_tree_node.hh module_manager.cc module_manager.hh op_commands.cc op_commands.hh parse_error.hh path_segment.hh popen.cc popen.hh randomness.cc randomness.hh rtrmgr_module.h slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh slave_module_manager.cc slave_module_manager.hh split.cc split.hh template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_templates.cc unexpanded_xrl.cc unexpanded_xrl.hh userdb.cc userdb.hh xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh xorp/rtrmgr/tools/: show_interfaces.cc show_interfaces.hh xorp/utils/: runit.cc xorp/xrl/tests/: test_generated.cc test_tgt.cc test_tgt.hh test_xifs.cc test_xifs.hh Log message: Update copyright. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:29:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:30:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANU7lu038431 for ; Mon, 10 Mar 2003 15:30:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANU7fh068622 for ; Mon, 10 Mar 2003 15:30:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00436; Mon, 10 Mar 2003 15:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00422 for ; Mon, 10 Mar 2003 15:29:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANTFfh068592 for ; Mon, 10 Mar 2003 15:29:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANTFAq091854 for ; Mon, 10 Mar 2003 15:29:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANTFN8091853; Mon, 10 Mar 2003 15:29:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102329.h2ANTFN8091853@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:29:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:29:14 Modified files: ./: index.html Log message: Update top web page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:14 2005 Subject: No subject Mon Mar 10 15:33:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:34:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANYBlu039580 for ; Mon, 10 Mar 2003 15:34:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANYBfh068647 for ; Mon, 10 Mar 2003 15:34:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00530; Mon, 10 Mar 2003 15:34:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00518 for ; Mon, 10 Mar 2003 15:33:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANXqfh068639 for ; Mon, 10 Mar 2003 15:33:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANXqAq092365 for ; Mon, 10 Mar 2003 15:33:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANXq2K092364; Mon, 10 Mar 2003 15:33:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102333.h2ANXq2K092364@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:33:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:33:52 Modified files: ./: index.html Log message: Another update of the top-level web page: * 0.1 -> 0.2 * Xorp compiles on gcc 3.2.1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 15:36:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:37:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANb8lu039812 for ; Mon, 10 Mar 2003 15:37:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANb7fh068696 for ; Mon, 10 Mar 2003 15:37:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00616; Mon, 10 Mar 2003 15:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00605 for ; Mon, 10 Mar 2003 15:36:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANaSfh068690 for ; Mon, 10 Mar 2003 15:36:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANaRAq092577 for ; Mon, 10 Mar 2003 15:36:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANaRDb092576; Mon, 10 Mar 2003 15:36:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102336.h2ANaRDb092576@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:36:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ LICENSE Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:36:27 Modified files: ./: LICENSE Log message: Update the copyright year in the top-level LICENSE file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 15:43:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:44:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANi7lu040341 for ; Mon, 10 Mar 2003 15:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANi7fh068784 for ; Mon, 10 Mar 2003 15:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00839; Mon, 10 Mar 2003 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00813 for ; Mon, 10 Mar 2003 15:43:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANhEfh068776 for ; Mon, 10 Mar 2003 15:43:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANhEAq092682 for ; Mon, 10 Mar 2003 15:43:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANhEdi092681; Mon, 10 Mar 2003 15:43:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102343.h2ANhEdi092681@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:43:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex xorp/docs/fea/ fea.tex xorp/docs/rib/ rib.tex xorp/docs/rtrmgr/ rtrmgr.tex xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:43:14 Modified files: xorp/docs/bgp/: bgp.tex xorp/docs/fea/: fea.tex xorp/docs/rib/: rib.tex xorp/docs/rtrmgr/: rtrmgr.tex xorp/docs/test_harness/: test_harness.tex Log message: Update the date of each document to March 10, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 15:48:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:49:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANn7lu040777 for ; Mon, 10 Mar 2003 15:49:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANn7fh068836 for ; Mon, 10 Mar 2003 15:49:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00966; Mon, 10 Mar 2003 15:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA00948 for ; Mon, 10 Mar 2003 15:48:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANmWfh068825 for ; Mon, 10 Mar 2003 15:48:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANmWAq093030 for ; Mon, 10 Mar 2003 15:48:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANmWej093029; Mon, 10 Mar 2003 15:48:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102348.h2ANmWej093029@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:48:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:48:32 Modified files: ./: RELEASE_NOTES Log message: Add release notes for LIBXORP, FEA, MFEA, MLD/IGMP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 15:52:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 15:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ANr7lu043931 for ; Mon, 10 Mar 2003 15:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANr7fh068872 for ; Mon, 10 Mar 2003 15:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01123; Mon, 10 Mar 2003 15:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01111 for ; Mon, 10 Mar 2003 15:52:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ANqSfh068866 for ; Mon, 10 Mar 2003 15:52:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ANqSAq093187 for ; Mon, 10 Mar 2003 15:52:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ANqS8A093186; Mon, 10 Mar 2003 15:52:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303102352.h2ANqS8A093186@xorpc.icir.org> Date: Mon, 10 Mar 2003 15:52:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/03/10 15:52:28 Modified files: xorp/bgp/: .cvsignore Log message: remove test_next_hop_resolver from .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 16:01:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 16:02:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B028lu046690 for ; Mon, 10 Mar 2003 16:02:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B027fh068956 for ; Mon, 10 Mar 2003 16:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01396; Mon, 10 Mar 2003 16:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01384 for ; Mon, 10 Mar 2003 16:01:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B016fh068949 for ; Mon, 10 Mar 2003 16:01:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B015Aq096580 for ; Mon, 10 Mar 2003 16:01:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B015OG096578; Mon, 10 Mar 2003 16:01:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110001.h2B015OG096578@xorpc.icir.org> Date: Mon, 10 Mar 2003 16:01:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/03/10 16:01:05 Modified files: xorp/docs/: index.html Log message: Update the documentation index Web page for Release 0.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 16:13:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 16:14:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B0E7lu050162 for ; Mon, 10 Mar 2003 16:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B0E7fh069063 for ; Mon, 10 Mar 2003 16:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01654; Mon, 10 Mar 2003 16:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01636 for ; Mon, 10 Mar 2003 16:13:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B0DDfh069050 for ; Mon, 10 Mar 2003 16:13:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B0DDAq003370 for ; Mon, 10 Mar 2003 16:13:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B0DD8I003369; Mon, 10 Mar 2003 16:13:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110013.h2B0DD8I003369@xorpc.icir.org> Date: Mon, 10 Mar 2003 16:13:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/03/10 16:13:13 Modified files: xorp/mrt/: TODO Log message: Remove two TODO entries that were already DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 16:17:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 16:18:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B0I7lu051350 for ; Mon, 10 Mar 2003 16:18:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B0I7fh069103 for ; Mon, 10 Mar 2003 16:18:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01796; Mon, 10 Mar 2003 16:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA01740 for ; Mon, 10 Mar 2003 16:17:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B0H9fh069098 for ; Mon, 10 Mar 2003 16:17:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B0H9Aq004598 for ; Mon, 10 Mar 2003 16:17:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B0H9eW004597; Mon, 10 Mar 2003 16:17:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110017.h2B0H9eW004597@xorpc.icir.org> Date: Mon, 10 Mar 2003 16:17:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 16:17:09 Modified files: ./: VERSION configure.in configure Log message: Bump-up the version to 0.2 in xorp/VERSION and xorp/configure.in, and regenerate xorp/configure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:02:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B143lu066729 for ; Mon, 10 Mar 2003 17:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B143fh069534 for ; Mon, 10 Mar 2003 17:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02649; Mon, 10 Mar 2003 17:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02634 for ; Mon, 10 Mar 2003 17:03:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B130fh069526 for ; Mon, 10 Mar 2003 17:03:00 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B12xAq023266 for ; Mon, 10 Mar 2003 17:02:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B12xBh023265; Mon, 10 Mar 2003 17:02:59 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303110102.h2B12xBh023265@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:02:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in config.boot main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/03/10 17:02:59 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in config.boot main_rtrmgr.cc Log message: Make rtrmgr use new finder (or it can't talk to anything else!) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:05:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:06:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B162lu066916 for ; Mon, 10 Mar 2003 17:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B162fh069579 for ; Mon, 10 Mar 2003 17:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02716; Mon, 10 Mar 2003 17:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02706 for ; Mon, 10 Mar 2003 17:05:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B15ffh069574 for ; Mon, 10 Mar 2003 17:05:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B15fAq023342 for ; Mon, 10 Mar 2003 17:05:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B15fer023341; Mon, 10 Mar 2003 17:05:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110105.h2B15fer023341@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:05:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:05:41 Modified files: xorp/cli/: README Log message: Update README for CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:16:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:17:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1H2lu067747 for ; Mon, 10 Mar 2003 17:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1H2fh069668 for ; Mon, 10 Mar 2003 17:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02928; Mon, 10 Mar 2003 17:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02916 for ; Mon, 10 Mar 2003 17:16:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1Gpfh069666 for ; Mon, 10 Mar 2003 17:16:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1GpAq023456 for ; Mon, 10 Mar 2003 17:16:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1GpGK023455; Mon, 10 Mar 2003 17:16:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110116.h2B1GpGK023455@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:16:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:16:51 Modified files: xorp/bgp/: README Log message: Update the date in the status section of BGP README. The text under the status section appears up to date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:19:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1K2lu067980 for ; Mon, 10 Mar 2003 17:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1K2fh069690 for ; Mon, 10 Mar 2003 17:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02989; Mon, 10 Mar 2003 17:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA02980 for ; Mon, 10 Mar 2003 17:19:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1JTfh069682 for ; Mon, 10 Mar 2003 17:19:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1JTAq023518 for ; Mon, 10 Mar 2003 17:19:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1JTLO023517; Mon, 10 Mar 2003 17:19:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110119.h2B1JTLO023517@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:19:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:19:29 Modified files: xorp/mfea/: README Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:21:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1M2lu068137 for ; Mon, 10 Mar 2003 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1M2fh069722 for ; Mon, 10 Mar 2003 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03027; Mon, 10 Mar 2003 17:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03019 for ; Mon, 10 Mar 2003 17:21:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1Ljfh069720 for ; Mon, 10 Mar 2003 17:21:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1LjAq023580 for ; Mon, 10 Mar 2003 17:21:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1LjPn023579; Mon, 10 Mar 2003 17:21:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110121.h2B1LjPn023579@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:21:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:21:45 Modified files: xorp/mfea/: README Log message: Minor fix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:22:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:23:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1N3lu068223 for ; Mon, 10 Mar 2003 17:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1N3fh069734 for ; Mon, 10 Mar 2003 17:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03059; Mon, 10 Mar 2003 17:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03051 for ; Mon, 10 Mar 2003 17:22:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1Mmfh069732 for ; Mon, 10 Mar 2003 17:22:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1MmAq023619 for ; Mon, 10 Mar 2003 17:22:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1MmJs023618; Mon, 10 Mar 2003 17:22:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110122.h2B1MmJs023618@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:22:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:22:48 Modified files: xorp/mld6igmp/: README Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:23:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1O3lu068309 for ; Mon, 10 Mar 2003 17:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1O3fh069744 for ; Mon, 10 Mar 2003 17:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03102; Mon, 10 Mar 2003 17:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03089 for ; Mon, 10 Mar 2003 17:23:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1NVfh069740 for ; Mon, 10 Mar 2003 17:23:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1NUAq023654 for ; Mon, 10 Mar 2003 17:23:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1NUEv023653; Mon, 10 Mar 2003 17:23:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110123.h2B1NUEv023653@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:23:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:23:30 Modified files: xorp/pim/: README Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:38:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1d3lu069441 for ; Mon, 10 Mar 2003 17:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1d3fh069873 for ; Mon, 10 Mar 2003 17:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03344; Mon, 10 Mar 2003 17:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03318 for ; Mon, 10 Mar 2003 17:38:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1cRfh069859 for ; Mon, 10 Mar 2003 17:38:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1cRAq025985 for ; Mon, 10 Mar 2003 17:38:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1cRS2025984; Mon, 10 Mar 2003 17:38:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110138.h2B1cRS2025984@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:38:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:38:27 Modified files: xorp/pim/: README Log message: Update README for pim. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:40:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:41:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1f4lu069613 for ; Mon, 10 Mar 2003 17:41:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1f3fh069916 for ; Mon, 10 Mar 2003 17:41:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03404; Mon, 10 Mar 2003 17:41:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03379 for ; Mon, 10 Mar 2003 17:40:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1eVfh069908 for ; Mon, 10 Mar 2003 17:40:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1eVAq026037 for ; Mon, 10 Mar 2003 17:40:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1eVMD026036; Mon, 10 Mar 2003 17:40:31 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303110140.h2B1eVMD026036@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:40:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ TODO README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/10 17:40:31 Modified files: xorp/libxipc/: TODO README Log message: Updates for release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:15 2005 Subject: No subject Mon Mar 10 17:51:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 17:52:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B1q6lu070435 for ; Mon, 10 Mar 2003 17:52:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1q6fh069999 for ; Mon, 10 Mar 2003 17:52:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03556; Mon, 10 Mar 2003 17:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA03539 for ; Mon, 10 Mar 2003 17:51:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B1p3fh069991 for ; Mon, 10 Mar 2003 17:51:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B1p3Aq026316 for ; Mon, 10 Mar 2003 17:51:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B1p3Ck026315; Mon, 10 Mar 2003 17:51:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110151.h2B1p3Ck026315@xorpc.icir.org> Date: Mon, 10 Mar 2003 17:51:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/10 17:51:03 Modified files: xorp/libxipc/: TODO Log message: Add a newline at end of file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:08:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:09:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B296lu071704 for ; Mon, 10 Mar 2003 18:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B296fh070149 for ; Mon, 10 Mar 2003 18:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03887; Mon, 10 Mar 2003 18:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03879 for ; Mon, 10 Mar 2003 18:08:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B28tfh070144 for ; Mon, 10 Mar 2003 18:08:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B28tAq028616 for ; Mon, 10 Mar 2003 18:08:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B28tOZ028615; Mon, 10 Mar 2003 18:08:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303110208.h2B28tOZ028615@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:08:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/03/10 18:08:55 Modified files: ./: news.html Log message: Lower level of date headings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:09:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:10:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B2A6lu071793 for ; Mon, 10 Mar 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2A6fh070180 for ; Mon, 10 Mar 2003 18:10:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03916; Mon, 10 Mar 2003 18:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA03908 for ; Mon, 10 Mar 2003 18:09:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B29Rfh070152 for ; Mon, 10 Mar 2003 18:09:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B29RAq028646 for ; Mon, 10 Mar 2003 18:09:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B29REn028645; Mon, 10 Mar 2003 18:09:27 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303110209.h2B29REn028645@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:09:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/03/10 18:09:27 Modified files: ./: index.html Log message: Boxify Links and add boxific news headlines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:18:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:19:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B2J6lu072487 for ; Mon, 10 Mar 2003 18:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2J5fh070226 for ; Mon, 10 Mar 2003 18:19:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04134; Mon, 10 Mar 2003 18:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04095 for ; Mon, 10 Mar 2003 18:18:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2I3fh070219 for ; Mon, 10 Mar 2003 18:18:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B2I3Aq028743 for ; Mon, 10 Mar 2003 18:18:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B2I3tc028742; Mon, 10 Mar 2003 18:18:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110218.h2B2I3tc028742@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:18:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 18:18:03 Modified files: ./: news.html Log message: Add links from Release news to the XORP download page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:24:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:25:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B2P6lu072939 for ; Mon, 10 Mar 2003 18:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2P6fh070278 for ; Mon, 10 Mar 2003 18:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04240; Mon, 10 Mar 2003 18:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04224 for ; Mon, 10 Mar 2003 18:24:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2ONfh070261 for ; Mon, 10 Mar 2003 18:24:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B2ONAq028828 for ; Mon, 10 Mar 2003 18:24:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B2ONgS028827; Mon, 10 Mar 2003 18:24:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110224.h2B2ONgS028827@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:24:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 18:24:23 Modified files: ./: index.html Log message: A minor fix to the Mailing lists table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:34:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:35:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B2Z6lu073697 for ; Mon, 10 Mar 2003 18:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2Z6fh070381 for ; Mon, 10 Mar 2003 18:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04408; Mon, 10 Mar 2003 18:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04379 for ; Mon, 10 Mar 2003 18:34:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2Y8fh070356 for ; Mon, 10 Mar 2003 18:34:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B2Y7Aq028910 for ; Mon, 10 Mar 2003 18:34:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B2Y7Xa028909; Mon, 10 Mar 2003 18:34:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110234.h2B2Y7Xa028909@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:34:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 18:34:07 Modified files: ./: index.html Log message: Add "Software Status" link in the "Quick Links" table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 18:41:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 18:42:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B2g6lu074240 for ; Mon, 10 Mar 2003 18:42:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2g6fh070423 for ; Mon, 10 Mar 2003 18:42:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04514; Mon, 10 Mar 2003 18:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA04501 for ; Mon, 10 Mar 2003 18:41:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B2f6fh070416 for ; Mon, 10 Mar 2003 18:41:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B2f6Aq028996 for ; Mon, 10 Mar 2003 18:41:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B2f62m028995; Mon, 10 Mar 2003 18:41:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110241.h2B2f62m028995@xorpc.icir.org> Date: Mon, 10 Mar 2003 18:41:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 18:41:06 Modified files: ./: index.html Log message: Added   between "Software" and "Status" to prevent line breaking. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 20:21:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 20:22:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B4M7lu081715 for ; Mon, 10 Mar 2003 20:22:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B4M7fh071150 for ; Mon, 10 Mar 2003 20:22:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA05926; Mon, 10 Mar 2003 20:22:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA05919 for ; Mon, 10 Mar 2003 20:21:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B4Lxfh071143 for ; Mon, 10 Mar 2003 20:21:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B4LxAq029866 for ; Mon, 10 Mar 2003 20:21:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B4Lxs1029865; Mon, 10 Mar 2003 20:21:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303110421.h2B4Lxs1029865@xorpc.icir.org> Date: Mon, 10 Mar 2003 20:21:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/03/10 20:21:59 Modified files: ./: index.html Log message: Link Box / Project News table nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Mon Mar 10 20:37:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Mar 2003 20:38:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2B4c7lu082919 for ; Mon, 10 Mar 2003 20:38:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B4c7fh071263 for ; Mon, 10 Mar 2003 20:38:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA06145; Mon, 10 Mar 2003 20:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA06136 for ; Mon, 10 Mar 2003 20:37:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2B4bVfh071257 for ; Mon, 10 Mar 2003 20:37:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2B4bVAq030003 for ; Mon, 10 Mar 2003 20:37:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2B4bVId030002; Mon, 10 Mar 2003 20:37:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303110437.h2B4bVId030002@xorpc.icir.org> Date: Mon, 10 Mar 2003 20:37:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/10 20:37:31 Modified files: ./: index.html Log message: Minor clarification re. the status of the xorp-users ML archive. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 0:14:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 00:15:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2C8F3lu009929 for ; Wed, 12 Mar 2003 00:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2C8F3fh086385 for ; Wed, 12 Mar 2003 00:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA06329; Wed, 12 Mar 2003 00:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA06319 for ; Wed, 12 Mar 2003 00:14:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2C8ECfh086380 for ; Wed, 12 Mar 2003 00:14:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2C8ECAq069732 for ; Wed, 12 Mar 2003 00:14:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2C8ECSj069731; Wed, 12 Mar 2003 00:14:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303120814.h2C8ECSj069731@xorpc.icir.org> Date: Wed, 12 Mar 2003 0:14:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/12 00:14:12 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 2:13:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 02:14:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CAE3lu019148 for ; Wed, 12 Mar 2003 02:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAE3fh087549 for ; Wed, 12 Mar 2003 02:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08122; Wed, 12 Mar 2003 02:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08109 for ; Wed, 12 Mar 2003 02:13:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CADLfh087545 for ; Wed, 12 Mar 2003 02:13:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CADLAq099299 for ; Wed, 12 Mar 2003 02:13:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CADLoc099298; Wed, 12 Mar 2003 02:13:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303121013.h2CADLoc099298@xorpc.icir.org> Date: Wed, 12 Mar 2003 2:13:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ getline.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/03/12 02:13:21 Modified files: xorp/cli/libtecla/: getline.c Log message: Fix gl_change_terminal() so it does the right thing if GetLine is setup for a network connection. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 2:15:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 02:15:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CAF4lu019231 for ; Wed, 12 Mar 2003 02:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAF4fh087560 for ; Wed, 12 Mar 2003 02:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08146; Wed, 12 Mar 2003 02:15:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08141 for ; Wed, 12 Mar 2003 02:15:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAF0fh087555 for ; Wed, 12 Mar 2003 02:15:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CAF0Aq099459 for ; Wed, 12 Mar 2003 02:15:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CAF07I099458; Wed, 12 Mar 2003 02:15:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303121015.h2CAF07I099458@xorpc.icir.org> Date: Wed, 12 Mar 2003 2:15:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/12 02:15:00 Modified files: xorp/cli/: cli_node_net.cc Log message: Call gl_change_terminal() with default value of ther terminal set to vt100. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 2:32:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 02:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CAX3lu020585 for ; Wed, 12 Mar 2003 02:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAX2fh087697 for ; Wed, 12 Mar 2003 02:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08404; Wed, 12 Mar 2003 02:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08396 for ; Wed, 12 Mar 2003 02:32:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAWpfh087693 for ; Wed, 12 Mar 2003 02:32:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CAWpAq000490 for ; Wed, 12 Mar 2003 02:32:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CAWpGI000489; Wed, 12 Mar 2003 02:32:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303121032.h2CAWpGI000489@xorpc.icir.org> Date: Wed, 12 Mar 2003 2:32:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/12 02:32:51 Modified files: xorp/cli/: cli_node_net.cc Log message: Set the terminal as appropriate: if is_stdio() is true, then use getenv("TERM"), otherwise use "vt100" by default. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 2:47:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 02:48:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CAm3lu021709 for ; Wed, 12 Mar 2003 02:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAm2fh087794 for ; Wed, 12 Mar 2003 02:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08606; Wed, 12 Mar 2003 02:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08597 for ; Wed, 12 Mar 2003 02:47:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAlsfh087792 for ; Wed, 12 Mar 2003 02:47:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CAlsAq000758 for ; Wed, 12 Mar 2003 02:47:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CAlsYb000757; Wed, 12 Mar 2003 02:47:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303121047.h2CAlsYb000757@xorpc.icir.org> Date: Wed, 12 Mar 2003 2:47:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/12 02:47:54 Modified files: ./: RELEASE_NOTES Log message: * Add a template with empty bullets for release notes for the next release * Add a bullet about a critical bug fix within the CLI (triggered only if a process like xorp/pim/test_pim that has built-in CLI is run in background). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 2:58:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 02:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CAx3lu022536 for ; Wed, 12 Mar 2003 02:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAx3fh087867 for ; Wed, 12 Mar 2003 02:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08799; Wed, 12 Mar 2003 02:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id CAA08792 for ; Wed, 12 Mar 2003 02:58:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CAwxfh087865 for ; Wed, 12 Mar 2003 02:58:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CAwxAq000868 for ; Wed, 12 Mar 2003 02:58:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CAwxB9000867; Wed, 12 Mar 2003 02:58:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303121058.h2CAwxB9000867@xorpc.icir.org> Date: Wed, 12 Mar 2003 2:58:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/12 02:58:59 Modified files: xorp/pim/: README Log message: Minor edit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 11:11:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 11:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CJC2lu061166 for ; Wed, 12 Mar 2003 11:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CJC2fh093334 for ; Wed, 12 Mar 2003 11:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA19856; Wed, 12 Mar 2003 11:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA19842 for ; Wed, 12 Mar 2003 11:11:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CJBifh093332 for ; Wed, 12 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CJBiAq062396 for ; Wed, 12 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CJBiDP062395; Wed, 12 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303121911.h2CJBiDP062395@xorpc.icir.org> Date: Wed, 12 Mar 2003 11:11:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefil! e.in xorp/! rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in xorp/rip/ .cvsignore Makefile.am Makefile.in README route6d-20011126-101012.tar.gz routed-20011126-095745.tar.gz xorp/rip/route6d/ .cvsignore Makefile.am Makefile.in route6d.8 route6d.c route6d.h xorp/rip/route6d/misc/ cksum.c xorp/rip/routed/ .cvsignore Makefile.am Makefile.in defs.h if.c input.c main.c output.c parms.c pathnames.h radix.c radix.h rdisc.c routed.8 table.c trace.c xorp-rip.cc xorp-rip.h xorp/rip/routed/rtquery/ Makefile rtquery.8 rtquery.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/03/12 11:11:44 Modified files: ./: Makefile.am Makefile.in configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Removed files: xorp/rip/: .cvsignore Makefile.am Makefile.in README route6d-20011126-101012.tar.gz routed-20011126-095745.tar.gz xorp/rip/route6d/: .cvsignore Makefile.am Makefile.in route6d.8 route6d.c route6d.h xorp/rip/route6d/misc/: cksum.c xorp/rip/routed/: .cvsignore Makefile.am Makefile.in defs.h if.c input.c main.c output.c parms.c pathnames.h radix.c radix.h rdisc.c routed.8 table.c trace.c xorp-rip.cc xorp-rip.h xorp/rip/routed/rtquery/: Makefile rtquery.8 rtquery.c Log message: Remove RIP from build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 12:02:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 12:03:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CK3Alu065056 for ; Wed, 12 Mar 2003 12:03:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CK39fh093732 for ; Wed, 12 Mar 2003 12:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21195; Wed, 12 Mar 2003 12:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21173 for ; Wed, 12 Mar 2003 12:02:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CK2ifh093721 for ; Wed, 12 Mar 2003 12:02:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CK2iAq069500 for ; Wed, 12 Mar 2003 12:02:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CK2ivx069499; Wed, 12 Mar 2003 12:02:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303122002.h2CK2ivx069499@xorpc.icir.org> Date: Wed, 12 Mar 2003 12:02:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc finder_tcp_messenger.cc test_finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/03/12 12:02:44 Modified files: xorp/libxipc/: finder_tcp.cc finder_tcp_messenger.cc test_finder_tcp.cc Log message: Apply htons on ports specified for libcomm. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 12:15:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 12:16:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CKG6lu066039 for ; Wed, 12 Mar 2003 12:16:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CKG6fh093835 for ; Wed, 12 Mar 2003 12:16:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21486; Wed, 12 Mar 2003 12:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21466 for ; Wed, 12 Mar 2003 12:15:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CKFMfh093833 for ; Wed, 12 Mar 2003 12:15:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CKFLAq069826 for ; Wed, 12 Mar 2003 12:15:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CKFL3K069825; Wed, 12 Mar 2003 12:15:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303122015.h2CKFL3K069825@xorpc.icir.org> Date: Wed, 12 Mar 2003 12:15:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/12 12:15:21 Modified files: xorp/devnotes/: WORKPLAN Log message: * Update the priority of "Finish PIM testing" task from High to Done * Start the wish-list of things to include with the next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 14:46:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 14:47:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CMl7lu077665 for ; Wed, 12 Mar 2003 14:47:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CMl7fh095175 for ; Wed, 12 Mar 2003 14:47:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25003; Wed, 12 Mar 2003 14:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24975 for ; Wed, 12 Mar 2003 14:46:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CMk3fh095169 for ; Wed, 12 Mar 2003 14:46:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CMk3Aq001042 for ; Wed, 12 Mar 2003 14:46:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CMk3PU001041; Wed, 12 Mar 2003 14:46:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303122246.h2CMk3PU001041@xorpc.icir.org> Date: Wed, 12 Mar 2003 14:46:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h comm_sock.c comm_user.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 03/03/12 14:46:02 Modified files: xorp/libcomm/: comm_api.h comm_sock.c comm_user.c Log message: const-ify arguments that are pointers and that the memory they point to is not suppose to be modified. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 14:58:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 14:59:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2CMxAlu078641 for ; Wed, 12 Mar 2003 14:59:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CMx9fh095261 for ; Wed, 12 Mar 2003 14:59:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25316; Wed, 12 Mar 2003 14:59:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25299 for ; Wed, 12 Mar 2003 14:58:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2CMwffh095251 for ; Wed, 12 Mar 2003 14:58:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2CMwfAq001662 for ; Wed, 12 Mar 2003 14:58:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2CMwfpQ001661; Wed, 12 Mar 2003 14:58:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303122258.h2CMwfpQ001661@xorpc.icir.org> Date: Wed, 12 Mar 2003 14:58:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/12 14:58:41 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:16 2005 Subject: No subject Wed Mar 12 16:27:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 16:28:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D0S6lu085339 for ; Wed, 12 Mar 2003 16:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0S6fh095947 for ; Wed, 12 Mar 2003 16:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27520; Wed, 12 Mar 2003 16:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27487 for ; Wed, 12 Mar 2003 16:27:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0RBfh095939 for ; Wed, 12 Mar 2003 16:27:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D0RAAq010006 for ; Wed, 12 Mar 2003 16:27:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D0RAsk010005; Wed, 12 Mar 2003 16:27:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130027.h2D0RAsk010005@xorpc.icir.org> Date: Wed, 12 Mar 2003 16:27:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/12 16:27:10 Modified files: xorp/pim/: configure_pim Log message: Sync with the current testbed configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Wed Mar 12 16:27:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 16:28:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D0S8lu085347 for ; Wed, 12 Mar 2003 16:28:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0S8fh095954 for ; Wed, 12 Mar 2003 16:28:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27535; Wed, 12 Mar 2003 16:28:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27500 for ; Wed, 12 Mar 2003 16:27:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0RYfh095941 for ; Wed, 12 Mar 2003 16:27:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D0RXAq010095 for ; Wed, 12 Mar 2003 16:27:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D0RXAl010094; Wed, 12 Mar 2003 16:27:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130027.h2D0RXAl010094@xorpc.icir.org> Date: Wed, 12 Mar 2003 16:27:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/12 16:27:33 Modified files: xorp/pim/: pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh Log message: Shuffle few things around. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Wed Mar 12 16:32:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Mar 2003 16:33:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D0X6lu085723 for ; Wed, 12 Mar 2003 16:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0X6fh095993 for ; Wed, 12 Mar 2003 16:33:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27695; Wed, 12 Mar 2003 16:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27664 for ; Wed, 12 Mar 2003 16:32:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D0W7fh095988 for ; Wed, 12 Mar 2003 16:32:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D0W7Aq011243 for ; Wed, 12 Mar 2003 16:32:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D0W7XA011242; Wed, 12 Mar 2003 16:32:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130032.h2D0W7XA011242@xorpc.icir.org> Date: Wed, 12 Mar 2003 16:32:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/xrl/interfaces/ mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xorp/xrl/targets/ mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh xorp/mld6igmp/ mld6igmp_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/12 16:32:07 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/xrl/interfaces/: mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xorp/xrl/targets/: mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Added files: xorp/mld6igmp/: mld6igmp_config.cc Log message: * Add XRLs and supporting code to get/set/reset the IGMP/MLD protocol version per interface. * Add new file mld6igmp/mld6igmp_config.cc that contains various MLD/IGMP related configuration stuff. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 0:52:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 00:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D8r7lu023962 for ; Thu, 13 Mar 2003 00:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8r6fh099645 for ; Thu, 13 Mar 2003 00:53:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05862; Thu, 13 Mar 2003 00:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05854 for ; Thu, 13 Mar 2003 00:52:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8qufh099641 for ; Thu, 13 Mar 2003 00:52:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D8quAq079084 for ; Thu, 13 Mar 2003 00:52:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D8quQ0079083; Thu, 13 Mar 2003 00:52:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130852.h2D8quQ0079083@xorpc.icir.org> Date: Thu, 13 Mar 2003 0:52:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 00:52:56 Modified files: xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh Log message: Conditionally set the target name (default to "IGMP") _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 0:53:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 00:54:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D8s6lu024042 for ; Thu, 13 Mar 2003 00:54:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8s6fh099658 for ; Thu, 13 Mar 2003 00:54:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05909; Thu, 13 Mar 2003 00:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05897 for ; Thu, 13 Mar 2003 00:53:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8rcfh099649 for ; Thu, 13 Mar 2003 00:53:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D8rcAq079183 for ; Thu, 13 Mar 2003 00:53:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D8rc3O079182; Thu, 13 Mar 2003 00:53:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130853.h2D8rc3O079182@xorpc.icir.org> Date: Thu, 13 Mar 2003 0:53:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/13 00:53:38 Modified files: xorp/mfea/: xrl_mfea_shell_funcs.sh Log message: Conditionally set the target name (default to "MFEA_4"). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 0:54:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 00:55:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D8t6lu024113 for ; Thu, 13 Mar 2003 00:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8t6fh099677 for ; Thu, 13 Mar 2003 00:55:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05938; Thu, 13 Mar 2003 00:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA05925 for ; Thu, 13 Mar 2003 00:54:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D8sAfh099661 for ; Thu, 13 Mar 2003 00:54:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D8sAAq079280 for ; Thu, 13 Mar 2003 00:54:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D8sAYY079279; Thu, 13 Mar 2003 00:54:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130854.h2D8sAYY079279@xorpc.icir.org> Date: Thu, 13 Mar 2003 0:54:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/13 00:54:10 Modified files: xorp/pim/: xrl_pim_shell_funcs.sh Log message: Conditionally set the target name (default to "PIMSM_4") _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:00:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:01:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D917lu024605 for ; Thu, 13 Mar 2003 01:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D917fh099776 for ; Thu, 13 Mar 2003 01:01:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06021; Thu, 13 Mar 2003 01:01:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06014 for ; Thu, 13 Mar 2003 01:01:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D910fh099768 for ; Thu, 13 Mar 2003 01:01:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D90xAq080768 for ; Thu, 13 Mar 2003 01:00:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D90x3F080765; Thu, 13 Mar 2003 01:00:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130900.h2D90x3F080765@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:00:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:00:59 Modified files: xorp/mfea/: mfea_unix_comm.cc Log message: Misc. IPv6-related bug fixes: * When installing register_pim vif in the kernel, set the pif_index for that register_pim vif to the corresponding pif_index of the underlying physical interface (i.e., the interface whose IP address we reuse). Required, because KAME's kernel expects the pif_index for register_pim vif to be non-zero. * Fix typos for setsockopt(IPV6_RECVTCLASS) * Don't print error if the OS doesn't have support for IPV6_RECVTCLASS * Add ICMP6 filter for MLD6_MTRACE_RESP in case of MLD. * Conditionally add ICMP6 filter for MLDV2_LISTENER_REPORT * Add missing "case AF_INET6" * Add space for IPV6_CLASS to ctllen only if the OS supports IPV6_TCLASS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:03:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:04:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D946lu024825 for ; Thu, 13 Mar 2003 01:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D946fh099802 for ; Thu, 13 Mar 2003 01:04:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06081; Thu, 13 Mar 2003 01:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06073 for ; Thu, 13 Mar 2003 01:03:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D93afh099797 for ; Thu, 13 Mar 2003 01:03:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D93aAq081636 for ; Thu, 13 Mar 2003 01:03:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D93aN6081635; Thu, 13 Mar 2003 01:03:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130903.h2D93aN6081635@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:03:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:03:36 Modified files: xorp/mfea/: configure_mfea Log message: Set the CLI and MFEA target names (to "CLI" and "MFEA_4" resp.) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:08:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:09:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D995lu025212 for ; Thu, 13 Mar 2003 01:09:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D995fh099861 for ; Thu, 13 Mar 2003 01:09:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06170; Thu, 13 Mar 2003 01:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06162 for ; Thu, 13 Mar 2003 01:08:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D98Hfh099851 for ; Thu, 13 Mar 2003 01:08:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D98HAq082759 for ; Thu, 13 Mar 2003 01:08:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D98HAf082758; Thu, 13 Mar 2003 01:08:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130908.h2D98HAf082758@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:08:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ test_mfea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:08:17 Modified files: xorp/mfea/: test_mfea.cc Log message: Use "#define DO_IPV4 1" to conditionally compile the test program for IPv4 or IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:14:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:15:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9F6lu025675 for ; Thu, 13 Mar 2003 01:15:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9F6fh099951 for ; Thu, 13 Mar 2003 01:15:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06314; Thu, 13 Mar 2003 01:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06301 for ; Thu, 13 Mar 2003 01:14:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9ENfh099922 for ; Thu, 13 Mar 2003 01:14:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9ENAq083747 for ; Thu, 13 Mar 2003 01:14:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9EMep083746; Thu, 13 Mar 2003 01:14:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130914.h2D9EMep083746@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:14:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ inet_cksum.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:14:22 Modified files: xorp/mrt/: inet_cksum.c Log message: Bugfix in inet_cksum_add() in computing the result IP checksum when the packet is split into two parts, and we know the checksum of each part. The solution is rather simple (the very first line is the key, the rest is same as in traditional inet_cksum(): int sum = (uint16_t)~sum1 + (uint16_t)~sum2; sum = (sum >> 16) + (sum & 0xffff); sum += (sum >> 16); uint16_t answer = ~sum; return (answer); _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:17:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:18:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9I6lu025918 for ; Thu, 13 Mar 2003 01:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9I5fh099961 for ; Thu, 13 Mar 2003 01:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06377; Thu, 13 Mar 2003 01:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06369 for ; Thu, 13 Mar 2003 01:17:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9Hofh099956 for ; Thu, 13 Mar 2003 01:17:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9HoAq087683 for ; Thu, 13 Mar 2003 01:17:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9HoTi087682; Thu, 13 Mar 2003 01:17:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130917.h2D9HoTi087682@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:17:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:17:50 Modified files: xorp/pim/: test_pim.cc Log message: Use "#define DO_IPV4 1" to conditionally compile the test program for IPv4 or IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:19:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:20:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9KBlu026077 for ; Thu, 13 Mar 2003 01:20:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9KBfh099979 for ; Thu, 13 Mar 2003 01:20:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06414; Thu, 13 Mar 2003 01:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06406 for ; Thu, 13 Mar 2003 01:19:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9JRfh099966 for ; Thu, 13 Mar 2003 01:19:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9JQAq088378 for ; Thu, 13 Mar 2003 01:19:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9JQEs088377; Thu, 13 Mar 2003 01:19:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130919.h2D9JQEs088377@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:19:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:19:26 Modified files: xorp/mld6igmp/: configure_mld6igmp Log message: Set the CLI, MFEA, and MLD6IGMP target names (to "CLI", "MFEA_4", and "IGMP" resp.) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:21:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:22:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9M6lu026234 for ; Thu, 13 Mar 2003 01:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9M5fh000111 for ; Thu, 13 Mar 2003 01:22:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06459; Thu, 13 Mar 2003 01:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06446 for ; Thu, 13 Mar 2003 01:21:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9LXfh000104 for ; Thu, 13 Mar 2003 01:21:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9LXAq089054 for ; Thu, 13 Mar 2003 01:21:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9LXZ1089053; Thu, 13 Mar 2003 01:21:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130921.h2D9LXZ1089053@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:21:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:21:33 Modified files: xorp/mld6igmp/: test_mld6igmp.cc Log message: Use "#define DO_IPV4 1" to conditionally compile the test program for IPv4 or IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:25:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:26:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9Q7lu026552 for ; Thu, 13 Mar 2003 01:26:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9Q7fh000141 for ; Thu, 13 Mar 2003 01:26:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06525; Thu, 13 Mar 2003 01:26:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06514 for ; Thu, 13 Mar 2003 01:25:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9Pmfh000136 for ; Thu, 13 Mar 2003 01:25:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9PmAq090140 for ; Thu, 13 Mar 2003 01:25:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9PlPT090139; Thu, 13 Mar 2003 01:25:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130925.h2D9PlPT090139@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:25:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc igmp_proto.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:25:47 Modified files: xorp/mld6igmp/: mld6_proto.cc igmp_proto.cc mld6igmp_vif.cc Log message: * Bugfix in computing the MLD checksum: the checksum must take into account a pseudo header (for ICMP6) that contains src, dst, len, etc, as defined in Section 8.1 of RFC 2460. * Compilation bugfix in Mld6igmpVif::set_proto_version() in case the OS doesn't have IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:37:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:38:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9c3lu027441 for ; Thu, 13 Mar 2003 01:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9c2fh000234 for ; Thu, 13 Mar 2003 01:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06756; Thu, 13 Mar 2003 01:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06739 for ; Thu, 13 Mar 2003 01:37:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9bGfh000230 for ; Thu, 13 Mar 2003 01:37:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9bGAq094709 for ; Thu, 13 Mar 2003 01:37:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9bG0x094708; Thu, 13 Mar 2003 01:37:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130937.h2D9bG0x094708@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:37:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node_cli.cc mld6igmp_node_cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:37:16 Modified files: xorp/mld6igmp/: mld6igmp_node_cli.cc mld6igmp_node_cli.hh Log message: Add CLI commands for MLD (same as IGMP). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:43:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9i3lu027892 for ; Thu, 13 Mar 2003 01:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9i2fh000275 for ; Thu, 13 Mar 2003 01:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06870; Thu, 13 Mar 2003 01:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06849 for ; Thu, 13 Mar 2003 01:43:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9hPfh000272 for ; Thu, 13 Mar 2003 01:43:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9hPAq096116 for ; Thu, 13 Mar 2003 01:43:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9hPgG096115; Thu, 13 Mar 2003 01:43:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130943.h2D9hPgG096115@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:43:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:43:25 Modified files: xorp/mfea/: configure_mfea Log message: Add config entry for xorp6, and change the set of enabled interfaces for xorp3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:44:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:45:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9j2lu027983 for ; Thu, 13 Mar 2003 01:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9j2fh000288 for ; Thu, 13 Mar 2003 01:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06909; Thu, 13 Mar 2003 01:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06895 for ; Thu, 13 Mar 2003 01:44:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9iXfh000283 for ; Thu, 13 Mar 2003 01:44:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9iXAq096556 for ; Thu, 13 Mar 2003 01:44:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9iX7w096555; Thu, 13 Mar 2003 01:44:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130944.h2D9iX7w096555@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:44:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:44:33 Modified files: xorp/mld6igmp/: configure_mld6igmp Log message: Add config entry for xorp6, and change the set of enabled interfaces for xorp3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 1:56:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 01:57:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2D9v2lu028917 for ; Thu, 13 Mar 2003 01:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9v2fh000402 for ; Thu, 13 Mar 2003 01:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA07070; Thu, 13 Mar 2003 01:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA07060 for ; Thu, 13 Mar 2003 01:56:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2D9u4fh000396 for ; Thu, 13 Mar 2003 01:56:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2D9u3Aq099227 for ; Thu, 13 Mar 2003 01:56:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2D9u3nX099226; Thu, 13 Mar 2003 01:56:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303130956.h2D9u3nX099226@xorpc.icir.org> Date: Thu, 13 Mar 2003 1:56:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/13 01:56:03 Modified files: ./: RELEASE_NOTES Log message: Add a bullet about MFEA-related changes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 11:02:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 11:03:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DJ33lu071839 for ; Thu, 13 Mar 2003 11:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DJ33fh006112 for ; Thu, 13 Mar 2003 11:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA19317; Thu, 13 Mar 2003 11:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA19303 for ; Thu, 13 Mar 2003 11:02:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DJ27fh006110 for ; Thu, 13 Mar 2003 11:02:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DJ27Aq060163 for ; Thu, 13 Mar 2003 11:02:07 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DJ27MJ060162; Thu, 13 Mar 2003 11:02:07 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303131902.h2DJ27MJ060162@xorpc.icir.org> Date: Thu, 13 Mar 2003 11:02:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 03/03/13 11:02:07 Modified files: ./: index.html Log message: Trivial change to try to foil stupid email-address gathering bots. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:17 2005 Subject: No subject Thu Mar 13 11:30:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 11:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DJV2lu074040 for ; Thu, 13 Mar 2003 11:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DJV2fh006321 for ; Thu, 13 Mar 2003 11:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA20012; Thu, 13 Mar 2003 11:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA19999 for ; Thu, 13 Mar 2003 11:30:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DJUnfh006319 for ; Thu, 13 Mar 2003 11:30:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DJUnAq060589 for ; Thu, 13 Mar 2003 11:30:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DJUn2K060588; Thu, 13 Mar 2003 11:30:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303131930.h2DJUn2K060588@xorpc.icir.org> Date: Thu, 13 Mar 2003 11:30:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/03/13 11:30:49 Modified files: ./: index.html Log message: More of the same. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 12:11:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 12:12:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DKC9lu077179 for ; Thu, 13 Mar 2003 12:12:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DKC9fh006663 for ; Thu, 13 Mar 2003 12:12:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21220; Thu, 13 Mar 2003 12:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21197 for ; Thu, 13 Mar 2003 12:11:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DKBlfh006655 for ; Thu, 13 Mar 2003 12:11:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DKBlAq060936 for ; Thu, 13 Mar 2003 12:11:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DKBlUd060935; Thu, 13 Mar 2003 12:11:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303132011.h2DKBlUd060935@xorpc.icir.org> Date: Thu, 13 Mar 2003 12:11:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/13 12:11:47 Added files: xorp/devnotes/: xorp_release_process.txt Log message: Add a file with info about the steps involved with the XORP software release process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 12:22:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 12:23:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DKN6lu078022 for ; Thu, 13 Mar 2003 12:23:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DKN6fh006744 for ; Thu, 13 Mar 2003 12:23:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21472; Thu, 13 Mar 2003 12:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA21442 for ; Thu, 13 Mar 2003 12:22:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DKM3fh006739 for ; Thu, 13 Mar 2003 12:22:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DKM3Aq061492 for ; Thu, 13 Mar 2003 12:22:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DKM37o061491; Thu, 13 Mar 2003 12:22:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303132022.h2DKM37o061491@xorpc.icir.org> Date: Thu, 13 Mar 2003 12:22:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ cvs.html downloads.html news.html people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/13 12:22:03 Modified files: ./: cvs.html downloads.html news.html people.html Log message: Foil email addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 14:13:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 14:14:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DME6lu086420 for ; Thu, 13 Mar 2003 14:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DME6fh007665 for ; Thu, 13 Mar 2003 14:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA23927; Thu, 13 Mar 2003 14:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA23918 for ; Thu, 13 Mar 2003 14:13:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DMDRfh007659 for ; Thu, 13 Mar 2003 14:13:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DMDQAq090186 for ; Thu, 13 Mar 2003 14:13:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DMDQme090185; Thu, 13 Mar 2003 14:13:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303132213.h2DMDQme090185@xorpc.icir.org> Date: Thu, 13 Mar 2003 14:13:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 14:13:26 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_vif.cc Log message: Simplify the code for computing the checksum for the IPv6 pseudo-header. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 14:54:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 14:55:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2DMt7lu089589 for ; Thu, 13 Mar 2003 14:55:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DMt7fh008027 for ; Thu, 13 Mar 2003 14:55:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24960; Thu, 13 Mar 2003 14:55:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24924 for ; Thu, 13 Mar 2003 14:54:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2DMsRfh008003 for ; Thu, 13 Mar 2003 14:54:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2DMsRAq091111 for ; Thu, 13 Mar 2003 14:54:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2DMsQn1091110; Thu, 13 Mar 2003 14:54:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303132254.h2DMsQn1091110@xorpc.icir.org> Date: Thu, 13 Mar 2003 14:54:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/13 14:54:26 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh Log message: Conditionally set the target name (default to "CLI") _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 17:34:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 17:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E1Z3lu001808 for ; Thu, 13 Mar 2003 17:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E1Z3fh009266 for ; Thu, 13 Mar 2003 17:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA28417; Thu, 13 Mar 2003 17:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA28410 for ; Thu, 13 Mar 2003 17:34:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E1Yqfh009260 for ; Thu, 13 Mar 2003 17:34:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E1YpAq017003 for ; Thu, 13 Mar 2003 17:34:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E1YpcF017002; Thu, 13 Mar 2003 17:34:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140134.h2E1YpcF017002@xorpc.icir.org> Date: Thu, 13 Mar 2003 17:34:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 17:34:51 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Update the "last reported host" address whenever a membership report is received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 18:52:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 18:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E2r2lu007676 for ; Thu, 13 Mar 2003 18:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E2r2fh009768 for ; Thu, 13 Mar 2003 18:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA29561; Thu, 13 Mar 2003 18:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA29554 for ; Thu, 13 Mar 2003 18:52:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E2qrfh009764 for ; Thu, 13 Mar 2003 18:52:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E2qrAq021706 for ; Thu, 13 Mar 2003 18:52:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E2qrJ5021705; Thu, 13 Mar 2003 18:52:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140252.h2E2qrJ5021705@xorpc.icir.org> Date: Thu, 13 Mar 2003 18:52:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 18:52:53 Modified files: xorp/mld6igmp/: TODO igmp_proto.cc Log message: If IGMPv1 Membership Report is received, don't perform IGMP version consistency check that may print a warning. Printing IGMP version mismatch warning applies only for IGMP Query messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 19:13:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 19:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E3E3lu009277 for ; Thu, 13 Mar 2003 19:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3E3fh009919 for ; Thu, 13 Mar 2003 19:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA29833; Thu, 13 Mar 2003 19:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA29825 for ; Thu, 13 Mar 2003 19:13:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3Dmfh009917 for ; Thu, 13 Mar 2003 19:13:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E3DmAq022078 for ; Thu, 13 Mar 2003 19:13:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E3DmB8022077; Thu, 13 Mar 2003 19:13:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140313.h2E3DmB8022077@xorpc.icir.org> Date: Thu, 13 Mar 2003 19:13:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 19:13:48 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Bugfix in Mld6igmpVif::igmp_membership_query_recv() and Mld6igmpVif::mld6_listener_query_recv() : If a non-querier receives group-specific query, the group membership timer is restart only if its value ls greater than the max. response time specified in the message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 19:38:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 19:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E3d3lu011172 for ; Thu, 13 Mar 2003 19:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3d2fh010075 for ; Thu, 13 Mar 2003 19:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA00092; Thu, 13 Mar 2003 19:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA00083 for ; Thu, 13 Mar 2003 19:38:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3cBfh010071 for ; Thu, 13 Mar 2003 19:38:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E3cBAq022270 for ; Thu, 13 Mar 2003 19:38:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E3cBwt022269; Thu, 13 Mar 2003 19:38:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140338.h2E3cBwt022269@xorpc.icir.org> Date: Thu, 13 Mar 2003 19:38:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 19:38:11 Modified files: xorp/mld6igmp/: igmp_proto.cc Log message: Start the v1 host timer even if I am not querier. The non-querier state diagram in RFC 2236 is incomplete, and inconsistent with the text in Section 5. Indeed, RFC 3376 (IGMPv3) also doesn't specify that the corresponding timer has to be started only for queriers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 19:39:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 19:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E3e2lu011270 for ; Thu, 13 Mar 2003 19:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3e2fh010088 for ; Thu, 13 Mar 2003 19:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA00121; Thu, 13 Mar 2003 19:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA00111 for ; Thu, 13 Mar 2003 19:39:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E3dffh010083 for ; Thu, 13 Mar 2003 19:39:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E3dfAq022309 for ; Thu, 13 Mar 2003 19:39:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E3dfvQ022308; Thu, 13 Mar 2003 19:39:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140339.h2E3dfvQ022308@xorpc.icir.org> Date: Thu, 13 Mar 2003 19:39:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 19:39:41 Modified files: xorp/mld6igmp/: TODO Log message: Remove a TODO entry about starting igmpv1_host_present_timer() that was already fixed in igmp_proto.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Thu Mar 13 23:52:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Mar 2003 23:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2E7r3lu030248 for ; Thu, 13 Mar 2003 23:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E7r3fh011665 for ; Thu, 13 Mar 2003 23:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA04396; Thu, 13 Mar 2003 23:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA04376 for ; Thu, 13 Mar 2003 23:52:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2E7qqfh011663 for ; Thu, 13 Mar 2003 23:52:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2E7qqAq052696 for ; Thu, 13 Mar 2003 23:52:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2E7qql5052695; Thu, 13 Mar 2003 23:52:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303140752.h2E7qql5052695@xorpc.icir.org> Date: Thu, 13 Mar 2003 23:52:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/13 23:52:52 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Bugfix: reset the VIF_QUERIER flag on an interface if a membership query message is received, and I am not the querier on that vif as a result of that message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 4:20:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 04:21:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ECL4lu050654 for ; Fri, 14 Mar 2003 04:21:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECL4fh013768 for ; Fri, 14 Mar 2003 04:21:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA07814; Fri, 14 Mar 2003 04:21:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA07800 for ; Fri, 14 Mar 2003 04:20:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECKSfh013766 for ; Fri, 14 Mar 2003 04:20:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ECKRAq083974 for ; Fri, 14 Mar 2003 04:20:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ECKRQp083970; Fri, 14 Mar 2003 04:20:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303141220.h2ECKRQp083970@xorpc.icir.org> Date: Fri, 14 Mar 2003 4:20:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc mfea_unix_comm.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/14 04:20:27 Modified files: xorp/mfea/: mfea_unix_comm.cc mfea_unix_comm.hh Log message: * Implement check for Router Alert IP option * Enable receiving of hop-by-hop options in UnixComm::recv_pktinfo() * Bugfix in assigning the ancillary data pointer * Bugfix in handling "case IPV6_TCLASS" when receiving data * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 4:26:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 04:27:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ECR4lu051105 for ; Fri, 14 Mar 2003 04:27:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECR3fh013808 for ; Fri, 14 Mar 2003 04:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA08545; Fri, 14 Mar 2003 04:27:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA08146 for ; Fri, 14 Mar 2003 04:26:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECQffh013806 for ; Fri, 14 Mar 2003 04:26:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ECQfAq087293 for ; Fri, 14 Mar 2003 04:26:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ECQfuD087292; Fri, 14 Mar 2003 04:26:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303141226.h2ECQfuD087292@xorpc.icir.org> Date: Fri, 14 Mar 2003 4:26:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/14 04:26:40 Modified files: xorp/mfea/: TODO Log message: Remove TODO item re. checking incoming packets for Router Alert option (already DONE). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 4:29:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 04:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ECU3lu051320 for ; Fri, 14 Mar 2003 04:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECU3fh013824 for ; Fri, 14 Mar 2003 04:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA08997; Fri, 14 Mar 2003 04:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA08989 for ; Fri, 14 Mar 2003 04:29:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECTdfh013819 for ; Fri, 14 Mar 2003 04:29:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ECTdAq088054 for ; Fri, 14 Mar 2003 04:29:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ECTdK9088053; Fri, 14 Mar 2003 04:29:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303141229.h2ECTdK9088053@xorpc.icir.org> Date: Fri, 14 Mar 2003 4:29:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/14 04:29:39 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry re. configuration to enable Router Alert checking when receiving a protocol messages (MLD/IGMP/PIM). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 4:32:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 04:33:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ECX4lu051564 for ; Fri, 14 Mar 2003 04:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECX4fh013861 for ; Fri, 14 Mar 2003 04:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA09270; Fri, 14 Mar 2003 04:33:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA09258 for ; Fri, 14 Mar 2003 04:32:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECWvfh013859 for ; Fri, 14 Mar 2003 04:32:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ECWvAq088654 for ; Fri, 14 Mar 2003 04:32:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ECWvAA088653; Fri, 14 Mar 2003 04:32:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303141232.h2ECWvAA088653@xorpc.icir.org> Date: Fri, 14 Mar 2003 4:32:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/14 04:32:57 Modified files: ./: RELEASE_NOTES Log message: Add bullets about MLD/IGMP status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 4:35:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 04:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ECa2lu051796 for ; Fri, 14 Mar 2003 04:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECa2fh013895 for ; Fri, 14 Mar 2003 04:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA09411; Fri, 14 Mar 2003 04:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA09397 for ; Fri, 14 Mar 2003 04:35:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ECZUfh013893 for ; Fri, 14 Mar 2003 04:35:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ECZUAq089142 for ; Fri, 14 Mar 2003 04:35:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ECZUNE089141; Fri, 14 Mar 2003 04:35:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303141235.h2ECZUNE089141@xorpc.icir.org> Date: Fri, 14 Mar 2003 4:35:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/14 04:35:30 Modified files: xorp/devnotes/: WORKPLAN Log message: Update the status of the "Testing of IGMPv1,2" task from High to Done _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 14:23:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 14:24:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2EMOHlu097735 for ; Fri, 14 Mar 2003 14:24:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2EMOHfh019759 for ; Fri, 14 Mar 2003 14:24:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA21401; Fri, 14 Mar 2003 14:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA21384 for ; Fri, 14 Mar 2003 14:23:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2EMNRfh019745 for ; Fri, 14 Mar 2003 14:23:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2EMNRAq075447 for ; Fri, 14 Mar 2003 14:23:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2EMNRkC075446; Fri, 14 Mar 2003 14:23:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303142223.h2EMNRkC075446@xorpc.icir.org> Date: Fri, 14 Mar 2003 14:23:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 14:23:27 Modified files: xorp/docs/rib/: rib.tex Log message: Few minor fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 15:18:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 15:19:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ENJ7lu002039 for ; Fri, 14 Mar 2003 15:19:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENJ7fh020176 for ; Fri, 14 Mar 2003 15:19:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22813; Fri, 14 Mar 2003 15:19:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22797 for ; Fri, 14 Mar 2003 15:18:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENIkfh020169 for ; Fri, 14 Mar 2003 15:18:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ENIkAq076767 for ; Fri, 14 Mar 2003 15:18:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ENIkWq076766; Fri, 14 Mar 2003 15:18:46 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303142318.h2ENIkWq076766@xorpc.icir.org> Date: Fri, 14 Mar 2003 15:18:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.cc template_commands.hh unexpanded_xrl.cc xorp_client.cc xorp_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/03/14 15:18:46 Modified files: xorp/rtrmgr/: template_commands.cc template_commands.hh unexpanded_xrl.cc xorp_client.cc xorp_client.hh Log message: Add support for "modinfo ready xrl" in template files. This is a hook to allow the rtrmgr to distinguish between started processes and those that are ready to receive xrl requests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 15:20:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 15:21:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ENL6lu002215 for ; Fri, 14 Mar 2003 15:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENL6fh020217 for ; Fri, 14 Mar 2003 15:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22885; Fri, 14 Mar 2003 15:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22860 for ; Fri, 14 Mar 2003 15:20:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENKAfh020206 for ; Fri, 14 Mar 2003 15:20:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ENKAAq076815 for ; Fri, 14 Mar 2003 15:20:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ENKAmJ076814; Fri, 14 Mar 2003 15:20:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303142320.h2ENKAmJ076814@xorpc.icir.org> Date: Fri, 14 Mar 2003 15:20:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: hodson@xorpc.icir.org. 03/03/14 15:20:10 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc Log message: Dereference pointers to bools rather than use the pointers as boolean values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 15:20:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 15:21:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ENL8lu002231 for ; Fri, 14 Mar 2003 15:21:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENL8fh020221 for ; Fri, 14 Mar 2003 15:21:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22900; Fri, 14 Mar 2003 15:21:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA22872 for ; Fri, 14 Mar 2003 15:20:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENKtfh020210 for ; Fri, 14 Mar 2003 15:20:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ENKsAq076886 for ; Fri, 14 Mar 2003 15:20:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ENKsFd076885; Fri, 14 Mar 2003 15:20:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303142320.h2ENKsFd076885@xorpc.icir.org> Date: Fri, 14 Mar 2003 15:20:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/03/14 15:20:54 Modified files: xorp/fea/: xrl_target.cc Log message: Add sanity check for flags that endpoint and broadcast are not set simultaneously on an address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:18 2005 Subject: No subject Fri Mar 14 15:49:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 15:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2ENo6lu004408 for ; Fri, 14 Mar 2003 15:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENo6fh020434 for ; Fri, 14 Mar 2003 15:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA23623; Fri, 14 Mar 2003 15:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA23608 for ; Fri, 14 Mar 2003 15:49:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2ENnAfh020405 for ; Fri, 14 Mar 2003 15:49:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2ENnAAq077052 for ; Fri, 14 Mar 2003 15:49:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2ENnAxL077051; Fri, 14 Mar 2003 15:49:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303142349.h2ENnAxL077051@xorpc.icir.org> Date: Fri, 14 Mar 2003 15:49:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp rib.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 03/03/14 15:49:10 Modified files: xorp/etc/templates/: bgp.tp fea.tp rib.tp Log message: Add xrls to indicate ready status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 18:05:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 18:06:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F263lu014834 for ; Fri, 14 Mar 2003 18:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F262fh021535 for ; Fri, 14 Mar 2003 18:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26456; Fri, 14 Mar 2003 18:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26440 for ; Fri, 14 Mar 2003 18:05:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F25Bfh021533 for ; Fri, 14 Mar 2003 18:05:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F25AAq006243 for ; Fri, 14 Mar 2003 18:05:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F25APQ006242; Fri, 14 Mar 2003 18:05:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150205.h2F25APQ006242@xorpc.icir.org> Date: Fri, 14 Mar 2003 18:05:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 18:05:10 Modified files: xorp/rib/: TODO Log message: Change the year of the TODO document from 04 back to 02 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 18:28:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 18:29:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F2T3lu016575 for ; Fri, 14 Mar 2003 18:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2T3fh021677 for ; Fri, 14 Mar 2003 18:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26905; Fri, 14 Mar 2003 18:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26893 for ; Fri, 14 Mar 2003 18:28:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2Sffh021675 for ; Fri, 14 Mar 2003 18:28:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F2SeAq006504 for ; Fri, 14 Mar 2003 18:28:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F2Seb7006503; Fri, 14 Mar 2003 18:28:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150228.h2F2Seb7006503@xorpc.icir.org> Date: Fri, 14 Mar 2003 18:28:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in dummy_register_server.cc fea_client.cc main_rib.cc main_routemap.cc parser.cc protocol.cc register_server.cc rib.cc rib_manager.cc route.cc routemap.cc rt_tab_base.cc rt_tab_export.cc ...rt_tab_extint.cc ...rt_tab_merged.cc ...rt_tab_origin.cc ...rt_tab_redist.cc ...rt_tab_register.cc ...test_fea_client.cc ...test_register.cc ...test_register_xrls.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...vifmanager.cc ...xrl_target.cc xorp/rib/ rib_module.h xorp/rib/ urib_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 18:28:40 Modified files: xorp/rib/: Makefile.am Makefile.in dummy_register_server.cc fea_client.cc main_rib.cc main_routemap.cc parser.cc protocol.cc register_server.cc rib.cc rib_manager.cc route.cc routemap.cc rt_tab_base.cc rt_tab_export.cc rt_tab_extint.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc test_fea_client.cc test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc xrl_target.cc Added files: xorp/rib/: rib_module.h Removed files: xorp/rib/: urib_module.h Log message: * Rename rib/urib_module.h to rib/rib_module.h, and change the module name from URIB to RIB * #include "rib_module.h" in the few *.cc files it wasn't included into. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 18:35:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 18:36:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F2a3lu017115 for ; Fri, 14 Mar 2003 18:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2a3fh021740 for ; Fri, 14 Mar 2003 18:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27008; Fri, 14 Mar 2003 18:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA26996 for ; Fri, 14 Mar 2003 18:35:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2ZXfh021738 for ; Fri, 14 Mar 2003 18:35:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F2ZXAq006588 for ; Fri, 14 Mar 2003 18:35:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F2ZXkD006587; Fri, 14 Mar 2003 18:35:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150235.h2F2ZXkD006587@xorpc.icir.org> Date: Fri, 14 Mar 2003 18:35:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/14 18:35:33 Modified files: xorp/devnotes/: error_handling.tex Log message: it's -> its _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 18:37:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 18:38:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F2c4lu017267 for ; Fri, 14 Mar 2003 18:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2c4fh021754 for ; Fri, 14 Mar 2003 18:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27062; Fri, 14 Mar 2003 18:38:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27055 for ; Fri, 14 Mar 2003 18:38:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2c0fh021752 for ; Fri, 14 Mar 2003 18:38:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F2bxAq006653 for ; Fri, 14 Mar 2003 18:37:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F2bxar006652; Fri, 14 Mar 2003 18:37:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150237.h2F2bxar006652@xorpc.icir.org> Date: Fri, 14 Mar 2003 18:37:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_msg.hh xrl_atom_encoding.hh xorp/libxorp/ ref_trie.hh trie.hh xorp/rib/ fea_client.hh rib.hh vifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 18:37:59 Modified files: xorp/libxipc/: finder_msg.hh xrl_atom_encoding.hh xorp/libxorp/: ref_trie.hh trie.hh xorp/rib/: fea_client.hh rib.hh vifmanager.hh Log message: kdoc nit: @returns -> @return _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 18:54:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 18:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F2t3lu018536 for ; Fri, 14 Mar 2003 18:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2t3fh021859 for ; Fri, 14 Mar 2003 18:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27306; Fri, 14 Mar 2003 18:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA27296 for ; Fri, 14 Mar 2003 18:54:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F2sdfh021854 for ; Fri, 14 Mar 2003 18:54:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F2sdAq006756 for ; Fri, 14 Mar 2003 18:54:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F2sdCt006755; Fri, 14 Mar 2003 18:54:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150254.h2F2sdCt006755@xorpc.icir.org> Date: Fri, 14 Mar 2003 18:54:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ protocol.cc protocol.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 18:54:39 Modified files: xorp/rib/: protocol.cc protocol.hh Log message: * Const-ify and use references for the arguments of the methods of class Protocol. * Move the == operator for Protocol inside "class Protocol" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 19:13:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 19:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F3E3lu019976 for ; Fri, 14 Mar 2003 19:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F3E3fh021997 for ; Fri, 14 Mar 2003 19:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA27631; Fri, 14 Mar 2003 19:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA27619 for ; Fri, 14 Mar 2003 19:13:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F3DBfh021995 for ; Fri, 14 Mar 2003 19:13:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F3DBAq006926 for ; Fri, 14 Mar 2003 19:13:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F3DBi2006925; Fri, 14 Mar 2003 19:13:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150313.h2F3DBi2006925@xorpc.icir.org> Date: Fri, 14 Mar 2003 19:13:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_register_server.cc dummy_register_server.hh register_server.cc register_server.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 19:13:11 Modified files: xorp/rib/: dummy_register_server.cc dummy_register_server.hh register_server.cc register_server.hh Log message: Arguments const-ification, and minor stylization nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Fri Mar 14 19:30:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Mar 2003 19:31:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2F3V3lu021271 for ; Fri, 14 Mar 2003 19:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F3V2fh022108 for ; Fri, 14 Mar 2003 19:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA27892; Fri, 14 Mar 2003 19:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA27877 for ; Fri, 14 Mar 2003 19:30:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2F3UPfh022104 for ; Fri, 14 Mar 2003 19:30:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2F3UPAq007064 for ; Fri, 14 Mar 2003 19:30:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2F3UPVl007063; Fri, 14 Mar 2003 19:30:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303150330.h2F3UPVl007063@xorpc.icir.org> Date: Fri, 14 Mar 2003 19:30:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/14 19:30:25 Modified files: xorp/rib/: route.hh Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sat Mar 15 21:52:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 Mar 2003 21:53:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G5r8lu044246 for ; Sat, 15 Mar 2003 21:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G5r8fh036807 for ; Sat, 15 Mar 2003 21:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA18580; Sat, 15 Mar 2003 21:53:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA18562 for ; Sat, 15 Mar 2003 21:52:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G5qvfh036793 for ; Sat, 15 Mar 2003 21:52:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G5qvAq014781 for ; Sat, 15 Mar 2003 21:52:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G5qvxG014780; Sat, 15 Mar 2003 21:52:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160552.h2G5qvxG014780@xorpc.icir.org> Date: Sat, 15 Mar 2003 21:52:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/15 21:52:57 Modified files: ./: Makefile.am Makefile.in Log message: Change the order of building of some of the directories. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sat Mar 15 23:19:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 Mar 2003 23:20:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G7K7lu050740 for ; Sat, 15 Mar 2003 23:20:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G7K6fh037322 for ; Sat, 15 Mar 2003 23:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA19757; Sat, 15 Mar 2003 23:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA19737 for ; Sat, 15 Mar 2003 23:19:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G7J1fh037289 for ; Sat, 15 Mar 2003 23:19:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G7J1Aq015269 for ; Sat, 15 Mar 2003 23:19:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G7J1Dw015268; Sat, 15 Mar 2003 23:19:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160719.h2G7J1Dw015268@xorpc.icir.org> Date: Sat, 15 Mar 2003 23:19:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ fea_client.cc main_rib.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.cc route.hh ...routemap.cc ...routemap.hh ...rt_tab_base.hh ...rt_tab_export.cc ...rt_tab_export.hh ...rt_tab_extint.cc ...rt_tab_extint.hh ...rt_tab_merged.cc ...rt_tab_merged.hh ...rt_tab_origin.cc ...rt_tab_redist.cc ...rt_tab_redist.hh ...rt_tab_register.cc ...rt_tab_register.hh ...test_fea_client.cc ...test_register.cc ...test_register_xrls.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...vifmanager.cc ...vifmanager.hh ...xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/15 23:19:01 Modified files: xorp/rib/: fea_client.cc main_rib.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.cc route.hh routemap.cc routemap.hh rt_tab_base.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_redist.cc rt_tab_redist.hh rt_tab_register.cc rt_tab_register.hh test_fea_client.cc test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc Log message: Stylistic nits here and there. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sat Mar 15 23:30:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 Mar 2003 23:31:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G7V6lu051584 for ; Sat, 15 Mar 2003 23:31:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G7V6fh037387 for ; Sat, 15 Mar 2003 23:31:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA19987; Sat, 15 Mar 2003 23:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA19968 for ; Sat, 15 Mar 2003 23:30:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G7Uhfh037382 for ; Sat, 15 Mar 2003 23:30:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G7UhAq015417 for ; Sat, 15 Mar 2003 23:30:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G7Uh6n015416; Sat, 15 Mar 2003 23:30:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160730.h2G7Uh6n015416@xorpc.icir.org> Date: Sat, 15 Mar 2003 23:30:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ coding-style.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/15 23:30:43 Modified files: xorp/devnotes/: coding-style.txt Log message: * Add "BOOL METHODS" section: "In general, always avoid adding operator bool(), unless there is a strong reason for adding it." * Minor edits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sun Mar 16 0:17:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Mar 2003 00:18:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G8I6lu055096 for ; Sun, 16 Mar 2003 00:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8I6fh037648 for ; Sun, 16 Mar 2003 00:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA20849; Sun, 16 Mar 2003 00:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA20837 for ; Sun, 16 Mar 2003 00:17:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8HTfh037642 for ; Sun, 16 Mar 2003 00:17:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G8HTAq015811 for ; Sun, 16 Mar 2003 00:17:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G8HTue015810; Sun, 16 Mar 2003 00:17:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160817.h2G8HTue015810@xorpc.icir.org> Date: Sun, 16 Mar 2003 0:17:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ dot-emacs finder-protocol.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/16 00:17:29 Modified files: xorp/devnotes/: dot-emacs finder-protocol.txt Log message: Add the XORP CVS ID _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sun Mar 16 0:20:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Mar 2003 00:21:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G8L7lu055340 for ; Sun, 16 Mar 2003 00:21:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8L6fh037683 for ; Sun, 16 Mar 2003 00:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA20888; Sun, 16 Mar 2003 00:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA20880 for ; Sun, 16 Mar 2003 00:20:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8KYfh037678 for ; Sun, 16 Mar 2003 00:20:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G8KYAq015906 for ; Sun, 16 Mar 2003 00:20:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G8KYd9015905; Sun, 16 Mar 2003 00:20:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160820.h2G8KYd9015905@xorpc.icir.org> Date: Sun, 16 Mar 2003 0:20:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.hh finder_ipc.cc finder_ipc.hh finder_messenger.hh finder_msg.hh finder_ng_xrl_queue.hh finder_ng_xrl_target.cc finder_ng_xrl_target.hh finder_server.cc ...finder_server.hh ...finder_transport.hh ...header.hh ...hmac.hh ...sockutil.hh ...test_finder_client.cc ...test_finder_ipc.cc ...test_finder_ipc2.cc ...test_finder_msg.cc ...test_finder_transport.cc ...test_stcppf.cc ...test_xrl.cc ...test_xrl_args.cc ...test_xrl_atom.cc ...test_xrl_error.cc ...xrl.hh ...xrl_args.cc ...xrl_args.hh ...xrl_atom.cc ...xrl_atom.hh ...xrl_atom_encoding.hh ...xrl_atom_list.hh ...xrl_cmd_map.hh ...xrl_error.hh ...xrl_parser.hh ...xrl_pf.hh ...xrl_pf_factory.hh ...xrl_pf_inproc.hh ...xrl_pf_stcp.hh ...xrl_pf_stcp_ph.hh ...xrl_pf_sudp.hh ...xrl_router.hh ...xrl_std_router.hh ...xrl_tokens.hh ...xuid.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/16 00:20:34 Modified files: xorp/libxipc/: finder_client.hh finder_ipc.cc finder_ipc.hh finder_messenger.hh finder_msg.hh finder_ng_xrl_queue.hh finder_ng_xrl_target.cc finder_ng_xrl_target.hh finder_server.cc finder_server.hh finder_transport.hh header.hh hmac.hh sockutil.hh test_finder_client.cc test_finder_ipc.cc test_finder_ipc2.cc test_finder_msg.cc test_finder_transport.cc test_stcppf.cc test_xrl.cc test_xrl_args.cc test_xrl_atom.cc test_xrl_error.cc xrl.hh xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.hh xrl_atom_list.hh xrl_cmd_map.hh xrl_error.hh xrl_parser.hh xrl_pf.hh xrl_pf_factory.hh xrl_pf_inproc.hh xrl_pf_stcp.hh xrl_pf_stcp_ph.hh xrl_pf_sudp.hh xrl_router.hh xrl_std_router.hh xrl_tokens.hh xuid.hh Log message: * Replace old Copyright headers with the most recent version * Change #ifndef ... #define ... #endif wrappers for header files to use/define a wrapper that corresponds to the the full path+file name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Sun Mar 16 0:35:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Mar 2003 00:36:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2G8a6lu056470 for ; Sun, 16 Mar 2003 00:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8a6fh037771 for ; Sun, 16 Mar 2003 00:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA21084; Sun, 16 Mar 2003 00:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA21071 for ; Sun, 16 Mar 2003 00:35:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2G8Z4fh037749 for ; Sun, 16 Mar 2003 00:35:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2G8Z4Aq021131 for ; Sun, 16 Mar 2003 00:35:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2G8Z4ad021130; Sun, 16 Mar 2003 00:35:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303160835.h2G8Z4ad021130@xorpc.icir.org> Date: Sun, 16 Mar 2003 0:35:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.hh next_hop_resolver.hh route_table_reader.hh xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/03/16 00:35:03 Modified files: xorp/bgp/: bgp_trie.hh next_hop_resolver.hh route_table_reader.hh xrl_target.hh Log message: * #ifndef ... #define ... #endif wrapper nitlets * Align text with comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 11:04:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 11:05:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HJ56lu065698 for ; Mon, 17 Mar 2003 11:05:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HJ56fh055120 for ; Mon, 17 Mar 2003 11:05:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA21382; Mon, 17 Mar 2003 11:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA21343 for ; Mon, 17 Mar 2003 11:04:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HJ4Ifh055092 for ; Mon, 17 Mar 2003 11:04:18 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HJ4HAq081598 for ; Mon, 17 Mar 2003 11:04:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HJ4HZA081597; Mon, 17 Mar 2003 11:04:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303171904.h2HJ4HZA081597@xorpc.icir.org> Date: Mon, 17 Mar 2003 11:04:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/docs/ Changes by: hodson@xorpc.icir.org. 03/03/17 11:04:17 xorp/rip/docs Update of /usr/local/www/data/cvs/xorp/rip/docs In directory xorpc.icir.org:/tmp/cvs-serv81591/docs Log Message: Directory /usr/local/www/data/cvs/xorp/rip/docs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 11:11:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 11:12:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HJCGlu066276 for ; Mon, 17 Mar 2003 11:12:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HJCFfh055185 for ; Mon, 17 Mar 2003 11:12:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA21585; Mon, 17 Mar 2003 11:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA21569 for ; Mon, 17 Mar 2003 11:11:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HJBifh055177 for ; Mon, 17 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HJBiAq081712 for ; Mon, 17 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HJBivB081711; Mon, 17 Mar 2003 11:11:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303171911.h2HJBivB081711@xorpc.icir.org> Date: Mon, 17 Mar 2003 11:11:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/docs/ rfc1721.txt rfc1722.txt rfc1723.txt rfc1724.txt rfc2080.txt rfc2453.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/docs/ Changes by: hodson@xorpc.icir.org. 03/03/17 11:11:44 Added files: xorp/rip/docs/: rfc1721.txt rfc1722.txt rfc1723.txt rfc1724.txt rfc2080.txt rfc2453.txt Log message: Add RIPv2 and RIPng related RFCs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 15:21:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:22:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNM7lu085112 for ; Mon, 17 Mar 2003 15:22:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNM7fh057275 for ; Mon, 17 Mar 2003 15:22:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27740; Mon, 17 Mar 2003 15:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27710 for ; Mon, 17 Mar 2003 15:21:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNL1fh057257 for ; Mon, 17 Mar 2003 15:21:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNL1Aq013806 for ; Mon, 17 Mar 2003 15:21:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNL1sM013805; Mon, 17 Mar 2003 15:21:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172321.h2HNL1sM013805@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:21:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib.xif rib_client.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:21:01 Modified files: xorp/xrl/interfaces/: rib.xif rib_client.xif Log message: Remove extra empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 15:23:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:24:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNO4lu085260 for ; Mon, 17 Mar 2003 15:24:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNO4fh057294 for ; Mon, 17 Mar 2003 15:24:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27798; Mon, 17 Mar 2003 15:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27784 for ; Mon, 17 Mar 2003 15:23:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNNUfh057288 for ; Mon, 17 Mar 2003 15:23:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNNUAq013853 for ; Mon, 17 Mar 2003 15:23:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNNU7e013852; Mon, 17 Mar 2003 15:23:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172323.h2HNNU7e013852@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:23:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc xrl_cli_node.cc xrl_cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:23:30 Modified files: xorp/cli/: test_cli.cc xrl_cli_node.cc xrl_cli_node.hh Log message: * XRL router related variable and arguments renaming * Add #if DO_IPV4 for easier compilation switch between IPv4 and IPv6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 15:24:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:25:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNP8lu085355 for ; Mon, 17 Mar 2003 15:25:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNP8fh057337 for ; Mon, 17 Mar 2003 15:25:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27853; Mon, 17 Mar 2003 15:25:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27826 for ; Mon, 17 Mar 2003 15:24:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNOufh057307 for ; Mon, 17 Mar 2003 15:24:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNOuAq013908 for ; Mon, 17 Mar 2003 15:24:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNOuQT013907; Mon, 17 Mar 2003 15:24:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172324.h2HNOuQT013907@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:24:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:24:56 Modified files: xorp/mld6igmp/: test_mld6igmp.cc xrl_mld6igmp_node.hh Log message: XRL router-related variable/argument renaming _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 15:24:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:25:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNPAlu085363 for ; Mon, 17 Mar 2003 15:25:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNPAfh057316 for ; Mon, 17 Mar 2003 15:25:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27838; Mon, 17 Mar 2003 15:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA27816 for ; Mon, 17 Mar 2003 15:24:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNOTfh057303 for ; Mon, 17 Mar 2003 15:24:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNOTAq013879 for ; Mon, 17 Mar 2003 15:24:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNOTtv013878; Mon, 17 Mar 2003 15:24:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172324.h2HNOTtv013878@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:24:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ test_mfea.cc xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:24:29 Modified files: xorp/mfea/: test_mfea.cc xrl_mfea_node.hh Log message: Xrl router-related argument/variable renaming _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:19 2005 Subject: No subject Mon Mar 17 15:32:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:33:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNX5lu086009 for ; Mon, 17 Mar 2003 15:33:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNX5fh057398 for ; Mon, 17 Mar 2003 15:33:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA28101; Mon, 17 Mar 2003 15:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA28093 for ; Mon, 17 Mar 2003 15:32:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNWhfh057394 for ; Mon, 17 Mar 2003 15:32:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNWhAq014029 for ; Mon, 17 Mar 2003 15:32:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNWhQw014028; Mon, 17 Mar 2003 15:32:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172332.h2HNWhQw014028@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:32:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am fea_client.cc fea_client.hh main_rib.cc rib.cc rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:32:43 Modified files: xorp/rib/: Makefile.am fea_client.cc fea_client.hh main_rib.cc rib.cc rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh vifmanager.cc Log message: * Change the RibManager constructor such that the EventLoop and the XrlStdRouter are created inside the main program, and then they are passed as arguments (by reference) to the RibManager constructor. This is the first step toward allowing to run the RibManager as a library linked against other modules (e.g., PIM, FEA, etc), and to allow running more than one RibManager within the same process (e.g., within simulation-like environment). * Nitlets: u_int -> size_t, adding extra space here and there, etc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Mon Mar 17 15:38:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 15:39:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2HNd6lu086477 for ; Mon, 17 Mar 2003 15:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNd5fh057439 for ; Mon, 17 Mar 2003 15:39:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA28299; Mon, 17 Mar 2003 15:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA28269 for ; Mon, 17 Mar 2003 15:38:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2HNc1fh057432 for ; Mon, 17 Mar 2003 15:38:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2HNc1Aq014096 for ; Mon, 17 Mar 2003 15:38:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2HNc1La014095; Mon, 17 Mar 2003 15:38:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303172338.h2HNc1La014095@xorpc.icir.org> Date: Mon, 17 Mar 2003 15:38:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in test_pim.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/17 15:38:01 Modified files: xorp/pim/: Makefile.am Makefile.in test_pim.cc xrl_pim_node.hh Log message: * Link against the RIB library (though, the RIB is not used yet). * XrlRouter related arguments and variables renaming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Mon Mar 17 16:55:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 16:56:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2I0u3lu092297 for ; Mon, 17 Mar 2003 16:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I0u3fh058011 for ; Mon, 17 Mar 2003 16:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA00689; Mon, 17 Mar 2003 16:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA00676 for ; Mon, 17 Mar 2003 16:55:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I0tcfh058009 for ; Mon, 17 Mar 2003 16:55:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2I0tcAq024539 for ; Mon, 17 Mar 2003 16:55:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2I0tcLs024538; Mon, 17 Mar 2003 16:55:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303180055.h2I0tcLs024538@xorpc.icir.org> Date: Mon, 17 Mar 2003 16:55:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ fea_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/17 16:55:38 Modified files: xorp/rib/: fea_client.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Mon Mar 17 17:01:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 17:02:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2I123lu092765 for ; Mon, 17 Mar 2003 17:02:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I123fh058070 for ; Mon, 17 Mar 2003 17:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA00858; Mon, 17 Mar 2003 17:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA00823 for ; Mon, 17 Mar 2003 17:01:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I11Vfh058068 for ; Mon, 17 Mar 2003 17:01:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2I11VAq025282 for ; Mon, 17 Mar 2003 17:01:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2I11VG4025280; Mon, 17 Mar 2003 17:01:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303180101.h2I11VG4025280@xorpc.icir.org> Date: Mon, 17 Mar 2003 17:01:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_fti.cc xrl_ifmanager.cc xorp/libxorp/ transaction.cc transaction.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/17 17:01:30 Modified files: xorp/fea/: xrl_fti.cc xrl_ifmanager.cc xorp/libxorp/: transaction.cc transaction.hh Log message: * Rename bool TransactionManager::size(uint32_t tid, uint32_t& count) const; to bool TransactionManager::retrieve_size(uint32_t tid, uint32_t& count) const; The reason is because in STL there is "size_t size()" method, and using exactly same name for a method that returns bool makes me feel a bit uneasy (after being bitten once by bool -> int convertion), even though the size() method here takes two extra arguments. If people still prefer the original name, feel free to change it back. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Mon Mar 17 18:44:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 18:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2I2j3lu000638 for ; Mon, 17 Mar 2003 18:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I2j2fh058861 for ; Mon, 17 Mar 2003 18:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA02624; Mon, 17 Mar 2003 18:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA02612 for ; Mon, 17 Mar 2003 18:44:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I2icfh058856 for ; Mon, 17 Mar 2003 18:44:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2I2ibAq044002 for ; Mon, 17 Mar 2003 18:44:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2I2ibMP044001; Mon, 17 Mar 2003 18:44:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303180244.h2I2ibMP044001@xorpc.icir.org> Date: Mon, 17 Mar 2003 18:44:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh test_cli.cc xorp/libproto/ proto_node.hh proto_node_cli.cc proto_node_cli.hh proto_register.cc proto_register.hh proto_unit.cc proto_unit.hh xorp/mfea/ mfea_node.cc mfea_node.hh mfea_unix_comm.cc mfea_unix_comm.hh mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/ pim_mrt.hh pim_mrt_mfc.cc pim_node.cc pim_node.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/03/17 18:44:37 Modified files: xorp/cli/: cli_node.cc cli_node.hh test_cli.cc xorp/libproto/: proto_node.hh proto_node_cli.cc proto_node_cli.hh proto_register.cc proto_register.hh proto_unit.cc proto_unit.hh xorp/mfea/: mfea_node.cc mfea_node.hh mfea_unix_comm.cc mfea_unix_comm.hh mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/: pim_mrt.hh pim_mrt_mfc.cc pim_node.cc pim_node.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh xorp/rtrmgr/: xorpsh_main.cc Log message: * Rename x_module_id with xorp_module_id * Rename all X_MODULE_* to XORP_MODULE_* * Rename X_UP, X_DOWN, X_PENDING_UP, X_PENDING_DOWN, X_ENABLED to XORP_* _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Mon Mar 17 20:16:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Mar 2003 20:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2I4H3lu007629 for ; Mon, 17 Mar 2003 20:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I4H3fh059543 for ; Mon, 17 Mar 2003 20:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA03771; Mon, 17 Mar 2003 20:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA03763 for ; Mon, 17 Mar 2003 20:16:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2I4Gkfh059540 for ; Mon, 17 Mar 2003 20:16:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2I4GkAq044616 for ; Mon, 17 Mar 2003 20:16:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2I4GkCm044615; Mon, 17 Mar 2003 20:16:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303180416.h2I4GkCm044615@xorpc.icir.org> Date: Mon, 17 Mar 2003 20:16:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea xorp/mld6igmp/ configure_mld6igmp xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/17 20:16:46 Modified files: xorp/mfea/: configure_mfea xorp/mld6igmp/: configure_mld6igmp xorp/pim/: configure_pim Log message: Add configuration entry for hostname "pie" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 3:25:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 03:26:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IBQ2lu040044 for ; Tue, 18 Mar 2003 03:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IBQ2fh062694 for ; Tue, 18 Mar 2003 03:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA10144; Tue, 18 Mar 2003 03:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id DAA10128 for ; Tue, 18 Mar 2003 03:25:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IBPdfh062688 for ; Tue, 18 Mar 2003 03:25:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IBPdAq005388 for ; Tue, 18 Mar 2003 03:25:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IBPd8J005387; Tue, 18 Mar 2003 03:25:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303181125.h2IBPd8J005387@xorpc.icir.org> Date: Tue, 18 Mar 2003 3:25:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_transport.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/18 03:25:39 Modified files: xorp/libxipc/: test_finder_transport.cc Log message: Initialize _server_msgs_sent to zero. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 11:35:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 11:36:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IJa6lu078395 for ; Tue, 18 Mar 2003 11:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IJa6fh067949 for ; Tue, 18 Mar 2003 11:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA20457; Tue, 18 Mar 2003 11:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA20442 for ; Tue, 18 Mar 2003 11:35:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IJZofh067945 for ; Tue, 18 Mar 2003 11:35:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IJZoAq067432 for ; Tue, 18 Mar 2003 11:35:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IJZofj067431; Tue, 18 Mar 2003 11:35:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303181935.h2IJZofj067431@xorpc.icir.org> Date: Tue, 18 Mar 2003 11:35:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/docs/ rfc2082.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/docs/ Changes by: hodson@xorpc.icir.org. 03/03/18 11:35:50 Added files: xorp/rip/docs/: rfc2082.txt Log message: Import RIP MD5 authentication RFC. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:00:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:01:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IM12lu089464 for ; Tue, 18 Mar 2003 14:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IM12fh069088 for ; Tue, 18 Mar 2003 14:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA23615; Tue, 18 Mar 2003 14:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA23603 for ; Tue, 18 Mar 2003 14:00:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IM0Yfh069080 for ; Tue, 18 Mar 2003 14:00:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IM0YAq096692 for ; Tue, 18 Mar 2003 14:00:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IM0Y5m096688; Tue, 18 Mar 2003 14:00:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303182200.h2IM0Y5m096688@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:00:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_transport.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/03/18 14:00:33 Modified files: xorp/libxipc/: finder_transport.cc Log message: Tweak code that is not used and that is going to be deleted in the future, so that now "test_finder_transport" succeeds on OS X. After this tweak, "gmake check" inside libxipc all succeeds on OS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:19:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMK2lu090878 for ; Tue, 18 Mar 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMK2fh069226 for ; Tue, 18 Mar 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24105; Tue, 18 Mar 2003 14:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24085 for ; Tue, 18 Mar 2003 14:19:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMJGfh069219 for ; Tue, 18 Mar 2003 14:19:16 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMJGAq097065 for ; Tue, 18 Mar 2003 14:19:16 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMJGGx097064; Tue, 18 Mar 2003 14:19:16 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182219.h2IMJGGx097064@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:19:16 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:19:16 Modified files: xorp/docs/tex/: xorp.bib Log message: Added router management bibliography _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:50:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMp3lu093246 for ; Tue, 18 Mar 2003 14:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMp3fh069504 for ; Tue, 18 Mar 2003 14:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24910; Tue, 18 Mar 2003 14:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24903 for ; Tue, 18 Mar 2003 14:50:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMorfh069502 for ; Tue, 18 Mar 2003 14:50:53 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMoqAq097294 for ; Tue, 18 Mar 2003 14:50:52 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMoqrh097293; Tue, 18 Mar 2003 14:50:52 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182250.h2IMoqrh097293@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:50:52 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:50:52 xorp/docs/snmp Update of /usr/local/www/data/cvs/xorp/docs/snmp In directory xorpc.icir.org:/tmp/cvs-serv97285/snmp Log Message: Directory /usr/local/www/data/cvs/xorp/docs/snmp added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:51:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:52:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMq4lu093326 for ; Tue, 18 Mar 2003 14:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMq3fh069517 for ; Tue, 18 Mar 2003 14:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24958; Tue, 18 Mar 2003 14:52:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24951 for ; Tue, 18 Mar 2003 14:52:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMpxfh069510 for ; Tue, 18 Mar 2003 14:51:59 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMpxAq097321 for ; Tue, 18 Mar 2003 14:51:59 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMpxiS097320; Tue, 18 Mar 2003 14:51:59 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182251.h2IMpxiS097320@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:51:59 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:51:59 Added files: xorp/docs/snmp/: Makefile.am Log message: Created snmp documentation Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:53:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:54:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMs3lu093488 for ; Tue, 18 Mar 2003 14:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMs2fh069533 for ; Tue, 18 Mar 2003 14:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25013; Tue, 18 Mar 2003 14:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA24990 for ; Tue, 18 Mar 2003 14:53:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMrBfh069525 for ; Tue, 18 Mar 2003 14:53:11 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMrBAq097356 for ; Tue, 18 Mar 2003 14:53:11 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMrBME097355; Tue, 18 Mar 2003 14:53:11 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182253.h2IMrBME097355@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:53:11 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:53:11 Added files: xorp/docs/snmp/: snmp_overview.tex Log message: Created SNMP overivew document _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:53:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:54:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMs4lu093496 for ; Tue, 18 Mar 2003 14:54:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMs4fh069537 for ; Tue, 18 Mar 2003 14:54:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25028; Tue, 18 Mar 2003 14:54:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25001 for ; Tue, 18 Mar 2003 14:53:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMrMfh069527 for ; Tue, 18 Mar 2003 14:53:22 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMrMAq097372 for ; Tue, 18 Mar 2003 14:53:22 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMrMeH097371; Tue, 18 Mar 2003 14:53:22 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182253.h2IMrMeH097371@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:53:22 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/figs/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:53:22 xorp/docs/snmp/figs Update of /usr/local/www/data/cvs/xorp/docs/snmp/figs In directory xorpc.icir.org:/tmp/cvs-serv97363/figs Log Message: Directory /usr/local/www/data/cvs/xorp/docs/snmp/figs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 14:54:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 14:55:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IMt3lu093585 for ; Tue, 18 Mar 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMt3fh069563 for ; Tue, 18 Mar 2003 14:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25066; Tue, 18 Mar 2003 14:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA25056 for ; Tue, 18 Mar 2003 14:54:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IMsofh069556 for ; Tue, 18 Mar 2003 14:54:50 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IMsoAq097416 for ; Tue, 18 Mar 2003 14:54:50 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IMsoMs097415; Tue, 18 Mar 2003 14:54:50 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182254.h2IMsoMs097415@xorpc.icir.org> Date: Tue, 18 Mar 2003 14:54:50 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/figs/ snmp_fig1.fig snmp_fig1.ssd Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/figs/ Changes by: jcardona@xorpc.icir.org. 03/03/18 14:54:50 Added files: xorp/docs/snmp/figs/: snmp_fig1.fig snmp_fig1.ssd Log message: Created figure for SNMP Overview document _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 15:07:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:08:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IN83lu094588 for ; Tue, 18 Mar 2003 15:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IN83fh069664 for ; Tue, 18 Mar 2003 15:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25438; Tue, 18 Mar 2003 15:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25416 for ; Tue, 18 Mar 2003 15:07:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IN7Tfh069662 for ; Tue, 18 Mar 2003 15:07:29 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IN7TAq097668 for ; Tue, 18 Mar 2003 15:07:29 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IN7TpD097667; Tue, 18 Mar 2003 15:07:29 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182307.h2IN7TpD097667@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:07:29 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:07:29 Modified files: ./: configure Log message: Modified to build Makefile for snmp documentation _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 15:08:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:09:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2IN93lu094668 for ; Tue, 18 Mar 2003 15:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IN92fh069678 for ; Tue, 18 Mar 2003 15:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25480; Tue, 18 Mar 2003 15:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25458 for ; Tue, 18 Mar 2003 15:08:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2IN8Mfh069674 for ; Tue, 18 Mar 2003 15:08:22 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2IN8MAq097708 for ; Tue, 18 Mar 2003 15:08:22 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2IN8MOR097707; Tue, 18 Mar 2003 15:08:22 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182308.h2IN8MOR097707@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:08:22 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:08:22 Modified files: ./: configure.in Log message: Modified to build Makefile for snmp documentation _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:20 2005 Subject: No subject Tue Mar 18 15:21:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:22:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INM3lu095665 for ; Tue, 18 Mar 2003 15:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INM2fh069837 for ; Tue, 18 Mar 2003 15:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25838; Tue, 18 Mar 2003 15:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25806 for ; Tue, 18 Mar 2003 15:21:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INLDfh069826 for ; Tue, 18 Mar 2003 15:21:13 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INLDAq097913 for ; Tue, 18 Mar 2003 15:21:13 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INLDOJ097912; Tue, 18 Mar 2003 15:21:13 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182321.h2INLDOJ097912@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:21:13 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/figs/ snmp_fig1.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/figs/ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:21:13 Added files: xorp/docs/snmp/figs/: snmp_fig1.eps Log message: Created figure for SNMP overview _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 15:24:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:25:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INP3lu095880 for ; Tue, 18 Mar 2003 15:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INP3fh069856 for ; Tue, 18 Mar 2003 15:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25902; Tue, 18 Mar 2003 15:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25895 for ; Tue, 18 Mar 2003 15:24:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INOxfh069851 for ; Tue, 18 Mar 2003 15:24:59 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INOxAq097963 for ; Tue, 18 Mar 2003 15:24:59 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INOxrS097962; Tue, 18 Mar 2003 15:24:59 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182324.h2INOxrS097962@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:24:59 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:24:59 Modified files: xorp/docs/: Makefile.am Log message: Added snmp directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 15:25:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:26:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INQ3lu095979 for ; Tue, 18 Mar 2003 15:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INQ2fh069885 for ; Tue, 18 Mar 2003 15:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25941; Tue, 18 Mar 2003 15:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25919 for ; Tue, 18 Mar 2003 15:25:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INPOfh069881 for ; Tue, 18 Mar 2003 15:25:24 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INPOAq098011 for ; Tue, 18 Mar 2003 15:25:24 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INPOgS098010; Tue, 18 Mar 2003 15:25:24 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182325.h2INPOgS098010@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:25:24 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:25:24 Modified files: xorp/docs/: Makefile.in Log message: Added snmp directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 15:26:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:27:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INR2lu096059 for ; Tue, 18 Mar 2003 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INR2fh069897 for ; Tue, 18 Mar 2003 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25975; Tue, 18 Mar 2003 15:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25960 for ; Tue, 18 Mar 2003 15:26:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INQOfh069893 for ; Tue, 18 Mar 2003 15:26:24 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INQOAq098046 for ; Tue, 18 Mar 2003 15:26:24 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INQOuh098045; Tue, 18 Mar 2003 15:26:24 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182326.h2INQOuh098045@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:26:24 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:26:24 Added files: xorp/docs/snmp/: Makefile.in Log message: Builds SNMP documentation Makefile _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 15:29:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INU2lu096294 for ; Tue, 18 Mar 2003 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INU2fh069922 for ; Tue, 18 Mar 2003 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA26050; Tue, 18 Mar 2003 15:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA26032 for ; Tue, 18 Mar 2003 15:29:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INT6fh069912 for ; Tue, 18 Mar 2003 15:29:06 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INT6Aq098079 for ; Tue, 18 Mar 2003 15:29:06 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INT6CS098078; Tue, 18 Mar 2003 15:29:06 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303182329.h2INT6CS098078@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:29:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 15:29:06 Added files: xorp/docs/snmp/: .cvsignore Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 15:53:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 15:54:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2INs3lu098104 for ; Tue, 18 Mar 2003 15:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INs3fh070142 for ; Tue, 18 Mar 2003 15:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA26774; Tue, 18 Mar 2003 15:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA26767 for ; Tue, 18 Mar 2003 15:53:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2INrpfh070140 for ; Tue, 18 Mar 2003 15:53:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2INrpAq098293 for ; Tue, 18 Mar 2003 15:53:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2INrp7g098292; Tue, 18 Mar 2003 15:53:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303182353.h2INrp7g098292@xorpc.icir.org> Date: Tue, 18 Mar 2003 15:53:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/18 15:53:51 Modified files: ./: configure.in configure Log message: Fix the alphabetical order of the list of Makefiles to generate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 16:11:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 16:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2J0C2lu099462 for ; Tue, 18 Mar 2003 16:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J0C2fh070331 for ; Tue, 18 Mar 2003 16:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27315; Tue, 18 Mar 2003 16:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27299 for ; Tue, 18 Mar 2003 16:11:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J0BSfh070327 for ; Tue, 18 Mar 2003 16:11:28 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2J0BSAq098438 for ; Tue, 18 Mar 2003 16:11:28 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2J0BSYH098437; Tue, 18 Mar 2003 16:11:28 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200303190011.h2J0BSYH098437@xorpc.icir.org> Date: Tue, 18 Mar 2003 16:11:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/03/18 16:11:28 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Fixed figure reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 16:29:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 16:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2J0U2lu000999 for ; Tue, 18 Mar 2003 16:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J0U2fh070481 for ; Tue, 18 Mar 2003 16:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27681; Tue, 18 Mar 2003 16:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27674 for ; Tue, 18 Mar 2003 16:29:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J0Trfh070476 for ; Tue, 18 Mar 2003 16:29:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2J0TrAq003097 for ; Tue, 18 Mar 2003 16:29:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2J0TrPX003089; Tue, 18 Mar 2003 16:29:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303190029.h2J0TrPX003089@xorpc.icir.org> Date: Tue, 18 Mar 2003 16:29:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/03/18 16:29:52 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Nitlets: - fix reference to a figure - remove '/' in front of path name _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Tue Mar 18 17:04:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Mar 2003 17:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2J152lu003618 for ; Tue, 18 Mar 2003 17:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J152fh070755 for ; Tue, 18 Mar 2003 17:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA28357; Tue, 18 Mar 2003 17:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA28345 for ; Tue, 18 Mar 2003 17:04:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J14Efh070750 for ; Tue, 18 Mar 2003 17:04:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2J14EAq010525 for ; Tue, 18 Mar 2003 17:04:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2J14Exv010524; Tue, 18 Mar 2003 17:04:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303190104.h2J14Exv010524@xorpc.icir.org> Date: Tue, 18 Mar 2003 17:04:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc proto_unit.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/03/18 17:04:14 Modified files: xorp/libproto/: proto_unit.cc proto_unit.hh Log message: Add entries for XORP_MODULE_RIB and XORP_MODULE_RTRMGR _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Wed Mar 19 1:05:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Mar 2003 01:06:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2J966lu039877 for ; Wed, 19 Mar 2003 01:06:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J965fh073969 for ; Wed, 19 Mar 2003 01:06:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06052; Wed, 19 Mar 2003 01:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA06039 for ; Wed, 19 Mar 2003 01:05:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2J95Lfh073965 for ; Wed, 19 Mar 2003 01:05:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2J95LAq074720 for ; Wed, 19 Mar 2003 01:05:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2J95L5F074719; Wed, 19 Mar 2003 01:05:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303190905.h2J95L5F074719@xorpc.icir.org> Date: Wed, 19 Mar 2003 1:05:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ fea_client.cc fea_client.hh parser.hh register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.hh rt_tab_base.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.hh ...rt_tab_merged.hh ...rt_tab_origin.hh ...rt_tab_register.hh ...test_fea_client.cc ...test_register_xrls.cc ...test_rib_xrls.cc ...vifmanager.cc ...vifmanager.hh ...xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/19 01:05:21 Modified files: xorp/rib/: fea_client.cc fea_client.hh parser.hh register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.hh rt_tab_base.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.hh rt_tab_merged.hh rt_tab_origin.hh rt_tab_register.hh test_fea_client.cc test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.hh Log message: * Pass the (FEA) target name of the XRL target to send the add/delete route commands to as one of the constructor arguments to SyncFtiCommand. This target name is assigned per FeaClient when FeaClient is created. Initially, that target name is hardcoded inside the RibManager constructor. * Add FeaClient _mrib4_client and _mrib6_client to RibManager, that are used to send the MRIB (for IPv4 and IPv6 resp). to the multicast routing protocol that needs them. Those are the last element in MRIB4 and MRIB6 respectively. For now, the target name of that protocol is hardcoded inside the RibManager constructor. * Nitlets (spacing, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Wed Mar 19 15:38:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Mar 2003 15:39:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2JNd4lu007980 for ; Wed, 19 Mar 2003 15:39:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2JNd4fh082615 for ; Wed, 19 Mar 2003 15:39:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25783; Wed, 19 Mar 2003 15:39:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA25739 for ; Wed, 19 Mar 2003 15:38:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2JNcNfh082609 for ; Wed, 19 Mar 2003 15:38:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2JNcNAq085308 for ; Wed, 19 Mar 2003 15:38:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2JNcN8K085307; Wed, 19 Mar 2003 15:38:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303192338.h2JNcN8K085307@xorpc.icir.org> Date: Wed, 19 Mar 2003 15:38:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ Makefile.am Makefile.in proto_unit.cc proto_unit.hh xorp/libproto/ proto_state.cc proto_state.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/03/19 15:38:23 Modified files: xorp/libproto/: Makefile.am Makefile.in proto_unit.cc proto_unit.hh Added files: xorp/libproto/: proto_state.cc proto_state.hh Log message: Move the state-related stuff from ProtoUnit to a separate new class ProtoState, that now is used as a base class by ProtoUnit. All the interface remains the same. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Wed Mar 19 16:57:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Mar 2003 16:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2K0w3lu014034 for ; Wed, 19 Mar 2003 16:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2K0w3fh083249 for ; Wed, 19 Mar 2003 16:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27742; Wed, 19 Mar 2003 16:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA27731 for ; Wed, 19 Mar 2003 16:57:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2K0vsfh083247 for ; Wed, 19 Mar 2003 16:57:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2K0vsAq096145 for ; Wed, 19 Mar 2003 16:57:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2K0vsRx096144; Wed, 19 Mar 2003 16:57:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303200057.h2K0vsRx096144@xorpc.icir.org> Date: Wed, 19 Mar 2003 16:57:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ .cvsignore Makefile.am Makefile.in TODO rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh test_register_xrls.cc test_rib_xrls.cc vifmanager.hh xrl_target.cc xorp/rib/ rib_client.cc rib_client.hh test_rib_client.cc xorp/rib/ fea_client.cc fea_client.hh test_fea_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/19 16:57:54 Modified files: xorp/rib/: .cvsignore Makefile.am Makefile.in TODO rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh test_register_xrls.cc test_rib_xrls.cc vifmanager.hh xrl_target.cc Added files: xorp/rib/: rib_client.cc rib_client.hh test_rib_client.cc Removed files: xorp/rib/: fea_client.cc fea_client.hh test_fea_client.cc Log message: Rename FeaClient to RibClient. The reason is so we can make the RIB more generic and modular. E.g., as a next step I will implement a mechanism to add more than one RibClient objects to the end point of a RIB, so each RIB routes can be exported to a number of RIB clients (e.g., one of those RIB clients will be the FEA). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Wed Mar 19 20:29:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Mar 2003 20:30:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2K4U3lu029936 for ; Wed, 19 Mar 2003 20:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2K4U2fh084682 for ; Wed, 19 Mar 2003 20:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA00942; Wed, 19 Mar 2003 20:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA00930 for ; Wed, 19 Mar 2003 20:29:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2K4TNfh084675 for ; Wed, 19 Mar 2003 20:29:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2K4TNAq023547 for ; Wed, 19 Mar 2003 20:29:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2K4TNN6023546; Wed, 19 Mar 2003 20:29:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303200429.h2K4TNN6023546@xorpc.icir.org> Date: Wed, 19 Mar 2003 20:29:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO main_rib.cc rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/19 20:29:23 Modified files: xorp/rib/: TODO main_rib.cc rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh xrl_target.cc Log message: * Add four lists of RibClient objects to RibManager: one list for urib4, urib6, mrib4, mrib6 respectively. * add/delete routes from the Export table is executed for all RibClient objects on the corresponding list for that RIB. Thus, we can export the routes to more than target. * Add new methods to RibManager add/delete/enable/disable a RibClient, etc. The corresponding XRL interface is not implemented yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Thu Mar 20 16:46:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Mar 2003 16:47:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2L0l5lu023403 for ; Thu, 20 Mar 2003 16:47:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L0l5fh095460 for ; Thu, 20 Mar 2003 16:47:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA24574; Thu, 20 Mar 2003 16:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA24554 for ; Thu, 20 Mar 2003 16:46:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L0k9fh095456 for ; Thu, 20 Mar 2003 16:46:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2L0k8Aq079891 for ; Thu, 20 Mar 2003 16:46:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2L0k8sc079890; Thu, 20 Mar 2003 16:46:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303210046.h2L0k8sc079890@xorpc.icir.org> Date: Thu, 20 Mar 2003 16:46:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/20 16:46:08 Modified files: xorp/pim/: configure_pim Log message: Replace the configured interface for "possum" from fxp0 to rl0 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Thu Mar 20 17:25:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Mar 2003 17:26:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2L1Q5lu026354 for ; Thu, 20 Mar 2003 17:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L1Q4fh095813 for ; Thu, 20 Mar 2003 17:26:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA25315; Thu, 20 Mar 2003 17:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA25306 for ; Thu, 20 Mar 2003 17:25:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L1PFfh095809 for ; Thu, 20 Mar 2003 17:25:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2L1PFAq092518 for ; Thu, 20 Mar 2003 17:25:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2L1PFpb092517; Thu, 20 Mar 2003 17:25:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303210125.h2L1PFpb092517@xorpc.icir.org> Date: Thu, 20 Mar 2003 17:25:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in main_rib.cc rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/20 17:25:15 Modified files: xorp/rib/: Makefile.am Makefile.in main_rib.cc rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc Log message: * Add start() and stop() methods to RibManager and VifManager, which methods are used for various housekeeping start-up and shut-down operations. * Add "class ProtoState" as a base class for RibManager and VifManager, which can be used for simple things like keeping state whether RibManager or VifManager is up/down/enabled/disabled. Note that the default is DOWN and DISABLED, therefore we must explicitly enable RibManager and then start it. VifManager is a slight exception in a sense that VifManager::start() will always call enable() first. * Add method RibManager::no_fea() that disables FEA-related operations. Quite likely this method will be obsoleted in the future and replaced with cleaner interface. * Remove RibManager::run_event_loop(), so the event loop is always run outside RibManager. * Comments editing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Thu Mar 20 19:01:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Mar 2003 19:02:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2L326lu033561 for ; Thu, 20 Mar 2003 19:02:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L325fh096467 for ; Thu, 20 Mar 2003 19:02:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA26664; Thu, 20 Mar 2003 19:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA26657 for ; Thu, 20 Mar 2003 19:01:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2L31mfh096463 for ; Thu, 20 Mar 2003 19:01:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2L31mAq002932 for ; Thu, 20 Mar 2003 19:01:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2L31mCA002931; Thu, 20 Mar 2003 19:01:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303210301.h2L31mCA002931@xorpc.icir.org> Date: Thu, 20 Mar 2003 19:01:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc xorp/rib/ rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/20 19:01:48 Modified files: xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc xorp/rib/: rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Add following XRL interface to RIB: enable_rib disable_rib start_rib stop_rib add_rib_client delete_rib_client enable_rib_client disable_rib_client _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Fri Mar 21 15:46:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Mar 2003 15:47:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2LNl5lu030990 for ; Fri, 21 Mar 2003 15:47:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2LNl5fh007340 for ; Fri, 21 Mar 2003 15:47:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19926; Fri, 21 Mar 2003 15:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA19910 for ; Fri, 21 Mar 2003 15:46:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2LNkQfh007334 for ; Fri, 21 Mar 2003 15:46:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2LNkQAq055440 for ; Fri, 21 Mar 2003 15:46:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2LNkQtZ055439; Fri, 21 Mar 2003 15:46:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303212346.h2LNkQtZ055439@xorpc.icir.org> Date: Fri, 21 Mar 2003 15:46:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/03/21 15:46:26 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh Log message: Reorder the FTI-related XRL implementation such that the implementation of the IPv6-version immediately follows the implementation of the IPv4-version. E.g.: foo() foo4() foo6() bar() bar4() bar6() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Fri Mar 21 19:26:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Mar 2003 19:27:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2M3R6lu047845 for ; Fri, 21 Mar 2003 19:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M3R5fh008821 for ; Fri, 21 Mar 2003 19:27:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24041; Fri, 21 Mar 2003 19:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA24033 for ; Fri, 21 Mar 2003 19:26:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M3Qifh008814 for ; Fri, 21 Mar 2003 19:26:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2M3QiAq085163 for ; Fri, 21 Mar 2003 19:26:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2M3QiBF085162; Fri, 21 Mar 2003 19:26:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303220326.h2M3QiBF085162@xorpc.icir.org> Date: Fri, 21 Mar 2003 19:26:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.cc mrib_table.hh xorp/pim/ pim_mrib_table.cc pim_mrib_table.hh xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/ fea_fti.xif fea_fti_xif.cc fea_fti_xif.hh xorp/xrl/targets/ cli.tgt fea.xrls fea_base.cc fea_base.hh mfea.tgt mld6igmp.tgt pim.tgt pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/21 19:26:44 Modified files: xorp/mrt/: mrib_table.cc mrib_table.hh xorp/pim/: pim_mrib_table.cc pim_mrib_table.hh xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/: fea_fti.xif fea_fti_xif.cc fea_fti_xif.hh xorp/xrl/targets/: cli.tgt fea.xrls fea_base.cc fea_base.hh mfea.tgt mld6igmp.tgt pim.tgt pim.xrls pim_base.cc pim_base.hh Log message: * Add the fti (fea_fti.xif) XRL interface to XrlPimNode to receive updates from the RIB: currenty the interface is not used. * Use transaction ID in MribTable when adding or removing Mrib entries, or committing changes to the Mrib table. * Implement new method: MribTable::abort_pending_transactions(uint32_t tid) * Bugfix to MribTable::clear() delete all pending transactions as well * Add kdoc comments to fea_fti.xif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Fri Mar 21 20:29:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Mar 2003 20:30:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2M4U6lu052891 for ; Fri, 21 Mar 2003 20:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M4U6fh009134 for ; Fri, 21 Mar 2003 20:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24752; Fri, 21 Mar 2003 20:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA24743 for ; Fri, 21 Mar 2003 20:29:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M4Tlfh009109 for ; Fri, 21 Mar 2003 20:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2M4TlAq090972 for ; Fri, 21 Mar 2003 20:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2M4Tl75090971; Fri, 21 Mar 2003 20:29:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303220429.h2M4Tl75090971@xorpc.icir.org> Date: Fri, 21 Mar 2003 20:29:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc rib_manager.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/21 20:29:47 Modified files: xorp/rib/: rib_manager.cc rib_manager.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Refactoring of the recently added XRL interface to the RIB: * enable/disable/start/stop RIB * add/delete/enable/disable RIB client _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:21 2005 Subject: No subject Fri Mar 21 21:10:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Mar 2003 21:11:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2M5B5lu056250 for ; Fri, 21 Mar 2003 21:11:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M5B4fh009374 for ; Fri, 21 Mar 2003 21:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25234; Fri, 21 Mar 2003 21:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA25210 for ; Fri, 21 Mar 2003 21:10:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2M5AZfh009370 for ; Fri, 21 Mar 2003 21:10:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2M5AZAq000295 for ; Fri, 21 Mar 2003 21:10:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2M5AZLC000294; Fri, 21 Mar 2003 21:10:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303220510.h2M5AZLC000294@xorpc.icir.org> Date: Fri, 21 Mar 2003 21:10:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ command_pim configure_pim xorp/pim/ xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/21 21:10:34 Modified files: xorp/pim/: command_pim configure_pim Added files: xorp/pim/: xrl_rib_shell_funcs.sh Log message: Add a shell script with handy wrapper functions for the RIB. Note: the location of this script is a temporary solution and is used only by PIM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Sat Mar 22 8:23:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Mar 2003 08:24:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2MGO3lu009877 for ; Sat, 22 Mar 2003 08:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2MGO3fh017919 for ; Sat, 22 Mar 2003 08:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04526; Sat, 22 Mar 2003 08:24:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04518 for ; Sat, 22 Mar 2003 08:23:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2MGNjfh017913 for ; Sat, 22 Mar 2003 08:23:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2MGNjAq080615 for ; Sat, 22 Mar 2003 08:23:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2MGNj5M080612; Sat, 22 Mar 2003 08:23:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303221623.h2MGNj5M080612@xorpc.icir.org> Date: Sat, 22 Mar 2003 8:23:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/03/22 08:23:44 Modified files: xorp/rib/: xrl_target.cc Log message: Compilation fixes - apply UNUSED for unused arguments when HAVE_IPV6 is not defined. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 11:11:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 11:12:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2OJC6lu043829 for ; Mon, 24 Mar 2003 11:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2OJC6fh042087 for ; Mon, 24 Mar 2003 11:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA15033; Mon, 24 Mar 2003 11:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA15021 for ; Mon, 24 Mar 2003 11:11:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2OJBhfh042083 for ; Mon, 24 Mar 2003 11:11:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2OJBhAq075588 for ; Mon, 24 Mar 2003 11:11:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2OJBhsm075587; Mon, 24 Mar 2003 11:11:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303241911.h2OJBhsm075587@xorpc.icir.org> Date: Mon, 24 Mar 2003 11:11:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/03/24 11:11:43 Modified files: xorp/rib/: xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Fix inconsistencies in error reporting by xrls in recent rib additions (ie use XrlCmdError::COMMAND_FAILED rather than fail:bool & reason:txt return values). Both provide the same infomation and the former is the preferred method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 11:57:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 11:58:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2OJw6lu047544 for ; Mon, 24 Mar 2003 11:58:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2OJw5fh042473 for ; Mon, 24 Mar 2003 11:58:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA16057; Mon, 24 Mar 2003 11:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA16041 for ; Mon, 24 Mar 2003 11:57:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2OJv7fh042461 for ; Mon, 24 Mar 2003 11:57:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2OJv6Aq076821 for ; Mon, 24 Mar 2003 11:57:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2OJv6hB076820; Mon, 24 Mar 2003 11:57:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303241957.h2OJv6hB076820@xorpc.icir.org> Date: Mon, 24 Mar 2003 11:57:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/24 11:57:06 Modified files: xorp/mfea/: xrl_shell_lib.sh Log message: Modify call_xrl() shell function such that if we must repeat untill success, then it continues calling libxipc/call_xrl until the return value is 0 even if there are no XRL arguments specified to look for their return value. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 16:29:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 16:30:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P0U5lu068646 for ; Mon, 24 Mar 2003 16:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0U5fh045243 for ; Mon, 24 Mar 2003 16:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22452; Mon, 24 Mar 2003 16:30:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22432 for ; Mon, 24 Mar 2003 16:29:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0Tlfh045235 for ; Mon, 24 Mar 2003 16:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P0TlAq012446 for ; Mon, 24 Mar 2003 16:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P0TlUA012445; Mon, 24 Mar 2003 16:29:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250029.h2P0TlUA012445@xorpc.icir.org> Date: Mon, 24 Mar 2003 16:29:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ command_pim rcommand_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/24 16:29:47 Modified files: xorp/pim/: command_pim rcommand_pim Log message: Make the return value of the 'command_pim' and 'rcommand_pim' scripts to be equal to the return value of the executed command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 16:44:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 16:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P0j3lu069788 for ; Mon, 24 Mar 2003 16:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0j2fh045373 for ; Mon, 24 Mar 2003 16:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22796; Mon, 24 Mar 2003 16:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22789 for ; Mon, 24 Mar 2003 16:44:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0iqfh045368 for ; Mon, 24 Mar 2003 16:44:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P0ipAq014938 for ; Mon, 24 Mar 2003 16:44:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P0ipBK014937; Mon, 24 Mar 2003 16:44:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250044.h2P0ipBK014937@xorpc.icir.org> Date: Mon, 24 Mar 2003 16:44:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/24 16:44:51 Modified files: xorp/rib/: xrl_target.cc Log message: Refactoring some of the return strings when there is an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 16:45:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 16:46:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P0k2lu069891 for ; Mon, 24 Mar 2003 16:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0k2fh045402 for ; Mon, 24 Mar 2003 16:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22832; Mon, 24 Mar 2003 16:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22821 for ; Mon, 24 Mar 2003 16:45:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0jcfh045396 for ; Mon, 24 Mar 2003 16:45:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P0jcAq015114 for ; Mon, 24 Mar 2003 16:45:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P0jcgv015113; Mon, 24 Mar 2003 16:45:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250045.h2P0jcgv015113@xorpc.icir.org> Date: Mon, 24 Mar 2003 16:45:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/24 16:45:38 Modified files: xorp/mfea/: xrl_shell_lib.sh Log message: Misc. fixes and cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 16:46:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 16:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P0l3lu069985 for ; Mon, 24 Mar 2003 16:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0l2fh045430 for ; Mon, 24 Mar 2003 16:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22865; Mon, 24 Mar 2003 16:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA22851 for ; Mon, 24 Mar 2003 16:46:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P0kPfh045416 for ; Mon, 24 Mar 2003 16:46:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P0kPAq015246 for ; Mon, 24 Mar 2003 16:46:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P0kPC0015245; Mon, 24 Mar 2003 16:46:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250046.h2P0kPC0015245@xorpc.icir.org> Date: Mon, 24 Mar 2003 16:46:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/24 16:46:25 Modified files: xorp/pim/: xrl_rib_shell_funcs.sh Log message: Remove the expectancy to receive fail:bool = false _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 17:21:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 17:22:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P1M3lu072650 for ; Mon, 24 Mar 2003 17:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P1M2fh045752 for ; Mon, 24 Mar 2003 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23709; Mon, 24 Mar 2003 17:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA23702 for ; Mon, 24 Mar 2003 17:21:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P1Lnfh045749 for ; Mon, 24 Mar 2003 17:21:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P1LnAq028010 for ; Mon, 24 Mar 2003 17:21:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P1Ln3v028009; Mon, 24 Mar 2003 17:21:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250121.h2P1Ln3v028009@xorpc.icir.org> Date: Mon, 24 Mar 2003 17:21:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh xrl_cli_node.cc xrl_cli_node.hh xrl_cli_shell_funcs.sh xorp/mfea/ xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/ cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh xorp/xrl/targets/ cli.xrls cli_base.cc cli_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/24 17:21:49 Modified files: xorp/cli/: cli_node.cc cli_node.hh xrl_cli_node.cc xrl_cli_node.hh xrl_cli_shell_funcs.sh xorp/mfea/: xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/: cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh xorp/xrl/targets/: cli.xrls cli_base.cc cli_base.hh Log message: Replace the "fail & reason" XRL error return mechanism with the XrlCmdError::COMMAND_FAILED() mechanism for the CLI-related XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Mon Mar 24 22:55:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Mar 2003 22:56:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P6u3lu097892 for ; Mon, 24 Mar 2003 22:56:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P6u2fh048256 for ; Mon, 24 Mar 2003 22:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA27841; Mon, 24 Mar 2003 22:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA27832 for ; Mon, 24 Mar 2003 22:55:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P6tCfh048254 for ; Mon, 24 Mar 2003 22:55:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P6tCAq071118 for ; Mon, 24 Mar 2003 22:55:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P6tCOs071117; Mon, 24 Mar 2003 22:55:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250655.h2P6tCOs071117@xorpc.icir.org> Date: Mon, 24 Mar 2003 22:55:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ mfea.xif mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_client.xif mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...pim.xif ...pim_xif.cc ...pim_xif.hh xorp/xrl/targets/ mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/24 22:55:12 Modified files: xorp/mfea/: xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: mfea.xif mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_client.xif mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Replace the "fail & reason" XRL error return mechanism with the XrlCmdError::COMMAND_FAILED() mechanism for the MFEA, MLD6IGMP and PIM related XRLs, and improve the readability of the returned error messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 0:10:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 00:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2P8B3lu003678 for ; Tue, 25 Mar 2003 00:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P8B3fh048770 for ; Tue, 25 Mar 2003 00:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA29711; Tue, 25 Mar 2003 00:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA29685 for ; Tue, 25 Mar 2003 00:10:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2P8A1fh048751 for ; Tue, 25 Mar 2003 00:10:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2P8A1Aq072212 for ; Tue, 25 Mar 2003 00:10:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2P8A10g072211; Tue, 25 Mar 2003 00:10:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303250810.h2P8A10g072211@xorpc.icir.org> Date: Tue, 25 Mar 2003 0:10:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/25 00:10:01 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 18:16:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 18:18:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2I6lu088073 for ; Tue, 25 Mar 2003 18:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2I6fh059412 for ; Tue, 25 Mar 2003 18:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21616; Tue, 25 Mar 2003 18:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21602 for ; Tue, 25 Mar 2003 18:16:59 -0800 (PST) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2Gxfh059408 for ; Tue, 25 Mar 2003 18:16:59 -0800 (PST) (envelope-from atanu@tigger.icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2Gxlu087853 for ; Tue, 25 Mar 2003 18:16:59 -0800 (PST) (envelope-from atanu@tigger.icir.org) To: xorp-cvs@icir.org Reply-To: atanu@ICSI.Berkeley.EDU From: Atanu Ghosh X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Face: "vo>pjO=2{5vAaQnJ+eIGQq4rz!lK{fOOkT!sIsS^dxv90L}WQk).kC_,5^0!RxK HM7b=#=g#WZ;HFt9Nw%bCuz[kzFEY{YpW_CaxKfuK1=SvTf)WkGK?,8_RFzfuIP$G o9]]O,\F40]rw79Arl'gB+gw`LgGId-D5S[J#4bWG^5]/Z62.Ka(81i.XMiU+y:Nf bf-]pyNeP1!K?L~H7.x+NC|Zi0=#B2"EIsV:FBH7N@XOQBH[DkxFW#/"u@SV'd-T1 DnGQC[QhB,tYS Subject: [Xorp-cvs] testing Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 18:37:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 18:38:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2c2lu089636 for ; Tue, 25 Mar 2003 18:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2c2fh059555 for ; Tue, 25 Mar 2003 18:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21974; Tue, 25 Mar 2003 18:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21966 for ; Tue, 25 Mar 2003 18:37:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2bdfh059553 for ; Tue, 25 Mar 2003 18:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2bdAq025246 for ; Tue, 25 Mar 2003 18:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2Q2bdkp025245; Tue, 25 Mar 2003 18:37:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303260237.h2Q2bdkp025245@xorpc.icir.org> Date: Tue, 25 Mar 2003 18:37:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/figs/ error_dependency.eps error_dependency.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/figs/ Changes by: pavlin@xorpc.icir.org. 03/03/25 18:37:39 Added files: xorp/docs/design_arch/figs/: error_dependency.eps error_dependency.fig Log message: Add a figure with error dependency between XORP components. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 18:38:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 18:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2d3lu089716 for ; Tue, 25 Mar 2003 18:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2d2fh059565 for ; Tue, 25 Mar 2003 18:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22011; Tue, 25 Mar 2003 18:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21989 for ; Tue, 25 Mar 2003 18:38:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2c6fh059561 for ; Tue, 25 Mar 2003 18:38:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2c6Aq025276 for ; Tue, 25 Mar 2003 18:38:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2Q2c6JE025273; Tue, 25 Mar 2003 18:38:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303260238.h2Q2c6JE025273@xorpc.icir.org> Date: Tue, 25 Mar 2003 18:38:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ .cvsignore Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/03/25 18:38:06 Modified files: xorp/docs/design_arch/: .cvsignore Makefile.am Makefile.in Log message: Add the error_handling.tex document to Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 19:04:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 19:05:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q355lu091748 for ; Tue, 25 Mar 2003 19:05:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q355fh059754 for ; Tue, 25 Mar 2003 19:05:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22500; Tue, 25 Mar 2003 19:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22487 for ; Tue, 25 Mar 2003 19:04:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q34efh059743 for ; Tue, 25 Mar 2003 19:04:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2Q34eAq025495 for ; Tue, 25 Mar 2003 19:04:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2Q34edc025494; Tue, 25 Mar 2003 19:04:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303260304.h2Q34edc025494@xorpc.icir.org> Date: Tue, 25 Mar 2003 19:04:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/25 19:04:40 Modified files: xorp/devnotes/: WORKPLAN Log message: Add a mini-template for the things to include with the next stable release (xorp-1.0). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 17:28:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 20:26:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q4Q2lu097920 for ; Tue, 25 Mar 2003 20:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q4Q2fh060275; Tue, 25 Mar 2003 20:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23667; Tue, 25 Mar 2003 20:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA20734 for ; Tue, 25 Mar 2003 17:28:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q1Svfh058981 for ; Tue, 25 Mar 2003 17:28:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2Q1SuAq016303 for ; Tue, 25 Mar 2003 17:28:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2Q1Su7r016302; Tue, 25 Mar 2003 17:28:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303260128.h2Q1Su7r016302@xorpc.icir.org> Date: Tue, 25 Mar 2003 17:28:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/03/25 17:28:56 Added files: xorp/docs/design_arch/: error_handling.tex Log message: Error handling in xorp work in progress. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Tue Mar 25 18:51:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Mar 2003 20:26:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2Q4Q5lu097928 for ; Tue, 25 Mar 2003 20:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q4Q4fh060277; Tue, 25 Mar 2003 20:26:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA23683; Tue, 25 Mar 2003 20:26:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA22245 for ; Tue, 25 Mar 2003 18:51:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2pOfh059657 for ; Tue, 25 Mar 2003 18:51:24 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2Q2pNAq025398 for ; Tue, 25 Mar 2003 18:51:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2Q2pNWY025397; Tue, 25 Mar 2003 18:51:23 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200303260251.h2Q2pNWY025397@xorpc.icir.org> Date: Tue, 25 Mar 2003 18:51:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/03/25 18:51:23 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Process failure table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Wed Mar 26 8:52:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 08:53:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2QGr2lu056055 for ; Wed, 26 Mar 2003 08:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2QGr2fh067423; Wed, 26 Mar 2003 08:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA07075; Wed, 26 Mar 2003 08:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA07051 for ; Wed, 26 Mar 2003 08:52:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2QGqZfh067414 for ; Wed, 26 Mar 2003 08:52:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2QGqZAq025958 for ; Wed, 26 Mar 2003 08:52:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2QGqZdi025957; Wed, 26 Mar 2003 08:52:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303261652.h2QGqZdi025957@xorpc.icir.org> Date: Wed, 26 Mar 2003 8:52:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ ospf.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 03/03/26 08:52:35 Modified files: xorp/etc/templates/: ospf.tp Log message: Add modinfo ready xrl to cause rtrmgr to wait until ospf is ready to process xrls before sending configuration information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Wed Mar 26 15:42:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 15:43:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2QNh6lu087792 for ; Wed, 26 Mar 2003 15:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2QNh5fh071205 for ; Wed, 26 Mar 2003 15:43:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17135; Wed, 26 Mar 2003 15:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA17125 for ; Wed, 26 Mar 2003 15:42:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2QNgBfh071203 for ; Wed, 26 Mar 2003 15:42:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2QNgBAq078134 for ; Wed, 26 Mar 2003 15:42:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2QNgBnO078133; Wed, 26 Mar 2003 15:42:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303262342.h2QNgBnO078133@xorpc.icir.org> Date: Wed, 26 Mar 2003 15:42:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ mfea2fea_merge_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/26 15:42:10 Added files: xorp/devnotes/: mfea2fea_merge_plan.txt Log message: Add the strawman MFEA-to-FEA merge plan. Feel free to edit and/or discuss. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Wed Mar 26 16:19:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 16:20:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R0K3lu090651 for ; Wed, 26 Mar 2003 16:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R0K3fh071508 for ; Wed, 26 Mar 2003 16:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17952; Wed, 26 Mar 2003 16:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17929 for ; Wed, 26 Mar 2003 16:19:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R0J5fh071493 for ; Wed, 26 Mar 2003 16:19:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R0J5Aq078455 for ; Wed, 26 Mar 2003 16:19:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R0J5Tb078454; Wed, 26 Mar 2003 16:19:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303270019.h2R0J5Tb078454@xorpc.icir.org> Date: Wed, 26 Mar 2003 16:19:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_data.cc pim_node.cc pim_node.hh pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/26 16:19:05 Modified files: xorp/pim/: pim_mre_data.cc pim_node.cc pim_node.hh pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Add PIM configuration option and XRL interface to configure the SPT-switch bandwidth threshold. Currently, the SPT-switch is enabled only for the corner cases: switch on the first packet, or never switch. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:22 2005 Subject: No subject Wed Mar 26 16:22:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 16:23:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R0N2lu090907 for ; Wed, 26 Mar 2003 16:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R0N2fh071541 for ; Wed, 26 Mar 2003 16:23:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18023; Wed, 26 Mar 2003 16:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA18003 for ; Wed, 26 Mar 2003 16:22:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R0MFfh071539 for ; Wed, 26 Mar 2003 16:22:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R0MFAq078583 for ; Wed, 26 Mar 2003 16:22:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R0MFIH078582; Wed, 26 Mar 2003 16:22:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303270022.h2R0MFIH078582@xorpc.icir.org> Date: Wed, 26 Mar 2003 16:22:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ mfea2fea_merge_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/03/26 16:22:15 Modified files: xorp/devnotes/: mfea2fea_merge_plan.txt Log message: Add a clarificication about the vif_index _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Wed Mar 26 17:51:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 17:52:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R1q4lu097802 for ; Wed, 26 Mar 2003 17:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R1q4fh072212 for ; Wed, 26 Mar 2003 17:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19819; Wed, 26 Mar 2003 17:52:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA19810 for ; Wed, 26 Mar 2003 17:52:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R1q0fh072210 for ; Wed, 26 Mar 2003 17:52:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R1pxAq006138 for ; Wed, 26 Mar 2003 17:51:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R1pxmY006129; Wed, 26 Mar 2003 17:51:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303270151.h2R1pxmY006129@xorpc.icir.org> Date: Wed, 26 Mar 2003 17:51:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh selector.hh test_timer.cc timer.hh xorp/libxipc/ finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_server.cc test_finder_ipc2.cc xorp/cli/ cli_node.cc cli_node.hh cli_node_net.cc test_cli.cc xorp/mfea/ mfea_unix_comm.cc mfea_unix_comm.hh xorp/mrt/ test_mtimer.cc timer2xorp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mrt/ Changes by: hodson@xorpc.icir.org. 03/03/26 17:51:59 Modified files: xorp/libxorp/: eventloop.hh selector.hh test_timer.cc timer.hh xorp/libxipc/: finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_server.cc test_finder_ipc2.cc xorp/cli/: cli_node.cc cli_node.hh cli_node_net.cc test_cli.cc xorp/mfea/: mfea_unix_comm.cc mfea_unix_comm.hh xorp/mrt/: test_mtimer.cc timer2xorp.cc Log message: Remove methods marked as deprecated from Timer, Selector, and EventLoop code, and propagate changes (relatively few). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Wed Mar 26 18:48:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 18:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R2n3lu002375 for ; Wed, 26 Mar 2003 18:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R2n3fh072717 for ; Wed, 26 Mar 2003 18:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21189; Wed, 26 Mar 2003 18:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21172 for ; Wed, 26 Mar 2003 18:48:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R2mVfh072715 for ; Wed, 26 Mar 2003 18:48:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R2mVAq008517 for ; Wed, 26 Mar 2003 18:48:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R2mVWo008516; Wed, 26 Mar 2003 18:48:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303270248.h2R2mVWo008516@xorpc.icir.org> Date: Wed, 26 Mar 2003 18:48:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/26 18:48:31 Modified files: xorp/mfea/: mfea_unix_comm.cc Log message: * Add-back a "return;" statement, and a call to kernel_call_process() that went MIA. * Add a comment after each "return;" whether it was because of error or because it was OK. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Wed Mar 26 18:49:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 18:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R2o3lu002462 for ; Wed, 26 Mar 2003 18:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R2o2fh072733 for ; Wed, 26 Mar 2003 18:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21217; Wed, 26 Mar 2003 18:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA21210 for ; Wed, 26 Mar 2003 18:49:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R2nQfh072728 for ; Wed, 26 Mar 2003 18:49:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R2nQAq008571 for ; Wed, 26 Mar 2003 18:49:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R2nQKe008570; Wed, 26 Mar 2003 18:49:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303270249.h2R2nQKe008570@xorpc.icir.org> Date: Wed, 26 Mar 2003 18:49:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ test_mtimer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/03/26 18:49:26 Modified files: xorp/mrt/: test_mtimer.cc Log message: Nit _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Wed Mar 26 20:11:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 20:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R4C2lu008675 for ; Wed, 26 Mar 2003 20:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R4C2fh073299 for ; Wed, 26 Mar 2003 20:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22283; Wed, 26 Mar 2003 20:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22270 for ; Wed, 26 Mar 2003 20:11:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R4BHfh073295 for ; Wed, 26 Mar 2003 20:11:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R4BHAq011790 for ; Wed, 26 Mar 2003 20:11:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R4BHZ2011789; Wed, 26 Mar 2003 20:11:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303270411.h2R4BHZ2011789@xorpc.icir.org> Date: Wed, 26 Mar 2003 20:11:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/03/26 20:11:17 Modified files: ./: Makefile.am Makefile.in Log message: Move the "mfea" directory to the list of libraries, so it should be compiled before the "fea". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Wed Mar 26 23:51:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Mar 2003 23:52:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2R7q3lu026738 for ; Wed, 26 Mar 2003 23:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R7q3fh074804; Wed, 26 Mar 2003 23:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25815; Wed, 26 Mar 2003 23:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id XAA25788 for ; Wed, 26 Mar 2003 23:51:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2R7pJfh074802 for ; Wed, 26 Mar 2003 23:51:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2R7pJAq043880 for ; Wed, 26 Mar 2003 23:51:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2R7pJhN043879; Wed, 26 Mar 2003 23:51:19 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303270751.h2R7pJhN043879@xorpc.icir.org> Date: Wed, 26 Mar 2003 23:51:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh timer.cc timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/26 23:51:19 Modified files: xorp/libxorp/: eventloop.hh timer.cc timer.hh Log message: Add relative timeval scheduling methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 9:01:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 09:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2RH23lu093846 for ; Thu, 27 Mar 2003 09:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RH22fh080740; Thu, 27 Mar 2003 09:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA04991; Thu, 27 Mar 2003 09:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA04949 for ; Thu, 27 Mar 2003 09:01:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RH17fh080738 for ; Thu, 27 Mar 2003 09:01:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2RH17Aq017192 for ; Thu, 27 Mar 2003 09:01:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2RH17IP017191; Thu, 27 Mar 2003 09:01:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303271701.h2RH17IP017191@xorpc.icir.org> Date: Thu, 27 Mar 2003 9:01:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh timer.cc timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/27 09:01:07 Modified files: xorp/libxorp/: eventloop.hh timer.cc timer.hh Log message: Add timeval relative flag set methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 11:30:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 11:31:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2RJV5lu011931 for ; Thu, 27 Mar 2003 11:31:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RJV5fh082047; Thu, 27 Mar 2003 11:31:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08805; Thu, 27 Mar 2003 11:31:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08762 for ; Thu, 27 Mar 2003 11:30:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RJUafh082043 for ; Thu, 27 Mar 2003 11:30:36 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2RJUaAq036304 for ; Thu, 27 Mar 2003 11:30:36 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2RJUarF036303; Thu, 27 Mar 2003 11:30:36 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200303271930.h2RJUarF036303@xorpc.icir.org> Date: Thu, 27 Mar 2003 11:30:36 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ .cvsignore Makefile.am Makefile.in xorp/rtrmgr/ y.boot_tab.cc y.boot_tab.h y.opcmd_tab.cc y.opcmd_tab.h y.tplt_tab.cc y.tplt_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/03/27 11:30:36 Modified files: xorp/rtrmgr/: .cvsignore Makefile.am Makefile.in Added files: xorp/rtrmgr/: y.boot_tab.cc y.boot_tab.h y.opcmd_tab.cc y.opcmd_tab.h y.tplt_tab.cc y.tplt_tab.h Log message: Workaround for yacc incompatibilities on newer RedHat systems. If you change any of the .yy files, you need to run "gmake yacc" explicitly to create the generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 15:29:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 15:31:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2RNV3lu040860 for ; Thu, 27 Mar 2003 15:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RNV3fh084162; Thu, 27 Mar 2003 15:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15545; Thu, 27 Mar 2003 15:31:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15508 for ; Thu, 27 Mar 2003 15:30:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RNU0fh084134 for ; Thu, 27 Mar 2003 15:30:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2RNU0Aq066537 for ; Thu, 27 Mar 2003 15:30:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2RNTx1j066536; Thu, 27 Mar 2003 15:29:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303272329.h2RNTx1j066536@xorpc.icir.org> Date: Thu, 27 Mar 2003 15:29:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/27 15:29:59 Modified files: xorp/libxorp/: timeval.hh Log message: * Add a new class TimeVal that should be used instead of "struct timeval". For the time being, it is not used anywhere. Basically, currently it implements (almost) all the operators on "timeval" that were already there. The operators not implemented are: - division of TimeVal by TimeVal - operator % of TimeVal by TimeVal * Minor tweak to double_to_timeval(const double& d) to round-up the result when performing double-float aritmetics. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 15:44:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 15:45:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2RNj5lu042533 for ; Thu, 27 Mar 2003 15:45:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RNj5fh084357; Thu, 27 Mar 2003 15:45:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15859; Thu, 27 Mar 2003 15:45:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15848 for ; Thu, 27 Mar 2003 15:44:45 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RNijfh084350; Thu, 27 Mar 2003 15:44:45 -0800 (PST) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.3/8.12.3) with ESMTP id h2RNijix088574; Thu, 27 Mar 2003 15:44:45 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200303272344.h2RNijix088574@possum.icir.org> To: Luigi Rizzo cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh In-Reply-To: Message from Luigi Rizzo of "Thu, 27 Mar 2003 15:38:58 PST." <20030327153858.B66323@xorpc.icir.org> Date: Thu, 27 Mar 2003 15:44:45 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > On Thu, Mar 27, 2003 at 03:29:59PM +0000, Pavlin Radoslavov wrote: > ... > > The operators not implemented are: > > - division of TimeVal by TimeVal > > do you mean you implemented TimeVal*TimeVal ?? The only multiplication and division operators that are implemented are TimeVal*int and TimeVal/int. In the "struct timeval" code there are timeval/timeval and timeval%timeval, which I didn't implement in TimeVal. I am not sure whether those, along with TimeVal*TimeVal are really needed (but I may be wrong here). In any case, if someone needs them, they can be added. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 15:38:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 16:18:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2S0I5lu046394 for ; Thu, 27 Mar 2003 16:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2S0I5fh084673; Thu, 27 Mar 2003 16:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16671; Thu, 27 Mar 2003 16:18:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15748 for ; Thu, 27 Mar 2003 15:38:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2RNcwfh084232; Thu, 27 Mar 2003 15:38:58 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2RNcwAq066626; Thu, 27 Mar 2003 15:38:58 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2RNcwYg066625; Thu, 27 Mar 2003 15:38:58 -0800 (PST) (envelope-from rizzo) Date: Thu, 27 Mar 2003 15:38:58 -0800 From: Luigi Rizzo To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Message-ID: <20030327153858.B66323@xorpc.icir.org> References: <200303272329.h2RNTx1j066536@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200303272329.h2RNTx1j066536@xorpc.icir.org>; from pavlin@icir.org on Thu, Mar 27, 2003 at 03:29:59PM +0000 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Thu, Mar 27, 2003 at 03:29:59PM +0000, Pavlin Radoslavov wrote: ... > The operators not implemented are: > - division of TimeVal by TimeVal do you mean you implemented TimeVal*TimeVal ?? cheers luigi _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 16:42:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 16:43:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2S0h3lu049391 for ; Thu, 27 Mar 2003 16:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2S0h2fh084884 for ; Thu, 27 Mar 2003 16:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17502; Thu, 27 Mar 2003 16:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17493 for ; Thu, 27 Mar 2003 16:42:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2S0gnfh084881 for ; Thu, 27 Mar 2003 16:42:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2S0gnAq073515 for ; Thu, 27 Mar 2003 16:42:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2S0gnLU073514; Thu, 27 Mar 2003 16:42:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303280042.h2S0gnLU073514@xorpc.icir.org> Date: Thu, 27 Mar 2003 16:42:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/27 16:42:49 Modified files: xorp/libxorp/: timeval.hh Log message: * Fix the TimeVal(const double& d) constructor, such that the sec and usec are adjusted if usec >= ONE_MILLION. * Add TimeVal& randomize_uniform(const double& factor) method that applies uniform randomization on the time value in the interval ( curr_value - factor*curr_value, curr_value + factor*curr_value ) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Thu Mar 27 22:50:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Mar 2003 22:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2S6p3lu093198 for ; Thu, 27 Mar 2003 22:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2S6p3fh087543; Thu, 27 Mar 2003 22:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23192; Thu, 27 Mar 2003 22:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA23182 for ; Thu, 27 Mar 2003 22:50:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2S6ohfh087539 for ; Thu, 27 Mar 2003 22:50:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2S6ohAq014382 for ; Thu, 27 Mar 2003 22:50:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2S6ohlg014381; Thu, 27 Mar 2003 22:50:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303280650.h2S6ohlg014381@xorpc.icir.org> Date: Thu, 27 Mar 2003 22:50:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/27 22:50:43 Modified files: xorp/libxorp/: timeval.hh Log message: Fix include files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Fri Mar 28 4:34:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Mar 2003 04:35:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2SCZ5lu037782 for ; Fri, 28 Mar 2003 04:35:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCZ5fh090270 for ; Fri, 28 Mar 2003 04:35:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29739; Fri, 28 Mar 2003 04:35:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29613 for ; Fri, 28 Mar 2003 04:34:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCYLfh090265 for ; Fri, 28 Mar 2003 04:34:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2SCYKAq052781 for ; Fri, 28 Mar 2003 04:34:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2SCYKk2052780; Fri, 28 Mar 2003 04:34:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303281234.h2SCYKk2052780@xorpc.icir.org> Date: Fri, 28 Mar 2003 4:34:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/28 04:34:20 Modified files: xorp/libxorp/: timeval.hh Log message: * Move the definition of all longish TimeVal methods to outside the body of that class. * Fix few things here and there about TimeVal (e.g., avoid using (signed) casting, add more const-ifications, etc). * Add new methods TimeVal::set(sec, usec), TimeVal::clear() and TimeVal::copy_in(timeval) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Fri Mar 28 4:37:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Mar 2003 04:38:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2SCc3lu038149 for ; Fri, 28 Mar 2003 04:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCc2fh090323 for ; Fri, 28 Mar 2003 04:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29830; Fri, 28 Mar 2003 04:38:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29818 for ; Fri, 28 Mar 2003 04:37:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCbLfh090309 for ; Fri, 28 Mar 2003 04:37:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2SCbKAq053227 for ; Fri, 28 Mar 2003 04:37:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2SCbKLI053217; Fri, 28 Mar 2003 04:37:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303281237.h2SCbKLI053217@xorpc.icir.org> Date: Fri, 28 Mar 2003 4:37:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh timer.cc timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/28 04:37:20 Modified files: xorp/libxorp/: eventloop.hh timer.cc timer.hh Log message: * Change the argument type from "struct timeval" to TimeVal for the recently added foo_after() methods. * Add new method "bool TimerNode::time_remaining(TimeVal& remain)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Fri Mar 28 4:41:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Mar 2003 04:42:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2SCg4lu038645 for ; Fri, 28 Mar 2003 04:42:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCg3fh090362 for ; Fri, 28 Mar 2003 04:42:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29924; Fri, 28 Mar 2003 04:42:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id EAA29897 for ; Fri, 28 Mar 2003 04:41:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SCfSfh090360 for ; Fri, 28 Mar 2003 04:41:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2SCfSAq053682 for ; Fri, 28 Mar 2003 04:41:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2SCfS8A053681; Fri, 28 Mar 2003 04:41:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303281241.h2SCfS8A053681@xorpc.icir.org> Date: Fri, 28 Mar 2003 4:41:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/03/28 04:41:28 Modified files: xorp/cli/: cli_client.cc Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Fri Mar 28 6:27:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Mar 2003 06:28:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2SES3lu051225 for ; Fri, 28 Mar 2003 06:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SES3fh091108; Fri, 28 Mar 2003 06:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id GAA01437; Fri, 28 Mar 2003 06:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id GAA01425 for ; Fri, 28 Mar 2003 06:27:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2SERbfh091100 for ; Fri, 28 Mar 2003 06:27:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2SERbAq079525 for ; Fri, 28 Mar 2003 06:27:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2SERbjT079524; Fri, 28 Mar 2003 06:27:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303281427.h2SERbjT079524@xorpc.icir.org> Date: Fri, 28 Mar 2003 6:27:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/28 06:27:36 Modified files: xorp/libxorp/: timer.hh Log message: * Edited the comment for XorpTimer::scheduled() : - * @return true if XorpTimer is associated with a @ref TimerList and - * has an expiry time in the future. + * @return true if the timer has been scheduled, and the callback + * associated with this timer has not been called yet. If the new description is incorrect, please edit it. * Removed the following two methods in XorpTimer, because they are never used, and have questionable value: XorpTimer::initialized() XorpTimer::is_valid() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Sat Mar 29 11:03:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Mar 2003 11:04:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2TJ44lu024707 for ; Sat, 29 Mar 2003 11:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJ43fh009806; Sat, 29 Mar 2003 11:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27481; Sat, 29 Mar 2003 11:04:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27469 for ; Sat, 29 Mar 2003 11:03:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJ3Ffh009804 for ; Sat, 29 Mar 2003 11:03:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2TJ3FAq097553 for ; Sat, 29 Mar 2003 11:03:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2TJ3ECN097552; Sat, 29 Mar 2003 11:03:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303291903.h2TJ3ECN097552@xorpc.icir.org> Date: Sat, 29 Mar 2003 11:03:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/fea/ xrl_target.cc xrl_target.hh xorp/pim/ Makefile.am Makefile.in xrl_pim_node.cc xrl_pim_node.hh xorp/rib/ Makefile.am Makefile.in dummy_register_server.cc dummy_register_server.hh register_server.cc register_server.hh rib_client.cc rib_client.hh rt_tab_register.cc test_register_xrls.cc ...test_rib_client.cc xorp/xrl/interfaces/ Makefile.am Makefile.in rib_client.xif rib_client_xif.cc rib_client_xif.hh xorp/xrl/targets/ Makefile.am Makefile.in bgp.xrls bgp_base.cc bgp_base.hh fea.tgt fea.xrls fea_base.cc fea_base.hh pim.tgt pim.xrls pim_base.cc pim_base.hh ribclient.xrls ribclient_base.cc ...ribclient_base.hh xorp/xrl/interfaces/ fti.xif fti_xif.cc fti_xif.hh xorp/xrl/interfaces/ fea_fti.xif fea_fti_xif.cc fea_fti_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/03/29 11:03:14 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/fea/: xrl_target.cc xrl_target.hh xorp/pim/: Makefile.am Makefile.in xrl_pim_node.cc xrl_pim_node.hh xorp/rib/: Makefile.am Makefile.in dummy_register_server.cc dummy_register_server.hh register_server.cc register_server.hh rib_client.cc rib_client.hh rt_tab_register.cc test_register_xrls.cc test_rib_client.cc xorp/xrl/interfaces/: Makefile.am Makefile.in rib_client.xif rib_client_xif.cc rib_client_xif.hh xorp/xrl/targets/: Makefile.am Makefile.in bgp.xrls bgp_base.cc bgp_base.hh fea.tgt fea.xrls fea_base.cc fea_base.hh pim.tgt pim.xrls pim_base.cc pim_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh Added files: xorp/xrl/interfaces/: fti.xif fti_xif.cc fti_xif.hh Removed files: xorp/xrl/interfaces/: fea_fti.xif fea_fti_xif.cc fea_fti_xif.hh Log message: Changes related to the FTI XRL interface as discusses on Tuesday after the XORP meeting: * Rename xrl/interfaces/fea_fti.xif to fti.xif * Bump-up the FTI XRL version from 0.1 to 0.2 * Add metric:u32, admin_distance:u32 and protocol_origin:txt to the XRL FTI interface: add_entry[4,6], lookup_route[4,6], lookup_entry[4,6] Currently, when the FEA receives add_entry[4,6] XRL, it ignores those three new fields: metric, admin_distance, and protocol_origin. Also, when the FEA recives lookup_route[4,6] or lookup_entry[4,6], in the response it sets metric and admin_distance to (uint32_t)~0, and sets protocol_origin to "NOT_SUPPORTED". Currently, PIM does the same only for protocol_origin. * For consistency, added admin_distance:u32 and protocol_origin:txt to route_info_changed[4,6] in the rib_client XRL interface (that interface already had metric:u32). Currently, when BGP receives route_info_changed[4,6], it ignores the admin_metric and protocol_origin fields. Open question: when the RIB sends route_info_changed[4,6], it actually sets field metric:u32 in the XRL to global_metric() which is actually (_admin_distance << 16) | _metric). Now that there are two fields in the XRL interface: metric and admin_distance, shall we change the metric value in the XRL to be set to the protocol-specific metric(), or shall we keep it set to global_metric()? _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Sat Mar 29 11:22:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Mar 2003 11:23:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2TJN3lu027314 for ; Sat, 29 Mar 2003 11:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJN3fh009942; Sat, 29 Mar 2003 11:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27663; Sat, 29 Mar 2003 11:23:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27650 for ; Sat, 29 Mar 2003 11:22:03 -0800 (PST) Received: from vulture.icir.org (adsl-67-117-79-130.dsl.sntc01.pacbell.net [67.117.79.130]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJM2fh009936; Sat, 29 Mar 2003 11:22:02 -0800 (PST) (envelope-from mjh@vulture.icir.org) Received: from vulture.icir.org (localhost [127.0.0.1]) by vulture.icir.org (8.12.3/8.12.3) with ESMTP id h2TJM2cF028737; Sat, 29 Mar 2003 11:22:02 -0800 (PST) (envelope-from mjh@vulture.icir.org) From: Mark Handley X-Organisation: ICIR To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ... In-reply-to: Your message of "Sat, 29 Mar 2003 11:03:14." <200303291903.h2TJ3ECN097552@xorpc.icir.org> Date: Sat, 29 Mar 2003 11:22:02 -0800 Message-ID: <28736.1048965722@vulture.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > Open question: when the RIB sends route_info_changed[4,6], it actually > sets field metric:u32 in the XRL to global_metric() which is > actually (_admin_distance << 16) | _metric). > Now that there are two fields in the XRL interface: metric and > admin_distance, shall we change the metric value in the XRL > to be set to the protocol-specific metric(), or shall we keep > it set to global_metric()? There are two consistent choices: - have route_info_changed just report global_metric() (as it originally did) - have route_info_changed report the protocol-specific metric and admin distance, but not global_metric(). I'm OK with either, but not with the hybrid. Cheers, Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Sat Mar 29 11:30:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Mar 2003 11:31:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2TJV3lu028272 for ; Sat, 29 Mar 2003 11:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJV3fh010015; Sat, 29 Mar 2003 11:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27738; Sat, 29 Mar 2003 11:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA27726 for ; Sat, 29 Mar 2003 11:30:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2TJUBfh010013 for ; Sat, 29 Mar 2003 11:30:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2TJUBAq097792 for ; Sat, 29 Mar 2003 11:30:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2TJUBfb097791; Sat, 29 Mar 2003 11:30:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303291930.h2TJUBfb097791@xorpc.icir.org> Date: Sat, 29 Mar 2003 11:30:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_client.cc rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/03/29 11:30:11 Modified files: xorp/rib/: rib_client.cc rt_tab_register.cc Log message: Change the value of "metric" in the FTI and rib_client XRL interface to be set by the RIB to metric() rather than to global_metric(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:23 2005 Subject: No subject Sat Mar 29 19:50:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Mar 2003 19:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.3/8.12.3) with ESMTP id h2U3p3lu088695 for ; Sat, 29 Mar 2003 19:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2U3p2fh013400; Sat, 29 Mar 2003 19:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA03967; Sat, 29 Mar 2003 19:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA03957 for ; Sat, 29 Mar 2003 19:50:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.3/8.12.3) with ESMTP id h2U3olfh013397 for ; Sat, 29 Mar 2003 19:50:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id h2U3olAq056906 for ; Sat, 29 Mar 2003 19:50:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id h2U3okA8056905; Sat, 29 Mar 2003 19:50:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303300350.h2U3okA8056905@xorpc.icir.org> Date: Sat, 29 Mar 2003 19:50:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_node_internal_commands.cc cli_node_net.cc xorp/libxorp/ time_slice.cc time_slice.hh timeval.hh xorp/mfea/ mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_unix_comm.cc mfea_unix_comm.hh xrl_mfea_node.cc xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc xorp/mrt/ mifset.cc mifset.hh xorp/pim/ pim_bsr.cc pim_bsr.hh pim_mre.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_proto_hello.cc pim_vif.cc pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/29 19:50:46 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_node_internal_commands.cc cli_node_net.cc xorp/libxorp/: time_slice.cc time_slice.hh timeval.hh xorp/mfea/: mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_unix_comm.cc mfea_unix_comm.hh xrl_mfea_node.cc xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc xorp/mrt/: mifset.cc mifset.hh xorp/pim/: pim_bsr.cc pim_bsr.hh pim_mre.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_proto_hello.cc pim_vif.cc pim_vif.hh Log message: Replace majority of "struct timeval" with TimeVal _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 19:45:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 19:46:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V3k3ZW089989 for ; Sun, 30 Mar 2003 19:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3k29n024354 for ; Sun, 30 Mar 2003 19:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22302; Sun, 30 Mar 2003 19:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22273 for ; Sun, 30 Mar 2003 19:45:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3jK9n024340 for ; Sun, 30 Mar 2003 19:45:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V3jKCO034274 for ; Sun, 30 Mar 2003 19:45:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V3jK0p034273; Sun, 30 Mar 2003 19:45:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310345.h2V3jK0p034273@xorpc.icir.org> Date: Sun, 30 Mar 2003 19:45:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh test_mfea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/03/30 19:45:20 Modified files: xorp/mfea/: mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh test_mfea.cc Log message: Replace the multicast-specific Timer with XorpTimer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 19:46:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 19:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V3l2ZW090147 for ; Sun, 30 Mar 2003 19:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3l29n024362 for ; Sun, 30 Mar 2003 19:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22342; Sun, 30 Mar 2003 19:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22326 for ; Sun, 30 Mar 2003 19:46:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3km9n024360 for ; Sun, 30 Mar 2003 19:46:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V3kmCO034294 for ; Sun, 30 Mar 2003 19:46:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V3kmUH034293; Sun, 30 Mar 2003 19:46:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310346.h2V3kmUH034293@xorpc.icir.org> Date: Sun, 30 Mar 2003 19:46:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in configure_mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_node_cli.cc ...mld6igmp_vif.cc ...mld6igmp_vif.hh ...test_mld6igmp.cc xorp/mld6igmp/ mld6igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/30 19:46:48 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in configure_mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_node_cli.cc mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc Added files: xorp/mld6igmp/: mld6igmp_proto.cc Log message: * Replace the multicast-specific Timer with XorpTimer. * Move and unify some of the protocol-specific processing from igmp_proto.cc and mld6_proto.cc to the new file mld6igmp_proto.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 19:50:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 19:51:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V3p4ZW090827 for ; Sun, 30 Mar 2003 19:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3p49n024390 for ; Sun, 30 Mar 2003 19:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22393; Sun, 30 Mar 2003 19:51:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22386 for ; Sun, 30 Mar 2003 19:51:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3ox9n024388 for ; Sun, 30 Mar 2003 19:50:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V3oxCO034354 for ; Sun, 30 Mar 2003 19:50:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V3ox2T034353; Sun, 30 Mar 2003 19:50:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310350.h2V3ox2T034353@xorpc.icir.org> Date: Sun, 30 Mar 2003 19:50:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/30 19:50:59 Modified files: xorp/mld6igmp/: mld6igmp_proto.cc Log message: Fix a comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 19:57:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 19:58:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V3w3ZW091939 for ; Sun, 30 Mar 2003 19:58:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3w29n024429 for ; Sun, 30 Mar 2003 19:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22488; Sun, 30 Mar 2003 19:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA22472 for ; Sun, 30 Mar 2003 19:57:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V3vf9n024427 for ; Sun, 30 Mar 2003 19:57:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V3vfCO034412 for ; Sun, 30 Mar 2003 19:57:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V3vfBU034411; Sun, 30 Mar 2003 19:57:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310357.h2V3vfBU034411@xorpc.icir.org> Date: Sun, 30 Mar 2003 19:57:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/30 19:57:41 Modified files: xorp/mld6igmp/: mld6igmp_vif.hh Log message: "friend Foo" -> "friend class Foo" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 20:20:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 20:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V4L3ZW095697 for ; Sun, 30 Mar 2003 20:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4L39n024597 for ; Sun, 30 Mar 2003 20:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22828; Sun, 30 Mar 2003 20:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22813 for ; Sun, 30 Mar 2003 20:20:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4KA9n024595 for ; Sun, 30 Mar 2003 20:20:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V4KACO034611 for ; Sun, 30 Mar 2003 20:20:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V4KAKV034610; Sun, 30 Mar 2003 20:20:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310420.h2V4KAKV034610@xorpc.icir.org> Date: Sun, 30 Mar 2003 20:20:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/30 20:20:10 Modified files: xorp/mld6igmp/: mld6igmp_proto.cc Log message: Add forgotten #ifdef HAVE_IPV6 #endif around IPv6-specific code _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 20:26:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 20:27:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V4R3ZW096676 for ; Sun, 30 Mar 2003 20:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4R39n024635; Sun, 30 Mar 2003 20:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22894; Sun, 30 Mar 2003 20:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22880 for ; Sun, 30 Mar 2003 20:26:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4QG9n024629 for ; Sun, 30 Mar 2003 20:26:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V4QGCO038242 for ; Sun, 30 Mar 2003 20:26:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V4QG3j038241; Sun, 30 Mar 2003 20:26:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310426.h2V4QG3j038241@xorpc.icir.org> Date: Sun, 30 Mar 2003 20:26:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/30 20:26:16 Modified files: xorp/mld6igmp/: configure_mld6igmp Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Sun Mar 30 20:27:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Mar 2003 20:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2V4S2ZW096855 for ; Sun, 30 Mar 2003 20:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4S29n024647 for ; Sun, 30 Mar 2003 20:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22922; Sun, 30 Mar 2003 20:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA22915 for ; Sun, 30 Mar 2003 20:27:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2V4Rq9n024644 for ; Sun, 30 Mar 2003 20:27:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2V4RqCO038533 for ; Sun, 30 Mar 2003 20:27:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2V4Rq7g038532; Sun, 30 Mar 2003 20:27:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303310427.h2V4Rq7g038532@xorpc.icir.org> Date: Sun, 30 Mar 2003 20:27:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/30 20:27:52 Modified files: xorp/mfea/: configure_mfea xorp/pim/: configure_pim Log message: Add (commented-out) configuration for interface ed1 for oreo.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 8:10:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 08:11:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2VGB4ZW092599 for ; Mon, 31 Mar 2003 08:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VGB39n031712; Mon, 31 Mar 2003 08:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04755; Mon, 31 Mar 2003 08:11:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04725 for ; Mon, 31 Mar 2003 08:10:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VGAK9n031706 for ; Mon, 31 Mar 2003 08:10:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2VGAKCO023477 for ; Mon, 31 Mar 2003 08:10:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2VGAKSQ023476; Mon, 31 Mar 2003 08:10:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303311610.h2VGAKSQ023476@xorpc.icir.org> Date: Mon, 31 Mar 2003 8:10:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/harness/ Makefile.am Makefile.in xorp/bgp/tools/ Makefile.am Makefile.in xorp/cli/ Makefile.am Makefile.in xorp/libxipc/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/libcomm/ Makefile.am Makefile.in xorp/libproto/ Makefile.am Makefile.in xorp/libxorp/ Makefile.am Makefile.in xorp/mfea/ Makefile.am Makefile.in xorp/mld6igmp/ Makefile.am Makefile.in xorp/mrt/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in xorp/rtrmgr/tools/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in xorp/utils/ Makefile.am Makefile.in xorp/policy/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/policy/ Changes by: hodson@xorpc.icir.org. 03/03/31 08:10:20 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/bgp/harness/: Makefile.am Makefile.in xorp/bgp/tools/: Makefile.am Makefile.in xorp/cli/: Makefile.am Makefile.in xorp/libxipc/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/libcomm/: Makefile.am Makefile.in xorp/libproto/: Makefile.am Makefile.in xorp/libxorp/: Makefile.am Makefile.in xorp/mfea/: Makefile.am Makefile.in xorp/mld6igmp/: Makefile.am Makefile.in xorp/mrt/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in xorp/rtrmgr/tools/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in xorp/utils/: Makefile.am Makefile.in xorp/policy/: Makefile.am Makefile.in Log message: Remove -all-static from linker flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 8:40:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 08:41:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2VGf3ZW099047 for ; Mon, 31 Mar 2003 08:41:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VGf29n031943; Mon, 31 Mar 2003 08:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA05369; Mon, 31 Mar 2003 08:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA05337 for ; Mon, 31 Mar 2003 08:40:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VGe49n031924 for ; Mon, 31 Mar 2003 08:40:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2VGe4CO031080 for ; Mon, 31 Mar 2003 08:40:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2VGe4x5031079; Mon, 31 Mar 2003 08:40:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200303311640.h2VGe4x5031079@xorpc.icir.org> Date: Mon, 31 Mar 2003 8:40:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/03/31 08:40:03 Modified files: xorp/libxorp/: ref_ptr.cc Log message: Use a more conservative pool growth strategy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 10:02:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 10:03:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2VI33ZW010667 for ; Mon, 31 Mar 2003 10:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VI339n032684; Mon, 31 Mar 2003 10:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07050; Mon, 31 Mar 2003 10:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07035 for ; Mon, 31 Mar 2003 10:02:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VI2B9n032678 for ; Mon, 31 Mar 2003 10:02:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2VI2BCO053620 for ; Mon, 31 Mar 2003 10:02:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2VI2Be8053619; Mon, 31 Mar 2003 10:02:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303311802.h2VI2Be8053619@xorpc.icir.org> Date: Mon, 31 Mar 2003 10:02:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/31 10:02:11 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 15:04:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 15:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h2VN53ZW047287 for ; Mon, 31 Mar 2003 15:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VN539n036061; Mon, 31 Mar 2003 15:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14535; Mon, 31 Mar 2003 15:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14522 for ; Mon, 31 Mar 2003 15:04:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h2VN4O9n036050 for ; Mon, 31 Mar 2003 15:04:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h2VN4OCO084096 for ; Mon, 31 Mar 2003 15:04:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h2VN4Oqp084095; Mon, 31 Mar 2003 15:04:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200303312304.h2VN4Oqp084095@xorpc.icir.org> Date: Mon, 31 Mar 2003 15:04:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/03/31 15:04:24 Modified files: xorp/libxorp/: timeval.hh Log message: Add a new method TimeVal::set_max() that sets the time value to its maximum value (~0, ONE_MILLION - 1) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 16:56:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 16:57:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h310v3ZW060767 for ; Mon, 31 Mar 2003 16:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h310v39n037428; Mon, 31 Mar 2003 16:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17335; Mon, 31 Mar 2003 16:57:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA17320 for ; Mon, 31 Mar 2003 16:56:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h310uP9n037426 for ; Mon, 31 Mar 2003 16:56:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h310uPCO095152 for ; Mon, 31 Mar 2003 16:56:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h310uPRG095151; Mon, 31 Mar 2003 16:56:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304010056.h310uPRG095151@xorpc.icir.org> Date: Mon, 31 Mar 2003 16:56:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node_net.cc xorp/libproto/ proto_node.hh xorp/mld6igmp/ mld6igmp_vif.hh xorp/mrt/ .cvsignore Makefile.am Makefile.in max_vifs.h mifset.cc mifset.hh xorp/pim/ pim_bsr.cc pim_bsr.hh pim_config.cc pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_task.hh pim_mrib_table.hh pim_nbr.cc ...pim_nbr.hh ...pim_node_cli.cc ...pim_proto_cand_rp_adv.cc ...pim_proto_hello.cc ...pim_rp.hh ...pim_vif.cc ...pim_vif.hh ...test_pim.cc xorp/mrt/ counter.h test_mtimer.cc timer.c timer.h timer.hh timer2xorp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/03/31 16:56:24 Modified files: xorp/cli/: cli_node.cc cli_node_net.cc xorp/libproto/: proto_node.hh xorp/mld6igmp/: mld6igmp_vif.hh xorp/mrt/: .cvsignore Makefile.am Makefile.in max_vifs.h mifset.cc mifset.hh xorp/pim/: pim_bsr.cc pim_bsr.hh pim_config.cc pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_task.hh pim_mrib_table.hh pim_nbr.cc pim_nbr.hh pim_node_cli.cc pim_proto_cand_rp_adv.cc pim_proto_hello.cc pim_rp.hh pim_vif.cc pim_vif.hh test_pim.cc Removed files: xorp/mrt/: counter.h test_mtimer.cc timer.c timer.h timer.hh timer2xorp.cc Log message: * Replace all remaining multicast-specific Timer instances with XorpTimer * Remove the multicast-specific Timer implementation. * Few methods renaiming inside "pim" (for consistency reason) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Mon Mar 31 18:00:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Mar 2003 18:01:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31214ZW068454 for ; Mon, 31 Mar 2003 18:01:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h312149n038023; Mon, 31 Mar 2003 18:01:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA18641; Mon, 31 Mar 2003 18:01:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA18613 for ; Mon, 31 Mar 2003 18:00:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h312049n038002 for ; Mon, 31 Mar 2003 18:00:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31204CO018257 for ; Mon, 31 Mar 2003 18:00:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31204hH018256; Mon, 31 Mar 2003 18:00:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304010200.h31204hH018256@xorpc.icir.org> Date: Mon, 31 Mar 2003 18:00:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_internal_commands.cc xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/03/31 18:00:04 Modified files: xorp/cli/: cli_node_internal_commands.cc xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Variables renaming: "foo_timeval" -> "foo_tv" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 10:22:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 10:23:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31IN3ZW095152 for ; Tue, 1 Apr 2003 10:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31IN39n048080; Tue, 1 Apr 2003 10:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06783; Tue, 1 Apr 2003 10:23:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06758 for ; Tue, 1 Apr 2003 10:22:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31IMK9n048075 for ; Tue, 1 Apr 2003 10:22:20 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31IMKCO037788 for ; Tue, 1 Apr 2003 10:22:20 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31IMKoS037787; Tue, 1 Apr 2003 10:22:20 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304011822.h31IMKoS037787@xorpc.icir.org> Date: Tue, 1 Apr 2003 10:22:20 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: jcardona@xorpc.icir.org. 03/04/01 10:22:20 Modified files: xorp/devnotes/: WORKPLAN Log message: Added SNMP tasks _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 10:38:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 10:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31Id3ZW001292 for ; Tue, 1 Apr 2003 10:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Id39n048214; Tue, 1 Apr 2003 10:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07318; Tue, 1 Apr 2003 10:39:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07300 for ; Tue, 1 Apr 2003 10:38:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Ics9n048212 for ; Tue, 1 Apr 2003 10:38:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31IcsCO037911 for ; Tue, 1 Apr 2003 10:38:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31Icshf037910; Tue, 1 Apr 2003 10:38:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304011838.h31Icshf037910@xorpc.icir.org> Date: Tue, 1 Apr 2003 10:38:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 10:38:54 Modified files: xorp/libxorp/: trie.hh Log message: Add has_payload() to iterator. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 11:06:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 11:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31J73ZW005953 for ; Tue, 1 Apr 2003 11:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31J739n048479; Tue, 1 Apr 2003 11:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08213; Tue, 1 Apr 2003 11:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08178 for ; Tue, 1 Apr 2003 11:06:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31J6F9n048471 for ; Tue, 1 Apr 2003 11:06:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31J6FCO038463 for ; Tue, 1 Apr 2003 11:06:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31J6Fio038462; Tue, 1 Apr 2003 11:06:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304011906.h31J6Fio038462@xorpc.icir.org> Date: Tue, 1 Apr 2003 11:06:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: atanu@xorpc.icir.org. 03/04/01 11:06:14 Modified files: xorp/devnotes/: WORKPLAN Log message: Start of FEA plan. Update BGP plan. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 13:50:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 13:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31Lp3ZW028040 for ; Tue, 1 Apr 2003 13:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Lp29n049973 for ; Tue, 1 Apr 2003 13:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12366; Tue, 1 Apr 2003 13:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12331 for ; Tue, 1 Apr 2003 13:50:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Lo99n049969 for ; Tue, 1 Apr 2003 13:50:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31Lo9CO073113 for ; Tue, 1 Apr 2003 13:50:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31Lo8Vc073112; Tue, 1 Apr 2003 13:50:08 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304012150.h31Lo8Vc073112@xorpc.icir.org> Date: Tue, 1 Apr 2003 13:50:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 13:50:08 Modified files: xorp/libxorp/: ref_ptr.cc Log message: Fix bug in decrement of cref_ptr counter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 13:50:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 13:51:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31Lp5ZW028064 for ; Tue, 1 Apr 2003 13:51:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Lp59n049979; Tue, 1 Apr 2003 13:51:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12384; Tue, 1 Apr 2003 13:51:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA12345 for ; Tue, 1 Apr 2003 13:50:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Loj9n049971 for ; Tue, 1 Apr 2003 13:50:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31LojCO073155 for ; Tue, 1 Apr 2003 13:50:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31LojxW073154; Tue, 1 Apr 2003 13:50:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304012150.h31LojxW073154@xorpc.icir.org> Date: Tue, 1 Apr 2003 13:50:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Makefile.in Makefile.am xorp/libxorp/ test_ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 13:50:45 Modified files: xorp/libxorp/: .cvsignore Makefile.in Makefile.am Added files: xorp/libxorp/: test_ref_ptr.cc Log message: Add test for ref_ptr classes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 14:01:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 14:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31M23ZW029421 for ; Tue, 1 Apr 2003 14:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31M239n050098; Tue, 1 Apr 2003 14:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12737; Tue, 1 Apr 2003 14:02:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12690 for ; Tue, 1 Apr 2003 14:01:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31M119n050092 for ; Tue, 1 Apr 2003 14:01:01 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31M11CO075997 for ; Tue, 1 Apr 2003 14:01:01 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31M10vx075996; Tue, 1 Apr 2003 14:01:00 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304012201.h31M10vx075996@xorpc.icir.org> Date: Tue, 1 Apr 2003 14:01:00 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: mjh@xorpc.icir.org. 03/04/01 14:01:00 Modified files: xorp/devnotes/: WORKPLAN Log message: Add work items for RIB and RTRMGR _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 15:47:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 15:48:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h31Nm3ZW042050 for ; Tue, 1 Apr 2003 15:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31Nm39n051054; Tue, 1 Apr 2003 15:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15140; Tue, 1 Apr 2003 15:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA15125 for ; Tue, 1 Apr 2003 15:47:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h31NlM9n051052 for ; Tue, 1 Apr 2003 15:47:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h31NlMCO076669 for ; Tue, 1 Apr 2003 15:47:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h31NlMhI076668; Tue, 1 Apr 2003 15:47:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304012347.h31NlMhI076668@xorpc.icir.org> Date: Tue, 1 Apr 2003 15:47:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/04/01 15:47:22 Modified files: xorp/devnotes/: WORKPLAN Log message: Update the work plan for release-0.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:24 2005 Subject: No subject Tue Apr 1 16:36:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 16:37:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h320b2ZW047962 for ; Tue, 1 Apr 2003 16:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320b29n051440; Tue, 1 Apr 2003 16:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16373; Tue, 1 Apr 2003 16:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16358 for ; Tue, 1 Apr 2003 16:36:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320aj9n051438 for ; Tue, 1 Apr 2003 16:36:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h320ajCO085409 for ; Tue, 1 Apr 2003 16:36:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h320ajkc085408; Tue, 1 Apr 2003 16:36:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304020036.h320ajkc085408@xorpc.icir.org> Date: Tue, 1 Apr 2003 16:36:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: mjh@xorpc.icir.org. 03/04/01 16:36:44 Modified files: xorp/devnotes/: WORKPLAN Log message: Add some longer term tasks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 16:43:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 16:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h320i3ZW048829 for ; Tue, 1 Apr 2003 16:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320i39n051506; Tue, 1 Apr 2003 16:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16668; Tue, 1 Apr 2003 16:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16646 for ; Tue, 1 Apr 2003 16:43:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320hY9n051502 for ; Tue, 1 Apr 2003 16:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h320hYCO086396 for ; Tue, 1 Apr 2003 16:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h320hYGS086395; Tue, 1 Apr 2003 16:43:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304020043.h320hYGS086395@xorpc.icir.org> Date: Tue, 1 Apr 2003 16:43:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipvx.hh ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/01 16:43:34 Modified files: xorp/libxorp/: ipvx.hh ipvx.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 16:44:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 16:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h320j3ZW048964 for ; Tue, 1 Apr 2003 16:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320j29n051519; Tue, 1 Apr 2003 16:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16719; Tue, 1 Apr 2003 16:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16683 for ; Tue, 1 Apr 2003 16:44:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h320iM9n051512 for ; Tue, 1 Apr 2003 16:44:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h320iMCO086523 for ; Tue, 1 Apr 2003 16:44:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h320iMPX086522; Tue, 1 Apr 2003 16:44:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304020044.h320iMPX086522@xorpc.icir.org> Date: Tue, 1 Apr 2003 16:44:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.cc ipv4.hh ipv6.cc ipv6.hh test_ipv4.cc test_ipv6.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/01 16:44:22 Modified files: xorp/libxorp/: ipv4.cc ipv4.hh ipv6.cc ipv6.hh test_ipv4.cc test_ipv6.cc Log message: * Add various copy_in() and copy_out() methods to IPv4 and IPv6 (similar to IPvX) * Add the appropriate tests for the new methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 18:53:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 18:54:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h322s4ZW064468 for ; Tue, 1 Apr 2003 18:54:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h322s39n052522 for ; Tue, 1 Apr 2003 18:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA19337; Tue, 1 Apr 2003 18:54:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA19326 for ; Tue, 1 Apr 2003 18:53:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h322rq9n052520 for ; Tue, 1 Apr 2003 18:53:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h322rqCO009009 for ; Tue, 1 Apr 2003 18:53:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h322rqCc009008; Tue, 1 Apr 2003 18:53:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304020253.h322rqCc009008@xorpc.icir.org> Date: Tue, 1 Apr 2003 18:53:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh xorp/cli/ cli_node_net.cc xorp/libxipc/ finder_client.cc xuid.cc xorp/libxorp/ eventloop.cc eventloop.hh heap.cc heap.hh selector.cc selector.hh test_timer.cc time_slice.cc time_slice.hh timer.cc timer.hh timeval.hh xorp/mfea/ mfea_dataflow.cc mfea_node_cli.cc xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/04/01 18:53:52 Modified files: xorp/bgp/: peer.cc peer.hh xorp/cli/: cli_node_net.cc xorp/libxipc/: finder_client.cc xuid.cc xorp/libxorp/: eventloop.cc eventloop.hh heap.cc heap.hh selector.cc selector.hh test_timer.cc time_slice.cc time_slice.hh timer.cc timer.hh timeval.hh xorp/mfea/: mfea_dataflow.cc mfea_node_cli.cc xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh Log message: * Replace "struct timeval" with TimeVal (in the Xorp timer and eventloop code, and almost everywhere else in the rest of the code). * Remove the "struct timeval" stuff in libxorp/timeval.hh : mk_timeval(), the operators, etc. * Move TimerList::system_gettimeofday() to the list of public methods. * Replace most of gettimeofday(&now, NULL) where "now" has type (struct timeval) with TimerList::system_gettimeofday(&now) where "now" has type (TimeVal). Note that this is probably an intermediate solution before we settle-down down on the particular interface we want to use. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 20:41:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 20:42:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h324g2ZW077446 for ; Tue, 1 Apr 2003 20:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324g29n053341 for ; Tue, 1 Apr 2003 20:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20766; Tue, 1 Apr 2003 20:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20751 for ; Tue, 1 Apr 2003 20:41:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324fC9n053334 for ; Tue, 1 Apr 2003 20:41:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h324fCCO019162 for ; Tue, 1 Apr 2003 20:41:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h324fCvF019161; Tue, 1 Apr 2003 20:41:12 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304020441.h324fCvF019161@xorpc.icir.org> Date: Tue, 1 Apr 2003 20:41:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc ref_ptr.hh trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 20:41:12 Modified files: xorp/libxorp/: heap.cc ref_ptr.hh trie.hh Log message: Remove dump statement in TrieNode::next (v. expensive). Determine whether next() would spill above root without calling IPNet::contains() (m. expensive). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 20:44:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 20:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h324j3ZW077807 for ; Tue, 1 Apr 2003 20:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324j29n053354 for ; Tue, 1 Apr 2003 20:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20816; Tue, 1 Apr 2003 20:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20798 for ; Tue, 1 Apr 2003 20:44:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324iH9n053349 for ; Tue, 1 Apr 2003 20:44:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h324iHCO019569 for ; Tue, 1 Apr 2003 20:44:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h324iHSr019568; Tue, 1 Apr 2003 20:44:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304020444.h324iHSr019568@xorpc.icir.org> Date: Tue, 1 Apr 2003 20:44:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 20:44:17 Modified files: xorp/libxorp/: ref_ptr.hh Log message: Back out last (unintentional) commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Tue Apr 1 20:46:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Apr 2003 20:47:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h324l3ZW078068 for ; Tue, 1 Apr 2003 20:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324l29n053385 for ; Tue, 1 Apr 2003 20:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20860; Tue, 1 Apr 2003 20:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA20850 for ; Tue, 1 Apr 2003 20:46:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h324kr9n053383 for ; Tue, 1 Apr 2003 20:46:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h324krCO019984 for ; Tue, 1 Apr 2003 20:46:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h324kr9x019983; Tue, 1 Apr 2003 20:46:53 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304020446.h324kr9x019983@xorpc.icir.org> Date: Tue, 1 Apr 2003 20:46:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/01 20:46:53 Modified files: xorp/libxorp/: heap.cc Log message: Back out last (unintentional) commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 9:10:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 09:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32HB3ZW081193 for ; Wed, 2 Apr 2003 09:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32HB39n061267 for ; Wed, 2 Apr 2003 09:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA04766; Wed, 2 Apr 2003 09:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA04727 for ; Wed, 2 Apr 2003 09:10:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32HAf9n061263 for ; Wed, 2 Apr 2003 09:10:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32HAfCO080497 for ; Wed, 2 Apr 2003 09:10:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32HAfZC080496; Wed, 2 Apr 2003 09:10:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304021710.h32HAfZC080496@xorpc.icir.org> Date: Wed, 2 Apr 2003 9:10:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc timer.cc timer.hh timeval.hh xorp/rtrmgr/ conf_tree_node.cc xorp/pim/ pim_mre_join_prune.cc pim_mre_rpf.cc pim_vif.cc xorp/mfea/ mfea_dataflow.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mfea/ Changes by: hodson@xorpc.icir.org. 03/04/02 09:10:41 Modified files: xorp/libxorp/: selector.cc timer.cc timer.hh timeval.hh xorp/rtrmgr/: conf_tree_node.cc xorp/pim/: pim_mre_join_prune.cc pim_mre_rpf.cc pim_vif.cc xorp/mfea/: mfea_dataflow.cc Log message: Fix SelectorList::select that broke the eventloop entirely. Recent TimeVal changes cause select(2) to be called with an invalid timeval argument. The eventloop will bomb if this error occurs in future. Change type of time unit representations in TimeVal from uint32_t to int32_t. Replace TimeVal::zero() and TimeVal::set_max(), with the less cryptic static methods TimeVal::ZERO(), TimeVal::MAXIMUM(), TimeVal::MINIMUM(). The latter allow for assignment and comparison against known special values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 10:12:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 10:13:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32ID6ZW088611 for ; Wed, 2 Apr 2003 10:13:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32ID69n061909 for ; Wed, 2 Apr 2003 10:13:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06577; Wed, 2 Apr 2003 10:13:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06563 for ; Wed, 2 Apr 2003 10:12:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32ICr9n061907 for ; Wed, 2 Apr 2003 10:12:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32ICrCO082482 for ; Wed, 2 Apr 2003 10:12:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32ICrew082481; Wed, 2 Apr 2003 10:12:53 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304021812.h32ICrew082481@xorpc.icir.org> Date: Wed, 2 Apr 2003 10:12:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 10:12:53 Modified files: xorp/libxorp/: timer.hh Log message: kdoc nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 10:14:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 10:15:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32IF3ZW088856 for ; Wed, 2 Apr 2003 10:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32IF29n061928 for ; Wed, 2 Apr 2003 10:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06660; Wed, 2 Apr 2003 10:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA06618 for ; Wed, 2 Apr 2003 10:14:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32IEH9n061919 for ; Wed, 2 Apr 2003 10:14:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32IEHCO082506 for ; Wed, 2 Apr 2003 10:14:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32IEHn1082505; Wed, 2 Apr 2003 10:14:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304021814.h32IEHn1082505@xorpc.icir.org> Date: Wed, 2 Apr 2003 10:14:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 10:14:16 Modified files: xorp/libxorp/: timeval.hh Log message: Add external TimeVal generator methods: - TimeVal random_uniform(const TimeVal& lower, const TimeVal& upper); - TimeVal random_uniform(const TimeVal& upper); - TimeVal positive_random_uniform(const TimeVal& center, const double& factor) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 10:57:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 10:58:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Iw2ZW094042 for ; Wed, 2 Apr 2003 10:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Iw29n062353 for ; Wed, 2 Apr 2003 10:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07564; Wed, 2 Apr 2003 10:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA07546 for ; Wed, 2 Apr 2003 10:57:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Iv39n062344 for ; Wed, 2 Apr 2003 10:57:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32Iv2CO083029 for ; Wed, 2 Apr 2003 10:57:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32Iv2Bm083028; Wed, 2 Apr 2003 10:57:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304021857.h32Iv2Bm083028@xorpc.icir.org> Date: Wed, 2 Apr 2003 10:57:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh xorp/pim/ pim_bsr.cc pim_mre_register.cc pim_proto_hello.cc pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/02 10:57:02 Modified files: xorp/libxorp/: timeval.hh xorp/pim/: pim_bsr.cc pim_mre_register.cc pim_proto_hello.cc pim_vif.cc Log message: Remove the deprecated TimeVal::randomize_uniform() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 11:44:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 11:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Jj3ZW099915 for ; Wed, 2 Apr 2003 11:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Jj29n062775 for ; Wed, 2 Apr 2003 11:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08919; Wed, 2 Apr 2003 11:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA08911 for ; Wed, 2 Apr 2003 11:44:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Jik9n062770 for ; Wed, 2 Apr 2003 11:44:46 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32JijCO086901 for ; Wed, 2 Apr 2003 11:44:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32Jijej086900; Wed, 2 Apr 2003 11:44:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304021944.h32Jijej086900@xorpc.icir.org> Date: Wed, 2 Apr 2003 11:44:45 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_decision.cc test_dump.cc ...test_filter.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/04/02 11:44:45 Modified files: xorp/bgp/: dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_decision.cc test_dump.cc test_filter.cc test_next_hop_resolver.cc test_nhlookup.cc Log message: Simple change to retransmit "register interest" messages from NextHopResolver to RIB. All the rest of the changes are to get access to the TimerList from the eventloop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 11:51:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 11:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Jq2ZW001007 for ; Wed, 2 Apr 2003 11:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Jq29n062851 for ; Wed, 2 Apr 2003 11:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09095; Wed, 2 Apr 2003 11:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09077 for ; Wed, 2 Apr 2003 11:51:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32JpF9n062843 for ; Wed, 2 Apr 2003 11:51:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32JpFCO087808 for ; Wed, 2 Apr 2003 11:51:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32JpFaw087807; Wed, 2 Apr 2003 11:51:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304021951.h32JpFaw087807@xorpc.icir.org> Date: Wed, 2 Apr 2003 11:51:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc xorp/pim/ pim_mre_join_prune.cc pim_mre_register.cc pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 03/04/02 11:51:15 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc xorp/pim/: pim_mre_join_prune.cc pim_mre_register.cc pim_vif.cc Log message: TimeVal::set -> TimeVal::operator= _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 11:59:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 12:00:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32K05ZW002073 for ; Wed, 2 Apr 2003 12:00:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32K049n062938 for ; Wed, 2 Apr 2003 12:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09302; Wed, 2 Apr 2003 12:00:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA09279 for ; Wed, 2 Apr 2003 11:59:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32JxF9n062928 for ; Wed, 2 Apr 2003 11:59:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32JxFCO088088 for ; Wed, 2 Apr 2003 11:59:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32JxFlY088087; Wed, 2 Apr 2003 11:59:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304021959.h32JxFlY088087@xorpc.icir.org> Date: Wed, 2 Apr 2003 11:59:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ time_slice.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 11:59:14 Modified files: xorp/libxorp/: time_slice.cc Log message: TimeVal::set -> TimeVal::operator= _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 12:02:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 12:03:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32K33ZW002539 for ; Wed, 2 Apr 2003 12:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32K339n062982; Wed, 2 Apr 2003 12:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09417; Wed, 2 Apr 2003 12:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09398 for ; Wed, 2 Apr 2003 12:02:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32K2k9n062980 for ; Wed, 2 Apr 2003 12:02:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32K2kCO088194 for ; Wed, 2 Apr 2003 12:02:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32K2kcs088193; Wed, 2 Apr 2003 12:02:46 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304022002.h32K2kcs088193@xorpc.icir.org> Date: Wed, 2 Apr 2003 12:02:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 12:02:46 Modified files: xorp/libxorp/: timeval.hh Log message: o Add explicit assignment operator (just for clarity). o Remove set() method as it's equivalent to assigment operator. o Add lh int and double TimeVal multiply operators. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 12:03:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 12:04:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32K44ZW002665 for ; Wed, 2 Apr 2003 12:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32K439n062994; Wed, 2 Apr 2003 12:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09461; Wed, 2 Apr 2003 12:04:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA09443 for ; Wed, 2 Apr 2003 12:03:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32K3a9n062992 for ; Wed, 2 Apr 2003 12:03:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32K3aCO088223 for ; Wed, 2 Apr 2003 12:03:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32K3aiK088222; Wed, 2 Apr 2003 12:03:36 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304022003.h32K3aiK088222@xorpc.icir.org> Date: Wed, 2 Apr 2003 12:03:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Makefile.am Makefile.in xorp/libxorp/ test_timeval.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 12:03:36 Modified files: xorp/libxorp/: .cvsignore Makefile.am Makefile.in Added files: xorp/libxorp/: test_timeval.cc Log message: Add rudimentary test of TimeVal class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 12:34:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 12:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32KZ3ZW011974 for ; Wed, 2 Apr 2003 12:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32KZ39n063313; Wed, 2 Apr 2003 12:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10215; Wed, 2 Apr 2003 12:35:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA10202 for ; Wed, 2 Apr 2003 12:34:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32KYd9n063308 for ; Wed, 2 Apr 2003 12:34:39 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32KYdCO093143 for ; Wed, 2 Apr 2003 12:34:39 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32KYdOS093142; Wed, 2 Apr 2003 12:34:39 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304022034.h32KYdOS093142@xorpc.icir.org> Date: Wed, 2 Apr 2003 12:34:39 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_decision.cc test_dump.cc ...test_filter.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/04/02 12:34:39 Modified files: xorp/bgp/: dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_decision.cc test_dump.cc test_filter.cc test_next_hop_resolver.cc test_nhlookup.cc Log message: Move NextHopResolver retransmit timer to be a list of XorpTimers. Add retransmission to deregistering nexthops. Replace passing TimerList with passing EventLoop (mostly for stylistic reasons.) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 14:16:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 14:17:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32MH3ZW024298 for ; Wed, 2 Apr 2003 14:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32MH39n064276; Wed, 2 Apr 2003 14:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12676; Wed, 2 Apr 2003 14:17:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12654 for ; Wed, 2 Apr 2003 14:16:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32MGN9n064272 for ; Wed, 2 Apr 2003 14:16:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32MGNCO011225 for ; Wed, 2 Apr 2003 14:16:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32MGN8v011224; Wed, 2 Apr 2003 14:16:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022216.h32MGN8v011224@xorpc.icir.org> Date: Wed, 2 Apr 2003 14:16:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/04/02 14:16:23 Modified files: xorp/bgp/: peer.cc Log message: Use EventLoop::current_time() to get current time instead of TimerList::system_gettimeofday() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 14:19:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 14:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32MK2ZW024658 for ; Wed, 2 Apr 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32MK29n064301; Wed, 2 Apr 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12751; Wed, 2 Apr 2003 14:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA12733 for ; Wed, 2 Apr 2003 14:19:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32MJ09n064289 for ; Wed, 2 Apr 2003 14:19:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32MJ0CO011346 for ; Wed, 2 Apr 2003 14:19:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32MJ0m7011345; Wed, 2 Apr 2003 14:19:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022219.h32MJ0m7011345@xorpc.icir.org> Date: Wed, 2 Apr 2003 14:19:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh coord.cc peer.cc peer.hh test_peer.cc trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/04/02 14:19:00 Modified files: xorp/bgp/harness/: command.cc command.hh coord.cc peer.cc peer.hh test_peer.cc trie.cc trie.hh Log message: * Replace "timeval" with "TimeVal" * Replace gettimeofday() with EventLoop::current_time() * Pass a reference to the EventLoop when needed to call EventLoop::current_time() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:25 2005 Subject: No subject Wed Apr 2 14:48:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 14:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Mn3ZW030663 for ; Wed, 2 Apr 2003 14:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Mn29n064571; Wed, 2 Apr 2003 14:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13312; Wed, 2 Apr 2003 14:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13296 for ; Wed, 2 Apr 2003 14:48:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Mmb9n064569 for ; Wed, 2 Apr 2003 14:48:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32MmbCO011684 for ; Wed, 2 Apr 2003 14:48:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32MmbQn011683; Wed, 2 Apr 2003 14:48:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022248.h32MmbQn011683@xorpc.icir.org> Date: Wed, 2 Apr 2003 14:48:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/04/02 14:48:37 Modified files: xorp/cli/: cli_node_net.cc Log message: Replace TimerList::system_gettimeofday() with EventLoop::current_time() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 14:49:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 14:50:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Mo3ZW030796 for ; Wed, 2 Apr 2003 14:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Mo39n064588; Wed, 2 Apr 2003 14:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13347; Wed, 2 Apr 2003 14:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13325 for ; Wed, 2 Apr 2003 14:49:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32MnD9n064577 for ; Wed, 2 Apr 2003 14:49:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32MnDCO011722 for ; Wed, 2 Apr 2003 14:49:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32MnDot011721; Wed, 2 Apr 2003 14:49:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022249.h32MnDot011721@xorpc.icir.org> Date: Wed, 2 Apr 2003 14:49:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_dataflow.cc mfea_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/02 14:49:13 Modified files: xorp/mfea/: mfea_dataflow.cc mfea_node_cli.cc Log message: Replace TimerList::system_gettimeofday() with EventLoop::current_time() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 14:58:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 14:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Mx3ZW033991 for ; Wed, 2 Apr 2003 14:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Mx39n064689; Wed, 2 Apr 2003 14:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13530; Wed, 2 Apr 2003 14:59:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA13520 for ; Wed, 2 Apr 2003 14:58:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Mwx9n064686 for ; Wed, 2 Apr 2003 14:58:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32MwxCO011888 for ; Wed, 2 Apr 2003 14:58:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32MwxiL011887; Wed, 2 Apr 2003 14:58:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304022258.h32MwxiL011887@xorpc.icir.org> Date: Wed, 2 Apr 2003 14:58:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in xorp/libxipc/ Makefile.am Makefile.in finder_server.hh test_lemming.cc test_xrl_router.cc xrl_router.cc xrl_router.hh xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc xorp/rib/ test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/ main_rtrmgr.cc xorp/xrl/tests/ test_generated.cc xorp/cli/ test_cli.cc xorp/libxipc/ finder.cc finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_msg.cc finder_msg.hh finder_server.cc finder_transport.cc finder_transport.hh ...test_finder_client.cc ...test_finder_client2.cc ...test_finder_ipc.cc ...test_finder_ipc2.cc ...test_finder_msg.cc ...test_finder_transport.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/ Changes by: hodson@xorpc.icir.org. 03/04/02 14:58:59 Modified files: ./: acconfig.h config.h.in configure configure.in xorp/libxipc/: Makefile.am Makefile.in finder_server.hh test_lemming.cc test_xrl_router.cc xrl_router.cc xrl_router.hh xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc xorp/rib/: test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/: main_rtrmgr.cc xorp/xrl/tests/: test_generated.cc xorp/cli/: test_cli.cc Removed files: xorp/libxipc/: finder.cc finder_client.cc finder_client.hh finder_ipc.cc finder_ipc.hh finder_msg.cc finder_msg.hh finder_server.cc finder_transport.cc finder_transport.hh test_finder_client.cc test_finder_client2.cc test_finder_ipc.cc test_finder_ipc2.cc test_finder_msg.cc test_finder_transport.cc Log message: Remove initial Finder code and conditional code paths that allowed newer and older code to run. Newer code needs to be expanded in ways that are not going to be backported so compatibility is mute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 15:11:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 15:12:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32NC3ZW040199 for ; Wed, 2 Apr 2003 15:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32NC39n064844; Wed, 2 Apr 2003 15:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA13857; Wed, 2 Apr 2003 15:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA13844 for ; Wed, 2 Apr 2003 15:11:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32NBs9n064842 for ; Wed, 2 Apr 2003 15:11:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32NBrCO012314 for ; Wed, 2 Apr 2003 15:11:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32NBrLc012313; Wed, 2 Apr 2003 15:11:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022311.h32NBrLc012313@xorpc.icir.org> Date: Wed, 2 Apr 2003 15:11:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/02 15:11:53 Modified files: xorp/pim/: test_pim.cc Log message: Nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 15:51:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 15:52:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h32Nq3ZW046049 for ; Wed, 2 Apr 2003 15:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Nq39n065252; Wed, 2 Apr 2003 15:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14900; Wed, 2 Apr 2003 15:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA14872 for ; Wed, 2 Apr 2003 15:51:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h32Np69n065247 for ; Wed, 2 Apr 2003 15:51:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h32Np6CO016756 for ; Wed, 2 Apr 2003 15:51:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h32Np6mI016755; Wed, 2 Apr 2003 15:51:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304022351.h32Np6mI016755@xorpc.icir.org> Date: Wed, 2 Apr 2003 15:51:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/04/02 15:51:05 Modified files: xorp/rib/: rib_client.cc Log message: MacOSX compilation fix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 16:11:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 16:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h330C2ZW048445 for ; Wed, 2 Apr 2003 16:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330C29n065454; Wed, 2 Apr 2003 16:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15277; Wed, 2 Apr 2003 16:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15267 for ; Wed, 2 Apr 2003 16:11:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330Bv9n065451 for ; Wed, 2 Apr 2003 16:11:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h330BvCO016910 for ; Wed, 2 Apr 2003 16:11:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h330BvBw016909; Wed, 2 Apr 2003 16:11:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304030011.h330BvBw016909@xorpc.icir.org> Date: Wed, 2 Apr 2003 16:11:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_rawsock4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/04/02 16:11:57 Modified files: xorp/fea/: test_rawsock4.cc Log message: MacOSX compilation fix _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 16:24:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 16:25:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h330P3ZW049993 for ; Wed, 2 Apr 2003 16:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330P39n065544; Wed, 2 Apr 2003 16:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15548; Wed, 2 Apr 2003 16:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA15522 for ; Wed, 2 Apr 2003 16:24:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330O39n065537 for ; Wed, 2 Apr 2003 16:24:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h330O2CO017325 for ; Wed, 2 Apr 2003 16:24:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h330O2ro017324; Wed, 2 Apr 2003 16:24:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304030024.h330O2ro017324@xorpc.icir.org> Date: Wed, 2 Apr 2003 16:24:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc xorp/rib/ test_rib_xrls.cc xorp/xrl/tests/ test_generated.cc xorp/rtrmgr/ main_rtrmgr.cc xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/ Changes by: hodson@xorpc.icir.org. 03/04/02 16:24:02 Modified files: xorp/pim/: test_pim.cc xorp/rib/: test_rib_xrls.cc xorp/xrl/tests/: test_generated.cc xorp/rtrmgr/: main_rtrmgr.cc xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/cli/: test_cli.cc Log message: Remove references to TestFinderServer. Add back appropriate exception handling for newer finder code in places that used to check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Wed Apr 2 16:58:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Apr 2003 16:59:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h330x3ZW054061 for ; Wed, 2 Apr 2003 16:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330x39n065860; Wed, 2 Apr 2003 16:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16331; Wed, 2 Apr 2003 16:59:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA16319 for ; Wed, 2 Apr 2003 16:58:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h330wW9n065857 for ; Wed, 2 Apr 2003 16:58:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h330wWCO028061 for ; Wed, 2 Apr 2003 16:58:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h330wWPv028058; Wed, 2 Apr 2003 16:58:32 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304030058.h330wWPv028058@xorpc.icir.org> Date: Wed, 2 Apr 2003 16:58:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/02 16:58:32 Modified files: xorp/libxorp/: trie.hh Log message: Add back IPNet::contains() check to TrieNode::next. Former commit changed semantics slightly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 8:08:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 08:09:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h33G92ZW075255 for ; Thu, 3 Apr 2003 08:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33G929n073176 for ; Thu, 3 Apr 2003 08:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA01991; Thu, 3 Apr 2003 08:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA01979 for ; Thu, 3 Apr 2003 08:08:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33G8N9n073170 for ; Thu, 3 Apr 2003 08:08:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h33G8MCO035766 for ; Thu, 3 Apr 2003 08:08:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h33G8MU0035765; Thu, 3 Apr 2003 08:08:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304031608.h33G8MU0035765@xorpc.icir.org> Date: Thu, 3 Apr 2003 8:08:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_lemming.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/03 08:08:22 Modified files: xorp/libxipc/: test_lemming.cc Log message: s/TestFinderServer/FinderNGServer/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 11:03:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 11:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h33J43ZW097668 for ; Thu, 3 Apr 2003 11:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33J429n076252 for ; Thu, 3 Apr 2003 11:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06051; Thu, 3 Apr 2003 11:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06037 for ; Thu, 3 Apr 2003 11:03:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33J3U9n076241 for ; Thu, 3 Apr 2003 11:03:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h33J3UCO070720 for ; Thu, 3 Apr 2003 11:03:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h33J3ULC070719; Thu, 3 Apr 2003 11:03:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304031903.h33J3ULC070719@xorpc.icir.org> Date: Thu, 3 Apr 2003 11:03:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/03 11:03:30 Modified files: xorp/libxorp/: heap.cc Log message: Put verify in pop_obj into DBG section so it's not called in normal operation. When the heap gets large (few thousand entries), the verify call cripples performance across the board (133MHz 486--1.8GHz P4). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 11:04:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 11:05:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h33J53ZW097803 for ; Thu, 3 Apr 2003 11:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33J539n076271 for ; Thu, 3 Apr 2003 11:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06093; Thu, 3 Apr 2003 11:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06070 for ; Thu, 3 Apr 2003 11:04:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33J4X9n076263 for ; Thu, 3 Apr 2003 11:04:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h33J4XCO070761 for ; Thu, 3 Apr 2003 11:04:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h33J4Xdw070760; Thu, 3 Apr 2003 11:04:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200304031904.h33J4Xdw070760@xorpc.icir.org> Date: Thu, 3 Apr 2003 11:04:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/03 11:04:33 Modified files: xorp/libxorp/: trie.hh Log message: Don't do any string operations unless debugging - majority cost in node insertion and erasure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 11:12:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 11:13:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h33JD3ZW098793 for ; Thu, 3 Apr 2003 11:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33JD39n076374 for ; Thu, 3 Apr 2003 11:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06302; Thu, 3 Apr 2003 11:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06285 for ; Thu, 3 Apr 2003 11:12:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33JCM9n076368 for ; Thu, 3 Apr 2003 11:12:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h33JCLCO070889 for ; Thu, 3 Apr 2003 11:12:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h33JCLXZ070888; Thu, 3 Apr 2003 11:12:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304031912.h33JCLXZ070888@xorpc.icir.org> Date: Thu, 3 Apr 2003 11:12:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/04/03 11:12:21 Modified files: xorp/cli/: cli_client.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 14:43:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 14:44:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h33Mi3ZW023650 for ; Thu, 3 Apr 2003 14:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33Mi39n078300; Thu, 3 Apr 2003 14:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11635; Thu, 3 Apr 2003 14:44:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA11625 for ; Thu, 3 Apr 2003 14:43:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h33Mhq9n078296 for ; Thu, 3 Apr 2003 14:43:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h33MhqCO099948 for ; Thu, 3 Apr 2003 14:43:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h33MhqEi099947; Thu, 3 Apr 2003 14:43:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304032243.h33MhqEi099947@xorpc.icir.org> Date: Thu, 3 Apr 2003 14:43:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifupdate.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/04/03 14:43:52 Modified files: xorp/fea/: xrl_ifupdate.hh Log message: Fix typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Thu Apr 3 16:45:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Apr 2003 16:46:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h340k4ZW041190 for ; Thu, 3 Apr 2003 16:46:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h340k49n079212; Thu, 3 Apr 2003 16:46:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA14443; Thu, 3 Apr 2003 16:46:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA14401 for ; Thu, 3 Apr 2003 16:45:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h340j89n079202 for ; Thu, 3 Apr 2003 16:45:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h340j7CO007451 for ; Thu, 3 Apr 2003 16:45:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h340j77g007450; Thu, 3 Apr 2003 16:45:07 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304040045.h340j77g007450@xorpc.icir.org> Date: Thu, 3 Apr 2003 16:45:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/03 16:45:07 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add subsection on XRL failures due to communication problems. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Fri Apr 4 11:52:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Apr 2003 11:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h34Jr2ZW077899 for ; Fri, 4 Apr 2003 11:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h34Jr29n090653; Fri, 4 Apr 2003 11:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05127; Fri, 4 Apr 2003 11:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA05098 for ; Fri, 4 Apr 2003 11:52:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h34Jq69n090634 for ; Fri, 4 Apr 2003 11:52:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h34Jq5CO048929 for ; Fri, 4 Apr 2003 11:52:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h34Jq56J048928; Fri, 4 Apr 2003 11:52:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304041952.h34Jq56J048928@xorpc.icir.org> Date: Fri, 4 Apr 2003 11:52:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ draft-ietf-idr-bgp4-20.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/04/04 11:52:05 Added files: xorp/bgp/docs/: draft-ietf-idr-bgp4-20.txt Log message: Hopefully final draft before RFC. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Fri Apr 4 16:01:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Apr 2003 16:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h35023F9007066 for ; Fri, 4 Apr 2003 16:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h350239n093166 for ; Fri, 4 Apr 2003 16:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA10769; Fri, 4 Apr 2003 16:02:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA10758 for ; Fri, 4 Apr 2003 16:01:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h3501p9n093164 for ; Fri, 4 Apr 2003 16:01:51 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h3501pCO079488 for ; Fri, 4 Apr 2003 16:01:51 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h3501ptV079487; Fri, 4 Apr 2003 16:01:51 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304050001.h3501ptV079487@xorpc.icir.org> Date: Fri, 4 Apr 2003 16:01:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: mjh@xorpc.icir.org. 03/04/04 16:01:51 Modified files: xorp/devnotes/: error_handling.tex Log message: second pass on XRL error handling _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Fri Apr 4 16:20:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Apr 2003 16:21:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h350L2F9008506 for ; Fri, 4 Apr 2003 16:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h350L29n093330 for ; Fri, 4 Apr 2003 16:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11303; Fri, 4 Apr 2003 16:21:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11277 for ; Fri, 4 Apr 2003 16:20:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h350K49n093311 for ; Fri, 4 Apr 2003 16:20:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h350K4CO079701 for ; Fri, 4 Apr 2003 16:20:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h350K4DM079700; Fri, 4 Apr 2003 16:20:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200304050020.h350K4DM079700@xorpc.icir.org> Date: Fri, 4 Apr 2003 16:20:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex xorp/docs/design_arch/figs/ error_dependency.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/figs/ Changes by: mjh@xorpc.icir.org. 03/04/04 16:20:04 Modified files: xorp/docs/design_arch/: error_handling.tex xorp/docs/design_arch/figs/: error_dependency.eps Log message: Commit XRL error handling text to the correct document :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Sat Apr 5 20:13:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Apr 2003 20:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h364E3F9094804 for ; Sat, 5 Apr 2003 20:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364E39n009485; Sat, 5 Apr 2003 20:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04291; Sat, 5 Apr 2003 20:14:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04277 for ; Sat, 5 Apr 2003 20:13:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364DL9n009475 for ; Sat, 5 Apr 2003 20:13:21 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h364DLCO087039 for ; Sat, 5 Apr 2003 20:13:21 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h364DLFB087038; Sat, 5 Apr 2003 20:13:21 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304060413.h364DLFB087038@xorpc.icir.org> Date: Sat, 5 Apr 2003 20:13:21 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/04/05 20:13:21 Modified files: xorp/libxorp/: selector.cc Log message: Added fd set access functions needed to monitor XORP file descriptors from other applications (snmpd). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Sat Apr 5 20:19:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Apr 2003 20:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h364K2F9095515 for ; Sat, 5 Apr 2003 20:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364K29n009537; Sat, 5 Apr 2003 20:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04365; Sat, 5 Apr 2003 20:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04346 for ; Sat, 5 Apr 2003 20:19:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364J49n009522 for ; Sat, 5 Apr 2003 20:19:04 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h364J4CO087104 for ; Sat, 5 Apr 2003 20:19:04 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h364J4MF087103; Sat, 5 Apr 2003 20:19:04 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304060419.h364J4MF087103@xorpc.icir.org> Date: Sat, 5 Apr 2003 20:19:04 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/04/05 20:19:04 Modified files: xorp/libxorp/: selector.hh Log message: Added fd_set access functions needed to monitor XORP file descriptors from other applications (snmpd). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Sat Apr 5 20:32:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Apr 2003 20:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h364X2F9097058 for ; Sat, 5 Apr 2003 20:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364X29n009619; Sat, 5 Apr 2003 20:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04527; Sat, 5 Apr 2003 20:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04513 for ; Sat, 5 Apr 2003 20:32:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364WD9n009617 for ; Sat, 5 Apr 2003 20:32:13 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h364WDCO091936 for ; Sat, 5 Apr 2003 20:32:13 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h364WDUl091935; Sat, 5 Apr 2003 20:32:13 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304060432.h364WDUl091935@xorpc.icir.org> Date: Sat, 5 Apr 2003 20:32:13 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/04/05 20:32:13 Modified files: xorp/libxorp/: timer.hh Log message: Added function to retrieve the absolute time at which the next timer will expire. There was no way to know if the delays returned by calls to get_next_delay at different times corresponded to the same timer. Now this can be detected by calling get_next_expire. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Sat Apr 5 20:38:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Apr 2003 20:39:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h364d3F9097774 for ; Sat, 5 Apr 2003 20:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364d39n009653; Sat, 5 Apr 2003 20:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04586; Sat, 5 Apr 2003 20:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA04574 for ; Sat, 5 Apr 2003 20:38:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h364cY9n009647 for ; Sat, 5 Apr 2003 20:38:34 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h364cXCO093069 for ; Sat, 5 Apr 2003 20:38:33 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h364cXha093068; Sat, 5 Apr 2003 20:38:33 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304060438.h364cXha093068@xorpc.icir.org> Date: Sat, 5 Apr 2003 20:38:33 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/04/05 20:38:33 Modified files: xorp/libxorp/: timer.cc Log message: Implemented TimerList::get_next_expire(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:26 2005 Subject: No subject Mon Apr 7 8:46:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Apr 2003 08:47:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h37Fl3F9055017 for ; Mon, 7 Apr 2003 08:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h37Fl39n026054; Mon, 7 Apr 2003 08:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04058; Mon, 7 Apr 2003 08:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA04041 for ; Mon, 7 Apr 2003 08:46:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h37FkY9n026047 for ; Mon, 7 Apr 2003 08:46:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h37FkXCO057511 for ; Mon, 7 Apr 2003 08:46:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h37FkX00057510; Mon, 7 Apr 2003 08:46:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304071546.h37FkX00057510@xorpc.icir.org> Date: Mon, 7 Apr 2003 8:46:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/07 08:46:33 Modified files: xorp/libxorp/: ref_ptr.hh Log message: Add conversion operator from ref_ptr to ref_ptr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Mon Apr 7 16:21:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Apr 2003 16:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h37NM3F9035437 for ; Mon, 7 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h37NM39n030347; Mon, 7 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA14812; Mon, 7 Apr 2003 16:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA14795 for ; Mon, 7 Apr 2003 16:21:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h37NLh9n030343 for ; Mon, 7 Apr 2003 16:21:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h37NLhCO012854 for ; Mon, 7 Apr 2003 16:21:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h37NLhWA012853; Mon, 7 Apr 2003 16:21:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304072321.h37NLhWA012853@xorpc.icir.org> Date: Mon, 7 Apr 2003 16:21:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/07 16:21:42 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Mon Apr 7 17:07:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Apr 2003 17:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38082F9045287 for ; Mon, 7 Apr 2003 17:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h380829n030728 for ; Mon, 7 Apr 2003 17:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA16045; Mon, 7 Apr 2003 17:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA16034 for ; Mon, 7 Apr 2003 17:07:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h3807X9n030724 for ; Mon, 7 Apr 2003 17:07:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h3807XCO026306 for ; Mon, 7 Apr 2003 17:07:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h3807Xf8026305; Mon, 7 Apr 2003 17:07:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304080007.h3807Xf8026305@xorpc.icir.org> Date: Mon, 7 Apr 2003 17:07:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/07 17:07:33 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add figure showing relationship between processes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 11:37:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 11:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38Ic3F9091818 for ; Tue, 8 Apr 2003 11:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38Ic39n040999 for ; Tue, 8 Apr 2003 11:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06459; Tue, 8 Apr 2003 11:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA06452 for ; Tue, 8 Apr 2003 11:37:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38Ibs9n040997 for ; Tue, 8 Apr 2003 11:37:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38IbsBp007865 for ; Tue, 8 Apr 2003 11:37:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38Ibs8J007864; Tue, 8 Apr 2003 11:37:54 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304081837.h38Ibs8J007864@xorpc.icir.org> Date: Tue, 8 Apr 2003 11:37:54 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/04/08 11:37:54 Modified files: xorp/libxorp/: selector.cc Log message: Fixed incorrect use of selected_mask _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 12:08:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 12:09:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38J93F9095531 for ; Tue, 8 Apr 2003 12:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38J939n041243; Tue, 8 Apr 2003 12:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07215; Tue, 8 Apr 2003 12:09:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07173 for ; Tue, 8 Apr 2003 12:08:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38J8K9n041239 for ; Tue, 8 Apr 2003 12:08:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38J8KBp008071 for ; Tue, 8 Apr 2003 12:08:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38J8KlM008070; Tue, 8 Apr 2003 12:08:20 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304081908.h38J8KlM008070@xorpc.icir.org> Date: Tue, 8 Apr 2003 12:08:20 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/08 12:08:20 xorp/mibs Update of /usr/local/www/data/cvs/xorp/mibs In directory xorpc.icir.org:/tmp/cvs-serv8062/mibs Log Message: Directory /usr/local/www/data/cvs/xorp/mibs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 12:11:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 12:12:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38JC5F9095919 for ; Tue, 8 Apr 2003 12:12:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38JC59n041296; Tue, 8 Apr 2003 12:12:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07316; Tue, 8 Apr 2003 12:12:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07299 for ; Tue, 8 Apr 2003 12:11:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38JBY9n041294 for ; Tue, 8 Apr 2003 12:11:34 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38JBXBp008127 for ; Tue, 8 Apr 2003 12:11:33 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38JBXIk008126; Tue, 8 Apr 2003 12:11:33 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304081911.h38JBXIk008126@xorpc.icir.org> Date: Tue, 8 Apr 2003 12:11:33 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ test_xorpevents.cc xorpevents.cc xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/08 12:11:33 Added files: xorp/mibs/: test_xorpevents.cc xorpevents.cc xorpevents.hh Log message: Helper classes to allow Xorp method calls from within Net-SNMP MIB modules _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 12:19:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 12:20:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38JKBF9097027 for ; Tue, 8 Apr 2003 12:20:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38JKB9n041400; Tue, 8 Apr 2003 12:20:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07542; Tue, 8 Apr 2003 12:20:10 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA07482 for ; Tue, 8 Apr 2003 12:19:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38JJ59n041368 for ; Tue, 8 Apr 2003 12:19:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38JJ5Bp008196 for ; Tue, 8 Apr 2003 12:19:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38JJ5Yk008195; Tue, 8 Apr 2003 12:19:05 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304081919.h38JJ5Yk008195@xorpc.icir.org> Date: Tue, 8 Apr 2003 12:19:05 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/08 12:19:05 Modified files: xorp/mibs/: xorpevents.cc Log message: Use new typedef'd AlarmMap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 12:35:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 12:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38Ja2F9001478 for ; Tue, 8 Apr 2003 12:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38Ja29n041559; Tue, 8 Apr 2003 12:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA08064; Tue, 8 Apr 2003 12:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA08047 for ; Tue, 8 Apr 2003 12:35:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38JZB9n041551 for ; Tue, 8 Apr 2003 12:35:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38JZBBp008435 for ; Tue, 8 Apr 2003 12:35:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38JZB7m008434; Tue, 8 Apr 2003 12:35:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304081935.h38JZB7m008434@xorpc.icir.org> Date: Tue, 8 Apr 2003 12:35:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/08 12:35:11 Modified files: xorp/pim/: TODO Log message: Add a TODO entry re. the PIM BSR spec. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 15:03:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 15:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38M43F9019317 for ; Tue, 8 Apr 2003 15:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38M439n042846; Tue, 8 Apr 2003 15:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12137; Tue, 8 Apr 2003 15:04:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12120 for ; Tue, 8 Apr 2003 15:03:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38M3a9n042844 for ; Tue, 8 Apr 2003 15:03:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38M3aBp010571 for ; Tue, 8 Apr 2003 15:03:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38M3axi010570; Tue, 8 Apr 2003 15:03:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304082203.h38M3axi010570@xorpc.icir.org> Date: Tue, 8 Apr 2003 15:03:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/08 15:03:36 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Restructure to match the introduction. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 14:54:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 15:15:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h38MF3F9020628 for ; Tue, 8 Apr 2003 15:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38MF39n042930; Tue, 8 Apr 2003 15:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12390; Tue, 8 Apr 2003 15:15:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA12362 for ; Tue, 8 Apr 2003 15:14:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h38LsD9n042733 for ; Tue, 8 Apr 2003 14:54:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h38LsDBp010413 for ; Tue, 8 Apr 2003 14:54:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h38LsDK6010412; Tue, 8 Apr 2003 14:54:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304082154.h38LsDK6010412@xorpc.icir.org> Date: Tue, 8 Apr 2003 14:54:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/08 14:54:13 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: First cut. Multicast related sections TBD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 17:57:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 17:58:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h390w4F9039996 for ; Tue, 8 Apr 2003 17:58:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h390w49n044304; Tue, 8 Apr 2003 17:58:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15945; Tue, 8 Apr 2003 17:58:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA15937 for ; Tue, 8 Apr 2003 17:58:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h390w09n044302 for ; Tue, 8 Apr 2003 17:58:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h390vxBp011970 for ; Tue, 8 Apr 2003 17:57:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h390vx5p011969; Tue, 8 Apr 2003 17:57:59 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304090057.h390vx5p011969@xorpc.icir.org> Date: Tue, 8 Apr 2003 17:57:59 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/08 17:57:59 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add a section describing the xorpsh and correct the table entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Tue Apr 8 19:06:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Apr 2003 19:07:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39273F9048234 for ; Tue, 8 Apr 2003 19:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h392739n044810; Tue, 8 Apr 2003 19:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16945; Tue, 8 Apr 2003 19:07:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA16935 for ; Tue, 8 Apr 2003 19:06:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h3926r9n044807 for ; Tue, 8 Apr 2003 19:06:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3926rBp013227 for ; Tue, 8 Apr 2003 19:06:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3926ruA013226; Tue, 8 Apr 2003 19:06:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304090206.h3926ruA013226@xorpc.icir.org> Date: Tue, 8 Apr 2003 19:06:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/08 19:06:53 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add a section on how we detect process failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 15:40:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 15:41:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mf6F9099233 for ; Wed, 9 Apr 2003 15:41:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mf5bF004765; Wed, 9 Apr 2003 15:41:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11187; Wed, 9 Apr 2003 15:41:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11148 for ; Wed, 9 Apr 2003 15:40:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Me2bF004736 for ; Wed, 9 Apr 2003 15:40:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Me2Bp024692 for ; Wed, 9 Apr 2003 15:40:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39Me2YS024691; Wed, 9 Apr 2003 15:40:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304092240.h39Me2YS024691@xorpc.icir.org> Date: Wed, 9 Apr 2003 15:40:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/09 15:40:02 Modified files: xorp/mibs/: xorpevents.cc Log message: Applied changes suggested in yesterday's codewalk. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 15:41:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 15:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mg3F9099257 for ; Wed, 9 Apr 2003 15:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mg2bF004777; Wed, 9 Apr 2003 15:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11235; Wed, 9 Apr 2003 15:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11178 for ; Wed, 9 Apr 2003 15:41:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mf0bF004763 for ; Wed, 9 Apr 2003 15:41:00 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mf0Bp024737 for ; Wed, 9 Apr 2003 15:41:00 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39Mf0N4024736; Wed, 9 Apr 2003 15:41:00 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304092241.h39Mf0N4024736@xorpc.icir.org> Date: Wed, 9 Apr 2003 15:41:00 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/09 15:41:00 Modified files: xorp/mibs/: xorpevents.hh Log message: Applied changes suggested in yesterday's codewalk. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 15:45:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 15:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mk2F9099334 for ; Wed, 9 Apr 2003 15:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mk2bF004816; Wed, 9 Apr 2003 15:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11315; Wed, 9 Apr 2003 15:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11297 for ; Wed, 9 Apr 2003 15:45:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39MjcbF004814 for ; Wed, 9 Apr 2003 15:45:38 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39MjbBp024803 for ; Wed, 9 Apr 2003 15:45:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39MjbRv024802; Wed, 9 Apr 2003 15:45:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304092245.h39MjbRv024802@xorpc.icir.org> Date: Wed, 9 Apr 2003 15:45:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: mjh@xorpc.icir.org. 03/04/09 15:45:37 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: update XRL errors text _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 15:48:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 15:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mn2F9099356 for ; Wed, 9 Apr 2003 15:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39Mn2bF004828; Wed, 9 Apr 2003 15:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11382; Wed, 9 Apr 2003 15:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA11372 for ; Wed, 9 Apr 2003 15:48:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39MmhbF004826 for ; Wed, 9 Apr 2003 15:48:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39MmgBp024898 for ; Wed, 9 Apr 2003 15:48:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39MmgEY024897; Wed, 9 Apr 2003 15:48:42 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304092248.h39MmgEY024897@xorpc.icir.org> Date: Wed, 9 Apr 2003 15:48:42 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ test_xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/09 15:48:42 Modified files: xorp/mibs/: test_xorpevents.cc Log message: Applied changes suggested during yesterday's codewalk. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 16:04:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 16:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39N53F9099562 for ; Wed, 9 Apr 2003 16:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39N53bF004959; Wed, 9 Apr 2003 16:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11778; Wed, 9 Apr 2003 16:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA11741 for ; Wed, 9 Apr 2003 16:04:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39N4WbF004948 for ; Wed, 9 Apr 2003 16:04:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39N4WBp025071 for ; Wed, 9 Apr 2003 16:04:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39N4Wga025070; Wed, 9 Apr 2003 16:04:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304092304.h39N4Wga025070@xorpc.icir.org> Date: Wed, 9 Apr 2003 16:04:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/09 16:04:32 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add a section on execution errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 16:21:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 16:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NM3F9099706 for ; Wed, 9 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NM2bF005107; Wed, 9 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA12195; Wed, 9 Apr 2003 16:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA12145 for ; Wed, 9 Apr 2003 16:21:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NLAbF005105 for ; Wed, 9 Apr 2003 16:21:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NLABp025235 for ; Wed, 9 Apr 2003 16:21:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39NLAbr025234; Wed, 9 Apr 2003 16:21:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304092321.h39NLAbr025234@xorpc.icir.org> Date: Wed, 9 Apr 2003 16:21:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/04/09 16:21:10 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Text for actions to take when multicast components of the router fail. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 16:59:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 17:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A005F9017426 for ; Wed, 9 Apr 2003 17:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A004bF005448; Wed, 9 Apr 2003 17:00:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13224; Wed, 9 Apr 2003 17:00:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13183 for ; Wed, 9 Apr 2003 16:59:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NxHbF005440 for ; Wed, 9 Apr 2003 16:59:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h39NxGBp025665 for ; Wed, 9 Apr 2003 16:59:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h39NxGCm025664; Wed, 9 Apr 2003 16:59:16 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304092359.h39NxGCm025664@xorpc.icir.org> Date: Wed, 9 Apr 2003 16:59:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: mjh@xorpc.icir.org. 03/04/09 16:59:16 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: wordsmithing on the intro _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 17:12:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 17:13:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0D3F9017601 for ; Wed, 9 Apr 2003 17:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0D3bF005581; Wed, 9 Apr 2003 17:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13549; Wed, 9 Apr 2003 17:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13524 for ; Wed, 9 Apr 2003 17:12:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0C5bF005573 for ; Wed, 9 Apr 2003 17:12:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0C5Bp025873 for ; Wed, 9 Apr 2003 17:12:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A0C5rd025872; Wed, 9 Apr 2003 17:12:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304100012.h3A0C5rd025872@xorpc.icir.org> Date: Wed, 9 Apr 2003 17:12:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/04/09 17:12:05 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: * Add more text for the MFEA * Add the XORP CVS Tag at the top _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:27 2005 Subject: No subject Wed Apr 9 17:27:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 17:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0S3F9017694 for ; Wed, 9 Apr 2003 17:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0S3bF005717; Wed, 9 Apr 2003 17:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13858; Wed, 9 Apr 2003 17:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13847 for ; Wed, 9 Apr 2003 17:27:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0RibF005715 for ; Wed, 9 Apr 2003 17:27:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0RiBp025989 for ; Wed, 9 Apr 2003 17:27:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A0Rip2025988; Wed, 9 Apr 2003 17:27:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304100027.h3A0Rip2025988@xorpc.icir.org> Date: Wed, 9 Apr 2003 17:27:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in constants.hh packets.hh peer.hh port.cc port.hh port_io.hh port_manager.hh rip_module.h route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh ...test_timers_update.cc ...update_queue.cc ...update_queue.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/09 17:27:44 Added files: xorp/rip/: .cvsignore Makefile.am Makefile.in constants.hh packets.hh peer.hh port.cc port.hh port_io.hh port_manager.hh rip_module.h route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh test_timers_update.cc update_queue.cc update_queue.hh Log message: Skeletal RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Wed Apr 9 17:29:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 17:30:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0U3F9017730 for ; Wed, 9 Apr 2003 17:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0U3bF005732; Wed, 9 Apr 2003 17:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13914; Wed, 9 Apr 2003 17:30:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13884 for ; Wed, 9 Apr 2003 17:29:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0T2bF005725 for ; Wed, 9 Apr 2003 17:29:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0T2Bp026046 for ; Wed, 9 Apr 2003 17:29:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A0T2XC026045; Wed, 9 Apr 2003 17:29:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304100029.h3A0T2XC026045@xorpc.icir.org> Date: Wed, 9 Apr 2003 17:29:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/04/09 17:29:02 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Add rip to list of kdoc'ed directories. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Wed Apr 9 17:30:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 17:31:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0V3F9017761 for ; Wed, 9 Apr 2003 17:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0V3bF005759; Wed, 9 Apr 2003 17:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13957; Wed, 9 Apr 2003 17:31:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA13946 for ; Wed, 9 Apr 2003 17:30:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0UwbF005757 for ; Wed, 9 Apr 2003 17:30:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A0UwBp026124 for ; Wed, 9 Apr 2003 17:30:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A0Uwri026123; Wed, 9 Apr 2003 17:30:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304100030.h3A0Uwri026123@xorpc.icir.org> Date: Wed, 9 Apr 2003 17:30:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in Makefile.am configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/09 17:30:58 Modified files: ./: Makefile.in Makefile.am configure.in configure Log message: Add rip to list of directories in build process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Wed Apr 9 19:41:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 19:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A2g3F9039558 for ; Wed, 9 Apr 2003 19:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A2g3bF006736; Wed, 9 Apr 2003 19:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA15943; Wed, 9 Apr 2003 19:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA15933 for ; Wed, 9 Apr 2003 19:41:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A2fobF006734 for ; Wed, 9 Apr 2003 19:41:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A2foBp039245 for ; Wed, 9 Apr 2003 19:41:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A2foGC039244; Wed, 9 Apr 2003 19:41:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304100241.h3A2foGC039244@xorpc.icir.org> Date: Wed, 9 Apr 2003 19:41:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_timers_update.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/04/09 19:41:50 Modified files: xorp/rip/: test_timers_update.cc Log message: MacOS X compilation fix _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Wed Apr 9 20:12:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Apr 2003 20:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A3D2F9039703 for ; Wed, 9 Apr 2003 20:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A3D2bF006968; Wed, 9 Apr 2003 20:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA16375; Wed, 9 Apr 2003 20:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA16347 for ; Wed, 9 Apr 2003 20:12:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A3C4bF006966 for ; Wed, 9 Apr 2003 20:12:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3A3C4Bp054921 for ; Wed, 9 Apr 2003 20:12:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3A3C4ZT054920; Wed, 9 Apr 2003 20:12:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304100312.h3A3C4ZT054920@xorpc.icir.org> Date: Wed, 9 Apr 2003 20:12:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in xorp/mfea/ mfea_unix_if_sysctl.cc mfea_unix_osdep.hh mfea_unix_rtread_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/09 20:12:03 Modified files: ./: acconfig.h config.h.in configure configure.in xorp/mfea/: mfea_unix_if_sysctl.cc mfea_unix_osdep.hh mfea_unix_rtread_sysctl.cc Log message: Rename #define-d flags checked by configure: HAVE_AF_ROUTE -> HAVE_ROUTING_SOCKETS HAVE_AF_NETLINK -> HAVE_NETLINK_SOCKETS HAVE_SIOCGIFCONF -> HAVE_IOCTL_SIOCGIFCONF HAVE_NET_RT_IFLIST -> HAVE_SYSCTL_NET_RT_IFLIST HAVE_NET_RT_DUMP -> HAVE_SYSCTL_NET_RT_DUMP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Thu Apr 10 9:20:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Apr 2003 09:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3AGL3F9053526 for ; Thu, 10 Apr 2003 09:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3AGL3bF013069; Thu, 10 Apr 2003 09:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29427; Thu, 10 Apr 2003 09:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29403 for ; Thu, 10 Apr 2003 09:20:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3AGKDbF013067 for ; Thu, 10 Apr 2003 09:20:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3AGKDBp068176 for ; Thu, 10 Apr 2003 09:20:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3AGKDMd068175; Thu, 10 Apr 2003 09:20:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304101620.h3AGKDMd068175@xorpc.icir.org> Date: Thu, 10 Apr 2003 9:20:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_entry.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/10 09:20:13 Modified files: xorp/rip/: route_entry.cc Log message: Remove some crufty debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 1:44:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 01:45:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3B8j3F9059987 for ; Fri, 11 Apr 2003 01:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3B8j3bF020744 for ; Fri, 11 Apr 2003 01:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA19427; Fri, 11 Apr 2003 01:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA19419 for ; Fri, 11 Apr 2003 01:44:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3B8iWbF020739 for ; Fri, 11 Apr 2003 01:44:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3B8iWBp031724 for ; Fri, 11 Apr 2003 01:44:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3B8iWWA031723; Fri, 11 Apr 2003 01:44:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304110844.h3B8iWWA031723@xorpc.icir.org> Date: Fri, 11 Apr 2003 1:44:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/11 01:44:32 Modified files: ./: configure.in configure config.h.in Log message: Add check for if_indextoname(3) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 9:58:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 09:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BGx3F9001550 for ; Fri, 11 Apr 2003 09:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BGx2bF024763 for ; Fri, 11 Apr 2003 09:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA28497; Fri, 11 Apr 2003 09:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA28490 for ; Fri, 11 Apr 2003 09:58:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BGwobF024760 for ; Fri, 11 Apr 2003 09:58:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BGwoBp093753 for ; Fri, 11 Apr 2003 09:58:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3BGwo3L093752; Fri, 11 Apr 2003 09:58:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304111658.h3BGwo3L093752@xorpc.icir.org> Date: Fri, 11 Apr 2003 9:58:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ co_xorp.sh config remote_xorp_copy.sh tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/04/11 09:58:49 Modified files: other/tinderbox/scripts/: co_xorp.sh config remote_xorp_copy.sh tinderbox.sh Log message: Change to a tinderbox specific ssh identity file. Former method (shosts) broke at around the time of the 4.8R upgrade of xorpc. Change to a local checkout of repository. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 10:11:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 10:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BHC2F9002531 for ; Fri, 11 Apr 2003 10:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BHC2bF024896 for ; Fri, 11 Apr 2003 10:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA28753; Fri, 11 Apr 2003 10:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA28741 for ; Fri, 11 Apr 2003 10:11:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BHBjbF024894 for ; Fri, 11 Apr 2003 10:11:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BHBjBp093891 for ; Fri, 11 Apr 2003 10:11:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3BHBjdj093890; Fri, 11 Apr 2003 10:11:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304111711.h3BHBjdj093890@xorpc.icir.org> Date: Fri, 11 Apr 2003 10:11:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/docs/ INDEX Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/docs/ Changes by: hodson@xorpc.icir.org. 03/04/11 10:11:45 Added files: xorp/rip/docs/: INDEX Log message: Add index. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 15:00:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 15:01:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BM13F9030428 for ; Fri, 11 Apr 2003 15:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BM12bF027376; Fri, 11 Apr 2003 15:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA05664; Fri, 11 Apr 2003 15:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA05645 for ; Fri, 11 Apr 2003 15:00:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BM0JbF027370 for ; Fri, 11 Apr 2003 15:00:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BM0IBp024171 for ; Fri, 11 Apr 2003 15:00:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3BM0IwP024170; Fri, 11 Apr 2003 15:00:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304112200.h3BM0IwP024170@xorpc.icir.org> Date: Fri, 11 Apr 2003 15:00:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in constants.hh packets.hh peer.hh port.cc port.hh xorp/rip/ test_packets.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/11 15:00:18 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in constants.hh packets.hh peer.hh port.cc port.hh Added files: xorp/rip/: test_packets.cc Log message: Add portions of IPv4 packet handling. Definitions of packet types, accessors, modifiers, etc. Add Port counters and update counters on Port and Peer where applicable thus far. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 15:26:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 15:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BMR3F9032443 for ; Fri, 11 Apr 2003 15:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BMR3bF027600; Fri, 11 Apr 2003 15:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA06293; Fri, 11 Apr 2003 15:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA06272 for ; Fri, 11 Apr 2003 15:26:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BMQAbF027596 for ; Fri, 11 Apr 2003 15:26:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3BMQABp037113 for ; Fri, 11 Apr 2003 15:26:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3BMQAOZ037112; Fri, 11 Apr 2003 15:26:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304112226.h3BMQAOZ037112@xorpc.icir.org> Date: Fri, 11 Apr 2003 15:26:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp xorp/fea/ xrl_target.cc xrl_target.hh xorp/rtrmgr/tools/ show_interfaces.cc xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/04/11 15:26:10 Modified files: xorp/etc/templates/: fea.tp xorp/fea/: xrl_target.cc xrl_target.hh xorp/rtrmgr/tools/: show_interfaces.cc xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Rename XRLs ifmgr/0.1/get_vif_flags4 and ifmgr/0.1/get_vif_flags6 to ifmgr/0.1/get_address_flags4 and ifmgr/0.1/get_address_flags6 respectively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:19:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1K3F9045460 for ; Fri, 11 Apr 2003 18:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1K3bF029011; Fri, 11 Apr 2003 18:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10052; Fri, 11 Apr 2003 18:20:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10040 for ; Fri, 11 Apr 2003 18:19:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1JKbF029006 for ; Fri, 11 Apr 2003 18:19:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1JKBp066614 for ; Fri, 11 Apr 2003 18:19:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1JKd8066613; Fri, 11 Apr 2003 18:19:20 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120119.h3C1JKd8066613@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:19:20 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:19:20 Added files: xorp/mibs/: Makefile.am Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:20:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1L3F9045562 for ; Fri, 11 Apr 2003 18:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1L3bF029040; Fri, 11 Apr 2003 18:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10087; Fri, 11 Apr 2003 18:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10075 for ; Fri, 11 Apr 2003 18:20:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1KTbF029038 for ; Fri, 11 Apr 2003 18:20:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1KTBp066674 for ; Fri, 11 Apr 2003 18:20:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1KTBX066673; Fri, 11 Apr 2003 18:20:29 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120120.h3C1KTBX066673@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:20:29 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:20:29 Modified files: ./: Makefile.am Log message: Added conditional compilation of the mibs directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:22:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:23:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1N3F9045706 for ; Fri, 11 Apr 2003 18:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1N3bF029057; Fri, 11 Apr 2003 18:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10147; Fri, 11 Apr 2003 18:23:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10136 for ; Fri, 11 Apr 2003 18:22:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1MvbF029055 for ; Fri, 11 Apr 2003 18:22:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1MvBp066726 for ; Fri, 11 Apr 2003 18:22:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1MvQH066725; Fri, 11 Apr 2003 18:22:57 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120122.h3C1MvQH066725@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:22:57 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:22:57 Modified files: ./: configure.in Log message: Added check for net-snmp and enabled use of libtool _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:28:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1T3F9046158 for ; Fri, 11 Apr 2003 18:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1T2bF029114; Fri, 11 Apr 2003 18:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10225; Fri, 11 Apr 2003 18:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10204 for ; Fri, 11 Apr 2003 18:28:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1S2bF029108 for ; Fri, 11 Apr 2003 18:28:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1S2Bp066896 for ; Fri, 11 Apr 2003 18:28:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1S25C066895; Fri, 11 Apr 2003 18:28:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120128.h3C1S25C066895@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:28:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:28:02 Modified files: ./: Makefile.am Log message: Corrected deleted directory mrt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:34:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1Z2F9046623 for ; Fri, 11 Apr 2003 18:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1Z2bF029156; Fri, 11 Apr 2003 18:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10317; Fri, 11 Apr 2003 18:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10299 for ; Fri, 11 Apr 2003 18:34:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1YpbF029151 for ; Fri, 11 Apr 2003 18:34:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1YpBp071710 for ; Fri, 11 Apr 2003 18:34:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1YpFr071709; Fri, 11 Apr 2003 18:34:51 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120134.h3C1YpFr071709@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:34:51 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:34:51 Modified files: ./: configure.in Log message: Removed unused macro file include _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:37:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1c3F9046874 for ; Fri, 11 Apr 2003 18:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1c3bF029192; Fri, 11 Apr 2003 18:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10369; Fri, 11 Apr 2003 18:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10358 for ; Fri, 11 Apr 2003 18:37:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1bdbF029188 for ; Fri, 11 Apr 2003 18:37:39 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1bdBp075756 for ; Fri, 11 Apr 2003 18:37:39 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1bdqZ075755; Fri, 11 Apr 2003 18:37:39 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120137.h3C1bdqZ075755@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:37:39 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:37:39 Modified files: ./: Makefile.in Log message: Added conditional compilation of mibs directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:38:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:39:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1d3F9046966 for ; Fri, 11 Apr 2003 18:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1d2bF029205; Fri, 11 Apr 2003 18:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10427; Fri, 11 Apr 2003 18:39:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10384 for ; Fri, 11 Apr 2003 18:38:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1c4bF029195 for ; Fri, 11 Apr 2003 18:38:04 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1c3Bp075781 for ; Fri, 11 Apr 2003 18:38:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1c3ei075780; Fri, 11 Apr 2003 18:38:03 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120138.h3C1c3ei075780@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:38:03 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:38:03 Added files: xorp/mibs/: Makefile.in Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:40:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:41:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1f3F9047149 for ; Fri, 11 Apr 2003 18:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1f3bF029244; Fri, 11 Apr 2003 18:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10476; Fri, 11 Apr 2003 18:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10460 for ; Fri, 11 Apr 2003 18:40:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1eebF029242 for ; Fri, 11 Apr 2003 18:40:40 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1edBp075858 for ; Fri, 11 Apr 2003 18:40:39 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1edM6075857; Fri, 11 Apr 2003 18:40:39 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120140.h3C1edM6075857@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:40:39 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:40:39 Modified files: ./: configure Log message: Added check for Net-SNMP and conditional compilation of mibs directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 18:58:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 18:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1x3F9048496 for ; Fri, 11 Apr 2003 18:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1x3bF029361; Fri, 11 Apr 2003 18:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10676; Fri, 11 Apr 2003 18:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id SAA10655 for ; Fri, 11 Apr 2003 18:58:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1w2bF029359 for ; Fri, 11 Apr 2003 18:58:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C1w2Bp093416 for ; Fri, 11 Apr 2003 18:58:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C1w2aA093414; Fri, 11 Apr 2003 18:58:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304120158.h3C1w2aA093414@xorpc.icir.org> Date: Fri, 11 Apr 2003 18:58:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in ! xorp/rip/ M! akefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: jcardona@xorpc.icir.org. 03/04/11 18:58:02 Modified files: ./: Makefile.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Added libtool and Net-SNMP checks _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:28 2005 Subject: No subject Fri Apr 11 19:08:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 19:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C293F9049274 for ; Fri, 11 Apr 2003 19:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C293bF029453; Fri, 11 Apr 2003 19:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA10826; Fri, 11 Apr 2003 19:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA10815 for ; Fri, 11 Apr 2003 19:08:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C28wbF029451 for ; Fri, 11 Apr 2003 19:08:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C28wBp003741 for ; Fri, 11 Apr 2003 19:08:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C28wEI003732; Fri, 11 Apr 2003 19:08:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304120208.h3C28wEI003732@xorpc.icir.org> Date: Fri, 11 Apr 2003 19:08:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: pavlin@xorpc.icir.org. 03/04/11 19:08:58 Modified files: xorp/policy/: .cvsignore Log message: Update .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Fri Apr 11 19:11:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Apr 2003 19:12:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C2C3F9049518 for ; Fri, 11 Apr 2003 19:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C2C3bF029485; Fri, 11 Apr 2003 19:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA10896; Fri, 11 Apr 2003 19:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id TAA10879 for ; Fri, 11 Apr 2003 19:11:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C2B7bF029483 for ; Fri, 11 Apr 2003 19:11:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3C2B7Bp004658 for ; Fri, 11 Apr 2003 19:11:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3C2B7s0004656; Fri, 11 Apr 2003 19:11:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304120211.h3C2B7s0004656@xorpc.icir.org> Date: Fri, 11 Apr 2003 19:11:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/04/11 19:11:07 Added files: xorp/mibs/: .cvsignore Log message: Add .cvsignore file with the list of files CVS should ignore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Sun Apr 13 11:45:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 13 Apr 2003 11:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3DIk3F9058249 for ; Sun, 13 Apr 2003 11:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3DIk3bF049085 for ; Sun, 13 Apr 2003 11:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13109; Sun, 13 Apr 2003 11:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA13101 for ; Sun, 13 Apr 2003 11:45:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3DIjobF049081 for ; Sun, 13 Apr 2003 11:45:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3DIjoBp073354 for ; Sun, 13 Apr 2003 11:45:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3DIjoYj073353; Sun, 13 Apr 2003 11:45:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304131845.h3DIjoYj073353@xorpc.icir.org> Date: Sun, 13 Apr 2003 11:45:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/13 11:45:50 Modified files: ./: config.h.in configure configure.in Log message: Add check for net/if_types.h header file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Mon Apr 14 10:52:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Apr 2003 10:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EHr3F9064432 for ; Mon, 14 Apr 2003 10:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EHr3bF059268; Mon, 14 Apr 2003 10:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04482; Mon, 14 Apr 2003 10:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA04447 for ; Mon, 14 Apr 2003 10:52:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EHqLbF059264 for ; Mon, 14 Apr 2003 10:52:21 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EHqLBp057275 for ; Mon, 14 Apr 2003 10:52:21 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3EHqLlf057274; Mon, 14 Apr 2003 10:52:21 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304141752.h3EHqLlf057274@xorpc.icir.org> Date: Mon, 14 Apr 2003 10:52:21 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ test_xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/14 10:52:21 Modified files: xorp/mibs/: test_xorpevents.cc Log message: Removed unused variables _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Mon Apr 14 11:05:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Apr 2003 11:06:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EI64F9065424 for ; Mon, 14 Apr 2003 11:06:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EI64bF059412; Mon, 14 Apr 2003 11:06:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA04886; Mon, 14 Apr 2003 11:06:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA04873 for ; Mon, 14 Apr 2003 11:05:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EI5sbF059408 for ; Mon, 14 Apr 2003 11:05:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3EI5rBp057413 for ; Mon, 14 Apr 2003 11:05:53 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3EI5rcl057412; Mon, 14 Apr 2003 11:05:53 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304141805.h3EI5rcl057412@xorpc.icir.org> Date: Mon, 14 Apr 2003 11:05:53 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/14 11:05:53 Modified files: xorp/mibs/: Makefile.am Makefile.in Log message: Fixed so gmake check invokes test_xorpevents _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Mon Apr 14 16:45:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Apr 2003 16:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ENk3F9096251 for ; Mon, 14 Apr 2003 16:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ENk3bF062248 for ; Mon, 14 Apr 2003 16:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13072; Mon, 14 Apr 2003 16:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA13059 for ; Mon, 14 Apr 2003 16:45:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ENjlbF062242 for ; Mon, 14 Apr 2003 16:45:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ENjlBp016202 for ; Mon, 14 Apr 2003 16:45:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3ENjknj016194; Mon, 14 Apr 2003 16:45:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200304142345.h3ENjknj016194@xorpc.icir.org> Date: Mon, 14 Apr 2003 16:45:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xtreset.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/tools/ Changes by: atanu@xorpc.icir.org. 03/04/14 16:45:46 Modified files: other/testbed/tools/: xtreset.py Log message: Just installed a new NET-SNMP. The defaults have changed. 1) Explicitly use version 1 2) The community string requires a "-c". 3) The Agent name now comes after the community string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 9:31:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 09:32:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGW3F9085705 for ; Tue, 15 Apr 2003 09:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGW3bF069690; Tue, 15 Apr 2003 09:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29641; Tue, 15 Apr 2003 09:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29620 for ; Tue, 15 Apr 2003 09:31:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGVGbF069688 for ; Tue, 15 Apr 2003 09:31:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGVFBp059343 for ; Tue, 15 Apr 2003 09:31:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FGVF1W059342; Tue, 15 Apr 2003 09:31:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151631.h3FGVF1W059342@xorpc.icir.org> Date: Tue, 15 Apr 2003 9:31:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/04/15 09:31:15 Modified files: xorp/libxipc/: .cvsignore Log message: Remove the following files from .cvsignore, because it seems they are not used anymore: test_finder_client test_finder_ipc test_finder_ipc2 test_finder_msg test_finder_transport _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 9:37:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 09:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGc3F9086173 for ; Tue, 15 Apr 2003 09:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGc2bF069745; Tue, 15 Apr 2003 09:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29780; Tue, 15 Apr 2003 09:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29765 for ; Tue, 15 Apr 2003 09:37:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGbnbF069741 for ; Tue, 15 Apr 2003 09:37:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGbnBp077702 for ; Tue, 15 Apr 2003 09:37:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FGbnTM077701; Tue, 15 Apr 2003 09:37:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304151637.h3FGbnTM077701@xorpc.icir.org> Date: Tue, 15 Apr 2003 9:37:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/rtrmgr/ Makefile.am Makefile.in randomness.cc xorp/libxipc/ Makefile.am Makefile.in hmac_md5.c xorp/bgp/ Makefile.am Makefile.in path_attribute.hh xorp/rtrmgr/ md5.c md5.h xorp/libxipc/ md5.c md5.h xorp/bgp/ md5.c md5.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/04/15 09:37:48 Modified files: ./: configure configure.in xorp/rtrmgr/: Makefile.am Makefile.in randomness.cc xorp/libxipc/: Makefile.am Makefile.in hmac_md5.c xorp/bgp/: Makefile.am Makefile.in path_attribute.hh Removed files: xorp/rtrmgr/: md5.c md5.h xorp/libxipc/: md5.c md5.h xorp/bgp/: md5.c md5.h Log message: Use system md5 header files and libraries and remove local copies of md5 files. Should we ever come across a system without the standard md5 header files and libraries, we'll add a compat directory and put local versions there. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 9:44:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 09:45:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGj5F9086731 for ; Tue, 15 Apr 2003 09:45:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGj4bF069836; Tue, 15 Apr 2003 09:45:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA00011; Tue, 15 Apr 2003 09:45:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA29958 for ; Tue, 15 Apr 2003 09:44:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGiCbF069829 for ; Tue, 15 Apr 2003 09:44:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGiCBp082340 for ; Tue, 15 Apr 2003 09:44:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FGiCrZ082339; Tue, 15 Apr 2003 09:44:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151644.h3FGiCrZ082339@xorpc.icir.org> Date: Tue, 15 Apr 2003 9:44:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ system.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/04/15 09:44:12 Modified files: xorp/ospfd/xorp/: system.C Log message: Replace #if HAVE_ST_IP_MREQN with #ifdef HAVE_ST_IP_MREQN _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 09:50:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 09:51:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGp3F9087200 for ; Tue, 15 Apr 2003 09:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGp3bF069904; Tue, 15 Apr 2003 09:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA00207; Tue, 15 Apr 2003 09:51:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA00178 for ; Tue, 15 Apr 2003 09:50:19 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGoJbF069902 for ; Tue, 15 Apr 2003 09:50:19 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FGoJnR054230 for ; Tue, 15 Apr 2003 09:50:19 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200304151650.h3FGoJnR054230@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/rtrmgr/ Makefile.am Makefile.in randomness.cc xorp/libxipc/ Makefile.am Makefile.in hmac_md5.c xorp/bgp/ Makefile.am Makefile.in path_attribute.hh xorp/rtrmgr/ md5.c md5.h xorp/libxipc/ md5.c md5.h xorp/bgp/ md5.c md5.h In-Reply-To: Your message of "Tue, 15 Apr 2003 09:37:48." <200304151637.h3FGbnTM077701@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 15 Apr 2003 09:50:19 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/bgp/ | Changes by: hodson@xorpc.icir.org. 03/04/15 09:37:48 | | Modified files: | ./: configure configure.in | xorp/rtrmgr/: Makefile.am Makefile.in randomness.cc | xorp/libxipc/: Makefile.am Makefile.in hmac_md5.c | xorp/bgp/: Makefile.am Makefile.in path_attribute.hh | Removed files: | xorp/rtrmgr/: md5.c md5.h | xorp/libxipc/: md5.c md5.h | xorp/bgp/: md5.c md5.h | | Log message: | Use system md5 header files and libraries and remove local copies of | md5 files. Should we ever come across a system without the standard | md5 header files and libraries, we'll add a compat directory and put | local versions there. This breaks the build on koala (linux 2.4.18). I'll fix it shortly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 10:09:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 10:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHA3F9088637 for ; Tue, 15 Apr 2003 10:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHA3bF070071; Tue, 15 Apr 2003 10:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA00846; Tue, 15 Apr 2003 10:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA00826 for ; Tue, 15 Apr 2003 10:09:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FH9TbF070062 for ; Tue, 15 Apr 2003 10:09:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FH9SBp017053 for ; Tue, 15 Apr 2003 10:09:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FH9SmG017052; Tue, 15 Apr 2003 10:09:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304151709.h3FH9SmG017052@xorpc.icir.org> Date: Tue, 15 Apr 2003 10:09:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in acconfig.h config.h.in configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp.h xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile! .in xorp/p! im/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/04/15 10:09:28 Modified files: ./: Makefile.in acconfig.h config.h.in configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp.h xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Check for md5global.h where Linux puts typedef's for md5.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 10:09:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 10:10:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHA5F9088645 for ; Tue, 15 Apr 2003 10:10:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHA5bF070073; Tue, 15 Apr 2003 10:10:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA00862; Tue, 15 Apr 2003 10:10:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA00833 for ; Tue, 15 Apr 2003 10:09:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FH9abF070064 for ; Tue, 15 Apr 2003 10:09:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FH9aBp017311 for ; Tue, 15 Apr 2003 10:09:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FH9aTE017310; Tue, 15 Apr 2003 10:09:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151709.h3FH9aTE017310@xorpc.icir.org> Date: Tue, 15 Apr 2003 10:09:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/15 10:09:36 Modified files: xorp/libxorp/: ether_compat.h Log message: * Replace #elif HAVE_SYS_ETHERNET_H with #elif defined(HAVE_SYS_ETHERNET_H) * Change the wording of an #error message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 10:16:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 10:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHH3F9089202 for ; Tue, 15 Apr 2003 10:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHH3bF070159; Tue, 15 Apr 2003 10:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA01038; Tue, 15 Apr 2003 10:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA01023 for ; Tue, 15 Apr 2003 10:16:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHGkbF070157 for ; Tue, 15 Apr 2003 10:16:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHGkBp021148 for ; Tue, 15 Apr 2003 10:16:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FHGjNV021147; Tue, 15 Apr 2003 10:16:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151716.h3FHGjNV021147@xorpc.icir.org> Date: Tue, 15 Apr 2003 10:16:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/04/15 10:16:45 Modified files: xorp/libxipc/: xrl_atom.cc Log message: Replace the #ifdef ... #elif ... conditional inclusion of foo/etherhet.h with #include "libxorp/ether_compat.h" which takes care of all the nastiness with ethernet header files compatibility. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 10:38:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 10:39:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHd4F9096031 for ; Tue, 15 Apr 2003 10:39:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHd3bF070322; Tue, 15 Apr 2003 10:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA01770; Tue, 15 Apr 2003 10:39:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA01739 for ; Tue, 15 Apr 2003 10:38:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHcUbF070320 for ; Tue, 15 Apr 2003 10:38:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHcUBp038094 for ; Tue, 15 Apr 2003 10:38:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FHcURS038093; Tue, 15 Apr 2003 10:38:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151738.h3FHcURS038093@xorpc.icir.org> Date: Tue, 15 Apr 2003 10:38:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in acconfig.h config.h.in configure xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makef! ile.in xor! p/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/04/15 10:38:29 Modified files: ./: Makefile.in acconfig.h config.h.in configure xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: * Cleanup acconfig.h : - Remove the following #undef, because they are never used, and are never set by configure.in: HAVE_DEV_URANDOM HAVE_ST_ADDRINFO HAVE_GETIPNODEBYNAME NEED_VSNPRINTF NEED_INET_PTON NEED_INET_NTOP - Remove the following #undef, because some of them are for header files that are checked in configure.in by AC_CHECK_HEADERS(), and therefore they don't have to be explicitly #undef in acconfig.h (autoconf itself takes care of that when config.h is generated). Other #undef are for headers that are never used, and are never checked in configure.in. HAVE_NETINET_ETHER_H HAVE_NETINET_IF_ETHER_H HAVE_NET_ETHERNET_H HAVE_SYS_ETHERNET_H HAVE_MD5GLOBAL_H - Shuffle few things around. * Regenerate Makefile.in files on FreeBSD machine. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 10:50:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 10:51:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHp4F9004086 for ; Tue, 15 Apr 2003 10:51:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHp4bF070430; Tue, 15 Apr 2003 10:51:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA02094; Tue, 15 Apr 2003 10:51:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id KAA02071 for ; Tue, 15 Apr 2003 10:50:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHoIbF070426 for ; Tue, 15 Apr 2003 10:50:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FHoIBp045412 for ; Tue, 15 Apr 2003 10:50:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FHoIxk045411; Tue, 15 Apr 2003 10:50:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151750.h3FHoIxk045411@xorpc.icir.org> Date: Tue, 15 Apr 2003 10:50:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/04/15 10:50:18 Modified files: xorp/libxipc/: xrl_atom.cc Log message: Remove #include "libxorp/ether_compat.h" because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 11:09:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 11:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIA3F9011407 for ; Tue, 15 Apr 2003 11:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIA3bF070584; Tue, 15 Apr 2003 11:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA02557; Tue, 15 Apr 2003 11:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA02546 for ; Tue, 15 Apr 2003 11:09:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FI9wbF070579 for ; Tue, 15 Apr 2003 11:09:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FI9wBp051723 for ; Tue, 15 Apr 2003 11:09:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FI9wuI051722; Tue, 15 Apr 2003 11:09:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304151809.h3FI9wuI051722@xorpc.icir.org> Date: Tue, 15 Apr 2003 11:09:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/15 11:09:58 Modified files: ./: bootstrap Log message: Run libtoolize now we've libtooled the project. Otherwise, running 'bootstrap && configure' can result in an unbuildable project, eg bootstrapping on Linux with FreeBSD libtool scripts in tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 11:44:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 11:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIj2F9021282 for ; Tue, 15 Apr 2003 11:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIj2bF070871; Tue, 15 Apr 2003 11:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03409; Tue, 15 Apr 2003 11:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03379 for ; Tue, 15 Apr 2003 11:44:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIi8bF070866 for ; Tue, 15 Apr 2003 11:44:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIi8Bp070371 for ; Tue, 15 Apr 2003 11:44:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FIi80L070370; Tue, 15 Apr 2003 11:44:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151844.h3FIi80L070370@xorpc.icir.org> Date: Tue, 15 Apr 2003 11:44:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ ltconfig ltmain.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/15 11:44:08 Modified files: xorp/config/: ltconfig ltmain.sh Log message: Update ltconfig and ltmain.sh with the slightly newer version that comes with FreeBSD-4.8 libtool. Note that config.guess and config.sub we have are newer than the versions that come with libtool, hence they are kept. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 11:52:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 11:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIr3F9021937 for ; Tue, 15 Apr 2003 11:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIr2bF070957; Tue, 15 Apr 2003 11:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03591; Tue, 15 Apr 2003 11:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03579 for ; Tue, 15 Apr 2003 11:52:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIqcbF070955 for ; Tue, 15 Apr 2003 11:52:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIqbBp078805 for ; Tue, 15 Apr 2003 11:52:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FIqb0S078804; Tue, 15 Apr 2003 11:52:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151852.h3FIqb0S078804@xorpc.icir.org> Date: Tue, 15 Apr 2003 11:52:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/15 11:52:37 Modified files: ./: bootstrap Log message: Comment-out the --force flag to libtoolize, because with it libtoolize always overwrites our config.guess and config.sub files, even though our version is newer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 11:55:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 11:56:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIu3F9022231 for ; Tue, 15 Apr 2003 11:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FIu3bF070994; Tue, 15 Apr 2003 11:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03667; Tue, 15 Apr 2003 11:56:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id LAA03646 for ; Tue, 15 Apr 2003 11:55:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FItcbF070992 for ; Tue, 15 Apr 2003 11:55:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FItbBp078900 for ; Tue, 15 Apr 2003 11:55:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FItbql078899; Tue, 15 Apr 2003 11:55:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304151855.h3FItbql078899@xorpc.icir.org> Date: Tue, 15 Apr 2003 11:55:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in xorp/libxorp/ ether_compat.h xorp/mfea/ mfea_unix_rtread_sysctl.cc xorp/mld6igmp/ igmp_proto.h xorp/mrt/include/ ip_mroute.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/include/ Changes by: pavlin@xorpc.icir.org. 03/04/15 11:55:37 Modified files: ./: config.h.in configure configure.in xorp/libxorp/: ether_compat.h xorp/mfea/: mfea_unix_rtread_sysctl.cc xorp/mld6igmp/: igmp_proto.h xorp/mrt/include/: ip_mroute.h Log message: Add compilation fixes for NetBSD-current (and probably NetBSD-1.6.1). Courtesy Hitoshi Asaeda _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 12:22:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 12:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FJN2F9024304 for ; Tue, 15 Apr 2003 12:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FJN2bF071192 for ; Tue, 15 Apr 2003 12:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA04328; Tue, 15 Apr 2003 12:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA04318 for ; Tue, 15 Apr 2003 12:22:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FJMTbF071190 for ; Tue, 15 Apr 2003 12:22:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FJMTBp090877 for ; Tue, 15 Apr 2003 12:22:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FJMTO5090876; Tue, 15 Apr 2003 12:22:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304151922.h3FJMTO5090876@xorpc.icir.org> Date: Tue, 15 Apr 2003 12:22:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ security.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/15 12:22:29 Added files: xorp/docs/libxipc/: security.txt Log message: Add a note on current state of XRL security and a proposed change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:29 2005 Subject: No subject Tue Apr 15 15:23:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 15:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMO2F9037876 for ; Tue, 15 Apr 2003 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMO2bF072683; Tue, 15 Apr 2003 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA08362; Tue, 15 Apr 2003 15:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA08346 for ; Tue, 15 Apr 2003 15:23:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMNRbF072679 for ; Tue, 15 Apr 2003 15:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMNRBp039604 for ; Tue, 15 Apr 2003 15:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FMNR97039603; Tue, 15 Apr 2003 15:23:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304152223.h3FMNR97039603@xorpc.icir.org> Date: Tue, 15 Apr 2003 15:23:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/04/15 15:23:27 Modified files: xorp/devnotes/: WORKPLAN Log message: Add few TODO items for the next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 15:31:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 15:32:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMW3F9038565 for ; Tue, 15 Apr 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMW3bF072761 for ; Tue, 15 Apr 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA08526; Tue, 15 Apr 2003 15:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA08514 for ; Tue, 15 Apr 2003 15:31:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMVjbF072755 for ; Tue, 15 Apr 2003 15:31:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMVjBp039709 for ; Tue, 15 Apr 2003 15:31:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FMVjTj039708; Tue, 15 Apr 2003 15:31:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304152231.h3FMVjTj039708@xorpc.icir.org> Date: Tue, 15 Apr 2003 15:31:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/figs/ error_dependency.eps error_dependency.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/figs/ Changes by: pavlin@xorpc.icir.org. 03/04/15 15:31:45 Modified files: xorp/docs/design_arch/figs/: error_dependency.eps error_dependency.fig Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 15:52:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 15:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMr3F9040265 for ; Tue, 15 Apr 2003 15:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMr2bF072923 for ; Tue, 15 Apr 2003 15:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA09030; Tue, 15 Apr 2003 15:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA09014 for ; Tue, 15 Apr 2003 15:52:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMq1bF072921 for ; Tue, 15 Apr 2003 15:52:01 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3FMq1Bp039892 for ; Tue, 15 Apr 2003 15:52:01 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3FMq1ZH039891; Tue, 15 Apr 2003 15:52:01 -0700 (PDT) (envelope-from kohler) From: Eddie Kohler Message-Id: <200304152252.h3FMq1ZH039891@xorpc.icir.org> Date: Tue, 15 Apr 2003 15:52:01 () To: xorp-cvs@icir.org Reply-To: kohler@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: kohler@xorpc.icir.org. 03/04/15 15:52:01 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 17:25:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 17:26:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G0Q4F9047432 for ; Tue, 15 Apr 2003 17:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G0Q4bF073674; Tue, 15 Apr 2003 17:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11208; Tue, 15 Apr 2003 17:26:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id RAA11194 for ; Tue, 15 Apr 2003 17:25:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G0PMbF073670 for ; Tue, 15 Apr 2003 17:25:22 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G0PMBp074473 for ; Tue, 15 Apr 2003 17:25:22 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G0PMf3074472; Tue, 15 Apr 2003 17:25:22 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304160025.h3G0PMf3074472@xorpc.icir.org> Date: Tue, 15 Apr 2003 17:25:22 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: jcardona@xorpc.icir.org. 03/04/15 17:25:22 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Minor typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 20:13:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 20:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3E3F9060555 for ; Tue, 15 Apr 2003 20:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3E3bF074850; Tue, 15 Apr 2003 20:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14049; Tue, 15 Apr 2003 20:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14020 for ; Tue, 15 Apr 2003 20:13:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3DcbF074848 for ; Tue, 15 Apr 2003 20:13:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3DcBp090684 for ; Tue, 15 Apr 2003 20:13:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G3Dcek090683; Tue, 15 Apr 2003 20:13:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160313.h3G3Dcek090683@xorpc.icir.org> Date: Tue, 15 Apr 2003 20:13:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/04/15 20:13:37 Modified files: xorp/mibs/: .cvsignore Log message: Add test_xorpevents to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 20:37:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 20:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3c3F9062356 for ; Tue, 15 Apr 2003 20:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3c2bF075008 for ; Tue, 15 Apr 2003 20:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14366; Tue, 15 Apr 2003 20:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id UAA14355 for ; Tue, 15 Apr 2003 20:37:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3blbF075006 for ; Tue, 15 Apr 2003 20:37:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G3blBp001711 for ; Tue, 15 Apr 2003 20:37:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G3blQ2001710; Tue, 15 Apr 2003 20:37:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160337.h3G3blQ2001710@xorpc.icir.org> Date: Tue, 15 Apr 2003 20:37:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ ltmain.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/15 20:37:47 Modified files: xorp/config/: ltmain.sh Log message: (Carefully) replace the ltmain.sh from FreeBSD (libtool version 1.3.4) with ltmain.sh from Linux RedHat 7.3 (libtool version 1.4). The reason for the update is rather complicated: * If we run "libtoolize" inside "bootstrap" with flag --force, then the following files inside "config" are updated with the default version from the OS: config/config.guess config/config.sub config/ltconfig (not generated by libtool-1.4) config/ltmain.sh However, we definitely don't want config.guess and config.sub to be replaced, because only recent versions like the one we have do support MacOS. Unfortunately, libtoolize-1.3.4 and libtoolize-1.4 and not fully compatible: if we run libtoolize-1.4 that uses config/ltmain.sh that comes from libtool-1.3.4, then the result autogenerated ./libtool fails because of version mismatch. Interestingly, newer ltmain.sh (such the one from libtool 1.4) do not perform such version checking. After comparing ltmain.sh-1.3.4 and ltmain.sh-1.4, it appears that ltmain.sh-1.4 should work as well on both FreeBSD and Linux, because actually it is the one that does all the hard libtool work (modulo that ltmain.sh-1.4 prints a linking warning inside directory mibs, but probably this warning is a valid one). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 21:39:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 21:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4e2F9066987 for ; Tue, 15 Apr 2003 21:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4e2bF075406 for ; Tue, 15 Apr 2003 21:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15195; Tue, 15 Apr 2003 21:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15188 for ; Tue, 15 Apr 2003 21:39:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4dRbF075401 for ; Tue, 15 Apr 2003 21:39:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4dRBp051807 for ; Tue, 15 Apr 2003 21:39:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G4dRhf051806; Tue, 15 Apr 2003 21:39:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160439.h3G4dRhf051806@xorpc.icir.org> Date: Tue, 15 Apr 2003 21:39:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/15 21:39:27 Modified files: ./: acconfig.h config.h.in configure xorp/config/: acipv6.m4 Log message: Add a check whether netinet/icmp6.h contains "struct mld_hdr" The reason for this check is because on systems running older KAME version (e.g., FreeBSD-4.3) the name is mld6_hdr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 21:53:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 21:54:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4s4F9068049 for ; Tue, 15 Apr 2003 21:54:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4s4bF075505; Tue, 15 Apr 2003 21:54:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15422; Tue, 15 Apr 2003 21:54:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15399 for ; Tue, 15 Apr 2003 21:53:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4ribF075498 for ; Tue, 15 Apr 2003 21:53:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4riBp064345 for ; Tue, 15 Apr 2003 21:53:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G4riba064344; Tue, 15 Apr 2003 21:53:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160453.h3G4riba064344@xorpc.icir.org> Date: Tue, 15 Apr 2003 21:53:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc mld6_proto.h mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_node.cc mld6igmp_node.hh mld6igmp_proto.cc ...mld6igmp_vif.cc ...mld6igmp_vif.hh ...test_mld6igmp.cc ...xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/04/15 21:53:44 Modified files: xorp/mld6igmp/: mld6_proto.cc mld6_proto.h mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_node.cc mld6igmp_node.hh mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xrl_mld6igmp_node.hh Log message: * Add MLD-related backward-compatibility definitions: On newer systems, all MLD-related definitions use mld_xxx and MLD_XXX instead of mld6_xxx and MLD6_XXX, and use everywhere the newer MLD_XXX definitions. * Replace some of the locally defined MLD6_XXX with MLD_XXX * Update some of the comments to use MLD as the protocol name instead of MLD6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 21:56:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 21:57:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4v3F9068285 for ; Tue, 15 Apr 2003 21:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4v3bF075536 for ; Tue, 15 Apr 2003 21:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15470; Tue, 15 Apr 2003 21:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA15459 for ; Tue, 15 Apr 2003 21:56:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4u1bF075534 for ; Tue, 15 Apr 2003 21:56:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G4u1Bp064601 for ; Tue, 15 Apr 2003 21:56:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G4u1ox064600; Tue, 15 Apr 2003 21:56:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160456.h3G4u1ox064600@xorpc.icir.org> Date: Tue, 15 Apr 2003 21:56:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/04/15 21:56:01 Modified files: xorp/mld6igmp/: TODO Log message: Remove a TODO entry that is already DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 22:11:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 22:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5C2F9069427 for ; Tue, 15 Apr 2003 22:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5C2bF075634 for ; Tue, 15 Apr 2003 22:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA15678; Tue, 15 Apr 2003 22:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA15661 for ; Tue, 15 Apr 2003 22:11:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5B6bF075629 for ; Tue, 15 Apr 2003 22:11:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5B6Bp064823 for ; Tue, 15 Apr 2003 22:11:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G5B6nL064822; Tue, 15 Apr 2003 22:11:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160511.h3G5B6nL064822@xorpc.icir.org> Date: Tue, 15 Apr 2003 22:11:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/15 22:11:06 Modified files: ./: acconfig.h config.h.in Log message: Conditionally define mld_hdr to mld6_hdr for older IPv6 KAME stacks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 22:12:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 22:13:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5D2F9069511 for ; Tue, 15 Apr 2003 22:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5D2bF075642 for ; Tue, 15 Apr 2003 22:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA15703; Tue, 15 Apr 2003 22:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA15694 for ; Tue, 15 Apr 2003 22:12:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5CTbF075640 for ; Tue, 15 Apr 2003 22:12:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5CTBp064861 for ; Tue, 15 Apr 2003 22:12:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G5CTut064860; Tue, 15 Apr 2003 22:12:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160512.h3G5CTut064860@xorpc.icir.org> Date: Tue, 15 Apr 2003 22:12:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/15 22:12:29 Modified files: xorp/mfea/: mfea_unix_comm.cc Log message: Replace the obsolete "struct mld6_hdr" with "struct mld_hdr" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Tue Apr 15 22:58:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Apr 2003 22:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5x3F9072962 for ; Tue, 15 Apr 2003 22:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5x2bF075934 for ; Tue, 15 Apr 2003 22:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA16322; Tue, 15 Apr 2003 22:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id WAA16309 for ; Tue, 15 Apr 2003 22:58:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5wPbF075932 for ; Tue, 15 Apr 2003 22:58:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G5wPBp078235 for ; Tue, 15 Apr 2003 22:58:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G5wPGP078234; Tue, 15 Apr 2003 22:58:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160558.h3G5wPGP078234@xorpc.icir.org> Date: Tue, 15 Apr 2003 22:58:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure.in configure xorp/libxorp/ xorp.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/15 22:58:24 Modified files: ./: acconfig.h config.h.in configure.in configure xorp/libxorp/: xorp.h Log message: * Removed the check for broken header (as discussed during today's XORP meeting). * Add #include to libxorp/xorp.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 0:45:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 00:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7k3F9080966 for ; Wed, 16 Apr 2003 00:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7k3bF076660 for ; Wed, 16 Apr 2003 00:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA18573; Wed, 16 Apr 2003 00:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA18554 for ; Wed, 16 Apr 2003 00:45:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7jPbF076651 for ; Wed, 16 Apr 2003 00:45:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7jOBp009878 for ; Wed, 16 Apr 2003 00:45:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G7jOZl009877; Wed, 16 Apr 2003 00:45:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160745.h3G7jOZl009877@xorpc.icir.org> Date: Wed, 16 Apr 2003 0:45:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc xorp/pim/ pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/16 00:45:24 Modified files: xorp/libxorp/: heap.cc xorp/pim/: pim_proto_register.cc Log message: Replace the non-standard bzero() and bcopy() with the POSIX memset() and memcpy() respectively. (NOTE: not applied to ospfd). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 0:45:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 00:46:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7k5F9080978 for ; Wed, 16 Apr 2003 00:46:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7k5bF076666 for ; Wed, 16 Apr 2003 00:46:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA18590; Wed, 16 Apr 2003 00:46:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id AAA18566 for ; Wed, 16 Apr 2003 00:45:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7jsbF076658 for ; Wed, 16 Apr 2003 00:45:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G7jsBp009946 for ; Wed, 16 Apr 2003 00:45:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G7jscE009945; Wed, 16 Apr 2003 00:45:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304160745.h3G7jscE009945@xorpc.icir.org> Date: Wed, 16 Apr 2003 0:45:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/16 00:45:54 Modified files: ./: TODO Log message: Remove half of a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 1:05:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 01:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G862F9082490 for ; Wed, 16 Apr 2003 01:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G862bF076866 for ; Wed, 16 Apr 2003 01:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA18841; Wed, 16 Apr 2003 01:06:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA18825 for ; Wed, 16 Apr 2003 01:05:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G85AbF076862 for ; Wed, 16 Apr 2003 01:05:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G85ABp023829 for ; Wed, 16 Apr 2003 01:05:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G85ATu023828; Wed, 16 Apr 2003 01:05:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304160805.h3G85ATu023828@xorpc.icir.org> Date: Wed, 16 Apr 2003 1:05:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in xorp/bgp/ path_attribute.cc path_attribute.hh xorp/libxipc/ hmac_md5.c xorp/libxorp/ xorp.h xorp/rtrmgr/ randomness.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/04/16 01:05:10 Modified files: ./: configure.in xorp/bgp/: path_attribute.cc path_attribute.hh xorp/libxipc/: hmac_md5.c xorp/libxorp/: xorp.h xorp/rtrmgr/: randomness.cc Log message: Change to use OpenSSL MD5 implementation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 1:07:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 01:08:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G883F9082641 for ; Wed, 16 Apr 2003 01:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G883bF076895 for ; Wed, 16 Apr 2003 01:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA18893; Wed, 16 Apr 2003 01:08:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id BAA18872 for ; Wed, 16 Apr 2003 01:07:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G87IbF076878 for ; Wed, 16 Apr 2003 01:07:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3G87IBp025156 for ; Wed, 16 Apr 2003 01:07:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3G87IqR025155; Wed, 16 Apr 2003 01:07:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304160807.h3G87IqR025155@xorpc.icir.org> Date: Wed, 16 Apr 2003 1:07:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/16 01:07:18 Modified files: ./: config.h.in configure Log message: Remove references to md5global.h. Re-generate configure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 8:53:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 08:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFs3F9019545 for ; Wed, 16 Apr 2003 08:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFs3bF081017; Wed, 16 Apr 2003 08:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA26993; Wed, 16 Apr 2003 08:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA26965 for ; Wed, 16 Apr 2003 08:53:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFrGbF081013 for ; Wed, 16 Apr 2003 08:53:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFrGBp020060 for ; Wed, 16 Apr 2003 08:53:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GFrG95020054; Wed, 16 Apr 2003 08:53:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304161553.h3GFrG95020054@xorpc.icir.org> Date: Wed, 16 Apr 2003 8:53:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/04/16 08:53:15 Modified files: xorp/mld6igmp/: mld6_proto.h Log message: Fix the conditional definition of MLDV2_LISTENER_REPORT _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 8:54:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 08:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFt2F9019632 for ; Wed, 16 Apr 2003 08:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFt2bF081038; Wed, 16 Apr 2003 08:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA27040; Wed, 16 Apr 2003 08:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA27022 for ; Wed, 16 Apr 2003 08:54:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFsgbF081025 for ; Wed, 16 Apr 2003 08:54:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFsgBp020158 for ; Wed, 16 Apr 2003 08:54:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GFsg3L020157; Wed, 16 Apr 2003 08:54:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304161554.h3GFsg3L020157@xorpc.icir.org> Date: Wed, 16 Apr 2003 8:54:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_osdep.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/16 08:54:42 Modified files: xorp/mfea/: mfea_unix_osdep.hh Log message: Add conditional definitions of MLD_XXX from MLD6_XXX _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 8:56:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 08:57:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFv2F9019793 for ; Wed, 16 Apr 2003 08:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFv2bF081073; Wed, 16 Apr 2003 08:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA27087; Wed, 16 Apr 2003 08:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id IAA27067 for ; Wed, 16 Apr 2003 08:56:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFuGbF081067 for ; Wed, 16 Apr 2003 08:56:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GFuGBp020701 for ; Wed, 16 Apr 2003 08:56:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GFuGI0020700; Wed, 16 Apr 2003 08:56:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304161556.h3GFuGI0020700@xorpc.icir.org> Date: Wed, 16 Apr 2003 8:56:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/16 08:56:16 Modified files: xorp/mfea/: mfea_unix_comm.cc Log message: * Replace all obsolete MLD6_XXX with MLD_XXX * Replace the ICMP6_MEMBERSHIP_XXX MLD filters with their corresponding MLD_XXX filters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 9:39:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 09:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GGe3F9023044 for ; Wed, 16 Apr 2003 09:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GGe3bF081455; Wed, 16 Apr 2003 09:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA28009; Wed, 16 Apr 2003 09:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id JAA27992 for ; Wed, 16 Apr 2003 09:39:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GGdHbF081445 for ; Wed, 16 Apr 2003 09:39:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GGdHBp043736 for ; Wed, 16 Apr 2003 09:39:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GGdH59043735; Wed, 16 Apr 2003 09:39:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304161639.h3GGdH59043735@xorpc.icir.org> Date: Wed, 16 Apr 2003 9:39:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.h mld6_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/04/16 09:39:17 Modified files: xorp/mld6igmp/: igmp_proto.h mld6_proto.h Log message: Add few IGMPv3 and MLDv2 related definitions (courtesy Hitoshi Asaeda ) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:30 2005 Subject: No subject Wed Apr 16 12:20:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 12:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJL3F9035276 for ; Wed, 16 Apr 2003 12:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJL3bF082847 for ; Wed, 16 Apr 2003 12:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA01831; Wed, 16 Apr 2003 12:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA01822 for ; Wed, 16 Apr 2003 12:20:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJKNbF082843 for ; Wed, 16 Apr 2003 12:20:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJKNBp048349 for ; Wed, 16 Apr 2003 12:20:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GJKNDu048348; Wed, 16 Apr 2003 12:20:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304161920.h3GJKNDu048348@xorpc.icir.org> Date: Wed, 16 Apr 2003 12:20:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/16 12:20:22 Modified files: ./: configure.in configure Log message: OpenSSL probing refinements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Wed Apr 16 12:31:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 12:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJW2F9036107 for ; Wed, 16 Apr 2003 12:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJW2bF082930 for ; Wed, 16 Apr 2003 12:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA02044; Wed, 16 Apr 2003 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA02035 for ; Wed, 16 Apr 2003 12:31:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJVbbF082928 for ; Wed, 16 Apr 2003 12:31:37 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GJVbBp056790 for ; Wed, 16 Apr 2003 12:31:37 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GJVbsA056789; Wed, 16 Apr 2003 12:31:37 -0700 (PDT) (envelope-from kohler) From: Eddie Kohler Message-Id: <200304161931.h3GJVbsA056789@xorpc.icir.org> Date: Wed, 16 Apr 2003 12:31:37 () To: xorp-cvs@icir.org Reply-To: kohler@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: kohler@xorpc.icir.org. 03/04/16 12:31:37 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: error document: merge my suggested text and Orion's changes; makes XRL error handling more explicit _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Wed Apr 16 15:05:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Apr 2003 15:06:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GM64F9047648 for ; Wed, 16 Apr 2003 15:06:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GM64bF084408; Wed, 16 Apr 2003 15:06:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA05647; Wed, 16 Apr 2003 15:06:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA05612 for ; Wed, 16 Apr 2003 15:05:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GM5ObF084395 for ; Wed, 16 Apr 2003 15:05:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3GM5OBp093647 for ; Wed, 16 Apr 2003 15:05:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3GM5OEi093646; Wed, 16 Apr 2003 15:05:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304162205.h3GM5OEi093646@xorpc.icir.org> Date: Wed, 16 Apr 2003 15:05:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/16 15:05:24 Modified files: ./: configure Log message: Remove echo command that was unintentionally included in earlier commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Thu Apr 17 14:14:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Apr 2003 14:15:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HLF3F9062420 for ; Thu, 17 Apr 2003 14:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HLF2bF095557 for ; Thu, 17 Apr 2003 14:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA05000; Thu, 17 Apr 2003 14:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id OAA04984 for ; Thu, 17 Apr 2003 14:14:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HLEKbF095548 for ; Thu, 17 Apr 2003 14:14:20 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HLEKBp069122 for ; Thu, 17 Apr 2003 14:14:20 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3HLEKDD069121; Thu, 17 Apr 2003 14:14:20 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304172114.h3HLEKDD069121@xorpc.icir.org> Date: Thu, 17 Apr 2003 14:14:20 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex xorp/docs/design_arch/figs/ error_dependency.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/figs/ Changes by: mjh@xorpc.icir.org. 03/04/17 14:14:20 Modified files: xorp/docs/design_arch/: error_handling.tex xorp/docs/design_arch/figs/: error_dependency.eps Log message: Rephrasing to improve readability. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Thu Apr 17 16:39:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Apr 2003 16:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HNe3F9079700 for ; Thu, 17 Apr 2003 16:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HNe3bF096881; Thu, 17 Apr 2003 16:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA08065; Thu, 17 Apr 2003 16:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA08055 for ; Thu, 17 Apr 2003 16:39:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HNdebF096876 for ; Thu, 17 Apr 2003 16:39:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3HNdeBp081079 for ; Thu, 17 Apr 2003 16:39:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3HNdewp081078; Thu, 17 Apr 2003 16:39:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304172339.h3HNdewp081078@xorpc.icir.org> Date: Thu, 17 Apr 2003 16:39:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: mjh@xorpc.icir.org. 03/04/17 16:39:40 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Add section on handling route add failures that are caused by resource starvation in the RIB for forwarding engine. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Thu Apr 17 21:52:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Apr 2003 21:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3I4r3F9016778 for ; Thu, 17 Apr 2003 21:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3I4r3bF099197; Thu, 17 Apr 2003 21:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA12807; Thu, 17 Apr 2003 21:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id VAA12792 for ; Thu, 17 Apr 2003 21:52:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3I4qBbF099195 for ; Thu, 17 Apr 2003 21:52:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3I4qBBp090267 for ; Thu, 17 Apr 2003 21:52:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3I4qBSa090266; Thu, 17 Apr 2003 21:52:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304180452.h3I4qBSa090266@xorpc.icir.org> Date: Thu, 17 Apr 2003 21:52:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom.hh xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh test_ipv4.cc test_ipv4net.cc test_ipv6.cc test_ipv6net.cc test_ipvx.cc test_ipvxnet.cc xorp/mfea/ xrl_mfea_node.cc xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/17 21:52:10 Modified files: xorp/libxipc/: xrl_atom.hh xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh test_ipv4.cc test_ipv4net.cc test_ipv6.cc test_ipv6net.cc test_ipvx.cc test_ipvxnet.cc xorp/mfea/: xrl_mfea_node.cc xorp/pim/: xrl_pim_node.cc Log message: * IPvXNet methods renaming: IPvXNet::get_ipv4Net() -> IPvXNet::get_ipv4net() IPvXNet::get_ipv6Net() -> IPvXNet::get_ipv6net() * Change the prototypes of the above methods as well as some other IPv{4,6,X} and IPv{4,6,X}Net methods to make it clear whenever they may throw exceptions. * Add the appropriate tests to test_ipv{4,6,X} and test_ipv{4,6,X}net to test those exceptions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Fri Apr 18 12:42:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Apr 2003 12:43:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJh3F9017745 for ; Fri, 18 Apr 2003 12:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJh2bF006350; Fri, 18 Apr 2003 12:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA27804; Fri, 18 Apr 2003 12:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA27792 for ; Fri, 18 Apr 2003 12:42:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJgdbF006347 for ; Fri, 18 Apr 2003 12:42:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJgdBp055825 for ; Fri, 18 Apr 2003 12:42:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3IJgdEI055824; Fri, 18 Apr 2003 12:42:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304181942.h3IJgdEI055824@xorpc.icir.org> Date: Fri, 18 Apr 2003 12:42:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in packets.hh port.cc port.hh test_packets.cc xorp/rip/ auth.cc auth.hh test_auth.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/18 12:42:39 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in packets.hh port.cc port.hh test_packets.cc Added files: xorp/rip/: auth.cc auth.hh test_auth.cc Log message: Add authentication code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Fri Apr 18 12:45:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Apr 2003 12:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJk3F9017981 for ; Fri, 18 Apr 2003 12:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJk3bF006385; Fri, 18 Apr 2003 12:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA27868; Fri, 18 Apr 2003 12:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA27855 for ; Fri, 18 Apr 2003 12:45:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJjdbF006383 for ; Fri, 18 Apr 2003 12:45:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJjcBp056783 for ; Fri, 18 Apr 2003 12:45:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3IJjcef056782; Fri, 18 Apr 2003 12:45:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304181945.h3IJjcef056782@xorpc.icir.org> Date: Fri, 18 Apr 2003 12:45:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/18 12:45:38 Modified files: xorp/rip/: update_queue.cc Log message: Fix a wideboy comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Fri Apr 18 12:57:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Apr 2003 12:58:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJw3F9018874 for ; Fri, 18 Apr 2003 12:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJw3bF006491; Fri, 18 Apr 2003 12:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA28096; Fri, 18 Apr 2003 12:58:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id MAA28065 for ; Fri, 18 Apr 2003 12:57:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJv4bF006479 for ; Fri, 18 Apr 2003 12:57:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IJv4Bp062840 for ; Fri, 18 Apr 2003 12:57:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3IJv4Q7062839; Fri, 18 Apr 2003 12:57:04 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304181957.h3IJv4Q7062839@xorpc.icir.org> Date: Fri, 18 Apr 2003 12:57:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/04/18 12:57:04 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Update BGP->RIB route add/delete interface to match error handling guidelines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Fri Apr 18 15:25:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Apr 2003 15:26:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IMQ4F9033262 for ; Fri, 18 Apr 2003 15:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IMQ4bF007913; Fri, 18 Apr 2003 15:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01459; Fri, 18 Apr 2003 15:26:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id PAA01445 for ; Fri, 18 Apr 2003 15:25:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IMPobF007911 for ; Fri, 18 Apr 2003 15:25:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3IMPoBp089707 for ; Fri, 18 Apr 2003 15:25:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3IMPo3O089706; Fri, 18 Apr 2003 15:25:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304182225.h3IMPo3O089706@xorpc.icir.org> Date: Fri, 18 Apr 2003 15:25:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_asyncio.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/18 15:25:50 Modified files: xorp/libxorp/: test_asyncio.cc Log message: Include file re-ordering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Fri Apr 18 16:27:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Apr 2003 16:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3INS3F9040076 for ; Fri, 18 Apr 2003 16:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3INS3bF008360; Fri, 18 Apr 2003 16:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA02665; Fri, 18 Apr 2003 16:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id QAA02646 for ; Fri, 18 Apr 2003 16:27:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3INRibF008358 for ; Fri, 18 Apr 2003 16:27:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3INRiBp097768 for ; Fri, 18 Apr 2003 16:27:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3INRino097767; Fri, 18 Apr 2003 16:27:44 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304182327.h3INRino097767@xorpc.icir.org> Date: Fri, 18 Apr 2003 16:27:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/04/18 16:27:44 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh Log message: Some restructuring and renaming of the NextHop lookup request queue class, to make it clearer what is doing what. This is a precursor to changing the code to handle XRL errors correctly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sat Apr 19 13:39:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Apr 2003 13:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3JKe3F9039813 for ; Sat, 19 Apr 2003 13:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3JKe3bF019396; Sat, 19 Apr 2003 13:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA19173; Sat, 19 Apr 2003 13:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by ICSI.Berkeley.EDU (8.9.0/8.9.0) with ESMTP id NAA19163 for ; Sat, 19 Apr 2003 13:39:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3JKdkbF019391 for ; Sat, 19 Apr 2003 13:39:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3JKdkBp065148 for ; Sat, 19 Apr 2003 13:39:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3JKdkhv065147; Sat, 19 Apr 2003 13:39:46 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304192039.h3JKdkhv065147@xorpc.icir.org> Date: Sat, 19 Apr 2003 13:39:46 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/04/19 13:39:46 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh Log message: Substantial re-write of NextHopResolver's handling of XRL requests and responses to/from the RIB to handle XRL errors correctly. Deregister requests are now queued in the same queue as Register requests, so in the even of a transient error, no reordering can occur. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 15:29:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 15:30:19 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KMUJF9057267 for ; Sun, 20 Apr 2003 15:30:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KMUIbF029792 for ; Sun, 20 Apr 2003 15:30:18 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3KMU7ap016226; Sun, 20 Apr 2003 15:30:08 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3KMTGap016214 for ; Sun, 20 Apr 2003 15:29:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KMTGbF029770 for ; Sun, 20 Apr 2003 15:29:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KMTGBp050151 for ; Sun, 20 Apr 2003 15:29:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3KMTGDD050150; Sun, 20 Apr 2003 15:29:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304202229.h3KMTGDD050150@xorpc.icir.org> Date: Sun, 20 Apr 2003 15:29:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/20 15:29:16 Modified files: xorp/config/: acipv6.m4 ./: configure Log message: * Remove bogus dnl comment from config/acipv6.m4 that is at the wrong place (that comment works for autoconf-2.13, but shoudn't be there for for autoconf-2.5*) * Regenerate "configure" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 16:21:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 16:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KNM3F9061110 for ; Sun, 20 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KNM3bF030096; Sun, 20 Apr 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3KNM2ap016633; Sun, 20 Apr 2003 16:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3KNLdap016623 for ; Sun, 20 Apr 2003 16:21:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KNLdbF030094 for ; Sun, 20 Apr 2003 16:21:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3KNLdBp067803 for ; Sun, 20 Apr 2003 16:21:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3KNLdUc067802; Sun, 20 Apr 2003 16:21:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304202321.h3KNLdUc067802@xorpc.icir.org> Date: Sun, 20 Apr 2003 16:21:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/20 16:21:39 Modified files: ./: configure.in configure Log message: * Apply few fixes to configure.in Now configure.in should work for both autoconf-2.13 and the new autoconf-2.50+ (modulo few extra warnings). (those fixes and the config/acipv6.m4 fix courtesy Javier Cardona) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 17:38:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 17:39:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L0d3F9066844 for ; Sun, 20 Apr 2003 17:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L0d3bF030576; Sun, 20 Apr 2003 17:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L0d2ap017377; Sun, 20 Apr 2003 17:39:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L0c9ap017360 for ; Sun, 20 Apr 2003 17:38:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L0c9bF030572 for ; Sun, 20 Apr 2003 17:38:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L0c8Bp013105 for ; Sun, 20 Apr 2003 17:38:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L0c89v013102; Sun, 20 Apr 2003 17:38:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210038.h3L0c89v013102@xorpc.icir.org> Date: Sun, 20 Apr 2003 17:38:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/20 17:38:08 Modified files: ./: bootstrap Log message: Add comments regarding how "bootstrap" should be modified if we are using newer version of autoconf. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 21:30:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 21:31:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4V3F9084159 for ; Sun, 20 Apr 2003 21:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4V3bF032049; Sun, 20 Apr 2003 21:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4V2ap019613; Sun, 20 Apr 2003 21:31:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4Uwap019605 for ; Sun, 20 Apr 2003 21:30:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4UwbF032047 for ; Sun, 20 Apr 2003 21:30:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4UwBp069165 for ; Sun, 20 Apr 2003 21:30:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L4UwMh069164; Sun, 20 Apr 2003 21:30:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210430.h3L4UwMh069164@xorpc.icir.org> Date: Sun, 20 Apr 2003 21:30:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in bootstrap xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Ma! kefile.in ! xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/04/20 21:30:58 Modified files: ./: Makefile.in bootstrap xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: * Copy aclocal.m4 from config/aclocal.m4 to the local directory. The reason for that is because automake does not provide a command-line option to specify where to look for that file. Indeed, automake recognizes AC_CONFIG_AUX_DIR in configure.in, but that directory is not scanned for aclocal.m4. Note that automake-1.4 somehow works fine even if there is no aclocal.m4 in the local directory. However, never versions of automake (1.5+) depend on aclocal.m4, and would break if it is not in the local directory. * Regenerate all Makefile.in files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 21:32:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 21:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4X2F9084303 for ; Sun, 20 Apr 2003 21:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4X2bF032059; Sun, 20 Apr 2003 21:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4X2ap019642; Sun, 20 Apr 2003 21:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4WMap019629 for ; Sun, 20 Apr 2003 21:32:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4WMbF032057 for ; Sun, 20 Apr 2003 21:32:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4WMBp069463 for ; Sun, 20 Apr 2003 21:32:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L4WMYq069462; Sun, 20 Apr 2003 21:32:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210432.h3L4WMYq069462@xorpc.icir.org> Date: Sun, 20 Apr 2003 21:32:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/20 21:32:22 Modified files: ./: .cvsignore Log message: Add aclocal.m4 to the list of files ignored by CVS. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 21:34:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 21:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4Z3F9084462 for ; Sun, 20 Apr 2003 21:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4Z2bF032072; Sun, 20 Apr 2003 21:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4Z2ap019677; Sun, 20 Apr 2003 21:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L4YMap019663 for ; Sun, 20 Apr 2003 21:34:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4YMbF032065 for ; Sun, 20 Apr 2003 21:34:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L4YLBp070281 for ; Sun, 20 Apr 2003 21:34:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L4YLR5070280; Sun, 20 Apr 2003 21:34:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210434.h3L4YLR5070280@xorpc.icir.org> Date: Sun, 20 Apr 2003 21:34:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/04/20 21:34:21 Modified files: ./: bootstrap Log message: Add forgotten "run" in front of "cp -p config/aclocal.m4 ." _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 22:05:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 22:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L563F9086813 for ; Sun, 20 Apr 2003 22:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L563bF032328; Sun, 20 Apr 2003 22:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L562ap020004; Sun, 20 Apr 2003 22:06:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L559ap019984 for ; Sun, 20 Apr 2003 22:05:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L559bF032324 for ; Sun, 20 Apr 2003 22:05:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L559Bp093989 for ; Sun, 20 Apr 2003 22:05:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L559Uq093988; Sun, 20 Apr 2003 22:05:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210505.h3L559Uq093988@xorpc.icir.org> Date: Sun, 20 Apr 2003 22:05:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap config.h.in xorp/config/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/20 22:05:08 Modified files: ./: bootstrap config.h.in xorp/config/: .cvsignore Log message: * Remove --output=config/aclocal.m4 option when running aclocal hence the generated aclocal.m4 will be in the local top-level directory (by default) instead of inside directory "config". The reason is because if we generate aclocal.m4 inside "config" directory, and then we copy it into the top-level directory, it is a recipe for confusion. * Add "run rm -f config/aclocal.m4" to bootstrap during its initial cleanup stage. * Remove aclocal.m4 from config/.cvsignore * Regenerate config.h.in Note that as a result, now "config.h" will contain two new definitions: /* Name of package */ #define PACKAGE "xorp" /* Version number of package */ #define VERSION "0.2" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 22:17:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 22:18:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5I3F9087705 for ; Sun, 20 Apr 2003 22:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5I3bF032393; Sun, 20 Apr 2003 22:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5I3ap020146; Sun, 20 Apr 2003 22:18:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5Hxap020136 for ; Sun, 20 Apr 2003 22:17:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5HxbF032391 for ; Sun, 20 Apr 2003 22:17:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5HxBp005160 for ; Sun, 20 Apr 2003 22:17:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L5Hx5T005158; Sun, 20 Apr 2003 22:17:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210517.h3L5Hx5T005158@xorpc.icir.org> Date: Sun, 20 Apr 2003 22:17:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ config.guess config.sub Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/20 22:17:58 Modified files: xorp/config/: config.guess config.sub Log message: Update config.guess and config.sub with the lastest version from ftp://ftp.gnu.org/pub/gnu/config/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:31 2005 Subject: No subject Sun Apr 20 22:41:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 22:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5g3F9089501 for ; Sun, 20 Apr 2003 22:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5g3bF032539; Sun, 20 Apr 2003 22:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5g2ap020372; Sun, 20 Apr 2003 22:42:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5f1ap020358 for ; Sun, 20 Apr 2003 22:41:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5f1bF032537 for ; Sun, 20 Apr 2003 22:41:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5f1Bp007351 for ; Sun, 20 Apr 2003 22:41:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L5f1jB007350; Sun, 20 Apr 2003 22:41:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210541.h3L5f1jB007350@xorpc.icir.org> Date: Sun, 20 Apr 2003 22:41:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ install-sh missing mkinstalldirs xorp/config/ depcomp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/20 22:41:00 Modified files: xorp/config/: install-sh missing mkinstalldirs Added files: xorp/config/: depcomp Log message: * Update following utility files with more recent version (the one that comes with automake-1.7.3): - install-sh - missing - mkinstalldirs * Add a new utility file, that is needed by newer versions of automake (automake-1.6+ ?). This file also comes from automake-1.7.3: - depcomp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Sun Apr 20 22:46:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 22:47:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5l3F9089889 for ; Sun, 20 Apr 2003 22:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5l3bF032571; Sun, 20 Apr 2003 22:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5l2ap020432; Sun, 20 Apr 2003 22:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L5kqap020423 for ; Sun, 20 Apr 2003 22:46:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5kqbF032569 for ; Sun, 20 Apr 2003 22:46:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L5kqBp007815 for ; Sun, 20 Apr 2003 22:46:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L5kq9w007814; Sun, 20 Apr 2003 22:46:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210546.h3L5kq9w007814@xorpc.icir.org> Date: Sun, 20 Apr 2003 22:46:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc test_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/04/20 22:46:52 Modified files: xorp/bgp/harness/: coord.cc test_peer.cc Log message: Replace VERSION[] defined inside coord.cc and test_peer.cc with SERVER_VERSION[] due to conflict with the definition of VERSION in the top-level config.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Sun Apr 20 23:41:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Apr 2003 23:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L6g3F9094014 for ; Sun, 20 Apr 2003 23:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L6g3bF032894; Sun, 20 Apr 2003 23:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L6g2ap021446; Sun, 20 Apr 2003 23:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L6fkap021437 for ; Sun, 20 Apr 2003 23:41:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L6fkbF032892 for ; Sun, 20 Apr 2003 23:41:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L6fkBp033942 for ; Sun, 20 Apr 2003 23:41:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L6fkWl033941; Sun, 20 Apr 2003 23:41:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210641.h3L6fkWl033941@xorpc.icir.org> Date: Sun, 20 Apr 2003 23:41:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xorp/libxipc/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/04/20 23:41:46 Modified files: xorp/fea/: Makefile.am Makefile.in xorp/libxipc/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in Log message: Apply various fixes to Makefile.am files: - The first time a variable foo_BAR is used, it must be assigned with "=" rather than "+=" - Remove redefinitions of same foo_BAR Now newer versions of automake (e.g., 1.5 and 1.6) can be used as well (almost). The only place that newer automake fail is in fea/Makefile.am (the creation of the "fea" symbolic link, but later this will be refactored). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Mon Apr 21 1:20:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Apr 2003 01:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L8L3F9001563 for ; Mon, 21 Apr 2003 01:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L8L3bF033555; Mon, 21 Apr 2003 01:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L8L3ap022762; Mon, 21 Apr 2003 01:21:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3L8KZap022753 for ; Mon, 21 Apr 2003 01:20:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L8KZbF033553 for ; Mon, 21 Apr 2003 01:20:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3L8KZBp019372 for ; Mon, 21 Apr 2003 01:20:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3L8KZvH019371; Mon, 21 Apr 2003 01:20:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304210820.h3L8KZvH019371@xorpc.icir.org> Date: Mon, 21 Apr 2003 1:20:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ acconfig.h config.h.in configure configure.in xorp/config/ acipv6.m4 acxorp.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/04/21 01:20:35 Modified files: ./: acconfig.h config.h.in configure configure.in xorp/config/: acipv6.m4 acxorp.m4 Log message: Change all AC_DEFINE(FOO) to AC_DEFINE(FOO, 1, [Define to 1 if blah-blah]) At the same time, remove all #undef FOO from acconfig.h Thus, configure.in and the local .m4 files are more self-containing, because if we use the three-argument version of AC_DEFINE, then we don't need to add #undef FOO in acconfig.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Mon Apr 21 8:39:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Apr 2003 08:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LFe3F9037972 for ; Mon, 21 Apr 2003 08:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LFe3bF037018; Mon, 21 Apr 2003 08:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LFe2ap029173; Mon, 21 Apr 2003 08:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LFdbap029161 for ; Mon, 21 Apr 2003 08:39:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LFdabF037011 for ; Mon, 21 Apr 2003 08:39:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LFdaBp011563 for ; Mon, 21 Apr 2003 08:39:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3LFdai2011562; Mon, 21 Apr 2003 08:39:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304211539.h3LFdai2011562@xorpc.icir.org> Date: Mon, 21 Apr 2003 8:39:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in test_timers.cc xorp/rip/ test_timers_update.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/21 08:39:36 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in test_timers.cc Removed files: xorp/rip/: test_timers_update.cc Log message: Rename test_timers_update.cc -> test_timers.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Mon Apr 21 12:19:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Apr 2003 12:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LJK3F9065932 for ; Mon, 21 Apr 2003 12:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LJK2bF039142; Mon, 21 Apr 2003 12:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LJK2KJ003989; Mon, 21 Apr 2003 12:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LJJhKJ003969 for ; Mon, 21 Apr 2003 12:19:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LJJhbF039137 for ; Mon, 21 Apr 2003 12:19:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LJJhBp046734 for ; Mon, 21 Apr 2003 12:19:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3LJJh4o046733; Mon, 21 Apr 2003 12:19:43 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304211919.h3LJJh4o046733@xorpc.icir.org> Date: Mon, 21 Apr 2003 12:19:43 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/04/21 12:19:43 Modified files: xorp/rib/: main_rib.cc Log message: Add FEA rib client for IPv6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Mon Apr 21 15:02:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Apr 2003 15:03:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LM33F9082725 for ; Mon, 21 Apr 2003 15:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LM33bF040468; Mon, 21 Apr 2003 15:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LM32KJ006941; Mon, 21 Apr 2003 15:03:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LM2vKJ006932 for ; Mon, 21 Apr 2003 15:02:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LM2vbF040466 for ; Mon, 21 Apr 2003 15:02:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LM2vBp091881 for ; Mon, 21 Apr 2003 15:02:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3LM2ug7091880; Mon, 21 Apr 2003 15:02:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304212202.h3LM2ug7091880@xorpc.icir.org> Date: Mon, 21 Apr 2003 15:02:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/figs/ mfea_design_overview.eps xorp/docs/mld6igmp/figs/ mld6igmp_design_overview.eps xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_proto_abstraction.eps xorp/docs/pim/figs/ pim_design_overview.eps xorp/docs/pim_testsuite/figs/ pim_test_1_1_basic_interoperability.eps pim_test_2_1_hello_transmission.eps pim_test_2_2_two_way_neighbor_adjacency.eps ...pim_test_2_3_hello_reception.eps ...pim_test_2_4_holdtime_option.eps ...pim_test_2_5_dr_priority_option.eps ...pim_test_2_6_generation_id_option.eps ...pim_test_2_7_two_way_neighbor_adjacency_without_hello_messages.eps ...pim_test_3_1_register_messages_transmission.eps ...pim_test_3_2_register_tunnel_interface.eps ...pim_test_3_3_register_messages_reception.eps ...pim_test_4_1_receiving_rp_join_prune_messages.eps ...pim_test_! 4_2_receivi! ng_wc_join_prune_messages.eps ...pim_test_4_3_receiving_sg_join_prune_messages.eps ...pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps ...pim_test_4_5_sending_rp_join_prune_messages.eps ...pim_test_4_6_sending_wc_join_prune_messages.eps ...pim_test_4_7_sending_sg_join_prune_messages.eps ...pim_test_4_8_sg_rpt_periodic_messages.eps ...pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps ...pim_test_5_1_sg_assert_message_state_machine.eps ...pim_test_5_2_wc_assert_message_state_machine.eps ...pim_test_6_1_candidate_bsr_state_machine.eps ...pim_test_6_3_sending_candidate_rp_advertisements.eps ...pim_test_6_4_creating_the_rp_set_at_the_bsr.eps ...pim_test_6_5_forwarding_bootstrap_messages.eps ...pim_test_6_6_receiving_and_using_the_rp_set.eps ...pim_test_6_7_semantic_fragmentation_of_bsms.eps ...template_lan.eps ...template_receiver.eps ...template_rut.eps ...template_rut_tr1_tr2.eps ...template_sender.eps ...template_tr.eps xorp/libxipc/ test! _finder_tcp.cc xorp/mfea/ mfea_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: mjh@xorpc.icir.org. 03/04/21 15:02:56 Modified files: xorp/docs/mfea/figs/: mfea_design_overview.eps xorp/docs/mld6igmp/figs/: mld6igmp_design_overview.eps xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_proto_abstraction.eps xorp/docs/pim/figs/: pim_design_overview.eps xorp/docs/pim_testsuite/figs/: pim_test_1_1_basic_interoperability.eps pim_test_2_1_hello_transmission.eps pim_test_2_2_two_way_neighbor_adjacency.eps pim_test_2_3_hello_reception.eps pim_test_2_4_holdtime_option.eps pim_test_2_5_dr_priority_option.eps pim_test_2_6_generation_id_option.eps pim_test_2_7_two_way_neighbor_adjacency_without_hello_messages.eps pim_test_3_1_register_messages_transmission.eps pim_test_3_2_register_tunnel_interface.eps pim_test_3_3_register_messages_reception.eps pim_test_4_1_receiving_rp_join_prune_messages.eps pim_test_4_2_receiving_wc_join_prune_messages.eps pim_test_4_3_receiving_sg_join_prune_messages.eps pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps pim_test_4_5_sending_rp_join_prune_messages.eps pim_test_4_6_sending_wc_join_prune_messages.eps pim_test_4_7_sending_sg_join_prune_messages.eps pim_test_4_8_sg_rpt_periodic_messages.eps pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps pim_test_5_1_sg_assert_message_state_machine.eps pim_test_5_2_wc_assert_message_state_machine.eps pim_test_6_1_candidate_bsr_state_machine.eps pim_test_6_3_sending_candidate_rp_advertisements.eps pim_test_6_4_creating_the_rp_set_at_the_bsr.eps pim_test_6_5_forwarding_bootstrap_messages.eps pim_test_6_6_receiving_and_using_the_rp_set.eps pim_test_6_7_semantic_fragmentation_of_bsms.eps template_lan.eps template_receiver.eps template_rut.eps template_rut_tr1_tr2.eps template_sender.eps template_tr.eps xorp/libxipc/: test_finder_tcp.cc xorp/mfea/: mfea_node_cli.cc Log message: Replace last remaining uses of sprintf with c_format. This doesn't fix any bugs but makes it easier to find potentially-bad contributed code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Mon Apr 21 15:40:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Apr 2003 15:41:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LMf3F9088781 for ; Mon, 21 Apr 2003 15:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LMf2bF040741; Mon, 21 Apr 2003 15:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LMf2KJ007654; Mon, 21 Apr 2003 15:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3LMeCKJ007635 for ; Mon, 21 Apr 2003 15:40:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LMeBbF040734 for ; Mon, 21 Apr 2003 15:40:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3LMeBBp092301 for ; Mon, 21 Apr 2003 15:40:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3LMeB6e092300; Mon, 21 Apr 2003 15:40:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304212240.h3LMeB6e092300@xorpc.icir.org> Date: Mon, 21 Apr 2003 15:40:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/21 15:40:11 Modified files: xorp/libxipc/: test_finder_tcp.cc Log message: Avoid hard coding buffer size. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 9:09:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 09:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGA3F9080188 for ; Tue, 22 Apr 2003 09:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGA2bF048618; Tue, 22 Apr 2003 09:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGA2KJ022364; Tue, 22 Apr 2003 09:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MG9gKJ022353 for ; Tue, 22 Apr 2003 09:09:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MG9gbF048613 for ; Tue, 22 Apr 2003 09:09:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MG9gBp004746 for ; Tue, 22 Apr 2003 09:09:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MG9gYj004745; Tue, 22 Apr 2003 09:09:42 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221609.h3MG9gYj004745@xorpc.icir.org> Date: Tue, 22 Apr 2003 9:09:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/04/22 09:09:42 Modified files: ./: bootstrap Log message: Include docs/mk/Makefile.doc.am on the list of files tested whose modification timestamp is compared against the checkfile. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 9:13:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 09:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGE3F9080514 for ; Tue, 22 Apr 2003 09:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGE3bF048660; Tue, 22 Apr 2003 09:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGE3KJ022475; Tue, 22 Apr 2003 09:14:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGDOKJ022457 for ; Tue, 22 Apr 2003 09:13:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGDNbF048657 for ; Tue, 22 Apr 2003 09:13:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGDNBp005088 for ; Tue, 22 Apr 2003 09:13:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MGDNRL005087; Tue, 22 Apr 2003 09:13:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221613.h3MGDNRL005087@xorpc.icir.org> Date: Tue, 22 Apr 2003 9:13:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mk/ README xorp/docs/mk/ Makefile.fig Makefile.latex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/mk/ Changes by: hodson@xorpc.icir.org. 03/04/22 09:13:23 Modified files: xorp/docs/mk/: README Removed files: xorp/docs/mk/: Makefile.fig Makefile.latex Log message: Remove unused files and references to them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 9:48:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 09:49:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGn3F9083185 for ; Tue, 22 Apr 2003 09:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGn3bF048979; Tue, 22 Apr 2003 09:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGn3KJ023079; Tue, 22 Apr 2003 09:49:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGmtKJ023068 for ; Tue, 22 Apr 2003 09:48:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGmsbF048977 for ; Tue, 22 Apr 2003 09:48:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGmsBp027274 for ; Tue, 22 Apr 2003 09:48:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MGmsIh027273; Tue, 22 Apr 2003 09:48:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221648.h3MGmsIh027273@xorpc.icir.org> Date: Tue, 22 Apr 2003 9:48:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ fig2dev-ps-anon.sed Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/04/22 09:48:54 Added files: xorp/utils/: fig2dev-ps-anon.sed Log message: Add anonymizer for fig2dev generated postscript. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 9:54:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 09:55:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGt3F9083687 for ; Tue, 22 Apr 2003 09:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGt3bF049061; Tue, 22 Apr 2003 09:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGt2KJ023209; Tue, 22 Apr 2003 09:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MGscKJ023200 for ; Tue, 22 Apr 2003 09:54:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGsbbF049053 for ; Tue, 22 Apr 2003 09:54:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MGsbBp028350 for ; Tue, 22 Apr 2003 09:54:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MGsbU9028349; Tue, 22 Apr 2003 09:54:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221654.h3MGsbU9028349@xorpc.icir.org> Date: Tue, 22 Apr 2003 9:54:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/design_arch/figs/ error_dependency.eps xorp/docs/fea/ Makefile.in xorp/docs/fea/figs/ ifi.eps ifmgmt.eps iftreeitem.eps xrl_ifs.eps xorp/docs/libxipc/ Makefile.in xorp/docs/libxipc/figs/ xrl_ifs.eps xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mfea/figs/ mfea_design_overview.eps xorp/docs/mk/ Makefile.doc.am xorp/docs/mld6igmp/ Makefile.in xorp/docs/mld6igmp/figs/ mld6igmp_design_overview.eps xorp/docs/multicast/ Makefile.in xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_proto_abstraction.eps xorp/docs/pim/ Makefile.in xorp/docs/pim/figs/ pim_design_overview.eps xorp/docs/pim_testsuite/ Makefile.in xorp/docs/pim_testsuite/figs/ pim_test_1_1_basic_interoperability.eps pim_test_2_1_hello_transmission.eps ! ! pim_test_2_2_two_way_neighbor_adjacency.eps ...pim_test_2_3_hello_reception.eps ...pim_test_2_4_holdtime_option.eps ...pim_test_2_5_dr_priority_option.eps ...pim_test_2_6_generation_id_option.eps ...pim_test_2_7_two_way_neighbor_adjacency_without_hello_messages.eps ...pim_test_3_1_register_messages_transmission.eps ...pim_test_3_2_register_tunnel_interface.eps ...pim_test_3_3_register_messages_reception.eps ...pim_test_4_1_receiving_rp_join_prune_messages.eps ...pim_test_4_2_receiving_wc_join_prune_messages.eps ...pim_test_4_3_receiving_sg_join_prune_messages.eps ...pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps ...pim_test_4_5_sending_rp_join_prune_messages.eps ...pim_test_4_6_sending_wc_join_prune_messages.eps ...pim_test_4_7_sending_sg_join_prune_messages.eps ...pim_test_4_8_sg_rpt_periodic_messages.eps ...pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps ...pim_test_5_1_sg_assert_message_state_machine.eps ...pim_test_5_2_wc_ass! ert_message_state_machine.eps ...pim_test_6_1_candidate_bsr_s! tate_mac Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/figs/ Changes by: hodson@xorpc.icir.org. 03/04/22 09:54:37 Modified files: xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/design_arch/figs/: error_dependency.eps xorp/docs/fea/: Makefile.in xorp/docs/fea/figs/: ifi.eps ifmgmt.eps iftreeitem.eps xrl_ifs.eps xorp/docs/libxipc/: Makefile.in xorp/docs/libxipc/figs/: xrl_ifs.eps xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mfea/figs/: mfea_design_overview.eps xorp/docs/mk/: Makefile.doc.am xorp/docs/mld6igmp/: Makefile.in xorp/docs/mld6igmp/figs/: mld6igmp_design_overview.eps xorp/docs/multicast/: Makefile.in xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_proto_abstraction.eps xorp/docs/pim/: Makefile.in xorp/docs/pim/figs/: pim_design_overview.eps xorp/docs/pim_testsuite/: Makefile.in xorp/docs/pim_testsuite/figs/: pim_test_1_1_basic_interoperability.eps pim_test_2_1_hello_transmission.eps pim_test_2_2_two_way_neighbor_adjacency.eps pim_test_2_3_hello_reception.eps pim_test_2_4_holdtime_option.eps pim_test_2_5_dr_priority_option.eps pim_test_2_6_generation_id_option.eps pim_test_2_7_two_way_neighbor_adjacency_without_hello_messages.eps pim_test_3_1_register_messages_transmission.eps pim_test_3_2_register_tunnel_interface.eps pim_test_3_3_register_messages_reception.eps pim_test_4_1_receiving_rp_join_prune_messages.eps pim_test_4_2_receiving_wc_join_prune_messages.eps pim_test_4_3_receiving_sg_join_prune_messages.eps pim_test_4_4_receiving_sg_rpt_join_prune_messages.eps pim_test_4_5_sending_rp_join_prune_messages.eps pim_test_4_6_sending_wc_join_prune_messages.eps pim_test_4_7_sending_sg_join_prune_messages.eps pim_test_4_8_sg_rpt_periodic_messages.eps pim_test_4_9_state_machine_for_sg_rpt_triggered_messages.eps pim_test_5_1_sg_assert_message_state_machine.eps pim_test_5_2_wc_assert_message_state_machine.eps pim_test_6_1_candidate_bsr_state_machine.eps pim_test_6_2_non_candidate_bsr_state_machine.eps pim_test_6_3_sending_candidate_rp_advertisements.eps pim_test_6_4_creating_the_rp_set_at_the_bsr.eps pim_test_6_5_forwarding_bootstrap_messages.eps pim_test_6_6_receiving_and_using_the_rp_set.eps pim_test_6_7_semantic_fragmentation_of_bsms.eps template_lan.eps template_receiver.eps template_rut.eps template_rut_tr1_tr2.eps template_sender.eps template_tr.eps xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/snmp/figs/: snmp_fig1.eps xorp/docs/test_harness/: Makefile.in xorp/docs/test_harness/figs/: harness.eps Log message: Change generation method for eps files to strip creation and author info. This should hopefully reduce the number of unnecessary commits to figures. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 10:03:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 10:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MH43F9084422 for ; Tue, 22 Apr 2003 10:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MH43bF049162; Tue, 22 Apr 2003 10:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MH43KJ023398; Tue, 22 Apr 2003 10:04:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MH3iKJ023386 for ; Tue, 22 Apr 2003 10:03:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MH3hbF049158 for ; Tue, 22 Apr 2003 10:03:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MH3hBp028524 for ; Tue, 22 Apr 2003 10:03:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MH3hgi028523; Tue, 22 Apr 2003 10:03:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221703.h3MH3hgi028523@xorpc.icir.org> Date: Tue, 22 Apr 2003 10:03:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/deprecated/ Changes by: hodson@xorpc.icir.org. 03/04/22 10:03:43 xorp/devnotes/deprecated Update of /usr/local/www/data/cvs/xorp/devnotes/deprecated In directory xorpc.icir.org:/tmp/cvs-serv28517/deprecated Log Message: Directory /usr/local/www/data/cvs/xorp/devnotes/deprecated added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 10:10:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 10:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MHB5F9088260 for ; Tue, 22 Apr 2003 10:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MHB5bF049252; Tue, 22 Apr 2003 10:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MHB4KJ023594; Tue, 22 Apr 2003 10:11:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MHAXKJ023552 for ; Tue, 22 Apr 2003 10:10:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MHAXbF049242 for ; Tue, 22 Apr 2003 10:10:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MHAXBp028689 for ; Tue, 22 Apr 2003 10:10:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MHAX1X028688; Tue, 22 Apr 2003 10:10:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221710.h3MHAX1X028688@xorpc.icir.org> Date: Tue, 22 Apr 2003 10:10:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ .cvsignore Makefile xorp/devnotes/deprecated/ README xorp/devnotes/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/deprecated/ Changes by: hodson@xorpc.icir.org. 03/04/22 10:10:33 Modified files: xorp/devnotes/: .cvsignore Makefile Added files: xorp/devnotes/deprecated/: README Removed files: xorp/devnotes/: error_handling.tex Log message: Repo-Copy error_handling.tex to devnotes/deprecated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 11:07:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 11:08:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MI85F9095320 for ; Tue, 22 Apr 2003 11:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MI85bF049787; Tue, 22 Apr 2003 11:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MI84KJ025093; Tue, 22 Apr 2003 11:08:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MI7bKJ025075 for ; Tue, 22 Apr 2003 11:07:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MI7abF049784 for ; Tue, 22 Apr 2003 11:07:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MI7aBp029067 for ; Tue, 22 Apr 2003 11:07:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MI7atd029066; Tue, 22 Apr 2003 11:07:36 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304221807.h3MI7atd029066@xorpc.icir.org> Date: Tue, 22 Apr 2003 11:07:36 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: mjh@xorpc.icir.org. 03/04/22 11:07:36 Modified files: xorp/libxipc/: xrl_router.hh Log message: Add convenience method to access the XrlRouter's eventloop _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 12:20:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 12:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJL3F9008140 for ; Tue, 22 Apr 2003 12:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJL2bF050452; Tue, 22 Apr 2003 12:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJL2KJ026541; Tue, 22 Apr 2003 12:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJKRKJ026525 for ; Tue, 22 Apr 2003 12:20:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJKRbF050450 for ; Tue, 22 Apr 2003 12:20:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJKRBp029678 for ; Tue, 22 Apr 2003 12:20:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MJKQpx029677; Tue, 22 Apr 2003 12:20:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304221920.h3MJKQpx029677@xorpc.icir.org> Date: Tue, 22 Apr 2003 12:20:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc dummy_main.cc main.cc main.hh peer.cc peer_handler.cc peer_handler.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc ...route_table_dump.hh ...route_table_ribin.cc ...route_table_ribin.hh ...socket.cc ...socket.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc xorp/rib/ main_rib.cc parser_xrl_cmds.hh rib_client.cc rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/04/22 12:20:26 Modified files: xorp/bgp/: bgp.cc dummy_main.cc main.cc main.hh peer.cc peer_handler.cc peer_handler.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_ribin.cc route_table_ribin.hh socket.cc socket.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/rib/: main_rib.cc parser_xrl_cmds.hh rib_client.cc rib_manager.cc rib_manager.hh test_register_xrls.cc test_rib_xrls.cc Log message: Rationalize how we pass the eventloop around, what the accessor methods are called, what type they return, and how the eventloop reference is stored. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 12:24:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 12:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJP3F9014077 for ; Tue, 22 Apr 2003 12:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJP2bF050472; Tue, 22 Apr 2003 12:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJP2KJ026617; Tue, 22 Apr 2003 12:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJOCKJ026600 for ; Tue, 22 Apr 2003 12:24:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJOCbF050465 for ; Tue, 22 Apr 2003 12:24:12 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJOBBp033544 for ; Tue, 22 Apr 2003 12:24:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MJOBBM033543; Tue, 22 Apr 2003 12:24:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304221924.h3MJOBBM033543@xorpc.icir.org> Date: Tue, 22 Apr 2003 12:24:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ errors.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/22 12:24:11 Added files: xorp/docs/libxipc/: errors.txt Log message: Document existing and proposed errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 12:42:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 12:43:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJh3F9018652 for ; Tue, 22 Apr 2003 12:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJh3bF050653; Tue, 22 Apr 2003 12:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJh3KJ026961; Tue, 22 Apr 2003 12:43:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MJgJKJ026939 for ; Tue, 22 Apr 2003 12:42:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJgJbF050641 for ; Tue, 22 Apr 2003 12:42:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MJgJBp041193 for ; Tue, 22 Apr 2003 12:42:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MJgJ7h041192; Tue, 22 Apr 2003 12:42:19 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304221942.h3MJgJ7h041192@xorpc.icir.org> Date: Tue, 22 Apr 2003 12:42:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc module_manager.cc module_manager.hh randomness.cc randomness.hh slave_module_manager.cc slave_module_manager.hh xorp_client.cc xorp_client.hh xorpsh_main.cc ...xorpsh_main.hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/22 12:42:19 Modified files: xorp/rtrmgr/: main_rtrmgr.cc module_manager.cc module_manager.hh randomness.cc randomness.hh slave_module_manager.cc slave_module_manager.hh xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: More rationalization of eventloop naming/passing/storage-of-references _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:32 2005 Subject: No subject Tue Apr 22 16:23:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 16:24:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNO4F9048779 for ; Tue, 22 Apr 2003 16:24:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNO3bF052773; Tue, 22 Apr 2003 16:24:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNO3KJ001225; Tue, 22 Apr 2003 16:24:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNNdKJ001213 for ; Tue, 22 Apr 2003 16:23:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNNcbF052771 for ; Tue, 22 Apr 2003 16:23:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNNcBp077661 for ; Tue, 22 Apr 2003 16:23:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MNNc0U077617; Tue, 22 Apr 2003 16:23:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304222323.h3MNNc0U077617@xorpc.icir.org> Date: Tue, 22 Apr 2003 16:23:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ coding-style.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/04/22 16:23:38 Modified files: xorp/devnotes/: coding-style.txt Log message: Quick note on reference and pointer presentation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 16:27:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 16:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNS3F9049294 for ; Tue, 22 Apr 2003 16:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNS3bF052811; Tue, 22 Apr 2003 16:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNS2KJ001327; Tue, 22 Apr 2003 16:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNRPKJ001309 for ; Tue, 22 Apr 2003 16:27:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNRPbF052807 for ; Tue, 22 Apr 2003 16:27:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNRPBp082004 for ; Tue, 22 Apr 2003 16:27:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MNRPjH082003; Tue, 22 Apr 2003 16:27:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304222327.h3MNRPjH082003@xorpc.icir.org> Date: Tue, 22 Apr 2003 16:27:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_next_hop_resolver.cc test_nhlookup.cc xorp/bgp/harness/ test_peer.cc xorp/cli/ cli_client.cc cli_node.cc cli_node.hh cli_node_net.cc test_cli.cc xorp/fea/ fea_click.cc test_fea.cc xorp/libproto/ proto_node.hh xorp/libxipc/ call_xrl.cc finder_messenger.cc finder_messenger.hh finder_tcp.hh finder_tcp_messenger.cc test_inproc.cc test_stcp.cc test_sudp.cc test_xrl_router.cc xrl_pf.hh xrl_pf_factory.cc ...xrl_pf_factory.hh ...xrl_pf_stcp.cc ...xrl_pf_sudp.cc ...xrl_std_router.hh xorp/libxorp/ asyncio.cc asyncio.hh xorp/mfea/ mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_unix_comm.cc test_mfea.cc xrl_mfe! a_node.hh ! xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_node.cc mld6igmp_node.hh mld6igmp_proto.cc mld6igmp_vif.cc test_mld6igmp.cc ...xrl_mld6igmp_node.hh xorp/ospfd/xorp/ os-instance.C os-instance.h ospfd_xorp.C ospfd_xorp.h system.C xrl_target.h xorp/pim/ pim_bsr.cc pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_nbr.cc pim_node.cc pim_node.hh pim_proto_hello.cc test_pim.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 03/04/22 16:27:24 Modified files: xorp/bgp/: dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh test_next_hop_resolver.cc test_nhlookup.cc xorp/bgp/harness/: test_peer.cc xorp/cli/: cli_client.cc cli_node.cc cli_node.hh cli_node_net.cc test_cli.cc xorp/fea/: fea_click.cc test_fea.cc xorp/libproto/: proto_node.hh xorp/libxipc/: call_xrl.cc finder_messenger.cc finder_messenger.hh finder_tcp.hh finder_tcp_messenger.cc test_inproc.cc test_stcp.cc test_sudp.cc test_xrl_router.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_std_router.hh xorp/libxorp/: asyncio.cc asyncio.hh xorp/mfea/: mfea_dataflow.cc mfea_dataflow.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_unix_comm.cc test_mfea.cc xrl_mfea_node.hh xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_node.cc mld6igmp_node.hh mld6igmp_proto.cc mld6igmp_vif.cc test_mld6igmp.cc xrl_mld6igmp_node.hh xorp/ospfd/xorp/: os-instance.C os-instance.h ospfd_xorp.C ospfd_xorp.h system.C xrl_target.h xorp/pim/: pim_bsr.cc pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_nbr.cc pim_node.cc pim_node.hh pim_proto_hello.cc test_pim.cc xrl_pim_node.hh Log message: s/event_loop/eventloop/g _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 16:43:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 16:44:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNi3F9061660 for ; Tue, 22 Apr 2003 16:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNi2bF052936; Tue, 22 Apr 2003 16:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNi2KJ001746; Tue, 22 Apr 2003 16:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3MNh4KJ001728 for ; Tue, 22 Apr 2003 16:43:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNh3bF052934 for ; Tue, 22 Apr 2003 16:43:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3MNh3Bp087411 for ; Tue, 22 Apr 2003 16:43:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3MNh3Y7087410; Tue, 22 Apr 2003 16:43:03 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304222343.h3MNh3Y7087410@xorpc.icir.org> Date: Tue, 22 Apr 2003 16:43:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh slave_conf_tree.cc slave_conf_tree.hh template_commands.cc template_commands.hh ...template_tree.cc ...template_tree_node.cc ...template_tree_node.hh ...xorp_client.cc ...xorp_client.hh ...xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/22 16:43:03 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh slave_conf_tree.cc slave_conf_tree.hh template_commands.cc template_commands.hh template_tree.cc template_tree_node.cc template_tree_node.hh xorp_client.cc xorp_client.hh xorpsh_main.cc Log message: General code cleanup: prefer passing/storing references to pointers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 17:28:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 17:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0T3F9070399 for ; Tue, 22 Apr 2003 17:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0T3bF053296; Tue, 22 Apr 2003 17:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N0T2KJ002633; Tue, 22 Apr 2003 17:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N0SdKJ002614 for ; Tue, 22 Apr 2003 17:28:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0SdbF053294 for ; Tue, 22 Apr 2003 17:28:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0SdBp010477 for ; Tue, 22 Apr 2003 17:28:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N0SdiD010476; Tue, 22 Apr 2003 17:28:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304230028.h3N0SdiD010476@xorpc.icir.org> Date: Tue, 22 Apr 2003 17:28:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ errors.txt xorp/libxipc/ xrl_error.cc xrl_error.hh xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_router.cc xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/04/22 17:28:39 Modified files: xorp/docs/libxipc/: errors.txt xorp/libxipc/: xrl_error.cc xrl_error.hh xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_router.cc xorp/rtrmgr/: template_commands.cc Log message: As discussed at this weeks meeting, replace internal xrl errors (CORRUPT_XRL, CORRUPT_RESPONSE, BAD_PROTOCOL_VERSION) with unified error INTERNAL_ERROR that uses the XrlError note field to provide details on the nature of the failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 17:52:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 17:53:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0r4F9085311 for ; Tue, 22 Apr 2003 17:53:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0r3bF053456; Tue, 22 Apr 2003 17:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N0r3KJ002936; Tue, 22 Apr 2003 17:53:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N0qpKJ002923 for ; Tue, 22 Apr 2003 17:52:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0qpbF053454 for ; Tue, 22 Apr 2003 17:52:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N0qoBp022498 for ; Tue, 22 Apr 2003 17:52:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N0qo90022496; Tue, 22 Apr 2003 17:52:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304230052.h3N0qo90022496@xorpc.icir.org> Date: Tue, 22 Apr 2003 17:52:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_node.cc cli_node_net.cc xorp/mfea/ mfea_dataflow.cc mfea_node.cc mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/22 17:52:50 Modified files: xorp/cli/: cli_client.cc cli_node.cc cli_node_net.cc xorp/mfea/: mfea_dataflow.cc mfea_node.cc mfea_unix_comm.cc Log message: Fix alignment after the renaming of event_loop to eventloop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 18:00:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 18:01:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N113F9089657 for ; Tue, 22 Apr 2003 18:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N113bF053543; Tue, 22 Apr 2003 18:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N112KJ003094; Tue, 22 Apr 2003 18:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N10VKJ003085 for ; Tue, 22 Apr 2003 18:00:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N10VbF053541 for ; Tue, 22 Apr 2003 18:00:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N10UBp025692 for ; Tue, 22 Apr 2003 18:00:30 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N10USW025691; Tue, 22 Apr 2003 18:00:30 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230100.h3N10USW025691@xorpc.icir.org> Date: Tue, 22 Apr 2003 18:00:30 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/04/22 18:00:30 xorp/mibs/snmpdscripts Update of /usr/local/www/data/cvs/xorp/mibs/snmpdscripts In directory xorpc.icir.org:/tmp/cvs-serv25683/snmpdscripts Log Message: Directory /usr/local/www/data/cvs/xorp/mibs/snmpdscripts added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 19:41:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 19:42:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2g5F9003931 for ; Tue, 22 Apr 2003 19:42:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2g4bF054187 for ; Tue, 22 Apr 2003 19:42:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2g2KJ004375; Tue, 22 Apr 2003 19:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2f1KJ004361 for ; Tue, 22 Apr 2003 19:41:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2f1bF054183 for ; Tue, 22 Apr 2003 19:41:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2f1Bp035205 for ; Tue, 22 Apr 2003 19:41:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N2f1mB035204; Tue, 22 Apr 2003 19:41:01 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230241.h3N2f1mB035204@xorpc.icir.org> Date: Tue, 22 Apr 2003 19:41:00 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.cc xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657_bgpversion.cc ospf_mib_1850.cc xorp_if_mib_module.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/22 19:41:00 Modified files: xorp/mibs/: xorpevents.cc Added files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657_bgpversion.cc ospf_mib_1850.cc xorp_if_mib_module.cc Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 19:41:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 19:42:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2g6F9003943 for ; Tue, 22 Apr 2003 19:42:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2g6bF054191; Tue, 22 Apr 2003 19:42:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2g6KJ004388; Tue, 22 Apr 2003 19:42:06 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2fNKJ004367 for ; Tue, 22 Apr 2003 19:41:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2fNbF054185 for ; Tue, 22 Apr 2003 19:41:23 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2fNBp035223 for ; Tue, 22 Apr 2003 19:41:23 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N2fNba035222; Tue, 22 Apr 2003 19:41:23 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230241.h3N2fNba035222@xorpc.icir.org> Date: Tue, 22 Apr 2003 19:41:23 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.hh xorp/mibs/ bgp4_mib_1657.hh bgp4_mib_1657_bgpversion.hh ospf_mib_1850.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/22 19:41:23 Modified files: xorp/mibs/: xorpevents.hh Added files: xorp/mibs/: bgp4_mib_1657.hh bgp4_mib_1657_bgpversion.hh ospf_mib_1850.hh Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 19:44:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 19:45:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2j3F9004316 for ; Tue, 22 Apr 2003 19:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2j3bF054208; Tue, 22 Apr 2003 19:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2j2KJ004425; Tue, 22 Apr 2003 19:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2iUKJ004416 for ; Tue, 22 Apr 2003 19:44:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2iUbF054201 for ; Tue, 22 Apr 2003 19:44:30 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2iUBp035257 for ; Tue, 22 Apr 2003 19:44:30 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N2iUMs035256; Tue, 22 Apr 2003 19:44:30 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230244.h3N2iUMs035256@xorpc.icir.org> Date: Tue, 22 Apr 2003 19:44:30 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/22 19:44:30 Modified files: xorp/mibs/: Makefile.am Log message: Modified not to use libtool. Added build rules for new mib modules. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 19:58:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 19:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2x3F9008875 for ; Tue, 22 Apr 2003 19:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2x2bF054289; Tue, 22 Apr 2003 19:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2x2KJ004553; Tue, 22 Apr 2003 19:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2wqKJ004544 for ; Tue, 22 Apr 2003 19:58:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2wqbF054285 for ; Tue, 22 Apr 2003 19:58:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2wqBp035547 for ; Tue, 22 Apr 2003 19:58:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N2wqZ5035546; Tue, 22 Apr 2003 19:58:52 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230258.h3N2wqZ5035546@xorpc.icir.org> Date: Tue, 22 Apr 2003 19:58:52 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README getbgpversion loadbgp loadospf loadxorp_if snmp.conf startsnmp stopsnmp unload Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/04/22 19:58:52 Added files: xorp/mibs/snmpdscripts/: README getbgpversion loadbgp loadospf loadxorp_if snmp.conf startsnmp stopsnmp unload Log message: Convenience scripts to exercise Net-SNMP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 19:59:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 20:00:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N302F9009026 for ; Tue, 22 Apr 2003 20:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N302bF054307; Tue, 22 Apr 2003 20:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N302KJ004583; Tue, 22 Apr 2003 20:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N2xtKJ004570 for ; Tue, 22 Apr 2003 19:59:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2xtbF054297 for ; Tue, 22 Apr 2003 19:59:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N2xtBp035837 for ; Tue, 22 Apr 2003 19:59:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N2xtRI035836; Tue, 22 Apr 2003 19:59:55 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304230259.h3N2xtRI035836@xorpc.icir.org> Date: Tue, 22 Apr 2003 19:59:55 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in bootstrap configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makef! ile.in xor! p/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: jcardona@xorpc.icir.org. 03/04/22 19:59:55 Modified files: ./: Makefile.in bootstrap configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Unlibtoolized. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Tue Apr 22 21:24:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Apr 2003 21:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N4P3F9018292 for ; Tue, 22 Apr 2003 21:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N4P3bF054887; Tue, 22 Apr 2003 21:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N4P2KJ005720; Tue, 22 Apr 2003 21:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N4ObKJ005706 for ; Tue, 22 Apr 2003 21:24:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N4ObbF054882 for ; Tue, 22 Apr 2003 21:24:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N4ObBp061247 for ; Tue, 22 Apr 2003 21:24:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N4Obpo061246; Tue, 22 Apr 2003 21:24:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304230424.h3N4Obpo061246@xorpc.icir.org> Date: Tue, 22 Apr 2003 21:24:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh ...slave_conf_tree.cc ...slave_conf_tree.hh ...slave_module_manager.cc ...slave_module_manager.hh ...template.yy ...template_commands.cc ...template_commands.hh ...xorp_client.cc ...xorp_client.hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/22 21:24:37 Modified files: xorp/rtrmgr/: cli.cc conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh slave_conf_tree.cc slave_conf_tree.hh slave_module_manager.cc slave_module_manager.hh template.yy template_commands.cc template_commands.hh xorp_client.cc xorp_client.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Spring cleaning. More cases where it's better to pass a reference than a pointer. Replace the no_execute and no_commit flags with do_exec and do_commit because all the double-negatives keep confusing me. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Wed Apr 23 2:37:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 02:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9c3F9041851 for ; Wed, 23 Apr 2003 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9c2bF057429; Wed, 23 Apr 2003 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N9c2KJ009900; Wed, 23 Apr 2003 02:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N9bwKJ009892 for ; Wed, 23 Apr 2003 02:37:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9bvbF057425 for ; Wed, 23 Apr 2003 02:37:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9bvBp018359 for ; Wed, 23 Apr 2003 02:37:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N9bvdm018358; Wed, 23 Apr 2003 02:37:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304230937.h3N9bvdm018358@xorpc.icir.org> Date: Wed, 23 Apr 2003 2:37:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/include/netinet/ ip_mroute_adv_api_freebsd_4_5.h pim.h pim_var.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/include/netinet/ Changes by: pavlin@xorpc.icir.org. 03/04/23 02:37:57 Modified files: xorp/mrt/include/netinet/: ip_mroute_adv_api_freebsd_4_5.h pim.h pim_var.h Log message: Update the locally kept version of some header files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:33 2005 Subject: No subject Wed Apr 23 2:39:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 02:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9e3F9041998 for ; Wed, 23 Apr 2003 02:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9e2bF057458; Wed, 23 Apr 2003 02:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N9e2KJ009925; Wed, 23 Apr 2003 02:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3N9dJKJ009915 for ; Wed, 23 Apr 2003 02:39:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9dJbF057450 for ; Wed, 23 Apr 2003 02:39:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3N9dJBp018424 for ; Wed, 23 Apr 2003 02:39:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3N9dJWr018423; Wed, 23 Apr 2003 02:39:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304230939.h3N9dJWr018423@xorpc.icir.org> Date: Wed, 23 Apr 2003 2:39:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node.cc mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/04/23 02:39:19 Modified files: xorp/mfea/: mfea_node.cc mfea_unix_comm.cc Log message: Update some of code that is related to the kernel advanced multicast API. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 10:06:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 10:07:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NH73F9080376 for ; Wed, 23 Apr 2003 10:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NH73bF061039; Wed, 23 Apr 2003 10:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NH72KJ017419; Wed, 23 Apr 2003 10:07:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NH6nKJ017405 for ; Wed, 23 Apr 2003 10:06:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NH6nbF061037 for ; Wed, 23 Apr 2003 10:06:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NH6nBp081645 for ; Wed, 23 Apr 2003 10:06:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NH6n2B081644; Wed, 23 Apr 2003 10:06:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304231706.h3NH6n2B081644@xorpc.icir.org> Date: Wed, 23 Apr 2003 10:06:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ auth.cc auth.hh constants.hh packets.hh port.cc port.hh port_io.hh route_db.hh test_auth.cc test_packets.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/04/23 10:06:49 Modified files: xorp/rip/: auth.cc auth.hh constants.hh packets.hh port.cc port.hh port_io.hh route_db.hh test_auth.cc test_packets.cc Log message: o Change authentication interface to support 0 route entries in packets. o Add outbound packet queue. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 11:50:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 11:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NIp2F9092992 for ; Wed, 23 Apr 2003 11:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NIp2bF061897; Wed, 23 Apr 2003 11:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NIp2KJ019444; Wed, 23 Apr 2003 11:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NIo5KJ019426 for ; Wed, 23 Apr 2003 11:50:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NIo5bF061868 for ; Wed, 23 Apr 2003 11:50:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NIo4Bp082364 for ; Wed, 23 Apr 2003 11:50:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NIo40p082363; Wed, 23 Apr 2003 11:50:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304231850.h3NIo40p082363@xorpc.icir.org> Date: Wed, 23 Apr 2003 11:50:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ hmac_md5.c hmac_md5.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/23 11:50:04 Modified files: xorp/libxipc/: hmac_md5.c hmac_md5.h Log message: Add method to render an MD5 digest as a string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 12:17:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 12:18:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NJI3F9096339 for ; Wed, 23 Apr 2003 12:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NJI2bF062125; Wed, 23 Apr 2003 12:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NJI2KJ020000; Wed, 23 Apr 2003 12:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NJHuKJ019992 for ; Wed, 23 Apr 2003 12:17:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NJHtbF062123 for ; Wed, 23 Apr 2003 12:17:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NJHtBp082633 for ; Wed, 23 Apr 2003 12:17:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NJHtov082632; Wed, 23 Apr 2003 12:17:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304231917.h3NJHtov082632@xorpc.icir.org> Date: Wed, 23 Apr 2003 12:17:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/23 12:17:55 Modified files: xorp/libxipc/: xrl_router.cc xrl_router.hh Log message: Fill in instance name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 13:50:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 13:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKp3F9007831 for ; Wed, 23 Apr 2003 13:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKp3bF062837; Wed, 23 Apr 2003 13:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NKp2KJ021685; Wed, 23 Apr 2003 13:51:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NKoqKJ021674 for ; Wed, 23 Apr 2003 13:50:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKoqbF062835 for ; Wed, 23 Apr 2003 13:50:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKoqBp011668 for ; Wed, 23 Apr 2003 13:50:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NKoqrS011667; Wed, 23 Apr 2003 13:50:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304232050.h3NKoqrS011667@xorpc.icir.org> Date: Wed, 23 Apr 2003 13:50:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_main.cc ...finder_server.hh ...finder_tcp_messenger.cc ...finder_tcp_messenger.hh ...finder_xrl_queue.cc ...finder_xrl_queue.hh ...finder_xrl_target.cc ...finder_xrl_target.hh ...test_finder.cc ...test_finder_messenger.cc ...test_lemming.cc ...test_xrl_router.cc ...xrl_router.cc ...xrl_router.hh xorp/mfea/ test_mfea.cc xorp/mibs/ test_xorpevents.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc xorp/rib/ test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/ main_rtrmgr.cc xorp/xrl/tests/ test_generated.cc xorp/libxipc/ finder_ng.cc finder_ng.hh finder_ng_client.cc finder_ng_client.hh finder_ng_client_xrl_target.cc finder_ng_client_xrl_target.hh finder_ng_main.c! c ...finde! r_ng_xrl_queue.cc ...finder_ng_xrl_queue.hh ...finder_ng_xrl_target.cc ...finder_ng_xrl_target.hh ...test_finder_ng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/04/23 13:50:51 Modified files: xorp/libxipc/: Makefile.am Makefile.in finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_main.cc finder_server.hh finder_tcp_messenger.cc finder_tcp_messenger.hh finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh test_finder.cc test_finder_messenger.cc test_lemming.cc test_xrl_router.cc xrl_router.cc xrl_router.hh xorp/mfea/: test_mfea.cc xorp/mibs/: test_xorpevents.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc xorp/rib/: test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/: main_rtrmgr.cc xorp/xrl/tests/: test_generated.cc Removed files: xorp/libxipc/: finder_ng.cc finder_ng.hh finder_ng_client.cc finder_ng_client.hh finder_ng_client_xrl_target.cc finder_ng_client_xrl_target.hh finder_ng_main.cc finder_ng_xrl_queue.cc finder_ng_xrl_queue.hh finder_ng_xrl_target.cc finder_ng_xrl_target.hh test_finder_ng.cc Log message: Purge NG designation from Finder class, method, and file names now there is only a single version of the Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 13:52:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 13:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKr3F9008084 for ; Wed, 23 Apr 2003 13:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKr3bF062851; Wed, 23 Apr 2003 13:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NKr2KJ021744; Wed, 23 Apr 2003 13:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NKqFKJ021717 for ; Wed, 23 Apr 2003 13:52:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKqEbF062844 for ; Wed, 23 Apr 2003 13:52:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NKqEBp011855 for ; Wed, 23 Apr 2003 13:52:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NKqDxW011853; Wed, 23 Apr 2003 13:52:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304232052.h3NKqDxW011853@xorpc.icir.org> Date: Wed, 23 Apr 2003 13:52:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/23 13:52:13 Modified files: xorp/libxipc/: .cvsignore Log message: Renaming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 14:02:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 14:03:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL33F9009366 for ; Wed, 23 Apr 2003 14:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL33bF062958; Wed, 23 Apr 2003 14:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NL32KJ021963; Wed, 23 Apr 2003 14:03:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NL2oKJ021952 for ; Wed, 23 Apr 2003 14:02:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL2obF062954 for ; Wed, 23 Apr 2003 14:02:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL2oBp012060 for ; Wed, 23 Apr 2003 14:02:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NL2o7r012059; Wed, 23 Apr 2003 14:02:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304232102.h3NL2o7r012059@xorpc.icir.org> Date: Wed, 23 Apr 2003 14:02:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/ Changes by: hodson@xorpc.icir.org. 03/04/23 14:02:50 Modified files: xorp/cli/: test_cli.cc Log message: Purge NG designation from Finder class, method, and file names now there is only a single version of the Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 14:09:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 14:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NLA3F9010271 for ; Wed, 23 Apr 2003 14:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NLA3bF063008; Wed, 23 Apr 2003 14:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NLA2KJ022095; Wed, 23 Apr 2003 14:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NL9WKJ022076 for ; Wed, 23 Apr 2003 14:09:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL9WbF063003 for ; Wed, 23 Apr 2003 14:09:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NL9WBp012319 for ; Wed, 23 Apr 2003 14:09:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NL9Wvb012318; Wed, 23 Apr 2003 14:09:32 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304232109.h3NL9Wvb012318@xorpc.icir.org> Date: Wed, 23 Apr 2003 14:09:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh xorpsh_main.cc xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/23 14:09:32 Modified files: xorp/rtrmgr/: cli.cc cli.hh xorpsh_main.cc xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh Log message: More stylistic cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 15:52:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 15:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NMr3F9025200 for ; Wed, 23 Apr 2003 15:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NMr3bF063865; Wed, 23 Apr 2003 15:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NMr2KJ024162; Wed, 23 Apr 2003 15:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NMq8KJ024141 for ; Wed, 23 Apr 2003 15:52:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NMq7bF063860 for ; Wed, 23 Apr 2003 15:52:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NMq7Bp019633 for ; Wed, 23 Apr 2003 15:52:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NMq7Wf019632; Wed, 23 Apr 2003 15:52:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304232252.h3NMq7Wf019632@xorpc.icir.org> Date: Wed, 23 Apr 2003 15:52:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/23 15:52:07 Modified files: xorp/rtrmgr/: conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh Log message: Minor cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 16:42:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 16:43:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NNh3F9036933 for ; Wed, 23 Apr 2003 16:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NNh3bF064295; Wed, 23 Apr 2003 16:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NNh2KJ025119; Wed, 23 Apr 2003 16:43:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3NNgiKJ025092 for ; Wed, 23 Apr 2003 16:42:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NNgibF064292 for ; Wed, 23 Apr 2003 16:42:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3NNgiBp026516 for ; Wed, 23 Apr 2003 16:42:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3NNgiqG026515; Wed, 23 Apr 2003 16:42:44 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304232342.h3NNgiqG026515@xorpc.icir.org> Date: Wed, 23 Apr 2003 16:42:44 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/04/23 16:42:44 Modified files: xorp/mibs/: Makefile.am Log message: Used better Automake primaries (as suggested by Pavlin) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Wed Apr 23 17:34:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Apr 2003 17:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3O0Z3F9043379 for ; Wed, 23 Apr 2003 17:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3O0Z3bF064720 for ; Wed, 23 Apr 2003 17:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3O0Z2KJ026115; Wed, 23 Apr 2003 17:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3O0YUKJ026106 for ; Wed, 23 Apr 2003 17:34:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3O0YUbF064714 for ; Wed, 23 Apr 2003 17:34:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3O0YUBp047031 for ; Wed, 23 Apr 2003 17:34:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3O0YUqR046978; Wed, 23 Apr 2003 17:34:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304240034.h3O0YUqR046978@xorpc.icir.org> Date: Wed, 23 Apr 2003 17:34:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure xorp/libxipc/ Makefile.in xorp/mibs/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/04/23 17:34:30 Modified files: ./: configure xorp/libxipc/: Makefile.in xorp/mibs/: Makefile.in Log message: Regenerate "Makefile.in" and "configure" files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 11:58:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 11:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OIx2F9079219 for ; Thu, 24 Apr 2003 11:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OIx2bF073099 for ; Thu, 24 Apr 2003 11:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OIx2KJ012932; Thu, 24 Apr 2003 11:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OIwtKJ012925 for ; Thu, 24 Apr 2003 11:58:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OIwsbF073097 for ; Thu, 24 Apr 2003 11:58:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OIwsBp074440 for ; Thu, 24 Apr 2003 11:58:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3OIwse7074439; Thu, 24 Apr 2003 11:58:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304241858.h3OIwse7074439@xorpc.icir.org> Date: Thu, 24 Apr 2003 11:58:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/04/24 11:58:54 Modified files: xorp/libxorp/: eventloop.hh Log message: Explicitly disable copy constructor and assignment operator as there is no story for these with the EventLoop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 12:32:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 12:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJX3F9085987 for ; Thu, 24 Apr 2003 12:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJX2bF073445 for ; Thu, 24 Apr 2003 12:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OJX2KJ013574; Thu, 24 Apr 2003 12:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OJWmKJ013565 for ; Thu, 24 Apr 2003 12:32:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJWlbF073438 for ; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJWlBp079859 for ; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3OJWlgN079858; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304241932.h3OJWlgN079858@xorpc.icir.org> Date: Thu, 24 Apr 2003 12:32:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc finder.hh finder_main.cc finder_server.hh finder_tcp_messenger.cc finder_xrl_queue.hh test_finder.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/24 12:32:47 Modified files: xorp/libxipc/: finder.cc finder.hh finder_main.cc finder_server.hh finder_tcp_messenger.cc finder_xrl_queue.hh test_finder.cc Log message: Minor formatting tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 13:45:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 13:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKk3F9096555 for ; Thu, 24 Apr 2003 13:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKk3bF074098 for ; Thu, 24 Apr 2003 13:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OKk2KJ014869; Thu, 24 Apr 2003 13:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3OKj7KJ014850 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKj7bF074092 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKj7Bp002101 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3OKj7kb002100; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304242045.h3OKj7kb002100@xorpc.icir.org> Date: Thu, 24 Apr 2003 13:45:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in main_rtrmgr.cc module_manager.cc module_manager.hh xorp/rtrmgr/ config.boot.sample test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 13:45:07 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in main_rtrmgr.cc module_manager.cc module_manager.hh Added files: xorp/rtrmgr/: config.boot.sample test_sample_config.cc Log message: Add a tinderbox test that just ensures the config file parsing still works. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 12:32:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 12:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJX3F9085987 for ; Thu, 24 Apr 2003 12:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJX2bF073445 for ; Thu, 24 Apr 2003 12:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) h3OJX2KJ013574; Thu, 24 Apr 2003 12:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) h3OJWmKJ013565 for ; Thu, 24 Apr 2003 12:32:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJWlbF073438 for ; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OJWlBp079859 for ; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3OJWlgN079858; Thu, 24 Apr 2003 12:32:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200304241932.h3OJWlgN079858@xorpc.icir.org> Date: Thu, 24 Apr 2003 12:32:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc finder.hh finder_tcp_messenger.cc finder_xrl_queue.hh test_finder.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , X-Spambayes-Classification: spam; 0.91 X-Spambayes-Trained: ham CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/04/24 12:32:47 Modified files: xorp/libxipc/: finder.cc finder.hh finder_main.cc finder_server.hh finder_tcp_messenger.cc finder_xrl_queue.hh test_finder.cc Log message: Minor formatting tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 13:45:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 13:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKk3F9096555 for ; Thu, 24 Apr 2003 13:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKk3bF074098 for ; Thu, 24 Apr 2003 13:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) h3OKk2KJ014869; Thu, 24 Apr 2003 13:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) h3OKj7KJ014850 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKj7bF074092 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3OKj7Bp002101 for ; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3OKj7kb002100; Thu, 24 Apr 2003 13:45:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304242045.h3OKj7kb002100@xorpc.icir.org> Date: Thu, 24 Apr 2003 13:45:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in main_rtrmgr.cc module_manager.cc module_manager.hh xorp/rtrmgr/ config.boot.sample test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , X-Spambayes-Classification: unsure; 0.78 X-Spambayes-Trained: ham CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 13:45:07 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in main_rtrmgr.cc module_manager.cc module_manager.hh Added files: xorp/rtrmgr/: config.boot.sample test_sample_config.cc Log message: Add a tinderbox test that just ensures the config file parsing still works. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 16:43:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 16:44:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ONi3F9018596 for ; Thu, 24 Apr 2003 16:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ONi3bF075567 for ; Thu, 24 Apr 2003 16:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3ONi2KJ018086; Thu, 24 Apr 2003 16:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3ONhnKJ018079 for ; Thu, 24 Apr 2003 16:43:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ONhnbF075565 for ; Thu, 24 Apr 2003 16:43:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3ONhnBp011269 for ; Thu, 24 Apr 2003 16:43:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3ONhnE9011259; Thu, 24 Apr 2003 16:43:49 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304242343.h3ONhnE9011259@xorpc.icir.org> Date: Thu, 24 Apr 2003 16:43:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc template_commands.hh template_tree.hh ...xorp_client.cc ...xorp_client.hh xorp/rtrmgr/ test_module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 16:43:49 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc template_commands.hh template_tree.hh xorp_client.cc xorp_client.hh Added files: xorp/rtrmgr/: test_module_manager.cc Log message: Some refactoring aimed at making module management less closely interlinked with other code. Added a test program that will eventually test the module_manager functionality. Currently it just tests that the module_manager thinks it can start the finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 19:59:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 20:00:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P303F9042538 for ; Thu, 24 Apr 2003 20:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P303bF077140 for ; Thu, 24 Apr 2003 20:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P302KJ020639; Thu, 24 Apr 2003 20:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P2x5KJ020624 for ; Thu, 24 Apr 2003 19:59:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P2x5bF077127 for ; Thu, 24 Apr 2003 19:59:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P2x5Bp034243 for ; Thu, 24 Apr 2003 19:59:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3P2x5nT034242; Thu, 24 Apr 2003 19:59:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304250259.h3P2x5nT034242@xorpc.icir.org> Date: Thu, 24 Apr 2003 19:59:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc test_module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 19:59:05 Modified files: xorp/rtrmgr/: module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc test_module_manager.cc Log message: More refactoring to better separate ModuleManager functionality from TemplateTree functionality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 20:39:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 20:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P3e3F9047410 for ; Thu, 24 Apr 2003 20:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P3e3bF077435 for ; Thu, 24 Apr 2003 20:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P3e2KJ021100; Thu, 24 Apr 2003 20:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P3d3KJ021089 for ; Thu, 24 Apr 2003 20:39:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P3d3bF077427 for ; Thu, 24 Apr 2003 20:39:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P3d3Bp040403 for ; Thu, 24 Apr 2003 20:39:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3P3d3fV040402; Thu, 24 Apr 2003 20:39:03 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304250339.h3P3d3fV040402@xorpc.icir.org> Date: Thu, 24 Apr 2003 20:39:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc test_module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 20:39:03 Modified files: xorp/rtrmgr/: module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh template_commands.cc test_module_manager.cc Log message: Clean up module states to match Tuesday's discussion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Thu Apr 24 21:02:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Apr 2003 21:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P432F9050238 for ; Thu, 24 Apr 2003 21:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P432bF077580 for ; Thu, 24 Apr 2003 21:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P431KJ021365; Thu, 24 Apr 2003 21:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3P42JKJ021349 for ; Thu, 24 Apr 2003 21:02:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P42IbF077576 for ; Thu, 24 Apr 2003 21:02:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3P42IBp046773 for ; Thu, 24 Apr 2003 21:02:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3P42IDd046772; Thu, 24 Apr 2003 21:02:18 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304250402.h3P42IDd046772@xorpc.icir.org> Date: Thu, 24 Apr 2003 21:02:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc module_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/24 21:02:18 Modified files: xorp/rtrmgr/: module_manager.cc module_manager.hh Log message: Inform the ModuleManager of module status changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:34 2005 Subject: No subject Fri Apr 25 11:19:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 11:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PIK3F9056008 for ; Fri, 25 Apr 2003 11:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PIK3bF084511 for ; Fri, 25 Apr 2003 11:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PIK2KJ004716; Fri, 25 Apr 2003 11:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PIJxKJ004710 for ; Fri, 25 Apr 2003 11:19:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PIJwbF084506 for ; Fri, 25 Apr 2003 11:19:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PIJwBp055215 for ; Fri, 25 Apr 2003 11:19:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3PIJwDG055214; Fri, 25 Apr 2003 11:19:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304251819.h3PIJwDG055214@xorpc.icir.org> Date: Fri, 25 Apr 2003 11:19:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/25 11:19:58 Modified files: xorp/rtrmgr/: module_manager.cc Log message: Fix initialization/state-machine bug that resulted in killing ourselves during debug-mode shutdown. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 12:03:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 12:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJ43F9061396 for ; Fri, 25 Apr 2003 12:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJ43bF084975 for ; Fri, 25 Apr 2003 12:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PJ42KJ005426; Fri, 25 Apr 2003 12:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PJ3lKJ005419 for ; Fri, 25 Apr 2003 12:03:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJ3lbF084973 for ; Fri, 25 Apr 2003 12:03:47 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJ3lBp055624 for ; Fri, 25 Apr 2003 12:03:47 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3PJ3lOG055623; Fri, 25 Apr 2003 12:03:47 -0700 (PDT) (envelope-from kohler) From: Eddie Kohler Message-Id: <200304251903.h3PJ3lOG055623@xorpc.icir.org> Date: Fri, 25 Apr 2003 12:03:47 () To: xorp-cvs@icir.org Reply-To: kohler@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: kohler@xorpc.icir.org. 03/04/25 12:03:47 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: working towards convergence _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 12:14:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 12:15:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJF3F9062728 for ; Fri, 25 Apr 2003 12:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJF2bF085081 for ; Fri, 25 Apr 2003 12:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PJF2KJ005633; Fri, 25 Apr 2003 12:15:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PJE4KJ005619 for ; Fri, 25 Apr 2003 12:14:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJE4bF085070 for ; Fri, 25 Apr 2003 12:14:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PJE4Bp055721 for ; Fri, 25 Apr 2003 12:14:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3PJE4Yk055720; Fri, 25 Apr 2003 12:14:04 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200304251914.h3PJE4Yk055720@xorpc.icir.org> Date: Fri, 25 Apr 2003 12:14:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc module_manager.cc module_manager.hh test_module_manager.cc test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/04/25 12:14:04 Modified files: xorp/rtrmgr/: main_rtrmgr.cc module_manager.cc module_manager.hh test_module_manager.cc test_sample_config.cc Log message: Properly handle waiting for processes to shutdown without calling sleep(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 16:32:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 16:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PNX3F9094286 for ; Fri, 25 Apr 2003 16:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PNX3bF088468 for ; Fri, 25 Apr 2003 16:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PNX2KJ009732; Fri, 25 Apr 2003 16:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3PNWQKJ009719 for ; Fri, 25 Apr 2003 16:32:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PNWQbF088465 for ; Fri, 25 Apr 2003 16:32:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3PNWPBp091447 for ; Fri, 25 Apr 2003 16:32:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3PNWP5g091446; Fri, 25 Apr 2003 16:32:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304252332.h3PNWP5g091446@xorpc.icir.org> Date: Fri, 25 Apr 2003 16:32:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_ipv4.cc test_ipv6.cc test_ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/25 16:32:25 Modified files: xorp/libxorp/: test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: MacOS X compilation fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 22:58:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 22:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q5x3F9025050 for ; Fri, 25 Apr 2003 22:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q5x2bF091247 for ; Fri, 25 Apr 2003 22:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q5x2KJ014180; Fri, 25 Apr 2003 22:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q5wcKJ014172 for ; Fri, 25 Apr 2003 22:58:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q5wcbF091243 for ; Fri, 25 Apr 2003 22:58:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q5wcBp054667 for ; Fri, 25 Apr 2003 22:58:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3Q5wcE5054666; Fri, 25 Apr 2003 22:58:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304260558.h3Q5wcE5054666@xorpc.icir.org> Date: Fri, 25 Apr 2003 22:58:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/25 22:58:38 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh Log message: Change the return value of IPv4::af() and IPv6::af() from uint32_t to int (because I think that everywhere else the address family is int). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 23:01:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 23:02:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q623F9025310 for ; Fri, 25 Apr 2003 23:02:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q622bF091281 for ; Fri, 25 Apr 2003 23:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q622KJ014238; Fri, 25 Apr 2003 23:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q61qKJ014230 for ; Fri, 25 Apr 2003 23:01:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q61qbF091279 for ; Fri, 25 Apr 2003 23:01:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q61qBp054743 for ; Fri, 25 Apr 2003 23:01:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3Q61qet054742; Fri, 25 Apr 2003 23:01:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304260601.h3Q61qet054742@xorpc.icir.org> Date: Fri, 25 Apr 2003 23:01:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipnet.hh test_ipv4net.cc test_ipv6net.cc test_ipvxnet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/25 23:01:52 Modified files: xorp/libxorp/: ipnet.hh test_ipv4net.cc test_ipv6net.cc test_ipvxnet.cc Log message: * Add new method "int af()" to IPv4Net, IPv6Net, IPvXNet, that returns the address family of the object. * Add the appropriate tests inside test_ipv4net, test_ipv6net, test_ipvxnet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri Apr 25 23:15:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Apr 2003 23:16:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q6G4F9026381 for ; Fri, 25 Apr 2003 23:16:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q6G4bF091380 for ; Fri, 25 Apr 2003 23:16:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q6G3KJ014492; Fri, 25 Apr 2003 23:16:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3Q6F5KJ014467 for ; Fri, 25 Apr 2003 23:15:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q6F5bF091359 for ; Fri, 25 Apr 2003 23:15:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3Q6F5Bp056817 for ; Fri, 25 Apr 2003 23:15:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3Q6F5Jx056816; Fri, 25 Apr 2003 23:15:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304260615.h3Q6F5Jx056816@xorpc.icir.org> Date: Fri, 25 Apr 2003 23:15:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipnet.hh test_ipv4net.cc test_ipv6net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/04/25 23:15:05 Modified files: xorp/libxorp/: ipnet.hh test_ipv4net.cc test_ipv6net.cc Log message: * Change method af() in the IPNet template to be "static const" Applies only for IPv4Net and IPv6Net; in case of IPvXNet there is specialized IPvXNet::af(). * Adjust test_ipv4net and test_ipv6net to reflect the above change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Mon Apr 28 11:13:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Apr 2003 11:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SIE3F9066297 for ; Mon, 28 Apr 2003 11:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SIE2bF023879 for ; Mon, 28 Apr 2003 11:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3SIE1KJ028497; Mon, 28 Apr 2003 11:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3SID4KJ028474 for ; Mon, 28 Apr 2003 11:13:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SID4bF023874 for ; Mon, 28 Apr 2003 11:13:04 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SID4Bp022707 for ; Mon, 28 Apr 2003 11:13:04 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3SID48u022706; Mon, 28 Apr 2003 11:13:04 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304281813.h3SID48u022706@xorpc.icir.org> Date: Mon, 28 Apr 2003 11:13:03 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh peer_list.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: jcardona@xorpc.icir.org. 03/04/28 11:13:03 Modified files: xorp/bgp/: peer.cc peer.hh peer_list.cc Log message: Modified BGPPeerList to sort peers by remote IP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Mon Apr 28 15:05:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Apr 2003 15:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SM63F9094631 for ; Mon, 28 Apr 2003 15:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SM63bF025904 for ; Mon, 28 Apr 2003 15:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3SM62KJ003319; Mon, 28 Apr 2003 15:06:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3SM58KJ003306 for ; Mon, 28 Apr 2003 15:05:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SM58bF025902 for ; Mon, 28 Apr 2003 15:05:08 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3SM58Bp045970 for ; Mon, 28 Apr 2003 15:05:08 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3SM58F2045969; Mon, 28 Apr 2003 15:05:08 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200304282205.h3SM58F2045969@xorpc.icir.org> Date: Mon, 28 Apr 2003 15:05:08 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh peer_list.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: jcardona@xorpc.icir.org. 03/04/28 15:05:08 Modified files: xorp/bgp/: peer.cc peer.hh peer_list.cc Log message: Fixed previous commit _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Tue Apr 29 11:30:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Apr 2003 11:31:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TIV4F9043094 for ; Tue, 29 Apr 2003 11:31:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TIV3bF037777; Tue, 29 Apr 2003 11:31:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3TIV3KJ022602; Tue, 29 Apr 2003 11:31:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3TIUbKJ022578 for ; Tue, 29 Apr 2003 11:30:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TIUbbF037774 for ; Tue, 29 Apr 2003 11:30:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TIUbBp097808 for ; Tue, 29 Apr 2003 11:30:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3TIUbkb097807; Tue, 29 Apr 2003 11:30:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304291830.h3TIUbkb097807@xorpc.icir.org> Date: Tue, 29 Apr 2003 11:30:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/04/29 11:30:37 Modified files: xorp/pim/: README Log message: Update the status of the PIM-SM code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Tue Apr 29 15:53:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Apr 2003 15:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TMs3F9074699 for ; Tue, 29 Apr 2003 15:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TMs2bF040205 for ; Tue, 29 Apr 2003 15:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3TMs2KJ027861; Tue, 29 Apr 2003 15:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h3TMrCKJ027847 for ; Tue, 29 Apr 2003 15:53:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TMrBbF040203 for ; Tue, 29 Apr 2003 15:53:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h3TMrBBp028130 for ; Tue, 29 Apr 2003 15:53:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h3TMrB2h028129; Tue, 29 Apr 2003 15:53:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200304292253.h3TMrB2h028129@xorpc.icir.org> Date: Tue, 29 Apr 2003 15:53:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/04/29 15:53:11 Modified files: xorp/devnotes/: WORKPLAN Log message: * Update the workplan * Push the release date back for May 29th _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Thu May 1 0:55:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 May 2003 00:56:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h417u3F9061761 for ; Thu, 1 May 2003 00:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h417u3in008261 for ; Thu, 1 May 2003 00:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h417u2KJ028800; Thu, 1 May 2003 00:56:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h417tTKJ028794 for ; Thu, 1 May 2003 00:55:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h417tTin008257 for ; Thu, 1 May 2003 00:55:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h417tTBp084102 for ; Thu, 1 May 2003 00:55:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h417tTfj084101; Thu, 1 May 2003 00:55:29 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305010755.h417tTfj084101@xorpc.icir.org> Date: Thu, 1 May 2003 0:55:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh test_module_manager.cc xorp_client.cc xorp/rtrmgr/ task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/01 00:55:29 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh test_module_manager.cc xorp_client.cc Added files: xorp/rtrmgr/: task.cc task.hh Log message: Add new task class. Add callback to module termination code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Thu May 1 15:58:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 May 2003 15:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h41Mx3F9013164 for ; Thu, 1 May 2003 15:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h41Mx3in018654 for ; Thu, 1 May 2003 15:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h41Mx2KJ014424; Thu, 1 May 2003 15:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h41MwSKJ014397 for ; Thu, 1 May 2003 15:58:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h41MwSin018637 for ; Thu, 1 May 2003 15:58:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h41MwSBp068424 for ; Thu, 1 May 2003 15:58:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h41MwSFD068423; Thu, 1 May 2003 15:58:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305012258.h41MwSFD068423@xorpc.icir.org> Date: Thu, 1 May 2003 15:58:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/05/01 15:58:28 Modified files: ./: index.html news.html Log message: Add for to CVSweb access to source repository. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Thu May 1 21:08:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 May 2003 21:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h42493F9064102 for ; Thu, 1 May 2003 21:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42492in021128 for ; Thu, 1 May 2003 21:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42492KJ018590; Thu, 1 May 2003 21:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4248QKJ018580 for ; Thu, 1 May 2003 21:08:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4248Qin021118 for ; Thu, 1 May 2003 21:08:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4248QKF014440 for ; Thu, 1 May 2003 21:08:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4248PYQ014439; Thu, 1 May 2003 21:08:25 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305020408.h4248PYQ014439@xorpc.icir.org> Date: Thu, 1 May 2003 21:08:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/01 21:08:25 Modified files: xorp/rtrmgr/: task.cc task.hh Log message: Add new TaskManager class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Thu May 1 21:53:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 May 2003 21:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h424s3F9071550 for ; Thu, 1 May 2003 21:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h424s3in021418 for ; Thu, 1 May 2003 21:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h424s2KJ019117; Thu, 1 May 2003 21:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h424rZKJ019103 for ; Thu, 1 May 2003 21:53:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h424rZin021409 for ; Thu, 1 May 2003 21:53:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h424rYKF014828 for ; Thu, 1 May 2003 21:53:34 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h424rYQt014827; Thu, 1 May 2003 21:53:34 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305020453.h424rYQt014827@xorpc.icir.org> Date: Thu, 1 May 2003 21:53:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/01 21:53:34 Modified files: xorp/rtrmgr/: main_rtrmgr.cc task.cc task.hh Log message: Start the task manager. Some cleanup internally in Task class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri May 2 0:50:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 May 2003 00:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h427p3F9096754 for ; Fri, 2 May 2003 00:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h427p2in022898 for ; Fri, 2 May 2003 00:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h427p2KJ021731; Fri, 2 May 2003 00:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h427ooKJ021724 for ; Fri, 2 May 2003 00:50:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h427ooin022894 for ; Fri, 2 May 2003 00:50:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h427ooKF016331 for ; Fri, 2 May 2003 00:50:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h427ooGT016330; Fri, 2 May 2003 00:50:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305020750.h427ooGT016330@xorpc.icir.org> Date: Fri, 2 May 2003 0:50:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in TODO click.cc click.hh fea_click.cc fea_dummy.cc fea_rtsock.cc fti.hh fti_click.cc fti_dummy.cc fti_dummy.hh fti_rtsock.cc fti_rtsock.hh fti_transaction.cc fti_transaction.hh ...ifconfig.cc ...ifconfig.hh ...ifconfig_click.cc ...ifconfig_dummy.cc ...ifconfig_dummy.hh ...ifconfig_rtsock.cc ...ifconfig_rtsock.hh ...ifmanager.hh ...iftree.cc ...iftree.hh ...rtsock.cc ...rtsock.hh ...test_fea.cc ...test_ifmanager.cc ...xrl_fti.hh ...xrl_ifmanager.cc ...xrl_ifmanager.hh ...xrl_target.cc ...xrl_target.hh xorp/fea/ fea.cc fte.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rs.cc fticonfig_entry_observer.cc ...fticonfig_entry_observer.hh ...fticonfig_entry_observer_rs.cc ...fticonfig_entry_parse_nlm.cc ...fticonfig_entry_parse_rtm.cc .! ..fticonfig! _entry_set.cc ...fticonfig_entry_set.hh ...fticonfig_entry_set_rs.cc ...fticonfig_table_get.cc ...fticonfig_table_get.hh ...fticonfig_table_get_netlink.cc ...fticonfig_table_get_sysctl.cc ...fticonfig_table_observer.cc ...fticonfig_table_observer.hh ...fticonfig_table_observer_rs.cc ...fticonfig_table_parse_nlm.cc ...fticonfig_table_parse_rtm.cc ...fticonfig_table_set.cc ...fticonfig_table_set.hh ...fticonfig_table_set_rs.cc ...ifconfig_get.cc ...ifconfig_get.hh ...ifconfig_get_getifaddrs.cc ...ifconfig_get_ioctl.cc ...ifconfig_get_sysctl.cc ...ifconfig_observer.cc ...ifconfig_observer.hh ...ifconfig_observer_rs.cc ...ifconfig_parse_ifaddrs.cc ...ifconfig_parse_ifreq.cc ...ifconfig_parse_rtm.cc ...ifconfig_set.cc ...ifconfig_set.hh ...ifconfig_set_ioctl.cc ...kernel_utils.hh ...netlink_socket.cc ...netlink_socket.hh ...netlink_socket_utils.cc ...netlink_socket_utils.hh ...routing_socket.cc ...routing_socket.hh ...routing_socket_utils.cc ! ...routing_socket_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/02 00:50:50 Modified files: xorp/fea/: Makefile.am Makefile.in TODO click.cc click.hh fea_click.cc fea_dummy.cc fea_rtsock.cc fti.hh fti_click.cc fti_dummy.cc fti_dummy.hh fti_rtsock.cc fti_rtsock.hh fti_transaction.cc fti_transaction.hh ifconfig.cc ifconfig.hh ifconfig_click.cc ifconfig_dummy.cc ifconfig_dummy.hh ifconfig_rtsock.cc ifconfig_rtsock.hh ifmanager.hh iftree.cc iftree.hh rtsock.cc rtsock.hh test_fea.cc test_ifmanager.cc xrl_fti.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_target.cc xrl_target.hh Added files: xorp/fea/: fea.cc fte.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rs.cc fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_observer_rs.cc fticonfig_entry_parse_nlm.cc fticonfig_entry_parse_rtm.cc fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_entry_set_rs.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_rs.cc fticonfig_table_parse_nlm.cc fticonfig_table_parse_rtm.cc fticonfig_table_set.cc fticonfig_table_set.hh fticonfig_table_set_rs.cc ifconfig_get.cc ifconfig_get.hh ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer.hh ifconfig_observer_rs.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_ioctl.cc kernel_utils.hh netlink_socket.cc netlink_socket.hh netlink_socket_utils.cc netlink_socket_utils.hh routing_socket.cc routing_socket.hh routing_socket_utils.cc routing_socket_utils.hh Log message: * Shuffled some of the internals re. reading/writing/observing interfaces-related info and forwarding-table related info to make it easier to add support for other methods for accessing the kernel. * Added few more methods for reading interface-related info or forwarding table related info, and performed audition of the existing methods. * Added IPv6 support (where missing) for reading/writing information regarding network interfaces or the unicast forwarding table. None of the changes are tested yet, so it is safe to assume that it doesn't work (except compilation and "gmake check"). None of the XRL interface or behavior is changed, hence theoretically none of the changes should affect any other XORP components. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri May 2 0:54:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 May 2003 00:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h427t2F9097083 for ; Fri, 2 May 2003 00:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h427t2in022917 for ; Fri, 2 May 2003 00:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h427t2KJ021795; Fri, 2 May 2003 00:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h427shKJ021788 for ; Fri, 2 May 2003 00:54:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h427shin022910 for ; Fri, 2 May 2003 00:54:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h427shKF016438 for ; Fri, 2 May 2003 00:54:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h427shdS016437; Fri, 2 May 2003 00:54:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305020754.h427shdS016437@xorpc.icir.org> Date: Fri, 2 May 2003 0:54:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/05/02 00:54:43 Modified files: xorp/rtrmgr/: .cvsignore Log message: Added the following two files to .cvsignore : test_module_manager test_sample_config _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri May 2 2:00:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 May 2003 02:01:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h42913F9002302 for ; Fri, 2 May 2003 02:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42913in023663 for ; Fri, 2 May 2003 02:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42912KJ022548; Fri, 2 May 2003 02:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42903KJ022535 for ; Fri, 2 May 2003 02:00:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42902in023524 for ; Fri, 2 May 2003 02:00:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h42902KF016901 for ; Fri, 2 May 2003 02:00:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h42902dI016900; Fri, 2 May 2003 02:00:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305020900.h42902dI016900@xorpc.icir.org> Date: Fri, 2 May 2003 2:00:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh ...template_commands.cc ...template_commands.hh ...template_tree_node.cc ...test_sample_config.cc ...y.tplt_tab.cc xorp/rtrmgr/ module_command.cc module_command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/02 02:00:02 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh template_commands.cc template_commands.hh template_tree_node.cc test_sample_config.cc y.tplt_tab.cc Added files: xorp/rtrmgr/: module_command.cc module_command.hh Log message: Move some functionality over to TaskManager from XorpClient _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri May 2 15:33:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 May 2003 15:34:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h42MY3F9075907 for ; Fri, 2 May 2003 15:34:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42MY3in031523 for ; Fri, 2 May 2003 15:34:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42MY2KJ005814; Fri, 2 May 2003 15:34:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42MXtKJ005807 for ; Fri, 2 May 2003 15:33:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42MXsin031517 for ; Fri, 2 May 2003 15:33:54 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h42MXsOH001684 for ; Fri, 2 May 2003 15:33:54 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h42MXsuX001683; Fri, 2 May 2003 15:33:54 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305022233.h42MXsuX001683@xorpc.icir.org> Date: Fri, 2 May 2003 15:33:54 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc task.hh template_commands.cc template_commands.hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/02 15:33:54 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc task.hh template_commands.cc template_commands.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Refactoring to use the TaskManager. Tinderbox tests succeed, but rtrmgr is currently broken. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:35 2005 Subject: No subject Fri May 2 16:21:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 May 2003 16:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h42NM3F9079658 for ; Fri, 2 May 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42NM3in031957 for ; Fri, 2 May 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42NM2KJ006600; Fri, 2 May 2003 16:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h42NLdKJ006592 for ; Fri, 2 May 2003 16:21:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h42NLdin031953 for ; Fri, 2 May 2003 16:21:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h42NLdOH002644 for ; Fri, 2 May 2003 16:21:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h42NLdFU002643; Fri, 2 May 2003 16:21:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305022321.h42NLdFU002643@xorpc.icir.org> Date: Fri, 2 May 2003 16:21:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_entry_set.hh fticonfig_table_observer.hh fticonfig_table_set.hh ifconfig.cc ifconfig.hh ...ifconfig_observer.hh xorp/fea/ fticonfig_entry_get_rtsock.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set_rtsock.cc fticonfig_table_observer_rtsock.cc ...fticonfig_table_set_rtsock.cc ...ifconfig_observer_rtsock.cc xorp/fea/ fticonfig_entry_get_rs.cc fticonfig_entry_observer_rs.cc fticonfig_entry_set_rs.cc fticonfig_table_observer_rs.cc ...fticonfig_table_set_rs.cc ...ifconfig_observer_rs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/02 16:21:39 Modified files: xorp/fea/: Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_entry_set.hh fticonfig_table_observer.hh fticonfig_table_set.hh ifconfig.cc ifconfig.hh ifconfig_observer.hh Added files: xorp/fea/: fticonfig_entry_get_rtsock.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set_rtsock.cc fticonfig_table_observer_rtsock.cc fticonfig_table_set_rtsock.cc ifconfig_observer_rtsock.cc Removed files: xorp/fea/: fticonfig_entry_get_rs.cc fticonfig_entry_observer_rs.cc fticonfig_entry_set_rs.cc fticonfig_table_observer_rs.cc fticonfig_table_set_rs.cc ifconfig_observer_rs.cc Log message: Perform some file renaming and class names renaming. All renamed files were just added yesterday, hence there is no point of preserving one log message. (if preserving the log message was important, then I would do the renaming within the CVS repository itself). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Sat May 3 14:26:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 May 2003 14:27:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h43LR5F9017787 for ; Sat, 3 May 2003 14:27:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h43LR4in045338 for ; Sat, 3 May 2003 14:27:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h43LR3KJ021540; Sat, 3 May 2003 14:27:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h43LQmKJ021532 for ; Sat, 3 May 2003 14:26:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h43LQmin045334 for ; Sat, 3 May 2003 14:26:48 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h43LQmOH014788 for ; Sat, 3 May 2003 14:26:48 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h43LQmSo014787; Sat, 3 May 2003 14:26:48 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305032126.h43LQmSo014787@xorpc.icir.org> Date: Sat, 3 May 2003 14:26:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh conf_tree_node.cc master_conf_tree.cc module_manager.cc slave_conf_tree.cc slave_conf_tree.hh task.cc task.hh template_commands.cc test_module_manager.cc ...xorp_client.cc ...xorp_client.hh ...xorpsh_main.cc ...xorpsh_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/03 14:26:48 Modified files: xorp/rtrmgr/: cli.cc cli.hh conf_tree_node.cc master_conf_tree.cc module_manager.cc slave_conf_tree.cc slave_conf_tree.hh task.cc task.hh template_commands.cc test_module_manager.cc xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh Log message: Remove now-obsolete batch code from XorpClient and associated APIs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Sat May 3 23:25:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 May 2003 23:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h446Q3F9077163 for ; Sat, 3 May 2003 23:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h446Q3in049113 for ; Sat, 3 May 2003 23:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h446Q2KJ026866; Sat, 3 May 2003 23:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h446PMKJ026854 for ; Sat, 3 May 2003 23:25:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h446PMin049111 for ; Sat, 3 May 2003 23:25:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h446PMOH018128 for ; Sat, 3 May 2003 23:25:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h446PMgw018127; Sat, 3 May 2003 23:25:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305040625.h446PMgw018127@xorpc.icir.org> Date: Sat, 3 May 2003 23:25:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc conf_tree_node.cc master_conf_tree.cc module_manager.cc slave_conf_tree.cc task.cc task.hh template_commands.cc unexpanded_xrl.cc unexpanded_xrl.hh xorp_client.cc xorp_client.hh ...xrl_rtrmgr_interface.cc ...xrl_xorpsh_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/03 23:25:22 Modified files: xorp/rtrmgr/: cli.cc conf_tree_node.cc master_conf_tree.cc module_manager.cc slave_conf_tree.cc task.cc task.hh template_commands.cc unexpanded_xrl.cc unexpanded_xrl.hh xorp_client.cc xorp_client.hh xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc Log message: Making progress towards getting the restructured code to work properly again. Now works properly in no-execute mode. Execute mode still needs work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 12:34:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 12:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h45JZ3F9090938 for ; Mon, 5 May 2003 12:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45JZ3in068237 for ; Mon, 5 May 2003 12:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45JZ2KJ024930; Mon, 5 May 2003 12:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45JY1KJ024884 for ; Mon, 5 May 2003 12:34:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45JY1in068223 for ; Mon, 5 May 2003 12:34:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h45JY1OH035541 for ; Mon, 5 May 2003 12:34:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h45JY0Fi035540; Mon, 5 May 2003 12:34:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305051934.h45JY0Fi035540@xorpc.icir.org> Date: Mon, 5 May 2003 12:34:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fea.cc netlink_socket_utils.cc netlink_socket_utils.hh routing_socket_utils.cc routing_socket_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/05 12:34:00 Modified files: xorp/fea/: Makefile.am Makefile.in fea.cc netlink_socket_utils.cc netlink_socket_utils.hh routing_socket_utils.cc routing_socket_utils.hh Log message: * Added netlink_socket_utils.hh and netlink_socket_utils.cc to Makefile.am * Various Linux-related compilation fixes of problems that were hidden before _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 14:56:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 14:57:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Lv5F9002091 for ; Mon, 5 May 2003 14:57:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Lv5in069733 for ; Mon, 5 May 2003 14:57:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45Lv4KJ026828; Mon, 5 May 2003 14:57:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45LutKJ026821 for ; Mon, 5 May 2003 14:56:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Lutin069729 for ; Mon, 5 May 2003 14:56:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h45LutOH039645 for ; Mon, 5 May 2003 14:56:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h45LusTg039644; Mon, 5 May 2003 14:56:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305052156.h45LusTg039644@xorpc.icir.org> Date: Mon, 5 May 2003 14:56:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/05 14:56:54 Modified files: xorp/fea/: fea.cc ifconfig.cc Log message: * Few bug fixes * Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 15:43:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 15:44:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Mi3F9008412 for ; Mon, 5 May 2003 15:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Mi3in070144 for ; Mon, 5 May 2003 15:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45Mi2KJ027859; Mon, 5 May 2003 15:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h45Mh4KJ027838 for ; Mon, 5 May 2003 15:43:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Mh4in070139 for ; Mon, 5 May 2003 15:43:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h45Mh4OH040073 for ; Mon, 5 May 2003 15:43:04 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h45Mh4xx040072; Mon, 5 May 2003 15:43:04 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305052243.h45Mh4xx040072@xorpc.icir.org> Date: Mon, 5 May 2003 15:43:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/05 15:43:04 Modified files: xorp/rtrmgr/: module_command.cc task.cc task.hh Log message: Add a simple DelayValidation class to use when starting or stopping processes that don't have an explicit validation mechanism specified. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 18:48:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 18:49:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h461n3F9029864 for ; Mon, 5 May 2003 18:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h461n2in071726 for ; Mon, 5 May 2003 18:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h461n2KJ000979; Mon, 5 May 2003 18:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h461mSKJ000964 for ; Mon, 5 May 2003 18:48:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h461mSin071724 for ; Mon, 5 May 2003 18:48:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h461mSOH041621 for ; Mon, 5 May 2003 18:48:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h461mSHh041620; Mon, 5 May 2003 18:48:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305060148.h461mSHh041620@xorpc.icir.org> Date: Mon, 5 May 2003 18:48:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgpversion.cc xorp_if_mib_module.cc xorp/mibs/snmpdscripts/ loadbgp loadxorp_if startsnmp xorp/mibs/ bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/05 18:48:28 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgpversion.cc xorp_if_mib_module.cc xorp/mibs/snmpdscripts/: loadbgp loadxorp_if startsnmp Added files: xorp/mibs/: bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh Log message: Implemented bgpPeerTable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 18:50:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 18:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h461p2F9030063 for ; Mon, 5 May 2003 18:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h461p2in071761 for ; Mon, 5 May 2003 18:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h461p1KJ001015; Mon, 5 May 2003 18:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h461o7KJ000997 for ; Mon, 5 May 2003 18:50:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h461o7in071757 for ; Mon, 5 May 2003 18:50:07 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h461o7OH041674 for ; Mon, 5 May 2003 18:50:07 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h461o7TL041673; Mon, 5 May 2003 18:50:07 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305060150.h461o7TL041673@xorpc.icir.org> Date: Mon, 5 May 2003 18:50:07 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ getbgppeertable xorpenv.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/05 18:50:07 Added files: xorp/mibs/snmpdscripts/: getbgppeertable xorpenv.sh Log message: Convenience scripts to examine the mib tree _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Mon May 5 19:20:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 May 2003 19:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h462L2F9038740 for ; Mon, 5 May 2003 19:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h462L2in071967 for ; Mon, 5 May 2003 19:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h462L2KJ001404; Mon, 5 May 2003 19:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h462K3KJ001388 for ; Mon, 5 May 2003 19:20:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h462K3in071946 for ; Mon, 5 May 2003 19:20:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h462K3OH041923 for ; Mon, 5 May 2003 19:20:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h462K3Tc041922; Mon, 5 May 2003 19:20:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305060220.h462K3Tc041922@xorpc.icir.org> Date: Mon, 5 May 2003 19:20:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp.xif bgp_xif.cc xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/05/05 19:20:03 Modified files: xorp/xrl/interfaces/: bgp.xif bgp_xif.cc xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Tue May 6 15:31:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 May 2003 15:32:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h46MW3F9059194 for ; Tue, 6 May 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h46MW3in083894 for ; Tue, 6 May 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h46MW1KJ021886; Tue, 6 May 2003 15:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h46MVTKJ021871 for ; Tue, 6 May 2003 15:31:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h46MVSin083892 for ; Tue, 6 May 2003 15:31:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h46MVSOH067178 for ; Tue, 6 May 2003 15:31:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h46MVSSg067177; Tue, 6 May 2003 15:31:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305062231.h46MVSSg067177@xorpc.icir.org> Date: Tue, 6 May 2003 15:31:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/06 15:31:28 Modified files: ./: index.html news.html Log message: Added "Project News" item regarding Fred joining the XORP team. The join date in the news is today (to avoid rewriting the history :)) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 14:44:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 14:45:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Lj3F9041793 for ; Wed, 7 May 2003 14:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Lj2in096817 for ; Wed, 7 May 2003 14:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Lj2KJ014509; Wed, 7 May 2003 14:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Li0KJ014489 for ; Wed, 7 May 2003 14:44:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Li0in096801 for ; Wed, 7 May 2003 14:44:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Li0OH075160 for ; Wed, 7 May 2003 14:44:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47Li0o0075159; Wed, 7 May 2003 14:44:00 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305072144.h47Li0o0075159@xorpc.icir.org> Date: Wed, 7 May 2003 14:44:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_error.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/07 14:44:00 Modified files: xorp/libxipc/: xrl_error.hh Log message: Add XrlCmdError::error_code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 14:58:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 14:59:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Lx4F9043694 for ; Wed, 7 May 2003 14:59:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Lx3EX000266; Wed, 7 May 2003 14:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Lx3KJ014824; Wed, 7 May 2003 14:59:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47LwFKJ014794 for ; Wed, 7 May 2003 14:58:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47LwEEX000257 for ; Wed, 7 May 2003 14:58:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47LwEOH075693 for ; Wed, 7 May 2003 14:58:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47LwEml075692; Wed, 7 May 2003 14:58:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305072158.h47LwEml075692@xorpc.icir.org> Date: Wed, 7 May 2003 14:58:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/harness/ Makefile.am Makefile.in xorp/bgp/tools/ Makefile.am Makefile.in xorp/cli/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/libcomm/ Makefile.am Makefile.in xorp/libproto/ Makefile.am Makefile.in xorp/libxipc/ Makefile.am Makefile.in xorp/libxorp/ Makefile.am Makefile.in xorp/mfea/ Makefile.am Makefile.in xorp/mibs/ Makefile.am Makefile.in xorp/mld6igmp/ Makefile.am Makefile.in xorp/mrt/ Makefile.am Makefile.in xorp/ospfd/src/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xorp/policy/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in xorp/rip/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in xorp/rtrmgr/tools/ Makefile.am Makefile.in xorp/utils/ Makefile.am Makefile.in xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/tests/ Makefile.! am Makefile! .in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/05/07 14:58:14 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/bgp/harness/: Makefile.am Makefile.in xorp/bgp/tools/: Makefile.am Makefile.in xorp/cli/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/libcomm/: Makefile.am Makefile.in xorp/libproto/: Makefile.am Makefile.in xorp/libxipc/: Makefile.am Makefile.in xorp/libxorp/: Makefile.am Makefile.in xorp/mfea/: Makefile.am Makefile.in xorp/mibs/: Makefile.am Makefile.in xorp/mld6igmp/: Makefile.am Makefile.in xorp/mrt/: Makefile.am Makefile.in xorp/ospfd/src/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xorp/policy/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in xorp/rip/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in xorp/rtrmgr/tools/: Makefile.am Makefile.in xorp/utils/: Makefile.am Makefile.in xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in xorp/xrl/tests/: Makefile.am Makefile.in Log message: Merged Eddie's and my fixes to Makefile.am, so now XORP can be compiled in a separate directory. The most common change was that now practically most Makefile.am should have $(top_srcdir) in the list of directories to search for include files. E.g., INCLUDES = -I$(top_srcdir) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 16:15:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 16:16:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NG3F9056783 for ; Wed, 7 May 2003 16:16:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NG3EX000972 for ; Wed, 7 May 2003 16:16:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47NG2KJ016571; Wed, 7 May 2003 16:16:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47NFPKJ016561 for ; Wed, 7 May 2003 16:15:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NFOEX000968 for ; Wed, 7 May 2003 16:15:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NFOQg000808 for ; Wed, 7 May 2003 16:15:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47NFO1P000807; Wed, 7 May 2003 16:15:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305072315.h47NFO1P000807@xorpc.icir.org> Date: Wed, 7 May 2003 16:15:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/bgp/harness/ coord.cc coord.hh test_peer.cc test_peer.hh xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh xorp/fea/ xrl_target.cc xrl_target.hh xorp/libxipc/ finder_client_xrl_target.cc finder_client_xrl_target.hh finder_xrl_target.cc finder_xrl_target.hh xorp/mfea/ xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/ospfd/xorp/ xrl_target.C xrl_target.h xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xorp/rib/ xrl_target.cc xrl_target.hh xorp/rtrmgr/ xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xorp/xrl/interfaces/ bgp_xif.cc bgp_xif.hh common.xif common_xif.cc common_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_b! ase.hh fea.! xrls fea_base.cc fea_base.hh finder.xrls ...finder_base.cc ...finder_base.hh ...finder_client.xrls ...finder_client_base.cc ...finder_client_base.hh ...mfea.xrls ...mfea_base.cc ...mfea_base.hh ...mld6igmp.xrls ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf.xrls ...ospf_base.cc ...ospf_base.hh ...pim.xrls ...pim_base.cc ...pim_base.hh ...rib.xrls ...rib_base.cc ...rib_base.hh ...rtrmgr.xrls ...rtrmgr_base.cc ...rtrmgr_base.hh ...test.xrls ...test_base.cc ...test_base.hh ...test_peer.xrls ...test_peer_base.cc ...test_peer_base.hh ...xorpsh.xrls ...xorpsh_base.cc ...xorpsh_base.hh xorp/xrl/tests/ test_tgt.cc test_tgt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: mjh@xorpc.icir.org. 03/05/07 16:15:24 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/bgp/harness/: coord.cc coord.hh test_peer.cc test_peer.hh xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh xorp/fea/: xrl_target.cc xrl_target.hh xorp/libxipc/: finder_client_xrl_target.cc finder_client_xrl_target.hh finder_xrl_target.cc finder_xrl_target.hh xorp/mfea/: xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/ospfd/xorp/: xrl_target.C xrl_target.h xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xorp/rib/: xrl_target.cc xrl_target.hh xorp/rtrmgr/: xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xorp/xrl/interfaces/: bgp_xif.cc bgp_xif.hh common.xif common_xif.cc common_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh fea.xrls fea_base.cc fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh test.xrls test_base.cc test_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh xorp/xrl/tests/: test_tgt.cc test_tgt.hh Log message: Add get_status call to common interface; all processes currently always report READY state, but anything that wants to delay subsequent process startup can change this. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 16:40:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 16:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Nf2F9064026 for ; Wed, 7 May 2003 16:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Nf2EX001180 for ; Wed, 7 May 2003 16:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Nf2KJ017155; Wed, 7 May 2003 16:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47NeFKJ017133 for ; Wed, 7 May 2003 16:40:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NeFEX001172 for ; Wed, 7 May 2003 16:40:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NeFQg001155 for ; Wed, 7 May 2003 16:40:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47NeFVI001154; Wed, 7 May 2003 16:40:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305072340.h47NeFVI001154@xorpc.icir.org> Date: Wed, 7 May 2003 16:40:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/05/07 16:40:15 Added files: xorp/libxorp/: status_codes.h Log message: Status codes definintion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 16:42:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 16:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Nh2F9064277 for ; Wed, 7 May 2003 16:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Nh2EX001193 for ; Wed, 7 May 2003 16:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Nh2KJ017197; Wed, 7 May 2003 16:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47NggKJ017190 for ; Wed, 7 May 2003 16:42:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NggEX001191 for ; Wed, 7 May 2003 16:42:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NggQg001201 for ; Wed, 7 May 2003 16:42:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47Nggfj001200; Wed, 7 May 2003 16:42:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305072342.h47Nggfj001200@xorpc.icir.org> Date: Wed, 7 May 2003 16:42:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/05/07 16:42:42 Modified files: xorp/devnotes/: WORKPLAN Log message: Update WORKPLAN from this week's meeting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 16:49:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 16:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Np3F9065244 for ; Wed, 7 May 2003 16:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47Np2EX001280 for ; Wed, 7 May 2003 16:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47Np2KJ017343; Wed, 7 May 2003 16:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h47No0KJ017322 for ; Wed, 7 May 2003 16:50:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NnxEX001245 for ; Wed, 7 May 2003 16:49:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h47NnxQg001292 for ; Wed, 7 May 2003 16:49:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h47Nnxbj001291; Wed, 7 May 2003 16:49:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305072349.h47Nnxbj001291@xorpc.icir.org> Date: Wed, 7 May 2003 16:49:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/07 16:49:59 Modified files: xorp/libxorp/: status_codes.h Log message: * Add pathname to the #ifndef ... #define ... #endif protector * Add PROC_MAX in the list of ProcessStatus values. PROC_MAX by definition always has the maximum possible numerical value among all ProcessStatus codes. It is useful in case an integer value is casted to ProcessStatus value, and we want to easily verify that the result value is valid. YMMV :) * Space nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 17:01:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 17:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48022F9066848 for ; Wed, 7 May 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48022EX001389 for ; Wed, 7 May 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48021KJ017562; Wed, 7 May 2003 17:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4801ZKJ017551 for ; Wed, 7 May 2003 17:01:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4801ZEX001387 for ; Wed, 7 May 2003 17:01:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4801ZQg001806 for ; Wed, 7 May 2003 17:01:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4801ZgB001805; Wed, 7 May 2003 17:01:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305080001.h4801ZgB001805@xorpc.icir.org> Date: Wed, 7 May 2003 17:01:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.cc xorp/mfea/ xrl_mfea_node.cc xorp/cli/ xrl_cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/05/07 17:01:35 Modified files: xorp/pim/: xrl_pim_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.cc xorp/mfea/: xrl_mfea_node.cc xorp/cli/: xrl_cli_node.cc Log message: Reorder few of the include header files. The reason for this reordering is because of the inadequate and counter-intuitive solution I am still using for some include files (to be fixed later). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 17:17:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 May 2003 17:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h480I2F9072433 for ; Wed, 7 May 2003 17:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h480I2EX001576 for ; Wed, 7 May 2003 17:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h480I2KJ017828; Wed, 7 May 2003 17:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h480HVKJ017817 for ; Wed, 7 May 2003 17:17:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h480HVEX001572 for ; Wed, 7 May 2003 17:17:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h480HVQg005880 for ; Wed, 7 May 2003 17:17:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h480HVuN005879; Wed, 7 May 2003 17:17:31 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305080017.h480HVuN005879@xorpc.icir.org> Date: Wed, 7 May 2003 17:17:31 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657_bgpversion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/05/07 17:17:31 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657_bgpversion.cc Log message: Formatting and commenting _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Wed May 7 22:51:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 01:17:50 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h488HnKx047690 for ; Thu, 8 May 2003 01:17:50 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h485q2EX004042 for ; Wed, 7 May 2003 22:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h485q1KJ021978; Wed, 7 May 2003 22:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h485pSKJ021965 for ; Wed, 7 May 2003 22:51:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h485pSEX004030 for ; Wed, 7 May 2003 22:51:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h485pSQg008363 for ; Wed, 7 May 2003 22:51:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h485pShi008362; Wed, 7 May 2003 22:51:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305080551.h485pShi008362@xorpc.icir.org> Date: Wed, 7 May 2003 22:51:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/05/07 22:51:28 Modified files: xorp/rib/: rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh rt_tab_export.cc rt_tab_export.hh xrl_target.cc Log message: Changes to RIB to return NOT_READY state while it's getting VIF info from the FEA, and FAILED state if communication with the FEA suffers a fatal error (but the finder hasn't yet told us the FEA is dead). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:36 2005 Subject: No subject Thu May 8 14:27:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 14:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LS3Kd079707 for ; Thu, 8 May 2003 14:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LS3EX013105 for ; Thu, 8 May 2003 14:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48LS2KJ009035; Thu, 8 May 2003 14:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48LR1KJ008985 for ; Thu, 8 May 2003 14:27:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LR1EX013094 for ; Thu, 8 May 2003 14:27:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LR1Qg016298 for ; Thu, 8 May 2003 14:27:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48LR1tF016297; Thu, 8 May 2003 14:27:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305082127.h48LR1tF016297@xorpc.icir.org> Date: Thu, 8 May 2003 14:27:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc main.hh rib_ipc_handler.cc rib_ipc_handler.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/05/08 14:27:01 Modified files: xorp/bgp/: main.cc main.hh rib_ipc_handler.cc rib_ipc_handler.hh xrl_target.cc Log message: get_status XRL on BGP can now report PROC_FAILED when BGP has seen a fatal error communicating with the RIB. Also some mods to make XRL Error handling more compliant with the current error handling recommendations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 14:56:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 14:57:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Lv2Kd084444 for ; Thu, 8 May 2003 14:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Lv2EX013334 for ; Thu, 8 May 2003 14:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Lv2KJ009719; Thu, 8 May 2003 14:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48LuNKJ009711 for ; Thu, 8 May 2003 14:56:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LuNEX013330 for ; Thu, 8 May 2003 14:56:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48LuNQg016498 for ; Thu, 8 May 2003 14:56:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48LuNCm016497; Thu, 8 May 2003 14:56:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305082156.h48LuNCm016497@xorpc.icir.org> Date: Thu, 8 May 2003 14:56:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_register.cc proto_register.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/05/08 14:56:23 Modified files: xorp/libproto/: proto_register.cc proto_register.hh Log message: Add a list of all registered protocol instances. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 15:38:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 15:39:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Md4Kd091280 for ; Thu, 8 May 2003 15:39:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Md4EX013656 for ; Thu, 8 May 2003 15:39:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Md3KJ010544; Thu, 8 May 2003 15:39:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Mc6KJ010523 for ; Thu, 8 May 2003 15:38:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Mc5EX013646 for ; Thu, 8 May 2003 15:38:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Mc5Qg016812 for ; Thu, 8 May 2003 15:38:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48Mc51n016811; Thu, 8 May 2003 15:38:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305082238.h48Mc51n016811@xorpc.icir.org> Date: Thu, 8 May 2003 15:38:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/05/08 15:38:05 Modified files: xorp/fea/: Makefile.am Log message: Set variables before appending to them (later versions of automake complain). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 16:39:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 16:40:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Ne5Kd000871 for ; Thu, 8 May 2003 16:40:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Ne5EX014140; Thu, 8 May 2003 16:40:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Ne3KJ011709; Thu, 8 May 2003 16:40:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48NdsKJ011691 for ; Thu, 8 May 2003 16:39:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NdsEX014135 for ; Thu, 8 May 2003 16:39:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NdsQg017370 for ; Thu, 8 May 2003 16:39:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48Ndsax017369; Thu, 8 May 2003 16:39:54 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305082339.h48Ndsax017369@xorpc.icir.org> Date: Thu, 8 May 2003 16:39:54 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpconfig/ Changes by: jcardona@xorpc.icir.org. 03/05/08 16:39:54 xorp/mibs/snmpconfig Update of /usr/local/www/data/cvs/xorp/mibs/snmpconfig In directory xorpc.icir.org:/tmp/cvs-serv17361/snmpconfig Log Message: Directory /usr/local/www/data/cvs/xorp/mibs/snmpconfig added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 16:43:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 16:44:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Ni3Kd001354 for ; Thu, 8 May 2003 16:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Ni2EX014186 for ; Thu, 8 May 2003 16:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Ni2KJ011842; Thu, 8 May 2003 16:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Nh7KJ011819 for ; Thu, 8 May 2003 16:43:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nh6EX014179 for ; Thu, 8 May 2003 16:43:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nh6Qg017417 for ; Thu, 8 May 2003 16:43:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48Nh64E017416; Thu, 8 May 2003 16:43:06 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305082343.h48Nh64E017416@xorpc.icir.org> Date: Thu, 8 May 2003 16:43:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/textual/ Changes by: jcardona@xorpc.icir.org. 03/05/08 16:43:06 xorp/mibs/textual Update of /usr/local/www/data/cvs/xorp/mibs/textual In directory xorpc.icir.org:/tmp/cvs-serv17408/textual Log Message: Directory /usr/local/www/data/cvs/xorp/mibs/textual added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 16:45:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 16:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nk3Kd001617 for ; Thu, 8 May 2003 16:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nk2EX014222 for ; Thu, 8 May 2003 16:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Nk2KJ011924; Thu, 8 May 2003 16:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48NjBKJ011891 for ; Thu, 8 May 2003 16:45:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NjBEX014212 for ; Thu, 8 May 2003 16:45:11 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NjBQg017490 for ; Thu, 8 May 2003 16:45:11 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48NjBsn017489; Thu, 8 May 2003 16:45:11 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305082345.h48NjBsn017489@xorpc.icir.org> Date: Thu, 8 May 2003 16:45:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/05/08 16:45:11 Modified files: xorp/bgp/: main.cc next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh rib_ipc_handler.hh Log message: BGP now returns PROC_FAILED if the NextHopResolver suffered a fatal error talking to the RIB. Also, NextHopResolver now handles XRL errors more correctly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 16:45:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 16:46:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nk5Kd001644 for ; Thu, 8 May 2003 16:46:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48Nk5EX014226 for ; Thu, 8 May 2003 16:46:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48Nk4KJ011936; Thu, 8 May 2003 16:46:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h48NjnKJ011914 for ; Thu, 8 May 2003 16:45:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NjnEX014220 for ; Thu, 8 May 2003 16:45:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h48NjmQg017514 for ; Thu, 8 May 2003 16:45:48 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h48Njm4Y017513; Thu, 8 May 2003 16:45:48 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305082345.h48Njm4Y017513@xorpc.icir.org> Date: Thu, 8 May 2003 16:45:48 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ getbgppeertable getbgpversion loadbgp loadospf loadxorp_if startsnmp xorp/mibs/snmpconfig/ snmp.conf snmpd.conf snmpenv.sh xorp/mibs/textual/ BGP4-MIB.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/textual/ Changes by: jcardona@xorpc.icir.org. 03/05/08 16:45:48 Modified files: xorp/mibs/snmpdscripts/: getbgppeertable getbgpversion loadbgp loadospf loadxorp_if startsnmp Added files: xorp/mibs/snmpconfig/: snmp.conf snmpd.conf snmpenv.sh xorp/mibs/textual/: BGP4-MIB.txt Log message: Created configuration files to be able to run snmpd as non-root _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 17:42:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 17:43:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h490h3Kd008399 for ; Thu, 8 May 2003 17:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h490h2EX014678 for ; Thu, 8 May 2003 17:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h490h1KJ013017; Thu, 8 May 2003 17:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h490gcKJ013003 for ; Thu, 8 May 2003 17:42:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h490gcEX014669 for ; Thu, 8 May 2003 17:42:38 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h490gcQg017948 for ; Thu, 8 May 2003 17:42:38 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h490gcG3017947; Thu, 8 May 2003 17:42:38 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305090042.h490gcG3017947@xorpc.icir.org> Date: Thu, 8 May 2003 17:42:38 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpconfig/ snmp.conf snmpd.conf snmpenv.sh xorp/mibs/snmpdscripts/ snmp.conf xorpenv.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/08 17:42:38 Modified files: xorp/mibs/snmpconfig/: snmp.conf snmpd.conf snmpenv.sh Removed files: xorp/mibs/snmpdscripts/: snmp.conf xorpenv.sh Log message: Changed config to use SNMPv2c, since root access is required to create SNMPv3 users _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 18:20:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 18:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h491L3Kd012921 for ; Thu, 8 May 2003 18:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h491L2EX015049 for ; Thu, 8 May 2003 18:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h491L1KJ013705; Thu, 8 May 2003 18:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h491KYKJ013696 for ; Thu, 8 May 2003 18:20:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h491KYEX015036 for ; Thu, 8 May 2003 18:20:34 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h491KYQg018337 for ; Thu, 8 May 2003 18:20:34 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h491KYaM018336; Thu, 8 May 2003 18:20:34 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305090120.h491KYaM018336@xorpc.icir.org> Date: Thu, 8 May 2003 18:20:34 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpconfig/ snmpenv.sh xorp/mibs/snmpdscripts/ getbgppeertable getbgpversion loadbgp loadospf loadxorp_if unload Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/08 18:20:34 Modified files: xorp/mibs/snmpconfig/: snmpenv.sh xorp/mibs/snmpdscripts/: getbgppeertable getbgpversion loadbgp loadospf loadxorp_if unload Log message: Bourneshellized and added comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 22:23:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 22:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h495O2Kd041614 for ; Thu, 8 May 2003 22:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h495O2EX016587 for ; Thu, 8 May 2003 22:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h495O2KJ016694; Thu, 8 May 2003 22:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h495N7KJ016676 for ; Thu, 8 May 2003 22:23:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h495N7EX016581 for ; Thu, 8 May 2003 22:23:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h495N7Qg019801 for ; Thu, 8 May 2003 22:23:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h495N7vS019800; Thu, 8 May 2003 22:23:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305090523.h495N7vS019800@xorpc.icir.org> Date: Thu, 8 May 2003 22:23:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/05/08 22:23:07 Modified files: xorp/libxorp/: status_codes.h Log message: Remove PROC_MAX - it makes ennumeration in switch statements less readable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Thu May 8 22:32:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 May 2003 22:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h495X3Kd042713 for ; Thu, 8 May 2003 22:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h495X3EX016658 for ; Thu, 8 May 2003 22:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h495X2KJ016828; Thu, 8 May 2003 22:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h495WsKJ016822 for ; Thu, 8 May 2003 22:32:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h495WsEX016656 for ; Thu, 8 May 2003 22:32:54 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h495WsQg019892 for ; Thu, 8 May 2003 22:32:54 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h495WsGK019891; Thu, 8 May 2003 22:32:54 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305090532.h495WsGK019891@xorpc.icir.org> Date: Thu, 8 May 2003 22:32:54 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.cc xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 03/05/08 22:32:54 Modified files: xorp/fea/: xrl_ifmanager.cc xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_target.cc Log message: FEA should now return a status code of PROC_NOT_READY if any interface manager transactions are in progress, or if any interface changes remain to be propagated to the interface spy clients. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 12:11:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 12:12:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JC3Kd054504 for ; Fri, 9 May 2003 12:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JC3EX024825 for ; Fri, 9 May 2003 12:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49JC2KJ000234; Fri, 9 May 2003 12:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49JB1KJ000185 for ; Fri, 9 May 2003 12:11:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JB1EX024815 for ; Fri, 9 May 2003 12:11:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JB1Qg027138 for ; Fri, 9 May 2003 12:11:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49JB1Zc027137; Fri, 9 May 2003 12:11:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305091911.h49JB1Zc027137@xorpc.icir.org> Date: Fri, 9 May 2003 12:11:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/09 12:11:01 Modified files: xorp/mfea/: configure_mfea xorp/mld6igmp/: configure_mld6igmp Log message: Change the configured interface name of possum.icir.org from fxp0 to rl0 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 12:28:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 12:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JT3Kd057135 for ; Fri, 9 May 2003 12:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JT2EX024954 for ; Fri, 9 May 2003 12:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49JT2KJ000560; Fri, 9 May 2003 12:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49JSDKJ000545 for ; Fri, 9 May 2003 12:28:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JSDEX024952 for ; Fri, 9 May 2003 12:28:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JSCQg031756 for ; Fri, 9 May 2003 12:28:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49JSCXb031755; Fri, 9 May 2003 12:28:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305091928.h49JSCXb031755@xorpc.icir.org> Date: Fri, 9 May 2003 12:28:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/09 12:28:12 Modified files: xorp/fea/: ifconfig_get.hh Log message: Remove bogus method declaration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 12:36:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 12:37:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Jb3Kd058389 for ; Fri, 9 May 2003 12:37:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Jb2EX025031 for ; Fri, 9 May 2003 12:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Jb2KJ000702; Fri, 9 May 2003 12:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Ja6KJ000681 for ; Fri, 9 May 2003 12:36:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Ja6EX025020 for ; Fri, 9 May 2003 12:36:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Ja5Qg033233 for ; Fri, 9 May 2003 12:36:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49Ja5wr033232; Fri, 9 May 2003 12:36:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305091936.h49Ja5wr033232@xorpc.icir.org> Date: Fri, 9 May 2003 12:36:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in finder.xif finder_client.xif finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh xorp/xrl/targets/ Makefile.am Makefile.in finder.tgt finder.xrls finder_base.cc finder_base.hh finder_client.tgt finder_client.xrls finder_client_base.cc finder_client_base.hh xorp/xrl/tests/ test_generated.cc xorp/xrl/interfaces/ finder_event_notifier.xif finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer.xif ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/05/09 12:36:05 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in finder.xif finder_client.xif finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh xorp/xrl/targets/: Makefile.am Makefile.in finder.tgt finder.xrls finder_base.cc finder_base.hh finder_client.tgt finder_client.xrls finder_client_base.cc finder_client_base.hh xorp/xrl/tests/: test_generated.cc Added files: xorp/xrl/interfaces/: finder_event_notifier.xif finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer.xif finder_event_observer_xif.cc finder_event_observer_xif.hh Log message: msg-xrl _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 12:36:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 12:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Jb5Kd058414 for ; Fri, 9 May 2003 12:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Jb4EX025035 for ; Fri, 9 May 2003 12:37:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Jb4KJ000713; Fri, 9 May 2003 12:37:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49JaIKJ000690 for ; Fri, 9 May 2003 12:36:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JaIEX025022 for ; Fri, 9 May 2003 12:36:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49JaHQg033263 for ; Fri, 9 May 2003 12:36:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49JaHEa033262; Fri, 9 May 2003 12:36:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305091936.h49JaHEa033262@xorpc.icir.org> Date: Fri, 9 May 2003 12:36:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_messenger.hh ...finder_xrl_queue.cc ...finder_xrl_queue.hh ...finder_xrl_target.cc ...finder_xrl_target.hh ...test_finder.cc ...test_inproc.cc ...test_stcp.cc ...test_sudp.cc ...xrl_pf.hh ...xrl_pf_inproc.cc ...xrl_pf_inproc.hh ...xrl_pf_stcp.cc ...xrl_pf_stcp.hh ...xrl_pf_sudp.cc ...xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh xorp/libxipc/ test_finder_to.cc xrl_dispatcher.cc xrl_dispatcher.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/09 12:36:17 Modified files: xorp/libxipc/: .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_messenger.hh finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh test_finder.cc test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Added files: xorp/libxipc/: test_finder_to.cc xrl_dispatcher.cc xrl_dispatcher.hh Log message: msg-libxipc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 13:58:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 13:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Kx2Kd071614 for ; Fri, 9 May 2003 13:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Kx2EX025713 for ; Fri, 9 May 2003 13:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Kx1KJ002213; Fri, 9 May 2003 13:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49KwOKJ002204 for ; Fri, 9 May 2003 13:58:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49KwNEX025705 for ; Fri, 9 May 2003 13:58:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49KwNQg055771 for ; Fri, 9 May 2003 13:58:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49KwNxK055770; Fri, 9 May 2003 13:58:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305092058.h49KwNxK055770@xorpc.icir.org> Date: Fri, 9 May 2003 13:58:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in finder.xif finder_client.xif finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh finder_event_notifier.xif ...finder_event_notifier_xif.cc ...finder_event_notifier_xif.hh ...finder_event_observer.xif ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh xorp/xrl/targets/ Makefile.am Makefile.in finder.tgt finder.xrls finder_base.cc finder_base.hh finder_client.tgt finder_client.xrls finder_client_base.cc finder_client_base.hh xorp/xrl/tests/ test_generated.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/05/09 13:58:23 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in finder.xif finder_client.xif finder_client_xif.cc finder_client_xif.hh finder_xif.cc finder_xif.hh finder_event_notifier.xif finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer.xif finder_event_observer_xif.cc finder_event_observer_xif.hh xorp/xrl/targets/: Makefile.am Makefile.in finder.tgt finder.xrls finder_base.cc finder_base.hh finder_client.tgt finder_client.xrls finder_client_base.cc finder_client_base.hh xorp/xrl/tests/: test_generated.cc Log message: Add finder_event_notifier and finder_event_observer interfaces. The Finder implements the former and clients interested in the notfications should implement the latter. At the time of writing, the only events reported are birth and death events. Bump Finder interface version to 0.2. [ Forced commit to correct previous log entry. ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 14:00:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 14:01:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49L13Kd071993 for ; Fri, 9 May 2003 14:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49L13EX025751 for ; Fri, 9 May 2003 14:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49L12KJ002261; Fri, 9 May 2003 14:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49L0sKJ002249 for ; Fri, 9 May 2003 14:00:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49L0sEX025749 for ; Fri, 9 May 2003 14:00:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49L0sQg055848 for ; Fri, 9 May 2003 14:00:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49L0s5d055845; Fri, 9 May 2003 14:00:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305092100.h49L0s5d055845@xorpc.icir.org> Date: Fri, 9 May 2003 14:00:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_messenger.hh ...finder_xrl_queue.cc ...finder_xrl_queue.hh ...finder_xrl_target.cc ...finder_xrl_target.hh ...test_finder.cc ...test_inproc.cc ...test_stcp.cc ...test_sudp.cc ...xrl_pf.hh ...xrl_pf_inproc.cc ...xrl_pf_inproc.hh ...xrl_pf_stcp.cc ...xrl_pf_stcp.hh ...xrl_pf_sudp.cc ...xrl_pf_sudp.hh ...xrl_router.cc ...xrl_router.hh ...test_finder_to.cc ...xrl_dispatcher.cc ...xrl_dispatcher.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/09 14:00:54 Modified files: xorp/libxipc/: .cvsignore Makefile.am Makefile.in call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_messenger.hh finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh test_finder.cc test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh test_finder_to.cc xrl_dispatcher.cc xrl_dispatcher.hh Log message: o Support for class-based and instance-based Xrl resolution within Finder. o Support for Xrl target registration specifying singleton property (ie fail if another instance already exists and/or fail subsequent registrations of same class). o Add tunneling support from Finder to FinderClient so Finder can call Xrl's on Xrl targets. Needed for Finder to provide notifications of target birth and deaths. o Rename XrlCmdDispatcher as XrlDispatcher and move from xrl_router.{hh,cc} to xrl_dispatcher.{hh,cc}. o Remove target_id number from FinderClient methods use instance_name instead. [ Forced commit to correct previous log entry. ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 16:47:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 16:48:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Nm4Kd099098 for ; Fri, 9 May 2003 16:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Nm3EX027098 for ; Fri, 9 May 2003 16:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Nm2KJ005706; Fri, 9 May 2003 16:48:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49NlmKJ005694 for ; Fri, 9 May 2003 16:47:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49NlmEX027094 for ; Fri, 9 May 2003 16:47:48 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49NllQg072785 for ; Fri, 9 May 2003 16:47:47 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49NllqL072784; Fri, 9 May 2003 16:47:47 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305092347.h49NllqL072784@xorpc.icir.org> Date: Fri, 9 May 2003 16:47:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/09 16:47:47 Modified files: xorp/rtrmgr/: module_command.cc module_command.hh task.cc task.hh Log message: Add mechanism to rtrmgr to use Xrl get_status to determine process startup timing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 16:48:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 16:49:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Nn3Kd099271 for ; Fri, 9 May 2003 16:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49Nn2EX027110 for ; Fri, 9 May 2003 16:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49Nn2KJ005744; Fri, 9 May 2003 16:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h49NmZKJ005730 for ; Fri, 9 May 2003 16:48:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h49NmZEX027106 for ; Fri, 9 May 2003 16:48:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h49NmZQg072932 for ; Fri, 9 May 2003 16:48:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h49NmZ88072931; Fri, 9 May 2003 16:48:35 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305092348.h49NmZ88072931@xorpc.icir.org> Date: Fri, 9 May 2003 16:48:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp ospf.tp rib.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/05/09 16:48:35 Modified files: xorp/etc/templates/: bgp.tp fea.tp ospf.tp rib.tp Log message: Fix templates to match rtrmgr changes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:37 2005 Subject: No subject Fri May 9 17:01:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 17:02:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A025Kd001549 for ; Fri, 9 May 2003 17:02:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A024EX027243 for ; Fri, 9 May 2003 17:02:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A024KJ005962; Fri, 9 May 2003 17:02:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A01oKJ005946 for ; Fri, 9 May 2003 17:01:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A01oEX027235 for ; Fri, 9 May 2003 17:01:50 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A01nQg077240 for ; Fri, 9 May 2003 17:01:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4A01nvE077239; Fri, 9 May 2003 17:01:49 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305100001.h4A01nvE077239@xorpc.icir.org> Date: Fri, 9 May 2003 17:01:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/09 17:01:49 Modified files: xorp/rtrmgr/: task.cc Log message: Fix bug in code calling get_status XRL. rtrmgr can now start processes properly, but error handling isn't well tested yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Fri May 9 17:06:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 17:07:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A073Kd002374 for ; Fri, 9 May 2003 17:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A072EX027302 for ; Fri, 9 May 2003 17:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A072KJ006083; Fri, 9 May 2003 17:07:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A06gKJ006074 for ; Fri, 9 May 2003 17:06:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A06gEX027300 for ; Fri, 9 May 2003 17:06:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A06fQg083143 for ; Fri, 9 May 2003 17:06:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4A06fsT083142; Fri, 9 May 2003 17:06:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305100006.h4A06fsT083142@xorpc.icir.org> Date: Fri, 9 May 2003 17:06:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in TODO fea.cc fea_dummy.cc fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_entry_set.hh fticonfig_table_get.hh fticonfig_table_observer.hh ...fticonfig_table_set.hh ...ifconfig.cc ...ifconfig.hh ...ifconfig_get.hh ...ifconfig_observer.hh ...ifconfig_set.hh xorp/fea/ fticonfig_entry_get_dummy.cc fticonfig_entry_observer_dummy.cc fticonfig_entry_set_dummy.cc fticonfig_table_get_dummy.cc ...fticonfig_table_observer_dummy.cc ...fticonfig_table_set_dummy.cc ...ifconfig_get_dummy.cc ...ifconfig_observer_dummy.cc ...ifconfig_set_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/09 17:06:41 Modified files: xorp/fea/: Makefile.am Makefile.in TODO fea.cc fea_dummy.cc fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_entry_set.hh fticonfig_table_get.hh fticonfig_table_observer.hh fticonfig_table_set.hh ifconfig.cc ifconfig.hh ifconfig_get.hh ifconfig_observer.hh ifconfig_set.hh Added files: xorp/fea/: fticonfig_entry_get_dummy.cc fticonfig_entry_observer_dummy.cc fticonfig_entry_set_dummy.cc fticonfig_table_get_dummy.cc fticonfig_table_observer_dummy.cc fticonfig_table_set_dummy.cc ifconfig_get_dummy.cc ifconfig_observer_dummy.cc ifconfig_set_dummy.cc Log message: Added-back fea_dummy, though it is not tested yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Fri May 9 19:03:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 May 2003 19:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A242Kd021364 for ; Fri, 9 May 2003 19:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A242EX028224 for ; Fri, 9 May 2003 19:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A242KJ007622; Fri, 9 May 2003 19:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4A23KKJ007609 for ; Fri, 9 May 2003 19:03:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A23KEX028222 for ; Fri, 9 May 2003 19:03:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4A23KQg095657 for ; Fri, 9 May 2003 19:03:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4A23KKl095656; Fri, 9 May 2003 19:03:20 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305100203.h4A23KKl095656@xorpc.icir.org> Date: Fri, 9 May 2003 19:03:19 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgppeertable.cc xorp/mibs/snmpdscripts/ startsnmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/09 19:03:19 Modified files: xorp/mibs/: bgp4_mib_1657_bgppeertable.cc xorp/mibs/snmpdscripts/: startsnmp Log message: Fixed trashing of row data context Added LD_LIBRARY_PATH to startsnmp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Sat May 10 11:56:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 May 2003 11:57:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AIv2Kd062458 for ; Sat, 10 May 2003 11:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AIv2EX039241 for ; Sat, 10 May 2003 11:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4AIv1KJ019964; Sat, 10 May 2003 11:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4AIutKJ019958 for ; Sat, 10 May 2003 11:56:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AIutEX039239 for ; Sat, 10 May 2003 11:56:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AIutQg096374 for ; Sat, 10 May 2003 11:56:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4AIut3I096373; Sat, 10 May 2003 11:56:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305101856.h4AIut3I096373@xorpc.icir.org> Date: Sat, 10 May 2003 11:56:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: mjh@xorpc.icir.org. 03/05/10 11:56:55 Modified files: xorp/libxipc/: finder.cc Log message: Fix bug in Finder::messenger_death_event which might cause the wrong connection to be removed, or cause the finder to crash. Orion: please check my change is correct. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Sat May 10 12:30:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 May 2003 12:31:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AJV2Kd066455 for ; Sat, 10 May 2003 12:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AJV2EX039483 for ; Sat, 10 May 2003 12:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4AJV1KJ020350; Sat, 10 May 2003 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4AJUDKJ020335 for ; Sat, 10 May 2003 12:30:13 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AJUDEX039479; Sat, 10 May 2003 12:30:13 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4AJUDDj092574; Sat, 10 May 2003 12:30:13 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305101930.h4AJUDDj092574@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc In-Reply-To: Your message of "Sat, 10 May 2003 11:56:55." <200305101856.h4AIut3I096373@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 10 May 2003 12:30:13 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/libxipc/ | Changes by: mjh@xorpc.icir.org. 03/05/10 11:56:55 | | Modified files: | xorp/libxipc/: finder.cc | | Log message: | Fix bug in Finder::messenger_death_event which might cause the wrong | connection to be removed, or cause the finder to crash. | | Orion: please check my change is correct. Doh! That was a bit of a crap. Thanks - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Sat May 10 16:23:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 May 2003 16:24:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANO3Kd092082 for ; Sat, 10 May 2003 16:24:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANO2EX041090 for ; Sat, 10 May 2003 16:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANO2KJ022772; Sat, 10 May 2003 16:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANN5KJ022747 for ; Sat, 10 May 2003 16:23:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANN5EX041086 for ; Sat, 10 May 2003 16:23:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANN5Qg029375 for ; Sat, 10 May 2003 16:23:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4ANN5kb029374; Sat, 10 May 2003 16:23:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305102323.h4ANN5kb029374@xorpc.icir.org> Date: Sat, 10 May 2003 16:23:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh command_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh template_tree.hh template_tree_node.cc template_tree_node.hh xorpsh_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/10 16:23:04 Modified files: xorp/rtrmgr/: cli.cc cli.hh command_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh template_tree.hh template_tree_node.cc template_tree_node.hh xorpsh_main.hh Log message: Fix a number of bugs in xorpsh's CLI related to text-entry mode. Text-entry mode is still a crock, but you can at least now use it to configure all configurable functionality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Sat May 10 16:29:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 May 2003 16:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANU2Kd092542 for ; Sat, 10 May 2003 16:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANU2EX041129 for ; Sat, 10 May 2003 16:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANU1KJ022824; Sat, 10 May 2003 16:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANTNKJ022815 for ; Sat, 10 May 2003 16:29:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANTMEX041124 for ; Sat, 10 May 2003 16:29:23 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANTMQg030850 for ; Sat, 10 May 2003 16:29:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4ANTMeR030849; Sat, 10 May 2003 16:29:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305102329.h4ANTMeR030849@xorpc.icir.org> Date: Sat, 10 May 2003 16:29:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc slave_conf_tree_node.cc template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/10 16:29:22 Modified files: xorp/rtrmgr/: cli.cc slave_conf_tree_node.cc template_tree_node.cc Log message: Remove gratuitous debugging messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Sat May 10 16:33:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 May 2003 16:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANY2Kd092870 for ; Sat, 10 May 2003 16:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANY2EX041166 for ; Sat, 10 May 2003 16:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANY1KJ022887; Sat, 10 May 2003 16:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ANXHKJ022878 for ; Sat, 10 May 2003 16:33:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANXHEX041164 for ; Sat, 10 May 2003 16:33:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ANXHQg031629 for ; Sat, 10 May 2003 16:33:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4ANXHBl031628; Sat, 10 May 2003 16:33:17 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305102333.h4ANXHBl031628@xorpc.icir.org> Date: Sat, 10 May 2003 16:33:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/10 16:33:17 Modified files: xorp/rtrmgr/: TODO Log message: remove comment about MD5 - already done by Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 15:00:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 15:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CM12Kd011733 for ; Mon, 12 May 2003 15:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CM12EX065373 for ; Mon, 12 May 2003 15:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4CM11KJ000493; Mon, 12 May 2003 15:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4CM02KJ000457 for ; Mon, 12 May 2003 15:00:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CM02EX065349 for ; Mon, 12 May 2003 15:00:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CM02Qg084263 for ; Mon, 12 May 2003 15:00:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4CM02eQ084262; Mon, 12 May 2003 15:00:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305122200.h4CM02eQ084262@xorpc.icir.org> Date: Mon, 12 May 2003 15:00:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ finder_event_notifier.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/05/12 15:00:02 Modified files: xorp/xrl/interfaces/: finder_event_notifier.xif Log message: Simplify life by on supporting class registrations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 16:57:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 16:58:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CNw3Kd030126 for ; Mon, 12 May 2003 16:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CNw3EX066331 for ; Mon, 12 May 2003 16:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4CNw2KJ003000; Mon, 12 May 2003 16:58:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4CNvLKJ002971 for ; Mon, 12 May 2003 16:57:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CNvLEX066329 for ; Mon, 12 May 2003 16:57:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4CNvLQg095923 for ; Mon, 12 May 2003 16:57:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4CNvLGs095922; Mon, 12 May 2003 16:57:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305122357.h4CNvLGs095922@xorpc.icir.org> Date: Mon, 12 May 2003 16:57:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/12 16:57:21 Modified files: xorp/libxipc/: Makefile.am Makefile.in Log message: Change symlinks to use absolute path, can cause issues when building from other locations otherwise. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 17:04:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 17:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D053Kd031000 for ; Mon, 12 May 2003 17:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D053EX066389 for ; Mon, 12 May 2003 17:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D052KJ003234; Mon, 12 May 2003 17:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D04RKJ003221 for ; Mon, 12 May 2003 17:04:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D04REX066382 for ; Mon, 12 May 2003 17:04:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D04RQg098040 for ; Mon, 12 May 2003 17:04:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4D04RHO098039; Mon, 12 May 2003 17:04:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305130004.h4D04RHO098039@xorpc.icir.org> Date: Mon, 12 May 2003 17:04:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ clnt-gen tgt-gen xorp/xrl/scripts/Xif/ util.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/Xif/ Changes by: hodson@xorpc.icir.org. 03/05/12 17:04:27 Modified files: xorp/xrl/scripts/: clnt-gen tgt-gen xorp/xrl/scripts/Xif/: util.py Log message: Strip path components in core places to make rebuilding files from an alternative directory possible. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 17:21:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 17:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0M2Kd033082 for ; Mon, 12 May 2003 17:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0M2EX066553 for ; Mon, 12 May 2003 17:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0M1KJ003513; Mon, 12 May 2003 17:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0L4KJ003495 for ; Mon, 12 May 2003 17:21:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0L4EX066547 for ; Mon, 12 May 2003 17:21:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0L4Qg005033 for ; Mon, 12 May 2003 17:21:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4D0L4Nl005032; Mon, 12 May 2003 17:21:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305130021.h4D0L4Nl005032@xorpc.icir.org> Date: Mon, 12 May 2003 17:21:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/05/12 17:21:04 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: Path fix for regeneration of .hh and .cc files from outside of Xorp tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 17:24:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 17:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0P3Kd033460 for ; Mon, 12 May 2003 17:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0P2EX066574 for ; Mon, 12 May 2003 17:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0P2KJ003585; Mon, 12 May 2003 17:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0O0KJ003541 for ; Mon, 12 May 2003 17:24:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0O0EX066564 for ; Mon, 12 May 2003 17:24:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0O0Qg005741 for ; Mon, 12 May 2003 17:24:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4D0O04Z005740; Mon, 12 May 2003 17:24:00 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305130024.h4D0O04Z005740@xorpc.icir.org> Date: Mon, 12 May 2003 17:24:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_event_notifier_xif.cc ...finder_event_notifier_xif.hh ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh ...finder_xif.cc ...finder_xif.hh ...fti_xif.cc ...fti_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh ...mfea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ! ...pim_xif! .hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr_client_xif.hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls ...demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea.xrls ...fea_base.cc ...fea_base.hh ...finder.xrls ...finder_base.cc ...finder_base.hh ...finder_client.xrls ...finder_client_base.cc ...finder_client_base.hh ...mfea.xrls ...mfea_base.cc ...mfea_base.hh ...mld6igmp.xrls ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf.xrls ...ospf_base.cc ...ospf_base.hh ...pim.xrls ...pim_base.cc ...pim_base.hh ...rib.xrls ...rib_base.cc ...rib_base.hh ...ribclient.xrls ...ribclient_base.cc ...rib! client_base.hh ...rtrmgr.xrls ...rtrmgr_base.cc ...rtrmgr_b! ase.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/05/12 17:24:00 Modified files: xorp/xrl/interfaces/: bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh test.xrls test_base.cc test_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh Log message: Regeneration following edits to generator files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Mon May 12 17:36:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 May 2003 17:37:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0b4Kd038016 for ; Mon, 12 May 2003 17:37:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0b4EX066679 for ; Mon, 12 May 2003 17:37:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0b3KJ003807; Mon, 12 May 2003 17:37:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4D0aPKJ003789 for ; Mon, 12 May 2003 17:36:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0aOEX066672 for ; Mon, 12 May 2003 17:36:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4D0aOQg008611 for ; Mon, 12 May 2003 17:36:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4D0aOfA008610; Mon, 12 May 2003 17:36:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305130036.h4D0aOfA008610@xorpc.icir.org> Date: Mon, 12 May 2003 17:36:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ demo_fea_ifmgr_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/05/12 17:36:24 Modified files: xorp/fea/: demo_fea_ifmgr_client.cc Log message: Implement common/0.1/get_status _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Tue May 13 14:39:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 May 2003 14:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DLe2Kd087768 for ; Tue, 13 May 2003 14:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DLe2EX078890 for ; Tue, 13 May 2003 14:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4DLe2KJ027720; Tue, 13 May 2003 14:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4DLdjKJ027712 for ; Tue, 13 May 2003 14:39:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DLdiEX078885 for ; Tue, 13 May 2003 14:39:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DLdiQg064882 for ; Tue, 13 May 2003 14:39:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4DLdi5D064881; Tue, 13 May 2003 14:39:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305132139.h4DLdi5D064881@xorpc.icir.org> Date: Tue, 13 May 2003 14:39:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/13 14:39:44 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Tue May 13 16:59:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 May 2003 17:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E005Kd004533 for ; Tue, 13 May 2003 17:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E005EX080017 for ; Tue, 13 May 2003 17:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E004KJ000891; Tue, 13 May 2003 17:00:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4DNxFKJ000853 for ; Tue, 13 May 2003 16:59:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DNxFEX080001 for ; Tue, 13 May 2003 16:59:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4DNxFQg076846 for ; Tue, 13 May 2003 16:59:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4DNxFvZ076845; Tue, 13 May 2003 16:59:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305132359.h4DNxFvZ076845@xorpc.icir.org> Date: Tue, 13 May 2003 16:59:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.in Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/13 16:59:15 Modified files: xorp/libxipc/: Makefile.in Makefile.am Log message: Marginally better cross directory building. Cruft in previous version pointed out Pavlin. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Tue May 13 18:13:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 May 2003 18:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E1E3Kd013336 for ; Tue, 13 May 2003 18:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E1E3EX080605 for ; Tue, 13 May 2003 18:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E1E2KJ002122; Tue, 13 May 2003 18:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E1DiKJ002114 for ; Tue, 13 May 2003 18:13:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E1DiEX080603 for ; Tue, 13 May 2003 18:13:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E1DiQg094429 for ; Tue, 13 May 2003 18:13:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4E1Diw1094428; Tue, 13 May 2003 18:13:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305140113.h4E1Diw1094428@xorpc.icir.org> Date: Tue, 13 May 2003 18:13:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fti.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc ...fticonfig_entry_parse_nlm.cc ...fticonfig_entry_parse_rtm.cc ...fticonfig_entry_set.hh ...fticonfig_entry_set_dummy.cc ...fticonfig_entry_set_rtsock.cc ...fticonfig_table_get.hh ...fticonfig_table_get_dummy.cc ...fticonfig_table_get_netlink.cc ...fticonfig_table_get_sysctl.cc ...fticonfig_table_parse_nlm.cc ...fticonfig_table_parse_rtm.cc ...fticonfig_table_set.hh ...fticonfig_table_set_dummy.cc ...fticonfig_table_set_rtsock.cc ...ifconfig.cc ...ifconfig.hh ...ifconfig_get.hh ...ifconfig_get_dummy.cc ...ifconfig_get_getifaddrs.cc ...ifconfig_get_ioctl.cc ...ifconfig_get_sysctl.cc ...ifconfig_parse_ifaddrs.cc ...ifconfig_parse_ifreq.cc ...ifconfig_parse_rtm.cc ...ifconfig_set.hh ...ifconfig_set_dummy.cc ...ifconfig_set! _ioctl.cc ! ...netlink_socket_utils.cc ...netlink_socket_utils.hh ...routing_socket_utils.cc ...routing_socket_utils.hh ...xrl_ifmanager.cc ...xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/13 18:13:44 Modified files: xorp/fea/: fti.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_parse_nlm.cc fticonfig_entry_parse_rtm.cc fticonfig_entry_set.hh fticonfig_entry_set_dummy.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.hh fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_parse_nlm.cc fticonfig_table_parse_rtm.cc fticonfig_table_set.hh fticonfig_table_set_dummy.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_get.hh ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_sysctl.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc netlink_socket_utils.cc netlink_socket_utils.hh routing_socket_utils.cc routing_socket_utils.hh xrl_ifmanager.cc xrl_target.cc Log message: Fix problems with error return codes that I had introduced during the MFEA->FEA merging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Wed May 14 2:32:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 02:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9X2Kd071635 for ; Wed, 14 May 2003 02:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9X2EX084588 for ; Wed, 14 May 2003 02:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E9X1KJ010158; Wed, 14 May 2003 02:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E9WmKJ010150 for ; Wed, 14 May 2003 02:32:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9WlEX084586 for ; Wed, 14 May 2003 02:32:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9WlQg054229 for ; Wed, 14 May 2003 02:32:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4E9WlcV054228; Wed, 14 May 2003 02:32:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305140932.h4E9WlcV054228@xorpc.icir.org> Date: Wed, 14 May 2003 2:32:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/05/14 02:32:47 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc Log message: A coredump fix: Add one more argument to NextHopRibRequest::register_interest_response() callback: nexthop_interest (the address we are attempting to register with the RIB). This address is needed in case we need to attempt again to register same address in case of failure. Otherwise, using (*addr) for that (the original solution) may coredump because "addr" will be NULL in case of RESOLVE_FAILED for example. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:38 2005 Subject: No subject Wed May 14 2:37:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 02:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9c2Kd072245 for ; Wed, 14 May 2003 02:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9c2EX084635 for ; Wed, 14 May 2003 02:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E9c2KJ010243; Wed, 14 May 2003 02:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E9buKJ010236 for ; Wed, 14 May 2003 02:37:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9btEX084627 for ; Wed, 14 May 2003 02:37:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9btQg054332 for ; Wed, 14 May 2003 02:37:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4E9btvv054331; Wed, 14 May 2003 02:37:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305140937.h4E9btvv054331@xorpc.icir.org> Date: Wed, 14 May 2003 2:37:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO ifconfig.cc ifconfig.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/14 02:37:55 Modified files: xorp/fea/: TODO ifconfig.cc ifconfig.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_target.cc Log message: FEA vif-related fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 2:59:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 03:00:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EA03Kd074786 for ; Wed, 14 May 2003 03:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EA02EX084791 for ; Wed, 14 May 2003 03:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EA02KJ010538; Wed, 14 May 2003 03:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4E9xaKJ010523 for ; Wed, 14 May 2003 02:59:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9xaEX084783 for ; Wed, 14 May 2003 02:59:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4E9xZQg054492 for ; Wed, 14 May 2003 02:59:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4E9xZjJ054491; Wed, 14 May 2003 02:59:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305140959.h4E9xZjJ054491@xorpc.icir.org> Date: Wed, 14 May 2003 2:59:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/14 02:59:35 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Update FTI-related functions to use fti XRL interface version 0.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 3:32:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 03:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EAX2Kd079023 for ; Wed, 14 May 2003 03:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EAX2EX085112 for ; Wed, 14 May 2003 03:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EAX1KJ011008; Wed, 14 May 2003 03:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EAWRKJ010998 for ; Wed, 14 May 2003 03:32:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EAWREX085110 for ; Wed, 14 May 2003 03:32:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EAWQQg054983 for ; Wed, 14 May 2003 03:32:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EAWQnQ054982; Wed, 14 May 2003 03:32:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305141032.h4EAWQnQ054982@xorpc.icir.org> Date: Wed, 14 May 2003 3:32:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser.cc register_server.cc rib.cc rib_client.cc rt_tab_extint.cc rt_tab_origin.cc vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/14 03:32:26 Modified files: xorp/rib/: parser.cc register_server.cc rib.cc rib_client.cc rt_tab_extint.cc rt_tab_origin.cc vifmanager.cc Log message: * Remove unnecessary trailing '\n' in XLOG messages * Replace C++ strings arguments inside XLOG messages with printf-like arguments (where found). The reason for the replacement is because mixing both styles is confusing and difficult to read. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 11:25:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 11:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIQ3Kd037344 for ; Wed, 14 May 2003 11:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIQ3EX090281 for ; Wed, 14 May 2003 11:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIQ2KJ021497; Wed, 14 May 2003 11:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIPnKJ021487 for ; Wed, 14 May 2003 11:25:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIPnEX090279 for ; Wed, 14 May 2003 11:25:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIPnQg015889 for ; Wed, 14 May 2003 11:25:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EIPnJq015888; Wed, 14 May 2003 11:25:49 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305141825.h4EIPnJq015888@xorpc.icir.org> Date: Wed, 14 May 2003 11:25:49 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/14 11:25:49 xorp/mibs/tests Update of /usr/local/www/data/cvs/xorp/mibs/tests In directory xorpc.icir.org:/tmp/cvs-serv15880/tests Log Message: Directory /usr/local/www/data/cvs/xorp/mibs/tests added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 11:32:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 11:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIX2Kd040700 for ; Wed, 14 May 2003 11:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIX2EX090335 for ; Wed, 14 May 2003 11:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIX1KJ021702; Wed, 14 May 2003 11:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIWHKJ021683 for ; Wed, 14 May 2003 11:32:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIWHEX090333 for ; Wed, 14 May 2003 11:32:17 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIWHQg016015 for ; Wed, 14 May 2003 11:32:17 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EIWHJu016014; Wed, 14 May 2003 11:32:17 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305141832.h4EIWHJu016014@xorpc.icir.org> Date: Wed, 14 May 2003 11:32:17 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/targets/ bgp4_mib.tgt bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: jcardona@xorpc.icir.org. 03/05/14 11:32:17 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/targets/: bgp4_mib.tgt bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh Log message: Created BGP4 MIB target _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 11:34:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 11:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIZ3Kd041039 for ; Wed, 14 May 2003 11:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIZ2EX090354 for ; Wed, 14 May 2003 11:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIZ2KJ021775; Wed, 14 May 2003 11:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EIYYKJ021760 for ; Wed, 14 May 2003 11:34:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIYYEX090349 for ; Wed, 14 May 2003 11:34:34 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EIYXQg016053 for ; Wed, 14 May 2003 11:34:33 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EIYXML016052; Wed, 14 May 2003 11:34:33 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305141834.h4EIYXML016052@xorpc.icir.org> Date: Wed, 14 May 2003 11:34:33 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc test_xorpevents.cc xorp_if_mib_module.cc xorpevents.cc xorpevents.hh xorp/mibs/snmpdscripts/ startsnmp xorp/mibs/ bgp4_mib_module.h bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh xorp_if_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/14 11:34:33 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc test_xorpevents.cc xorp_if_mib_module.cc xorpevents.cc xorpevents.hh xorp/mibs/snmpdscripts/: startsnmp Added files: xorp/mibs/: bgp4_mib_module.h bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh xorp_if_module.h Log message: Implemented Xrl target functionality for the BGP-4 MIB. At this time only the common interface is supported. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 12:27:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 12:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EJS3Kd058142 for ; Wed, 14 May 2003 12:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EJS3EX090772 for ; Wed, 14 May 2003 12:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EJS2KJ023172; Wed, 14 May 2003 12:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EJRuKJ023166 for ; Wed, 14 May 2003 12:27:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EJRuEX090770 for ; Wed, 14 May 2003 12:27:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EJRuQg020807 for ; Wed, 14 May 2003 12:27:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EJRuM1020806; Wed, 14 May 2003 12:27:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305141927.h4EJRuM1020806@xorpc.icir.org> Date: Wed, 14 May 2003 12:27:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/05/14 12:27:56 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: Partial cross directory build fix for file generation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 13:33:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 13:34:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EKY5Kd068826 for ; Wed, 14 May 2003 13:34:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EKY5EX091304 for ; Wed, 14 May 2003 13:34:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EKY4KJ024741; Wed, 14 May 2003 13:34:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EKXBKJ024727 for ; Wed, 14 May 2003 13:33:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EKXAEX091292 for ; Wed, 14 May 2003 13:33:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EKXAQg038469 for ; Wed, 14 May 2003 13:33:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EKXAFk038468; Wed, 14 May 2003 13:33:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305142033.h4EKXAFk038468@xorpc.icir.org> Date: Wed, 14 May 2003 13:33:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/14 13:33:10 Modified files: xorp/fea/: ifconfig_set_dummy.cc Log message: Dummy FEA related bugfix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 14:02:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 14:03:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EL34Kd073505 for ; Wed, 14 May 2003 14:03:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EL34EX091521 for ; Wed, 14 May 2003 14:03:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EL33KJ025427; Wed, 14 May 2003 14:03:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EL2SKJ025412 for ; Wed, 14 May 2003 14:02:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EL2SEX091515 for ; Wed, 14 May 2003 14:02:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EL2SQg045373 for ; Wed, 14 May 2003 14:02:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EL2SNS045372; Wed, 14 May 2003 14:02:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305142102.h4EL2SNS045372@xorpc.icir.org> Date: Wed, 14 May 2003 14:02:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/05/14 14:02:28 Modified files: xorp/mibs/: Makefile.am Makefile.in Log message: Defined LD_LIBRARY_PATH in the test environment _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 15:56:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 15:57:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EMv4Kd091780 for ; Wed, 14 May 2003 15:57:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EMv4EX092329 for ; Wed, 14 May 2003 15:57:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EMv3KJ028233; Wed, 14 May 2003 15:57:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4EMu5KJ028216 for ; Wed, 14 May 2003 15:56:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EMu5EX092323 for ; Wed, 14 May 2003 15:56:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4EMu5Qg046121 for ; Wed, 14 May 2003 15:56:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4EMu5KJ046120; Wed, 14 May 2003 15:56:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305142256.h4EMu5KJ046120@xorpc.icir.org> Date: Wed, 14 May 2003 15:56:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/05/14 15:56:04 Modified files: xorp/devnotes/: WORKPLAN Log message: Workplan update _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 17:02:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 17:03:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F034Kd004282 for ; Wed, 14 May 2003 17:03:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F034EX092839 for ; Wed, 14 May 2003 17:03:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4F032KJ029672; Wed, 14 May 2003 17:03:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4F02MKJ029649 for ; Wed, 14 May 2003 17:02:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F02MEX092837 for ; Wed, 14 May 2003 17:02:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F02MQg058398 for ; Wed, 14 May 2003 17:02:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4F02MJQ058397; Wed, 14 May 2003 17:02:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305150002.h4F02MJQ058397@xorpc.icir.org> Date: Wed, 14 May 2003 17:02:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.in Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/05/14 17:02:22 Modified files: xorp/xrl/interfaces/: Makefile.in Makefile.am Log message: Cross directory file generation fix (yuk!). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Wed May 14 20:47:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 May 2003 20:48:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F3m3Kd049324 for ; Wed, 14 May 2003 20:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F3m2EX094441 for ; Wed, 14 May 2003 20:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4F3m2KJ002861; Wed, 14 May 2003 20:48:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4F3l1KJ002846 for ; Wed, 14 May 2003 20:47:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F3l1EX094439 for ; Wed, 14 May 2003 20:47:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4F3l1Qg084333 for ; Wed, 14 May 2003 20:47:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4F3l1dO084332; Wed, 14 May 2003 20:47:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305150347.h4F3l1dO084332@xorpc.icir.org> Date: Wed, 14 May 2003 20:47:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/14 20:47:01 Modified files: xorp/rib/: main_rib.cc rib_manager.cc Log message: Remove #ifdef HAVE_IPV6 from RIB (as discussed approx 3 weeks ago). This should fix a fatal error on Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 7:52:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 07:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEr2Kd028334 for ; Thu, 15 May 2003 07:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEr2EX099848 for ; Thu, 15 May 2003 07:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FEr1KJ013427; Thu, 15 May 2003 07:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FEq9KJ013405 for ; Thu, 15 May 2003 07:52:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEq9EX099844 for ; Thu, 15 May 2003 07:52:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEq9Qg070183 for ; Thu, 15 May 2003 07:52:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FEq9OJ070182; Thu, 15 May 2003 07:52:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151452.h4FEq9OJ070182@xorpc.icir.org> Date: Thu, 15 May 2003 7:52:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom.hh xrl_atom.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/15 07:52:09 Modified files: xorp/libxipc/: xrl_atom.hh xrl_atom.cc Log message: Fix a compilation warning on gcc3.3 (uninline XrlAtom::discard_dymanic()). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 7:54:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 07:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEt2Kd028585 for ; Thu, 15 May 2003 07:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEt2EX099864 for ; Thu, 15 May 2003 07:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FEt2KJ013462; Thu, 15 May 2003 07:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FEsRKJ013454 for ; Thu, 15 May 2003 07:54:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEsQEX099858 for ; Thu, 15 May 2003 07:54:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FEsQQg070217 for ; Thu, 15 May 2003 07:54:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FEsQ8E070216; Thu, 15 May 2003 07:54:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151454.h4FEsQ8E070216@xorpc.icir.org> Date: Thu, 15 May 2003 7:54:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipvxnet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/05/15 07:54:26 Modified files: xorp/libxorp/: ipvxnet.hh Log message: Inline IPNet constructors to prevent multiple symbol defs with gcc3.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 8:53:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 08:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FFs2Kd037069 for ; Thu, 15 May 2003 08:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FFs2EX001884 for ; Thu, 15 May 2003 08:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FFs1KJ014457; Thu, 15 May 2003 08:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FFr6KJ014425 for ; Thu, 15 May 2003 08:53:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FFr6EX001880 for ; Thu, 15 May 2003 08:53:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FFr6Qg078473 for ; Thu, 15 May 2003 08:53:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FFr6qu078472; Thu, 15 May 2003 08:53:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151553.h4FFr6qu078472@xorpc.icir.org> Date: Thu, 15 May 2003 8:53:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/05/15 08:53:05 Modified files: xorp/fea/: iftree.hh Log message: Relocate inline function implementations for IfTree iterator accessors to allow compilation on gcc3.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:00:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG12Kd037921 for ; Thu, 15 May 2003 09:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG12EX001974 for ; Thu, 15 May 2003 09:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FG12KJ014613; Thu, 15 May 2003 09:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FG0BKJ014592 for ; Thu, 15 May 2003 09:00:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG0BEX001966 for ; Thu, 15 May 2003 09:00:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG0BQg078562 for ; Thu, 15 May 2003 09:00:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FG0BAQ078561; Thu, 15 May 2003 09:00:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151600.h4FG0BAQ078561@xorpc.icir.org> Date: Thu, 15 May 2003 9:00:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:00:11 Modified files: xorp/bgp/: aspath.hh Log message: GCC3.3 fix: include "xorp.h" rather than "config.h" to suck in "assert.h". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:09:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGA2Kd039010 for ; Thu, 15 May 2003 09:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGA2EX002063 for ; Thu, 15 May 2003 09:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGA1KJ014776; Thu, 15 May 2003 09:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FG9uKJ014770 for ; Thu, 15 May 2003 09:09:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG9tEX002058 for ; Thu, 15 May 2003 09:09:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FG9tQg078626 for ; Thu, 15 May 2003 09:09:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FG9tTA078625; Thu, 15 May 2003 09:09:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151609.h4FG9tTA078625@xorpc.icir.org> Date: Thu, 15 May 2003 9:09:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:09:55 Modified files: xorp/bgp/: main.cc Log message: GCC3.3 nit: EventLoop::timers_pending returns a bool. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:10:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:11:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGB4Kd039158 for ; Thu, 15 May 2003 09:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGB4EX002086 for ; Thu, 15 May 2003 09:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGB3KJ014832; Thu, 15 May 2003 09:11:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGAhKJ014799 for ; Thu, 15 May 2003 09:10:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGAhEX002084 for ; Thu, 15 May 2003 09:10:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGAhQg078667 for ; Thu, 15 May 2003 09:10:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FGAh1i078666; Thu, 15 May 2003 09:10:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151610.h4FGAh1i078666@xorpc.icir.org> Date: Thu, 15 May 2003 9:10:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:10:43 Modified files: xorp/bgp/: subnet_route.hh Log message: GCC3.3 nit: a uint8_t is always going to be less than 0xffff :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:12:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:13:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGD3Kd039409 for ; Thu, 15 May 2003 09:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGD3EX002107 for ; Thu, 15 May 2003 09:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGD2KJ014871; Thu, 15 May 2003 09:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGCIKJ014857 for ; Thu, 15 May 2003 09:12:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGCIEX002101 for ; Thu, 15 May 2003 09:12:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGCIQg078709 for ; Thu, 15 May 2003 09:12:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FGCIiK078708; Thu, 15 May 2003 09:12:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151612.h4FGCIiK078708@xorpc.icir.org> Date: Thu, 15 May 2003 9:12:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:12:18 Modified files: xorp/bgp/: parameter.cc Log message: GCC3.3 nit: remove dubious assertiont (max value of uint8_t is always less than or equal to 255). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:37:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGc3Kd042381 for ; Thu, 15 May 2003 09:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGc3EX002300 for ; Thu, 15 May 2003 09:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGc2KJ015374; Thu, 15 May 2003 09:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGbtKJ015368 for ; Thu, 15 May 2003 09:37:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGbsEX002296 for ; Thu, 15 May 2003 09:37:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGbsQg078952 for ; Thu, 15 May 2003 09:37:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FGbspQ078951; Thu, 15 May 2003 09:37:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151637.h4FGbspQ078951@xorpc.icir.org> Date: Thu, 15 May 2003 9:37:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.hh route_table_cache.hh route_table_fanout.cc route_table_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:37:54 Modified files: xorp/bgp/: bgp_trie.hh route_table_cache.hh route_table_fanout.cc route_table_ribout.cc Log message: GCC3.3 fix: inline specialized methods to avoid multiple symbol definitions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:39 2005 Subject: No subject Thu May 15 9:47:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 09:48:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGm4Kd043568 for ; Thu, 15 May 2003 09:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGm4EX002377 for ; Thu, 15 May 2003 09:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGm3KJ015547; Thu, 15 May 2003 09:48:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FGlxKJ015540 for ; Thu, 15 May 2003 09:48:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGlxEX002375 for ; Thu, 15 May 2003 09:47:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FGlxQg079028 for ; Thu, 15 May 2003 09:47:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FGlxe4079027; Thu, 15 May 2003 09:47:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151647.h4FGlxe4079027@xorpc.icir.org> Date: Thu, 15 May 2003 9:47:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/05/15 09:47:59 Modified files: xorp/bgp/: plumbing.cc Log message: GCC3.3: compilation fix (force symbol generation for plumbing templates). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 10:22:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 10:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHN2Kd047717 for ; Thu, 15 May 2003 10:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHN2EX002700 for ; Thu, 15 May 2003 10:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FHN1KJ016226; Thu, 15 May 2003 10:23:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FHMNKJ016206 for ; Thu, 15 May 2003 10:22:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHMMEX002693 for ; Thu, 15 May 2003 10:22:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHMMQg079264 for ; Thu, 15 May 2003 10:22:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FHMMx0079263; Thu, 15 May 2003 10:22:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151722.h4FHMMx0079263@xorpc.icir.org> Date: Thu, 15 May 2003 10:22:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_io.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/05/15 10:22:22 Modified files: xorp/rip/: port_io.hh Log message: GCC3.3 fix: inline specialized methods to avoid multiple symbol definitions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 10:29:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 10:30:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHU3Kd048527 for ; Thu, 15 May 2003 10:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHU3EX002754 for ; Thu, 15 May 2003 10:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FHU2KJ016365; Thu, 15 May 2003 10:30:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FHTtKJ016358 for ; Thu, 15 May 2003 10:29:55 -0700 (PDT) Received: from aardvark.icir.org (aardvark.icir.org [192.150.187.20]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHTtEX002749; Thu, 15 May 2003 10:29:55 -0700 (PDT) (envelope-from mjh@aardvark.icir.org) Received: from aardvark.icir.org (localhost [127.0.0.1]) by aardvark.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FHTtZt010676; Thu, 15 May 2003 10:29:55 -0700 (PDT) (envelope-from mjh@aardvark.icir.org) From: Mark Handley X-Organisation: ICIR To: hodson@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_io.hh In-reply-to: Your message of "Thu, 15 May 2003 10:22:22." <200305151722.h4FHMMx0079263@xorpc.icir.org> Date: Thu, 15 May 2003 10:29:55 -0700 Message-ID: <10675.1053019795@aardvark.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >Log message: > GCC3.3 fix: inline specialized methods to avoid multiple symbol > definitions. I thought inline was only a hint to the compiler, and as such, can be ignored. Thus if there's a real problem, this seems like an unreliable or potentially non-portable fix. Am I misunderstanding what inline means? Cheers, Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 11:09:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 11:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIA3Kd057332 for ; Thu, 15 May 2003 11:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIA3EX003106 for ; Thu, 15 May 2003 11:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FIA2KJ017297; Thu, 15 May 2003 11:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FI9nKJ017290 for ; Thu, 15 May 2003 11:09:50 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FI9nEX003101; Thu, 15 May 2003 11:09:49 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FI9nCM065838; Thu, 15 May 2003 11:09:49 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305151809.h4FI9nCM065838@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Mark Handley cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_io.hh In-Reply-To: Your message of "Thu, 15 May 2003 10:29:55 PDT." <10675.1053019795@aardvark.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 15 May 2003 11:09:49 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | | >Log message: | > GCC3.3 fix: inline specialized methods to avoid multiple symbol | > definitions. | | I thought inline was only a hint to the compiler, and as such, can be | ignored. Thus if there's a real problem, this seems like an | unreliable or potentially non-portable fix. Yes, inline is just a hint, but it has the side of effect of coercing internal linkage (a la static) when the function can't be inlined. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 11:11:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 11:12:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIC4Kd058133 for ; Thu, 15 May 2003 11:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIC4EX003141 for ; Thu, 15 May 2003 11:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FIC3KJ017383; Thu, 15 May 2003 11:12:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FIBTKJ017359 for ; Thu, 15 May 2003 11:11:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIBSEX003138 for ; Thu, 15 May 2003 11:11:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FIBSQg079902 for ; Thu, 15 May 2003 11:11:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FIBSne079901; Thu, 15 May 2003 11:11:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305151811.h4FIBSne079901@xorpc.icir.org> Date: Thu, 15 May 2003 11:11:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospfd_xorp.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: hodson@xorpc.icir.org. 03/05/15 11:11:28 Modified files: xorp/ospfd/xorp/: ospfd_xorp.C Log message: GCC3.3 fix: disable an assertion that's always true. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 12:18:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 12:19:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJJ4Kd071351 for ; Thu, 15 May 2003 12:19:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJJ4EX003805 for ; Thu, 15 May 2003 12:19:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FJJ3KJ018953; Thu, 15 May 2003 12:19:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FJIvKJ018938 for ; Thu, 15 May 2003 12:18:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJIuEX003798 for ; Thu, 15 May 2003 12:18:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJIuQg080632 for ; Thu, 15 May 2003 12:18:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FJIu2F080631; Thu, 15 May 2003 12:18:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305151918.h4FJIu2F080631@xorpc.icir.org> Date: Thu, 15 May 2003 12:18:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/05/15 12:18:56 Modified files: xorp/bgp/: route_table_fanout.cc Log message: Compilation fix if DEBUG_LOGGING is enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 12:21:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 12:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJM3Kd071872 for ; Thu, 15 May 2003 12:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJM2EX003842 for ; Thu, 15 May 2003 12:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FJM2KJ019009; Thu, 15 May 2003 12:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FJLbKJ019001 for ; Thu, 15 May 2003 12:21:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJLbEX003840 for ; Thu, 15 May 2003 12:21:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FJLbQg080673 for ; Thu, 15 May 2003 12:21:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FJLbHx080672; Thu, 15 May 2003 12:21:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305151921.h4FJLbHx080672@xorpc.icir.org> Date: Thu, 15 May 2003 12:21:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/05/15 12:21:37 Modified files: xorp/bgp/: route_table_ribout.cc Log message: Compilation fix if DEBUG_LOGGING is enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 14:46:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 14:47:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FLl3Kd095497 for ; Thu, 15 May 2003 14:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FLl3EX005092 for ; Thu, 15 May 2003 14:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FLl2KJ021795; Thu, 15 May 2003 14:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FLkVKJ021783 for ; Thu, 15 May 2003 14:46:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FLkVEX005089 for ; Thu, 15 May 2003 14:46:31 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FLkVQg081651 for ; Thu, 15 May 2003 14:46:31 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FLkV8O081650; Thu, 15 May 2003 14:46:31 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305152146.h4FLkV8O081650@xorpc.icir.org> Date: Thu, 15 May 2003 14:46:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/05/15 14:46:31 Modified files: other/tinderbox/scripts/: config tinderbox.sh Log message: Add buildflags configuration variables and use it to parallel tinderbox compilations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 16:10:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 16:11:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNB4Kd009474 for ; Thu, 15 May 2003 16:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNB3EX005754 for ; Thu, 15 May 2003 16:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNB2KJ023482; Thu, 15 May 2003 16:11:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNAWKJ023454 for ; Thu, 15 May 2003 16:10:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNAWEX005748 for ; Thu, 15 May 2003 16:10:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNAWQg082378 for ; Thu, 15 May 2003 16:10:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FNAWD1082377; Thu, 15 May 2003 16:10:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305152310.h4FNAWD1082377@xorpc.icir.org> Date: Thu, 15 May 2003 16:10:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fea.cc fea_dummy.cc xorp/fea/ mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_kernel_messages.hh mfea_module.h mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_osdep.hh ...mfea_proto_comm.cc ...mfea_proto_comm.hh ...mfea_vif.cc ...mfea_vif.hh ...xrl_mfea_node.cc ...xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/15 16:10:32 Modified files: xorp/fea/: Makefile.am Makefile.in fea.cc fea_dummy.cc Added files: xorp/fea/: mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_kernel_messages.hh mfea_module.h mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_osdep.hh mfea_proto_comm.cc mfea_proto_comm.hh mfea_vif.cc mfea_vif.hh xrl_mfea_node.cc xrl_mfea_node.hh Log message: Refactor the original MFEA code: - remove stuff that is already in the FEA - rename UnixComm to ProtoComm and break it into multicast-router related functionalities (in MfeaMrouter), and raw protocol-related functionalities (in ProtoComm) - Rename MFEA_UNIX_* to MFEA_* - Other misc small cleanup (remove _unix_ from pathnames, etc.) Currently, the multicast-related code compiles, but doesn't work yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 16:40:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 16:41:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNf2Kd014381 for ; Thu, 15 May 2003 16:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNf2EX005951 for ; Thu, 15 May 2003 16:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNf2KJ024060; Thu, 15 May 2003 16:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNecKJ024048 for ; Thu, 15 May 2003 16:40:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNecEX005949 for ; Thu, 15 May 2003 16:40:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNecQg082587 for ; Thu, 15 May 2003 16:40:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FNecKl082586; Thu, 15 May 2003 16:40:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305152340.h4FNecKl082586@xorpc.icir.org> Date: Thu, 15 May 2003 16:40:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node.cc mfea_node.hh mfea_unix_kernel_messages.hh mfea_unix_osdep.hh xrl_mfea_node.cc xorp/pim/ TODO pim_node.cc pim_node.hh xorp/xrl/interfaces/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 03/05/15 16:40:38 Modified files: xorp/mfea/: mfea_node.cc mfea_node.hh mfea_unix_kernel_messages.hh mfea_unix_osdep.hh xrl_mfea_node.cc xorp/pim/: TODO pim_node.cc pim_node.hh xorp/xrl/interfaces/: Makefile.in Log message: Renaming (in preparation of merging the MFEA with the FEA): MFEA_UNIX_KERNEL_MESSAGE_* -> MFEA_KERNEL_MESSAGE_* _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 16:52:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 16:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNr2Kd016340 for ; Thu, 15 May 2003 16:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNr2EX006028 for ; Thu, 15 May 2003 16:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNr2KJ024290; Thu, 15 May 2003 16:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNqQKJ024273 for ; Thu, 15 May 2003 16:52:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNqQEX006020 for ; Thu, 15 May 2003 16:52:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNqQQg086962 for ; Thu, 15 May 2003 16:52:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FNqQpP086961; Thu, 15 May 2003 16:52:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305152352.h4FNqQpP086961@xorpc.icir.org> Date: Thu, 15 May 2003 16:52:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_parser_input.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/15 16:52:26 Modified files: xorp/libxipc/: xrl_parser_input.cc Log message: Fix opening of absolute path input files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 16:52:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 16:53:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNr4Kd016359 for ; Thu, 15 May 2003 16:53:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNr4EX006032 for ; Thu, 15 May 2003 16:53:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNr4KJ024301; Thu, 15 May 2003 16:53:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4FNqmKJ024282 for ; Thu, 15 May 2003 16:52:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNqmEX006022 for ; Thu, 15 May 2003 16:52:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4FNqmQg086989 for ; Thu, 15 May 2003 16:52:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4FNqmXu086988; Thu, 15 May 2003 16:52:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305152352.h4FNqmXu086988@xorpc.icir.org> Date: Thu, 15 May 2003 16:52:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_xrl_parser.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/15 16:52:48 Modified files: xorp/libxipc/: test_xrl_parser.cc Log message: Add top-level exception handler. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 17:04:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 17:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G052Kd018405 for ; Thu, 15 May 2003 17:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G052EX006121 for ; Thu, 15 May 2003 17:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G051KJ024531; Thu, 15 May 2003 17:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G04iKJ024524 for ; Thu, 15 May 2003 17:04:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G04hEX006116 for ; Thu, 15 May 2003 17:04:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G04hQg087162 for ; Thu, 15 May 2003 17:04:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G04hDY087161; Thu, 15 May 2003 17:04:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305160004.h4G04hDY087161@xorpc.icir.org> Date: Thu, 15 May 2003 17:04:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/libxipc/ Makefile.in xorp/libxipc/ test_xrl_parser.sh.in xorp/libxipc/ test_xrl_parser.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/15 17:04:43 Modified files: ./: configure configure.in xorp/libxipc/: Makefile.in Added files: xorp/libxipc/: test_xrl_parser.sh.in Removed files: xorp/libxipc/: test_xrl_parser.sh Log message: Generate test_xrl_parser.sh shell script from configure. Allows gmake check to be run for libxipc when ${srcdir} != ${builddir}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 17:35:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 17:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G0a2Kd021357 for ; Thu, 15 May 2003 17:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G0a2EX006355 for ; Thu, 15 May 2003 17:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G0a1KJ024985; Thu, 15 May 2003 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G0Z3KJ024973 for ; Thu, 15 May 2003 17:35:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G0Z3EX006336 for ; Thu, 15 May 2003 17:35:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G0Z3Qg087472 for ; Thu, 15 May 2003 17:35:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G0Z3JI087471; Thu, 15 May 2003 17:35:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305160035.h4G0Z3JI087471@xorpc.icir.org> Date: Thu, 15 May 2003 17:35:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_mrouter.hh mfea_proto_comm.cc mfea_proto_comm.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/15 17:35:03 Modified files: xorp/fea/: mfea_mrouter.cc mfea_mrouter.hh mfea_proto_comm.cc mfea_proto_comm.hh Log message: Allocate and deallocate buffers for sending and receiving data within the class constructors and destructors. Otherwise, if the buffers are statically allocated, the size of the object becomes too large, and compilation with gcc-2.95.x gives the following error: xrl_mfea_node.hh:703: sorry, not implemented: object size exceeds normal limit for virtual function table implementation, recompile all source and use -fhuge-objects _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 19:16:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 19:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G2H2Kd028963 for ; Thu, 15 May 2003 19:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G2H2EX007089 for ; Thu, 15 May 2003 19:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G2H1KJ026264; Thu, 15 May 2003 19:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G2GQKJ026254 for ; Thu, 15 May 2003 19:16:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G2GQEX007084 for ; Thu, 15 May 2003 19:16:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G2GPQg010965 for ; Thu, 15 May 2003 19:16:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G2GPNZ010964; Thu, 15 May 2003 19:16:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305160216.h4G2GPNZ010964@xorpc.icir.org> Date: Thu, 15 May 2003 19:16:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/05/15 19:16:25 Modified files: xorp/mfea/: configure_mfea Log message: Fix interface name for oreo.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 21:18:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 21:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4J2Kd038157 for ; Thu, 15 May 2003 21:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4J2EX007984 for ; Thu, 15 May 2003 21:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G4J1KJ027780; Thu, 15 May 2003 21:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G4IlKJ027769 for ; Thu, 15 May 2003 21:18:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4IkEX007982 for ; Thu, 15 May 2003 21:18:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4IkQg022944 for ; Thu, 15 May 2003 21:18:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G4Iknc022943; Thu, 15 May 2003 21:18:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305160418.h4G4Iknc022943@xorpc.icir.org> Date: Thu, 15 May 2003 21:18:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc fticonfig_table_get_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/15 21:18:46 Modified files: xorp/fea/: fea.cc fea_dummy.cc fticonfig_table_get_sysctl.cc Log message: Add missing #ifdef HAVE_IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 21:22:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 21:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4N2Kd038499 for ; Thu, 15 May 2003 21:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4N2EX008024 for ; Thu, 15 May 2003 21:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G4N1KJ027847; Thu, 15 May 2003 21:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G4MBKJ027837 for ; Thu, 15 May 2003 21:22:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4MAEX008020 for ; Thu, 15 May 2003 21:22:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G4MAQg022996 for ; Thu, 15 May 2003 21:22:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G4MAgq022995; Thu, 15 May 2003 21:22:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305160422.h4G4MAgq022995@xorpc.icir.org> Date: Thu, 15 May 2003 21:22:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/15 21:22:10 Modified files: xorp/fea/: fticonfig_table_get_sysctl.cc Log message: Compilation fix for Linux without IPv6 enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Thu May 15 22:17:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 May 2003 22:18:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G5I4Kd042694 for ; Thu, 15 May 2003 22:18:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G5I3EX008486 for ; Thu, 15 May 2003 22:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G5I3KJ028538; Thu, 15 May 2003 22:18:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4G5HxKJ028532 for ; Thu, 15 May 2003 22:17:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G5HxEX008484 for ; Thu, 15 May 2003 22:17:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4G5HxQg023361 for ; Thu, 15 May 2003 22:17:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4G5HxA4023360; Thu, 15 May 2003 22:17:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305160517.h4G5HxA4023360@xorpc.icir.org> Date: Thu, 15 May 2003 22:17:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/15 22:17:59 Modified files: xorp/pim/: TODO Log message: Add a TODO entry re. PIM SPEC _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Fri May 16 9:52:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 09:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GGr3Kd000419 for ; Fri, 16 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GGr3EX016026 for ; Fri, 16 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GGr2KJ009797; Fri, 16 May 2003 09:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GGqAKJ009785 for ; Fri, 16 May 2003 09:52:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GGqAEX016019 for ; Fri, 16 May 2003 09:52:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GGqAQg089070 for ; Fri, 16 May 2003 09:52:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GGqAw8089069; Fri, 16 May 2003 09:52:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305161652.h4GGqAw8089069@xorpc.icir.org> Date: Fri, 16 May 2003 9:52:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/targets/ test_finder_events.tgt test_finder_events.xrls test_finder_events_base.cc test_finder_events_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/05/16 09:52:10 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/targets/: test_finder_events.tgt test_finder_events.xrls test_finder_events_base.cc test_finder_events_base.hh Log message: Add test target for Finder events. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Fri May 16 10:28:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 10:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GHT3Kd004815 for ; Fri, 16 May 2003 10:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GHT3EX016331 for ; Fri, 16 May 2003 10:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GHT2KJ010554; Fri, 16 May 2003 10:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GHSHKJ010527 for ; Fri, 16 May 2003 10:28:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GHSHEX016327 for ; Fri, 16 May 2003 10:28:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GHSGQg089315 for ; Fri, 16 May 2003 10:28:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GHSGOJ089314; Fri, 16 May 2003 10:28:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305161728.h4GHSGOJ089314@xorpc.icir.org> Date: Fri, 16 May 2003 10:28:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.c xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/05/16 10:28:16 Modified files: xorp/libxorp/: xlog.c xlog.h Log message: Add xlog_process_name to extract process name set when xlog_init is called. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:40 2005 Subject: No subject Fri May 16 11:07:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 11:08:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI84Kd009442 for ; Fri, 16 May 2003 11:08:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI83EX016689 for ; Fri, 16 May 2003 11:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GI83KJ011311; Fri, 16 May 2003 11:08:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GI7YKJ011293 for ; Fri, 16 May 2003 11:07:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI7YEX016683 for ; Fri, 16 May 2003 11:07:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI7YQg089694 for ; Fri, 16 May 2003 11:07:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GI7YUe089693; Fri, 16 May 2003 11:07:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305161807.h4GI7YUe089693@xorpc.icir.org> Date: Fri, 16 May 2003 11:07:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/ Changes by: hodson@xorpc.icir.org. 03/05/16 11:07:34 Modified files: xorp/xrl/scripts/: tgt-gen Log message: Do not quote paths in defines or includes (#!@$$). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 11:07:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 11:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI93Kd009581 for ; Fri, 16 May 2003 11:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI92EX016697 for ; Fri, 16 May 2003 11:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GI92KJ011338; Fri, 16 May 2003 11:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GI80KJ011305 for ; Fri, 16 May 2003 11:08:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI80EX016685 for ; Fri, 16 May 2003 11:08:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GI7xQg089713 for ; Fri, 16 May 2003 11:07:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GI7x8q089712; Fri, 16 May 2003 11:07:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305161807.h4GI7x8q089712@xorpc.icir.org> Date: Fri, 16 May 2003 11:07:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ test_finder_events_base.cc test_finder_events_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/05/16 11:07:59 Modified files: xorp/xrl/targets/: test_finder_events_base.cc test_finder_events_base.hh Log message: Regenerate following changes to tgt-gen. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 12:16:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 12:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJH2Kd017694 for ; Fri, 16 May 2003 12:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJH2EX017279 for ; Fri, 16 May 2003 12:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJH2KJ012575; Fri, 16 May 2003 12:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJGhKJ012561 for ; Fri, 16 May 2003 12:16:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJGhEX017277 for ; Fri, 16 May 2003 12:16:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJGhQg096217 for ; Fri, 16 May 2003 12:16:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GJGhqe096216; Fri, 16 May 2003 12:16:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305161916.h4GJGhqe096216@xorpc.icir.org> Date: Fri, 16 May 2003 12:16:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ multicast_defs.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/05/16 12:16:42 Modified files: xorp/mrt/: multicast_defs.h Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 12:23:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 12:24:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJO2Kd018554 for ; Fri, 16 May 2003 12:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJO2EX017341 for ; Fri, 16 May 2003 12:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJO1KJ012663; Fri, 16 May 2003 12:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJNIKJ012646 for ; Fri, 16 May 2003 12:23:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJNIEX017339 for ; Fri, 16 May 2003 12:23:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJNIQg097103 for ; Fri, 16 May 2003 12:23:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GJNIX6097102; Fri, 16 May 2003 12:23:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305161923.h4GJNIX6097102@xorpc.icir.org> Date: Fri, 16 May 2003 12:23:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_dataflow.hh mfea_kernel_messages.hh mfea_mrouter.cc mfea_mrouter.hh mfea_osdep.hh mfea_proto_comm.cc mfea_proto_comm.hh mfea_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/16 12:23:18 Modified files: xorp/fea/: mfea_dataflow.hh mfea_kernel_messages.hh mfea_mrouter.cc mfea_mrouter.hh mfea_osdep.hh mfea_proto_comm.cc mfea_proto_comm.hh mfea_vif.cc Log message: Misc cleanup: - Remove #include of header files that are not needed - Remove obsolete #define stuff - Remove #define MULTICAST_MIN_TTL_THRESHOLD_DEFAULT and use MINTTL instead - Shuffle few #define and #include around - Take _rtalert_code and _raopt out of MfeaProtoComm and make them static variables (rtalert_code and raopt) inside mfea_proto_comm.cc - Move the SgCount and VifCount class definition at the end of mfea_mrouter.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 12:32:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 12:33:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJX4Kd019634 for ; Fri, 16 May 2003 12:33:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJX3EX017414 for ; Fri, 16 May 2003 12:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJX3KJ012791; Fri, 16 May 2003 12:33:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GJX0KJ012787 for ; Fri, 16 May 2003 12:33:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJX0EX017412 for ; Fri, 16 May 2003 12:33:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GJWxQg000779 for ; Fri, 16 May 2003 12:32:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GJWxWi000778; Fri, 16 May 2003 12:32:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305161932.h4GJWxWi000778@xorpc.icir.org> Date: Fri, 16 May 2003 12:32:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/05/16 12:32:59 Modified files: xorp/libxipc/: .cvsignore Log message: Add the autogenerated file test_xrl_parser.sh to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:09:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLA3Kd031304 for ; Fri, 16 May 2003 14:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLA3EX018280 for ; Fri, 16 May 2003 14:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLA2KJ014475; Fri, 16 May 2003 14:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GL9eKJ014462 for ; Fri, 16 May 2003 14:09:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GL9dEX018275 for ; Fri, 16 May 2003 14:09:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GL9dQg026773 for ; Fri, 16 May 2003 14:09:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GL9d47026772; Fri, 16 May 2003 14:09:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162109.h4GL9d47026772@xorpc.icir.org> Date: Fri, 16 May 2003 14:09:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:09:39 Modified files: ./: downloads.html Log message: Fix a typo: feedbackh -> feedback _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:13:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLE3Kd031810 for ; Fri, 16 May 2003 14:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLE3EX018307 for ; Fri, 16 May 2003 14:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLE2KJ014567; Fri, 16 May 2003 14:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLDmKJ014559 for ; Fri, 16 May 2003 14:13:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLDmEX018305 for ; Fri, 16 May 2003 14:13:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLDmQg026831 for ; Fri, 16 May 2003 14:13:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GLDmfO026830; Fri, 16 May 2003 14:13:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162113.h4GLDmfO026830@xorpc.icir.org> Date: Fri, 16 May 2003 14:13:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:13:48 Modified files: xorp/docs/: status.html Log message: Sync the style of the feedback email address with the rest of the web documents. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:14:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLF2Kd031938 for ; Fri, 16 May 2003 14:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLF2EX018318 for ; Fri, 16 May 2003 14:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLF2KJ014591; Fri, 16 May 2003 14:15:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLEgKJ014582 for ; Fri, 16 May 2003 14:14:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLEgEX018313 for ; Fri, 16 May 2003 14:14:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLEgQg026853 for ; Fri, 16 May 2003 14:14:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GLEgR7026852; Fri, 16 May 2003 14:14:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162114.h4GLEgR7026852@xorpc.icir.org> Date: Fri, 16 May 2003 14:14:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:14:42 Modified files: xorp/docs/: index.html Log message: Sync the style of the feedback email address with the rest of the web documents. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:18:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:19:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLJ2Kd032475 for ; Fri, 16 May 2003 14:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLJ2EX018380 for ; Fri, 16 May 2003 14:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLJ2KJ014684; Fri, 16 May 2003 14:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLIHKJ014667 for ; Fri, 16 May 2003 14:18:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLIHEX018372 for ; Fri, 16 May 2003 14:18:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLIGQg026926 for ; Fri, 16 May 2003 14:18:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GLIGOv026925; Fri, 16 May 2003 14:18:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162118.h4GLIGOv026925@xorpc.icir.org> Date: Fri, 16 May 2003 14:18:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:18:16 Modified files: ./: index.html Log message: Sync the style of the "Last modified" trailer with rest of the web documents. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:38:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:39:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLd3Kd040419 for ; Fri, 16 May 2003 14:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLd3EX018579 for ; Fri, 16 May 2003 14:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLd2KJ015054; Fri, 16 May 2003 14:39:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLcsKJ015048 for ; Fri, 16 May 2003 14:38:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLcsEX018577 for ; Fri, 16 May 2003 14:38:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLcsQg027126 for ; Fri, 16 May 2003 14:38:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GLcsr9027125; Fri, 16 May 2003 14:38:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162138.h4GLcsr9027125@xorpc.icir.org> Date: Fri, 16 May 2003 14:38:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:38:54 Modified files: ./: people.html Log message: Added Fred Bauer to the list of core team members. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 14:39:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 14:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLe3Kd040714 for ; Fri, 16 May 2003 14:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLe3EX018596 for ; Fri, 16 May 2003 14:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLe2KJ015085; Fri, 16 May 2003 14:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GLdeKJ015070 for ; Fri, 16 May 2003 14:39:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLdeEX018587 for ; Fri, 16 May 2003 14:39:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GLdeQg027156 for ; Fri, 16 May 2003 14:39:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GLdeNM027155; Fri, 16 May 2003 14:39:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162139.h4GLdeNM027155@xorpc.icir.org> Date: Fri, 16 May 2003 14:39:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/16 14:39:40 Modified files: ./: README Log message: Added Fred Bauer to the list of core team members. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Fri May 16 15:01:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 May 2003 15:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GM22Kd043425 for ; Fri, 16 May 2003 15:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GM22EX018794 for ; Fri, 16 May 2003 15:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GM22KJ015575; Fri, 16 May 2003 15:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4GM1CKJ015554 for ; Fri, 16 May 2003 15:01:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GM1CEX018786 for ; Fri, 16 May 2003 15:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4GM1CQg027321 for ; Fri, 16 May 2003 15:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4GM1Coi027320; Fri, 16 May 2003 15:01:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305162201.h4GM1Coi027320@xorpc.icir.org> Date: Fri, 16 May 2003 15:01:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ wishlist.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/16 15:01:12 Added files: ./: wishlist.html Log message: Added a new web page "XORP Wishlist". This page is not linked yet from the XORP website. For now you should use the CVS file www/wishlist.html to access it. At the moment it is very incomplete, and is more like a seed so people can start putting their ideas into it. Also, feel free to modify its style. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sat May 17 19:56:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 17 May 2003 19:57:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I2v3Kd009817 for ; Sat, 17 May 2003 19:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I2v3DD015729 for ; Sat, 17 May 2003 19:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I2v1KJ006932; Sat, 17 May 2003 19:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I2uoKJ006925 for ; Sat, 17 May 2003 19:56:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I2uoDD015724 for ; Sat, 17 May 2003 19:56:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I2uoQg093342 for ; Sat, 17 May 2003 19:56:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4I2uojb093341; Sat, 17 May 2003 19:56:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305180256.h4I2uojb093341@xorpc.icir.org> Date: Sat, 17 May 2003 19:56:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/05/17 19:56:50 Modified files: xorp/libproto/: proto_unit.cc Log message: Change the default FEA module name from "FEA_4" and "FEA_6" respectively to "fea", because the FEA is one single dual target (both for IPv4 and IPv6). Note to ourselves: a number of target names ("fea", "bgp", "rib", "ospf" and probably few more) are hardcoded in a number of places, which is a bad style. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sat May 17 20:18:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 17 May 2003 20:19:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3J3Kd011478 for ; Sat, 17 May 2003 20:19:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3J2DD015862 for ; Sat, 17 May 2003 20:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3J2KJ007170; Sat, 17 May 2003 20:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3IPKJ007163 for ; Sat, 17 May 2003 20:18:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3IODD015860 for ; Sat, 17 May 2003 20:18:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3IOQg093517 for ; Sat, 17 May 2003 20:18:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4I3IOat093516; Sat, 17 May 2003 20:18:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305180318.h4I3IOat093516@xorpc.icir.org> Date: Sat, 17 May 2003 20:18:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in mfea.tgt mfea.xrls mfea_base.cc mfea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/17 20:18:24 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in mfea.tgt mfea.xrls mfea_base.cc mfea_base.hh Log message: Added fea_ifmgr_client/0.1 XRL interface to the MFEA XRL target base _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sat May 17 20:19:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 17 May 2003 20:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3K2Kd011572 for ; Sat, 17 May 2003 20:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3K2DD015877 for ; Sat, 17 May 2003 20:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3K1KJ007195; Sat, 17 May 2003 20:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3JwKJ007189 for ; Sat, 17 May 2003 20:19:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3JwDD015872 for ; Sat, 17 May 2003 20:19:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3JvQg093553 for ; Sat, 17 May 2003 20:19:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4I3Jvei093552; Sat, 17 May 2003 20:19:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305180319.h4I3Jvei093552@xorpc.icir.org> Date: Sat, 17 May 2003 20:19:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.hh xrl_mfea_node.cc xorp/fea/ xrl_mfea_node.hh xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/17 20:19:57 Modified files: xorp/mfea/: xrl_mfea_node.hh xrl_mfea_node.cc xorp/fea/: xrl_mfea_node.hh xrl_mfea_node.cc Log message: Added skeleton handlers for fea_ifmgr_client/0.1 XRL interface (the handling itself is not implemented yet). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sat May 17 20:32:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 17 May 2003 20:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3X3Kd012562 for ; Sat, 17 May 2003 20:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3X2DD015950 for ; Sat, 17 May 2003 20:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3X2KJ007321; Sat, 17 May 2003 20:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4I3WmKJ007314 for ; Sat, 17 May 2003 20:32:48 -0700 (PDT) Received: from vulture.icir.org (adsl-67-117-79-130.dsl.sntc01.pacbell.net [67.117.79.130]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3WlDD015948; Sat, 17 May 2003 20:32:48 -0700 (PDT) (envelope-from mjh@vulture.icir.org) Received: from vulture.icir.org (localhost [127.0.0.1]) by vulture.icir.org (8.12.8p1/8.12.3) with ESMTP id h4I3Wlin050462; Sat, 17 May 2003 20:32:47 -0700 (PDT) (envelope-from mjh@vulture.icir.org) From: Mark Handley X-Organisation: ICIR To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc In-reply-to: Your message of "Sat, 17 May 2003 19:56:50." <200305180256.h4I2uojb093341@xorpc.icir.org> Date: Sat, 17 May 2003 20:32:47 -0700 Message-ID: <50461.1053228767@vulture.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > Note to ourselves: a number of target names > ("fea", "bgp", "rib", "ospf" and probably few more) are hardcoded > in a number of places, which is a bad style. Hmm. I don't have a problem with the default name of the rib xrl router being "rib", and BGP talking explicitly to the "rib" target. Now, what should happen is that BGP registers interest in targets called "rib", the finder tells BGP about a particular instance of this target, and then BGP only talks to this specific instance. But this requires a finder interface that isn't finished yet. But if you're saying the the rib should under some circumstances call it's XRL router "foobar" and BGP should somehow learn that the RIB is called foobar today, then I think this is perhaps useful testing functionality, but shouldn't normally be done. One of the good things about XRLs in our architecture is that the target names are a fixed point, at least for singleton processes. This means you can write scripts or monitoring processes or whatever that can work without needing an additional level of indirection beyond that already provided by the finder. This is kind of like well-known ports with TCP: yes, you can run an SMTP server on another port than 25, but many people who you'd like to talk to you won't be able to find you. So, I don't think it's bad style to use and depend to a large degree on well-known target names. But it probably should be possible to override them if you really want to do so. Cheers, Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sun May 18 13:48:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 13:49:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4IKn3Kd092197 for ; Sun, 18 May 2003 13:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4IKn2DD025937 for ; Sun, 18 May 2003 13:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4IKn2KJ020171; Sun, 18 May 2003 13:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4IKm7KJ020156 for ; Sun, 18 May 2003 13:48:07 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4IKm7DD025933; Sun, 18 May 2003 13:48:07 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.8p1/8.12.3) with ESMTP id h4IKm7c1048191; Sun, 18 May 2003 13:48:07 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200305182048.h4IKm7c1048191@possum.icir.org> To: Mark Handley cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc In-Reply-To: Message from Mark Handley of "Sat, 17 May 2003 20:32:47 PDT." <50461.1053228767@vulture.icir.org> Date: Sun, 18 May 2003 13:48:07 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > > > Note to ourselves: a number of target names > > ("fea", "bgp", "rib", "ospf" and probably few more) are hardcoded > > in a number of places, which is a bad style. > > Hmm. I don't have a problem with the default name of the rib xrl > router being "rib", and BGP talking explicitly to the "rib" target. > Now, what should happen is that BGP registers interest in targets > called "rib", the finder tells BGP about a particular instance of this > target, and then BGP only talks to this specific instance. But this > requires a finder interface that isn't finished yet. > > But if you're saying the the rib should under some circumstances call > it's XRL router "foobar" and BGP should somehow learn that the RIB is > called foobar today, then I think this is perhaps useful testing > functionality, but shouldn't normally be done. > > One of the good things about XRLs in our architecture is that the > target names are a fixed point, at least for singleton processes. > This means you can write scripts or monitoring processes or whatever > that can work without needing an additional level of indirection > beyond that already provided by the finder. This is kind of like > well-known ports with TCP: yes, you can run an SMTP server on another > port than 25, but many people who you'd like to talk to you won't be > able to find you. > > So, I don't think it's bad style to use and depend to a large degree > on well-known target names. But it probably should be possible to > override them if you really want to do so. In general, I dislike hardcoding of names, constants, etc. As a startup, I was thinking about something very simple. Instead of sending XRLs like send_foo("fea", ...) use send_foo(fea_target_name(), ...) (or sth. like that) where fea_target_name() initially could be just a simple function that returns string "fea". Later on this function could be modified to obtain the target name from the finder for example (or to do anything else we may want to do with target names). Regards, Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sun May 18 16:16:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 16:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4INH2Kd003413 for ; Sun, 18 May 2003 16:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4INH2DD026958 for ; Sun, 18 May 2003 16:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4INH1KJ021656; Sun, 18 May 2003 16:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ING7KJ021645 for ; Sun, 18 May 2003 16:16:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ING6DD026956 for ; Sun, 18 May 2003 16:16:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ING6Qg099284 for ; Sun, 18 May 2003 16:16:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4ING6NL099283; Sun, 18 May 2003 16:16:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305182316.h4ING6NL099283@xorpc.icir.org> Date: Sun, 18 May 2003 16:16:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/18 16:16:06 Modified files: xorp/libxorp/: vif.cc vif.hh Log message: De-constify Vif::find_address() The reason is because sometimes we may want to change the Vif addresses on-the-fly (i.e., after they have been added to the vif). An example where we want this is the vifmanager (the interface spy) that obtains the vif info from the FEA: adding addresses is typically implemented step-by-step: get and add the address, get and add the broadcast addr of that address, etc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sun May 18 17:18:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 17:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0J2Kd008057 for ; Sun, 18 May 2003 17:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0J2DD027427 for ; Sun, 18 May 2003 17:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0J2KJ022267; Sun, 18 May 2003 17:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0IfKJ022259 for ; Sun, 18 May 2003 17:18:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0IeDD027424 for ; Sun, 18 May 2003 17:18:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0IeQg099765 for ; Sun, 18 May 2003 17:18:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J0IeBS099764; Sun, 18 May 2003 17:18:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190018.h4J0IeBS099764@xorpc.icir.org> Date: Sun, 18 May 2003 17:18:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node.cc mfea_node.hh mfea_unix_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 17:18:40 Modified files: xorp/mfea/: mfea_node.cc mfea_node.hh mfea_unix_comm.cc Log message: Nitlets: - Change vif_name argument type from "const char *" to "const string&" - Add second argument type "const string& err" when adding/deleting a vif: err contains the error message on return (if error). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sun May 18 17:19:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 17:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0L3Kd008240 for ; Sun, 18 May 2003 17:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0L2DD027471 for ; Sun, 18 May 2003 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0L2KJ022305; Sun, 18 May 2003 17:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0JxKJ022284 for ; Sun, 18 May 2003 17:19:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0JxDD027437 for ; Sun, 18 May 2003 17:19:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0JxQg099799 for ; Sun, 18 May 2003 17:19:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J0JxGr099798; Sun, 18 May 2003 17:19:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190019.h4J0JxGr099798@xorpc.icir.org> Date: Sun, 18 May 2003 17:19:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/18 17:19:59 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Log message: Nitlets: - Change vif_name argument type from "const char *" to "const string&" - Add second argument type "const string& err" when adding/deleting/modifying a vif: err contains the error message on return (if error). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:41 2005 Subject: No subject Sun May 18 17:20:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 17:21:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0L5Kd008259 for ; Sun, 18 May 2003 17:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0L5DD027477 for ; Sun, 18 May 2003 17:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0L4KJ022316; Sun, 18 May 2003 17:21:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0KOKJ022291 for ; Sun, 18 May 2003 17:20:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0KODD027464 for ; Sun, 18 May 2003 17:20:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0KOQg099850 for ; Sun, 18 May 2003 17:20:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J0KO7N099849; Sun, 18 May 2003 17:20:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190020.h4J0KO7N099849@xorpc.icir.org> Date: Sun, 18 May 2003 17:20:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_node.hh xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/18 17:20:24 Modified files: xorp/pim/: pim_node.cc pim_node.hh xrl_pim_node.cc Log message: Nitlets: - Change vif_name argument type from "const char *" to "const string&" - Add second argument type "const string& err" when adding/deleting/modifying a vif: err contains the error message on return (if error). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 17:25:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 17:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0Q3Kd008646 for ; Sun, 18 May 2003 17:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0Q2DD027514 for ; Sun, 18 May 2003 17:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0Q2KJ022422; Sun, 18 May 2003 17:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0PlKJ022403 for ; Sun, 18 May 2003 17:25:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0PlDD027512 for ; Sun, 18 May 2003 17:25:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0PlQg099914 for ; Sun, 18 May 2003 17:25:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J0Pl8V099913; Sun, 18 May 2003 17:25:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190025.h4J0Pl8V099913@xorpc.icir.org> Date: Sun, 18 May 2003 17:25:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/18 17:25:47 Modified files: xorp/rib/: vifmanager.cc Log message: Minor fixes: - Remove a loop that erases the entries of a map inside a destructor: the entries of the map are automatically deleted by the map destructor; in addition, the particular usage of the iterator to perform the entries deletion is incorrect (we cannot ++iter if iter was just erased). - Add a missing "delete vif" to delete the Vif storage when deleting a vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 17:27:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 17:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0S3Kd008797 for ; Sun, 18 May 2003 17:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0S3DD027523 for ; Sun, 18 May 2003 17:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0S2KJ022445; Sun, 18 May 2003 17:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J0RHKJ022438 for ; Sun, 18 May 2003 17:27:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0RHDD027521 for ; Sun, 18 May 2003 17:27:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J0RHQg099970 for ; Sun, 18 May 2003 17:27:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J0RHto099969; Sun, 18 May 2003 17:27:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190027.h4J0RHto099969@xorpc.icir.org> Date: Sun, 18 May 2003 17:27:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_node.cc mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 17:27:17 Modified files: xorp/fea/: mfea_mrouter.cc mfea_node.cc mfea_node.hh Log message: Nitlets: - Change vif_name argument type from "const char *" to "const string&" - Add second argument type "const string& err" when adding/deleting a vif: err contains the error message on return (if error). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 20:15:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 20:16:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3G3Kd021349 for ; Sun, 18 May 2003 20:16:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3G3DD028606 for ; Sun, 18 May 2003 20:16:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J3G2KJ024041; Sun, 18 May 2003 20:16:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J3FJKJ024030 for ; Sun, 18 May 2003 20:15:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3FJDD028600 for ; Sun, 18 May 2003 20:15:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3FIQg032767 for ; Sun, 18 May 2003 20:15:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J3FI7C032766; Sun, 18 May 2003 20:15:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190315.h4J3FI7C032766@xorpc.icir.org> Date: Sun, 18 May 2003 20:15:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xrl_mfea_node.cc xrl_mfea_node.hh xorp/fea/ xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 20:15:18 Modified files: xorp/fea/: Makefile.am Makefile.in xrl_mfea_node.cc xrl_mfea_node.hh Added files: xorp/fea/: xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Log message: Add XRL Mfea Vif Manager to obtain the Vif info from the FEA. Not tested yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 20:15:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 20:16:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3G6Kd021380 for ; Sun, 18 May 2003 20:16:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3G6DD028610 for ; Sun, 18 May 2003 20:16:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J3G5KJ024052; Sun, 18 May 2003 20:16:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J3FgKJ024034 for ; Sun, 18 May 2003 20:15:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3FgDD028604 for ; Sun, 18 May 2003 20:15:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J3FgQg032793 for ; Sun, 18 May 2003 20:15:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J3FgRw032792; Sun, 18 May 2003 20:15:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190315.h4J3FgRw032792@xorpc.icir.org> Date: Sun, 18 May 2003 20:15:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 20:15:42 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:36:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:37:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6b2Kd036382 for ; Sun, 18 May 2003 23:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6b2DD029892 for ; Sun, 18 May 2003 23:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6b2KJ026564; Sun, 18 May 2003 23:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6aGKJ026546 for ; Sun, 18 May 2003 23:36:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6aFDD029890 for ; Sun, 18 May 2003 23:36:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6aFQg036647 for ; Sun, 18 May 2003 23:36:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6aFTE036646; Sun, 18 May 2003 23:36:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190636.h4J6aFTE036646@xorpc.icir.org> Date: Sun, 18 May 2003 23:36:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:36:15 Modified files: xorp/libproto/: proto_node.hh Log message: Bugfixes: check whether a Vif pointer is NULL when iterating the vif array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:41:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6g2Kd036769 for ; Sun, 18 May 2003 23:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6g2DD029926 for ; Sun, 18 May 2003 23:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6g1KJ026672; Sun, 18 May 2003 23:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6fqKJ026666 for ; Sun, 18 May 2003 23:41:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6fqDD029924 for ; Sun, 18 May 2003 23:41:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6fqQg036718 for ; Sun, 18 May 2003 23:41:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6fqnR036717; Sun, 18 May 2003 23:41:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190641.h4J6fqnR036717@xorpc.icir.org> Date: Sun, 18 May 2003 23:41:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:41:52 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: * Rename existing get_foo XRLs to get_configured_foo * For each get_foo XRL add a new one get_all_foo The above split is similar to existing get_all_interface_names and get_configured_interface_names XRLs (among few others): - the get_configured_foo gets the configured info - the get_all_foo explicitly queries the underlying system (the kernel) and gets info from there. * Reformatting nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:43:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6i2Kd036932 for ; Sun, 18 May 2003 23:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6i2DD029943 for ; Sun, 18 May 2003 23:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6i2KJ026734; Sun, 18 May 2003 23:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6h4KJ026700 for ; Sun, 18 May 2003 23:43:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6h4DD029939 for ; Sun, 18 May 2003 23:43:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6h4Qg036778 for ; Sun, 18 May 2003 23:43:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6h4bC036777; Sun, 18 May 2003 23:43:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190643.h4J6h4bC036777@xorpc.icir.org> Date: Sun, 18 May 2003 23:43:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:43:04 Modified files: xorp/rib/: vifmanager.cc Log message: XRL renaming: send_get_foo -> send_get_configured_foo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:43:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:44:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6i4Kd036951 for ; Sun, 18 May 2003 23:44:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6i4DD029947 for ; Sun, 18 May 2003 23:44:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6i4KJ026746; Sun, 18 May 2003 23:44:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6hVKJ026710 for ; Sun, 18 May 2003 23:43:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6hVDD029941 for ; Sun, 18 May 2003 23:43:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6hVQg036805 for ; Sun, 18 May 2003 23:43:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6hV0i036804; Sun, 18 May 2003 23:43:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190643.h4J6hV0i036804@xorpc.icir.org> Date: Sun, 18 May 2003 23:43:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:43:31 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc Log message: XRL renaming: send_get_foo -> send_get_configured_foo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:45:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6k3Kd037134 for ; Sun, 18 May 2003 23:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6k3DD029985 for ; Sun, 18 May 2003 23:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6k2KJ026784; Sun, 18 May 2003 23:46:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6jRKJ026768 for ; Sun, 18 May 2003 23:45:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6jRDD029977 for ; Sun, 18 May 2003 23:45:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6jRQg036866 for ; Sun, 18 May 2003 23:45:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6jRao036865; Sun, 18 May 2003 23:45:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190645.h4J6jRao036865@xorpc.icir.org> Date: Sun, 18 May 2003 23:45:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:45:27 Modified files: xorp/etc/templates/: fea.tp Log message: * XRL renaming: get_foo -> get_configured_foo * Bugfix: replaced few ipv4 with ipv6 when applied for IPv6 addresses _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:48:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6n2Kd037357 for ; Sun, 18 May 2003 23:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6n2DD030009 for ; Sun, 18 May 2003 23:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6n1KJ026891; Sun, 18 May 2003 23:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6mcKJ026876 for ; Sun, 18 May 2003 23:48:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6mcDD030007 for ; Sun, 18 May 2003 23:48:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6mcQg036943 for ; Sun, 18 May 2003 23:48:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6mc3B036942; Sun, 18 May 2003 23:48:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190648.h4J6mc3B036942@xorpc.icir.org> Date: Sun, 18 May 2003 23:48:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_node.hh mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:48:38 Modified files: xorp/fea/: mfea_node.cc mfea_node.hh mfea_mrouter.cc Log message: Move the creation of PIM Register vif from MfeaMrouter::start() to the new method MfeaNode::add_pim_register_vif() The new method is invoked whenever MfeaNode::add_vif() is called: in that moment we check whether we still don't have PIM Register vif and whether the new interface is appropriate as a "shadow" for the PIM Register vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:49:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:50:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6o3Kd037451 for ; Sun, 18 May 2003 23:50:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6o3DD030021 for ; Sun, 18 May 2003 23:50:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6o2KJ026919; Sun, 18 May 2003 23:50:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6nVKJ026904 for ; Sun, 18 May 2003 23:49:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6nVDD030015 for ; Sun, 18 May 2003 23:49:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6nVQg036981 for ; Sun, 18 May 2003 23:49:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6nV3o036980; Sun, 18 May 2003 23:49:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190649.h4J6nV3o036980@xorpc.icir.org> Date: Sun, 18 May 2003 23:49:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:49:31 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Rename XRLs get_foo to get_configured_foo, and add the corresponding get_all_foo XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:50:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6p3Kd037573 for ; Sun, 18 May 2003 23:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6p3DD030047 for ; Sun, 18 May 2003 23:51:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6p2KJ026986; Sun, 18 May 2003 23:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6oTKJ026962 for ; Sun, 18 May 2003 23:50:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6oTDD030045 for ; Sun, 18 May 2003 23:50:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6oTQg037049 for ; Sun, 18 May 2003 23:50:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6oToU037048; Sun, 18 May 2003 23:50:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190650.h4J6oToU037048@xorpc.icir.org> Date: Sun, 18 May 2003 23:50:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:50:29 Modified files: xorp/fea/: xrl_target.hh xrl_target.cc Log message: Rename existing get_foo XRLs to get_configured_foo, and add the corresponding get_all_foo XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Sun May 18 23:54:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 May 2003 23:55:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6t3Kd037886 for ; Sun, 18 May 2003 23:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6t3DD030072 for ; Sun, 18 May 2003 23:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6t2KJ027081; Sun, 18 May 2003 23:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4J6s8KJ027063 for ; Sun, 18 May 2003 23:54:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6s8DD030061 for ; Sun, 18 May 2003 23:54:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4J6s7Qg037125 for ; Sun, 18 May 2003 23:54:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4J6s7Ms037124; Sun, 18 May 2003 23:54:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305190654.h4J6s7Ms037124@xorpc.icir.org> Date: Sun, 18 May 2003 23:54:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/18 23:54:07 Modified files: xorp/fea/: xrl_mfea_node.cc xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Log message: * Use get_all_foo XRLs to get info from the FEA instead of get_configured_foo * Rename all other get_foo XRLs to get_all_foo. * Various bug fixes. Now the MFEA gets the vif info from the FEA, though it appears that on startup the FEA itself is sending some of the vif-related info twice -> to be fixed later. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 08:08:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 08:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JF93Kd075536 for ; Mon, 19 May 2003 08:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JF93DD034558 for ; Mon, 19 May 2003 08:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JF92KJ004661; Mon, 19 May 2003 08:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JF8SKJ004647 for ; Mon, 19 May 2003 08:08:28 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JF8RDD034460; Mon, 19 May 2003 08:08:27 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JF8RJx039763; Mon, 19 May 2003 08:08:27 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305191508.h4JF8RJx039763@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc In-Reply-To: Your message of "Sun, 18 May 2003 23:50:29." <200305190650.h4J6oToU037048@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 19 May 2003 08:08:27 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/fea/ | Changes by: pavlin@xorpc.icir.org. 03/05/18 23:50:29 | | Modified files: | xorp/fea/: xrl_target.hh xrl_target.cc | | Log message: | Rename existing get_foo XRLs to get_configured_foo, | and add the corresponding get_all_foo XRLs. We might want to think about naming here and whether we want to have the get_all methods exposed at all. The get_all methods were intended for debugging, just to tell the developer what was really there (paranoia checking). As a fully implemented set of methods they provide an easy way for processes to ignore the rtrmgr which is supposed to be the central source of configuration data. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 10:00:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 10:01:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JH13Kd085460 for ; Mon, 19 May 2003 10:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JH13DD036905 for ; Mon, 19 May 2003 10:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JH12KJ006492; Mon, 19 May 2003 10:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JH08KJ006472 for ; Mon, 19 May 2003 10:00:08 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JH08DD036901; Mon, 19 May 2003 10:00:08 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JH08c1017391; Mon, 19 May 2003 10:00:08 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200305191700.h4JH08c1017391@possum.icir.org> To: Orion Hodson cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc In-Reply-To: Message from Orion Hodson of "Mon, 19 May 2003 08:08:27 PDT." <200305191508.h4JF8RJx039763@puma.icir.org> Date: Mon, 19 May 2003 10:00:08 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > /-- Pavlin Radoslavov wrote: > | CVSROOT: /usr/local/share/doc/apache/cvs > | Module name: xorp > | Repository: xorp/fea/ > | Changes by: pavlin@xorpc.icir.org. 03/05/18 23:50:29 > | > | Modified files: > | xorp/fea/: xrl_target.hh xrl_target.cc > | > | Log message: > | Rename existing get_foo XRLs to get_configured_foo, > | and add the corresponding get_all_foo XRLs. > > We might want to think about naming here and whether we want to have the > get_all methods exposed at all. The get_all methods were intended for Right. > debugging, just to tell the developer what was really there (paranoia > checking). As a fully implemented set of methods they provide an easy way for > processes to ignore the rtrmgr which is supposed to be the central source of > configuration data. Indeed, the primary reason I had to add them was because I coudn't have the MFEA working together with the FEA without adding the rtrmgr to the picture (something I am not prepared to do at the moment). So for the time being I'd like to keep them. Thanks, Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 10:54:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 10:55:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JHt3Kd089595 for ; Mon, 19 May 2003 10:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JHt2DD037683 for ; Mon, 19 May 2003 10:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JHt2KJ007535; Mon, 19 May 2003 10:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JHs2KJ007527 for ; Mon, 19 May 2003 10:54:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JHs2DD037664 for ; Mon, 19 May 2003 10:54:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JHs2Qg005764 for ; Mon, 19 May 2003 10:54:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4JHs2Aq005763; Mon, 19 May 2003 10:54:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305191754.h4JHs2Aq005763@xorpc.icir.org> Date: Mon, 19 May 2003 10:54:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 10:54:02 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: If an XRL is received for unexpected address family, then silently ignore it instead of printing a message. The reason is because when the MFEA that may be either IPv4 or IPv6-only capable registers with the FEA, the registration is not IPv4 or IPv6-specific, therefore the FEA will send interface address information about IPv4 AND IPv6 addresses. Hence, the MFEA should silently ignore the address family info it doesn't expect. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 14:27:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 14:28:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JLS3Kd012962 for ; Mon, 19 May 2003 14:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JLS3DD039523 for ; Mon, 19 May 2003 14:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JLS2KJ011464; Mon, 19 May 2003 14:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JLR6KJ011413 for ; Mon, 19 May 2003 14:27:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JLR5DD039513 for ; Mon, 19 May 2003 14:27:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JLR5Qg037639 for ; Mon, 19 May 2003 14:27:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4JLR5NW037638; Mon, 19 May 2003 14:27:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305192127.h4JLR5NW037638@xorpc.icir.org> Date: Mon, 19 May 2003 14:27:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/19 14:27:05 Modified files: xorp/rtrmgr/: module_command.cc Log message: Fix dumb cut-and-paste error _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 16:34:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 16:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNZ3Kd028722 for ; Mon, 19 May 2003 16:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNZ3DD040661 for ; Mon, 19 May 2003 16:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNZ2KJ013846; Mon, 19 May 2003 16:35:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNYWKJ013839 for ; Mon, 19 May 2003 16:34:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNYWDD040656 for ; Mon, 19 May 2003 16:34:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNYWQg038699 for ; Mon, 19 May 2003 16:34:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4JNYWEi038698; Mon, 19 May 2003 16:34:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305192334.h4JNYWEi038698@xorpc.icir.org> Date: Mon, 19 May 2003 16:34:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 16:34:32 Modified files: xorp/fea/: xrl_mfea_vif_manager.hh Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:42 2005 Subject: No subject Mon May 19 16:35:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 16:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNa2Kd028888 for ; Mon, 19 May 2003 16:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNa2DD040692 for ; Mon, 19 May 2003 16:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNa2KJ013873; Mon, 19 May 2003 16:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNZAKJ013857 for ; Mon, 19 May 2003 16:35:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNZADD040682 for ; Mon, 19 May 2003 16:35:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNZ9Qg038754 for ; Mon, 19 May 2003 16:35:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4JNZ9PK038753; Mon, 19 May 2003 16:35:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305192335.h4JNZ9PK038753@xorpc.icir.org> Date: Mon, 19 May 2003 16:35:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 16:35:09 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Add few missing update_state() calls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 16:36:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 16:37:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNb2Kd029025 for ; Mon, 19 May 2003 16:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNb2DD040705 for ; Mon, 19 May 2003 16:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNb1KJ013904; Mon, 19 May 2003 16:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4JNaKKJ013889 for ; Mon, 19 May 2003 16:36:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNaKDD040701 for ; Mon, 19 May 2003 16:36:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4JNaKQg038811 for ; Mon, 19 May 2003 16:36:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4JNaJxo038810; Mon, 19 May 2003 16:36:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305192336.h4JNaJxo038810@xorpc.icir.org> Date: Mon, 19 May 2003 16:36:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/19 16:36:19 Modified files: xorp/rib/: xrl_target.hh Log message: Add required #include "libxipc/xrl_router.hh" instead of including it indirectly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 17:20:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 17:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0L3Kd034475 for ; Mon, 19 May 2003 17:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0L2DD041092 for ; Mon, 19 May 2003 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0L2KJ014666; Mon, 19 May 2003 17:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0K1KJ014630 for ; Mon, 19 May 2003 17:20:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0K1DD041071 for ; Mon, 19 May 2003 17:20:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0K1Qg039198 for ; Mon, 19 May 2003 17:20:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K0K1Ej039197; Mon, 19 May 2003 17:20:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305200020.h4K0K1Ej039197@xorpc.icir.org> Date: Mon, 19 May 2003 17:20:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc vifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/19 17:20:01 Modified files: xorp/rib/: vifmanager.cc vifmanager.hh Log message: Port-back all modifications and fixes from fea/xrl_mfea_vif_manager.[hh,cc] back to rib/vifmanager.[hh,cc] Major fixes: - Update properly the status - Add few missing IPv6-related handling - delete properly all vifs per interface Major additions/change in behavior: - Now we read more info about interfaces: flags, broadcast/endpoint addresses, etc. - All addition/deletion of vif info to the rib manager happens only after we have received all pending info about all interfaces from the fea Unlike the MFEA vif manager that queries the REA about all vif info, the RIB vif manager queries the FEA about configured vifs only. Note: currently, the FEA may send-back to the RIB info about vifs that are not explicitly configured by the rtrmgr (e.g., the loopback vif). Current behavior is that the RIB will threat that as a fatal error. -> Will be fixed very soon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 17:20:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 17:21:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0L5Kd034498 for ; Mon, 19 May 2003 17:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0L4DD041096 for ; Mon, 19 May 2003 17:21:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0L4KJ014677; Mon, 19 May 2003 17:21:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0KQKJ014640 for ; Mon, 19 May 2003 17:20:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0KQDD041090 for ; Mon, 19 May 2003 17:20:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0KQQg039250 for ; Mon, 19 May 2003 17:20:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K0KQAm039249; Mon, 19 May 2003 17:20:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305200020.h4K0KQAm039249@xorpc.icir.org> Date: Mon, 19 May 2003 17:20:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 17:20:26 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Log message: Formatting nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 17:43:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 17:44:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0i3Kd037257 for ; Mon, 19 May 2003 17:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0i3DD041272 for ; Mon, 19 May 2003 17:44:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0i2KJ015056; Mon, 19 May 2003 17:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0hHKJ015022 for ; Mon, 19 May 2003 17:43:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0hHDD041268 for ; Mon, 19 May 2003 17:43:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0hHQg039412 for ; Mon, 19 May 2003 17:43:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K0hHi5039411; Mon, 19 May 2003 17:43:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305200043.h4K0hHi5039411@xorpc.icir.org> Date: Mon, 19 May 2003 17:43:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/19 17:43:17 Modified files: xorp/rib/: vifmanager.cc Log message: Bugfix: reverse error checking condition OLD: if (e != XrlError::COMMAND_FAILED()) { ... NEW: if (e == XrlError::COMMAND_FAILED()) { // perhaps the vif went away ... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 17:43:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 17:44:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0i5Kd037288 for ; Mon, 19 May 2003 17:44:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0i5DD041277 for ; Mon, 19 May 2003 17:44:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0i5KJ015067; Mon, 19 May 2003 17:44:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0hcKJ015026 for ; Mon, 19 May 2003 17:43:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0hcDD041270 for ; Mon, 19 May 2003 17:43:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0hcQg039447 for ; Mon, 19 May 2003 17:43:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K0hcKL039446; Mon, 19 May 2003 17:43:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305200043.h4K0hcKL039446@xorpc.icir.org> Date: Mon, 19 May 2003 17:43:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 17:43:38 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Bugfix: reverse error checking condition OLD: if (e != XrlError::COMMAND_FAILED()) { ... NEW: if (e == XrlError::COMMAND_FAILED()) { // perhaps the vif went away ... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 17:58:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 17:59:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0x3Kd039097 for ; Mon, 19 May 2003 17:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0x3DD041380 for ; Mon, 19 May 2003 17:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0x2KJ015227; Mon, 19 May 2003 17:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K0wZKJ015217 for ; Mon, 19 May 2003 17:58:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0wZDD041378 for ; Mon, 19 May 2003 17:58:35 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K0wZQg039632 for ; Mon, 19 May 2003 17:58:35 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K0wZK1039631; Mon, 19 May 2003 17:58:35 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200058.h4K0wZK1039631@xorpc.icir.org> Date: Mon, 19 May 2003 17:58:35 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc bgp4_mib_module.h bgp4_mib_xrl_target.hh xorp_if_mib_module.cc ...xorp_if_module.h ...xorpevents.cc xorp/mibs/snmpconfig/ snmpd.conf snmpenv.sh xorp/mibs/snmpdscripts/ startsnmp xorp/mibs/ xorp_if_mib_module.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/05/19 17:58:35 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc bgp4_mib_module.h bgp4_mib_xrl_target.hh xorp_if_mib_module.cc xorp_if_module.h xorpevents.cc xorp/mibs/snmpconfig/: snmpd.conf snmpenv.sh xorp/mibs/snmpdscripts/: startsnmp Added files: xorp/mibs/: xorp_if_mib_module.hh Log message: Implemented common and xorp_if_mib XRL interfaces Implemented XRLs to load and unload MIBS Improved module unloading Wrote scripts to set appropriate environment for Net-SNMP command line tools _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:10:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:11:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1B3Kd040580 for ; Mon, 19 May 2003 18:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1B3DD041502; Mon, 19 May 2003 18:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1B2KJ015417; Mon, 19 May 2003 18:11:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1AJKJ015379 for ; Mon, 19 May 2003 18:10:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1AIDD041492 for ; Mon, 19 May 2003 18:10:18 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1AIQg044532 for ; Mon, 19 May 2003 18:10:18 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1AIG5044529; Mon, 19 May 2003 18:10:18 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200110.h4K1AIG5044529@xorpc.icir.org> Date: Mon, 19 May 2003 18:10:18 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ dlmod.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:10:18 Added files: xorp/mibs/: dlmod.h Log message: A private Net-SNMP header file. See file heading for details. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:11:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:12:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1C3Kd040709 for ; Mon, 19 May 2003 18:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1C3DD041512 for ; Mon, 19 May 2003 18:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1C2KJ015457; Mon, 19 May 2003 18:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1B5KJ015430 for ; Mon, 19 May 2003 18:11:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1B5DD041504 for ; Mon, 19 May 2003 18:11:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1B4Qg044652 for ; Mon, 19 May 2003 18:11:04 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1B4C7044651; Mon, 19 May 2003 18:11:04 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200111.h4K1B4C7044651@xorpc.icir.org> Date: Mon, 19 May 2003 18:11:04 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:11:04 Added files: xorp/mibs/: xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh Log message: Xrl target implementation class _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:12:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:13:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1D2Kd040850 for ; Mon, 19 May 2003 18:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1D2DD041520 for ; Mon, 19 May 2003 18:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1D2KJ015481; Mon, 19 May 2003 18:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1CgKJ015473 for ; Mon, 19 May 2003 18:12:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1CgDD041518 for ; Mon, 19 May 2003 18:12:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1CgQg045093 for ; Mon, 19 May 2003 18:12:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1Cg75045092; Mon, 19 May 2003 18:12:42 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200112.h4K1Cg75045092@xorpc.icir.org> Date: Mon, 19 May 2003 18:12:42 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpconfig/ snmpd.preconf xorp/mibs/snmpconfig/ snmpd.conf Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpconfig/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:12:42 Added files: xorp/mibs/snmpconfig/: snmpd.preconf Removed files: xorp/mibs/snmpconfig/: snmpd.conf Log message: Use absolute paths detected at runtime for MIB directories _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:14:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:15:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1F3Kd041118 for ; Mon, 19 May 2003 18:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1F2DD041533 for ; Mon, 19 May 2003 18:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1F2KJ015529; Mon, 19 May 2003 18:15:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1EIKJ015518 for ; Mon, 19 May 2003 18:14:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1EHDD041528 for ; Mon, 19 May 2003 18:14:17 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1EHQg045424 for ; Mon, 19 May 2003 18:14:17 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1EH3J045423; Mon, 19 May 2003 18:14:17 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200114.h4K1EH3J045423@xorpc.icir.org> Date: Mon, 19 May 2003 18:14:17 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:14:17 Added files: xorp/mibs/tests/: test_bgpmib.sh Log message: Test script for bgpPeerTable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:16:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1H2Kd041380 for ; Mon, 19 May 2003 18:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1H2DD041558 for ; Mon, 19 May 2003 18:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1H1KJ015578; Mon, 19 May 2003 18:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1GsKJ015572 for ; Mon, 19 May 2003 18:16:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1GsDD041556 for ; Mon, 19 May 2003 18:16:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1GsQg045902 for ; Mon, 19 May 2003 18:16:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1GsCB045901; Mon, 19 May 2003 18:16:54 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200116.h4K1GsCB045901@xorpc.icir.org> Date: Mon, 19 May 2003 18:16:54 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/etc/templates/ fea.tp xorp/rtrmgr/ config.boot xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:16:54 Modified files: ./: configure configure.in xorp/etc/templates/: fea.tp xorp/rtrmgr/: config.boot xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in Log message: Improved checking of Net-SNMP version Created xorp_if_mib interface _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 18:20:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 18:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1L2Kd044283 for ; Mon, 19 May 2003 18:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1L2DD041595 for ; Mon, 19 May 2003 18:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1L1KJ015652; Mon, 19 May 2003 18:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K1KlKJ015646 for ; Mon, 19 May 2003 18:20:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1KlDD041593 for ; Mon, 19 May 2003 18:20:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K1KkQg046479 for ; Mon, 19 May 2003 18:20:46 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K1KkA4046478; Mon, 19 May 2003 18:20:46 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305200120.h4K1KkA4046478@xorpc.icir.org> Date: Mon, 19 May 2003 18:20:46 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ xorp_if_mib.xif xorp_if_mib_xif.cc xorp_if_mib_xif.hh xorp/xrl/targets/ xorp_if_mib.tgt xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: jcardona@xorpc.icir.org. 03/05/19 18:20:46 Added files: xorp/xrl/interfaces/: xorp_if_mib.xif xorp_if_mib_xif.cc xorp_if_mib_xif.hh xorp/xrl/targets/: xorp_if_mib.tgt xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh Log message: XRL interfaces for SNMP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Mon May 19 20:23:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 May 2003 20:24:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K3O3Kd062108 for ; Mon, 19 May 2003 20:24:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K3O3DD042548 for ; Mon, 19 May 2003 20:24:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K3O2KJ017376; Mon, 19 May 2003 20:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4K3NuKJ017370 for ; Mon, 19 May 2003 20:23:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K3NtDD042544 for ; Mon, 19 May 2003 20:23:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4K3NtQg058462 for ; Mon, 19 May 2003 20:23:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4K3NtHl058461; Mon, 19 May 2003 20:23:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305200323.h4K3NtHl058461@xorpc.icir.org> Date: Mon, 19 May 2003 20:23:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/19 20:23:55 Modified files: xorp/fea/: iftree.cc Log message: Don't mark trie entries as "CREATED" if they already exist (a fix suggested by Orion). This fixes some older problems, but creates a new warning message: vifaddr4_update invalid event: 3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:43 2005 Subject: No subject Tue May 20 10:25:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHQ3Kd033131 for ; Tue, 20 May 2003 10:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHQ2DD051057 for ; Tue, 20 May 2003 10:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHQ2KJ001520; Tue, 20 May 2003 10:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHP0KJ001495 for ; Tue, 20 May 2003 10:25:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHP0DD051023 for ; Tue, 20 May 2003 10:25:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHP0Qg026557 for ; Tue, 20 May 2003 10:25:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHP0jR026556; Tue, 20 May 2003 10:25:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201725.h4KHP0jR026556@xorpc.icir.org> Date: Tue, 20 May 2003 10:25:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:25:00 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Add two new XRLs to the ifmgr XRL interface: get_all_vif_flags get_configured_vif_flags Those XRLs are used to obtain the flags (enabled, loopback, etc) from a vif. The existing similar XRLs get_all_address_flags[4,6] and get_configured_address_flags[4,6] are kept (those are used to get the flags per vif per address (when applicable)). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:26:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHR2Kd033302 for ; Tue, 20 May 2003 10:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHR2DD051067 for ; Tue, 20 May 2003 10:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHR2KJ001573; Tue, 20 May 2003 10:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHQbKJ001550 for ; Tue, 20 May 2003 10:26:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHQbDD051063 for ; Tue, 20 May 2003 10:26:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHQbQg026623 for ; Tue, 20 May 2003 10:26:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHQbux026622; Tue, 20 May 2003 10:26:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201726.h4KHQbux026622@xorpc.icir.org> Date: Tue, 20 May 2003 10:26:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:26:37 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc ifconfig_rtsock.cc Log message: Bugfix: replace (flags && IFF_UP) with (flags & IFF_UP) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:27:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:28:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHS3Kd035531 for ; Tue, 20 May 2003 10:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHS2DD051089 for ; Tue, 20 May 2003 10:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHS2KJ001607; Tue, 20 May 2003 10:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHRbKJ001592 for ; Tue, 20 May 2003 10:27:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHRaDD051079 for ; Tue, 20 May 2003 10:27:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHRaQg026665 for ; Tue, 20 May 2003 10:27:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHRab9026664; Tue, 20 May 2003 10:27:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201727.h4KHRab9026664@xorpc.icir.org> Date: Tue, 20 May 2003 10:27:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:27:36 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh Log message: Added support for the new XRLs ifmgr_0_1_get_all_vif_flags ifmgr_0_1_get_configured_vif_flags _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:29:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:30:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHU3Kd036023 for ; Tue, 20 May 2003 10:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHU2DD051107 for ; Tue, 20 May 2003 10:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHU2KJ001653; Tue, 20 May 2003 10:30:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHTkKJ001647 for ; Tue, 20 May 2003 10:29:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHTkDD051102 for ; Tue, 20 May 2003 10:29:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHTkQg026703 for ; Tue, 20 May 2003 10:29:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHTkvY026702; Tue, 20 May 2003 10:29:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201729.h4KHTkvY026702@xorpc.icir.org> Date: Tue, 20 May 2003 10:29:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:29:46 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Log message: * Use the new XRL get_all_vif_flags to obtain the flags per vif * If IF_EVENT_CHANGED is received per vif address, then call vifaddr4_created or vifaddr6_created to force rereading the address information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:31:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHW2Kd036391 for ; Tue, 20 May 2003 10:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHW2DD051136 for ; Tue, 20 May 2003 10:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHW1KJ001720; Tue, 20 May 2003 10:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHVSKJ001701 for ; Tue, 20 May 2003 10:31:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHVSDD051134 for ; Tue, 20 May 2003 10:31:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHVSQg026760 for ; Tue, 20 May 2003 10:31:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHVS2P026759; Tue, 20 May 2003 10:31:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201731.h4KHVS2P026759@xorpc.icir.org> Date: Tue, 20 May 2003 10:31:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc vifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:31:28 Modified files: xorp/rib/: vifmanager.cc vifmanager.hh Log message: * Use the new XRL get_configured_vif_flags to obtain the flags per vif. * If IF_EVENT_CHANGED is received for a vif address, then call vifaddr4_created or vifaddr6_created to force rereading the address information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:32:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHX3Kd036536 for ; Tue, 20 May 2003 10:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHX3DD051147 for ; Tue, 20 May 2003 10:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHX2KJ001757; Tue, 20 May 2003 10:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHWHKJ001735 for ; Tue, 20 May 2003 10:32:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHWHDD051142 for ; Tue, 20 May 2003 10:32:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHWHQg026786 for ; Tue, 20 May 2003 10:32:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHWHO1026785; Tue, 20 May 2003 10:32:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201732.h4KHWHO1026785@xorpc.icir.org> Date: Tue, 20 May 2003 10:32:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:32:17 Modified files: xorp/etc/templates/: fea.tp Log message: Replace-back fea_dummy with fea in the fea configuration template file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 10:33:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 10:34:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHY3Kd038822 for ; Tue, 20 May 2003 10:34:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHY2DD051157 for ; Tue, 20 May 2003 10:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHY2KJ001786; Tue, 20 May 2003 10:34:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KHXxKJ001780 for ; Tue, 20 May 2003 10:33:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHXwDD051155 for ; Tue, 20 May 2003 10:33:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KHXwQg026828 for ; Tue, 20 May 2003 10:33:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KHXwik026827; Tue, 20 May 2003 10:33:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305201733.h4KHXwik026827@xorpc.icir.org> Date: Tue, 20 May 2003 10:33:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/20 10:33:58 Modified files: xorp/libxorp/: vif.cc Log message: By default, set the _is_underlying_vif_up flag to false (before it was true). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 13:51:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 13:52:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKq3Kd063431 for ; Tue, 20 May 2003 13:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKq3DD053034 for ; Tue, 20 May 2003 13:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KKq3KJ005439; Tue, 20 May 2003 13:52:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KKpkKJ005430 for ; Tue, 20 May 2003 13:51:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKpkDD053029 for ; Tue, 20 May 2003 13:51:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKpkQg071576 for ; Tue, 20 May 2003 13:51:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KKpk2r071575; Tue, 20 May 2003 13:51:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305202051.h4KKpk2r071575@xorpc.icir.org> Date: Tue, 20 May 2003 13:51:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 13:51:46 Modified files: xorp/fea/: iftree.cc Log message: Added-back mark(CREATED) of an item (interface, vif, address) which we attempt to add, but it is already there. This fixes the problem if an item is added, then deleted, and then added again. Without the above marking, the state of the item would be DELETED, and then it will be incorrectly pruned. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 13:58:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 13:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKx2Kd064310 for ; Tue, 20 May 2003 13:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKx2DD053088 for ; Tue, 20 May 2003 13:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KKx1KJ005584; Tue, 20 May 2003 13:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KKw1KJ005564 for ; Tue, 20 May 2003 13:58:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKw1DD053080 for ; Tue, 20 May 2003 13:58:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KKw1Qg073150 for ; Tue, 20 May 2003 13:58:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KKw11s073149; Tue, 20 May 2003 13:58:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305202058.h4KKw11s073149@xorpc.icir.org> Date: Tue, 20 May 2003 13:58:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 13:58:01 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 14:52:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 14:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KLr3Kd070932 for ; Tue, 20 May 2003 14:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KLr3DD053628 for ; Tue, 20 May 2003 14:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KLr2KJ006792; Tue, 20 May 2003 14:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KLqdKJ006780 for ; Tue, 20 May 2003 14:52:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KLqdDD053626 for ; Tue, 20 May 2003 14:52:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KLqcQg074385 for ; Tue, 20 May 2003 14:52:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KLqcCv074384; Tue, 20 May 2003 14:52:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305202152.h4KLqcCv074384@xorpc.icir.org> Date: Tue, 20 May 2003 14:52:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/05/20 14:52:38 Modified files: xorp/devnotes/: WORKPLAN Log message: Update workplan. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 16:07:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 16:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KN82Kd080479 for ; Tue, 20 May 2003 16:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KN82DD054405 for ; Tue, 20 May 2003 16:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KN82KJ008376; Tue, 20 May 2003 16:08:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KN7OKJ008357 for ; Tue, 20 May 2003 16:07:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KN7ODD054403 for ; Tue, 20 May 2003 16:07:24 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KN7OQg075699 for ; Tue, 20 May 2003 16:07:24 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KN7O3D075698; Tue, 20 May 2003 16:07:24 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305202307.h4KN7O3D075698@xorpc.icir.org> Date: Tue, 20 May 2003 16:07:23 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/20 16:07:23 Modified files: xorp/mibs/tests/: test_bgpmib.sh Log message: Fixed logfile path _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 16:21:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 16:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNM3Kd082896 for ; Tue, 20 May 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNM3DD054524 for ; Tue, 20 May 2003 16:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KNM2KJ008718; Tue, 20 May 2003 16:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KNLTKJ008698 for ; Tue, 20 May 2003 16:21:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNLSDD054519 for ; Tue, 20 May 2003 16:21:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNLSQg076128 for ; Tue, 20 May 2003 16:21:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KNLSP9076127; Tue, 20 May 2003 16:21:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305202321.h4KNLSP9076127@xorpc.icir.org> Date: Tue, 20 May 2003 16:21:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/20 16:21:28 Modified files: xorp/mibs/tests/: test_bgpmib.sh Log message: Corrected traffic file path _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:44 2005 Subject: No subject Tue May 20 16:25:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 16:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNQ3Kd085562 for ; Tue, 20 May 2003 16:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNQ3DD054562 for ; Tue, 20 May 2003 16:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KNQ2KJ008826; Tue, 20 May 2003 16:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4KNPEKJ008801 for ; Tue, 20 May 2003 16:25:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNPEDD054558 for ; Tue, 20 May 2003 16:25:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4KNPEQg076215 for ; Tue, 20 May 2003 16:25:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4KNPERd076214; Tue, 20 May 2003 16:25:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305202325.h4KNPERd076214@xorpc.icir.org> Date: Tue, 20 May 2003 16:25:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh fticonfig_entry_set_rtsock.cc fticonfig_table_set_rtsock.cc routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/05/20 16:25:14 Modified files: xorp/fea/: fte.hh fticonfig_entry_set_rtsock.cc fticonfig_table_set_rtsock.cc routing_socket_utils.cc Log message: Mark all routing entries added by the fea with the "RTF_PROTO1" bit. On startup and shutdown remove all routing entries added by the fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:13:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0E3Kd007021 for ; Tue, 20 May 2003 17:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0E2DD055011 for ; Tue, 20 May 2003 17:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0E2KJ009708; Tue, 20 May 2003 17:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0D5KJ009688 for ; Tue, 20 May 2003 17:13:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0D5DD055003 for ; Tue, 20 May 2003 17:13:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0D5Qg076903 for ; Tue, 20 May 2003 17:13:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0D59h076902; Tue, 20 May 2003 17:13:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305210013.h4L0D59h076902@xorpc.icir.org> Date: Tue, 20 May 2003 17:13:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh xorp/xrl/interfaces/ fea.xif fea_xif.cc fea_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/05/20 17:13:05 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Added files: xorp/xrl/interfaces/: fea.xif fea_xif.cc fea_xif.hh Log message: Add a terminate method to the fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:21:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0M2Kd010514 for ; Tue, 20 May 2003 17:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0M2DD055097 for ; Tue, 20 May 2003 17:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0M1KJ009830; Tue, 20 May 2003 17:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0L9KJ009819 for ; Tue, 20 May 2003 17:21:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0L9DD055089 for ; Tue, 20 May 2003 17:21:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0L9Qg080866 for ; Tue, 20 May 2003 17:21:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0L9uX080860; Tue, 20 May 2003 17:21:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305210021.h4L0L9uX080860@xorpc.icir.org> Date: Tue, 20 May 2003 17:21:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: atanu@xorpc.icir.org. 03/05/20 17:21:09 Modified files: xorp/devnotes/: .cvsignore Log message: ingnore error.ps. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:24:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0P3Kd012455 for ; Tue, 20 May 2003 17:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0P2DD055124 for ; Tue, 20 May 2003 17:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0P2KJ009891; Tue, 20 May 2003 17:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0OLKJ009880 for ; Tue, 20 May 2003 17:24:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0OLDD055117 for ; Tue, 20 May 2003 17:24:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0OLQg081666 for ; Tue, 20 May 2003 17:24:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0OLSY081665; Tue, 20 May 2003 17:24:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210024.h4L0OLSY081665@xorpc.icir.org> Date: Tue, 20 May 2003 17:24:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/20 17:24:21 Modified files: xorp/libxorp/: xlog.h Log message: Added XLOG_UNREACHABLE and XLOG_UNFINISHED (as discussed today) The first one is the equivalent of XLOG_ASSERT(false), and is used as a marker in code that should never ber executed. The second one is used in code that is yet to be implemented. The details (e.g., the particular message to print by XLOG_UNREACHABLE, etc) can be polished later. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:40:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0f2Kd019527 for ; Tue, 20 May 2003 17:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0f2DD055255 for ; Tue, 20 May 2003 17:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0f1KJ010112; Tue, 20 May 2003 17:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0eUKJ010101 for ; Tue, 20 May 2003 17:40:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0eUDD055248 for ; Tue, 20 May 2003 17:40:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0eUQg084155 for ; Tue, 20 May 2003 17:40:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0eUEs084154; Tue, 20 May 2003 17:40:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305210040.h4L0eUEs084154@xorpc.icir.org> Date: Tue, 20 May 2003 17:40:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/05/20 17:40:30 Modified files: xorp/fea/: xrl_target.cc Log message: Removed doofus. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:46:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:47:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0l2Kd021250 for ; Tue, 20 May 2003 17:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0l2DD055304 for ; Tue, 20 May 2003 17:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0l2KJ010193; Tue, 20 May 2003 17:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0kiKJ010187 for ; Tue, 20 May 2003 17:46:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0kiDD055302 for ; Tue, 20 May 2003 17:46:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0kiQg084250 for ; Tue, 20 May 2003 17:46:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0kiRO084249; Tue, 20 May 2003 17:46:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210046.h4L0kiRO084249@xorpc.icir.org> Date: Tue, 20 May 2003 17:46:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 17:46:44 Modified files: xorp/fea/: fticonfig_entry_set_rtsock.cc Log message: Replace C-style comment with C++ comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 17:47:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 17:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0m2Kd021553 for ; Tue, 20 May 2003 17:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0m2DD055318 for ; Tue, 20 May 2003 17:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0m1KJ010223; Tue, 20 May 2003 17:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L0l7KJ010207 for ; Tue, 20 May 2003 17:47:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0l7DD055308 for ; Tue, 20 May 2003 17:47:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L0l7Qg084277 for ; Tue, 20 May 2003 17:47:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L0l7qD084276; Tue, 20 May 2003 17:47:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210047.h4L0l7qD084276@xorpc.icir.org> Date: Tue, 20 May 2003 17:47:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 17:47:07 Modified files: xorp/fea/: routing_socket_utils.cc Log message: Replace C-style comment with C++ style comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 18:11:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 18:12:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1C3Kd037415 for ; Tue, 20 May 2003 18:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1C2DD055551 for ; Tue, 20 May 2003 18:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1C2KJ010677; Tue, 20 May 2003 18:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1BEKJ010660 for ; Tue, 20 May 2003 18:11:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1BDDD055545 for ; Tue, 20 May 2003 18:11:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1BDQg089357 for ; Tue, 20 May 2003 18:11:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L1BDtK089356; Tue, 20 May 2003 18:11:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210111.h4L1BDtK089356@xorpc.icir.org> Date: Tue, 20 May 2003 18:11:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 18:11:13 Modified files: xorp/fea/: xrl_target.hh xrl_target.cc Log message: Add method bool done() to the FEA XRL target. It returns true when the FEA XRL target is ready to terminate. For now, it returns true after fea_0_1_terminate XRL is received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 18:11:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 18:12:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1C5Kd037435 for ; Tue, 20 May 2003 18:12:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1C4DD055555 for ; Tue, 20 May 2003 18:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1C4KJ010688; Tue, 20 May 2003 18:12:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1BrKJ010668 for ; Tue, 20 May 2003 18:11:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1BqDD055549 for ; Tue, 20 May 2003 18:11:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1BqQg089619 for ; Tue, 20 May 2003 18:11:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L1Bqg1089618; Tue, 20 May 2003 18:11:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210111.h4L1Bqg1089618@xorpc.icir.org> Date: Tue, 20 May 2003 18:11:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 18:11:52 Modified files: xorp/fea/: fea.cc Log message: Add (incompleted and untested) support to gracefully shutdown the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 18:47:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 18:48:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1m3Kd042090 for ; Tue, 20 May 2003 18:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1m2DD055851 for ; Tue, 20 May 2003 18:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1m2KJ011153; Tue, 20 May 2003 18:48:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L1l8KJ011141 for ; Tue, 20 May 2003 18:47:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1l8DD055841 for ; Tue, 20 May 2003 18:47:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L1l8Qg000329 for ; Tue, 20 May 2003 18:47:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L1l8u1000328; Tue, 20 May 2003 18:47:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305210147.h4L1l8u1000328@xorpc.icir.org> Date: Tue, 20 May 2003 18:47:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/05/20 18:47:07 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Add terminate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 19:53:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 19:54:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L2s5Kd050180 for ; Tue, 20 May 2003 19:54:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L2s4DD056355 for ; Tue, 20 May 2003 19:54:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L2s4KJ011938; Tue, 20 May 2003 19:54:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L2rVKJ011915 for ; Tue, 20 May 2003 19:53:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L2rUDD056349 for ; Tue, 20 May 2003 19:53:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L2rUQg022361 for ; Tue, 20 May 2003 19:53:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L2rUg8022360; Tue, 20 May 2003 19:53:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210253.h4L2rUg8022360@xorpc.icir.org> Date: Tue, 20 May 2003 19:53:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ utility.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/20 19:53:30 Modified files: xorp/libxorp/: utility.h Log message: Add a new macro to add a value to a pointer and cast it to a type: ADD_POINTER(pointer, size, type) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:45 2005 Subject: No subject Tue May 20 20:05:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 20:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L363Kd054681 for ; Tue, 20 May 2003 20:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L363DD056455 for ; Tue, 20 May 2003 20:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L362KJ012075; Tue, 20 May 2003 20:06:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L35lKJ012068 for ; Tue, 20 May 2003 20:05:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L35lDD056448 for ; Tue, 20 May 2003 20:05:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L35kQg025600 for ; Tue, 20 May 2003 20:05:46 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L35kHj025599; Tue, 20 May 2003 20:05:46 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305210305.h4L35kHj025599@xorpc.icir.org> Date: Tue, 20 May 2003 20:05:46 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xo! rp/policy/ ! Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in xorp/mibs/tests/ test_bgpmib.sh.in xorp/mibs/tests/ test_bgpmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/20 20:05:46 Modified files: ./: Makefile.in configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Added files: xorp/mibs/tests/: test_bgpmib.sh.in Removed files: xorp/mibs/tests/: test_bgpmib.sh Log message: Added configure tests to detect snmpd _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 20:08:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 20:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L392Kd055617 for ; Tue, 20 May 2003 20:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L392DD056479 for ; Tue, 20 May 2003 20:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L392KJ012105; Tue, 20 May 2003 20:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L38ZKJ012098 for ; Tue, 20 May 2003 20:08:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L38ZDD056477 for ; Tue, 20 May 2003 20:08:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L38ZQg026191 for ; Tue, 20 May 2003 20:08:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L38ZjN026190; Tue, 20 May 2003 20:08:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210308.h4L38ZjN026190@xorpc.icir.org> Date: Tue, 20 May 2003 20:08:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 20:08:35 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc Log message: Bugfixes: Use ADD_POINTER() to add (correctly) a value to a pointer to (sockaddr_in *) Note to myself: never let again Atanu watch me fixing my own stupid bugs :) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 20:52:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 20:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3r2Kd061476 for ; Tue, 20 May 2003 20:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3r2DD056833 for ; Tue, 20 May 2003 20:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L3r1KJ012614; Tue, 20 May 2003 20:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L3qEKJ012602 for ; Tue, 20 May 2003 20:52:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3qEDD056831 for ; Tue, 20 May 2003 20:52:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3qEQg030642 for ; Tue, 20 May 2003 20:52:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L3qEjO030641; Tue, 20 May 2003 20:52:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210352.h4L3qEjO030641@xorpc.icir.org> Date: Tue, 20 May 2003 20:52:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_fea.cc test_fti.cc test_ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 20:52:13 Modified files: xorp/fea/: test_fea.cc test_fti.cc test_ifconfig_rtsock.cc Log message: Update include filenames. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 20:53:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 20:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3s3Kd061567 for ; Tue, 20 May 2003 20:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3s2DD056849 for ; Tue, 20 May 2003 20:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L3s2KJ012640; Tue, 20 May 2003 20:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L3rfKJ012629 for ; Tue, 20 May 2003 20:53:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3rfDD056847 for ; Tue, 20 May 2003 20:53:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3rfQg030699 for ; Tue, 20 May 2003 20:53:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L3rfw1030698; Tue, 20 May 2003 20:53:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210353.h4L3rfw1030698@xorpc.icir.org> Date: Tue, 20 May 2003 20:53:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am xorp/fea/ fea_rtsock.cc fti.hh fti_dummy.cc fti_dummy.hh fti_rtsock.cc fti_rtsock.hh ifconfig_dummy.cc ifconfig_dummy.hh ifconfig_rtsock.cc ifconfig_rtsock.hh rtsock.cc rtsock.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 20:53:41 Modified files: xorp/fea/: Makefile.am Removed files: xorp/fea/: fea_rtsock.cc fti.hh fti_dummy.cc fti_dummy.hh fti_rtsock.cc fti_rtsock.hh ifconfig_dummy.cc ifconfig_dummy.hh ifconfig_rtsock.cc ifconfig_rtsock.hh rtsock.cc rtsock.hh Log message: Remove obsoleted files whose code was refactored already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 20:59:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 21:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L402Kd062032 for ; Tue, 20 May 2003 21:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L402DD056894 for ; Tue, 20 May 2003 21:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L402KJ012723; Tue, 20 May 2003 21:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L3xRKJ012711 for ; Tue, 20 May 2003 20:59:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3xRDD056886 for ; Tue, 20 May 2003 20:59:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L3xRQg030768 for ; Tue, 20 May 2003 20:59:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L3xRBJ030767; Tue, 20 May 2003 20:59:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210359.h4L3xRBJ030767@xorpc.icir.org> Date: Tue, 20 May 2003 20:59:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/20 20:59:27 Modified files: ./: configure.in configure Log message: Remove fea building related statements because they don't apply anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 21:00:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 21:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L412Kd062140 for ; Tue, 20 May 2003 21:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L412DD056921 for ; Tue, 20 May 2003 21:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L411KJ012750; Tue, 20 May 2003 21:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L408KJ012734 for ; Tue, 20 May 2003 21:00:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L408DD056915 for ; Tue, 20 May 2003 21:00:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L408Qg030811 for ; Tue, 20 May 2003 21:00:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L408Y1030810; Tue, 20 May 2003 21:00:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210400.h4L408Y1030810@xorpc.icir.org> Date: Tue, 20 May 2003 21:00:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/20 21:00:08 Modified files: xorp/fea/: TODO Log message: * Remove TODO entries that are already done * Reword few existing TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 21:30:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 21:31:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L4V3Kd064385 for ; Tue, 20 May 2003 21:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L4V3DD057159 for ; Tue, 20 May 2003 21:31:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L4V2KJ013190; Tue, 20 May 2003 21:31:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L4USKJ013178 for ; Tue, 20 May 2003 21:30:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L4URDD057157 for ; Tue, 20 May 2003 21:30:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L4URQg031026 for ; Tue, 20 May 2003 21:30:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L4URGN031025; Tue, 20 May 2003 21:30:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305210430.h4L4URGN031025@xorpc.icir.org> Date: Tue, 20 May 2003 21:30:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ finder_command_line.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/20 21:30:27 Added files: xorp/docs/libxipc/: finder_command_line.txt Log message: Add a note about finder command line arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 22:32:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 22:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5X2Kd069062 for ; Tue, 20 May 2003 22:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5X2DD057679 for ; Tue, 20 May 2003 22:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L5X2KJ013923; Tue, 20 May 2003 22:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L5WuKJ013917 for ; Tue, 20 May 2003 22:32:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5WuDD057677 for ; Tue, 20 May 2003 22:32:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5WuQg031447 for ; Tue, 20 May 2003 22:32:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L5WubH031446; Tue, 20 May 2003 22:32:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210532.h4L5WubH031446@xorpc.icir.org> Date: Tue, 20 May 2003 22:32:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc ifconfig_parse_ifreq.cc mfea_mrouter.cc mfea_node.cc mfea_proto_comm.cc netlink_socket.cc xrl_mfea_node.cc ...xrl_mfea_vif_manager.cc xorp/mfea/ mfea_node.cc mfea_unix_comm.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc mfea_unix_mrib_rawsock.cc xrl_mfea_node.cc xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc xrl_mld6igmp_node.cc xorp/pim/ pim_bsr.cc pim_mre.cc pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mrt_task.cc pim_node.cc pim_node.hh pim_node_cli.cc ...pim_proto_assert.cc ...pim_proto_bootstrap.cc ...pim_proto_cand_rp_adv.cc ...pim_proto_graft.cc ...pim_proto_hello.cc ...pim_proto_join_prune_message.cc ...pim_pr! oto_registe! r.cc ...pim_proto_register_stop.cc ...pim_rp.cc ...pim_vif.cc ...xrl_pim_node.cc xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/05/20 22:32:56 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc ifconfig_parse_ifreq.cc mfea_mrouter.cc mfea_node.cc mfea_proto_comm.cc netlink_socket.cc xrl_mfea_node.cc xrl_mfea_vif_manager.cc xorp/mfea/: mfea_node.cc mfea_unix_comm.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc mfea_unix_mrib_rawsock.cc xrl_mfea_node.cc xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc xrl_mld6igmp_node.cc xorp/pim/: pim_bsr.cc pim_mre.cc pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mrt_task.cc pim_node.cc pim_node.hh pim_node_cli.cc pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_hello.cc pim_proto_join_prune_message.cc pim_proto_register.cc pim_proto_register_stop.cc pim_rp.cc pim_vif.cc xrl_pim_node.cc xorp/rtrmgr/: config.boot Log message: Replace XLOG_ASSERT(false) with the new XLOG_UNREACHABLE() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Tue May 20 22:36:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 May 2003 22:37:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5b2Kd069389 for ; Tue, 20 May 2003 22:37:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5b2DD057714 for ; Tue, 20 May 2003 22:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L5b2KJ013966; Tue, 20 May 2003 22:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L5aTKJ013959 for ; Tue, 20 May 2003 22:36:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5aTDD057711 for ; Tue, 20 May 2003 22:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L5aSQg031572 for ; Tue, 20 May 2003 22:36:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L5aS3l031571; Tue, 20 May 2003 22:36:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210536.h4L5aS3l031571@xorpc.icir.org> Date: Tue, 20 May 2003 22:36:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/05/20 22:36:28 Modified files: xorp/rtrmgr/: config.boot Log message: Reverse-back the last commit of config.boot, because the changes were commited by accident. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Wed May 21 2:53:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 02:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L9s3Kd094164 for ; Wed, 21 May 2003 02:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L9s2DD059875 for ; Wed, 21 May 2003 02:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L9s2KJ017776; Wed, 21 May 2003 02:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4L9rdKJ017767 for ; Wed, 21 May 2003 02:53:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L9rdDD059872 for ; Wed, 21 May 2003 02:53:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4L9rcQg063793 for ; Wed, 21 May 2003 02:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4L9rcwK063792; Wed, 21 May 2003 02:53:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305210953.h4L9rcwK063792@xorpc.icir.org> Date: Wed, 21 May 2003 2:53:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 02:53:38 Modified files: xorp/fea/: routing_socket_utils.cc Log message: If the routing entry read from the kernel was generated by the link-layer (e.g., ARP), then the gateway address toward the destination is the destination address itself (unless the destination is the link-local broadcast address). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Wed May 21 7:26:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 07:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LER3Kd015162 for ; Wed, 21 May 2003 07:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LER3DD062078 for ; Wed, 21 May 2003 07:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LER2KJ023085; Wed, 21 May 2003 07:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LEQSKJ023073 for ; Wed, 21 May 2003 07:26:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LEQRDD062072 for ; Wed, 21 May 2003 07:26:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LEQRQg092338 for ; Wed, 21 May 2003 07:26:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LEQRVm092337; Wed, 21 May 2003 07:26:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305211426.h4LEQRVm092337@xorpc.icir.org> Date: Wed, 21 May 2003 7:26:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc mfea_node.cc mfea_node.hh xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 07:26:27 Modified files: xorp/fea/: fea.cc fea_dummy.cc mfea_node.cc mfea_node.hh xrl_mfea_node.hh Log message: Implement MfeaNode::get_mrib_table() to obtain the MRIB table. For now, the table is obtained directly from the FEA (FtiConfig) by calling FtiConfig::get_table[4,6] (i.e., without XRLs), and is read periodically (once every 10 seconds) to find-out if it has changed. Note that because the MFEA may receive the vif info from the FEA after it has read the routing table for first time, on startup the MFEA may print the following warning: get_mrib_table() error: cannot find interface toward next-hop router 192.150.187.1 for destination 0.0.0.0/0 The next time the MRIB table is read (i.e., after 10 seconds), the vif info should be fine. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Wed May 21 10:47:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 10:48:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LHm2Kd033224 for ; Wed, 21 May 2003 10:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LHm2DD065396 for ; Wed, 21 May 2003 10:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LHm2KJ026600; Wed, 21 May 2003 10:48:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LHlSKJ026585 for ; Wed, 21 May 2003 10:47:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LHlSDD065390 for ; Wed, 21 May 2003 10:47:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LHlSQg002587 for ; Wed, 21 May 2003 10:47:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LHlSbt002586; Wed, 21 May 2003 10:47:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305211747.h4LHlSbt002586@xorpc.icir.org> Date: Wed, 21 May 2003 10:47:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/21 10:47:28 Modified files: xorp/libxorp/: xlog.h Log message: Change the message printed by XLOG_UNREACHABLE() from "Internal error" to "Internal fatal error". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Wed May 21 11:28:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 11:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LIT3Kd044174 for ; Wed, 21 May 2003 11:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LIT3DD065695 for ; Wed, 21 May 2003 11:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LIT2KJ027614; Wed, 21 May 2003 11:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LISrKJ027605 for ; Wed, 21 May 2003 11:28:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LISrDD065693 for ; Wed, 21 May 2003 11:28:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LISrQg013723 for ; Wed, 21 May 2003 11:28:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LISrpj013722; Wed, 21 May 2003 11:28:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305211828.h4LISrpj013722@xorpc.icir.org> Date: Wed, 21 May 2003 11:28:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 11:28:52 Modified files: xorp/fea/: fticonfig_entry_set_rtsock.cc Log message: Bugfix when deleting a routing entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:46 2005 Subject: No subject Wed May 21 13:53:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 13:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LKs3Kd063890 for ; Wed, 21 May 2003 13:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LKs3DD066950 for ; Wed, 21 May 2003 13:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LKs2KJ000575; Wed, 21 May 2003 13:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LKrhKJ000567 for ; Wed, 21 May 2003 13:53:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LKrhDD066946 for ; Wed, 21 May 2003 13:53:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LKrhQg048522 for ; Wed, 21 May 2003 13:53:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LKrhoJ048521; Wed, 21 May 2003 13:53:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305212053.h4LKrhoJ048521@xorpc.icir.org> Date: Wed, 21 May 2003 13:53:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/05/21 13:53:42 Modified files: xorp/cli/libtecla/: configure Log message: Rebuild cli/libtecla/configure with autoconf-2.53 . The original version was built with autoconf-2.13, but it doesn't handle properly command-line options such as compiler specification; e.g.: 'CC=gcc32' 'CXX=g++32'. Therefore running ./bootstrap; ./configure was failing if we use newer version of autoconf (and at the same time we specify CC and CXX). This rebuilding is a one-time requirement, and therefore we don't need to do it everytime we run xorp/bootstrap (as long as we don't modify cli/libtecla/configure.in of course). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 14:15:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 14:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLG2Kd069243 for ; Wed, 21 May 2003 14:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLG2DD067183 for ; Wed, 21 May 2003 14:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLG2KJ000993; Wed, 21 May 2003 14:16:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLFQKJ000977 for ; Wed, 21 May 2003 14:15:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLFPDD067181 for ; Wed, 21 May 2003 14:15:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLFPQg048865 for ; Wed, 21 May 2003 14:15:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LLFPkn048864; Wed, 21 May 2003 14:15:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305212115.h4LLFPkn048864@xorpc.icir.org> Date: Wed, 21 May 2003 14:15:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/05/21 14:15:25 Modified files: xorp/libxorp/: selector.cc Log message: Do not use vector::capacity for vector bounds checking for types with constructors. Otherwise there's a risk of accessing unconstructed elements. As an example, if v.size() is 3 and v.capacity is 5, v[3] and v[4] should not be used until v.resize(5) is called. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 14:18:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 14:19:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLJ3Kd069614 for ; Wed, 21 May 2003 14:19:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLJ3DD067200 for ; Wed, 21 May 2003 14:19:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLJ2KJ001084; Wed, 21 May 2003 14:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLIEKJ001059 for ; Wed, 21 May 2003 14:18:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLIEDD067198 for ; Wed, 21 May 2003 14:18:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLIEQg048922 for ; Wed, 21 May 2003 14:18:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LLIE2p048921; Wed, 21 May 2003 14:18:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305212118.h4LLIE2p048921@xorpc.icir.org> Date: Wed, 21 May 2003 14:18:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.hh selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/05/21 14:18:14 Modified files: xorp/libxorp/: selector.hh selector.cc Log message: Zap trailing whitespaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 14:26:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 14:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLR3Kd070610 for ; Wed, 21 May 2003 14:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLR3DD067292 for ; Wed, 21 May 2003 14:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLR2KJ001238; Wed, 21 May 2003 14:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLQqKJ001231 for ; Wed, 21 May 2003 14:26:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLQqDD067289 for ; Wed, 21 May 2003 14:26:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLQqQg049069 for ; Wed, 21 May 2003 14:26:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LLQquL049068; Wed, 21 May 2003 14:26:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305212126.h4LLQquL049068@xorpc.icir.org> Date: Wed, 21 May 2003 14:26:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/21 14:26:52 Modified files: ./: bootstrap Log message: * Added a new function program_flags() that computes the flags a program should have depend on the program version. For now the syntax is very simple: # # Prototype: program_flags # # On output prints the program flags * Use the above function to assign the flags to autoheader and autoconf if their version is at least 2.50 or newer. Note that I am not sure about the exact cut-off version of autoconf that require the new flags to autoheader and autoconf: "--include=config" (for autoheader) "--include=config" instead of "-l config" (for autoconf) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 14:29:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 14:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLU2Kd070984 for ; Wed, 21 May 2003 14:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLU2DD067316 for ; Wed, 21 May 2003 14:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLU2KJ001295; Wed, 21 May 2003 14:30:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LLTsKJ001288 for ; Wed, 21 May 2003 14:29:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLTsDD067309 for ; Wed, 21 May 2003 14:29:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LLTrQg049149 for ; Wed, 21 May 2003 14:29:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LLTrZv049148; Wed, 21 May 2003 14:29:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305212129.h4LLTrZv049148@xorpc.icir.org> Date: Wed, 21 May 2003 14:29:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/05/21 14:29:53 Modified files: xorp/libxorp/: ref_ptr.hh ref_ptr.cc Log message: Add an additional paranoia test. Check pointer being copied in ref is not null. Axe trailing whitespaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 15:54:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 15:55:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LMt3Kd096647 for ; Wed, 21 May 2003 15:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LMt3DD067996 for ; Wed, 21 May 2003 15:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LMt2KJ002906; Wed, 21 May 2003 15:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LMsnKJ002897 for ; Wed, 21 May 2003 15:54:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LMsnDD067987 for ; Wed, 21 May 2003 15:54:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LMsnQg055593 for ; Wed, 21 May 2003 15:54:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LMsmdQ055592; Wed, 21 May 2003 15:54:48 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305212254.h4LMsmdQ055592@xorpc.icir.org> Date: Wed, 21 May 2003 15:54:48 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/21 15:54:48 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Corrected test for UpdateTime _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 16:04:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 16:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN52Kd097888 for ; Wed, 21 May 2003 16:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN52DD068084 for ; Wed, 21 May 2003 16:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LN52KJ003106; Wed, 21 May 2003 16:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LN4gKJ003099 for ; Wed, 21 May 2003 16:04:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN4gDD068079 for ; Wed, 21 May 2003 16:04:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN4gQg056739 for ; Wed, 21 May 2003 16:04:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LN4ggm056738; Wed, 21 May 2003 16:04:42 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305212304.h4LN4ggm056738@xorpc.icir.org> Date: Wed, 21 May 2003 16:04:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.hh xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/21 16:04:42 Modified files: xorp/libxipc/: xrl_router.hh xrl_router.cc Log message: Add constructor for pre-resolved finder host address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 16:05:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 16:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN62Kd098032 for ; Wed, 21 May 2003 16:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN62DD068112 for ; Wed, 21 May 2003 16:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LN61KJ003135; Wed, 21 May 2003 16:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LN5MKJ003120 for ; Wed, 21 May 2003 16:05:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN5MDD068107 for ; Wed, 21 May 2003 16:05:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN5MQg056781 for ; Wed, 21 May 2003 16:05:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LN5M7D056780; Wed, 21 May 2003 16:05:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305212305.h4LN5M7D056780@xorpc.icir.org> Date: Wed, 21 May 2003 16:05:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_std_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/21 16:05:22 Modified files: xorp/libxipc/: xrl_std_router.hh Log message: Add constructors for pre-resolved finder host address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 16:09:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 16:10:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LNA3Kd098528 for ; Wed, 21 May 2003 16:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LNA3DD068146 for ; Wed, 21 May 2003 16:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LNA2KJ003204; Wed, 21 May 2003 16:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4LN9JKJ003191 for ; Wed, 21 May 2003 16:09:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN9IDD068136 for ; Wed, 21 May 2003 16:09:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4LN9IQg056849 for ; Wed, 21 May 2003 16:09:18 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4LN9IU6056848; Wed, 21 May 2003 16:09:18 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305212309.h4LN9IU6056848@xorpc.icir.org> Date: Wed, 21 May 2003 16:09:18 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/05/21 16:09:18 Modified files: ./: configure configure.in Log message: Improved snmpd detection _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 17:58:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 17:59:24 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M0xOwZ000483 for ; Wed, 21 May 2003 17:59:24 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M0x3DD068972 for ; Wed, 21 May 2003 17:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M0x2KJ005026; Wed, 21 May 2003 17:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M0wQKJ005008 for ; Wed, 21 May 2003 17:58:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M0wQDD068967 for ; Wed, 21 May 2003 17:58:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M0wQQg058572 for ; Wed, 21 May 2003 17:58:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4M0wQRH058571; Wed, 21 May 2003 17:58:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305220058.h4M0wQRH058571@xorpc.icir.org> Date: Wed, 21 May 2003 17:58:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.hh ifconfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 17:58:26 Modified files: xorp/fea/: fticonfig.hh ifconfig.hh Log message: Call stop() method in FtiConfig and IfConfig destructors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 18:05:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 18:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M162wZ001307 for ; Wed, 21 May 2003 18:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M162DD069069 for ; Wed, 21 May 2003 18:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M161KJ005162; Wed, 21 May 2003 18:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M15QKJ005154 for ; Wed, 21 May 2003 18:05:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M15PDD069057 for ; Wed, 21 May 2003 18:05:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M15PQg062970 for ; Wed, 21 May 2003 18:05:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4M15PtI062969; Wed, 21 May 2003 18:05:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305220105.h4M15PtI062969@xorpc.icir.org> Date: Wed, 21 May 2003 18:05:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh fti_transaction.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc ...fticonfig_table_get_netlink.cc ...fticonfig_table_get_sysctl.cc ...netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 18:05:25 Modified files: xorp/fea/: fte.hh fti_transaction.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc netlink_socket_utils.cc Log message: * Remove the implicit value of xorp_route in the Fte constructor, and explicitly assign it when Fte entry is created. * Add the implicit value of xorp_route = true to the FtiAddEntry4 and FtiAddEntry6 constructors. Now Atanu's mods for cleaning-up of XORP-added routes on startup and graceful shutdown appear to work. Note: this cleanup is implemented only if we use routing sockets to communicate with the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Wed May 21 18:10:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 May 2003 18:11:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M1B3wZ002015 for ; Wed, 21 May 2003 18:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M1B3DD069113 for ; Wed, 21 May 2003 18:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M1B2KJ005247; Wed, 21 May 2003 18:11:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4M1AYKJ005210 for ; Wed, 21 May 2003 18:10:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M1AYDD069111 for ; Wed, 21 May 2003 18:10:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4M1AXQg066255 for ; Wed, 21 May 2003 18:10:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4M1AXmu066254; Wed, 21 May 2003 18:10:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305220110.h4M1AXmu066254@xorpc.icir.org> Date: Wed, 21 May 2003 18:10:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/21 18:10:33 Modified files: xorp/fea/: fte.hh Log message: Explicitly zero all remaining fields in Fte(const N& net) constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Thu May 22 4:52:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 04:53:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MBr8wZ058471 for ; Thu, 22 May 2003 04:53:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MBr8DD074004 for ; Thu, 22 May 2003 04:53:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MBr7KJ015488; Thu, 22 May 2003 04:53:07 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MBqLKJ015342 for ; Thu, 22 May 2003 04:52:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MBqLDD073998 for ; Thu, 22 May 2003 04:52:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MBqLQg028381 for ; Thu, 22 May 2003 04:52:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MBqLAe028380; Thu, 22 May 2003 04:52:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305221152.h4MBqLAe028380@xorpc.icir.org> Date: Thu, 22 May 2003 4:52:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/22 04:52:20 Modified files: ./: configure.in Log message: Add a comment at the top of configure.in explaining how to disable config.cache loading and saving (e.g., in case if we need to use this work-around of config.cache related problems) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:47 2005 Subject: No subject Thu May 22 5:21:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 05:22:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCM3wZ060660 for ; Thu, 22 May 2003 05:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCM3DD074286 for ; Thu, 22 May 2003 05:22:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MCM2KJ015958; Thu, 22 May 2003 05:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MCLHKJ015950 for ; Thu, 22 May 2003 05:21:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCLHDD074282 for ; Thu, 22 May 2003 05:21:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCLHQg028622 for ; Thu, 22 May 2003 05:21:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MCLHrd028621; Thu, 22 May 2003 05:21:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305221221.h4MCLHrd028621@xorpc.icir.org> Date: Thu, 22 May 2003 5:21:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/22 05:21:17 Modified files: ./: bootstrap Log message: Run autoconf in each subdirectory that has configure.in (e.g., for now it is only cli/libtecla) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 5:24:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 05:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCP3wZ060900 for ; Thu, 22 May 2003 05:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCP2DD074306 for ; Thu, 22 May 2003 05:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MCP2KJ015998; Thu, 22 May 2003 05:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MCOXKJ015990 for ; Thu, 22 May 2003 05:24:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCOWDD074301 for ; Thu, 22 May 2003 05:24:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MCOWQg028666 for ; Thu, 22 May 2003 05:24:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MCOWp9028665; Thu, 22 May 2003 05:24:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305221224.h4MCOWp9028665@xorpc.icir.org> Date: Thu, 22 May 2003 5:24:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/05/22 05:24:32 Modified files: xorp/cli/libtecla/: configure Log message: Regenerate "configure" but running the same version of autoconf that is used to generate the current xorp/configure file. This should fix the config.cache loading/unloading problem that appeared when cli/libtecla/configure (only) was regenerated with a newer version of autoconf. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 8:56:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 08:57:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MFv3wZ078299 for ; Thu, 22 May 2003 08:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MFv3DD077499 for ; Thu, 22 May 2003 08:57:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MFv2KJ018894; Thu, 22 May 2003 08:57:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MFuiKJ018887 for ; Thu, 22 May 2003 08:56:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MFuiDD077497 for ; Thu, 22 May 2003 08:56:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MFuiQg055378 for ; Thu, 22 May 2003 08:56:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MFui1b055377; Thu, 22 May 2003 08:56:44 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305221556.h4MFui1b055377@xorpc.icir.org> Date: Thu, 22 May 2003 8:56:43 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/22 08:56:43 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Fixed incorrect snmpd termination _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 9:52:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 09:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGr3wZ083110 for ; Thu, 22 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGr3DD078033 for ; Thu, 22 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MGr2KJ020161; Thu, 22 May 2003 09:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MGqGKJ020114 for ; Thu, 22 May 2003 09:52:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGqFDD078024 for ; Thu, 22 May 2003 09:52:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGqFQg055886 for ; Thu, 22 May 2003 09:52:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MGqFov055885; Thu, 22 May 2003 09:52:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221652.h4MGqFov055885@xorpc.icir.org> Date: Thu, 22 May 2003 9:52:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_server.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/22 09:52:15 Modified files: xorp/libxipc/: finder_server.hh Log message: Store Finder bound and port and add accessors to retrieve values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 9:53:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 09:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGs3wZ083247 for ; Thu, 22 May 2003 09:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGs2DD078047 for ; Thu, 22 May 2003 09:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MGs2KJ020219; Thu, 22 May 2003 09:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MGrdKJ020208 for ; Thu, 22 May 2003 09:53:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGrdDD078045 for ; Thu, 22 May 2003 09:53:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MGrdQg055919 for ; Thu, 22 May 2003 09:53:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MGrdir055918; Thu, 22 May 2003 09:53:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221653.h4MGrdir055918@xorpc.icir.org> Date: Thu, 22 May 2003 9:53:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/22 09:53:39 Modified files: xorp/libxipc/: test_xrl_router.cc Log message: Change XrlRouter instances to use address and port associated with FinderServer, rather than defaults. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 10:54:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 10:55:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MHt3wZ089174 for ; Thu, 22 May 2003 10:55:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MHt2DD078646 for ; Thu, 22 May 2003 10:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MHt2KJ021546; Thu, 22 May 2003 10:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MHs2KJ021521 for ; Thu, 22 May 2003 10:54:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MHs2DD078640 for ; Thu, 22 May 2003 10:54:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MHs2Qg056337 for ; Thu, 22 May 2003 10:54:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MHs2hS056336; Thu, 22 May 2003 10:54:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221754.h4MHs2hS056336@xorpc.icir.org> Date: Thu, 22 May 2003 10:54:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/tests/ test_generated.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/05/22 10:54:02 Modified files: xorp/xrl/tests/: test_generated.cc Log message: Specify Finder address and ports in XrlRouter constructor arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:48 2005 Subject: No subject Thu May 22 11:10:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 11:11:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIB4wZ091117 for ; Thu, 22 May 2003 11:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIB4DD078811 for ; Thu, 22 May 2003 11:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MIB3KJ021889; Thu, 22 May 2003 11:11:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MIANKJ021859 for ; Thu, 22 May 2003 11:10:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIANDD078805 for ; Thu, 22 May 2003 11:10:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIANQg056497 for ; Thu, 22 May 2003 11:10:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MIAN32056496; Thu, 22 May 2003 11:10:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221810.h4MIAN32056496@xorpc.icir.org> Date: Thu, 22 May 2003 11:10:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/05/22 11:10:23 Modified files: xorp/rib/: test_rib_xrls.cc Log message: Specify finder host and port in XrlRouter constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 11:11:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 11:12:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIC4wZ091271 for ; Thu, 22 May 2003 11:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIC4DD078829 for ; Thu, 22 May 2003 11:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MIC3KJ021923; Thu, 22 May 2003 11:12:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MIBLKJ021910 for ; Thu, 22 May 2003 11:11:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIBKDD078817 for ; Thu, 22 May 2003 11:11:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MIBKQg056536 for ; Thu, 22 May 2003 11:11:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MIBKZT056535; Thu, 22 May 2003 11:11:20 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221811.h4MIBKZT056535@xorpc.icir.org> Date: Thu, 22 May 2003 11:11:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/rib/ Makefile.in xorp/rib/ test_rib_direct.sh.in test_rib_xrls.sh.in xorp/rib/ test_rib_direct.sh test_rib_xrls.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/05/22 11:11:20 Modified files: ./: configure configure.in xorp/rib/: Makefile.in Added files: xorp/rib/: test_rib_direct.sh.in test_rib_xrls.sh.in Removed files: xorp/rib/: test_rib_direct.sh test_rib_xrls.sh Log message: Enable cross directory make check for rib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 12:07:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 12:08:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MJ83wZ098072 for ; Thu, 22 May 2003 12:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MJ83DD079383 for ; Thu, 22 May 2003 12:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MJ82KJ022943; Thu, 22 May 2003 12:08:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MJ7mKJ022937 for ; Thu, 22 May 2003 12:07:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MJ7mDD079379 for ; Thu, 22 May 2003 12:07:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MJ7mQg061285 for ; Thu, 22 May 2003 12:07:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MJ7mto061284; Thu, 22 May 2003 12:07:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305221907.h4MJ7mto061284@xorpc.icir.org> Date: Thu, 22 May 2003 12:07:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/22 12:07:48 Modified files: xorp/libxipc/: finder_main.cc Log message: Add localhost as known finder address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 13:37:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 13:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MKc3wZ009105 for ; Thu, 22 May 2003 13:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MKc3DD080121 for ; Thu, 22 May 2003 13:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MKc2KJ024581; Thu, 22 May 2003 13:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MKbtKJ024574 for ; Thu, 22 May 2003 13:37:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MKbtDD080119 for ; Thu, 22 May 2003 13:37:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MKbtQg081304 for ; Thu, 22 May 2003 13:37:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MKbtnK081303; Thu, 22 May 2003 13:37:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305222037.h4MKbtnK081303@xorpc.icir.org> Date: Thu, 22 May 2003 13:37:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc test_sample_config.cc xorp/mibs/ test_xorpevents.cc xorp/mfea/ test_mfea.cc xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/ Changes by: hodson@xorpc.icir.org. 03/05/22 13:37:55 Modified files: xorp/rtrmgr/: main_rtrmgr.cc test_sample_config.cc xorp/mibs/: test_xorpevents.cc xorp/mfea/: test_mfea.cc xorp/cli/: test_cli.cc Log message: Use FinderServer port() and addr() as arguments to Xrl constructor in tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 15:25:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 15:26:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMQ3wZ034626 for ; Thu, 22 May 2003 15:26:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMQ2DD081009 for ; Thu, 22 May 2003 15:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMQ2KJ026527; Thu, 22 May 2003 15:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMPNKJ026513 for ; Thu, 22 May 2003 15:25:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMPNDD081007 for ; Thu, 22 May 2003 15:25:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMPNQg082536 for ; Thu, 22 May 2003 15:25:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MMPNdD082535; Thu, 22 May 2003 15:25:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305222225.h4MMPNdD082535@xorpc.icir.org> Date: Thu, 22 May 2003 15:25:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ .cvsignore Makefile.am Makefile.in finder.cc finder.hh finder_client.cc finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh xorp/libxipc/ test_finder_events.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/22 15:25:23 Modified files: xorp/libxipc/: .cvsignore Makefile.am Makefile.in finder.cc finder.hh finder_client.cc finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh Added files: xorp/libxipc/: test_finder_events.cc Log message: Add Finder event registration and notification code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 15:31:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 15:32:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMW3wZ035352 for ; Thu, 22 May 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMW2DD081070 for ; Thu, 22 May 2003 15:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMW2KJ026645; Thu, 22 May 2003 15:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMViKJ026634 for ; Thu, 22 May 2003 15:31:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMVhDD081068 for ; Thu, 22 May 2003 15:31:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMVhQg082606 for ; Thu, 22 May 2003 15:31:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MMVhKf082605; Thu, 22 May 2003 15:31:43 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305222231.h4MMVhKf082605@xorpc.icir.org> Date: Thu, 22 May 2003 15:31:43 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/05/22 15:31:43 Modified files: xorp/libxorp/: xlog.h Log message: XLOG_UNFINISHED shouldn't take any parameters _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 15:57:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 15:58:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMw3wZ038473 for ; Thu, 22 May 2003 15:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMw2DD081342 for ; Thu, 22 May 2003 15:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMw2KJ027068; Thu, 22 May 2003 15:58:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MMv8KJ027049 for ; Thu, 22 May 2003 15:57:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMv8DD081338 for ; Thu, 22 May 2003 15:57:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MMv8Qg082911 for ; Thu, 22 May 2003 15:57:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MMv8PQ082910; Thu, 22 May 2003 15:57:08 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305222257.h4MMv8PQ082910@xorpc.icir.org> Date: Thu, 22 May 2003 15:57:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/05/22 15:57:08 Modified files: xorp/libxorp/: xlog.h Log message: Fixes to prevent compiler warnings when XLOG_UNREACHABLE() is used at the end of a non-void function. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 16:04:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 16:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MN53wZ039362 for ; Thu, 22 May 2003 16:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MN53DD081418 for ; Thu, 22 May 2003 16:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MN52KJ027187; Thu, 22 May 2003 16:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MN4VKJ027178 for ; Thu, 22 May 2003 16:04:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MN4UDD081411 for ; Thu, 22 May 2003 16:04:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MN4UQg083031 for ; Thu, 22 May 2003 16:04:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MN4UFd083030; Thu, 22 May 2003 16:04:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305222304.h4MN4UFd083030@xorpc.icir.org> Date: Thu, 22 May 2003 16:04:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/22 16:04:30 Modified files: xorp/libxorp/: xlog.h Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 16:18:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 16:19:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNJ3wZ041447 for ; Thu, 22 May 2003 16:19:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNJ3DD081575 for ; Thu, 22 May 2003 16:19:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MNJ2KJ027434; Thu, 22 May 2003 16:19:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MNIcKJ027423 for ; Thu, 22 May 2003 16:18:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNIcDD081567 for ; Thu, 22 May 2003 16:18:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNIcQg083395 for ; Thu, 22 May 2003 16:18:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MNIcBo083394; Thu, 22 May 2003 16:18:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305222318.h4MNIcBo083394@xorpc.icir.org> Date: Thu, 22 May 2003 16:18:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: pavlin@xorpc.icir.org. 03/05/22 16:18:38 Added files: xorp/mibs/tests/: .cvsignore Log message: Add .cvsignore and hide the auto-generated test_bgpmib.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 16:19:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 16:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNK2wZ041586 for ; Thu, 22 May 2003 16:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNK2DD081598 for ; Thu, 22 May 2003 16:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MNK2KJ027462; Thu, 22 May 2003 16:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4MNJlKJ027456 for ; Thu, 22 May 2003 16:19:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNJlDD081589 for ; Thu, 22 May 2003 16:19:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4MNJlQg083443 for ; Thu, 22 May 2003 16:19:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4MNJlIv083442; Thu, 22 May 2003 16:19:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305222319.h4MNJlIv083442@xorpc.icir.org> Date: Thu, 22 May 2003 16:19:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/22 16:19:47 Modified files: xorp/rib/: .cvsignore Log message: Add the following auto-generated files to .cvsignore test_rib_direct.sh test_rib_xrls.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:49 2005 Subject: No subject Thu May 22 17:02:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 17:03:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N035wZ047795 for ; Thu, 22 May 2003 17:03:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N034DD081983 for ; Thu, 22 May 2003 17:03:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N033KJ028087; Thu, 22 May 2003 17:03:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N029KJ028074 for ; Thu, 22 May 2003 17:02:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N029DD081975 for ; Thu, 22 May 2003 17:02:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N029Qg083861 for ; Thu, 22 May 2003 17:02:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N029I2083860; Thu, 22 May 2003 17:02:09 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305230002.h4N029I2083860@xorpc.icir.org> Date: Thu, 22 May 2003 17:02:09 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in xorp/bgp/ attribute_manager.cc bgp_trie.cc dummy_next_hop_resolver.cc dump_iterators.cc next_hop_resolver.cc open_packet.cc packet_coding_test.cc parameter.cc path_attribute.cc ...peer_handler.cc ...rib_ipc_handler.cc ...route_table_cache.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_fanout.cc ...route_table_nhlookup.cc ...route_table_ribin.cc ...route_table_ribout.cc ...subnet_route.cc xorp/rib/ rt_tab_export.cc rt_tab_extint.cc xorp/rtrmgr/ cli.cc conf_tree.cc conf_tree_node.cc module_command.cc module_manager.cc randomness.cc task.cc template_commands.cc template_tree.cc xorp_client.cc xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/22 17:02:09 Modified files: ./: Makefile.in xorp/bgp/: attribute_manager.cc bgp_trie.cc dummy_next_hop_resolver.cc dump_iterators.cc next_hop_resolver.cc open_packet.cc packet_coding_test.cc parameter.cc path_attribute.cc peer_handler.cc rib_ipc_handler.cc route_table_cache.cc route_table_decision.cc route_table_deletion.cc route_table_fanout.cc route_table_nhlookup.cc route_table_ribin.cc route_table_ribout.cc subnet_route.cc xorp/rib/: rt_tab_export.cc rt_tab_extint.cc xorp/rtrmgr/: cli.cc conf_tree.cc conf_tree_node.cc module_command.cc module_manager.cc randomness.cc task.cc template_commands.cc template_tree.cc xorp_client.cc xrl_rtrmgr_interface.cc Log message: Replace calls to abort() with more self-explanatory self-destruction. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 17:24:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 17:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0P3wZ067911 for ; Thu, 22 May 2003 17:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0P3DD082172 for ; Thu, 22 May 2003 17:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N0P2KJ028494; Thu, 22 May 2003 17:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N0OiKJ028488 for ; Thu, 22 May 2003 17:24:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0OiDD082167 for ; Thu, 22 May 2003 17:24:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0OiQg084163 for ; Thu, 22 May 2003 17:24:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N0OimY084162; Thu, 22 May 2003 17:24:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230024.h4N0OimY084162@xorpc.icir.org> Date: Thu, 22 May 2003 17:24:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/mfea/ test_mfea.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/22 17:24:44 Modified files: xorp/cli/: test_cli.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/mfea/: test_mfea.cc xorp/pim/: test_pim.cc Log message: * Modify the command-line argument to accept (optionally) finder port in the format "hostname/port" : [-f [/]] * Add the necessary nits to decode the hostname and port, and to assign them conditionally depending whether we start the Finder within the same process, or as a separate process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 17:38:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 17:39:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0d3wZ076411 for ; Thu, 22 May 2003 17:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0d3DD082308 for ; Thu, 22 May 2003 17:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N0d2KJ028654; Thu, 22 May 2003 17:39:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N0cbKJ028644 for ; Thu, 22 May 2003 17:38:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0caDD082301 for ; Thu, 22 May 2003 17:38:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N0caQg084309 for ; Thu, 22 May 2003 17:38:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N0caa7084308; Thu, 22 May 2003 17:38:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230038.h4N0caa7084308@xorpc.icir.org> Date: Thu, 22 May 2003 17:38:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/22 17:38:36 Modified files: xorp/fea/: fea.cc Log message: Modify the command-line argument to accept (optionally) finder port in the format "hostname/port" : [-f [/]] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 18:02:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 18:03:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N133wZ084293 for ; Thu, 22 May 2003 18:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N133DD082504 for ; Thu, 22 May 2003 18:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N132KJ028992; Thu, 22 May 2003 18:03:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N12gKJ028984 for ; Thu, 22 May 2003 18:02:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N12gDD082501 for ; Thu, 22 May 2003 18:02:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N12fQg093104 for ; Thu, 22 May 2003 18:02:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N12fJK093103; Thu, 22 May 2003 18:02:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230102.h4N12fJK093103@xorpc.icir.org> Date: Thu, 22 May 2003 18:02:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/22 18:02:41 Modified files: xorp/rib/: Makefile.am Log message: Update EXTRA_DIST files: replace foo.sh with foo.sh.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 18:05:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 18:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N163wZ085244 for ; Thu, 22 May 2003 18:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N163DD082540 for ; Thu, 22 May 2003 18:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N162KJ029034; Thu, 22 May 2003 18:06:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N159KJ029023 for ; Thu, 22 May 2003 18:05:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N159DD082535 for ; Thu, 22 May 2003 18:05:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N159Qg094024 for ; Thu, 22 May 2003 18:05:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N159iL094008; Thu, 22 May 2003 18:05:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230105.h4N159iL094008@xorpc.icir.org> Date: Thu, 22 May 2003 18:05:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/cli/libtecla/ configure xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mfea/ Makefile.in xorp/mibs/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim! / Makefile.! in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/05/22 18:05:09 Modified files: ./: config.h.in configure xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/cli/libtecla/: configure xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mfea/: Makefile.in xorp/mibs/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Regenerate "configure" and Makefile.in files with the newer autoconf/automake versions: autoconf-2.53 automake-1.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 18:11:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 18:12:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1C3wZ086763 for ; Thu, 22 May 2003 18:12:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1C2DD082585 for ; Thu, 22 May 2003 18:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1C2KJ029174; Thu, 22 May 2003 18:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1BQKJ029165 for ; Thu, 22 May 2003 18:11:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1BPDD082581 for ; Thu, 22 May 2003 18:11:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1BPQg095213 for ; Thu, 22 May 2003 18:11:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N1BPdE095212; Thu, 22 May 2003 18:11:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230111.h4N1BPdE095212@xorpc.icir.org> Date: Thu, 22 May 2003 18:11:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/22 18:11:25 Modified files: ./: .cvsignore Log message: Add stamp-h1 to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 18:13:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 18:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1E3wZ087234 for ; Thu, 22 May 2003 18:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1E3DD082598 for ; Thu, 22 May 2003 18:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1E2KJ029215; Thu, 22 May 2003 18:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1DPKJ029194 for ; Thu, 22 May 2003 18:13:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1DPDD082593 for ; Thu, 22 May 2003 18:13:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1DPQg095554 for ; Thu, 22 May 2003 18:13:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N1DPAF095553; Thu, 22 May 2003 18:13:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230113.h4N1DPAF095553@xorpc.icir.org> Date: Thu, 22 May 2003 18:13:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ .cvsignore xorp/cli/libtecla/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/05/22 18:13:25 Modified files: ./: .cvsignore xorp/cli/libtecla/: .cvsignore Log message: Add autom4te.cache (a subdirectory generated by the new automake) to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 18:24:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 18:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1P3wZ089051 for ; Thu, 22 May 2003 18:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1P3DD082727 for ; Thu, 22 May 2003 18:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1P2KJ029433; Thu, 22 May 2003 18:25:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N1OLKJ029402 for ; Thu, 22 May 2003 18:24:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1OLDD082718 for ; Thu, 22 May 2003 18:24:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N1OLQg097178 for ; Thu, 22 May 2003 18:24:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N1OKGp097177; Thu, 22 May 2003 18:24:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230124.h4N1OKGp097177@xorpc.icir.org> Date: Thu, 22 May 2003 18:24:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/22 18:24:20 Modified files: ./: bootstrap Log message: Remove autom4te.cache directories at the end of the "bootstrap" script. Those directories are useful only if debugging autoconf/automake problems, so only if someone is debugging such problems, he should know not to remove those directories. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 21:10:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 21:11:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N4B3wZ001587 for ; Thu, 22 May 2003 21:11:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N4B2DD083828 for ; Thu, 22 May 2003 21:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N4B2KJ001375; Thu, 22 May 2003 21:11:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N4A5KJ001346 for ; Thu, 22 May 2003 21:10:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N4A5DD083809 for ; Thu, 22 May 2003 21:10:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N4A5Qg048971 for ; Thu, 22 May 2003 21:10:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N4A5Ed048970; Thu, 22 May 2003 21:10:05 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305230410.h4N4A5Ed048970@xorpc.icir.org> Date: Thu, 22 May 2003 21:10:05 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/mibs/ Makefile.am Makefile.in xorp/mibs/tests/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/22 21:10:05 Modified files: ./: Makefile.in configure configure.in xorp/mibs/: Makefile.am Makefile.in Added files: xorp/mibs/tests/: Makefile.am Makefile.in Log message: Added additional tests for Net-SNMP configuration Added SNMP test to gmake check _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 22:48:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 22:49:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5n3wZ008923 for ; Thu, 22 May 2003 22:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5n2DD084453 for ; Thu, 22 May 2003 22:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N5n2KJ002654; Thu, 22 May 2003 22:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N5mOKJ002647 for ; Thu, 22 May 2003 22:48:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5mODD084449 for ; Thu, 22 May 2003 22:48:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5mOQg059766 for ; Thu, 22 May 2003 22:48:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N5mOFn059765; Thu, 22 May 2003 22:48:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230548.h4N5mOFn059765@xorpc.icir.org> Date: Thu, 22 May 2003 22:48:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/22 22:48:24 Modified files: xorp/rib/: vifmanager.cc Log message: Bugfix: Fire the requests for vif flags and addresses inside vif_created(), because vif_created() may be called when a vif is updated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:50 2005 Subject: No subject Thu May 22 22:49:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 May 2003 22:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5o2wZ009005 for ; Thu, 22 May 2003 22:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5o2DD084464 for ; Thu, 22 May 2003 22:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N5o2KJ002681; Thu, 22 May 2003 22:50:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N5nMKJ002670 for ; Thu, 22 May 2003 22:49:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5nMDD084459 for ; Thu, 22 May 2003 22:49:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N5nLQg059819 for ; Thu, 22 May 2003 22:49:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N5nLWB059818; Thu, 22 May 2003 22:49:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230549.h4N5nLWB059818@xorpc.icir.org> Date: Thu, 22 May 2003 22:49:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/22 22:49:21 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Bugfix: Fire the requests for vif flags and addresses inside vif_created(), because vif_created() may be called when a vif is updated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 2:50:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 02:51:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9p2wZ027224 for ; Fri, 23 May 2003 02:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9p2DD086472 for ; Fri, 23 May 2003 02:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N9p1KJ006594; Fri, 23 May 2003 02:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N9olKJ006580 for ; Fri, 23 May 2003 02:50:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9olDD086470 for ; Fri, 23 May 2003 02:50:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9olQg063143 for ; Fri, 23 May 2003 02:50:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N9olC0063142; Fri, 23 May 2003 02:50:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230950.h4N9olC0063142@xorpc.icir.org> Date: Fri, 23 May 2003 2:50:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 02:50:47 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Add missing debug_msg(), and modify existing ones(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 2:51:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 02:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9q2wZ027315 for ; Fri, 23 May 2003 02:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9q2DD086480 for ; Fri, 23 May 2003 02:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N9q2KJ006626; Fri, 23 May 2003 02:52:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4N9pbKJ006615 for ; Fri, 23 May 2003 02:51:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9pbDD086478 for ; Fri, 23 May 2003 02:51:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4N9pbQg063197 for ; Fri, 23 May 2003 02:51:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4N9pbUj063196; Fri, 23 May 2003 02:51:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305230951.h4N9pbUj063196@xorpc.icir.org> Date: Fri, 23 May 2003 2:51:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/23 02:51:37 Modified files: xorp/rib/: vifmanager.cc Log message: Add missing debug_msg(), and modify existing ones. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 6:58:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 06:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDx3wZ045940 for ; Fri, 23 May 2003 06:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDx3DD088193 for ; Fri, 23 May 2003 06:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NDx2KJ011593; Fri, 23 May 2003 06:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NDwTKJ011585 for ; Fri, 23 May 2003 06:58:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDwTDD088191 for ; Fri, 23 May 2003 06:58:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDwTQg067579 for ; Fri, 23 May 2003 06:58:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NDwTRo067578; Fri, 23 May 2003 06:58:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231358.h4NDwTRo067578@xorpc.icir.org> Date: Fri, 23 May 2003 6:58:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 06:58:29 Modified files: xorp/fea/: iftree.cc Log message: When erasing an element from a container inside a loop, use a temporary iterator to point to the entry to delete, otherwise we may risk incrementing an iterator that was just deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 6:59:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 07:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NE02wZ046025 for ; Fri, 23 May 2003 07:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NE02DD088209 for ; Fri, 23 May 2003 07:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NE01KJ011635; Fri, 23 May 2003 07:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NDxAKJ011604 for ; Fri, 23 May 2003 06:59:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDxADD088199 for ; Fri, 23 May 2003 06:59:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NDxAQg067615 for ; Fri, 23 May 2003 06:59:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NDxA7b067614; Fri, 23 May 2003 06:59:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231359.h4NDxA7b067614@xorpc.icir.org> Date: Fri, 23 May 2003 6:59:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 06:59:10 Modified files: xorp/fea/: iftree.hh Log message: * If we call Foo::set_foo_flags(), then mark the entry as CHANGED * Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 9:52:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 09:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NGr3wZ060464 for ; Fri, 23 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NGr3DD091270 for ; Fri, 23 May 2003 09:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NGr2KJ014114; Fri, 23 May 2003 09:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NGq5KJ014095 for ; Fri, 23 May 2003 09:52:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NGq5DD091262 for ; Fri, 23 May 2003 09:52:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NGq5Qg076546 for ; Fri, 23 May 2003 09:52:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NGq59x076545; Fri, 23 May 2003 09:52:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231652.h4NGq59x076545@xorpc.icir.org> Date: Fri, 23 May 2003 9:52:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 09:52:05 Modified files: xorp/fea/: iftree.cc Log message: Reverse-back my previous pseudo-fix of iterator-related erasing. The following code is perfectly fine, because first the iterator is incremented, but the increment returns a copy of its previous value, and the erase is performed on the copy: container.erase(iter++) (Thanks to Orion for the explanation :) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 12:08:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 12:09:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJ93wZ073704 for ; Fri, 23 May 2003 12:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJ93DD092656 for ; Fri, 23 May 2003 12:09:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJ92KJ016634; Fri, 23 May 2003 12:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJ8TKJ016616 for ; Fri, 23 May 2003 12:08:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJ8TDD092654 for ; Fri, 23 May 2003 12:08:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJ8TQg099882 for ; Fri, 23 May 2003 12:08:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NJ8T0u099881; Fri, 23 May 2003 12:08:29 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305231908.h4NJ8T0u099881@xorpc.icir.org> Date: Fri, 23 May 2003 12:08:29 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/05/23 12:08:29 Modified files: ./: configure configure.in Log message: Orion convinced me that failing to launch snmpd wasn't serious enough to exit configure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 12:48:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 12:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJn2wZ078606 for ; Fri, 23 May 2003 12:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJn2DD093052 for ; Fri, 23 May 2003 12:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJn1KJ017345; Fri, 23 May 2003 12:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJmMKJ017336 for ; Fri, 23 May 2003 12:48:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJmLDD093050 for ; Fri, 23 May 2003 12:48:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJmLQg010828 for ; Fri, 23 May 2003 12:48:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NJmLQD010827; Fri, 23 May 2003 12:48:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231948.h4NJmLQD010827@xorpc.icir.org> Date: Fri, 23 May 2003 12:48:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 12:48:21 Modified files: xorp/fea/: ifconfig_get_ioctl.cc Log message: Add missing #include _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 12:49:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 12:50:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJo3wZ078784 for ; Fri, 23 May 2003 12:50:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJo3DD093067 for ; Fri, 23 May 2003 12:50:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJo2KJ017377; Fri, 23 May 2003 12:50:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJnSKJ017362 for ; Fri, 23 May 2003 12:49:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJnSDD093060 for ; Fri, 23 May 2003 12:49:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJnSQg011105 for ; Fri, 23 May 2003 12:49:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NJnSIW011104; Fri, 23 May 2003 12:49:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231949.h4NJnSIW011104@xorpc.icir.org> Date: Fri, 23 May 2003 12:49:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 12:49:28 Modified files: xorp/fea/: iftree.cc Log message: Add a more detailed description of IfTree::align_with() behavior _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 12:52:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 12:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJr3wZ079154 for ; Fri, 23 May 2003 12:53:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJr2DD093101 for ; Fri, 23 May 2003 12:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJr2KJ017425; Fri, 23 May 2003 12:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NJqYKJ017417 for ; Fri, 23 May 2003 12:52:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJqYDD093098 for ; Fri, 23 May 2003 12:52:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NJqYQg011208 for ; Fri, 23 May 2003 12:52:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NJqYGL011207; Fri, 23 May 2003 12:52:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305231952.h4NJqYGL011207@xorpc.icir.org> Date: Fri, 23 May 2003 12:52:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 12:52:34 Modified files: xorp/fea/: ifconfig.hh ifconfig.cc Log message: * Add missing #include * When calling IfConfig::pull_config(), pull the interface configuration from the kernel into a separate tree IfConfig::_pulled_config instead of IfConfig::_live_config The second one is used for writing into when interface info pops-up from the kernel. This separation might not be the right one, but seems a bit of an improvement over the current solution which doesn't work properly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 15:17:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 15:18:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMI3wZ096702 for ; Fri, 23 May 2003 15:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMI3DD094238 for ; Fri, 23 May 2003 15:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NMI2KJ020126; Fri, 23 May 2003 15:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NMHnKJ020117 for ; Fri, 23 May 2003 15:17:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMHnDD094236 for ; Fri, 23 May 2003 15:17:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMHnQg013214 for ; Fri, 23 May 2003 15:17:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NMHn88013213; Fri, 23 May 2003 15:17:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232217.h4NMHn88013213@xorpc.icir.org> Date: Fri, 23 May 2003 15:17:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 15:17:49 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Various IfTree::align_with() related nits: * Implement method is_same_state() for IfTreeInterface, IfTreeVif, IfTreeAddr4 and IfTreeAddr6. The method returns true if the internal state that is copied by copy_state() is same. * Add a second argument "bool do_finalize_state" to IfTree::align_with() If this argument is true, then call IfTree::finalize_state() at the end. * Change the internals of IfTree::align_with() such that copy_state() is called only for those pair of elements for which is_same_state() returns false. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:51 2005 Subject: No subject Fri May 23 15:24:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 15:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMP3wZ097537 for ; Fri, 23 May 2003 15:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMP2DD094306 for ; Fri, 23 May 2003 15:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NMP2KJ020224; Fri, 23 May 2003 15:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NMOqKJ020215 for ; Fri, 23 May 2003 15:24:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMOpDD094301 for ; Fri, 23 May 2003 15:24:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NMOpQg013327 for ; Fri, 23 May 2003 15:24:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NMOpQC013326; Fri, 23 May 2003 15:24:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232224.h4NMOpQC013326@xorpc.icir.org> Date: Fri, 23 May 2003 15:24:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 15:24:51 Modified files: xorp/fea/: xrl_ifmanager.cc Log message: Apply some fixes to XrlInterfaceManager::commit_transaction() such that whenever the configuration transaction is commited, we carefully copy the configuration state and immediately inform the interested parties. Previously, the updates report was sent-out when the commit popped-up on the listening socket. Now we try to propagate the updates in two steps: - the first step is based on the current transaction - the second step is based on what really succeeded from the current transaction. The whole problem is rather complicated, so the current solution needs additional tweaking to improve it (e.g., right now there are few extra duplicated updates when a new vif and an address are added, though they are probably harmless). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:24:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNP3wZ004859 for ; Fri, 23 May 2003 16:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNP3DD094740 for ; Fri, 23 May 2003 16:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNP2KJ021159; Fri, 23 May 2003 16:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNO9KJ021136 for ; Fri, 23 May 2003 16:24:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNO9DD094733 for ; Fri, 23 May 2003 16:24:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNO9Qg014794 for ; Fri, 23 May 2003 16:24:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NNO9fl014793; Fri, 23 May 2003 16:24:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232324.h4NNO9fl014793@xorpc.icir.org> Date: Fri, 23 May 2003 16:24:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/23 16:24:08 Modified files: xorp/rib/: vifmanager.cc Log message: Nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:26:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNR3wZ005119 for ; Fri, 23 May 2003 16:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNR3DD094767 for ; Fri, 23 May 2003 16:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNR2KJ021216; Fri, 23 May 2003 16:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNQaKJ021208 for ; Fri, 23 May 2003 16:26:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNQZDD094765 for ; Fri, 23 May 2003 16:26:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNQZQg014873 for ; Fri, 23 May 2003 16:26:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NNQZur014872; Fri, 23 May 2003 16:26:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232326.h4NNQZur014872@xorpc.icir.org> Date: Fri, 23 May 2003 16:26:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/23 16:26:35 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Add two new XRLs: register_all_interfaces_client unregister_all_interfaces_client Those are similar to register_client and unregister_client, except that the registree is interested in monitoring all interfaces (i.e., not only those that are configured via XRLs). The original register_client and unregister_client XRLs would be used for registering in monitoring information about only those interfaces that were configured via XRLs (i.e., through the rtrmgr). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:27:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:28:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNS4wZ005260 for ; Fri, 23 May 2003 16:28:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNS4DD094777 for ; Fri, 23 May 2003 16:28:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNS3KJ021243; Fri, 23 May 2003 16:28:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNR4KJ021225 for ; Fri, 23 May 2003 16:27:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNR3DD094770 for ; Fri, 23 May 2003 16:27:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNR3Qg014924 for ; Fri, 23 May 2003 16:27:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NNR30Q014923; Fri, 23 May 2003 16:27:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232327.h4NNR30Q014923@xorpc.icir.org> Date: Fri, 23 May 2003 16:27:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 16:27:03 Modified files: xorp/fea/: ifconfig_get.hh Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:35:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:36:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNa3wZ006215 for ; Fri, 23 May 2003 16:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNa2DD094859 for ; Fri, 23 May 2003 16:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNa2KJ021364; Fri, 23 May 2003 16:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNZ2KJ021349 for ; Fri, 23 May 2003 16:35:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNZ2DD094828 for ; Fri, 23 May 2003 16:35:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNZ1Qg015021 for ; Fri, 23 May 2003 16:35:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NNZ1xQ015020; Fri, 23 May 2003 16:35:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232335.h4NNZ1xQ015020@xorpc.icir.org> Date: Fri, 23 May 2003 16:35:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.cc ifconfig.hh ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_sysctl.cc ifconfig_set_dummy.cc xrl_ifmanager.cc xrl_ifupdate.cc xrl_ifupdate.hh ...xrl_mfea_vif_manager.cc ...xrl_mfea_vif_manager.hh ...xrl_target.cc ...xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 16:35:01 Modified files: xorp/fea/: ifconfig.cc ifconfig.hh ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_sysctl.cc ifconfig_set_dummy.cc xrl_ifmanager.cc xrl_ifupdate.cc xrl_ifupdate.hh xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh xrl_target.cc xrl_target.hh Log message: * Implement the new XRLs and the necessary hooks for registering a client that monitors all interfaces: register_all_interfaces_client unregister_all_interfaces_client * Now xrl_mfea_vif_manager uses register_all_interfaces_client and unregister_all_interfaces_client to monitor all interfaces instead. * Temporary modify IfConfigGetGetifaddrs::receive_data() to use parse_buffer_rtm() to parse only the interface-related data received from a routing socket instead of pulling all interfaces and blasting them to all clients (even in the case when we installed a routing entry to the kernel). Soon this will be replaced with a cleaner solution. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:51:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:52:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNq3wZ008121 for ; Fri, 23 May 2003 16:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNq3DD094979 for ; Fri, 23 May 2003 16:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNq2KJ021657; Fri, 23 May 2003 16:52:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNpMKJ021649 for ; Fri, 23 May 2003 16:51:22 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNpMDD094974; Fri, 23 May 2003 16:51:22 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNpMln001669; Fri, 23 May 2003 16:51:22 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305232351.h4NNpMln001669@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh In-Reply-To: Your message of "Fri, 23 May 2003 16:26:35." <200305232326.h4NNQZur014872@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 23 May 2003 16:51:21 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | Add two new XRLs: | register_all_interfaces_client | unregister_all_interfaces_client | | Those are similar to register_client and unregister_client, except | that the registree is interested in monitoring all interfaces | (i.e., not only those that are configured via XRLs). | | The original register_client and unregister_client XRLs | would be used for registering in monitoring information about | only those interfaces that were configured via XRLs (i.e., | through the rtrmgr). Err, can I ask why these are needed ? Isn't the rtrmgr is supposed to be the word on configuration state ? Isn't this allowing processes to sign up for info about things they are not supposed to know about? - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:55:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:56:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNu3wZ008624 for ; Fri, 23 May 2003 16:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNu3DD095027 for ; Fri, 23 May 2003 16:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNu2KJ021758; Fri, 23 May 2003 16:56:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNt6KJ021743 for ; Fri, 23 May 2003 16:55:06 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNt6DD095011; Fri, 23 May 2003 16:55:06 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNt6c1023478; Fri, 23 May 2003 16:55:06 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200305232355.h4NNt6c1023478@possum.icir.org> To: Orion Hodson cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh In-Reply-To: Message from Orion Hodson of "Fri, 23 May 2003 16:51:21 PDT." <200305232351.h4NNpMln001669@puma.icir.org> Date: Fri, 23 May 2003 16:55:06 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > /-- Pavlin Radoslavov wrote: > | Add two new XRLs: > | register_all_interfaces_client > | unregister_all_interfaces_client > | > | Those are similar to register_client and unregister_client, except > | that the registree is interested in monitoring all interfaces > | (i.e., not only those that are configured via XRLs). > | > | The original register_client and unregister_client XRLs > | would be used for registering in monitoring information about > | only those interfaces that were configured via XRLs (i.e., > | through the rtrmgr). > > Err, can I ask why these are needed ? Isn't the rtrmgr is supposed to be the > word on configuration state ? Isn't this allowing processes to sign up for > info about things they are not supposed to know about? For two reasons primary: 1. For debugging purpose if you want to snoop on all interface information 2. Temporary for the purpose of MFEA. Currently it is configured via shell scripts, and if I don't have the above support it simply won't work. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 16:58:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 16:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNx2wZ008969 for ; Fri, 23 May 2003 16:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNx2DD095045 for ; Fri, 23 May 2003 16:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNx2KJ021833; Fri, 23 May 2003 16:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4NNwsKJ021824 for ; Fri, 23 May 2003 16:58:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNwsDD095043 for ; Fri, 23 May 2003 16:58:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4NNwsQg021102 for ; Fri, 23 May 2003 16:58:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4NNwsle021101; Fri, 23 May 2003 16:58:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305232358.h4NNwsle021101@xorpc.icir.org> Date: Fri, 23 May 2003 16:58:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/23 16:58:53 Modified files: xorp/fea/: fea_dummy.cc Log message: Syncronize the fea_dummy.cc implementation with fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Fri May 23 17:12:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 May 2003 17:13:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4O0D3wZ010644 for ; Fri, 23 May 2003 17:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4O0D3DD095176 for ; Fri, 23 May 2003 17:13:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4O0D2KJ022093; Fri, 23 May 2003 17:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4O0COKJ022081 for ; Fri, 23 May 2003 17:12:24 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4O0CODD095174; Fri, 23 May 2003 17:12:24 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4O0COln001910; Fri, 23 May 2003 17:12:24 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305240012.h4O0COln001910@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh In-Reply-To: Your message of "Fri, 23 May 2003 16:55:06 PDT." <200305232355.h4NNt6c1023478@possum.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 23 May 2003 17:12:24 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | > /-- Pavlin Radoslavov wrote: | > | Add two new XRLs: | > | register_all_interfaces_client | > | unregister_all_interfaces_client | > | | > | Those are similar to register_client and unregister_client, except | > | that the registree is interested in monitoring all interfaces | > | (i.e., not only those that are configured via XRLs). | > | | > | The original register_client and unregister_client XRLs | > | would be used for registering in monitoring information about | > | only those interfaces that were configured via XRLs (i.e., | > | through the rtrmgr). | > | > Err, can I ask why these are needed ? Isn't the rtrmgr is supposed to be t | he | > word on configuration state ? Isn't this allowing processes to sign up for | | > info about things they are not supposed to know about? | | For two reasons primary: | 1. For debugging purpose if you want to snoop on all interface information | 2. Temporary for the purpose of MFEA. Currently it is configured | via shell scripts, and if I don't have the above support it | simply won't work. It's a backdoor. If it's for the immediate transition phase I have no problem with it, but for the longer term... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Sat May 24 16:35:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 24 May 2003 16:36:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ONa3wZ045115 for ; Sat, 24 May 2003 16:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ONa2DD008595 for ; Sat, 24 May 2003 16:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ONa1KJ009384; Sat, 24 May 2003 16:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4ONZTKJ009374 for ; Sat, 24 May 2003 16:35:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ONZTDD008593 for ; Sat, 24 May 2003 16:35:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4ONZSQg024439 for ; Sat, 24 May 2003 16:35:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4ONZSBH024438; Sat, 24 May 2003 16:35:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305242335.h4ONZSBH024438@xorpc.icir.org> Date: Sat, 24 May 2003 16:35:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh xorp/rib/ rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_extint.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_register.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/05/24 16:35:28 Modified files: xorp/bgp/harness/: test2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh xorp/rib/: rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_extint.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_register.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Fix RIB bug caused by a misunderstanding as to what RibManager::new_vif did. Previously it didn't accept any addresses in the Vif it takes as a parameter; now it does. This fixes the tinderbox breakage; BGP tests now succeed. Replace calls to abort() in RIB mainline code. Add new RIB XRL make_errors_fatal to cause some input validation errors to cause the RIB to abort. Previously they'd always abort. Now they won't abort by default, but the old behaviour can be enabled using this XRL. Fix all the BGP tests to call make_errors_fatal, so that BGP/RIB interaction bugs don't go uncaught. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:52 2005 Subject: No subject Mon May 26 12:00:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 May 2003 12:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4QJ12Z1007509 for ; Mon, 26 May 2003 12:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4QJ12DD028183 for ; Mon, 26 May 2003 12:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4QJ11bb015556; Mon, 26 May 2003 12:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4QJ0vbb015549 for ; Mon, 26 May 2003 12:00:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4QJ0vDD028181 for ; Mon, 26 May 2003 12:00:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4QJ0vQg057145 for ; Mon, 26 May 2003 12:00:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4QJ0vmd057144; Mon, 26 May 2003 12:00:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305261900.h4QJ0vmd057144@xorpc.icir.org> Date: Mon, 26 May 2003 12:00:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ remote_xorp_copy.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/05/26 12:00:57 Modified files: other/tinderbox/scripts/: remote_xorp_copy.sh Log message: Distribute data files to tinderbox clients. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:53 2005 Subject: No subject Mon May 26 21:27:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 May 2003 21:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4S1Z1010291 for ; Mon, 26 May 2003 21:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4S1DD031998 for ; Mon, 26 May 2003 21:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4S1bb022067; Mon, 26 May 2003 21:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4RTbb022057 for ; Mon, 26 May 2003 21:27:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4RTDD031994 for ; Mon, 26 May 2003 21:27:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4RTQg007727 for ; Mon, 26 May 2003 21:27:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4R4RTNt007726; Mon, 26 May 2003 21:27:29 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305270427.h4R4RTNt007726@xorpc.icir.org> Date: Mon, 26 May 2003 21:27:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/05/26 21:27:29 Modified files: xorp/rib/: vifmanager.cc Log message: Fix corner case, where RIB would never enter ready state if the FEA had no configured interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:53 2005 Subject: No subject Mon May 26 21:33:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 May 2003 21:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4Y1Z1010344 for ; Mon, 26 May 2003 21:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4Y1DD032049; Mon, 26 May 2003 21:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4Y1bb022188; Mon, 26 May 2003 21:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4X7bb022153 for ; Mon, 26 May 2003 21:33:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4X7DD032043 for ; Mon, 26 May 2003 21:33:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4X7Qg007797 for ; Mon, 26 May 2003 21:33:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4R4X7Yk007796; Mon, 26 May 2003 21:33:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305270433.h4R4X7Yk007796@xorpc.icir.org> Date: Mon, 26 May 2003 21:33:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/26 21:33:07 Modified files: xorp/rtrmgr/: main_rtrmgr.cc task.cc Log message: Replace old FinderServer code with new code cribbed from new finder, because for some reason the old code didn't work properly anymore. rtrmgr can now start bgp, rib and fea, take a full routing table from the cisco, and be manually configured through xorpsh to take the BGP peering up and down. Yes, we've been here before, but given all the changes everywhere, it's good to be back here again. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:53 2005 Subject: No subject Mon May 26 21:33:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 May 2003 21:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4Y2Z1010363 for ; Mon, 26 May 2003 21:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4Y2DD032051; Mon, 26 May 2003 21:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4Y2bb022205; Mon, 26 May 2003 21:34:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4R4XWbb022163 for ; Mon, 26 May 2003 21:33:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4XWDD032045 for ; Mon, 26 May 2003 21:33:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4R4XWQg007834 for ; Mon, 26 May 2003 21:33:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4R4XW8x007833; Mon, 26 May 2003 21:33:32 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305270433.h4R4XW8x007833@xorpc.icir.org> Date: Mon, 26 May 2003 21:33:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/26 21:33:32 Added files: xorp/rtrmgr/: config.boot.xorp0 Log message: config file for xorp0 BGP testing _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:53 2005 Subject: No subject Tue May 27 9:46:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 09:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RGl1Z1016471 for ; Tue, 27 May 2003 09:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RGl1DD039063 for ; Tue, 27 May 2003 09:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RGl1bb003777; Tue, 27 May 2003 09:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RGk7bb003762 for ; Tue, 27 May 2003 09:46:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RGk7DD039059 for ; Tue, 27 May 2003 09:46:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RGk6Qg098771 for ; Tue, 27 May 2003 09:46:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4RGk6Gt098770; Tue, 27 May 2003 09:46:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305271646.h4RGk6Gt098770@xorpc.icir.org> Date: Tue, 27 May 2003 9:46:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ Makefile.rules Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: hodson@xorpc.icir.org. 03/05/27 09:46:06 Modified files: xorp/cli/libtecla/: Makefile.rules Log message: Force creation of $(OBJDIR) before attempting to copy files into it. This only ever appears to be an issue during parallel builds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:53 2005 Subject: No subject Tue May 27 10:47:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 10:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHm1Z1016827 for ; Tue, 27 May 2003 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHm0DD039638 for ; Tue, 27 May 2003 10:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RHm0bb005196; Tue, 27 May 2003 10:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RHlgbb005171 for ; Tue, 27 May 2003 10:47:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHlXDD039612 for ; Tue, 27 May 2003 10:47:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHlXQg099551 for ; Tue, 27 May 2003 10:47:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4RHlXY4099550; Tue, 27 May 2003 10:47:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305271747.h4RHlXY4099550@xorpc.icir.org> Date: Tue, 27 May 2003 10:47:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/27 10:47:33 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Unconditionally call update_state() when the list of interfaces is received. Then, update_state() will do the right thing even if the list of interfaces was empty. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Tue May 27 10:47:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 10:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHm2Z1016846 for ; Tue, 27 May 2003 10:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHm1DD039642 for ; Tue, 27 May 2003 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RHm1bb005207; Tue, 27 May 2003 10:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RHlgbb005165 for ; Tue, 27 May 2003 10:47:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHlFDD039610 for ; Tue, 27 May 2003 10:47:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHlFQg099539 for ; Tue, 27 May 2003 10:47:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4RHlFgt099538; Tue, 27 May 2003 10:47:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305271747.h4RHlFgt099538@xorpc.icir.org> Date: Tue, 27 May 2003 10:47:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/27 10:47:15 Modified files: xorp/rib/: vifmanager.cc Log message: Unconditionally call update_state() when the list of interfaces is received. Then, update_state() will do the right thing even if the list of interfaces was empty. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Tue May 27 10:59:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 11:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RI02Z1017156 for ; Tue, 27 May 2003 11:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RI02DD039789 for ; Tue, 27 May 2003 11:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RI01bb005492; Tue, 27 May 2003 11:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RHxebb005479 for ; Tue, 27 May 2003 10:59:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHxeDD039777 for ; Tue, 27 May 2003 10:59:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RHxdQg099838 for ; Tue, 27 May 2003 10:59:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4RHxdK5099837; Tue, 27 May 2003 10:59:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305271759.h4RHxdK5099837@xorpc.icir.org> Date: Tue, 27 May 2003 10:59:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_server.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/27 10:59:39 Modified files: xorp/libxipc/: finder_server.hh Log message: Add constructor taking arguments for Finder address and port. Add kdoc comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Tue May 27 15:10:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 15:11:37 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RMBbZ1011527 for ; Tue, 27 May 2003 15:11:37 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RMBbDD042092 for ; Tue, 27 May 2003 15:11:37 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RMB1bb010391; Tue, 27 May 2003 15:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4RMA2bb010357 for ; Tue, 27 May 2003 15:10:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RMA2DD042063 for ; Tue, 27 May 2003 15:10:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4RMA2Qg047755 for ; Tue, 27 May 2003 15:10:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4RMA2mp047754; Tue, 27 May 2003 15:10:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305272210.h4RMA2mp047754@xorpc.icir.org> Date: Tue, 27 May 2003 15:10:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/05/27 15:10:02 Modified files: xorp/devnotes/: WORKPLAN Log message: * Update WORKPLAN based on today's discussion * Push-back the release date for June 5, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Tue May 27 21:02:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 May 2003 21:37:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4S4b261000232 for ; Tue, 27 May 2003 21:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4S431DD044628 for ; Tue, 27 May 2003 21:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4S430bb013659; Tue, 27 May 2003 21:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4S42xbb013653 for ; Tue, 27 May 2003 21:02:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4S42xDD044626 for ; Tue, 27 May 2003 21:02:59 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4S42wQg095976 for ; Tue, 27 May 2003 21:02:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4S42wwI095975; Tue, 27 May 2003 21:02:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305280402.h4S42wwI095975@xorpc.icir.org> Date: Tue, 27 May 2003 21:02:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/27 21:02:58 Modified files: xorp/rtrmgr/: task.cc task.hh Log message: First pass at more robust error handling code in the rtrmgr TaskManager. Not yet properly tested, but at least we won't abort() on all errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 10:37:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 10:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHc161021127 for ; Wed, 28 May 2003 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHc1DD053269 for ; Wed, 28 May 2003 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SHc1bb026211; Wed, 28 May 2003 10:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SHbwbb026205 for ; Wed, 28 May 2003 10:37:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHbwDD053267 for ; Wed, 28 May 2003 10:37:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHbwQg000387 for ; Wed, 28 May 2003 10:37:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SHbvgQ000386; Wed, 28 May 2003 10:37:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305281737.h4SHbvgQ000386@xorpc.icir.org> Date: Wed, 28 May 2003 10:37:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/28 10:37:57 Modified files: xorp/rtrmgr/: module_command.cc Log message: Remove error handling from ModuleCommand - we now handle errors in the TaskManager rather than in the command callback, because there isn't enough state in the command callback to do anything useful. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 10:40:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 10:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHf161021538 for ; Wed, 28 May 2003 10:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHf0DD053315 for ; Wed, 28 May 2003 10:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SHf0bb026316; Wed, 28 May 2003 10:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SHeRbb026295 for ; Wed, 28 May 2003 10:40:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHeQDD053313 for ; Wed, 28 May 2003 10:40:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SHeQQg000523 for ; Wed, 28 May 2003 10:40:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SHeQZl000522; Wed, 28 May 2003 10:40:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305281740.h4SHeQZl000522@xorpc.icir.org> Date: Wed, 28 May 2003 10:40:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/28 10:40:26 Modified files: xorp/rtrmgr/: module_command.cc Log message: oops _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 11:47:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 11:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SIm161029763 for ; Wed, 28 May 2003 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SIm1DD053870 for ; Wed, 28 May 2003 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SIm0bb027945; Wed, 28 May 2003 11:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SIlMbb027919 for ; Wed, 28 May 2003 11:47:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SIlLDD053868 for ; Wed, 28 May 2003 11:47:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SIlLQg001323 for ; Wed, 28 May 2003 11:47:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SIlL4b001322; Wed, 28 May 2003 11:47:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305281847.h4SIlL4b001322@xorpc.icir.org> Date: Wed, 28 May 2003 11:47:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/utils/ .cvsignore Makefile.in xorp/utils/ pathconf.sh.in source_pathconf.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/05/28 11:47:21 Modified files: ./: Makefile.in configure configure.in xorp/utils/: .cvsignore Makefile.in Added files: xorp/utils/: pathconf.sh.in source_pathconf.sh Log message: o Add utils/pathconf.sh.in that generates shell script with source and build directory variables (utils/pathconf.sh). o Add utils/source_pathconf.sh which serves as an example of how to find the generated pathconf.sh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 12:02:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 12:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SJ3161031647 for ; Wed, 28 May 2003 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SJ31DD053997 for ; Wed, 28 May 2003 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SJ31bb028300; Wed, 28 May 2003 12:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SJ2Vbb028290 for ; Wed, 28 May 2003 12:02:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SJ2VDD053995 for ; Wed, 28 May 2003 12:02:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SJ2VQg003185 for ; Wed, 28 May 2003 12:02:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SJ2VET003184; Wed, 28 May 2003 12:02:31 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305281902.h4SJ2VET003184@xorpc.icir.org> Date: Wed, 28 May 2003 12:02:31 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/28 12:02:31 Modified files: xorp/rtrmgr/: main_rtrmgr.cc master_conf_tree.cc Log message: Errors during startup now are properly reported, and all processes started before the error are shut down reasonably cleanly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 14:47:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 14:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLm161051987 for ; Wed, 28 May 2003 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLm1DD055339 for ; Wed, 28 May 2003 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SLm0bb001737; Wed, 28 May 2003 14:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SLljbb001731 for ; Wed, 28 May 2003 14:47:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLljDD055337 for ; Wed, 28 May 2003 14:47:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLljQg049083 for ; Wed, 28 May 2003 14:47:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SLlj4k049082; Wed, 28 May 2003 14:47:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305282147.h4SLlj4k049082@xorpc.icir.org> Date: Wed, 28 May 2003 14:47:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/05/28 14:47:45 Modified files: xorp/libproto/: proto_node.hh Log message: Add new methods to ProtoNode: node_status() and set_node_status() to get/set the node status using the ProcessStatus values (libxorp/status_codes.h) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:54 2005 Subject: No subject Wed May 28 14:50:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 14:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLp161052407 for ; Wed, 28 May 2003 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLp1DD055385; Wed, 28 May 2003 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SLp1bb001811; Wed, 28 May 2003 14:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4SLotbb001803 for ; Wed, 28 May 2003 14:50:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLotDD055382 for ; Wed, 28 May 2003 14:50:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4SLotQg049262 for ; Wed, 28 May 2003 14:50:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4SLotSJ049261; Wed, 28 May 2003 14:50:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305282150.h4SLotSJ049261@xorpc.icir.org> Date: Wed, 28 May 2003 14:50:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.hh ...fticonfig_entry_observer_dummy.cc ...fticonfig_entry_observer_rtsock.cc ...fticonfig_table_get.hh ...fticonfig_table_get_dummy.cc ...fticonfig_table_get_netlink.cc ...fticonfig_table_get_sysctl.cc ...fticonfig_table_observer.hh ...fticonfig_table_observer_dummy.cc ...fticonfig_table_observer_rtsock.cc ...ifconfig_get.hh ...ifconfig_get_dummy.cc ...ifconfig_get_getifaddrs.cc ...ifconfig_get_ioctl.cc ...ifconfig_get_sysctl.cc ...ifconfig_observer.hh ...ifconfig_observer_dummy.cc ...ifconfig_observer_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/28 14:50:55 Modified files: xorp/fea/: fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_rtsock.cc fticonfig_table_get.hh fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_rtsock.cc ifconfig_get.hh ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_sysctl.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_rtsock.cc Log message: Move the FooGet::receive_data() methods to FooObserver::receive_data() The reason is because the received data from the underlying system is method-specific, and its format is defined by the particular observer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Wed May 28 17:01:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 17:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T02261074423 for ; Wed, 28 May 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T021DD056526 for ; Wed, 28 May 2003 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T021bb004233; Wed, 28 May 2003 17:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T01Ubb004218 for ; Wed, 28 May 2003 17:01:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T01UDD056520 for ; Wed, 28 May 2003 17:01:30 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T01UQg051101 for ; Wed, 28 May 2003 17:01:30 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4T01Uck051100; Wed, 28 May 2003 17:01:30 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305290001.h4T01Uck051100@xorpc.icir.org> Date: Wed, 28 May 2003 17:01:30 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/28 17:01:30 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Add command line flag that causes the rtrmgr to exit cleanly after a certain time delay. Used for router testing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Wed May 28 19:07:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 19:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T28161089652 for ; Wed, 28 May 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T281DD057553 for ; Wed, 28 May 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T281bb005826; Wed, 28 May 2003 19:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T27mbb005820 for ; Wed, 28 May 2003 19:07:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T27lDD057551 for ; Wed, 28 May 2003 19:07:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T27lQg085278 for ; Wed, 28 May 2003 19:07:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4T27l68085277; Wed, 28 May 2003 19:07:47 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305290207.h4T27l68085277@xorpc.icir.org> Date: Wed, 28 May 2003 19:07:47 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ Makefile.am Makefile.in snmp_overview.tex xorp/docs/snmp/figs/ snmp_fig1.eps xorp/docs/snmp/figs/ snmp_fig2.eps snmp_fig2.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/figs/ Changes by: jcardona@xorpc.icir.org. 03/05/28 19:07:47 Modified files: xorp/docs/snmp/: Makefile.am Makefile.in snmp_overview.tex xorp/docs/snmp/figs/: snmp_fig1.eps Added files: xorp/docs/snmp/figs/: snmp_fig2.eps snmp_fig2.fig Log message: Not complete yet _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Wed May 28 19:11:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 May 2003 19:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T2C161089981 for ; Wed, 28 May 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T2C1DD057591 for ; Wed, 28 May 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T2C1bb005895; Wed, 28 May 2003 19:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4T2Bkbb005889 for ; Wed, 28 May 2003 19:11:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T2BjDD057585 for ; Wed, 28 May 2003 19:11:45 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4T2BjQg093783 for ; Wed, 28 May 2003 19:11:45 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4T2BjoX093782; Wed, 28 May 2003 19:11:45 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305290211.h4T2BjoX093782@xorpc.icir.org> Date: Wed, 28 May 2003 19:11:45 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/05/28 19:11:45 Modified files: ./: configure configure.in Log message: kill output redirected _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 7:44:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 07:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TEj161056442 for ; Thu, 29 May 2003 07:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TEj1DD063309 for ; Thu, 29 May 2003 07:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TEj1bb017241; Thu, 29 May 2003 07:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TEibbb017234 for ; Thu, 29 May 2003 07:44:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TEibDD063300 for ; Thu, 29 May 2003 07:44:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TEibQg011635 for ; Thu, 29 May 2003 07:44:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TEib6E011634; Thu, 29 May 2003 07:44:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305291444.h4TEib6E011634@xorpc.icir.org> Date: Thu, 29 May 2003 7:44:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/29 07:44:37 Modified files: xorp/libxipc/: finder_client.hh Log message: Sprout kdoc comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:20:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 10:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THL161070105 for ; Thu, 29 May 2003 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THL1DD066049 for ; Thu, 29 May 2003 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THL1bb019657; Thu, 29 May 2003 10:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THKObb019640 for ; Thu, 29 May 2003 10:20:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THKODD066043 for ; Thu, 29 May 2003 10:20:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THKOQg017190 for ; Thu, 29 May 2003 10:20:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THKOex017189; Thu, 29 May 2003 10:20:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305291720.h4THKOex017189@xorpc.icir.org> Date: Thu, 29 May 2003 10:20:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/29 10:20:24 Modified files: xorp/rtrmgr/: config.boot Log message: changes to run on xorp8. config.boot should no longer be modified for use on other machines - use the -b flag to rtrmgr instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:51:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 10:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THq161072609 for ; Thu, 29 May 2003 10:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THq1DD066345 for ; Thu, 29 May 2003 10:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THq0bb020340; Thu, 29 May 2003 10:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THplbb020326 for ; Thu, 29 May 2003 10:51:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THplDD066343 for ; Thu, 29 May 2003 10:51:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THplQg017549 for ; Thu, 29 May 2003 10:51:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THplEI017548; Thu, 29 May 2003 10:51:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291751.h4THplEI017548@xorpc.icir.org> Date: Thu, 29 May 2003 10:51:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ LICENSE Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/05/29 10:51:47 Modified files: ./: LICENSE Log message: Replace ``the Xorp LICENSE file'' with ``the XORP LICENSE file'', because this is how it is referred to in most places. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:53:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 10:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THs161072866 for ; Thu, 29 May 2003 10:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THs1DD066357 for ; Thu, 29 May 2003 10:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THs0bb020392; Thu, 29 May 2003 10:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THrcbb020384 for ; Thu, 29 May 2003 10:53:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THrcDD066355 for ; Thu, 29 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THrcQg017590 for ; Thu, 29 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THrc3Z017589; Thu, 29 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291753.h4THrc3Z017589@xorpc.icir.org> Date: Thu, 29 May 2003 10:53:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ nettest_libtecla.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/05/29 10:53:38 Modified files: xorp/cli/libtecla/: nettest_libtecla.c Log message: * Replace ``the Xorp LICENSE file'' with ``the XORP LICENSE file'' * Add "Copyright" to the copyright line (for consistency with the rest of the files). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:54:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 10:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THt161073011 for ; Thu, 29 May 2003 10:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THt1DD066372 for ; Thu, 29 May 2003 10:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THt1bb020429; Thu, 29 May 2003 10:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THsXbb020414 for ; Thu, 29 May 2003 10:54:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THsXDD066367 for ; Thu, 29 May 2003 10:54:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THsWQg017631 for ; Thu, 29 May 2003 10:54:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THsW5O017630; Thu, 29 May 2003 10:54:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291754.h4THsW5O017630@xorpc.icir.org> Date: Thu, 29 May 2003 10:54:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/click_elements/ forward1.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/click_elements/ Changes by: pavlin@xorpc.icir.org. 03/05/29 10:54:32 Modified files: xorp/fea/click_elements/: forward1.hh Log message: Remove an extra copy of the copyright message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:58:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 10:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THx161073499 for ; Thu, 29 May 2003 10:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THx1DD066413 for ; Thu, 29 May 2003 10:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THx0bb020521; Thu, 29 May 2003 10:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THwYbb020500 for ; Thu, 29 May 2003 10:58:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THwYDD066409 for ; Thu, 29 May 2003 10:58:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THwXQg017730 for ; Thu, 29 May 2003 10:58:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THwXGg017729; Thu, 29 May 2003 10:58:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291758.h4THwXGg017729@xorpc.icir.org> Date: Thu, 29 May 2003 10:58:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospf_config.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 10:58:33 Modified files: xorp/ospfd/xorp/: ospf_config.C Log message: Update the copyright header style (using the style from devnotes/template.cc) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 10:59:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TI0161073636 for ; Thu, 29 May 2003 11:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TI01DD066428; Thu, 29 May 2003 11:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TI01bb020561; Thu, 29 May 2003 11:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4THxBbb020535 for ; Thu, 29 May 2003 10:59:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THxBDD066419 for ; Thu, 29 May 2003 10:59:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4THxAQg017764 for ; Thu, 29 May 2003 10:59:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4THxAJI017763; Thu, 29 May 2003 10:59:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291759.h4THxAJI017763@xorpc.icir.org> Date: Thu, 29 May 2003 10:59:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_base.hh route_table_cache.hh route_table_debug.hh route_table_decision.hh route_table_deletion.hh route_table_dump.hh route_table_fanout.hh route_table_filter.hh ...route_table_nhlookup.hh ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh xorp/fea/ fte.hh fti_click.cc fticonfig.hh test_fti.cc xorp/rib/ rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc test_register.cc test_register_xrls.cc test_rib_client.cc test_rib_direct.cc test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/29 10:59:10 Modified files: xorp/bgp/: route_table_base.hh route_table_cache.hh route_table_debug.hh route_table_decision.hh route_table_deletion.hh route_table_dump.hh route_table_fanout.hh route_table_filter.hh route_table_nhlookup.hh route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh xorp/fea/: fte.hh fti_click.cc fticonfig.hh test_fti.cc xorp/rib/: rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc test_register.cc test_register_xrls.cc test_rib_client.cc test_rib_direct.cc test_rib_xrls.cc Log message: Replace "the Xorp LICENSE file" with "the XORP LICENSE file", because this is how it is referred to in most places. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:32:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIX161077504 for ; Thu, 29 May 2003 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIX0DD066706 for ; Thu, 29 May 2003 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIX0bb021250; Thu, 29 May 2003 11:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIWZbb021240 for ; Thu, 29 May 2003 11:32:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIWZDD066702 for ; Thu, 29 May 2003 11:32:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIWZQg018017 for ; Thu, 29 May 2003 11:32:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIWYJD018016; Thu, 29 May 2003 11:32:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291832.h4TIWYJD018016@xorpc.icir.org> Date: Thu, 29 May 2003 11:32:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospf_config.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 11:32:34 Modified files: xorp/ospfd/xorp/: ospf_config.h Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:35:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIa161077860 for ; Thu, 29 May 2003 11:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIa0DD066743 for ; Thu, 29 May 2003 11:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIa0bb021343; Thu, 29 May 2003 11:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIZ8bb021323 for ; Thu, 29 May 2003 11:35:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIZ7DD066739 for ; Thu, 29 May 2003 11:35:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIZ7Qg018096 for ; Thu, 29 May 2003 11:35:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIZ7bn018095; Thu, 29 May 2003 11:35:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291835.h4TIZ7bn018095@xorpc.icir.org> Date: Thu, 29 May 2003 11:35:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospf_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 11:35:07 Modified files: xorp/ospfd/xorp/: ospf_module.h Log message: Add the "dual-licensing" clause that allows to distribute this part of the code (only) under GPL. Needed because ospfd itself is GPL-licensed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:36:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIb161077990 for ; Thu, 29 May 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIb1DD066760 for ; Thu, 29 May 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIb0bb021373; Thu, 29 May 2003 11:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIaTbb021363 for ; Thu, 29 May 2003 11:36:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIaTDD066749 for ; Thu, 29 May 2003 11:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIaTQg018151 for ; Thu, 29 May 2003 11:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIaT0X018150; Thu, 29 May 2003 11:36:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291836.h4TIaT0X018150@xorpc.icir.org> Date: Thu, 29 May 2003 11:36:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ xrl_target.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 11:36:29 Modified files: xorp/ospfd/xorp/: xrl_target.h Log message: * Add the "dual-licensing" clause that allows to distribute this part of the code (only) under GPL. Needed because ospfd itself is GPL-licensed. * Update the XORP header style _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:37:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIc161078121 for ; Thu, 29 May 2003 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIc1DD066771 for ; Thu, 29 May 2003 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIc1bb021411; Thu, 29 May 2003 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIbObb021390 for ; Thu, 29 May 2003 11:37:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIbODD066769 for ; Thu, 29 May 2003 11:37:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIbNQg018195 for ; Thu, 29 May 2003 11:37:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIbN2g018194; Thu, 29 May 2003 11:37:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291837.h4TIbN2g018194@xorpc.icir.org> Date: Thu, 29 May 2003 11:37:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ xrl_target.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 11:37:23 Modified files: xorp/ospfd/xorp/: xrl_target.C Log message: * Add the "dual-licensing" clause that allows to distribute this part of the code (only) under GPL. Needed because ospfd itself is GPL-licensed. * Update the XORP header style _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:43:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIi161078818 for ; Thu, 29 May 2003 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIi1DD066814 for ; Thu, 29 May 2003 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIi0bb021541; Thu, 29 May 2003 11:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIhgbb021534 for ; Thu, 29 May 2003 11:43:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIhgDD066809 for ; Thu, 29 May 2003 11:43:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIhgQg018258 for ; Thu, 29 May 2003 11:43:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIhgbo018257; Thu, 29 May 2003 11:43:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291843.h4TIhgbo018257@xorpc.icir.org> Date: Thu, 29 May 2003 11:43:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ finder_command_line.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/05/29 11:43:42 Modified files: xorp/docs/libxipc/: finder_command_line.txt Log message: Make the finder port number specification optional: OLD: -F : NEW: -F [:] If the port number is not specified, then the default value is used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:52:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIr161079845 for ; Thu, 29 May 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIr1DD066885 for ; Thu, 29 May 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIr1bb021690; Thu, 29 May 2003 11:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIqtbb021684 for ; Thu, 29 May 2003 11:52:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIqtDD066883 for ; Thu, 29 May 2003 11:52:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIqtQg018335 for ; Thu, 29 May 2003 11:52:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIqtse018334; Thu, 29 May 2003 11:52:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305291852.h4TIqtse018334@xorpc.icir.org> Date: Thu, 29 May 2003 11:52:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 03/05/29 11:52:55 Modified files: xorp/libxorp/: status_codes.h Log message: Add comment explaining status codes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 11:56:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIv161080324 for ; Thu, 29 May 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIv1DD066918 for ; Thu, 29 May 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIv0bb021749; Thu, 29 May 2003 11:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TIuSbb021737 for ; Thu, 29 May 2003 11:56:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIuRDD066915 for ; Thu, 29 May 2003 11:56:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TIuRQg018407 for ; Thu, 29 May 2003 11:56:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TIuRWD018406; Thu, 29 May 2003 11:56:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305291856.h4TIuRWD018406@xorpc.icir.org> Date: Thu, 29 May 2003 11:56:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/ Makefile.am test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/05/29 11:56:27 Modified files: xorp/bgp/: test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/bgp/harness/: Makefile.am test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh Log message: Cross-directory gmake check adaptation: use ${srcdir} as base for sourcing scripts and data. Automake sees to it that ${srcdir} is set during gmake check. When run from the command-line, default ${srcdir} to the directory name of the script being run. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:55 2005 Subject: No subject Thu May 29 12:03:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 12:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJ4161081125 for ; Thu, 29 May 2003 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJ41DD066976 for ; Thu, 29 May 2003 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TJ40bb021922; Thu, 29 May 2003 12:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TJ3Gbb021893 for ; Thu, 29 May 2003 12:03:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJ3GDD066972 for ; Thu, 29 May 2003 12:03:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJ3GQg026009 for ; Thu, 29 May 2003 12:03:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TJ3Gat026008; Thu, 29 May 2003 12:03:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305291903.h4TJ3Gat026008@xorpc.icir.org> Date: Thu, 29 May 2003 12:03:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/rib/ .cvsignore Makefile.in xorp/libxipc/ .cvsignore Makefile.in xorp/rib/ test_rib_direct.sh test_rib_xrls.sh xorp/libxipc/ test_xrl_parser.sh xorp/rib/ test_rib_direct.sh.in test_rib_xrls.sh.in xorp/libxipc/ test_xrl_parser.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/29 12:03:16 Modified files: ./: Makefile.in configure configure.in xorp/rib/: .cvsignore Makefile.in xorp/libxipc/: .cvsignore Makefile.in Added files: xorp/rib/: test_rib_direct.sh test_rib_xrls.sh xorp/libxipc/: test_xrl_parser.sh Removed files: xorp/rib/: test_rib_direct.sh.in test_rib_xrls.sh.in xorp/libxipc/: test_xrl_parser.sh.in Log message: Revert from generated unit test scripts to scripts that utilize the automake set ${srcdir} environment variable during gmake check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 12:18:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 12:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJJ161082491 for ; Thu, 29 May 2003 12:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJJ1DD067110 for ; Thu, 29 May 2003 12:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TJJ0bb022166; Thu, 29 May 2003 12:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TJISbb022159 for ; Thu, 29 May 2003 12:18:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJISDD067106 for ; Thu, 29 May 2003 12:18:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TJISQg028702 for ; Thu, 29 May 2003 12:18:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TJISIP028701; Thu, 29 May 2003 12:18:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305291918.h4TJISIP028701@xorpc.icir.org> Date: Thu, 29 May 2003 12:18:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/05/29 12:18:28 Modified files: xorp/libxorp/: status_codes.h Log message: * Replaced FAIL with FAILED (for consistency with the ProcessStatus naming). * Few nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 14:17:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 14:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLI161091505 for ; Thu, 29 May 2003 14:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLI1DD068159 for ; Thu, 29 May 2003 14:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLI0bb024227; Thu, 29 May 2003 14:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLHPbb024212 for ; Thu, 29 May 2003 14:17:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLHPDD068156 for ; Thu, 29 May 2003 14:17:25 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLHPQg066041 for ; Thu, 29 May 2003 14:17:25 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TLHP8N066040; Thu, 29 May 2003 14:17:25 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305292117.h4TLHP8N066040@xorpc.icir.org> Date: Thu, 29 May 2003 14:17:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.hh xrl_target.cc xrl_target.hh xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh xorp/fea/ xrl_mfea_node.cc xrl_mfea_node.hh xrl_target.cc xrl_target.hh xorp/libxipc/ finder_client_xrl_target.cc finder_client_xrl_target.hh finder_xrl_target.cc finder_xrl_target.hh test_finder_events.cc xorp/mfea/ xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xorp/rib/ xrl_target.cc xrl_target.hh xorp/rtrmgr/ xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xorp/xrl/interfaces/ common.xif common_xif.cc common_xif.hh xorp/xrl/targets/ bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh ! ...demo_fe! a_ifmgr_client.xrls ...demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea.xrls ...fea_base.cc ...fea_base.hh ...finder.xrls ...finder_base.cc ...finder_base.hh ...finder_client.xrls ...finder_client_base.cc ...finder_client_base.hh ...mfea.xrls ...mfea_base.cc ...mfea_base.hh ...mld6igmp.xrls ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf.xrls ...ospf_base.cc ...ospf_base.hh ...pim.xrls ...pim_base.cc ...pim_base.hh ...rib.xrls ...rib_base.cc ...rib_base.hh ...rtrmgr.xrls ...rtrmgr_base.cc ...rtrmgr_base.hh ...test.xrls ...test_base.cc ...test_base.hh ...test_finder_events.xrls ...test_finder_events_base.cc ...test_finder_events_base.hh ...test_peer.xrls ...test_peer_base.cc ...test_peer_base.hh ...xorp_if_mib.xrls ...xorp_if_mib_base.cc ...xorp_if_mib_base.hh ...xorpsh.xrls ...xorpsh_base.cc ...xorpsh_base.hh xorp/xrl/tests/ test_tgt.cc test_tgt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: mjh@xorpc.icir.org. 03/05/29 14:17:25 Modified files: xorp/bgp/: main.hh xrl_target.cc xrl_target.hh xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh xorp/fea/: xrl_mfea_node.cc xrl_mfea_node.hh xrl_target.cc xrl_target.hh xorp/libxipc/: finder_client_xrl_target.cc finder_client_xrl_target.hh finder_xrl_target.cc finder_xrl_target.hh test_finder_events.cc xorp/mfea/: xrl_mfea_node.cc xrl_mfea_node.hh xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xorp/rib/: xrl_target.cc xrl_target.hh xorp/rtrmgr/: xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xorp/xrl/interfaces/: common.xif common_xif.cc common_xif.hh xorp/xrl/targets/: bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh test.xrls test_base.cc test_base.hh test_finder_events.xrls test_finder_events_base.cc test_finder_events_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh xorp/xrl/tests/: test_tgt.cc test_tgt.hh Log message: Add shutdown XRL to common interface. In many processes this is implemented merely as a placeholder. The rtrmgr's expectation is that if you return OKAY in response to shutdown, that you'll then be in SHUTDOWN state when it queries with get_status. If not, it'll assume something failed, and kill you. But it won't try shutdown unless the XRL template file says to do so. At least that's the theory - the rtrmgr part isn't implemented yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 14:40:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 14:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLf161018687 for ; Thu, 29 May 2003 14:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLf1DD068394 for ; Thu, 29 May 2003 14:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLf0bb024687; Thu, 29 May 2003 14:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLeYbb024668 for ; Thu, 29 May 2003 14:40:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLeYDD068392 for ; Thu, 29 May 2003 14:40:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLeXQg066269 for ; Thu, 29 May 2003 14:40:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TLeXSN066268; Thu, 29 May 2003 14:40:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305292140.h4TLeXSN066268@xorpc.icir.org> Date: Thu, 29 May 2003 14:40:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_sample_config.cc test_templates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/05/29 14:40:33 Modified files: xorp/rtrmgr/: test_sample_config.cc test_templates.cc Log message: Check for presence of srcdir and set default paths accordingly. Allows check target to work with cross-directory builds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 14:56:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 14:57:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLv261032538 for ; Thu, 29 May 2003 14:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLv1DD068549 for ; Thu, 29 May 2003 14:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLv1bb024987; Thu, 29 May 2003 14:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TLu1bb024964 for ; Thu, 29 May 2003 14:56:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLu0DD068530 for ; Thu, 29 May 2003 14:56:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TLu0Qg066902 for ; Thu, 29 May 2003 14:56:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TLu0MH066901; Thu, 29 May 2003 14:56:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305292156.h4TLu0MH066901@xorpc.icir.org> Date: Thu, 29 May 2003 14:56:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc xorp/fea/ fea.cc fea_dummy.cc xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/29 14:56:00 Modified files: xorp/cli/: test_cli.cc xorp/fea/: fea.cc fea_dummy.cc xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc Log message: Replace the command-line option to specify the finder (as described in docs/libxipc/finder_command_line.txt): OLD: [-f [/]] NEW: [-F [:]] Note: probably there are other programs that specify the finder hostname and port with a different command-line option. Those will be updated later. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:02:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TM3161033409 for ; Thu, 29 May 2003 15:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TM30DD068603 for ; Thu, 29 May 2003 15:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TM30bb025102; Thu, 29 May 2003 15:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TM2hbb025095 for ; Thu, 29 May 2003 15:02:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TM2hDD068601 for ; Thu, 29 May 2003 15:02:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TM2gQg067017 for ; Thu, 29 May 2003 15:02:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TM2g24067016; Thu, 29 May 2003 15:02:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305292202.h4TM2g24067016@xorpc.icir.org> Date: Thu, 29 May 2003 15:02:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ demo_fea_ifmgr_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 03/05/29 15:02:42 Modified files: xorp/fea/: demo_fea_ifmgr_client.cc Log message: Somehow I missed adding shutdown to this one. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:18:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMJ161036316 for ; Thu, 29 May 2003 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMJ0DD068765 for ; Thu, 29 May 2003 15:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMJ0bb025415; Thu, 29 May 2003 15:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMITbb025407 for ; Thu, 29 May 2003 15:18:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMITDD068763 for ; Thu, 29 May 2003 15:18:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMITQg067230 for ; Thu, 29 May 2003 15:18:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TMITNN067229; Thu, 29 May 2003 15:18:29 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305292218.h4TMITNN067229@xorpc.icir.org> Date: Thu, 29 May 2003 15:18:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc coord.hh test_peer.cc test_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 03/05/29 15:18:29 Modified files: xorp/bgp/harness/: coord.cc coord.hh test_peer.cc test_peer.hh Log message: Two more missing shutdown methods. Something strange must have happened with dependencies for this not to have been spotted before I did the jumbo commit earlier. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:24:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMP261042488 for ; Thu, 29 May 2003 15:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMP1DD068826 for ; Thu, 29 May 2003 15:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMP1bb025567; Thu, 29 May 2003 15:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMO4bb025539 for ; Thu, 29 May 2003 15:24:04 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMO3DD068819; Thu, 29 May 2003 15:24:03 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMO3pD066413; Thu, 29 May 2003 15:24:03 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200305292224.h4TMO3pD066413@possum.icir.org> To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc coord.hh test_peer.cc test_peer.hh In-Reply-To: Message from Mark Handley of "Thu, 29 May 2003 15:18:29." <200305292218.h4TMITNN067229@xorpc.icir.org> Date: Thu, 29 May 2003 15:24:03 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Repository: xorp/bgp/harness/ > Changes by: mjh@xorpc.icir.org. 03/05/29 15:18:29 > > Modified files: > xorp/bgp/harness/: coord.cc coord.hh test_peer.cc test_peer.hh > > Log message: > Two more missing shutdown methods. Something strange must have > happened with dependencies for this not to have been spotted before I > did the jumbo commit earlier. Right before the above commit I had another dependency problem: pavlin@possum[425] gmake gmake all-am gmake[1]: Entering directory `/home/possum/u0/pavlin/work/xorp/FreeBSD-xorp/libxipc' source='../xrl/targets/finder_client_base.cc' object='../xrl/targets/finder_client_base.o' libtool=no \ depfile='.deps/../xrl/targets/finder_client_base.Po' tmpdepfile='.deps/../xrl/targets/finder_client_base.TPo' \ depmode=gcc3 /usr/local/bin/bash ../config/depcomp \ g++32 -DHAVE_CONFIG_H -I. -I. -I.. -I.. -g -W -Wall -Wwrite-strings -Wmissing-prototypes -Wcast-qual -Werror -Wpointer-arith -Wcast-align -Wstrict-prototypes -Woverloaded-virtual -Wtraditional -ftemplate-depth-20 -c -o ../xrl/targets/finder_client_base.o `test -f ../xrl/targets/finder_client_base.cc || echo './'`../xrl/targets/finder_client_base.cc .deps/../xrl/targets/finder_client_base.TPo: No such file or directory gmake[1]: *** [../xrl/targets/finder_client_base.o] Error 1 gmake[1]: Leaving directory `/home/possum/u0/pavlin/work/xorp/FreeBSD-xorp/libxipc' gmake: *** [all] Error 2 Exit 2 After I did "gmake clean" the above problem seemed to disappear. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:26:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMR161042994 for ; Thu, 29 May 2003 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMR1DD068866; Thu, 29 May 2003 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMR1bb025615; Thu, 29 May 2003 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMQNbb025595 for ; Thu, 29 May 2003 15:26:23 -0700 (PDT) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMQMDD068859; Thu, 29 May 2003 15:26:22 -0700 (PDT) (envelope-from atanu@tigger.icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMQM61042861; Thu, 29 May 2003 15:26:22 -0700 (PDT) (envelope-from atanu@tigger.icir.org) To: Pavlin Radoslavov cc: mjh@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc coord.hh test_peer.cc test_peer.hh In-reply-to: Your message of "Thu, 29 May 2003 15:24:03 PDT." <200305292224.h4TMO3pD066413@possum.icir.org> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: Date: Thu, 29 May 2003 15:26:22 -0700 Message-ID: <42860.1054247182@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >>>>> "Pavlin" == Pavlin Radoslavov writes: >> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp >> Repository: xorp/bgp/harness/ Changes by: >> mjh@xorpc.icir.org. 03/05/29 15:18:29 >> >> Modified files: xorp/bgp/harness/: coord.cc coord.hh >> test_peer.cc test_peer.hh >> >> Log message: Two more missing shutdown methods. Something >> strange must have happened with dependencies for this not to >> have been spotted before I did the jumbo commit earlier. Pavlin> Right before the above commit I had another dependency Pavlin> problem: Pavlin> pavlin@possum[425] gmake gmake all-am gmake[1]: Entering Pavlin> directory Pavlin> `/home/possum/u0/pavlin/work/xorp/FreeBSD-xorp/libxipc' Pavlin> source='../xrl/targets/finder_client_base.cc' Pavlin> object='../xrl/targets/finder_client_base.o' libtool=no \ Pavlin> depfile='.deps/../xrl/targets/finder_client_base.Po' Pavlin> tmpdepfile='.deps/../xrl/targets/finder_client_base.TPo' \ Pavlin> depmode=gcc3 /usr/local/bin/bash ../config/depcomp \ g++32 Pavlin> -DHAVE_CONFIG_H -I. -I. -I.. -I.. -g -W -Wall Pavlin> -Wwrite-strings -Wmissing-prototypes -Wcast-qual -Werror Pavlin> -Wpointer-arith -Wcast-align -Wstrict-prototypes Pavlin> -Woverloaded-virtual -Wtraditional -ftemplate-depth-20 -c Pavlin> -o ../xrl/targets/finder_client_base.o `test -f Pavlin> ../xrl/targets/finder_client_base.cc || echo Pavlin> './'`../xrl/targets/finder_client_base.cc Pavlin> .deps/../xrl/targets/finder_client_base.TPo: No such file Pavlin> or directory gmake[1]: *** Pavlin> [../xrl/targets/finder_client_base.o] Error 1 gmake[1]: Pavlin> Leaving directory Pavlin> `/home/possum/u0/pavlin/work/xorp/FreeBSD-xorp/libxipc' Pavlin> gmake: *** [all] Error 2 Exit 2 Pavlin> After I did "gmake clean" the above problem seemed to Pavlin> disappear. Same problem, same solution. Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:31:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMW161044566 for ; Thu, 29 May 2003 15:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMW0DD068906 for ; Thu, 29 May 2003 15:32:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMW0bb025755; Thu, 29 May 2003 15:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMVJbb025735 for ; Thu, 29 May 2003 15:31:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMVJDD068904 for ; Thu, 29 May 2003 15:31:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMVIQg067399 for ; Thu, 29 May 2003 15:31:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TMVIkZ067398; Thu, 29 May 2003 15:31:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305292231.h4TMVIkZ067398@xorpc.icir.org> Date: Thu, 29 May 2003 15:31:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc xorp/xrl/interfaces/ fea.xif fea_xif.cc fea_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/29 15:31:18 Modified files: xorp/fea/: xrl_target.hh xrl_target.cc xorp/xrl/interfaces/: fea.xif fea_xif.cc fea_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Remove fea/terminate XRL because its function is replaced by common/shutdown XRL _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:32:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMX161045087 for ; Thu, 29 May 2003 15:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMX1DD068919 for ; Thu, 29 May 2003 15:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMX1bb025793; Thu, 29 May 2003 15:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMWGbb025771 for ; Thu, 29 May 2003 15:32:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMWGDD068912 for ; Thu, 29 May 2003 15:32:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMWGQg067441 for ; Thu, 29 May 2003 15:32:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TMWGEx067440; Thu, 29 May 2003 15:32:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305292232.h4TMWGEx067440@xorpc.icir.org> Date: Thu, 29 May 2003 15:32:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/utils/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/05/29 15:32:16 Modified files: xorp/bgp/harness/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/utils/: Makefile.in Log message: Regenerate auto-generated Makefile.in files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 15:37:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 15:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMc161046614 for ; Thu, 29 May 2003 15:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMc1DD068972 for ; Thu, 29 May 2003 15:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMc1bb025883; Thu, 29 May 2003 15:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TMb1bb025864 for ; Thu, 29 May 2003 15:37:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMb1DD068961 for ; Thu, 29 May 2003 15:37:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TMb1Qg067484 for ; Thu, 29 May 2003 15:37:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TMb1EJ067483; Thu, 29 May 2003 15:37:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305292237.h4TMb1EJ067483@xorpc.icir.org> Date: Thu, 29 May 2003 15:37:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ xrl_target.C xrl_target.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: mjh@xorpc.icir.org. 03/05/29 15:37:01 Modified files: xorp/ospfd/xorp/: xrl_target.C xrl_target.h Log message: Add missing shutdown method _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 16:24:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 16:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNP161056662 for ; Thu, 29 May 2003 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNP1DD069407 for ; Thu, 29 May 2003 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNP0bb026745; Thu, 29 May 2003 16:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNOrbb026736 for ; Thu, 29 May 2003 16:24:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNOrDD069402 for ; Thu, 29 May 2003 16:24:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNOrQg067831 for ; Thu, 29 May 2003 16:24:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TNOrv7067830; Thu, 29 May 2003 16:24:53 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305292324.h4TNOrv7067830@xorpc.icir.org> Date: Thu, 29 May 2003 16:24:52 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/src/ ospf.h xorp/ospfd/xorp/ xrl_target.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: mjh@xorpc.icir.org. 03/05/29 16:24:52 Modified files: xorp/ospfd/src/: ospf.h xorp/ospfd/xorp/: xrl_target.C Log message: Return correct status when shutting down. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 16:34:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 16:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNZ161062828 for ; Thu, 29 May 2003 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNZ1DD069496; Thu, 29 May 2003 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNZ1bb026932; Thu, 29 May 2003 16:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNY4bb026914 for ; Thu, 29 May 2003 16:34:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNY4DD069480 for ; Thu, 29 May 2003 16:34:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNY3Qg068019 for ; Thu, 29 May 2003 16:34:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TNY3x2068018; Thu, 29 May 2003 16:34:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200305292334.h4TNY3x2068018@xorpc.icir.org> Date: Thu, 29 May 2003 16:34:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/bgp/harness/ test_terminate.sh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/05/29 16:34:03 Modified files: xorp/bgp/: xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/bgp/harness/: test_terminate.sh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: A shutdown XRL has just been added in common. BGP already had a terminate XRL. Remove the terminate XRL and all references now use shutdown. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 16:42:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 16:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNh161063439 for ; Thu, 29 May 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNh0DD069570 for ; Thu, 29 May 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNh0bb027096; Thu, 29 May 2003 16:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNgVbb027085 for ; Thu, 29 May 2003 16:42:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNgVDD069566 for ; Thu, 29 May 2003 16:42:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNgVQg068191 for ; Thu, 29 May 2003 16:42:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TNgVKv068190; Thu, 29 May 2003 16:42:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305292342.h4TNgVKv068190@xorpc.icir.org> Date: Thu, 29 May 2003 16:42:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/05/29 16:42:31 Modified files: xorp/bgp/harness/: test2.sh Log message: terminate -> shutdown (the change is in commented-out code) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 16:43:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNi161063530 for ; Thu, 29 May 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNi1DD069578 for ; Thu, 29 May 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNi1bb027118; Thu, 29 May 2003 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNhHbb027108 for ; Thu, 29 May 2003 16:43:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNhGDD069576 for ; Thu, 29 May 2003 16:43:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNhGQg068229 for ; Thu, 29 May 2003 16:43:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TNhGie068228; Thu, 29 May 2003 16:43:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305292343.h4TNhGie068228@xorpc.icir.org> Date: Thu, 29 May 2003 16:43:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/29 16:43:16 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Replace the FEA-specific function "terminate" with the common "shutdown" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 16:50:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNp161069282 for ; Thu, 29 May 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNp1DD069654 for ; Thu, 29 May 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNp1bb027240; Thu, 29 May 2003 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4TNoDbb027220 for ; Thu, 29 May 2003 16:50:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNoDDD069645 for ; Thu, 29 May 2003 16:50:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4TNoDQg068357 for ; Thu, 29 May 2003 16:50:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4TNoDba068356; Thu, 29 May 2003 16:50:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305292350.h4TNoDba068356@xorpc.icir.org> Date: Thu, 29 May 2003 16:50:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_xrl_target.hh xorp_if_mib_xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: hodson@xorpc.icir.org. 03/05/29 16:50:13 Modified files: xorp/mibs/: bgp4_mib_xrl_target.hh xorp_if_mib_xrl_target.hh Log message: Add common_0_1_shutdown method placeholders. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:56 2005 Subject: No subject Thu May 29 18:18:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 18:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1J161084943 for ; Thu, 29 May 2003 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1J1DD070409 for ; Thu, 29 May 2003 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1J0bb028678; Thu, 29 May 2003 18:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1Irbb028672 for ; Thu, 29 May 2003 18:18:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1IrDD070407 for ; Thu, 29 May 2003 18:18:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1IrQg078786 for ; Thu, 29 May 2003 18:18:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U1Irxl078785; Thu, 29 May 2003 18:18:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305300118.h4U1Irxl078785@xorpc.icir.org> Date: Thu, 29 May 2003 18:18:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpconfig/ snmpenv.sh xorp/mibs/snmpdscripts/ loadbgp loadospf loadxorp_if xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: hodson@xorpc.icir.org. 03/05/29 18:18:53 Modified files: xorp/mibs/snmpconfig/: snmpenv.sh xorp/mibs/snmpdscripts/: loadbgp loadospf loadxorp_if xorp/mibs/tests/: test_bgpmib.sh.in Log message: Coerce SNMP make check target to work with cross-directory build. snmpdscripts require fixing up by configure to work with cross-directory build and/or installation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 18:21:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 18:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1M161085328 for ; Thu, 29 May 2003 18:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1M1DD070462; Thu, 29 May 2003 18:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1M1bb028724; Thu, 29 May 2003 18:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1Lxbb028716 for ; Thu, 29 May 2003 18:21:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1LxDD070460 for ; Thu, 29 May 2003 18:21:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1LxQg079201 for ; Thu, 29 May 2003 18:21:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U1Lxah079200; Thu, 29 May 2003 18:21:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305300121.h4U1Lxah079200@xorpc.icir.org> Date: Thu, 29 May 2003 18:21:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ .cvsignore source_pathconf.sh xorp/utils/ gen-pathconf.sh.in xorp/utils/ pathconf.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/05/29 18:21:59 Modified files: xorp/utils/: .cvsignore source_pathconf.sh Added files: xorp/utils/: gen-pathconf.sh.in Removed files: xorp/utils/: pathconf.sh.in Log message: Add gen-pathconf.sh.in which can be processed and sourced by configure to generate pathconf.sh. For the time being it's not necessary, but may be useful to keep around. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 18:44:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 18:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1j161087534 for ; Thu, 29 May 2003 18:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1j1DD070620 for ; Thu, 29 May 2003 18:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1j1bb028988; Thu, 29 May 2003 18:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1i7bb028975 for ; Thu, 29 May 2003 18:44:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1i7DD070609 for ; Thu, 29 May 2003 18:44:07 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1i7Qg086318 for ; Thu, 29 May 2003 18:44:07 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U1i6Js086317; Thu, 29 May 2003 18:44:06 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305300144.h4U1i6Js086317@xorpc.icir.org> Date: Thu, 29 May 2003 18:44:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/05/29 18:44:06 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Added new section on how to use mib2c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 18:44:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 18:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1j261087553 for ; Thu, 29 May 2003 18:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1j2DD070624 for ; Thu, 29 May 2003 18:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1j1bb028999; Thu, 29 May 2003 18:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U1iabb028979 for ; Thu, 29 May 2003 18:44:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1iaDD070613 for ; Thu, 29 May 2003 18:44:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U1iaQg086347 for ; Thu, 29 May 2003 18:44:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U1iahE086346; Thu, 29 May 2003 18:44:36 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305300144.h4U1iahE086346@xorpc.icir.org> Date: Thu, 29 May 2003 18:44:36 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: jcardona@xorpc.icir.org. 03/05/29 18:44:36 Modified files: xorp/docs/tex/: xorp.bib Log message: Added SNMP bibliography _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 19:18:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 19:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2J161090148 for ; Thu, 29 May 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2J1DD070875 for ; Thu, 29 May 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U2J0bb029392; Thu, 29 May 2003 19:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U2IPbb029380 for ; Thu, 29 May 2003 19:18:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2IPDD070873 for ; Thu, 29 May 2003 19:18:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2IOQg001990 for ; Thu, 29 May 2003 19:18:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U2IO6g001989; Thu, 29 May 2003 19:18:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305300218.h4U2IO6g001989@xorpc.icir.org> Date: Thu, 29 May 2003 19:18:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ Makefile.rules Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: hodson@xorpc.icir.org. 03/05/29 19:18:24 Modified files: xorp/cli/libtecla/: Makefile.rules Log message: Don't complain if directory already exists when making objdir. Necessary component for parallel builds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 19:42:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 19:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2h161091981 for ; Thu, 29 May 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2h1DD071042 for ; Thu, 29 May 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U2h1bb029711; Thu, 29 May 2003 19:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U2gwbb029705 for ; Thu, 29 May 2003 19:42:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2gwDD071040 for ; Thu, 29 May 2003 19:42:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U2gwQg011966 for ; Thu, 29 May 2003 19:42:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U2gw1V011965; Thu, 29 May 2003 19:42:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305300242.h4U2gw1V011965@xorpc.icir.org> Date: Thu, 29 May 2003 19:42:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp rib.tp xorp/rtrmgr/ module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/29 19:42:57 Modified files: xorp/etc/templates/: bgp.tp fea.tp rib.tp xorp/rtrmgr/: module_command.cc module_command.hh task.cc task.hh Log message: First step towards rtrmgr using the shutdown Xrl interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 20:12:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 20:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3D261094259 for ; Thu, 29 May 2003 20:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3D1DD071240 for ; Thu, 29 May 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U3D1bb000100; Thu, 29 May 2003 20:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U3C8bb000093 for ; Thu, 29 May 2003 20:12:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3C7DD071236 for ; Thu, 29 May 2003 20:12:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3C7Qg014606 for ; Thu, 29 May 2003 20:12:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U3C73Z014605; Thu, 29 May 2003 20:12:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305300312.h4U3C73Z014605@xorpc.icir.org> Date: Thu, 29 May 2003 20:12:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 03/05/29 20:12:07 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Fix typo that caused the wrong file to be sourced, causing the tinderbox to fail. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 20:37:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 20:38:27 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3cR61096182 for ; Thu, 29 May 2003 20:38:27 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3cRDD071404; Thu, 29 May 2003 20:38:27 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U3cRbb000420; Thu, 29 May 2003 20:38:27 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U3bLbb000403 for ; Thu, 29 May 2003 20:37:21 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3bLDD071399; Thu, 29 May 2003 20:37:21 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U3bLjq096189; Thu, 29 May 2003 20:37:21 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200305300337.h4U3bLjq096189@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh In-Reply-To: Your message of "Thu, 29 May 2003 20:12:07." <200305300312.h4U3C73Z014605@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 29 May 2003 20:37:21 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/bgp/harness/ | Changes by: mjh@xorpc.icir.org. 03/05/29 20:12:07 | | Modified files: | xorp/bgp/harness/: test_peering2.sh | | Log message: | Fix typo that caused the wrong file to be sourced, causing the | tinderbox to fail. Sigh... I must have managed to do this between the last gmake check and the commit. Thanks for fixing, apologies for leaving it on the table. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Thu May 29 21:42:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 May 2003 21:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U4h161001139 for ; Thu, 29 May 2003 21:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U4h1DD071788 for ; Thu, 29 May 2003 21:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U4h0bb001142; Thu, 29 May 2003 21:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4U4gAbb001123 for ; Thu, 29 May 2003 21:42:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U4gADD071785 for ; Thu, 29 May 2003 21:42:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4U4gAQg015351 for ; Thu, 29 May 2003 21:42:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4U4g9eN015350; Thu, 29 May 2003 21:42:09 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305300442.h4U4g9eN015350@xorpc.icir.org> Date: Thu, 29 May 2003 21:42:09 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.hh module_command.cc module_command.hh task.cc task.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/29 21:42:09 Modified files: xorp/rtrmgr/: conf_tree_node.hh module_command.cc module_command.hh task.cc task.hh template_commands.cc Log message: Re-organizaton of how the relevant information about a module gets into the TaskManager. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 10:30:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 10:31:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UHV2CH008871 for ; Fri, 30 May 2003 10:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UHV1DD079477 for ; Fri, 30 May 2003 10:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UHV1bb012729; Fri, 30 May 2003 10:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UHUqbb012715 for ; Fri, 30 May 2003 10:30:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UHUIDD079468 for ; Fri, 30 May 2003 10:30:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UHUIQg012770 for ; Fri, 30 May 2003 10:30:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UHUI1F012769; Fri, 30 May 2003 10:30:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305301730.h4UHUI1F012769@xorpc.icir.org> Date: Fri, 30 May 2003 10:30:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospfd_xorp.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: hodson@xorpc.icir.org. 03/05/30 10:30:18 Modified files: xorp/ospfd/xorp/: ospfd_xorp.C Log message: Remove extraneous UDP listener. Code uses XrlStdRouter and so does not need to specify additional listeners. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 11:13:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 11:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIE1CH010964 for ; Fri, 30 May 2003 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIE1DD079771; Fri, 30 May 2003 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIE1bb013480; Fri, 30 May 2003 11:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIDJbb013457 for ; Fri, 30 May 2003 11:13:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIDJDD079764 for ; Fri, 30 May 2003 11:13:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIDJQg013146 for ; Fri, 30 May 2003 11:13:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UIDJAU013145; Fri, 30 May 2003 11:13:19 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305301813.h4UIDJAU013145@xorpc.icir.org> Date: Fri, 30 May 2003 11:13:19 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html xorp/docs/kdoc/ gen-kdoc.sh xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/05/30 11:13:19 Modified files: xorp/docs/: index.html xorp/docs/kdoc/: gen-kdoc.sh xorp/docs/snmp/: snmp_overview.tex Log message: Added SNMP documentation to the Web page _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 11:15:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 11:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIG1CH011269 for ; Fri, 30 May 2003 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIG1DD079800 for ; Fri, 30 May 2003 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIG1bb013510; Fri, 30 May 2003 11:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIFsbb013503 for ; Fri, 30 May 2003 11:15:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIFsDD079798 for ; Fri, 30 May 2003 11:15:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIFsQg013214 for ; Fri, 30 May 2003 11:15:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UIFsew013213; Fri, 30 May 2003 11:15:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305301815.h4UIFsew013213@xorpc.icir.org> Date: Fri, 30 May 2003 11:15:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc xrl_std_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/30 11:15:54 Modified files: xorp/libxipc/: xrl_pf_stcp.cc xrl_std_router.hh Log message: RequestHandler destruction clean-up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 11:16:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 11:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIH1CH011425 for ; Fri, 30 May 2003 11:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIH0DD079815 for ; Fri, 30 May 2003 11:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIH0bb013541; Fri, 30 May 2003 11:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIGsbb013535 for ; Fri, 30 May 2003 11:16:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIGsDD079813 for ; Fri, 30 May 2003 11:16:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIGsQg013260 for ; Fri, 30 May 2003 11:16:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UIGsbr013259; Fri, 30 May 2003 11:16:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305301816.h4UIGsbr013259@xorpc.icir.org> Date: Fri, 30 May 2003 11:16:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_std_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/30 11:16:54 Modified files: xorp/libxipc/: xrl_std_router.hh Log message: Back out unintended commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 11:22:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 11:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIN1CH012218 for ; Fri, 30 May 2003 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIN1DD079867 for ; Fri, 30 May 2003 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIN1bb013658; Fri, 30 May 2003 11:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UIMQbb013644 for ; Fri, 30 May 2003 11:22:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIMQDD079864 for ; Fri, 30 May 2003 11:22:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UIMPQg013320 for ; Fri, 30 May 2003 11:22:25 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UIMP1U013319; Fri, 30 May 2003 11:22:25 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305301822.h4UIMP1U013319@xorpc.icir.org> Date: Fri, 30 May 2003 11:22:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/30 11:22:25 Modified files: xorp/rtrmgr/: module_command.cc module_command.hh task.cc task.hh Log message: Add validation that process re-configuration is now complete. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 16:15:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 16:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNG1CH048616 for ; Fri, 30 May 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNG1DD082260 for ; Fri, 30 May 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNG0bb018587; Fri, 30 May 2003 16:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNFvbb018581 for ; Fri, 30 May 2003 16:15:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNFvDD082258 for ; Fri, 30 May 2003 16:15:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNFvQg060630 for ; Fri, 30 May 2003 16:15:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UNFvea060629; Fri, 30 May 2003 16:15:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200305302315.h4UNFvea060629@xorpc.icir.org> Date: Fri, 30 May 2003 16:15:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/05/30 16:15:57 Modified files: xorp/libxipc/: xrl_pf.hh Log message: Remove long deprecate XrlPFListener::Reply structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 16:40:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 16:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNf1CH051646 for ; Fri, 30 May 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNf1DD082458 for ; Fri, 30 May 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNf0bb018964; Fri, 30 May 2003 16:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNeAbb018950 for ; Fri, 30 May 2003 16:40:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNeADD082456 for ; Fri, 30 May 2003 16:40:10 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNeAQg060818 for ; Fri, 30 May 2003 16:40:10 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UNeAVx060817; Fri, 30 May 2003 16:40:10 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200305302340.h4UNeAVx060817@xorpc.icir.org> Date: Fri, 30 May 2003 16:40:10 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/05/30 16:40:10 Modified files: xorp/mibs/: Makefile.am Makefile.in xorp/mibs/tests/: test_bgpmib.sh.in Log message: Modified libnetsnmpxorp.so link rules to include all the symbols from XORP libraries. Added more informative messages to test_bgpmib.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 16:57:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 16:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNw1CH053746 for ; Fri, 30 May 2003 16:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNw1DD082585; Fri, 30 May 2003 16:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNw0bb019238; Fri, 30 May 2003 16:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4UNvAbb019225 for ; Fri, 30 May 2003 16:57:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNvADD082575 for ; Fri, 30 May 2003 16:57:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4UNvAQg060903 for ; Fri, 30 May 2003 16:57:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4UNvA0F060902; Fri, 30 May 2003 16:57:10 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305302357.h4UNvA0F060902@xorpc.icir.org> Date: Fri, 30 May 2003 16:57:10 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/30 16:57:10 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc task.hh Log message: rtrmgr will now attempt to stop processes when the router config no longer requires them to be running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 23:13:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6E2CH084096 for ; Fri, 30 May 2003 23:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6E1DD085025 for ; Fri, 30 May 2003 23:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6E1bb023243; Fri, 30 May 2003 23:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6DGbb023226 for ; Fri, 30 May 2003 23:13:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6DGDD085019 for ; Fri, 30 May 2003 23:13:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6DFQg008633 for ; Fri, 30 May 2003 23:13:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6DF33008632; Fri, 30 May 2003 23:13:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305310613.h4V6DF33008632@xorpc.icir.org> Date: Fri, 30 May 2003 23:13:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh task.cc task.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/30 23:13:15 Modified files: xorp/rtrmgr/: main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh task.cc task.hh template_commands.cc Log message: Correctly unschedule XRLs for processes that are about to be shut down so that we don't lose track of which commands have been run and which haven't. Fix bug that prevented exiting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 23:41:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6g1CH086205 for ; Fri, 30 May 2003 23:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6g1DD085196 for ; Fri, 30 May 2003 23:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6g0bb023844; Fri, 30 May 2003 23:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6f3bb023827 for ; Fri, 30 May 2003 23:41:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6f3DD085194 for ; Fri, 30 May 2003 23:41:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6f3Qg008913 for ; Fri, 30 May 2003 23:41:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6f3FW008912; Fri, 30 May 2003 23:41:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310641.h4V6f3FW008912@xorpc.icir.org> Date: Fri, 30 May 2003 23:41:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/05/30 23:41:03 Modified files: xorp/cli/: xrl_cli_node.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 23:42:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6h1CH086288 for ; Fri, 30 May 2003 23:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6h1DD085208; Fri, 30 May 2003 23:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6h1bb023872; Fri, 30 May 2003 23:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6gWbb023856 for ; Fri, 30 May 2003 23:42:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6gWDD085202 for ; Fri, 30 May 2003 23:42:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6gVQg008973 for ; Fri, 30 May 2003 23:42:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6gVVT008972; Fri, 30 May 2003 23:42:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310642.h4V6gVVT008972@xorpc.icir.org> Date: Fri, 30 May 2003 23:42:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/ mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/30 23:42:31 Modified files: xorp/xrl/interfaces/: mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/: mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Remove mfea_client/0.1/set_vif_done XRL, because it doesn't serve any useful purpose. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:57 2005 Subject: No subject Fri May 30 23:44:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6j1CH086450 for ; Fri, 30 May 2003 23:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6j1DD085225 for ; Fri, 30 May 2003 23:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6j1bb023913; Fri, 30 May 2003 23:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6iBbb023903 for ; Fri, 30 May 2003 23:44:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6iBDD085216 for ; Fri, 30 May 2003 23:44:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6iBQg009034 for ; Fri, 30 May 2003 23:44:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6iBrv009033; Fri, 30 May 2003 23:44:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310644.h4V6iBrv009033@xorpc.icir.org> Date: Fri, 30 May 2003 23:44:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/30 23:44:11 Modified files: xorp/fea/: xrl_mfea_node.cc xrl_mfea_node.hh Log message: * Remove the usage of mfea_client/0.1/set_vif_done XRL, because it doesn't serve any useful purpose. * Nit in common_0_1_shutdown() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Fri May 30 23:45:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6k1CH086558 for ; Fri, 30 May 2003 23:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6k1DD085252 for ; Fri, 30 May 2003 23:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6k1bb023940; Fri, 30 May 2003 23:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6jMbb023925 for ; Fri, 30 May 2003 23:45:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6jLDD085248 for ; Fri, 30 May 2003 23:45:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6jLQg009087 for ; Fri, 30 May 2003 23:45:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6jLwI009086; Fri, 30 May 2003 23:45:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310645.h4V6jLwI009086@xorpc.icir.org> Date: Fri, 30 May 2003 23:45:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/05/30 23:45:21 Modified files: xorp/mfea/: xrl_mfea_node.cc xrl_mfea_node.hh Log message: * Remove the usage of mfea_client/0.1/set_vif_done XRL, because it doesn't serve any useful purpose. * Nit in common_0_1_shutdown() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Fri May 30 23:45:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 May 2003 23:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6k2CH086577 for ; Fri, 30 May 2003 23:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6k2DD085256 for ; Fri, 30 May 2003 23:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6k2bb023952; Fri, 30 May 2003 23:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V6jwbb023934 for ; Fri, 30 May 2003 23:45:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6jwDD085250 for ; Fri, 30 May 2003 23:45:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V6jwQg009130 for ; Fri, 30 May 2003 23:45:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V6jwf4009129; Fri, 30 May 2003 23:45:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310645.h4V6jwf4009129@xorpc.icir.org> Date: Fri, 30 May 2003 23:45:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/30 23:45:58 Modified files: xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: * Remove the usage of mfea_client/0.1/set_vif_done XRL, because it doesn't serve any useful purpose. * Nit in common_0_1_shutdown() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 0:03:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 00:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V742CH087925 for ; Sat, 31 May 2003 00:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V741DD085407; Sat, 31 May 2003 00:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V741bb024300; Sat, 31 May 2003 00:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V73Xbb024291 for ; Sat, 31 May 2003 00:03:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V73XDD085399 for ; Sat, 31 May 2003 00:03:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V73XQg016672 for ; Sat, 31 May 2003 00:03:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V73XOh016671; Sat, 31 May 2003 00:03:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310703.h4V73XOh016671@xorpc.icir.org> Date: Sat, 31 May 2003 0:03:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 00:03:33 Modified files: xorp/pim/: pim_config.cc pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh Log message: * Add new methods PimNode::start_config() and end_config() that should be called any time we start and end a batch of atomic configuration operations. Currently, the main purpose of start/end_config() is to set the node status (i.e., to set the ProcessStatus code), but in the future they may be used for other purpose as well. Currently, the semantic is that we can call start_config() more than once before we call end_config(). * Add PimNode::_configured_vifs holder to keep a copy of the configured vifs, and add the appropriate methods to add/delete vifs, vif addresses, etc. When the MFEA starts sending XRLs about add/delete vifs, etc. the modifications are performed on _configured_vifs. When "set_all_vifs_done" XRL is sent, then the changes are applied to PimNode. * Modify all configuration methods to call start_config() before attempting to perform configuration, and then call end_config() before returning. Further, add one more parameter to all those config methods: "string& reason" to return-by-reference the message with the reason for failure (if any). * Add new methods bool PimNode::is_waiting_for_mfea_startup() and bool PimNode::is_waiting_for_mld6igmp_startup() to test whether we are waiting to complete startup operations with the MFEA and MLD6IGMP respectively. * Implement a mechnanism to count the number of outstanding events that need to be completed to finish the startup operations with the MFEA and MLD6IGMP. Basically, it is a counter that is incremented when an XRL (from few selected types) is sent to the MFEA or MLD6IGMP, and is decremented when the XRL result is received. * Implement PimNode::node_status() method to obtain the node status and the message with the human-readable information about the status (e.g., the progress-report in case of PROC_SHUTDOWN, the reason for waiting in case of PROC_STARTUP, etc). * Remove the usage of mfea_client/0.1/set_vif_done XRL, because it doesn't serve any useful purpose. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 0:34:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 00:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V7Z1CH090273 for ; Sat, 31 May 2003 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V7Z1DD085584 for ; Sat, 31 May 2003 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V7Z1bb024620; Sat, 31 May 2003 00:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4V7YXbb024611 for ; Sat, 31 May 2003 00:34:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V7YWDD085577 for ; Sat, 31 May 2003 00:34:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4V7YWQg029035 for ; Sat, 31 May 2003 00:34:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4V7YWvq029034; Sat, 31 May 2003 00:34:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305310734.h4V7YWvq029034@xorpc.icir.org> Date: Sat, 31 May 2003 0:34:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/config/ acipv6.m4 acxorp.m4 xorp/mibs/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/05/31 00:34:32 Modified files: ./: configure configure.in xorp/config/: acipv6.m4 acxorp.m4 xorp/mibs/: Makefile.in Log message: Nitlets: Change most test $foo = bar to test "X${foo} = "Xbar" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 8:22:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 08:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VFN2CH029989 for ; Sat, 31 May 2003 08:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VFN1DD093215 for ; Sat, 31 May 2003 08:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VFN1bb001527; Sat, 31 May 2003 08:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VFMXbb001519 for ; Sat, 31 May 2003 08:22:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VFMXDD093212 for ; Sat, 31 May 2003 08:22:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VFMXQg035027 for ; Sat, 31 May 2003 08:22:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VFMXp0035026; Sat, 31 May 2003 08:22:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311522.h4VFMXp0035026@xorpc.icir.org> Date: Sat, 31 May 2003 8:22:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/config/ acipv6.m4 acxorp.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/05/31 08:22:32 Modified files: ./: configure configure.in xorp/config/: acipv6.m4 acxorp.m4 Log message: Replace test "X${foo}" = "Xbar" with test "${foo} = "bar" (because they are equivalent, and the second form is cleaner). [Recommended by ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:16:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH1CH034052 for ; Sat, 31 May 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH1DD093613 for ; Sat, 31 May 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGH1bb002075; Sat, 31 May 2003 09:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGG1bb002049 for ; Sat, 31 May 2003 09:16:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGG0DD093603 for ; Sat, 31 May 2003 09:16:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGG0Qg035494 for ; Sat, 31 May 2003 09:16:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGG0Pv035493; Sat, 31 May 2003 09:16:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311616.h4VGG0Pv035493@xorpc.icir.org> Date: Sat, 31 May 2003 9:16:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:16:00 Modified files: xorp/pim/: xrl_pim_node.cc Log message: Replace string("foo") with c_format("foo"). Thus, we can avoid the problem if "foo" is modified to include with printf-like arguments and we forget to perform the above replacement (as it was one of the cases). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:16:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH2CH034071 for ; Sat, 31 May 2003 09:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH2DD093618; Sat, 31 May 2003 09:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGH2bb002088; Sat, 31 May 2003 09:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGGQbb002057 for ; Sat, 31 May 2003 09:16:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGQDD093605 for ; Sat, 31 May 2003 09:16:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGQQg035532 for ; Sat, 31 May 2003 09:16:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGGQPV035531; Sat, 31 May 2003 09:16:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311616.h4VGGQPV035531@xorpc.icir.org> Date: Sat, 31 May 2003 9:16:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:16:26 Modified files: xorp/mld6igmp/: xrl_mld6igmp_node.cc Log message: Replace string("foo") with c_format("foo"). Thus, we can avoid the problem if "foo" is modified to include with printf-like arguments and we forget to perform the above replacement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:16:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH3CH034090 for ; Sat, 31 May 2003 09:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH3DD093621 for ; Sat, 31 May 2003 09:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGH2bb002097; Sat, 31 May 2003 09:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGGdbb002065 for ; Sat, 31 May 2003 09:16:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGdDD093609 for ; Sat, 31 May 2003 09:16:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGdQg035570 for ; Sat, 31 May 2003 09:16:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGGdsk035569; Sat, 31 May 2003 09:16:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311616.h4VGGdsk035569@xorpc.icir.org> Date: Sat, 31 May 2003 9:16:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:16:39 Modified files: xorp/mfea/: xrl_mfea_node.cc Log message: Replace string("foo") with c_format("foo"). Thus, we can avoid the problem if "foo" is modified to include with printf-like arguments and we forget to perform the above replacement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:16:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:17:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH4CH034109 for ; Sat, 31 May 2003 09:17:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGH3DD093625 for ; Sat, 31 May 2003 09:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGH3bb002108; Sat, 31 May 2003 09:17:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGGvbb002069 for ; Sat, 31 May 2003 09:16:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGvDD093611 for ; Sat, 31 May 2003 09:16:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGGvQg035617 for ; Sat, 31 May 2003 09:16:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGGvGQ035616; Sat, 31 May 2003 09:16:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311616.h4VGGvGQ035616@xorpc.icir.org> Date: Sat, 31 May 2003 9:16:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:16:57 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: Replace string("foo") with c_format("foo"). Thus, we can avoid the problem if "foo" is modified to include with printf-like arguments and we forget to perform the above replacement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:35:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGa1CH035542 for ; Sat, 31 May 2003 09:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGa1DD093758 for ; Sat, 31 May 2003 09:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGa1bb002328; Sat, 31 May 2003 09:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGZVbb002317 for ; Sat, 31 May 2003 09:35:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGZVDD093756 for ; Sat, 31 May 2003 09:35:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGZVQg035850 for ; Sat, 31 May 2003 09:35:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGZVhR035849; Sat, 31 May 2003 09:35:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311635.h4VGZVhR035849@xorpc.icir.org> Date: Sat, 31 May 2003 9:35:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:35:31 Modified files: xorp/pim/: test_pim.cc Log message: Apply a work-around solution of a problem when the FinderServer(EventLoop& e) constructor is used to create an in-process finder: * If we use the FinderServer(EventLoop& e) constructor, then the finder uses the if_get_preferred() IP address (i.e., the address of one of the network interfaces) to bind to. However, then it refuses connections from the local host (when using libxipc/call_xrl), most likely because they come from address 127.0.0.1, and the finder is not binding to that address. Hence, the following constructor is used instead (with if_addr of IPv4::ANY() and port of FINDER_NG_TCP_DEFAULT_PORT): FinderServer(EventLoop& e, IPv4 if_addr, uint16_t port) * Interestingly, even if the Finder binds to IPv4::ANY(), it is still receiving some requests from the address of the local network interface which however are not permitted by default. To fix this, used add_permitted_host(if_get_preferred()); _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 9:41:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 09:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGg1CH036029 for ; Sat, 31 May 2003 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGg1DD093819; Sat, 31 May 2003 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGg1bb002420; Sat, 31 May 2003 09:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VGfMbb002411 for ; Sat, 31 May 2003 09:41:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGfMDD093816 for ; Sat, 31 May 2003 09:41:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VGfMQg036065 for ; Sat, 31 May 2003 09:41:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VGfMeh036064; Sat, 31 May 2003 09:41:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311641.h4VGfMeh036064@xorpc.icir.org> Date: Sat, 31 May 2003 9:41:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/31 09:41:22 Modified files: xorp/cli/: test_cli.cc xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc Log message: Apply a work-around solution of a problem when the FinderServer(EventLoop& e) constructor is used to create an in-process finder: * If we use the FinderServer(EventLoop& e) constructor, then the finder uses the if_get_preferred() IP address (i.e., the address of one of the network interfaces) to bind to. However, then it refuses connections from the local host (when using libxipc/call_xrl), most likely because they come from address 127.0.0.1, and the finder is not binding to that address. Hence, the following constructor is used instead (with if_addr of IPv4::ANY() and port of FINDER_NG_TCP_DEFAULT_PORT): FinderServer(EventLoop& e, IPv4 if_addr, uint16_t port) * Interestingly, even if the Finder binds to IPv4::ANY(), it is still receiving some requests from the address of the local network interface which however are not permitted by default. To fix this, used add_permitted_host(if_get_preferred()); _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 10:43:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 10:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHi1CH040656 for ; Sat, 31 May 2003 10:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHi1DD094281 for ; Sat, 31 May 2003 10:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHi1bb003053; Sat, 31 May 2003 10:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHh1bb003040 for ; Sat, 31 May 2003 10:43:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHh1DD094279 for ; Sat, 31 May 2003 10:43:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHh1Qg042394 for ; Sat, 31 May 2003 10:43:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VHh18t042393; Sat, 31 May 2003 10:43:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311743.h4VHh18t042393@xorpc.icir.org> Date: Sat, 31 May 2003 10:43:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ configure_mfea xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/31 10:43:00 Modified files: xorp/mfea/: configure_mfea xorp/mld6igmp/: configure_mld6igmp Log message: Stylistic nit: replace $foo with ${foo} _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 10:45:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 10:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHk1CH040839 for ; Sat, 31 May 2003 10:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHk1DD094316 for ; Sat, 31 May 2003 10:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHk1bb003082; Sat, 31 May 2003 10:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHj7bb003075 for ; Sat, 31 May 2003 10:45:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHj7DD094307 for ; Sat, 31 May 2003 10:45:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHj7Qg042464 for ; Sat, 31 May 2003 10:45:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VHj7CZ042463; Sat, 31 May 2003 10:45:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311745.h4VHj7CZ042463@xorpc.icir.org> Date: Sat, 31 May 2003 10:45:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 03/05/31 10:45:07 Modified files: xorp/xrl/interfaces/: pim.xif Log message: Rename: add_config_rp{4,6} delete_config_rp{4,6} config_rp_done with add_config_static_rp{4,6} delete_config_static_rp{4,6} config_static_rp_done respectively _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 10:49:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 10:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHo1CH041137 for ; Sat, 31 May 2003 10:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHo1DD094329 for ; Sat, 31 May 2003 10:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHo0bb003126; Sat, 31 May 2003 10:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHnhbb003117 for ; Sat, 31 May 2003 10:49:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHnhDD094324 for ; Sat, 31 May 2003 10:49:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHnhQg042631 for ; Sat, 31 May 2003 10:49:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VHnhpZ042630; Sat, 31 May 2003 10:49:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311749.h4VHnhpZ042630@xorpc.icir.org> Date: Sat, 31 May 2003 10:49:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 10:49:43 Modified files: xorp/pim/: pim_node.cc Log message: On startup, the node status is PROC_READY instead of PROC_STARTUP. The reason is because we don't really need to wait for the MFEA and/or MLD6IGMP to be configured. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 10:53:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 10:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHs1CH041449 for ; Sat, 31 May 2003 10:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHs0DD094366 for ; Sat, 31 May 2003 10:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHs0bb003168; Sat, 31 May 2003 10:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VHrcbb003162 for ; Sat, 31 May 2003 10:53:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHrcDD094364 for ; Sat, 31 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VHrcQg042725 for ; Sat, 31 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VHrcFX042724; Sat, 31 May 2003 10:53:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305311753.h4VHrcFX042724@xorpc.icir.org> Date: Sat, 31 May 2003 10:53:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim pim_config.cc pim_node.hh xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 10:53:38 Modified files: xorp/pim/: configure_pim pim_config.cc pim_node.hh xrl_pim_node.cc xrl_pim_node.hh Log message: * Rename: add_config_rp{4,6} delete_config_rp{4,6} config_rp_done with add_config_static_rp{4,6} delete_config_static_rp{4,6} config_static_rp_done respectively * Call end_config() at the end of each add/delete cand-RP when configuring non-static RPs * Stylistic nit to configure_pim: replace $foo with ${foo} * Call pim_config_static_rp_done (inside configure_pim) only if there are static RPs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 15:33:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 15:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMY1CH065119 for ; Sat, 31 May 2003 15:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMY1DD096869 for ; Sat, 31 May 2003 15:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VMY1bb005854; Sat, 31 May 2003 15:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VMXTbb005833 for ; Sat, 31 May 2003 15:33:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMXTDD096863 for ; Sat, 31 May 2003 15:33:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMXSQg091031 for ; Sat, 31 May 2003 15:33:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VMXSDf091030; Sat, 31 May 2003 15:33:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305312233.h4VMXSDf091030@xorpc.icir.org> Date: Sat, 31 May 2003 15:33:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc module_command.cc module_command.hh module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/31 15:33:28 Modified files: xorp/rtrmgr/: master_conf_tree.cc module_command.cc module_command.hh module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Log message: Add code to actually call shutdown XRLs. Fix bug in task ordering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 15:56:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 15:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMv1CH067741 for ; Sat, 31 May 2003 15:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMv1DD097022; Sat, 31 May 2003 15:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VMv1bb006106; Sat, 31 May 2003 15:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VMuFbb006090 for ; Sat, 31 May 2003 15:56:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMuEDD097017 for ; Sat, 31 May 2003 15:56:14 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VMuEQg091196 for ; Sat, 31 May 2003 15:56:14 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VMuEIE091195; Sat, 31 May 2003 15:56:14 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305312256.h4VMuEIE091195@xorpc.icir.org> Date: Sat, 31 May 2003 15:56:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/05/31 15:56:14 Modified files: xorp/bgp/: main.cc Log message: Return correct status when shutting down. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:58 2005 Subject: No subject Sat May 31 16:08:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VN91CH069100 for ; Sat, 31 May 2003 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VN90DD097110 for ; Sat, 31 May 2003 16:09:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VN90bb006249; Sat, 31 May 2003 16:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VN8Vbb006224 for ; Sat, 31 May 2003 16:08:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VN8VDD097108 for ; Sat, 31 May 2003 16:08:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VN8VQg091301 for ; Sat, 31 May 2003 16:08:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VN8UOH091299; Sat, 31 May 2003 16:08:30 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305312308.h4VN8UOH091299@xorpc.icir.org> Date: Sat, 31 May 2003 16:08:30 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/05/31 16:08:30 Modified files: xorp/rib/: rib_manager.cc Log message: return the correct status code while shutting down. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 16:14:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 16:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNF1CH069794 for ; Sat, 31 May 2003 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNF1DD097152; Sat, 31 May 2003 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNF1bb006336; Sat, 31 May 2003 16:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNEGbb006323 for ; Sat, 31 May 2003 16:14:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNEFDD097141 for ; Sat, 31 May 2003 16:14:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNEFQg091382 for ; Sat, 31 May 2003 16:14:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VNEFhT091381; Sat, 31 May 2003 16:14:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305312314.h4VNEFhT091381@xorpc.icir.org> Date: Sat, 31 May 2003 16:14:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/05/31 16:14:15 Modified files: xorp/rib/: main_rib.cc rib_manager.cc Log message: The RIB's shutdown XRL wasn't actually shutting down the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 16:23:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 16:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNO1CH070832 for ; Sat, 31 May 2003 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNO1DD097229; Sat, 31 May 2003 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNO1bb006425; Sat, 31 May 2003 16:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNNQbb006417 for ; Sat, 31 May 2003 16:23:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNNQDD097227 for ; Sat, 31 May 2003 16:23:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNNPQg091523 for ; Sat, 31 May 2003 16:23:25 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VNNP2e091522; Sat, 31 May 2003 16:23:25 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200305312323.h4VNNP2e091522@xorpc.icir.org> Date: Sat, 31 May 2003 16:23:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/05/31 16:23:25 Modified files: xorp/rtrmgr/: TODO Log message: Update _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 16:27:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 16:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNS1CH071293 for ; Sat, 31 May 2003 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNS1DD097258 for ; Sat, 31 May 2003 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNS0bb006486; Sat, 31 May 2003 16:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h4VNRnbb006478 for ; Sat, 31 May 2003 16:27:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNRmDD097256 for ; Sat, 31 May 2003 16:27:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h4VNRmQg091634 for ; Sat, 31 May 2003 16:27:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h4VNRmLH091633; Sat, 31 May 2003 16:27:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200305312327.h4VNRmLH091633@xorpc.icir.org> Date: Sat, 31 May 2003 16:27:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 16:27:48 Modified files: xorp/fea/: mfea_node.cc Log message: If the MFEA doesn't know about any vifs yet, then don't read the unicast routing table; instead, reschedule the timer to attempt again after 1/4th + 1 sec of the normal reread interval. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 17:11:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 17:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h510C1CH076274 for ; Sat, 31 May 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h510C1DD097567 for ; Sat, 31 May 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h510C0bb006912; Sat, 31 May 2003 17:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h510B4bb006901 for ; Sat, 31 May 2003 17:11:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h510B4DD097564 for ; Sat, 31 May 2003 17:11:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h510B4Qg092158 for ; Sat, 31 May 2003 17:11:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h510B4ju092157; Sat, 31 May 2003 17:11:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010011.h510B4ju092157@xorpc.icir.org> Date: Sat, 31 May 2003 17:11:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/31 17:11:04 Modified files: xorp/xrl/interfaces/: pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Commit auto-generated files which somehow were left behind uncommited after XRL renaming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 18:55:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 18:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h511u1CH088227 for ; Sat, 31 May 2003 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h511u1DD098434 for ; Sat, 31 May 2003 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h511u1bb007817; Sat, 31 May 2003 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h511twbb007810 for ; Sat, 31 May 2003 18:55:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h511tvDD098432 for ; Sat, 31 May 2003 18:55:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h511tvQg016251 for ; Sat, 31 May 2003 18:55:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h511tvfW016250; Sat, 31 May 2003 18:55:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010155.h511tvfW016250@xorpc.icir.org> Date: Sat, 31 May 2003 18:55:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/31 18:55:57 Modified files: xorp/rib/: vifmanager.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:07:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h51281CH089659 for ; Sat, 31 May 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51281DD098515; Sat, 31 May 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51280bb007942; Sat, 31 May 2003 19:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5127Ebb007931 for ; Sat, 31 May 2003 19:07:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5127EDD098507 for ; Sat, 31 May 2003 19:07:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5127DQg018841 for ; Sat, 31 May 2003 19:07:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5127DWG018840; Sat, 31 May 2003 19:07:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010207.h5127DWG018840@xorpc.icir.org> Date: Sat, 31 May 2003 19:07:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:07:13 Modified files: xorp/libproto/: proto_node.hh Log message: Move the following configuration-related methods from PimNode to the generic ProtoNode: start_config end_config add_config_vif delete_config_vif add_config_vif_addr delete_config_vif_addr set_config_vif_flags Note that for the time being set_config_all_vifs_done remains in PimNode, because it has to call some protocol specific methods to set the vifs per protocol node. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:10:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512A2CH089913 for ; Sat, 31 May 2003 19:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512A2DD098531; Sat, 31 May 2003 19:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512A2bb007964; Sat, 31 May 2003 19:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512A0bb007956 for ; Sat, 31 May 2003 19:10:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512A0DD098527 for ; Sat, 31 May 2003 19:10:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512A0Qg019331 for ; Sat, 31 May 2003 19:10:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512A07B019328; Sat, 31 May 2003 19:10:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010210.h512A07B019328@xorpc.icir.org> Date: Sat, 31 May 2003 19:10:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/ mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:10:00 Modified files: xorp/xrl/interfaces/: mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh xorp/xrl/targets/: mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Remove the vif_index parameter from the following mfea_client XRLs, because it is not really needed (each XRL already has vif_name argument): delete_vif add_vif_addr[4,6] delete_vif_addr[4,6] set_vif_flags _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:11:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512C1CH090169 for ; Sat, 31 May 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512C0DD098560 for ; Sat, 31 May 2003 19:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512C0bb007991; Sat, 31 May 2003 19:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512BJbb007983 for ; Sat, 31 May 2003 19:11:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512BJDD098558 for ; Sat, 31 May 2003 19:11:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512BJQg026593 for ; Sat, 31 May 2003 19:11:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512BJLU026592; Sat, 31 May 2003 19:11:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010211.h512BJLU026592@xorpc.icir.org> Date: Sat, 31 May 2003 19:11:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:11:19 Modified files: xorp/mfea/: xrl_mfea_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: Remove the vif_index parameter from the following mfea_client XRLs, because it is not really needed (each XRL already has vif_name argument): delete_vif add_vif_addr[4,6] delete_vif_addr[4,6] set_vif_flags _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:12:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512D1CH090300 for ; Sat, 31 May 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512D1DD098578 for ; Sat, 31 May 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512D0bb008021; Sat, 31 May 2003 19:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512CMbb008007 for ; Sat, 31 May 2003 19:12:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512CMDD098574 for ; Sat, 31 May 2003 19:12:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512CLQg027216 for ; Sat, 31 May 2003 19:12:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512CLwV027215; Sat, 31 May 2003 19:12:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010212.h512CLwV027215@xorpc.icir.org> Date: Sat, 31 May 2003 19:12:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:12:21 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:13:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512E1CH090439 for ; Sat, 31 May 2003 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512E1DD098586 for ; Sat, 31 May 2003 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512E1bb008040; Sat, 31 May 2003 19:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512Dkbb008034 for ; Sat, 31 May 2003 19:13:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512DkDD098584 for ; Sat, 31 May 2003 19:13:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512DkQg027752 for ; Sat, 31 May 2003 19:13:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512Dkc8027751; Sat, 31 May 2003 19:13:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010213.h512Dkc8027751@xorpc.icir.org> Date: Sat, 31 May 2003 19:13:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.hh xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:13:45 Modified files: xorp/pim/: xrl_pim_node.hh xrl_pim_node.cc Log message: Remove the vif_index parameter from the following mfea_client XRLs, because it is not really needed (each XRL already has vif_name argument): delete_vif add_vif_addr[4,6] delete_vif_addr[4,6] set_vif_flags _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:14:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512F1CH090573 for ; Sat, 31 May 2003 19:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512F1DD098601; Sat, 31 May 2003 19:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512F1bb008065; Sat, 31 May 2003 19:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512Epbb008057 for ; Sat, 31 May 2003 19:14:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512EpDD098594 for ; Sat, 31 May 2003 19:14:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512EoQg028253 for ; Sat, 31 May 2003 19:14:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512Eo0G028249; Sat, 31 May 2003 19:14:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010214.h512Eo0G028249@xorpc.icir.org> Date: Sat, 31 May 2003 19:14:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:14:50 Modified files: xorp/pim/: pim_config.cc pim_node.hh Log message: Move the following configuration-related methods from PimNode to the generic ProtoNode: start_config end_config add_config_vif delete_config_vif add_config_vif_addr delete_config_vif_addr set_config_vif_flags Note that for the time being set_config_all_vifs_done remains in PimNode, because it has to call some protocol specific methods to set the vifs per protocol node. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:17:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512I1CH090945 for ; Sat, 31 May 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512I1DD098633; Sat, 31 May 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512I1bb008096; Sat, 31 May 2003 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512H1bb008084 for ; Sat, 31 May 2003 19:17:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512H1DD098626 for ; Sat, 31 May 2003 19:17:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512H1Qg029170 for ; Sat, 31 May 2003 19:17:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512H1RO029169; Sat, 31 May 2003 19:17:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010217.h512H1RO029169@xorpc.icir.org> Date: Sat, 31 May 2003 19:17:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:17:01 Modified files: xorp/fea/: mfea_config.cc mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh Log message: * Add the appropriate hooks to propagate vif info changes to MFEA registered clients. * Remove the vif_index parameter from the following mfea_client XRLs, because it is not really needed (each XRL already has vif_name argument): delete_vif add_vif_addr[4,6] delete_vif_addr[4,6] set_vif_flags * A bugfix when propagating the vif info when a new protocol registers with the MFEA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:18:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512J1CH091080 for ; Sat, 31 May 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512J0DD098641 for ; Sat, 31 May 2003 19:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512J0bb008115; Sat, 31 May 2003 19:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512INbb008107 for ; Sat, 31 May 2003 19:18:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512INDD098638 for ; Sat, 31 May 2003 19:18:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512INQg029713 for ; Sat, 31 May 2003 19:18:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512IN3V029712; Sat, 31 May 2003 19:18:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010218.h512IN3V029712@xorpc.icir.org> Date: Sat, 31 May 2003 19:18:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:18:23 Modified files: xorp/mfea/: xrl_mfea_node.cc Log message: A bugfix when propagating the vif info when a new protocol registers with the MFEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:46:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512l1CH094421 for ; Sat, 31 May 2003 19:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512l0DD098852 for ; Sat, 31 May 2003 19:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512l0bb008380; Sat, 31 May 2003 19:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512kjbb008373 for ; Sat, 31 May 2003 19:46:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512kjDD098846 for ; Sat, 31 May 2003 19:46:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512kjQg041198 for ; Sat, 31 May 2003 19:46:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512kj79041197; Sat, 31 May 2003 19:46:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010246.h512kj79041197@xorpc.icir.org> Date: Sat, 31 May 2003 19:46:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:46:44 Modified files: xorp/pim/: pim_config.cc xorp/rib/: vifmanager.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sat May 31 19:49:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 May 2003 19:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h512o1CH094809 for ; Sat, 31 May 2003 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512o0DD098884 for ; Sat, 31 May 2003 19:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512o0bb008422; Sat, 31 May 2003 19:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h512nubb008415 for ; Sat, 31 May 2003 19:49:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h512nuDD098877 for ; Sat, 31 May 2003 19:49:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h512nuQg042650 for ; Sat, 31 May 2003 19:49:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h512nuB1042649; Sat, 31 May 2003 19:49:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306010249.h512nuB1042649@xorpc.icir.org> Date: Sat, 31 May 2003 19:49:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_node.cc xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/05/31 19:49:56 Modified files: xorp/fea/: mfea_config.cc mfea_node.cc xrl_mfea_vif_manager.cc Log message: Plug-in the hooks to propagate the vif info from the MFEA to the MFEA clients. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sun Jun 1 14:37:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 14:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Lc1CH025668 for ; Sun, 1 Jun 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Lc1DD008936 for ; Sun, 1 Jun 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51Lc0bb021275; Sun, 1 Jun 2003 14:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51LbUbb021264 for ; Sun, 1 Jun 2003 14:37:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LbTDD008932 for ; Sun, 1 Jun 2003 14:37:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LbTQg004249 for ; Sun, 1 Jun 2003 14:37:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h51LbTEc004248; Sun, 1 Jun 2003 14:37:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306012137.h51LbTEc004248@xorpc.icir.org> Date: Sun, 1 Jun 2003 14:37:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in call_xrl.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.hh finder_main.cc finder_server.hh finder_tcp.cc finder_tcp.hh ...finder_tcp_messenger.hh ...finder_xrl_queue.hh ...finder_xrl_target.cc ...sockutil.cc ...sockutil.hh ...test_finder.cc ...test_finder_events.cc ...test_finder_tcp.cc ...test_finder_to.cc ...xrl_router.cc ...xrl_router.hh ...xrl_std_router.hh xorp/libxipc/ finder_constants.hh finder_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/01 14:37:29 Modified files: xorp/libxipc/: Makefile.am Makefile.in call_xrl.cc finder.hh finder_client.cc finder_client.hh finder_client_xrl_target.hh finder_main.cc finder_server.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.hh finder_xrl_queue.hh finder_xrl_target.cc sockutil.cc sockutil.hh test_finder.cc test_finder_events.cc test_finder_tcp.cc test_finder_to.cc xrl_router.cc xrl_router.hh xrl_std_router.hh Added files: xorp/libxipc/: finder_constants.hh finder_server.cc Log message: o Remove preferred interface and associated magic from finder receive processing. o Change to FinderServer as default instance of Finder. o Assorted minor clean-ups. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sun Jun 1 14:37:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 14:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Lc2CH025687 for ; Sun, 1 Jun 2003 14:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Lc2DD008940 for ; Sun, 1 Jun 2003 14:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51Lc1bb021286; Sun, 1 Jun 2003 14:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51Lbpbb021269 for ; Sun, 1 Jun 2003 14:37:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LbpDD008934 for ; Sun, 1 Jun 2003 14:37:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LbpQg004268 for ; Sun, 1 Jun 2003 14:37:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h51Lbp2E004267; Sun, 1 Jun 2003 14:37:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306012137.h51Lbp2E004267@xorpc.icir.org> Date: Sun, 1 Jun 2003 14:37:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/06/01 14:37:51 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Use FinderServer class to instantiate Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sun Jun 1 14:38:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 14:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Ld1CH025810 for ; Sun, 1 Jun 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51Ld1DD008955 for ; Sun, 1 Jun 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51Ld1bb021308; Sun, 1 Jun 2003 14:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51LcEbb021300 for ; Sun, 1 Jun 2003 14:38:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LcEDD008946 for ; Sun, 1 Jun 2003 14:38:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h51LcEQg004307 for ; Sun, 1 Jun 2003 14:38:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h51LcD7x004306; Sun, 1 Jun 2003 14:38:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306012138.h51LcD7x004306@xorpc.icir.org> Date: Sun, 1 Jun 2003 14:38:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc xorp/mfea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 03/06/01 14:38:13 Modified files: xorp/cli/: test_cli.cc xorp/mfea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc Log message: Sync Finder related code with libxipc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sun Jun 1 15:34:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 15:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h51MZ1CH032125 for ; Sun, 1 Jun 2003 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51MZ1DD009384; Sun, 1 Jun 2003 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51MZ1bb021860; Sun, 1 Jun 2003 15:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h51MY5bb021841 for ; Sun, 1 Jun 2003 15:34:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h51MY5DD009378 for ; Sun, 1 Jun 2003 15:34:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h51MY5Qg005375 for ; Sun, 1 Jun 2003 15:34:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h51MY5vW005374; Sun, 1 Jun 2003 15:34:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306012234.h51MY5vW005374@xorpc.icir.org> Date: Sun, 1 Jun 2003 15:34:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea_base.cc ...fea_base.hh ...finder_base.cc ...finder_base.hh ...finder_client_base.cc ...finder_client_base.hh ...mfea_base.cc ...mfea_base.hh ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf_base.cc ...ospf_base.hh ...pim_base.cc ...pim_base.hh ...rib_base.cc ...rib_base.hh ...ribclient_base.cc ...ribclient_base.hh ...rtrmgr_base.cc ...rtrmgr_base.hh ...test_base.cc ...test_base.hh ...test_finder_events_base.cc ...test_finder_events_base.hh ...test_peer_base.cc ...test_peer_base.hh ...xorp_if_mib_base.cc ...xorp_if_mib_base.hh ...xorpsh_base.cc ...xorpsh_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/06/01 15:34:05 Modified files: xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea_base.cc fea_base.hh finder_base.cc finder_base.hh finder_client_base.cc finder_client_base.hh mfea_base.cc mfea_base.hh mld6igmp_base.cc mld6igmp_base.hh ospf_base.cc ospf_base.hh pim_base.cc pim_base.hh rib_base.cc rib_base.hh ribclient_base.cc ribclient_base.hh rtrmgr_base.cc rtrmgr_base.hh test_base.cc test_base.hh test_finder_events_base.cc test_finder_events_base.hh test_peer_base.cc test_peer_base.hh xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh_base.cc xorpsh_base.hh Log message: Don't print Xrl error string and associated note. The text of the note is included in the error string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:10:59 2005 Subject: No subject Sun Jun 1 18:54:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 18:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h521t1CH050012 for ; Sun, 1 Jun 2003 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521t1DD010830 for ; Sun, 1 Jun 2003 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521t1bb023655; Sun, 1 Jun 2003 18:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521sTbb023647 for ; Sun, 1 Jun 2003 18:54:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521sTDD010825 for ; Sun, 1 Jun 2003 18:54:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h521sSQg040380 for ; Sun, 1 Jun 2003 18:54:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h521sSDK040379; Sun, 1 Jun 2003 18:54:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020154.h521sSDK040379@xorpc.icir.org> Date: Sun, 1 Jun 2003 18:54:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/06/01 18:54:28 Modified files: xorp/mfea/: xrl_mfea_node.cc Log message: Bugfix: add missing "case AF_INET6:" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 18:57:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 18:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h521w1CH050264 for ; Sun, 1 Jun 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521w0DD010863 for ; Sun, 1 Jun 2003 18:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521w0bb023695; Sun, 1 Jun 2003 18:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521vGbb023686 for ; Sun, 1 Jun 2003 18:57:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521vGDD010861 for ; Sun, 1 Jun 2003 18:57:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h521vGQg041144 for ; Sun, 1 Jun 2003 18:57:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h521vGdQ041143; Sun, 1 Jun 2003 18:57:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020157.h521vGdQ041143@xorpc.icir.org> Date: Sun, 1 Jun 2003 18:57:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/06/01 18:57:16 Modified files: xorp/libproto/: proto_node.hh Log message: * Add new methods: ProtoNode::find_unused_config_vif_index() ProtoNode::add_config_vif(const Vif& vif, string& reason) * Nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 18:58:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 18:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h521x1CH050355 for ; Sun, 1 Jun 2003 18:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521x1DD010873 for ; Sun, 1 Jun 2003 18:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521x0bb023714; Sun, 1 Jun 2003 18:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h521wYbb023708 for ; Sun, 1 Jun 2003 18:58:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h521wYDD010869 for ; Sun, 1 Jun 2003 18:58:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h521wYQg041653 for ; Sun, 1 Jun 2003 18:58:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h521wYVI041652; Sun, 1 Jun 2003 18:58:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020158.h521wYVI041652@xorpc.icir.org> Date: Sun, 1 Jun 2003 18:58:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/01 18:58:34 Modified files: xorp/fea/: fea.cc fea_dummy.cc Log message: Add missing finder_hostname and finder_port arguments to the MFEA-related XrlStdRouter instances. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 19:01:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 19:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52221CH050606 for ; Sun, 1 Jun 2003 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52221DD010907 for ; Sun, 1 Jun 2003 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52221bb023748; Sun, 1 Jun 2003 19:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5221Cbb023740 for ; Sun, 1 Jun 2003 19:01:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5221CDD010905 for ; Sun, 1 Jun 2003 19:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5221CQg042205 for ; Sun, 1 Jun 2003 19:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5221CoR042204; Sun, 1 Jun 2003 19:01:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020201.h5221CoR042204@xorpc.icir.org> Date: Sun, 1 Jun 2003 19:01:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/01 19:01:12 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: * Bugfix: add missing "case AF_INET6:" * Semi-bug fix: if a protocol registers interest in receiving the MRIB info, send set_mrib_done XRL only if there were add_mrib4 or add_mrib6 XRLs sent before that (i.e., only if the MRIB wasn't empty). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 19:03:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 19:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52241CH050769 for ; Sun, 1 Jun 2003 19:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52241DD010923 for ; Sun, 1 Jun 2003 19:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52240bb023771; Sun, 1 Jun 2003 19:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5223Xbb023765 for ; Sun, 1 Jun 2003 19:03:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5223XDD010919 for ; Sun, 1 Jun 2003 19:03:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5223WQg042936 for ; Sun, 1 Jun 2003 19:03:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5223Wbj042935; Sun, 1 Jun 2003 19:03:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020203.h5223Wbj042935@xorpc.icir.org> Date: Sun, 1 Jun 2003 19:03:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/01 19:03:32 Modified files: xorp/fea/: mfea_vif.hh Log message: Remove extra _kernel_signal_messages_register per MfeaVif. Only MfeaNode should keep the set of protocols registered interest in receiving kernel signal messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 19:17:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 19:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h522I1CH051850 for ; Sun, 1 Jun 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h522I1DD011044; Sun, 1 Jun 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h522I0bb023912; Sun, 1 Jun 2003 19:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h522HJbb023892 for ; Sun, 1 Jun 2003 19:17:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h522HJDD011041 for ; Sun, 1 Jun 2003 19:17:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h522HJQg052266 for ; Sun, 1 Jun 2003 19:17:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h522HJEs052265; Sun, 1 Jun 2003 19:17:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020217.h522HJEs052265@xorpc.icir.org> Date: Sun, 1 Jun 2003 19:17:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/01 19:17:19 Modified files: xorp/fea/: mfea_config.cc mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh xrl_mfea_vif_manager.cc Log message: * Implement new method MfeaNode::add_config_vif(const Vif& vif, string& reason) * Fix MfeaNode::set_config_all_vifs_done() : Don't call add/delete_config_foo to propagate the changes to all clients. Instead, call only add/delete_foo to setup the changes to MfeaNode only. The add/delete_config_foo should be called earlier directly from the XrlMfeaVifManager instead (or whoever configures the vifs in the Mfea). Though, at the end we still need to call send_set_config_all_vifs_done() to propage the end-of-transaction to all clients. * Move the implementation of add/delete_allow_kernel_signal_messages from MfeaMrouter to MfeaNode. Previously, there was _kernel_signal_messages_register member in both MfeaMrouter and MfeaNode, which was a bug. Now the set of protocols registered in receiving kernel messages is saved only in MfeaNode. * Remove MfeaMrouter:_kernel_signal_messages_register (see the above bullet) * On startup, the MFEA status is PROC_READY, because it doesn't need to wait for the FEA to be configured. * When pim_register MfeaVif is added, use a single add_config_vif(vif, reason) to add it instead of calling a number of add_config_foo() methods. In addition, use find_unused_config_vif_index() instead of find_unused_vif_index() to select its vif_index. * Fix XrlMfeaVifManager::set_vif_state() to operate on the configured vif set (i.e., by calling MfeaNode::add/delete_config_foo), and then complete the transaction by calling MfeaNode::set_config_all_vifs_done() instead of adding/deleting the info directly from the live vif set. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 21:11:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 21:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h524C1CH060421 for ; Sun, 1 Jun 2003 21:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h524C1DD011855 for ; Sun, 1 Jun 2003 21:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h524C0bb025004; Sun, 1 Jun 2003 21:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h524B9bb024987 for ; Sun, 1 Jun 2003 21:11:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h524B9DD011851 for ; Sun, 1 Jun 2003 21:11:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h524B9Qg084887 for ; Sun, 1 Jun 2003 21:11:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h524B9ph084886; Sun, 1 Jun 2003 21:11:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020411.h524B9ph084886@xorpc.icir.org> Date: Sun, 1 Jun 2003 21:11:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in pim_node.cc test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/01 21:11:08 Modified files: xorp/pim/: Makefile.am Makefile.in pim_node.cc test_pim.cc Log message: Switch pim/test_pim to use the MFEA that was merged with the FEA. It seems to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Sun Jun 1 23:54:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Jun 2003 23:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h526t1CH073045 for ; Sun, 1 Jun 2003 23:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h526t1DD012999 for ; Sun, 1 Jun 2003 23:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h526t0bb027157; Sun, 1 Jun 2003 23:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h526sdbb027146 for ; Sun, 1 Jun 2003 23:54:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h526sdDD012994 for ; Sun, 1 Jun 2003 23:54:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h526sdQg086255 for ; Sun, 1 Jun 2003 23:54:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h526scwl086254; Sun, 1 Jun 2003 23:54:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020654.h526scwl086254@xorpc.icir.org> Date: Sun, 1 Jun 2003 23:54:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ getline.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/06/01 23:54:38 Modified files: xorp/cli/libtecla/: getline.c Log message: If we call gl_reset_line(), then move to the end-of-history (for the entered commands so far): - forget any previous recall session - recall the next oldest line in the history list _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 1:06:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 01:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52871CH078506 for ; Mon, 2 Jun 2003 01:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52871DD013564 for ; Mon, 2 Jun 2003 01:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52870bb028273; Mon, 2 Jun 2003 01:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5286Nbb028253 for ; Mon, 2 Jun 2003 01:06:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5286NDD013557 for ; Mon, 2 Jun 2003 01:06:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5286NQg008240 for ; Mon, 2 Jun 2003 01:06:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5286N5K008239; Mon, 2 Jun 2003 01:06:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306020806.h5286N5K008239@xorpc.icir.org> Date: Mon, 2 Jun 2003 1:06:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/02 01:06:22 Modified files: xorp/cli/: cli_client.cc cli_node_net.cc Log message: * Bind Ctrl-C to no-op (by default). Note that this binding applies only within the context of processing input characters. I.e., if the process that uses the CLI doesn't catch-and-ignore Ctrl-C, then Ctrl-C will still kill the process. * Ignore any input except Ctrl-C if waiting for data from previous command. Open question: is this the desired behavior (i.e., shall we buffer the user input received while waiting for output from the previous command?) * Move the Ctrl-C processing from CliClient::client_read() to CliCliClient::process_char(): - Fix the behavior if we interrupt a command that is still pending - Implement the behavior if we hit Ctrl-C before we hit : cancel the current line, and present a new prompt. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 10:12:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 10:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HD1CH021892 for ; Mon, 2 Jun 2003 10:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HD1DD019865; Mon, 2 Jun 2003 10:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HD1bb006393; Mon, 2 Jun 2003 10:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HCYbb006370 for ; Mon, 2 Jun 2003 10:12:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HCXDD019861 for ; Mon, 2 Jun 2003 10:12:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HCXQg084091 for ; Mon, 2 Jun 2003 10:12:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52HCXup084090; Mon, 2 Jun 2003 10:12:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306021712.h52HCXup084090@xorpc.icir.org> Date: Mon, 2 Jun 2003 10:12:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_events.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/02 10:12:33 Modified files: xorp/libxipc/: test_finder_events.cc Log message: Support an external finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 10:20:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 10:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HL1CH022553 for ; Mon, 2 Jun 2003 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HL1DD019946 for ; Mon, 2 Jun 2003 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HL0bb006514; Mon, 2 Jun 2003 10:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HKdbb006505 for ; Mon, 2 Jun 2003 10:20:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HKdDD019940 for ; Mon, 2 Jun 2003 10:20:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HKcQg084184 for ; Mon, 2 Jun 2003 10:20:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52HKcgM084183; Mon, 2 Jun 2003 10:20:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306021720.h52HKcgM084183@xorpc.icir.org> Date: Mon, 2 Jun 2003 10:20:38 () To: xorp-cvs@icir.org Reply-To: status@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xorp/libxipc/ test_finder_deaths.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: status@xorpc.icir.org. 03/06/02 10:20:38 Modified files: xorp/libxipc/: Makefile.am Makefile.in Added files: xorp/libxipc/: test_finder_deaths.sh Log message: Add test script to check finder runs and handles process deaths okay. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 10:22:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 10:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HN1CH022704 for ; Mon, 2 Jun 2003 10:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HN0DD019962 for ; Mon, 2 Jun 2003 10:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HN0bb006573; Mon, 2 Jun 2003 10:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52HMMbb006557 for ; Mon, 2 Jun 2003 10:22:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HMMDD019958 for ; Mon, 2 Jun 2003 10:22:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52HMMQg084250 for ; Mon, 2 Jun 2003 10:22:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52HMMZH084249; Mon, 2 Jun 2003 10:22:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306021722.h52HMMZH084249@xorpc.icir.org> Date: Mon, 2 Jun 2003 10:22:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc finder_tcp_messenger.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/02 10:22:22 Modified files: xorp/libxipc/: finder_tcp.cc finder_tcp_messenger.cc Log message: Do not call close when an error occurrs. Should be triggered by error event handling (risk executing methods on deleted object). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 14:20:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 14:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LL1CH071204 for ; Mon, 2 Jun 2003 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LL1DD022301 for ; Mon, 2 Jun 2003 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52LL1bb011497; Mon, 2 Jun 2003 14:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52LKwbb011490 for ; Mon, 2 Jun 2003 14:20:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LKvDD022299 for ; Mon, 2 Jun 2003 14:20:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LKvQg086869 for ; Mon, 2 Jun 2003 14:20:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52LKvh0086868; Mon, 2 Jun 2003 14:20:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306022120.h52LKvh0086868@xorpc.icir.org> Date: Mon, 2 Jun 2003 14:20:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/02 14:20:57 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc fticonfig_table_get_netlink.cc Log message: Fix a Linux netlink-related problem. When we receive a netlink message from Linux netlink socket, we should probably check that nlmsg_pid of the received message matches our pid. However, it appears that on return Linux doesn't fill-in nlh->nlmsg_pid to our pid (e.g., it may be set to 0xffffefff). Unfortunately, Linux's netlink(7) is not helpful on the subject, hence we ignore this additional test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 14:26:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 14:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LR1CH071938 for ; Mon, 2 Jun 2003 14:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LR1DD022357 for ; Mon, 2 Jun 2003 14:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52LR0bb011633; Mon, 2 Jun 2003 14:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52LQAbb011606 for ; Mon, 2 Jun 2003 14:26:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LQADD022353 for ; Mon, 2 Jun 2003 14:26:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LQ9Qg086939 for ; Mon, 2 Jun 2003 14:26:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52LQ9WU086938; Mon, 2 Jun 2003 14:26:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306022126.h52LQ9WU086938@xorpc.icir.org> Date: Mon, 2 Jun 2003 14:26:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/02 14:26:09 Modified files: xorp/libxipc/: call_xrl.cc Log message: Bump timeout waiting for Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 14:57:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 14:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52Lw1CH076015 for ; Mon, 2 Jun 2003 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52Lw1DD022634; Mon, 2 Jun 2003 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52Lw0bb012251; Mon, 2 Jun 2003 14:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52Lvmbb012235 for ; Mon, 2 Jun 2003 14:57:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LvmDD022626 for ; Mon, 2 Jun 2003 14:57:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52LvmQg087246 for ; Mon, 2 Jun 2003 14:57:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52LvmKO087245; Mon, 2 Jun 2003 14:57:48 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306022157.h52LvmKO087245@xorpc.icir.org> Date: Mon, 2 Jun 2003 14:57:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/02 14:57:48 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: In test1, test peer2 creates a session and injects a large number of routes to the bgp process. Once all the routes have been injected the session is taken down and brought back up. Previously the test was waiting 10 seconds for all the updates to be read by BGP on the TCP connection, sometimes this was not enough and a new TCP connection could not be established as the previous one still existed. Now when the test peers reset the TCP sessions we wait for the BGP process to come out of the established state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:00 2005 Subject: No subject Mon Jun 2 15:27:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 15:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52MS2CH078622 for ; Mon, 2 Jun 2003 15:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52MS1DD022963 for ; Mon, 2 Jun 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52MS1bb012842; Mon, 2 Jun 2003 15:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52MRBbb012815 for ; Mon, 2 Jun 2003 15:27:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52MRADD022957 for ; Mon, 2 Jun 2003 15:27:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52MRAQg087774 for ; Mon, 2 Jun 2003 15:27:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52MRArD087773; Mon, 2 Jun 2003 15:27:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306022227.h52MRArD087773@xorpc.icir.org> Date: Mon, 2 Jun 2003 15:27:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/02 15:27:10 Modified files: xorp/bgp/harness/: peer.cc Log message: Add some debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 16:11:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 16:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NC1CH082386 for ; Mon, 2 Jun 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NC1DD023407 for ; Mon, 2 Jun 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52NC1bb013730; Mon, 2 Jun 2003 16:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52NBQbb013714 for ; Mon, 2 Jun 2003 16:11:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NBQDD023399 for ; Mon, 2 Jun 2003 16:11:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NBQQg088226 for ; Mon, 2 Jun 2003 16:11:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52NBQJL088225; Mon, 2 Jun 2003 16:11:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306022311.h52NBQJL088225@xorpc.icir.org> Date: Mon, 2 Jun 2003 16:11:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/02 16:11:25 Modified files: xorp/rtrmgr/: boot.ll Log message: Allow . in quoted strings. This parser really needs some work to be more robust. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 16:20:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 16:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NL1CH083575 for ; Mon, 2 Jun 2003 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NL1DD023490; Mon, 2 Jun 2003 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52NL1bb013901; Mon, 2 Jun 2003 16:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52NKHbb013886 for ; Mon, 2 Jun 2003 16:20:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NKHDD023483 for ; Mon, 2 Jun 2003 16:20:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NKHQg088317 for ; Mon, 2 Jun 2003 16:20:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52NKHIG088316; Mon, 2 Jun 2003 16:20:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306022320.h52NKHIG088316@xorpc.icir.org> Date: Mon, 2 Jun 2003 16:20:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_table_get.hh fticonfig_table_get_netlink.cc netlink_socket.cc netlink_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/02 16:20:17 Modified files: xorp/fea/: fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_table_get.hh fticonfig_table_get_netlink.cc netlink_socket.cc netlink_socket.hh Log message: Fix a Netlink-related problem for Linux. Unlike routing sockets which when opened with AF_UNSPEC as the third argument have dual IPv4/IPv6 status, we cannot open a netlink socket that is dual (i.e., the third argument must be either NETLINK_ROUTE or NETLINK_ROUTE6). Hence, added two new classes NetlinkSocket4 and NetlinkSocket6 that use the existing NetlinkSocket class as a base class. Then, a NetlinkObserver constructor is created with two arguments: ns4 and ns6, so it is observing both IPv4 and IPv6 netlink sockets. When data is received on either ns4 or ns6, it is passed to the same observer, and then processed as necessary. The data processing was already dual IPv4/IPv6, hence we don't really care to know whether the data came from ns4 or ns6. The IPv4 code appears to work; the IPv6 code is untested (though, I am not sure whether NETLINK_ROUTE6 is really implemented in the kernel). After this fix, pim/test_pim appears to work on Linux as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 16:51:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 16:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h52Nq1CH086893 for ; Mon, 2 Jun 2003 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52Nq1DD023804 for ; Mon, 2 Jun 2003 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52Nq1bb014527; Mon, 2 Jun 2003 16:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h52Npabb014515 for ; Mon, 2 Jun 2003 16:51:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NpaDD023802 for ; Mon, 2 Jun 2003 16:51:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h52NpaQg094944 for ; Mon, 2 Jun 2003 16:51:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h52NpauH094943; Mon, 2 Jun 2003 16:51:36 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306022351.h52NpauH094943@xorpc.icir.org> Date: Mon, 2 Jun 2003 16:51:36 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/02 16:51:36 Modified files: xorp/rtrmgr/: boot.ll Log message: New much more capable string parser. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 17:19:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h530K1CH090885 for ; Mon, 2 Jun 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h530K1DD024020 for ; Mon, 2 Jun 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h530K1bb014984; Mon, 2 Jun 2003 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h530Jlbb014977 for ; Mon, 2 Jun 2003 17:19:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h530JlDD024015 for ; Mon, 2 Jun 2003 17:19:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h530JkQg095265 for ; Mon, 2 Jun 2003 17:19:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h530JkjC095264; Mon, 2 Jun 2003 17:19:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306030019.h530JkjC095264@xorpc.icir.org> Date: Mon, 2 Jun 2003 17:19:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/06/02 17:19:46 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: * Modify the signal handler, so we don't exit on Ctrl-C (it is used by the CLI to stop the pending command, ot to cancel the currently typed command). * Add the hooks to xorpsh to exit gracefully if we press Ctrl-D from the CLI _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 18:04:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 18:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53151CH096139 for ; Mon, 2 Jun 2003 18:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53151DD024423 for ; Mon, 2 Jun 2003 18:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53151bb015558; Mon, 2 Jun 2003 18:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5314Jbb015547 for ; Mon, 2 Jun 2003 18:04:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5314JDD024412 for ; Mon, 2 Jun 2003 18:04:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5314JQg095588 for ; Mon, 2 Jun 2003 18:04:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5314J5t095587; Mon, 2 Jun 2003 18:04:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306030104.h5314J5t095587@xorpc.icir.org> Date: Mon, 2 Jun 2003 18:04:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/02 18:04:19 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: In test2 remove all the calls to sleep and using print_peers wait for all updates to be sent/received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 19:27:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 19:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h532S1CH002643 for ; Mon, 2 Jun 2003 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532S1DD025244 for ; Mon, 2 Jun 2003 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532S1bb016526; Mon, 2 Jun 2003 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532RBbb016512 for ; Mon, 2 Jun 2003 19:27:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532RBDD025242 for ; Mon, 2 Jun 2003 19:27:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h532RBQg096508 for ; Mon, 2 Jun 2003 19:27:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h532RB9L096507; Mon, 2 Jun 2003 19:27:11 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306030227.h532RB9L096507@xorpc.icir.org> Date: Mon, 2 Jun 2003 19:27:11 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README getbgppeertable getbgpversion startsnmp xorp/mibs/snmpdscripts/ loadmib snmp.conf unloadmib xorp/mibs/snmpdscripts/ loadbgp loadospf loadxorp_if unload Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/06/02 19:27:11 Modified files: xorp/mibs/snmpdscripts/: README getbgppeertable getbgpversion startsnmp Added files: xorp/mibs/snmpdscripts/: loadmib snmp.conf unloadmib Removed files: xorp/mibs/snmpdscripts/: loadbgp loadospf loadxorp_if unload Log message: - Modified startsnmp so it can be used by rtrmgr to launch snmpd - Cleaned up file dependencies. These scripts will no longer use the ../snmpconfig directory. Instead they will expect the user to configure his Net-SNMP installation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 19:30:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h532V1CH002888 for ; Mon, 2 Jun 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532V0DD025286 for ; Mon, 2 Jun 2003 19:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532V0bb016562; Mon, 2 Jun 2003 19:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532Urbb016556 for ; Mon, 2 Jun 2003 19:30:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532UrDD025284 for ; Mon, 2 Jun 2003 19:30:53 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h532UrQg096634 for ; Mon, 2 Jun 2003 19:30:53 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h532UrDn096633; Mon, 2 Jun 2003 19:30:53 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306030230.h532UrDn096633@xorpc.icir.org> Date: Mon, 2 Jun 2003 19:30:52 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in xorp/mibs/snmpconfig/ snmp.conf snmpd.preconf snmpenv.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/02 19:30:52 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Removed files: xorp/mibs/snmpconfig/: snmp.conf snmpd.preconf snmpenv.sh Log message: Changed test_bgpmib.sh.in to not use snmpenv.sh script. Removed directory with snmp configuration files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 19:37:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 19:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h532c1CH003433 for ; Mon, 2 Jun 2003 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532c0DD025352 for ; Mon, 2 Jun 2003 19:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532c0bb016675; Mon, 2 Jun 2003 19:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532bubb016669 for ; Mon, 2 Jun 2003 19:37:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532buDD025350 for ; Mon, 2 Jun 2003 19:37:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h532buQg096727 for ; Mon, 2 Jun 2003 19:37:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h532butA096726; Mon, 2 Jun 2003 19:37:56 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306030237.h532butA096726@xorpc.icir.org> Date: Mon, 2 Jun 2003 19:37:55 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp xorp/etc/templates/ snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: jcardona@xorpc.icir.org. 03/06/02 19:37:55 Modified files: xorp/etc/templates/: fea.tp Added files: xorp/etc/templates/: snmp.tp Log message: Created template for snmpd _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Mon Jun 2 19:42:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Jun 2003 19:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h532h1CH003848 for ; Mon, 2 Jun 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532h0DD025437 for ; Mon, 2 Jun 2003 19:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532h0bb016732; Mon, 2 Jun 2003 19:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h532gibb016725 for ; Mon, 2 Jun 2003 19:42:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h532giDD025427 for ; Mon, 2 Jun 2003 19:42:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h532giQg096828 for ; Mon, 2 Jun 2003 19:42:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h532gi75096827; Mon, 2 Jun 2003 19:42:44 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306030242.h532gi75096827@xorpc.icir.org> Date: Mon, 2 Jun 2003 19:42:44 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: jcardona@xorpc.icir.org. 03/06/02 19:42:44 Modified files: xorp/rtrmgr/: config.boot Log message: Added commented out configuration for snmp. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Tue Jun 3 2:50:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 02:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h539p1CH036222 for ; Tue, 3 Jun 2003 02:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h539p1DD029424 for ; Tue, 3 Jun 2003 02:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h539p1bb022408; Tue, 3 Jun 2003 02:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h539orbb022402 for ; Tue, 3 Jun 2003 02:50:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h539orDD029422 for ; Tue, 3 Jun 2003 02:50:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h539orQg048167 for ; Tue, 3 Jun 2003 02:50:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h539orpG048166; Tue, 3 Jun 2003 02:50:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306030950.h539orpG048166@xorpc.icir.org> Date: Tue, 3 Jun 2003 2:50:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/06/03 02:50:53 Modified files: xorp/libxorp/: selector.cc Log message: If select() was interrupted by a signal (i.e., if (errno == EINTR)), then silently restart it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Tue Jun 3 2:58:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 02:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h539x1CH036825 for ; Tue, 3 Jun 2003 02:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h539x1DD029463; Tue, 3 Jun 2003 02:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h539x1bb022489; Tue, 3 Jun 2003 02:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h539wqbb022481 for ; Tue, 3 Jun 2003 02:58:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h539wqDD029460 for ; Tue, 3 Jun 2003 02:58:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h539wqQg048292 for ; Tue, 3 Jun 2003 02:58:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h539wqtp048291; Tue, 3 Jun 2003 02:58:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306030958.h539wqtp048291@xorpc.icir.org> Date: Tue, 3 Jun 2003 2:58:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_node.cc cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/03 02:58:52 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_node.cc cli_node_net.cc Log message: * Remove the CliClient::_waiting_for_result_timer that timeout after 5 secs if a command is not completed by then. This timer is not needed anymore, because now we can use Ctrl-C to interrupt a command (see below). * Remove the "bool timer_timeout" argument of CliClient::post_process_command() because it is not needed anymore. * If the CLI input is stdio, then disable the ISIG to termios.c_lflag Thus, the CLI can receive properly Ctrl-C and process it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Tue Jun 3 3:00:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A11CH037019 for ; Tue, 3 Jun 2003 03:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A11DD029510 for ; Tue, 3 Jun 2003 03:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53A11bb022540; Tue, 3 Jun 2003 03:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53A0fbb022534 for ; Tue, 3 Jun 2003 03:00:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A0fDD029505 for ; Tue, 3 Jun 2003 03:00:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A0fQg048361 for ; Tue, 3 Jun 2003 03:00:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53A0fb4048360; Tue, 3 Jun 2003 03:00:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031000.h53A0fb4048360@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:00:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:00:41 Modified files: xorp/rtrmgr/: cli.cc Log message: Remove the "bool timer_timeout" argument of CliClient::post_process_command() because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:01 2005 Subject: No subject Tue Jun 3 3:04:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A51CH037317 for ; Tue, 3 Jun 2003 03:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A51DD029555 for ; Tue, 3 Jun 2003 03:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53A51bb022608; Tue, 3 Jun 2003 03:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53A4Cbb022589 for ; Tue, 3 Jun 2003 03:04:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A4CDD029546 for ; Tue, 3 Jun 2003 03:04:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53A4CQg048513 for ; Tue, 3 Jun 2003 03:04:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53A4CDX048512; Tue, 3 Jun 2003 03:04:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031004.h53A4CDX048512@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:04:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:04:12 Modified files: xorp/cli/: TODO Log message: Remove the TODO entry to implement Ctrl-C handling, because now it is DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 3:10:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AC1CH037865 for ; Tue, 3 Jun 2003 03:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AC1DD029624; Tue, 3 Jun 2003 03:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53AC0bb022687; Tue, 3 Jun 2003 03:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53AB0bb022668 for ; Tue, 3 Jun 2003 03:11:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AAxDD029619 for ; Tue, 3 Jun 2003 03:10:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AAxQg048622 for ; Tue, 3 Jun 2003 03:10:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53AAxH4048621; Tue, 3 Jun 2003 03:10:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031010.h53AAxH4048621@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:10:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:10:59 Modified files: xorp/cli/: cli_node_net.cc Log message: Fix the comment when tcsetattr() is used to modify the terminal behavior. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 3:30:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AV1CH039626 for ; Tue, 3 Jun 2003 03:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AV1DD029784; Tue, 3 Jun 2003 03:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53AV1bb022871; Tue, 3 Jun 2003 03:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53AUabb022861 for ; Tue, 3 Jun 2003 03:30:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AUaDD029775 for ; Tue, 3 Jun 2003 03:30:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AUaQg048928 for ; Tue, 3 Jun 2003 03:30:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53AUaQY048927; Tue, 3 Jun 2003 03:30:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031030.h53AUaQY048927@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:30:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:30:36 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in test_mld6igmp.cc Log message: Switch mld6igmp/test_mld6igmp to use the MFEA that was merged with the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 3:40:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Af1CH040381 for ; Tue, 3 Jun 2003 03:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Af1DD029857; Tue, 3 Jun 2003 03:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Af1bb023032; Tue, 3 Jun 2003 03:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Aeubb023023 for ; Tue, 3 Jun 2003 03:40:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AeuDD029853 for ; Tue, 3 Jun 2003 03:40:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AeuQg049054 for ; Tue, 3 Jun 2003 03:40:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53AeuSP049053; Tue, 3 Jun 2003 03:40:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031040.h53AeuSP049053@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:40:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:40:56 Modified files: ./: Makefile.am Makefile.in configure configure.in Log message: Remove top-level mfea directory from the list of built directories, because now all the multicast-related code uses the MFEA that was merged with the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 3:54:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53At1CH041427 for ; Tue, 3 Jun 2003 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53At1DD029955 for ; Tue, 3 Jun 2003 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53At0bb023206; Tue, 3 Jun 2003 03:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53AsMbb023195 for ; Tue, 3 Jun 2003 03:54:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AsMDD029950 for ; Tue, 3 Jun 2003 03:54:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AsLQg049157 for ; Tue, 3 Jun 2003 03:54:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53AsLMC049156; Tue, 3 Jun 2003 03:54:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031054.h53AsLMC049156@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:54:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:54:21 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Remove mfea from the list of directories to generate kdoc, because it was already merged with the fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 3:55:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 03:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Au1CH041535 for ; Tue, 3 Jun 2003 03:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Au1DD029983 for ; Tue, 3 Jun 2003 03:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Au1bb023224; Tue, 3 Jun 2003 03:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Atobb023218 for ; Tue, 3 Jun 2003 03:55:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AtoDD029981 for ; Tue, 3 Jun 2003 03:55:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53AtoQg049199 for ; Tue, 3 Jun 2003 03:55:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53Atom8049198; Tue, 3 Jun 2003 03:55:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031055.h53Atom8049198@xorpc.icir.org> Date: Tue, 3 Jun 2003 3:55:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 03/06/03 03:55:50 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Kdoc generation fix: - generate fea before mld6igmp and pim - change mld6igmp and pim to refer to fea instead of mfea _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 10:50:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 10:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Hp1jI005420 for ; Tue, 3 Jun 2003 10:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Hp1DD034905; Tue, 3 Jun 2003 10:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Hp1bb000116; Tue, 3 Jun 2003 10:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Ho4bb000093 for ; Tue, 3 Jun 2003 10:50:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Ho4DD034885 for ; Tue, 3 Jun 2003 10:50:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Ho4Qg000769 for ; Tue, 3 Jun 2003 10:50:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53Ho4QW000768; Tue, 3 Jun 2003 10:50:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306031750.h53Ho4QW000768@xorpc.icir.org> Date: Tue, 3 Jun 2003 10:50:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp_messenger.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/03 10:50:04 Modified files: xorp/libxipc/: finder_tcp_messenger.cc Log message: Disable auto-reconnect behaviour once a connection is established for FinderTcpAutoConnector - we don't want processes to transparently reconnect to the Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 11:40:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 11:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53If1jI011277 for ; Tue, 3 Jun 2003 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53If0DD035409 for ; Tue, 3 Jun 2003 11:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53If0bb001347; Tue, 3 Jun 2003 11:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Ieobb001334 for ; Tue, 3 Jun 2003 11:40:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53IeoDD035406 for ; Tue, 3 Jun 2003 11:40:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53IeoQg001177 for ; Tue, 3 Jun 2003 11:40:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53IeobK001176; Tue, 3 Jun 2003 11:40:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306031840.h53IeobK001176@xorpc.icir.org> Date: Tue, 3 Jun 2003 11:40:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/06/03 11:40:50 Modified files: xorp/rtrmgr/: task.cc Log message: Remove references to deprecated XrlErrors - FAILED_UNKNOWN and SYSCALL_FAILED. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 11:52:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 11:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Ir2jI012775 for ; Tue, 3 Jun 2003 11:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Ir1DD035519 for ; Tue, 3 Jun 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Ir1bb001642; Tue, 3 Jun 2003 11:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53IqKbb001616 for ; Tue, 3 Jun 2003 11:52:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53IqKDD035517 for ; Tue, 3 Jun 2003 11:52:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53IqJQg001394 for ; Tue, 3 Jun 2003 11:52:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53IqJG2001393; Tue, 3 Jun 2003 11:52:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306031852.h53IqJG2001393@xorpc.icir.org> Date: Tue, 3 Jun 2003 11:52:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh xorp/mfea/ Makefile.am xrl_mfea_shell_funcs.sh xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh xorp/pim/ xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh xorp/utils/ Makefile.am Makefile.in xorp/utils/ xrl_shell_lib.sh xorp/mfea/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/06/03 11:52:19 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh xorp/mfea/: Makefile.am xrl_mfea_shell_funcs.sh xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh xorp/pim/: xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh xorp/utils/: Makefile.am Makefile.in Added files: xorp/utils/: xrl_shell_lib.sh Removed files: xorp/mfea/: xrl_shell_lib.sh Log message: Move mfea/xrl_shell_lib.sh to utils/xrl_shell_lib.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 12:10:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 12:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53JB1jI015006 for ; Tue, 3 Jun 2003 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53JB1DD035717; Tue, 3 Jun 2003 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53JB0bb002012; Tue, 3 Jun 2003 12:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53JAWbb001991 for ; Tue, 3 Jun 2003 12:10:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53JAWDD035714 for ; Tue, 3 Jun 2003 12:10:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53JAWQg010094 for ; Tue, 3 Jun 2003 12:10:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53JAW4i010093; Tue, 3 Jun 2003 12:10:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306031910.h53JAW4i010093@xorpc.icir.org> Date: Tue, 3 Jun 2003 12:10:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.cc finder_msgs.cc finder_tcp.cc test_xrl_error.cc xrl_error.cc xrl_error.hh xrl_pf_stcp.cc xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/03 12:10:32 Modified files: xorp/libxipc/: finder_client.cc finder_msgs.cc finder_tcp.cc test_xrl_error.cc xrl_error.cc xrl_error.hh xrl_pf_stcp.cc xrl_pf_sudp.cc Log message: o Sync errors with error handling document. o Add enumeration XrlErrorCode - allows for checking all XrlError types are handled in switch statements. o Change error code arguments from uint32_t to XrlErrorCode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 14:54:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lt1jI035093 for ; Tue, 3 Jun 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lt1DD037261 for ; Tue, 3 Jun 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Lt1bb005412; Tue, 3 Jun 2003 14:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Lshbb005406 for ; Tue, 3 Jun 2003 14:54:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LshDD037256 for ; Tue, 3 Jun 2003 14:54:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LshQg055819 for ; Tue, 3 Jun 2003 14:54:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53LshtK055818; Tue, 3 Jun 2003 14:54:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032154.h53LshtK055818@xorpc.icir.org> Date: Tue, 3 Jun 2003 14:54:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ command_mfea configure_mfea xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/03 14:54:43 Added files: xorp/fea/: command_mfea configure_mfea xrl_mfea_shell_funcs.sh Log message: Copy files from the original stand-alone MFEA, and adjust them for their new location. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 14:55:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 14:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lu1jI035259 for ; Tue, 3 Jun 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lu1DD037294 for ; Tue, 3 Jun 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Lu0bb005446; Tue, 3 Jun 2003 14:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53LtObb005429 for ; Tue, 3 Jun 2003 14:55:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LtODD037290 for ; Tue, 3 Jun 2003 14:55:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LtOQg055872 for ; Tue, 3 Jun 2003 14:55:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53LtOaX055871; Tue, 3 Jun 2003 14:55:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032155.h53LtOaX055871@xorpc.icir.org> Date: Tue, 3 Jun 2003 14:55:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ DEVNOTES.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/03 14:55:24 Added files: xorp/fea/: DEVNOTES.mfea Log message: Copy files from the original stand-alone MFEA, and adjust them for their new location. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 14:58:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lx1jI035636 for ; Tue, 3 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lx1DD037308 for ; Tue, 3 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Lx1bb005531; Tue, 3 Jun 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Lw7bb005520 for ; Tue, 3 Jun 2003 14:58:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lw6DD037303 for ; Tue, 3 Jun 2003 14:58:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Lw6Qg055929 for ; Tue, 3 Jun 2003 14:58:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53Lw6tT055928; Tue, 3 Jun 2003 14:58:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032158.h53Lw6tT055928@xorpc.icir.org> Date: Tue, 3 Jun 2003 14:58:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/03 14:58:06 Modified files: xorp/fea/: README Added files: xorp/fea/: README.mfea Log message: * Copy mfea/README to fea/README.mfea, and adjust it for its new location. Content-editing is still pending (re. the MFEA-FEA merging). * Add reference to the original fea/README regarding the incorpoprated MFEA. More editing is needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 14:59:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 15:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M01jI035783 for ; Tue, 3 Jun 2003 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M01DD037325 for ; Tue, 3 Jun 2003 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53M01bb005560; Tue, 3 Jun 2003 15:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53LxObb005544 for ; Tue, 3 Jun 2003 14:59:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LxODD037317 for ; Tue, 3 Jun 2003 14:59:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53LxOQg055959 for ; Tue, 3 Jun 2003 14:59:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53LxOPt055958; Tue, 3 Jun 2003 14:59:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032159.h53LxOPt055958@xorpc.icir.org> Date: Tue, 3 Jun 2003 14:59:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ .cvsignore Makefile.am Makefile.in xorp/fea/ test_mfea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/03 14:59:24 Modified files: xorp/fea/: .cvsignore Makefile.am Makefile.in Added files: xorp/fea/: test_mfea.cc Log message: Added new program fea/test_mfea, based on the original mfea/test_mfea. Needed for testing (stand-alone) purpose. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 15:00:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 15:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M11jI035950 for ; Tue, 3 Jun 2003 15:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M10DD037352 for ; Tue, 3 Jun 2003 15:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53M10bb005585; Tue, 3 Jun 2003 15:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53M0Abb005572 for ; Tue, 3 Jun 2003 15:00:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M09DD037348 for ; Tue, 3 Jun 2003 15:00:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53M09Qg056014 for ; Tue, 3 Jun 2003 15:00:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53M09IH056013; Tue, 3 Jun 2003 15:00:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032200.h53M09IH056013@xorpc.icir.org> Date: Tue, 3 Jun 2003 15:00:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/03 15:00:09 Modified files: xorp/fea/: TODO Log message: Add the content of the original mfea/TODO to fea/TODO. The MFEA-related TODO items are in a separate section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 16:50:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Np1jI049520 for ; Tue, 3 Jun 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Np1DD038267 for ; Tue, 3 Jun 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Np1bb007591; Tue, 3 Jun 2003 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53NoNbb007583 for ; Tue, 3 Jun 2003 16:50:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53NoNDD038262 for ; Tue, 3 Jun 2003 16:50:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53NoNQg056903 for ; Tue, 3 Jun 2003 16:50:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53NoNVf056902; Tue, 3 Jun 2003 16:50:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032350.h53NoNVf056902@xorpc.icir.org> Date: Tue, 3 Jun 2003 16:50:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/06/03 16:50:23 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: * Add XORP header (version and date not bumped-up yet). * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 16:51:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 16:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Nq1jI049666 for ; Tue, 3 Jun 2003 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53Nq0DD038275 for ; Tue, 3 Jun 2003 16:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53Nq0bb007614; Tue, 3 Jun 2003 16:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h53NpSbb007603 for ; Tue, 3 Jun 2003 16:51:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h53NpSDD038273 for ; Tue, 3 Jun 2003 16:51:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h53NpSQg056999 for ; Tue, 3 Jun 2003 16:51:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h53NpSvq056998; Tue, 3 Jun 2003 16:51:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306032351.h53NpSvq056998@xorpc.icir.org> Date: Tue, 3 Jun 2003 16:51:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex xorp/docs/libxorp/ libxorp_overview.tex xorp/docs/mfea/ mfea_arch.tex xorp/docs/mld6igmp/ mld6igmp_arch.tex xorp/docs/multicast/ multicast_arch.tex xorp/docs/pim/ pim_arch.tex xorp/docs/pim_testsuite/ pim_testsuite.tex xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/06/03 16:51:28 Modified files: xorp/docs/design_arch/: design_arch.tex xorp/docs/libxorp/: libxorp_overview.tex xorp/docs/mfea/: mfea_arch.tex xorp/docs/mld6igmp/: mld6igmp_arch.tex xorp/docs/multicast/: multicast_arch.tex xorp/docs/pim/: pim_arch.tex xorp/docs/pim_testsuite/: pim_testsuite.tex xorp/docs/snmp/: snmp_overview.tex Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 17:11:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540C1jI052132 for ; Tue, 3 Jun 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540C1DD038493 for ; Tue, 3 Jun 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540C1bb007946; Tue, 3 Jun 2003 17:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540B2bb007929 for ; Tue, 3 Jun 2003 17:11:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540B2DD038489 for ; Tue, 3 Jun 2003 17:11:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540B2Qg057315 for ; Tue, 3 Jun 2003 17:11:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540B2cS057314; Tue, 3 Jun 2003 17:11:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306040011.h540B2cS057314@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:11:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/06/03 17:11:02 Modified files: xorp/docs/design_arch/: design_arch.tex Log message: * Updated to match version-0.3 * Bumped-up the XORP version and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 17:16:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540H1jI052753 for ; Tue, 3 Jun 2003 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540H1DD038545 for ; Tue, 3 Jun 2003 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540H1bb008027; Tue, 3 Jun 2003 17:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540G5bb008000 for ; Tue, 3 Jun 2003 17:16:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540G5DD038543 for ; Tue, 3 Jun 2003 17:16:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540G5Qg057429 for ; Tue, 3 Jun 2003 17:16:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540G5NL057428; Tue, 3 Jun 2003 17:16:05 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306040016.h540G5NL057428@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:16:05 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/03 17:16:05 Modified files: xorp/mibs/snmpdscripts/: README xorp/mibs/tests/: test_bgpmib.sh.in Log message: Added MIBDIRS environment variable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 17:27:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540S1jI054157 for ; Tue, 3 Jun 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540S1DD038638 for ; Tue, 3 Jun 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540S1bb008210; Tue, 3 Jun 2003 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540Rubb008204 for ; Tue, 3 Jun 2003 17:27:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540RuDD038636 for ; Tue, 3 Jun 2003 17:27:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540RtQg057545 for ; Tue, 3 Jun 2003 17:27:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540RtnM057544; Tue, 3 Jun 2003 17:27:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306040027.h540RtnM057544@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:27:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/figs/ error_dependency.eps error_dependency.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/figs/ Changes by: pavlin@xorpc.icir.org. 03/06/03 17:27:55 Modified files: xorp/docs/design_arch/figs/: error_dependency.eps error_dependency.fig Log message: Update the error-dependency figure to reflect the merging of the MFEA and FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 17:28:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540T2jI054276 for ; Tue, 3 Jun 2003 17:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540T1DD038652 for ; Tue, 3 Jun 2003 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540T1bb008244; Tue, 3 Jun 2003 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540Sebb008231 for ; Tue, 3 Jun 2003 17:28:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540SeDD038648 for ; Tue, 3 Jun 2003 17:28:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540SeQg057578 for ; Tue, 3 Jun 2003 17:28:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540Seiu057577; Tue, 3 Jun 2003 17:28:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306040028.h540Seiu057577@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:28:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/06/03 17:28:40 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: * Minor tweaks to reflect the merging of the MFEA and FEA * Bump-up the XORP version to 0.3 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:02 2005 Subject: No subject Tue Jun 3 17:39:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540e2jI055755 for ; Tue, 3 Jun 2003 17:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540e1DD038745 for ; Tue, 3 Jun 2003 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540e1bb008450; Tue, 3 Jun 2003 17:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540dhbb008441 for ; Tue, 3 Jun 2003 17:39:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540dhDD038739 for ; Tue, 3 Jun 2003 17:39:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540dhQg057715 for ; Tue, 3 Jun 2003 17:39:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540dhmH057714; Tue, 3 Jun 2003 17:39:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306040039.h540dhmH057714@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:39:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: hodson@xorpc.icir.org. 03/06/03 17:39:43 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Sync errors with Xrl error handling document and closer to implementation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Tue Jun 3 17:57:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 17:58:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h540w3jI058014 for ; Tue, 3 Jun 2003 17:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540w2DD038879 for ; Tue, 3 Jun 2003 17:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540w1bb008731; Tue, 3 Jun 2003 17:58:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h540vIbb008721 for ; Tue, 3 Jun 2003 17:57:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h540vIDD038873 for ; Tue, 3 Jun 2003 17:57:18 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h540vIQg057964 for ; Tue, 3 Jun 2003 17:57:18 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h540vIWT057963; Tue, 3 Jun 2003 17:57:18 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306040057.h540vIWT057963@xorpc.icir.org> Date: Tue, 3 Jun 2003 17:57:18 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ startsnmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/06/03 17:57:18 Modified files: xorp/mibs/snmpdscripts/: startsnmp Log message: Using default absolute path to snmpd _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Tue Jun 3 18:30:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Jun 2003 18:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h541V1jI061773 for ; Tue, 3 Jun 2003 18:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h541V1DD039144 for ; Tue, 3 Jun 2003 18:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h541V0bb009210; Tue, 3 Jun 2003 18:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h541Ubbb009204 for ; Tue, 3 Jun 2003 18:30:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h541UaDD039142 for ; Tue, 3 Jun 2003 18:30:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h541UaQg068988 for ; Tue, 3 Jun 2003 18:30:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h541UanC068987; Tue, 3 Jun 2003 18:30:36 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306040130.h541UanC068987@xorpc.icir.org> Date: Tue, 3 Jun 2003 18:30:36 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/mibs/snmpdscripts/ startsnmp.in xorp/mibs/snmpdscripts/ startsnmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/06/03 18:30:36 Modified files: ./: Makefile.in configure configure.in Added files: xorp/mibs/snmpdscripts/: startsnmp.in Removed files: xorp/mibs/snmpdscripts/: startsnmp Log message: Have configure generate 'startsnmp' so it is accessible to the rtrmgr in the build directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 1:21:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 01:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h548M2jI097805 for ; Wed, 4 Jun 2003 01:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h548M1DD042408 for ; Wed, 4 Jun 2003 01:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h548M1bb014532; Wed, 4 Jun 2003 01:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h548Libb014521 for ; Wed, 4 Jun 2003 01:21:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h548LiDD042406 for ; Wed, 4 Jun 2003 01:21:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h548LiQg041231 for ; Wed, 4 Jun 2003 01:21:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h548Lh2Q041230; Wed, 4 Jun 2003 01:21:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306040821.h548Lh2Q041230@xorpc.icir.org> Date: Wed, 4 Jun 2003 1:21:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ Makefile.am Makefile.in fea.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/04 01:21:43 Modified files: xorp/docs/fea/: Makefile.am Makefile.in fea.tex Log message: * Update the FEA document to represent the reality after the MFEA->FEA merging. * Bump-up the version to 0.3, and bump-up the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 9:33:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 09:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54GY2jI039079 for ; Wed, 4 Jun 2003 09:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54GY1DD048447 for ; Wed, 4 Jun 2003 09:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54GY1bb022380; Wed, 4 Jun 2003 09:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54GXgbb022359 for ; Wed, 4 Jun 2003 09:33:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54GXgDD048441 for ; Wed, 4 Jun 2003 09:33:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54GXgQg007739 for ; Wed, 4 Jun 2003 09:33:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54GXgqs007738; Wed, 4 Jun 2003 09:33:42 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306041633.h54GXgqs007738@xorpc.icir.org> Date: Wed, 4 Jun 2003 9:33:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ finder-protocol.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/06/04 09:33:42 Removed files: xorp/devnotes/: finder-protocol.txt Log message: Remove deprecated document. Finder now uses Xrls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 10:16:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 10:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HH1jI042409 for ; Wed, 4 Jun 2003 10:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HH1DD048949 for ; Wed, 4 Jun 2003 10:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54HH0bb023237; Wed, 4 Jun 2003 10:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54HGpbb023230 for ; Wed, 4 Jun 2003 10:16:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HGpDD048942 for ; Wed, 4 Jun 2003 10:16:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HGpQg008204 for ; Wed, 4 Jun 2003 10:16:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54HGpYn008202; Wed, 4 Jun 2003 10:16:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306041716.h54HGpYn008202@xorpc.icir.org> Date: Wed, 4 Jun 2003 10:16:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 03/06/04 10:16:51 Modified files: xorp/etc/templates/: fea.tp Log message: The fea template should specify the real fea, not the dummy one (or the automatic router tests on xorp8 will fail because no routes get into the kernel). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 10:31:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 10:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HW1jI043662 for ; Wed, 4 Jun 2003 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HW1DD049101 for ; Wed, 4 Jun 2003 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54HW1bb023525; Wed, 4 Jun 2003 10:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54HVJbb023512 for ; Wed, 4 Jun 2003 10:31:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HVIDD049091 for ; Wed, 4 Jun 2003 10:31:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54HVIQg008341 for ; Wed, 4 Jun 2003 10:31:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54HVIQG008340; Wed, 4 Jun 2003 10:31:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306041731.h54HVIQG008340@xorpc.icir.org> Date: Wed, 4 Jun 2003 10:31:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/06/04 10:31:18 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Output tidy up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 11:06:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 11:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54I71jI046517 for ; Wed, 4 Jun 2003 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54I71DD049528 for ; Wed, 4 Jun 2003 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54I70bb024291; Wed, 4 Jun 2003 11:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54I6pbb024283 for ; Wed, 4 Jun 2003 11:06:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54I6oDD049524 for ; Wed, 4 Jun 2003 11:06:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54I6oQg008665 for ; Wed, 4 Jun 2003 11:06:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54I6ojm008664; Wed, 4 Jun 2003 11:06:50 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306041806.h54I6ojm008664@xorpc.icir.org> Date: Wed, 4 Jun 2003 11:06:50 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/04 11:06:50 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: MIBDIRS environment variable modified to append to current list of mib directories, not to replace it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:03 2005 Subject: No subject Wed Jun 4 11:56:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54Iv1jI055722 for ; Wed, 4 Jun 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54Iv1DD050029 for ; Wed, 4 Jun 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54Iv0bb025369; Wed, 4 Jun 2003 11:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54IuDbb025351 for ; Wed, 4 Jun 2003 11:56:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54IuDDD050019 for ; Wed, 4 Jun 2003 11:56:13 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54IuDQg009068 for ; Wed, 4 Jun 2003 11:56:13 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54IuDvS009067; Wed, 4 Jun 2003 11:56:13 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306041856.h54IuDvS009067@xorpc.icir.org> Date: Wed, 4 Jun 2003 11:56:13 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/06/04 11:56:13 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Added section on snmpd launch by rtrmgr _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 14:53:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 14:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h54Ls1jI096700 for ; Wed, 4 Jun 2003 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54Ls1DD051718 for ; Wed, 4 Jun 2003 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54Ls1bb028625; Wed, 4 Jun 2003 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h54Lrmbb028615 for ; Wed, 4 Jun 2003 14:53:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h54LrlDD051715 for ; Wed, 4 Jun 2003 14:53:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h54LrlQg057158 for ; Wed, 4 Jun 2003 14:53:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h54Lrl83057157; Wed, 4 Jun 2003 14:53:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306042153.h54Lrl83057157@xorpc.icir.org> Date: Wed, 4 Jun 2003 14:53:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/04 14:53:46 Modified files: xorp/devnotes/: WORKPLAN Log message: * Update WORKPLAN * Move the release date to June 6, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 17:38:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 17:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h550d2jI044719 for ; Wed, 4 Jun 2003 17:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h550d1DD053126 for ; Wed, 4 Jun 2003 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h550d1bb001705; Wed, 4 Jun 2003 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h550c1bb001682 for ; Wed, 4 Jun 2003 17:38:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h550c1DD053122 for ; Wed, 4 Jun 2003 17:38:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h550c1Qg063772 for ; Wed, 4 Jun 2003 17:38:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h550c19E063771; Wed, 4 Jun 2003 17:38:01 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306050038.h550c19E063771@xorpc.icir.org> Date: Wed, 4 Jun 2003 17:38:01 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/06/04 17:38:01 Modified files: xorp/mibs/snmpdscripts/: README Log message: Hopefully clarified instructions on how to configure Net-SNMP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 18:27:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 18:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h551S1jI060186 for ; Wed, 4 Jun 2003 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551S1DD053486 for ; Wed, 4 Jun 2003 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551S0bb002404; Wed, 4 Jun 2003 18:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551Rsbb002398 for ; Wed, 4 Jun 2003 18:27:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551RrDD053484 for ; Wed, 4 Jun 2003 18:27:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h551RrQg078262 for ; Wed, 4 Jun 2003 18:27:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h551RrST078261; Wed, 4 Jun 2003 18:27:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050127.h551RrST078261@xorpc.icir.org> Date: Wed, 4 Jun 2003 18:27:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/04 18:27:53 Modified files: xorp/fea/: Makefile.in Log message: Regenerate Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 18:28:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 18:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h551T1jI060341 for ; Wed, 4 Jun 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551T1DD053494 for ; Wed, 4 Jun 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551T1bb002425; Wed, 4 Jun 2003 18:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551SJbb002416 for ; Wed, 4 Jun 2003 18:28:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551SIDD053492 for ; Wed, 4 Jun 2003 18:28:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h551SIQg078325 for ; Wed, 4 Jun 2003 18:28:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h551SIlI078324; Wed, 4 Jun 2003 18:28:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050128.h551SIlI078324@xorpc.icir.org> Date: Wed, 4 Jun 2003 18:28:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/04 18:28:18 Modified files: xorp/fea/: xrl_mfea_vif_manager.hh Log message: Fix a kdoc @see statement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 18:32:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 18:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h551X1jI060972 for ; Wed, 4 Jun 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551X1DD053526 for ; Wed, 4 Jun 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551X0bb002472; Wed, 4 Jun 2003 18:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h551WQbb002465 for ; Wed, 4 Jun 2003 18:32:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h551WQDD053524 for ; Wed, 4 Jun 2003 18:32:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h551WPQg078789 for ; Wed, 4 Jun 2003 18:32:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h551WP5p078788; Wed, 4 Jun 2003 18:32:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050132.h551WP5p078788@xorpc.icir.org> Date: Wed, 4 Jun 2003 18:32:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/04 18:32:25 Modified files: xorp/fea/: xrl_mfea_vif_manager.hh Log message: A second attempt to fix a kdoc @see problem :) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 19:11:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 19:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h552C1jI071124 for ; Wed, 4 Jun 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552C1DD053834 for ; Wed, 4 Jun 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552C0bb003069; Wed, 4 Jun 2003 19:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552BMbb003054 for ; Wed, 4 Jun 2003 19:11:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552BMDD053828 for ; Wed, 4 Jun 2003 19:11:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h552BMQg090315 for ; Wed, 4 Jun 2003 19:11:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h552BMhP090314; Wed, 4 Jun 2003 19:11:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306050211.h552BMhP090314@xorpc.icir.org> Date: Wed, 4 Jun 2003 19:11:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc test_finder_events.cc xorp/rip/ auth.cc port.cc test_auth.cc test_packets.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: atanu@xorpc.icir.org. 03/06/04 19:11:21 Modified files: xorp/libxipc/: finder.cc test_finder_events.cc xorp/rip/: auth.cc port.cc test_auth.cc test_packets.cc Log message: MacOS X compilation fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 19:37:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 19:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h552c1jI099286 for ; Wed, 4 Jun 2003 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552c0DD054062 for ; Wed, 4 Jun 2003 19:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552c0bb003402; Wed, 4 Jun 2003 19:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552bUbb003393 for ; Wed, 4 Jun 2003 19:37:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552bUDD054051 for ; Wed, 4 Jun 2003 19:37:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h552bUQg003512 for ; Wed, 4 Jun 2003 19:37:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h552bUB0003510; Wed, 4 Jun 2003 19:37:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050237.h552bUB0003510@xorpc.icir.org> Date: Wed, 4 Jun 2003 19:37:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ kdoc-pointers Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/04 19:37:29 Modified files: xorp/devnotes/: kdoc-pointers Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 19:38:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 19:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h552d1jI099425 for ; Wed, 4 Jun 2003 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552d1DD054070 for ; Wed, 4 Jun 2003 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552d0bb003428; Wed, 4 Jun 2003 19:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552cRbb003419 for ; Wed, 4 Jun 2003 19:38:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552cQDD054066 for ; Wed, 4 Jun 2003 19:38:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h552cQQg003757 for ; Wed, 4 Jun 2003 19:38:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h552cQWD003756; Wed, 4 Jun 2003 19:38:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050238.h552cQWD003756@xorpc.icir.org> Date: Wed, 4 Jun 2003 19:38:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 03/06/04 19:38:26 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: modify the list of kdoc-referenced libraries for rib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 19:39:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 19:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h552e1jI099567 for ; Wed, 4 Jun 2003 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552e1DD054083 for ; Wed, 4 Jun 2003 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552e1bb003457; Wed, 4 Jun 2003 19:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h552dbbb003450 for ; Wed, 4 Jun 2003 19:39:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h552dbDD054077 for ; Wed, 4 Jun 2003 19:39:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h552dbQg004029 for ; Wed, 4 Jun 2003 19:39:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h552db3D004028; Wed, 4 Jun 2003 19:39:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050239.h552db3D004028@xorpc.icir.org> Date: Wed, 4 Jun 2003 19:39:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_table_get.hh fticonfig_table_observer.hh ifconfig_observer.hh xorp/rib/ vifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/06/04 19:39:37 Modified files: xorp/fea/: fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_table_get.hh fticonfig_table_observer.hh ifconfig_observer.hh xorp/rib/: vifmanager.hh Log message: kdoc-related fixes: replace @param with @ref in the middle of a line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 21:59:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 22:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55501jI011502 for ; Wed, 4 Jun 2003 22:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55501DD055095 for ; Wed, 4 Jun 2003 22:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55500bb005007; Wed, 4 Jun 2003 22:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h554xcbb005000 for ; Wed, 4 Jun 2003 21:59:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h554xbDD055085 for ; Wed, 4 Jun 2003 21:59:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h554xbQg017285 for ; Wed, 4 Jun 2003 21:59:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h554xbp1017284; Wed, 4 Jun 2003 21:59:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306050459.h554xbp1017284@xorpc.icir.org> Date: Wed, 4 Jun 2003 21:59:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ Makefile.am Makefile.in xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/04 21:59:37 Modified files: xorp/docs/rtrmgr/: Makefile.am Makefile.in Added files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: A start at a xorpsh user guide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 23:51:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Jun 2003 23:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h556q1jI020157 for ; Wed, 4 Jun 2003 23:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h556q1DD055876 for ; Wed, 4 Jun 2003 23:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h556q1bb006609; Wed, 4 Jun 2003 23:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h556pEbb006600 for ; Wed, 4 Jun 2003 23:51:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h556pEDD055874 for ; Wed, 4 Jun 2003 23:51:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h556pDQg018135 for ; Wed, 4 Jun 2003 23:51:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h556pDcw018134; Wed, 4 Jun 2003 23:51:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050651.h556pDcw018134@xorpc.icir.org> Date: Wed, 4 Jun 2003 23:51:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex xorp/docs/mfea/figs/ mfea_design_overview.eps mfea_design_overview.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/figs/ Changes by: pavlin@xorpc.icir.org. 03/06/04 23:51:13 Modified files: xorp/docs/mfea/: mfea_arch.tex xorp/docs/mfea/figs/: mfea_design_overview.eps mfea_design_overview.fig Log message: * Updated to match reality after the MFEA-FEA merging, and the refactoring of some of the MFEA internals. * Bump-up the version to 0.3, and the date to June 6, 2003. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Wed Jun 4 23:59:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 00:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55705jI020780 for ; Thu, 5 Jun 2003 00:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55704DD055939 for ; Thu, 5 Jun 2003 00:00:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55704bb007019; Thu, 5 Jun 2003 00:00:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h556x4bb006779 for ; Wed, 4 Jun 2003 23:59:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h556x4DD055910 for ; Wed, 4 Jun 2003 23:59:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h556x4Qg018228 for ; Wed, 4 Jun 2003 23:59:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h556x4il018227; Wed, 4 Jun 2003 23:59:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050659.h556x4il018227@xorpc.icir.org> Date: Wed, 4 Jun 2003 23:59:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/04 23:59:04 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Bump-up the version to 0.3, and the date to June 6, 2003 The document is consistent with the current implementation, hence no changes are required. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 0:07:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 00:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55781jI021409 for ; Thu, 5 Jun 2003 00:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55781DD056027 for ; Thu, 5 Jun 2003 00:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55780bb007163; Thu, 5 Jun 2003 00:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5577pbb007157 for ; Thu, 5 Jun 2003 00:07:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5577pDD056025 for ; Thu, 5 Jun 2003 00:07:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5577pQg026310 for ; Thu, 5 Jun 2003 00:07:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5577p6R026309; Thu, 5 Jun 2003 00:07:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050707.h5577p6R026309@xorpc.icir.org> Date: Thu, 5 Jun 2003 0:07:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/05 00:07:51 Modified files: xorp/docs/pim/: pim_arch.tex Log message: Bump-up the version to 0.3, and the date to June 6, 2003 The document is consistent with the current implementation, hence no changes are required. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 0:13:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 00:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h557E1jI021929 for ; Thu, 5 Jun 2003 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557E0DD056067 for ; Thu, 5 Jun 2003 00:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557E0bb007262; Thu, 5 Jun 2003 00:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557DDbb007248 for ; Thu, 5 Jun 2003 00:13:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557DDDD056061 for ; Thu, 5 Jun 2003 00:13:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h557DDQg027359 for ; Thu, 5 Jun 2003 00:13:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h557DD5V027358; Thu, 5 Jun 2003 00:13:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050713.h557DD5V027358@xorpc.icir.org> Date: Thu, 5 Jun 2003 0:13:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/06/05 00:13:13 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Bump-up the version to 0.3, and the date to June 6, 2003 The document is consistent with the current implementation, hence no changes are required. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 0:32:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 00:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h557X1jI023488 for ; Thu, 5 Jun 2003 00:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557X1DD056201 for ; Thu, 5 Jun 2003 00:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557X0bb007501; Thu, 5 Jun 2003 00:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557WTbb007489 for ; Thu, 5 Jun 2003 00:32:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557WTDD056196 for ; Thu, 5 Jun 2003 00:32:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h557WTQg029466 for ; Thu, 5 Jun 2003 00:32:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h557WSSq029465; Thu, 5 Jun 2003 00:32:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050732.h557WSSq029465@xorpc.icir.org> Date: Thu, 5 Jun 2003 0:32:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_modules_interaction.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/figs/ Changes by: pavlin@xorpc.icir.org. 03/06/05 00:32:28 Modified files: xorp/docs/multicast/: multicast_arch.tex xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_modules_interaction.fig Log message: * Updated to match reality after the MFEA-FEA merging. * Bump-up the version to 0.3, and the date to June 6, 2003. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 0:36:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 00:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h557b1jI023816 for ; Thu, 5 Jun 2003 00:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557b1DD056248; Thu, 5 Jun 2003 00:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557b0bb007583; Thu, 5 Jun 2003 00:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h557aKbb007568 for ; Thu, 5 Jun 2003 00:36:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h557aKDD056244 for ; Thu, 5 Jun 2003 00:36:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h557aKQg035099 for ; Thu, 5 Jun 2003 00:36:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h557aK9I035098; Thu, 5 Jun 2003 00:36:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050736.h557aK9I035098@xorpc.icir.org> Date: Thu, 5 Jun 2003 0:36:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/06/05 00:36:20 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Change title from "Error Handling in XORP" to "XORP Error Handling" (for consistency with the naming of the rest of the XORP documents). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 1:03:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55841jI025856 for ; Thu, 5 Jun 2003 01:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55841DD056508 for ; Thu, 5 Jun 2003 01:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55841bb007928; Thu, 5 Jun 2003 01:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5583Sbb007920 for ; Thu, 5 Jun 2003 01:03:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5583SDD056496 for ; Thu, 5 Jun 2003 01:03:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5583SQg039849 for ; Thu, 5 Jun 2003 01:03:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5583S46039848; Thu, 5 Jun 2003 01:03:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050803.h5583S46039848@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:03:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:03:28 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: * Change the title from "SNMP agent in XORP" to "XORP SNMP Agent" (for consistency with the naming of the other XORP documents * Bump-up the date to June 6, 2003 * Spellcheck. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 1:10:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558B1jI026437 for ; Thu, 5 Jun 2003 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558B1DD056580 for ; Thu, 5 Jun 2003 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558B1bb008015; Thu, 5 Jun 2003 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Asbb008008 for ; Thu, 5 Jun 2003 01:10:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558AsDD056578 for ; Thu, 5 Jun 2003 01:10:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558AsQg040917 for ; Thu, 5 Jun 2003 01:10:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558AsRH040916; Thu, 5 Jun 2003 01:10:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050810.h558AsRH040916@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:10:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:10:54 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: * Changed the title from "XORPSH User Guide" to "XORP Shell User Guide (xorpsh)" (for consistency with the naming of the other XORP documents) * Bump-up the date to June 6, 2003 * Spellcheck (though I preserved the UK spelling where applicable :) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 1:12:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558D1jI026600 for ; Thu, 5 Jun 2003 01:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558D1DD056594 for ; Thu, 5 Jun 2003 01:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558D0bb008050; Thu, 5 Jun 2003 01:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558CCbb008035 for ; Thu, 5 Jun 2003 01:12:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558CCDD056592 for ; Thu, 5 Jun 2003 01:12:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558CCQg041921 for ; Thu, 5 Jun 2003 01:12:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558CCPV041915; Thu, 5 Jun 2003 01:12:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050812.h558CCPV041915@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:12:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:12:12 Modified files: xorp/docs/rtrmgr/: .cvsignore Log message: Added xorpsh_userguide.pdf and xorpsh_userguide.ps to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 1:13:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558E1jI026679 for ; Thu, 5 Jun 2003 01:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558E1DD056603; Thu, 5 Jun 2003 01:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558E1bb008080; Thu, 5 Jun 2003 01:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Dbbb008064 for ; Thu, 5 Jun 2003 01:13:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558DbDD056600 for ; Thu, 5 Jun 2003 01:13:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558DbQg048747 for ; Thu, 5 Jun 2003 01:13:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558Dbd3048746; Thu, 5 Jun 2003 01:13:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050813.h558Dbd3048746@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:13:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:13:37 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Added "FEA" to the list of acronyms. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:04 2005 Subject: No subject Thu Jun 5 1:14:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558F2jI026773 for ; Thu, 5 Jun 2003 01:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558F1DD056615 for ; Thu, 5 Jun 2003 01:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558F1bb008098; Thu, 5 Jun 2003 01:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Eubb008091 for ; Thu, 5 Jun 2003 01:14:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558EuDD056609 for ; Thu, 5 Jun 2003 01:14:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558EuQg049265 for ; Thu, 5 Jun 2003 01:14:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558Eutt049264; Thu, 5 Jun 2003 01:14:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050814.h558Eutt049264@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:14:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:14:56 Modified files: xorp/docs/tex/: xorp.bib Log message: Added bibtex entries for "XORP Shell User Guide (xorpsh)" and "XORP SNMP Agent". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:16:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558H1jI026953 for ; Thu, 5 Jun 2003 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558H1DD056644 for ; Thu, 5 Jun 2003 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558H1bb008122; Thu, 5 Jun 2003 01:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Gtbb008115 for ; Thu, 5 Jun 2003 01:16:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558GtDD056642 for ; Thu, 5 Jun 2003 01:16:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558GtQg050092 for ; Thu, 5 Jun 2003 01:16:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558GtbZ050091; Thu, 5 Jun 2003 01:16:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050816.h558GtbZ050091@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:16:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:16:55 Modified files: xorp/docs/: index.html Log message: Added entries for "XORP Error Handling" and "XORP Shell User Guide (xorpsh)". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:28:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558T1jI027852 for ; Thu, 5 Jun 2003 01:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558T1DD056710 for ; Thu, 5 Jun 2003 01:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558T0bb008301; Thu, 5 Jun 2003 01:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558STbb008280 for ; Thu, 5 Jun 2003 01:28:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558STDD056706 for ; Thu, 5 Jun 2003 01:28:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558STQg053432 for ; Thu, 5 Jun 2003 01:28:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558STr9053424; Thu, 5 Jun 2003 01:28:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050828.h558STr9053424@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:28:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:28:29 Modified files: xorp/fea/: README.mfea Log message: Update to reflect reality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:28:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558T2jI027871 for ; Thu, 5 Jun 2003 01:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558T1DD056714 for ; Thu, 5 Jun 2003 01:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558T1bb008312; Thu, 5 Jun 2003 01:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Sqbb008293 for ; Thu, 5 Jun 2003 01:28:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558SpDD056708 for ; Thu, 5 Jun 2003 01:28:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558SpQg053573 for ; Thu, 5 Jun 2003 01:28:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558SpiK053571; Thu, 5 Jun 2003 01:28:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050828.h558SpiK053571@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:28:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:28:51 Modified files: xorp/fea/: README Log message: Add a reference to README.mfea _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:32:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558X1jI028191 for ; Thu, 5 Jun 2003 01:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558X1DD056761 for ; Thu, 5 Jun 2003 01:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558X1bb008356; Thu, 5 Jun 2003 01:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558W1bb008344 for ; Thu, 5 Jun 2003 01:32:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558W1DD056757 for ; Thu, 5 Jun 2003 01:32:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558W1Qg054354 for ; Thu, 5 Jun 2003 01:32:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558W1Q3054353; Thu, 5 Jun 2003 01:32:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050832.h558W1Q3054353@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:32:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:32:01 Modified files: xorp/mfea/: README Log message: Add a note that the stand-alone MFEA is obsoleted and will disappear soon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:33:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558Y2jI028282 for ; Thu, 5 Jun 2003 01:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558Y1DD056771 for ; Thu, 5 Jun 2003 01:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Y1bb008390; Thu, 5 Jun 2003 01:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558Xjbb008371 for ; Thu, 5 Jun 2003 01:33:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558XjDD056769 for ; Thu, 5 Jun 2003 01:33:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558XjQg054892 for ; Thu, 5 Jun 2003 01:33:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558Xj5A054891; Thu, 5 Jun 2003 01:33:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050833.h558Xj5A054891@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:33:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:33:45 Modified files: xorp/cli/: README Log message: Bump-up a date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:43:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558i1jI029037 for ; Thu, 5 Jun 2003 01:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558i1DD056855; Thu, 5 Jun 2003 01:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558i1bb008572; Thu, 5 Jun 2003 01:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558hxbb008564 for ; Thu, 5 Jun 2003 01:43:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558hxDD056852 for ; Thu, 5 Jun 2003 01:43:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558hxQg061139 for ; Thu, 5 Jun 2003 01:43:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558hx6s061138; Thu, 5 Jun 2003 01:43:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050843.h558hx6s061138@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:43:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:43:59 Modified files: xorp/fea/: README.mfea Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:44:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558j1jI029131 for ; Thu, 5 Jun 2003 01:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558j1DD056871 for ; Thu, 5 Jun 2003 01:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558j1bb008592; Thu, 5 Jun 2003 01:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558icbb008585 for ; Thu, 5 Jun 2003 01:44:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558icDD056862 for ; Thu, 5 Jun 2003 01:44:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558icQg061222 for ; Thu, 5 Jun 2003 01:44:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558ic01061221; Thu, 5 Jun 2003 01:44:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050844.h558ic01061221@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:44:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README xorp/mld6igmp/ README xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:44:38 Modified files: xorp/cli/: README xorp/mld6igmp/: README xorp/pim/: README Log message: Update to reflect reality. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 1:53:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 01:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h558s1jI029825 for ; Thu, 5 Jun 2003 01:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558s1DD056949; Thu, 5 Jun 2003 01:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558s1bb008698; Thu, 5 Jun 2003 01:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h558rBbb008674 for ; Thu, 5 Jun 2003 01:53:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h558rBDD056940 for ; Thu, 5 Jun 2003 01:53:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h558rBQg063254 for ; Thu, 5 Jun 2003 01:53:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h558rAKW063248; Thu, 5 Jun 2003 01:53:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050853.h558rAKW063248@xorpc.icir.org> Date: Thu, 5 Jun 2003 1:53:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/05 01:53:10 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: * Add the command for copying RELEASE_NOTES to the documentation directory * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 2:29:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 02:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h559U1jI032796 for ; Thu, 5 Jun 2003 02:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559U1DD057557 for ; Thu, 5 Jun 2003 02:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559U0bb009075; Thu, 5 Jun 2003 02:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559TPbb009064 for ; Thu, 5 Jun 2003 02:29:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559TODD057550 for ; Thu, 5 Jun 2003 02:29:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h559TOQg067097 for ; Thu, 5 Jun 2003 02:29:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h559TOio067096; Thu, 5 Jun 2003 02:29:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050929.h559TOio067096@xorpc.icir.org> Date: Thu, 5 Jun 2003 2:29:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/05 02:29:24 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 2:39:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 02:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h559e1jI033570 for ; Thu, 5 Jun 2003 02:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559e1DD057674 for ; Thu, 5 Jun 2003 02:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559e1bb009242; Thu, 5 Jun 2003 02:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559d3bb009230 for ; Thu, 5 Jun 2003 02:39:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559d2DD057667 for ; Thu, 5 Jun 2003 02:39:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h559d2Qg067268 for ; Thu, 5 Jun 2003 02:39:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h559d29m067267; Thu, 5 Jun 2003 02:39:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050939.h559d29m067267@xorpc.icir.org> Date: Thu, 5 Jun 2003 2:39:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 03/06/05 02:39:02 Modified files: xorp/docs/tex/: xorp.bib Log message: Add a bibtex entry for "XORP Error Handling" document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 2:46:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 02:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h559l1jI034118 for ; Thu, 5 Jun 2003 02:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559l1DD057757; Thu, 5 Jun 2003 02:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559l1bb009323; Thu, 5 Jun 2003 02:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h559kHbb009310 for ; Thu, 5 Jun 2003 02:46:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h559kHDD057752 for ; Thu, 5 Jun 2003 02:46:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h559kHQg067409 for ; Thu, 5 Jun 2003 02:46:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h559kH7Q067408; Thu, 5 Jun 2003 02:46:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306050946.h559kH7Q067408@xorpc.icir.org> Date: Thu, 5 Jun 2003 2:46:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 03/06/05 02:46:17 Modified files: xorp/docs/tex/: xorp.bib Log message: Added bibtex entries for the following documents: "XORP Libxorp Library Overview" "XORP PIM-SM Test Suite" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 11:37:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 11:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Ic3jI077681 for ; Thu, 5 Jun 2003 11:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Ic2DD063808 for ; Thu, 5 Jun 2003 11:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Ic1bb018516; Thu, 5 Jun 2003 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55IbKbb018494 for ; Thu, 5 Jun 2003 11:37:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55IbJDD063802 for ; Thu, 5 Jun 2003 11:37:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55IbJQg020564 for ; Thu, 5 Jun 2003 11:37:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55IbJAp020563; Thu, 5 Jun 2003 11:37:19 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306051837.h55IbJAp020563@xorpc.icir.org> Date: Thu, 5 Jun 2003 11:37:19 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: jcardona@xorpc.icir.org. 03/06/05 11:37:19 Modified files: xorp/docs/: status.html Log message: Updated SNMP status _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 12:40:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 12:41:35 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55JfZwF000169 for ; Thu, 5 Jun 2003 12:41:35 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Jf1DD064370 for ; Thu, 5 Jun 2003 12:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Jf1bb019524; Thu, 5 Jun 2003 12:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Jesbb019517 for ; Thu, 5 Jun 2003 12:40:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55JesDD064366 for ; Thu, 5 Jun 2003 12:40:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55JesQg037876 for ; Thu, 5 Jun 2003 12:40:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55Jesux037875; Thu, 5 Jun 2003 12:40:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306051940.h55Jesux037875@xorpc.icir.org> Date: Thu, 5 Jun 2003 12:40:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: pavlin@xorpc.icir.org. 03/06/05 12:40:54 Added files: xorp/mibs/snmpdscripts/: .cvsignore Log message: Add .cvsignore that contains the auto-generated startsnmp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 13:18:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 13:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KJ1wF002433 for ; Thu, 5 Jun 2003 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KJ1DD064682 for ; Thu, 5 Jun 2003 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55KJ0bb020106; Thu, 5 Jun 2003 13:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55KI2bb020082 for ; Thu, 5 Jun 2003 13:18:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KI2DD064674 for ; Thu, 5 Jun 2003 13:18:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KI1Qg051689 for ; Thu, 5 Jun 2003 13:18:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55KI1SL051688; Thu, 5 Jun 2003 13:18:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052018.h55KI1SL051688@xorpc.icir.org> Date: Thu, 5 Jun 2003 13:18:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/05 13:18:01 Modified files: xorp/docs/libxipc/: xrl_interfaces.tex Log message: Version number bump. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 13:35:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 13:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Ka1wF003734 for ; Thu, 5 Jun 2003 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Ka0DD064851 for ; Thu, 5 Jun 2003 13:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Ka0bb020489; Thu, 5 Jun 2003 13:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55KZMbb020479 for ; Thu, 5 Jun 2003 13:35:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KZLDD064842 for ; Thu, 5 Jun 2003 13:35:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55KZLQg056355 for ; Thu, 5 Jun 2003 13:35:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55KZLFM056354; Thu, 5 Jun 2003 13:35:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052035.h55KZLFM056354@xorpc.icir.org> Date: Thu, 5 Jun 2003 13:35:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ libxipc_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/05 13:35:21 Modified files: xorp/docs/libxipc/: libxipc_overview.tex Log message: Version number bump. Minor editing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 14:10:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 14:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LB1wF006528 for ; Thu, 5 Jun 2003 14:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LB1DD065176 for ; Thu, 5 Jun 2003 14:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55LB0bb021203; Thu, 5 Jun 2003 14:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55LAtbb021196 for ; Thu, 5 Jun 2003 14:10:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LAtDD065174 for ; Thu, 5 Jun 2003 14:10:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LAtQg068948 for ; Thu, 5 Jun 2003 14:10:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55LAtRT068947; Thu, 5 Jun 2003 14:10:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306052110.h55LAtRT068947@xorpc.icir.org> Date: Thu, 5 Jun 2003 14:10:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/05 14:10:55 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: Add remainder of document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 14:44:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 14:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Lj2wF014259 for ; Thu, 5 Jun 2003 14:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Lj1DD065492 for ; Thu, 5 Jun 2003 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Lj1bb021812; Thu, 5 Jun 2003 14:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Liobb021801 for ; Thu, 5 Jun 2003 14:44:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LioDD065487 for ; Thu, 5 Jun 2003 14:44:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55LioQg069430 for ; Thu, 5 Jun 2003 14:44:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55LioqA069429; Thu, 5 Jun 2003 14:44:50 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306052144.h55LioqA069429@xorpc.icir.org> Date: Thu, 5 Jun 2003 14:44:50 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/06/05 14:44:50 Modified files: ./: RELEASE_NOTES Log message: Updated SNMP section _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 15:31:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 15:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MW2wF018045 for ; Thu, 5 Jun 2003 15:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MW2DD065987 for ; Thu, 5 Jun 2003 15:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55MW1bb022758; Thu, 5 Jun 2003 15:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55MVfbb022747 for ; Thu, 5 Jun 2003 15:31:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MVfDD065985 for ; Thu, 5 Jun 2003 15:31:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MVfQg070064 for ; Thu, 5 Jun 2003 15:31:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55MVfMa070063; Thu, 5 Jun 2003 15:31:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052231.h55MVfMa070063@xorpc.icir.org> Date: Thu, 5 Jun 2003 15:31:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/05 15:31:41 Modified files: ./: RELEASE_NOTES Log message: initial libxorp, libxipc, xrl, rip comments. more to follow. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 15:50:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 15:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Mp2wF019542 for ; Thu, 5 Jun 2003 15:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Mp1DD066147 for ; Thu, 5 Jun 2003 15:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Mp1bb023100; Thu, 5 Jun 2003 15:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55MoTbb023085 for ; Thu, 5 Jun 2003 15:50:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MoSDD066143 for ; Thu, 5 Jun 2003 15:50:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55MoSQg070452 for ; Thu, 5 Jun 2003 15:50:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55MoSLL070451; Thu, 5 Jun 2003 15:50:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306052250.h55MoSLL070451@xorpc.icir.org> Date: Thu, 5 Jun 2003 15:50:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/05 15:50:28 Modified files: xorp/rtrmgr/: boot.ll Log message: Fix bug in bootfile parser that I introduced fixing the bug Javier discovered on Monday. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:05 2005 Subject: No subject Thu Jun 5 16:32:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NX1wF022747 for ; Thu, 5 Jun 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NX1DD066478 for ; Thu, 5 Jun 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55NX0bb023829; Thu, 5 Jun 2003 16:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55NW1bb023798 for ; Thu, 5 Jun 2003 16:32:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NW1DD066472 for ; Thu, 5 Jun 2003 16:32:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NW1Qg070951 for ; Thu, 5 Jun 2003 16:32:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55NW1RU070950; Thu, 5 Jun 2003 16:32:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052332.h55NW1RU070950@xorpc.icir.org> Date: Thu, 5 Jun 2003 16:32:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/05 16:32:01 Modified files: ./: RELEASE_NOTES Log message: More 0.3 additions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 16:40:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 16:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Nf1wF023432 for ; Thu, 5 Jun 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Nf1DD066579 for ; Thu, 5 Jun 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Nf1bb024040; Thu, 5 Jun 2003 16:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55NeMbb024015 for ; Thu, 5 Jun 2003 16:40:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NeMDD066571 for ; Thu, 5 Jun 2003 16:40:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NeMQg071151 for ; Thu, 5 Jun 2003 16:40:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55NeMXT071150; Thu, 5 Jun 2003 16:40:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052340.h55NeMXT071150@xorpc.icir.org> Date: Thu, 5 Jun 2003 16:40:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/05 16:40:22 Modified files: xorp/libxipc/: finder_module.h Log message: Bump revision number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 16:40:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 16:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Nf2wF023451 for ; Thu, 5 Jun 2003 16:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55Nf1DD066583 for ; Thu, 5 Jun 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Nf1bb024051; Thu, 5 Jun 2003 16:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h55Nedbb024027 for ; Thu, 5 Jun 2003 16:40:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NedDD066575 for ; Thu, 5 Jun 2003 16:40:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h55NecQg071178 for ; Thu, 5 Jun 2003 16:40:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h55NecQC071177; Thu, 5 Jun 2003 16:40:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306052340.h55NecQC071177@xorpc.icir.org> Date: Thu, 5 Jun 2003 16:40:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ README TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/05 16:40:38 Modified files: xorp/libxipc/: README TODO Log message: 0.3 updates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 17:10:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 17:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h560B2wF030866 for ; Thu, 5 Jun 2003 17:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h560B1DD066832 for ; Thu, 5 Jun 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h560B1bb024571; Thu, 5 Jun 2003 17:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h560Asbb024565 for ; Thu, 5 Jun 2003 17:10:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h560AsDD066830 for ; Thu, 5 Jun 2003 17:10:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h560AsQg071540 for ; Thu, 5 Jun 2003 17:10:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h560ArGb071539; Thu, 5 Jun 2003 17:10:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306060010.h560ArGb071539@xorpc.icir.org> Date: Thu, 5 Jun 2003 17:10:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/06/05 17:10:53 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Bump the version number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 18:29:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 18:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h561U1wF068597 for ; Thu, 5 Jun 2003 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561U1DD067396 for ; Thu, 5 Jun 2003 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561U1bb025712; Thu, 5 Jun 2003 18:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561TFbb025700 for ; Thu, 5 Jun 2003 18:29:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561TFDD067389 for ; Thu, 5 Jun 2003 18:29:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h561TFQg082764 for ; Thu, 5 Jun 2003 18:29:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h561TFFk082763; Thu, 5 Jun 2003 18:29:15 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306060129.h561TFFk082763@xorpc.icir.org> Date: Thu, 5 Jun 2003 18:29:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/06/05 18:29:14 Modified files: ./: RELEASE_NOTES Log message: Update BGP section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 18:34:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 18:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h561Z1wF069103 for ; Thu, 5 Jun 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561Z1DD067435 for ; Thu, 5 Jun 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561Z1bb025815; Thu, 5 Jun 2003 18:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561YAbb025807 for ; Thu, 5 Jun 2003 18:34:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561Y9DD067429 for ; Thu, 5 Jun 2003 18:34:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h561Y9Qg083362 for ; Thu, 5 Jun 2003 18:34:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h561Y9rw083361; Thu, 5 Jun 2003 18:34:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060134.h561Y9rw083361@xorpc.icir.org> Date: Thu, 5 Jun 2003 18:34:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/05 18:34:09 Modified files: ./: RELEASE_NOTES Log message: Added release notes for FEA, MFEA, MLD6IGMP, PIM, CLI, plus few bullets to ALL and LIBXORP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 18:41:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 18:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h561g1wF069721 for ; Thu, 5 Jun 2003 18:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561g1DD067508 for ; Thu, 5 Jun 2003 18:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561g1bb025929; Thu, 5 Jun 2003 18:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h561f1bb025906 for ; Thu, 5 Jun 2003 18:41:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h561f1DD067497 for ; Thu, 5 Jun 2003 18:41:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h561f1Qg089037 for ; Thu, 5 Jun 2003 18:41:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h561f1lX089036; Thu, 5 Jun 2003 18:41:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306060141.h561f1lX089036@xorpc.icir.org> Date: Thu, 5 Jun 2003 18:41:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/05 18:41:01 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: Typos _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 19:08:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 19:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56292wF072350 for ; Thu, 5 Jun 2003 19:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56292DD067712 for ; Thu, 5 Jun 2003 19:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56291bb026242; Thu, 5 Jun 2003 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5628ubb026227 for ; Thu, 5 Jun 2003 19:08:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5628uDD067706 for ; Thu, 5 Jun 2003 19:08:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5628uQg094506 for ; Thu, 5 Jun 2003 19:08:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5628uN4094505; Thu, 5 Jun 2003 19:08:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060208.h5628uN4094505@xorpc.icir.org> Date: Thu, 5 Jun 2003 19:08:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/05 19:08:55 Modified files: ./: RELEASE_NOTES Log message: Added release notes for RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 19:24:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 19:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h562P1wF073564 for ; Thu, 5 Jun 2003 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h562P1DD067829; Thu, 5 Jun 2003 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h562P1bb026410; Thu, 5 Jun 2003 19:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h562Oebb026402 for ; Thu, 5 Jun 2003 19:24:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h562OeDD067823 for ; Thu, 5 Jun 2003 19:24:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h562OeQg006331 for ; Thu, 5 Jun 2003 19:24:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h562Oeqt006330; Thu, 5 Jun 2003 19:24:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060224.h562Oeqt006330@xorpc.icir.org> Date: Thu, 5 Jun 2003 19:24:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/05 19:24:40 Modified files: ./: RELEASE_NOTES Log message: Add a bullet to LIBXORP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 19:52:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 19:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h562r1wF075658 for ; Thu, 5 Jun 2003 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h562r1DD068046 for ; Thu, 5 Jun 2003 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h562r1bb026751; Thu, 5 Jun 2003 19:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h562qObb026744 for ; Thu, 5 Jun 2003 19:52:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h562qODD068042 for ; Thu, 5 Jun 2003 19:52:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h562qOQg016557 for ; Thu, 5 Jun 2003 19:52:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h562qOZx016556; Thu, 5 Jun 2003 19:52:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306060252.h562qOZx016556@xorpc.icir.org> Date: Thu, 5 Jun 2003 19:52:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 03/06/05 19:52:24 Modified files: ./: RELEASE_NOTES Log message: Update rtrmgr and xorpsh status. Minor tweaks elsewhere. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 20:04:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 20:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56351wF076577 for ; Thu, 5 Jun 2003 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56351DD068148 for ; Thu, 5 Jun 2003 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56350bb026885; Thu, 5 Jun 2003 20:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5634pbb026876 for ; Thu, 5 Jun 2003 20:04:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5634pDD068143 for ; Thu, 5 Jun 2003 20:04:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5634pQg019766 for ; Thu, 5 Jun 2003 20:04:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5634pX6019765; Thu, 5 Jun 2003 20:04:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306060304.h5634pX6019765@xorpc.icir.org> Date: Thu, 5 Jun 2003 20:04:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/05 20:04:51 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex xorpsh_userguide.tex Log message: Rename xorpsh_userguide. Update rtrmgr documentation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 20:06:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 20:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56371wF076757 for ; Thu, 5 Jun 2003 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56371DD068176 for ; Thu, 5 Jun 2003 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56371bb026916; Thu, 5 Jun 2003 20:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56368bb026903 for ; Thu, 5 Jun 2003 20:06:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56368DD068171 for ; Thu, 5 Jun 2003 20:06:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56368Qg020031 for ; Thu, 5 Jun 2003 20:06:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56368FW020030; Thu, 5 Jun 2003 20:06:08 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306060306.h56368FW020030@xorpc.icir.org> Date: Thu, 5 Jun 2003 20:06:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: mjh@xorpc.icir.org. 03/06/05 20:06:07 Modified files: xorp/docs/bgp/: bgp.tex Log message: 0.2 -> 0.3, change date, no other changes needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 20:38:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 20:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h563d1wF079175 for ; Thu, 5 Jun 2003 20:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h563d1DD068418 for ; Thu, 5 Jun 2003 20:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h563d1bb027292; Thu, 5 Jun 2003 20:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h563cfbb027279 for ; Thu, 5 Jun 2003 20:38:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h563ceDD068416 for ; Thu, 5 Jun 2003 20:38:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h563ceQg020503 for ; Thu, 5 Jun 2003 20:38:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h563ce1h020502; Thu, 5 Jun 2003 20:38:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306060338.h563ce1h020502@xorpc.icir.org> Date: Thu, 5 Jun 2003 20:38:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex xorp/docs/rib/figs/ overview.ps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/figs/ Changes by: mjh@xorpc.icir.org. 03/06/05 20:38:40 Modified files: xorp/docs/rib/: rib.tex xorp/docs/rib/figs/: overview.ps Log message: Add text and modify figure to reflect the addition of the RibClient registration mechanism. Bump version and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 20:59:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 21:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56401wF080802 for ; Thu, 5 Jun 2003 21:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56401DD068557 for ; Thu, 5 Jun 2003 21:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56401bb027499; Thu, 5 Jun 2003 21:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h563xIbb027487 for ; Thu, 5 Jun 2003 20:59:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h563xIDD068549 for ; Thu, 5 Jun 2003 20:59:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h563xIQg020709 for ; Thu, 5 Jun 2003 20:59:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h563xIS4020708; Thu, 5 Jun 2003 20:59:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060359.h563xIS4020708@xorpc.icir.org> Date: Thu, 5 Jun 2003 20:59:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ Makefile.am Makefile.in libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/06/05 20:59:18 Modified files: xorp/docs/libxorp/: Makefile.am Makefile.in libxorp_overview.tex Log message: Updated to match XORP version 0.3 release code: - Added info for ether_compat.h, status_codes.h, utility.h, xorp.h - Updated text for timeval.hh and xlog.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 21:04:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 21:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56453wF081396 for ; Thu, 5 Jun 2003 21:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56453DD068610; Thu, 5 Jun 2003 21:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56453bb027566; Thu, 5 Jun 2003 21:05:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5644sbb027546 for ; Thu, 5 Jun 2003 21:04:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5644sDD068600 for ; Thu, 5 Jun 2003 21:04:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5644sQg020819 for ; Thu, 5 Jun 2003 21:04:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5644sko020818; Thu, 5 Jun 2003 21:04:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060404.h5644sko020818@xorpc.icir.org> Date: Thu, 5 Jun 2003 21:04:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 03/06/05 21:04:54 Modified files: xorp/docs/: index.html xorp/docs/tex/: xorp.bib Log message: Update the name of the XORP Shell document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 21:39:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 21:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h564e2wF084712 for ; Thu, 5 Jun 2003 21:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h564e1DD068971 for ; Thu, 5 Jun 2003 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h564e1bb028094; Thu, 5 Jun 2003 21:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h564dZbb028086 for ; Thu, 5 Jun 2003 21:39:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h564dZDD068966 for ; Thu, 5 Jun 2003 21:39:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h564dYQg021122 for ; Thu, 5 Jun 2003 21:39:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h564dYCc021121; Thu, 5 Jun 2003 21:39:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060439.h564dYCc021121@xorpc.icir.org> Date: Thu, 5 Jun 2003 21:39:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/06/05 21:39:34 Modified files: xorp/docs/: status.html Log message: * Move the MFEA status to the FEA (the FEA status itself doesn't need update). * Update the RIP status (according to RELEASE_NOTES). * Update the IGMP status. The status of PIM-SM and MLD don't need update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Thu Jun 5 23:54:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Jun 2003 23:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h566t1wF097240 for ; Thu, 5 Jun 2003 23:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h566t0DD069965 for ; Thu, 5 Jun 2003 23:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h566t0bb000215; Thu, 5 Jun 2003 23:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h566s5bb000194 for ; Thu, 5 Jun 2003 23:54:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h566s4DD069954 for ; Thu, 5 Jun 2003 23:54:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h566s4Qg022060 for ; Thu, 5 Jun 2003 23:54:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h566s4tU022059; Thu, 5 Jun 2003 23:54:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060654.h566s4tU022059@xorpc.icir.org> Date: Thu, 5 Jun 2003 23:54:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/05 23:54:04 Modified files: ./: README Log message: Updated README: - Modify the list of officially supported platforms - Add a list of platforms on which XORP compiles or may work on - Remove the mfea entry, and modify the fea entry as appropriate. - Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Fri Jun 6 1:37:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568c2wF008105 for ; Fri, 6 Jun 2003 01:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568c2DD070854 for ; Fri, 6 Jun 2003 01:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568c1bb001707; Fri, 6 Jun 2003 01:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568b7bb001688 for ; Fri, 6 Jun 2003 01:37:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568b7DD070848 for ; Fri, 6 Jun 2003 01:37:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568b7Qg064200 for ; Fri, 6 Jun 2003 01:37:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568b70e064199; Fri, 6 Jun 2003 01:37:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060837.h568b70e064199@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:37:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:37:07 Modified files: xorp/bgp/: README Log message: Add a "Documentation" section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Fri Jun 6 1:38:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568d1wF008254 for ; Fri, 6 Jun 2003 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568d1DD070861; Fri, 6 Jun 2003 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568d1bb001738; Fri, 6 Jun 2003 01:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568c6bb001718 for ; Fri, 6 Jun 2003 01:38:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568c6DD070858 for ; Fri, 6 Jun 2003 01:38:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568c6Qg064393 for ; Fri, 6 Jun 2003 01:38:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568c62r064392; Fri, 6 Jun 2003 01:38:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060838.h568c62r064392@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:38:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:38:06 Modified files: xorp/cli/: README Log message: Replace "Currently (June 6, 2003)" with "Currently (June 2003)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Fri Jun 6 1:43:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568i1wF008935 for ; Fri, 6 Jun 2003 01:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568i1DD070924 for ; Fri, 6 Jun 2003 01:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568i0bb001844; Fri, 6 Jun 2003 01:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568hYbb001834 for ; Fri, 6 Jun 2003 01:43:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568hYDD070921 for ; Fri, 6 Jun 2003 01:43:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568hYQg064661 for ; Fri, 6 Jun 2003 01:43:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568hY2d064660; Fri, 6 Jun 2003 01:43:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060843.h568hY2d064660@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:43:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:43:34 Modified files: xorp/fea/: README.mfea Log message: * Replace "Currently (June 6, 2003)" with "Currently (June 2003)" * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:06 2005 Subject: No subject Fri Jun 6 1:44:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568j1wF009090 for ; Fri, 6 Jun 2003 01:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568j1DD070947 for ; Fri, 6 Jun 2003 01:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568j1bb001868; Fri, 6 Jun 2003 01:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568iZbb001856 for ; Fri, 6 Jun 2003 01:44:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568iZDD070936 for ; Fri, 6 Jun 2003 01:44:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568iYQg064721 for ; Fri, 6 Jun 2003 01:44:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568iYZC064720; Fri, 6 Jun 2003 01:44:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060844.h568iYZC064720@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:44:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:44:34 Modified files: xorp/libcomm/: README Log message: Minor edits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:44:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568j2wF009109 for ; Fri, 6 Jun 2003 01:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568j2DD070951 for ; Fri, 6 Jun 2003 01:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568j1bb001879; Fri, 6 Jun 2003 01:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568inbb001861 for ; Fri, 6 Jun 2003 01:44:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568inDD070938 for ; Fri, 6 Jun 2003 01:44:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568imQg064752 for ; Fri, 6 Jun 2003 01:44:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568imCY064751; Fri, 6 Jun 2003 01:44:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060844.h568imCY064751@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:44:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:44:48 Modified files: xorp/mld6igmp/: README TODO Log message: * Replace "Currently (June 6, 2003)" with "Currently (June 2003)" * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:45:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568k1wF009251 for ; Fri, 6 Jun 2003 01:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568k1DD070978 for ; Fri, 6 Jun 2003 01:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568k1bb001908; Fri, 6 Jun 2003 01:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568jBbb001893 for ; Fri, 6 Jun 2003 01:45:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568jBDD070972 for ; Fri, 6 Jun 2003 01:45:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568jBQg064826 for ; Fri, 6 Jun 2003 01:45:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568jB4Q064825; Fri, 6 Jun 2003 01:45:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060845.h568jB4Q064825@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:45:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:45:11 Modified files: xorp/pim/: README Log message: * Replace "Currently (June 6, 2003)" with "Currently (June 2003)" * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:45:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568k2wF009270 for ; Fri, 6 Jun 2003 01:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568k2DD070982 for ; Fri, 6 Jun 2003 01:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568k1bb001919; Fri, 6 Jun 2003 01:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568jebb001900 for ; Fri, 6 Jun 2003 01:45:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568jdDD070974 for ; Fri, 6 Jun 2003 01:45:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568jdQg064891 for ; Fri, 6 Jun 2003 01:45:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568jdZM064890; Fri, 6 Jun 2003 01:45:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060845.h568jdZM064890@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:45:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:45:39 Modified files: xorp/rib/: README Log message: * Replace section "Structure" with section "Documentation". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:46:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568l1wF009403 for ; Fri, 6 Jun 2003 01:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568l1DD070999 for ; Fri, 6 Jun 2003 01:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568l1bb001938; Fri, 6 Jun 2003 01:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568kabb001931 for ; Fri, 6 Jun 2003 01:46:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568kaDD070997 for ; Fri, 6 Jun 2003 01:46:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568kaQg065007 for ; Fri, 6 Jun 2003 01:46:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568kaXU065006; Fri, 6 Jun 2003 01:46:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060846.h568kaXU065006@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:46:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:46:36 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Add a task item to bump-up XORP_MODULE_VERSION in all foo_module.h files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:48:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568n1wF009649 for ; Fri, 6 Jun 2003 01:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568n1DD071015; Fri, 6 Jun 2003 01:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568n1bb001972; Fri, 6 Jun 2003 01:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568mJbb001961 for ; Fri, 6 Jun 2003 01:48:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568mJDD071013 for ; Fri, 6 Jun 2003 01:48:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568mJQg065272 for ; Fri, 6 Jun 2003 01:48:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568mJTP065271; Fri, 6 Jun 2003 01:48:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060848.h568mJTP065271@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:48:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:48:18 Modified files: xorp/fea/: TODO xorp/cli/: TODO Log message: Prune old TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:52:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568r2wF010123 for ; Fri, 6 Jun 2003 01:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568r1DD071058; Fri, 6 Jun 2003 01:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568r1bb002018; Fri, 6 Jun 2003 01:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568qRbb002007 for ; Fri, 6 Jun 2003 01:52:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568qRDD071054 for ; Fri, 6 Jun 2003 01:52:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568qRQg066438 for ; Fri, 6 Jun 2003 01:52:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568qR48066437; Fri, 6 Jun 2003 01:52:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060852.h568qR48066437@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:52:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:52:27 Modified files: ./: README Log message: * Update the BGP I-D from draft-ietf-idr-bgp4-18.txt to draft-ietf-idr-bgp4-20.txt * Demote the status for the following non-supported platform (xorp4): Linux RedHat-7.2 (kernel 2.4.18) from "passes all internal tests" to "some of the internal tests fail" The reason for the demotion is the weird failure of (at least) libxorp/test_ipvx and libxorp/test_ipvxnet when a throwing of an expected exception is not caught, but coredump _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 1:54:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 01:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h568t1wF010396 for ; Fri, 6 Jun 2003 01:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568t1DD071077 for ; Fri, 6 Jun 2003 01:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568t1bb002043; Fri, 6 Jun 2003 01:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h568sabb002032 for ; Fri, 6 Jun 2003 01:54:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h568saDD071067 for ; Fri, 6 Jun 2003 01:54:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h568saQg067046 for ; Fri, 6 Jun 2003 01:54:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h568saiv067045; Fri, 6 Jun 2003 01:54:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060854.h568saiv067045@xorpc.icir.org> Date: Fri, 6 Jun 2003 1:54:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/06/06 01:54:36 Modified files: xorp/libxorp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 2:13:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 02:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h569E1wF012848 for ; Fri, 6 Jun 2003 02:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h569E1DD071577; Fri, 6 Jun 2003 02:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h569E0bb002272; Fri, 6 Jun 2003 02:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h569DXbb002261 for ; Fri, 6 Jun 2003 02:13:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h569DXDD071573 for ; Fri, 6 Jun 2003 02:13:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h569DXQg070639 for ; Fri, 6 Jun 2003 02:13:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h569DXCo070638; Fri, 6 Jun 2003 02:13:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060913.h569DXCo070638@xorpc.icir.org> Date: Fri, 6 Jun 2003 2:13:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/06 02:13:32 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: On second thought, for the time being ignore the task of increasing XORP_MODULE_VERSION before each release, until we have better idea about its particular purpose (if any). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 2:26:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 02:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h569R1wF014332 for ; Fri, 6 Jun 2003 02:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h569R1DD071699 for ; Fri, 6 Jun 2003 02:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h569R0bb002447; Fri, 6 Jun 2003 02:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h569Q6bb002429 for ; Fri, 6 Jun 2003 02:26:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h569Q6DD071695 for ; Fri, 6 Jun 2003 02:26:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h569Q6Qg070746 for ; Fri, 6 Jun 2003 02:26:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h569Q6eE070745; Fri, 6 Jun 2003 02:26:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306060926.h569Q6eE070745@xorpc.icir.org> Date: Fri, 6 Jun 2003 2:26:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/06/06 02:26:06 Modified files: xorp/docs/: status.html Log message: Update draft-ietf-idr-bgp4-18.txt to draft-ietf-idr-bgp4-20.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 10:34:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 10:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56HZ1wF053112 for ; Fri, 6 Jun 2003 10:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56HZ1DD077387 for ; Fri, 6 Jun 2003 10:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56HZ1bb010715; Fri, 6 Jun 2003 10:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56HY7bb010702 for ; Fri, 6 Jun 2003 10:34:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56HY6DD077380 for ; Fri, 6 Jun 2003 10:34:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56HY6Qg022821 for ; Fri, 6 Jun 2003 10:34:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56HY6lE022820; Fri, 6 Jun 2003 10:34:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306061734.h56HY6lE022820@xorpc.icir.org> Date: Fri, 6 Jun 2003 10:34:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/06 10:34:06 Modified files: xorp/libxipc/: xrl_router.cc Log message: Fix memory leak. Reviewed by: mjh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 11:31:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 11:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IW2wF057663 for ; Fri, 6 Jun 2003 11:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IW1DD078056 for ; Fri, 6 Jun 2003 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56IW1bb011768; Fri, 6 Jun 2003 11:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56IVTbb011741 for ; Fri, 6 Jun 2003 11:31:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IVTDD078052 for ; Fri, 6 Jun 2003 11:31:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IVTQg023288 for ; Fri, 6 Jun 2003 11:31:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56IVTJ7023287; Fri, 6 Jun 2003 11:31:29 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306061831.h56IVTJ7023287@xorpc.icir.org> Date: Fri, 6 Jun 2003 11:31:29 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/06 11:31:29 Added files: xorp/mibs/: README Log message: Created _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 11:48:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 11:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56In1wF059340 for ; Fri, 6 Jun 2003 11:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56In1DD078247 for ; Fri, 6 Jun 2003 11:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56In1bb012174; Fri, 6 Jun 2003 11:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Imwbb012168 for ; Fri, 6 Jun 2003 11:48:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56ImwDD078245 for ; Fri, 6 Jun 2003 11:48:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56ImwQg023544 for ; Fri, 6 Jun 2003 11:48:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56ImwaU023543; Fri, 6 Jun 2003 11:48:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306061848.h56ImwaU023543@xorpc.icir.org> Date: Fri, 6 Jun 2003 11:48:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex xorp/docs/fea/ fea.tex xorp/docs/libxipc/ libxipc_overview.tex xrl_interfaces.tex xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: pavlin@xorpc.icir.org. 03/06/06 11:48:58 Modified files: xorp/docs/design_arch/: design_arch.tex xorp/docs/fea/: fea.tex xorp/docs/libxipc/: libxipc_overview.tex xrl_interfaces.tex xorp/docs/test_harness/: test_harness.tex Log message: Bumped-up the date to June 6, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 11:52:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 11:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Ir1wF059868 for ; Fri, 6 Jun 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Ir1DD078297 for ; Fri, 6 Jun 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Ir0bb012253; Fri, 6 Jun 2003 11:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56IqKbb012239 for ; Fri, 6 Jun 2003 11:52:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IqJDD078293 for ; Fri, 6 Jun 2003 11:52:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IqJQg023599 for ; Fri, 6 Jun 2003 11:52:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56IqJ1A023598; Fri, 6 Jun 2003 11:52:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306061852.h56IqJ1A023598@xorpc.icir.org> Date: Fri, 6 Jun 2003 11:52:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/06/06 11:52:19 Modified files: xorp/docs/: index.html Log message: Bump-up the docs version to 0.3 and the date to 2003-06-06 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 11:53:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 11:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Is1wF060021 for ; Fri, 6 Jun 2003 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Is1DD078308 for ; Fri, 6 Jun 2003 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Is1bb012284; Fri, 6 Jun 2003 11:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Irabb012275 for ; Fri, 6 Jun 2003 11:53:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IraDD078304 for ; Fri, 6 Jun 2003 11:53:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56IraQg023641 for ; Fri, 6 Jun 2003 11:53:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56Iraxo023640; Fri, 6 Jun 2003 11:53:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306061853.h56Iraxo023640@xorpc.icir.org> Date: Fri, 6 Jun 2003 11:53:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/06 11:53:36 Modified files: xorp/bgp/: README Log message: Bumped the date to June. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 12:04:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 12:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J51wF061431 for ; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J51DD078433 for ; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56J51bb012574; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56J42bb012554 for ; Fri, 6 Jun 2003 12:04:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J42DD078423 for ; Fri, 6 Jun 2003 12:04:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J42Qg031954 for ; Fri, 6 Jun 2003 12:04:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56J41Dq031947; Fri, 6 Jun 2003 12:04:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306061904.h56J41Dq031947@xorpc.icir.org> Date: Fri, 6 Jun 2003 12:04:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/06 12:04:01 Modified files: ./: downloads.html Log message: Added an entry for Release-0.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 12:05:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J61wF061594 for ; Fri, 6 Jun 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J61DD078466; Fri, 6 Jun 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56J61bb012607; Fri, 6 Jun 2003 12:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56J52bb012583 for ; Fri, 6 Jun 2003 12:05:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J51DD078436 for ; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J51Qg032135 for ; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56J51e4032134; Fri, 6 Jun 2003 12:05:01 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306061905.h56J51e4032134@xorpc.icir.org> Date: Fri, 6 Jun 2003 12:05:01 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/06 12:05:01 Modified files: xorp/mibs/: README Log message: Added known problems section _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 12:09:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 12:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JA1wF062096 for ; Fri, 6 Jun 2003 12:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JA1DD078510 for ; Fri, 6 Jun 2003 12:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56JA1bb012698; Fri, 6 Jun 2003 12:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56J9Lbb012683 for ; Fri, 6 Jun 2003 12:09:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J9LDD078503 for ; Fri, 6 Jun 2003 12:09:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56J9LQg032901 for ; Fri, 6 Jun 2003 12:09:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56J9L4u032900; Fri, 6 Jun 2003 12:09:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306061909.h56J9L4u032900@xorpc.icir.org> Date: Fri, 6 Jun 2003 12:09:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/06/06 12:09:21 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Add a note to include leak testing in final testing before release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:07 2005 Subject: No subject Fri Jun 6 12:20:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 12:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JL1wF063521 for ; Fri, 6 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JL1DD078652 for ; Fri, 6 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56JL1bb012904; Fri, 6 Jun 2003 12:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56JK9bb012879 for ; Fri, 6 Jun 2003 12:20:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JK9DD078647 for ; Fri, 6 Jun 2003 12:20:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JK9Qg034807 for ; Fri, 6 Jun 2003 12:20:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56JK9vq034804; Fri, 6 Jun 2003 12:20:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306061920.h56JK9vq034804@xorpc.icir.org> Date: Fri, 6 Jun 2003 12:20:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/06/06 12:20:09 Modified files: xorp/mibs/: Makefile.in Log message: Regenerate Makefile.in with README inside _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Fri Jun 6 12:21:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 12:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JM1wF063648 for ; Fri, 6 Jun 2003 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JM1DD078666 for ; Fri, 6 Jun 2003 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56JM1bb012952; Fri, 6 Jun 2003 12:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56JLAbb012922 for ; Fri, 6 Jun 2003 12:21:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JLADD078658 for ; Fri, 6 Jun 2003 12:21:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56JLAQg034935 for ; Fri, 6 Jun 2003 12:21:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56JLArQ034934; Fri, 6 Jun 2003 12:21:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306061921.h56JLArQ034934@xorpc.icir.org> Date: Fri, 6 Jun 2003 12:21:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/06 12:21:10 Modified files: ./: VERSION configure configure.in Log message: Prepare XORP for release: bump-up version number _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Fri Jun 6 16:05:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 16:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56N62wF093039 for ; Fri, 6 Jun 2003 16:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56N62DD083964 for ; Fri, 6 Jun 2003 16:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56N61bb016977; Fri, 6 Jun 2003 16:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56N5nbb016970 for ; Fri, 6 Jun 2003 16:05:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56N5nDD083961 for ; Fri, 6 Jun 2003 16:05:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56N5nQg075189 for ; Fri, 6 Jun 2003 16:05:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56N5nNR075188; Fri, 6 Jun 2003 16:05:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306062305.h56N5nNR075188@xorpc.icir.org> Date: Fri, 6 Jun 2003 16:05:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/06 16:05:49 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Correction in one of the steps of performing the release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Fri Jun 6 16:47:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 16:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Nm1wF008945 for ; Fri, 6 Jun 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Nm1DD084459 for ; Fri, 6 Jun 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Nm1bb017843; Fri, 6 Jun 2003 16:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56NlJbb017828 for ; Fri, 6 Jun 2003 16:47:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56NlIDD084456 for ; Fri, 6 Jun 2003 16:47:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56NlIQg075873 for ; Fri, 6 Jun 2003 16:47:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56NlINh075872; Fri, 6 Jun 2003 16:47:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306062347.h56NlINh075872@xorpc.icir.org> Date: Fri, 6 Jun 2003 16:47:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ command_mld6igmp configure_mld6igmp xorp/pim/ command_pim configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/06 16:47:18 Modified files: xorp/mld6igmp/: command_mld6igmp configure_mld6igmp xorp/pim/: command_pim configure_pim Log message: Fix a path to a shell script used by mld6igmp and pim: OLD: . ../mfea/xrl_mfea_shell_funcs.sh NEW: . ../fea/xrl_mfea_shell_funcs.sh Approved by: mjh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Fri Jun 6 16:56:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 16:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Nv1wF011586 for ; Fri, 6 Jun 2003 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56Nv1DD084618 for ; Fri, 6 Jun 2003 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56Nv0bb017999; Fri, 6 Jun 2003 16:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h56NuZbb017987 for ; Fri, 6 Jun 2003 16:56:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h56NuZDD084616 for ; Fri, 6 Jun 2003 16:56:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h56NuZQg076040 for ; Fri, 6 Jun 2003 16:56:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h56NuZSA076039; Fri, 6 Jun 2003 16:56:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306062356.h56NuZSA076039@xorpc.icir.org> Date: Fri, 6 Jun 2003 16:56:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/06 16:56:35 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Apply a compilation fix for newer Linux versions that have getifaddrs(3). The fix is to add #ifdef AF_LINK ... #endif around code that uses AF_LINK. This fix affects only the fea (though in practice it won't have any effect on the OS-es that XORP already compiles on). Approved by: mjh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Fri Jun 6 18:16:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Jun 2003 18:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h571H1wF036831 for ; Fri, 6 Jun 2003 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h571H0DD085374 for ; Fri, 6 Jun 2003 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h571H0bb019065; Fri, 6 Jun 2003 18:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h571G5bb019054 for ; Fri, 6 Jun 2003 18:16:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h571G5DD085357 for ; Fri, 6 Jun 2003 18:16:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h571G5Qg000220 for ; Fri, 6 Jun 2003 18:16:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h571G55O000206; Fri, 6 Jun 2003 18:16:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306070116.h571G55O000206@xorpc.icir.org> Date: Fri, 6 Jun 2003 18:16:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/06 18:16:05 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Fix bug in timeout callback dispatch. Erase state before invoking callback otherwise callback may trigger operations to delete state that is later referenced. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Sat Jun 7 1:45:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 07 Jun 2003 01:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h578k1wF075199 for ; Sat, 7 Jun 2003 01:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h578k0DD088509 for ; Sat, 7 Jun 2003 01:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h578k0bb024241; Sat, 7 Jun 2003 01:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h578jAbb024230 for ; Sat, 7 Jun 2003 01:45:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h578jADD088507 for ; Sat, 7 Jun 2003 01:45:10 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h578jAQg082128 for ; Sat, 7 Jun 2003 01:45:10 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h578jAdk082127; Sat, 7 Jun 2003 01:45:10 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306070845.h578jAdk082127@xorpc.icir.org> Date: Sat, 7 Jun 2003 1:45:10 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgppeertable.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/07 01:45:10 Modified files: xorp/mibs/: bgp4_mib_1657_bgppeertable.cc Log message: Exported events inside get_next_data_point to ensure that XORP events are properly transfered to snmpd. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 9:18:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 09:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59GJ1wF042883 for ; Mon, 9 Jun 2003 09:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59GJ1DD019364; Mon, 9 Jun 2003 09:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59GJ1bb001338; Mon, 9 Jun 2003 09:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59GIabb001322 for ; Mon, 9 Jun 2003 09:18:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59GIaDD019357 for ; Mon, 9 Jun 2003 09:18:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59GIaQg035640 for ; Mon, 9 Jun 2003 09:18:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59GIaHl035639; Mon, 9 Jun 2003 09:18:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091618.h59GIaHl035639@xorpc.icir.org> Date: Mon, 9 Jun 2003 9:18:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/09 09:18:36 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 12:13:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 12:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JE1wF059986 for ; Mon, 9 Jun 2003 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JE1DD021132 for ; Mon, 9 Jun 2003 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59JE1bb004614; Mon, 9 Jun 2003 12:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59JDXbb004605 for ; Mon, 9 Jun 2003 12:13:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JDWDD021124 for ; Mon, 9 Jun 2003 12:13:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JDWQg046554 for ; Mon, 9 Jun 2003 12:13:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59JDWIc046553; Mon, 9 Jun 2003 12:13:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091913.h59JDWIc046553@xorpc.icir.org> Date: Mon, 9 Jun 2003 12:13:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 12:13:32 Modified files: ./: README Log message: * Added Orion's text describing the problem with the exception handler on older Lunux versions. * Added "Known problems" paragraph which now describes the problem and the work-around solution regarding "gmake -j 4" on multi-CPU machines. * Formatting nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 12:48:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 12:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jn2wF064403 for ; Mon, 9 Jun 2003 12:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jn1DD021486 for ; Mon, 9 Jun 2003 12:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jn1bb005325; Mon, 9 Jun 2003 12:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jmxbb005319 for ; Mon, 9 Jun 2003 12:48:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JmxDD021484 for ; Mon, 9 Jun 2003 12:48:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JmxQg060260 for ; Mon, 9 Jun 2003 12:48:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59JmwHw060259; Mon, 9 Jun 2003 12:48:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091948.h59JmwHw060259@xorpc.icir.org> Date: Mon, 9 Jun 2003 12:48:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 12:48:58 Modified files: ./: news.html Log message: Added a news item for Release-0.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 12:49:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 12:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jo1wF064545 for ; Mon, 9 Jun 2003 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jo1DD021503 for ; Mon, 9 Jun 2003 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jo1bb005348; Mon, 9 Jun 2003 12:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jngbb005340 for ; Mon, 9 Jun 2003 12:49:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JngDD021497 for ; Mon, 9 Jun 2003 12:49:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JngQg060385 for ; Mon, 9 Jun 2003 12:49:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59JngX8060384; Mon, 9 Jun 2003 12:49:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091949.h59JngX8060384@xorpc.icir.org> Date: Mon, 9 Jun 2003 12:49:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 12:49:42 Modified files: ./: downloads.html Log message: Updated the release-0.3 release date to 2003-06-09 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 12:52:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 12:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jr1wF064921 for ; Mon, 9 Jun 2003 12:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jr1DD021547 for ; Mon, 9 Jun 2003 12:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jr0bb005398; Mon, 9 Jun 2003 12:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jqobb005388 for ; Mon, 9 Jun 2003 12:52:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JqoDD021545 for ; Mon, 9 Jun 2003 12:52:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JqoQg061134 for ; Mon, 9 Jun 2003 12:52:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59JqoDF061133; Mon, 9 Jun 2003 12:52:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091952.h59JqoDF061133@xorpc.icir.org> Date: Mon, 9 Jun 2003 12:52:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 12:52:49 Modified files: ./: index.html Log message: * Update all references to the most recent release version and date. * Update the mentioning Linux version used for development from RedHat-7.2 to RedHat-7.3 * Add a news item for Release-0.3 * Remove the short-cuts for the news items before May 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 12:54:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 12:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jt1wF065175 for ; Mon, 9 Jun 2003 12:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Jt1DD021570 for ; Mon, 9 Jun 2003 12:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jt1bb005434; Mon, 9 Jun 2003 12:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Jsubb005428 for ; Mon, 9 Jun 2003 12:54:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JsuDD021565 for ; Mon, 9 Jun 2003 12:54:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59JsuQg061876 for ; Mon, 9 Jun 2003 12:54:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59JsuxT061870; Mon, 9 Jun 2003 12:54:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306091954.h59JsuxT061870@xorpc.icir.org> Date: Mon, 9 Jun 2003 12:54:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/06/09 12:54:56 Modified files: xorp/docs/: index.html Log message: Update the documents date to 2003-06-09 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 13:02:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 13:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K31wF066146 for ; Mon, 9 Jun 2003 13:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K30DD021662; Mon, 9 Jun 2003 13:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59K30bb005589; Mon, 9 Jun 2003 13:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59K2Nbb005571 for ; Mon, 9 Jun 2003 13:02:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K2NDD021650 for ; Mon, 9 Jun 2003 13:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K2NQg064031 for ; Mon, 9 Jun 2003 13:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59K2NXv064030; Mon, 9 Jun 2003 13:02:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092002.h59K2NXv064030@xorpc.icir.org> Date: Mon, 9 Jun 2003 13:02:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex xorp/docs/design_arch/ design_arch.tex error_handling.tex xorp/docs/fea/ fea.tex xorp/docs/libxipc/ libxipc_overview.tex xrl_interfaces.tex xorp/docs/libxorp/ libxorp_overview.tex xorp/docs/mfea/ mfea_arch.tex xorp/docs/mld6igmp/ mld6igmp_arch.tex xorp/docs/multicast/ multicast_arch.tex xorp/docs/pim/ pim_arch.tex xorp/docs/pim_testsuite/ pim_testsuite.tex xorp/docs/rib/ rib.tex xorp/docs/rtrmgr/ rtrmgr.tex xorpsh_userguide.tex xorp/docs/snmp/ snmp_overview.tex xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: pavlin@xorpc.icir.org. 03/06/09 13:02:23 Modified files: xorp/docs/bgp/: bgp.tex xorp/docs/design_arch/: design_arch.tex error_handling.tex xorp/docs/fea/: fea.tex xorp/docs/libxipc/: libxipc_overview.tex xrl_interfaces.tex xorp/docs/libxorp/: libxorp_overview.tex xorp/docs/mfea/: mfea_arch.tex xorp/docs/mld6igmp/: mld6igmp_arch.tex xorp/docs/multicast/: multicast_arch.tex xorp/docs/pim/: pim_arch.tex xorp/docs/pim_testsuite/: pim_testsuite.tex xorp/docs/rib/: rib.tex xorp/docs/rtrmgr/: rtrmgr.tex xorpsh_userguide.tex xorp/docs/snmp/: snmp_overview.tex xorp/docs/test_harness/: test_harness.tex Log message: Update the documents date from June 6 to June 9. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 13:08:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 13:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K91wF066877 for ; Mon, 9 Jun 2003 13:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K91DD021718 for ; Mon, 9 Jun 2003 13:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59K91bb005694; Mon, 9 Jun 2003 13:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59K8nbb005685 for ; Mon, 9 Jun 2003 13:08:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K8nDD021716 for ; Mon, 9 Jun 2003 13:08:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59K8nQg065484 for ; Mon, 9 Jun 2003 13:08:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59K8n6g065483; Mon, 9 Jun 2003 13:08:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092008.h59K8n6g065483@xorpc.icir.org> Date: Mon, 9 Jun 2003 13:08:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 13:08:49 Modified files: ./: RELEASE_NOTES Log message: Update Release-0.3 date to 2003/06/09 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 13:13:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 13:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KE2wF067521 for ; Mon, 9 Jun 2003 13:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KE1DD021771 for ; Mon, 9 Jun 2003 13:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59KE1bb005828; Mon, 9 Jun 2003 13:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59KE0bb005822 for ; Mon, 9 Jun 2003 13:14:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KE0DD021769 for ; Mon, 9 Jun 2003 13:14:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KDxQg066102 for ; Mon, 9 Jun 2003 13:13:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59KDx0H066101; Mon, 9 Jun 2003 13:13:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092013.h59KDx0H066101@xorpc.icir.org> Date: Mon, 9 Jun 2003 13:13:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/figs/ snmp_fig2.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/figs/ Changes by: pavlin@xorpc.icir.org. 03/06/09 13:13:59 Modified files: xorp/docs/snmp/figs/: snmp_fig2.eps Log message: Regenerate auto-generated *.eps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 13:15:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 13:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KG1wF067801 for ; Mon, 9 Jun 2003 13:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KG1DD021803 for ; Mon, 9 Jun 2003 13:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59KG1bb005868; Mon, 9 Jun 2003 13:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59KFIbb005850 for ; Mon, 9 Jun 2003 13:15:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KFIDD021799 for ; Mon, 9 Jun 2003 13:15:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59KFHQg073315 for ; Mon, 9 Jun 2003 13:15:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59KFH7u073312; Mon, 9 Jun 2003 13:15:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092015.h59KFH7u073312@xorpc.icir.org> Date: Mon, 9 Jun 2003 13:15:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/09 13:15:17 Modified files: xorp/devnotes/: xorp_release_process.txt Log message: Add more notes re. editing the web pages in www/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 13:46:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 13:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Kl2wF071518 for ; Mon, 9 Jun 2003 13:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Kl1DD022083; Mon, 9 Jun 2003 13:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Kl1bb006476; Mon, 9 Jun 2003 13:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Kk9bb006452 for ; Mon, 9 Jun 2003 13:46:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Kk9DD022080 for ; Mon, 9 Jun 2003 13:46:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Kk9Qg085810 for ; Mon, 9 Jun 2003 13:46:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59Kk9no085809; Mon, 9 Jun 2003 13:46:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092046.h59Kk9no085809@xorpc.icir.org> Date: Mon, 9 Jun 2003 13:46:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/09 13:46:09 Modified files: ./: index.html Log message: Add a link to the release notes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 14:28:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 14:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LT1wF076537 for ; Mon, 9 Jun 2003 14:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LT0DD022435 for ; Mon, 9 Jun 2003 14:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59LT0bb007264; Mon, 9 Jun 2003 14:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59LS5bb007240 for ; Mon, 9 Jun 2003 14:28:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LS5DD022430 for ; Mon, 9 Jun 2003 14:28:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LS5Qg091524 for ; Mon, 9 Jun 2003 14:28:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59LS5wb091523; Mon, 9 Jun 2003 14:28:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092128.h59LS5wb091523@xorpc.icir.org> Date: Mon, 9 Jun 2003 14:28:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/09 14:28:04 Modified files: xorp/libxipc/: test_finder.cc Log message: Delete finder at end of test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:08 2005 Subject: No subject Mon Jun 9 14:32:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 14:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LX3wF077051 for ; Mon, 9 Jun 2003 14:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LX3DD022487 for ; Mon, 9 Jun 2003 14:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59LX2bb007353; Mon, 9 Jun 2003 14:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59LWhbb007343 for ; Mon, 9 Jun 2003 14:32:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LWhDD022485 for ; Mon, 9 Jun 2003 14:32:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LWhQg091612 for ; Mon, 9 Jun 2003 14:32:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59LWh2Y091611; Mon, 9 Jun 2003 14:32:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092132.h59LWh2Y091611@xorpc.icir.org> Date: Mon, 9 Jun 2003 14:32:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_events.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/09 14:32:43 Modified files: xorp/libxipc/: test_finder_events.cc Log message: Constrain default number of sockets to be significantly less than the descriptor table size. Additional command line arguments to control number of test iterations and number of simulated clients. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 14:55:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 14:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Lu1wF079887 for ; Mon, 9 Jun 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Lu1DD022723 for ; Mon, 9 Jun 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Lu1bb007804; Mon, 9 Jun 2003 14:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59LtSbb007786 for ; Mon, 9 Jun 2003 14:55:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LtSDD022721 for ; Mon, 9 Jun 2003 14:55:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59LtSQg091907 for ; Mon, 9 Jun 2003 14:55:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59LtS3Y091906; Mon, 9 Jun 2003 14:55:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092155.h59LtS3Y091906@xorpc.icir.org> Date: Mon, 9 Jun 2003 14:55:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xorp/libxipc/ test_leaks.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/09 14:55:28 Modified files: xorp/libxipc/: Makefile.am Makefile.in Added files: xorp/libxipc/: test_leaks.sh Log message: Add leak check test which runs test binaries through LeakTracer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 15:14:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 15:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MF1wF082308 for ; Mon, 9 Jun 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MF1DD022885; Mon, 9 Jun 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59MF0bb008157; Mon, 9 Jun 2003 15:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59MEKbb008145 for ; Mon, 9 Jun 2003 15:14:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MEJDD022877 for ; Mon, 9 Jun 2003 15:14:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MEJQg092094 for ; Mon, 9 Jun 2003 15:14:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59MEJqD092093; Mon, 9 Jun 2003 15:14:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092214.h59MEJqD092093@xorpc.icir.org> Date: Mon, 9 Jun 2003 15:14:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.cc test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/09 15:14:19 Modified files: xorp/libxipc/: finder_client.cc test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Log message: Remove Xrl argument from dispatch callbacks - these have not been exposed to the client generated code for sometime and result in unnecessary copies of data. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 15:15:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 15:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MG1wF082462 for ; Mon, 9 Jun 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MG1DD022909 for ; Mon, 9 Jun 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59MG1bb008183; Mon, 9 Jun 2003 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59MFYbb008172 for ; Mon, 9 Jun 2003 15:15:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MFXDD022907 for ; Mon, 9 Jun 2003 15:15:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MFXQg092144 for ; Mon, 9 Jun 2003 15:15:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59MFXw8092143; Mon, 9 Jun 2003 15:15:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092215.h59MFXw8092143@xorpc.icir.org> Date: Mon, 9 Jun 2003 15:15:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_timers.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/06/09 15:15:33 Modified files: xorp/rip/: test_timers.cc Log message: Clean up state on exit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 15:50:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 15:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Mp1wF096253 for ; Mon, 9 Jun 2003 15:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Mp1DD023730; Mon, 9 Jun 2003 15:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Mp1bb008890; Mon, 9 Jun 2003 15:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59MoSbb008870 for ; Mon, 9 Jun 2003 15:50:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MoSDD023725 for ; Mon, 9 Jun 2003 15:50:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59MoRQg092450 for ; Mon, 9 Jun 2003 15:50:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59MoRBe092449; Mon, 9 Jun 2003 15:50:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092250.h59MoRBe092449@xorpc.icir.org> Date: Mon, 9 Jun 2003 15:50:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ test_comm.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: hodson@xorpc.icir.org. 03/06/09 15:50:27 Modified files: xorp/libcomm/: test_comm.c Log message: Replace deprecated inet_aton with inet_addr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 16:32:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NX1wF001898 for ; Mon, 9 Jun 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NX1DD024737 for ; Mon, 9 Jun 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59NX0bb009562; Mon, 9 Jun 2003 16:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59NWHbb009548 for ; Mon, 9 Jun 2003 16:32:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NWHDD024735 for ; Mon, 9 Jun 2003 16:32:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NWGQg092932 for ; Mon, 9 Jun 2003 16:32:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59NWGcJ092931; Mon, 9 Jun 2003 16:32:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306092332.h59NWGcJ092931@xorpc.icir.org> Date: Mon, 9 Jun 2003 16:32:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_sock.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 03/06/09 16:32:16 Modified files: xorp/libcomm/: comm_sock.c Log message: Fix an alignment problem on Solaris (spotted by Orion). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 16:38:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 16:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nd1wF002693 for ; Mon, 9 Jun 2003 16:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nd0DD024798 for ; Mon, 9 Jun 2003 16:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Nd0bb009688; Mon, 9 Jun 2003 16:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Ncfbb009678 for ; Mon, 9 Jun 2003 16:38:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NceDD024794 for ; Mon, 9 Jun 2003 16:38:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NceQg093028 for ; Mon, 9 Jun 2003 16:38:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59Ncesc093027; Mon, 9 Jun 2003 16:38:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306092338.h59Ncesc093027@xorpc.icir.org> Date: Mon, 9 Jun 2003 16:38:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc module_command.cc module_command.hh task.cc task.hh test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/09 16:38:40 Modified files: xorp/rtrmgr/: main_rtrmgr.cc module_command.cc module_command.hh task.cc task.hh test_sample_config.cc Log message: Fix space-leaks in shutdown code (not important leaks - just help leakcheck see anything else). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 16:42:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 16:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nh1wF003249 for ; Mon, 9 Jun 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nh1DD024843 for ; Mon, 9 Jun 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Nh1bb009784; Mon, 9 Jun 2003 16:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Ngnbb009777 for ; Mon, 9 Jun 2003 16:42:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NgnDD024841 for ; Mon, 9 Jun 2003 16:42:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59NgnQg093086 for ; Mon, 9 Jun 2003 16:42:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59Ngnri093085; Mon, 9 Jun 2003 16:42:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306092342.h59Ngnri093085@xorpc.icir.org> Date: Mon, 9 Jun 2003 16:42:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in acconfig.h config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/09 16:42:49 Modified files: ./: Makefile.in acconfig.h config.h.in configure configure.in Log message: Define __BEGIN_DECLS and __END_DECLS if not defined in sys/cdefs.h or if sys/cdefs.h does not exist. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Mon Jun 9 16:59:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 Jun 2003 17:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5A002wF005426 for ; Mon, 9 Jun 2003 17:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5A002DD024983; Mon, 9 Jun 2003 17:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5A002bb010105; Mon, 9 Jun 2003 17:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h59Nx5bb010085 for ; Mon, 9 Jun 2003 16:59:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nx5DD024972 for ; Mon, 9 Jun 2003 16:59:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h59Nx5Qg093328 for ; Mon, 9 Jun 2003 16:59:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h59Nx5bO093327; Mon, 9 Jun 2003 16:59:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200306092359.h59Nx5bO093327@xorpc.icir.org> Date: Mon, 9 Jun 2003 16:59:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_templates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/06/09 16:59:05 Modified files: xorp/rtrmgr/: test_templates.cc Log message: Clean up on shutdown. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 10:44:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 10:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHj2wF093783 for ; Tue, 10 Jun 2003 10:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHj2DD034784 for ; Tue, 10 Jun 2003 10:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AHj1bb027046; Tue, 10 Jun 2003 10:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AHi6bb027013 for ; Tue, 10 Jun 2003 10:44:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHi6DD034779 for ; Tue, 10 Jun 2003 10:44:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHi6Qg042664 for ; Tue, 10 Jun 2003 10:44:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AHi6Ns042663; Tue, 10 Jun 2003 10:44:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101744.h5AHi6Ns042663@xorpc.icir.org> Date: Tue, 10 Jun 2003 10:44:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_deaths.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 10:44:06 Modified files: xorp/libxipc/: test_finder_deaths.sh Log message: Don't set MALLOC_OPTIONS here - tinderbox should have this set as an environment variable on platforms that support it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 10:46:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 10:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHl1wF094051 for ; Tue, 10 Jun 2003 10:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHl1DD034816 for ; Tue, 10 Jun 2003 10:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AHl1bb027110; Tue, 10 Jun 2003 10:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AHkSbb027089 for ; Tue, 10 Jun 2003 10:46:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHkSDD034814 for ; Tue, 10 Jun 2003 10:46:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AHkSQg042719 for ; Tue, 10 Jun 2003 10:46:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AHkRAx042718; Tue, 10 Jun 2003 10:46:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101746.h5AHkRAx042718@xorpc.icir.org> Date: Tue, 10 Jun 2003 10:46:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_inproc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 10:46:27 Modified files: xorp/libxipc/: xrl_pf_inproc.cc Log message: Include netdb.h for MAXHOSTNAMELEN. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 11:04:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 11:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AI51wF096257 for ; Tue, 10 Jun 2003 11:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AI50DD034978 for ; Tue, 10 Jun 2003 11:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AI50bb027469; Tue, 10 Jun 2003 11:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AI4rbb027462 for ; Tue, 10 Jun 2003 11:04:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AI4rDD034973 for ; Tue, 10 Jun 2003 11:04:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AI4qQg042891 for ; Tue, 10 Jun 2003 11:04:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AI4qqk042890; Tue, 10 Jun 2003 11:04:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101804.h5AI4qqk042890@xorpc.icir.org> Date: Tue, 10 Jun 2003 11:04:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/10 11:04:52 Modified files: ./: config.h.in configure configure.in Log message: Check for hstrerror in libresolv. Check for sys/sockio.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 11:17:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 11:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AII2wF097903 for ; Tue, 10 Jun 2003 11:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AII1DD035113 for ; Tue, 10 Jun 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AII1bb027731; Tue, 10 Jun 2003 11:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AIH8bb027700 for ; Tue, 10 Jun 2003 11:17:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AIH7DD035111 for ; Tue, 10 Jun 2003 11:17:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AIH7Qg043019 for ; Tue, 10 Jun 2003 11:17:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AIH7Sx043018; Tue, 10 Jun 2003 11:17:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101817.h5AIH7Sx043018@xorpc.icir.org> Date: Tue, 10 Jun 2003 11:17:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_leaks.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 11:17:07 Modified files: xorp/libxipc/: test_leaks.sh Log message: Don't rely on 'which' to find LeakTrace binary - not portable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 12:12:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 12:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJD1wF005107 for ; Tue, 10 Jun 2003 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJD1DD035679 for ; Tue, 10 Jun 2003 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AJD1bb029009; Tue, 10 Jun 2003 12:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AJCnbb029001 for ; Tue, 10 Jun 2003 12:12:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJCnDD035670 for ; Tue, 10 Jun 2003 12:12:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJCnQg052385 for ; Tue, 10 Jun 2003 12:12:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AJCnG0052380; Tue, 10 Jun 2003 12:12:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101912.h5AJCnG0052380@xorpc.icir.org> Date: Tue, 10 Jun 2003 12:12:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 12:12:48 Modified files: xorp/libxipc/: xrl_pf_stcp.cc xrl_pf_sudp.cc Log message: Minor include file re-ordering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 12:13:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 12:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJE1wF005258 for ; Tue, 10 Jun 2003 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJE0DD035688 for ; Tue, 10 Jun 2003 12:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AJE0bb029038; Tue, 10 Jun 2003 12:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AJDIbb029022 for ; Tue, 10 Jun 2003 12:13:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJDIDD035684 for ; Tue, 10 Jun 2003 12:13:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AJDHQg052517 for ; Tue, 10 Jun 2003 12:13:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AJDHxk052516; Tue, 10 Jun 2003 12:13:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306101913.h5AJDHxk052516@xorpc.icir.org> Date: Tue, 10 Jun 2003 12:13:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ sockutil.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 12:13:17 Modified files: xorp/libxipc/: sockutil.cc Log message: Include sys/sockio.h if it exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 13:57:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 13:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AKw2wF017884 for ; Tue, 10 Jun 2003 13:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AKw2DD036564; Tue, 10 Jun 2003 13:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AKw1bb000975; Tue, 10 Jun 2003 13:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5AKvBbb000944 for ; Tue, 10 Jun 2003 13:57:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AKvBDD036558 for ; Tue, 10 Jun 2003 13:57:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5AKvAQg089718 for ; Tue, 10 Jun 2003 13:57:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5AKvA4X089717; Tue, 10 Jun 2003 13:57:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306102057.h5AKvA4X089717@xorpc.icir.org> Date: Tue, 10 Jun 2003 13:57:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_leaks.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 13:57:10 Modified files: xorp/libxipc/: test_leaks.sh Log message: Exit without failure if programs are not dynamically linked against libstdc++ (LeakTracer requires this). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 17:02:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 17:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B031wF051288 for ; Tue, 10 Jun 2003 17:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B031DD038506 for ; Tue, 10 Jun 2003 17:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5B030bb004217; Tue, 10 Jun 2003 17:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5B02Cbb004200 for ; Tue, 10 Jun 2003 17:02:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B02CDD038492 for ; Tue, 10 Jun 2003 17:02:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B02CQg093485 for ; Tue, 10 Jun 2003 17:02:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5B02CKF093484; Tue, 10 Jun 2003 17:02:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306110002.h5B02CKF093484@xorpc.icir.org> Date: Tue, 10 Jun 2003 17:02:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/06/10 17:02:11 Modified files: xorp/devnotes/: WORKPLAN Log message: * Update workplan with list of tasks for next release (0.4) * Tentative release date for 0.4 set for August 14, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Tue Jun 10 21:16:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Jun 2003 21:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B4H1wF077458 for ; Tue, 10 Jun 2003 21:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B4H1DD040434 for ; Tue, 10 Jun 2003 21:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5B4H1bb007603; Tue, 10 Jun 2003 21:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5B4Gubb007596 for ; Tue, 10 Jun 2003 21:16:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B4GuDD040432 for ; Tue, 10 Jun 2003 21:16:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5B4GuQg042954 for ; Tue, 10 Jun 2003 21:16:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5B4GuWR042953; Tue, 10 Jun 2003 21:16:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306110416.h5B4GuWR042953@xorpc.icir.org> Date: Tue, 10 Jun 2003 21:16:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ sockutil.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/10 21:16:55 Modified files: xorp/libxipc/: sockutil.cc Log message: Use HAVE_SYS_SOCKIO_H that configure nicely determines need for. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Wed Jun 11 6:21:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 06:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BDM1wF019157 for ; Wed, 11 Jun 2003 06:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BDM1DD044865 for ; Wed, 11 Jun 2003 06:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BDM0bb016117; Wed, 11 Jun 2003 06:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BDL3bb016098 for ; Wed, 11 Jun 2003 06:21:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BDL2DD044861 for ; Wed, 11 Jun 2003 06:21:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BDL1Qg004822 for ; Wed, 11 Jun 2003 06:21:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BDL1LU004820; Wed, 11 Jun 2003 06:21:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306111321.h5BDL1LU004820@xorpc.icir.org> Date: Wed, 11 Jun 2003 6:21:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ sockutil.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/11 06:21:01 Modified files: xorp/libxipc/: sockutil.cc Log message: Dump extraneous include of sys/sockio.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Wed Jun 11 12:15:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 12:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BJG2wF051646 for ; Wed, 11 Jun 2003 12:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BJG1DD049099; Wed, 11 Jun 2003 12:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BJG1bb022138; Wed, 11 Jun 2003 12:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BJFKbb022128 for ; Wed, 11 Jun 2003 12:15:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BJFKDD049093 for ; Wed, 11 Jun 2003 12:15:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BJFKQg093530 for ; Wed, 11 Jun 2003 12:15:20 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BJFKfN093529; Wed, 11 Jun 2003 12:15:20 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306111915.h5BJFKfN093529@xorpc.icir.org> Date: Wed, 11 Jun 2003 12:15:20 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in selector.cc selector.hh timer.cc timer.hh xorp/libxorp/ test_observers.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/06/11 12:15:20 Modified files: xorp/libxorp/: Makefile.am Makefile.in selector.cc selector.hh timer.cc timer.hh Added files: xorp/libxorp/: test_observers.cc Log message: Wrote observer classes for TimerList and Selector list Wrote unit test for both classes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:09 2005 Subject: No subject Wed Jun 11 14:53:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 14:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLs1wF066215 for ; Wed, 11 Jun 2003 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLs1DD050388 for ; Wed, 11 Jun 2003 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BLs1bb025285; Wed, 11 Jun 2003 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BLrVbb025277 for ; Wed, 11 Jun 2003 14:53:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLrUDD050384 for ; Wed, 11 Jun 2003 14:53:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLrUQg094598 for ; Wed, 11 Jun 2003 14:53:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BLrUGE094597; Wed, 11 Jun 2003 14:53:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306112153.h5BLrUGE094597@xorpc.icir.org> Date: Wed, 11 Jun 2003 14:53:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html ./ quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/11 14:53:30 Modified files: ./: index.html Added files: ./: quotes.html Log message: * Move the XORP quotes from the front page to a separate quotes.html page * Add a link from the front page to the quites page * Add a new section to the front page "Acknowledgment and Disclaimer" that now contains the NSF acknowledgment and disclamer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 14:58:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLx1wF066841 for ; Wed, 11 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLx1DD050432 for ; Wed, 11 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BLx1bb025393; Wed, 11 Jun 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BLw4bb025380 for ; Wed, 11 Jun 2003 14:58:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLw4DD050428 for ; Wed, 11 Jun 2003 14:58:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BLw4Qg094657 for ; Wed, 11 Jun 2003 14:58:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BLw4Fr094656; Wed, 11 Jun 2003 14:58:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306112158.h5BLw4Fr094656@xorpc.icir.org> Date: Wed, 11 Jun 2003 14:58:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/11 14:58:04 Modified files: ./: README Log message: * Fix the NSF grant number * Add the text with the NSF acknowledgment and disclamer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 16:08:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BN91wF083410 for ; Wed, 11 Jun 2003 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BN91DD051038 for ; Wed, 11 Jun 2003 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BN91bb026627; Wed, 11 Jun 2003 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BN8lbb026615 for ; Wed, 11 Jun 2003 16:08:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BN8lDD051036 for ; Wed, 11 Jun 2003 16:08:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BN8lQg095230 for ; Wed, 11 Jun 2003 16:08:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BN8lGN095229; Wed, 11 Jun 2003 16:08:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306112308.h5BN8lGN095229@xorpc.icir.org> Date: Wed, 11 Jun 2003 16:08:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/11 16:08:47 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Refactor the code in the callback to use a switch statement so all cases are explicitly catered for. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 16:18:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 16:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNJ1wF089990 for ; Wed, 11 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNJ1DD051121 for ; Wed, 11 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BNJ1bb026796; Wed, 11 Jun 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BNIjbb026784 for ; Wed, 11 Jun 2003 16:18:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNIiDD051119 for ; Wed, 11 Jun 2003 16:18:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNIiQg095462 for ; Wed, 11 Jun 2003 16:18:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BNIi4x095461; Wed, 11 Jun 2003 16:18:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306112318.h5BNIi4x095461@xorpc.icir.org> Date: Wed, 11 Jun 2003 16:18:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/06/11 16:18:44 Modified files: xorp/libxipc/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in Log message: Specify hidden dependencies for generated files used in libxipc. Add reminders to target Makefiles in xrl directory to update libxipc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 16:22:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 16:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNN1wF090615 for ; Wed, 11 Jun 2003 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNN0DD051157 for ; Wed, 11 Jun 2003 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BNN0bb026879; Wed, 11 Jun 2003 16:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BNMvbb026873 for ; Wed, 11 Jun 2003 16:22:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNMvDD051155 for ; Wed, 11 Jun 2003 16:22:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNMvQg095515 for ; Wed, 11 Jun 2003 16:22:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BNMvU0095514; Wed, 11 Jun 2003 16:22:57 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306112322.h5BNMvU0095514@xorpc.icir.org> Date: Wed, 11 Jun 2003 16:22:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/11 16:22:57 Modified files: xorp/bgp/: route_table_dump.cc Log message: fprintf(stderr, -> debug_msg( _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 16:55:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 17:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C021wF001288 for ; Wed, 11 Jun 2003 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C021DD051467 for ; Wed, 11 Jun 2003 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C020bb027607; Wed, 11 Jun 2003 17:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5BNtWbb027496 for ; Wed, 11 Jun 2003 17:01:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNtWDD051410 for ; Wed, 11 Jun 2003 16:55:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5BNtVQg095940 for ; Wed, 11 Jun 2003 16:55:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5BNtVXQ095939; Wed, 11 Jun 2003 16:55:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306112355.h5BNtVXQ095939@xorpc.icir.org> Date: Wed, 11 Jun 2003 16:55:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/11 16:55:31 Modified files: ./: quotes.html Log message: Fix the document creation date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 19:00:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 19:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C211wF018104 for ; Wed, 11 Jun 2003 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C211DD052301 for ; Wed, 11 Jun 2003 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C211bb029154; Wed, 11 Jun 2003 19:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C20qbb029148 for ; Wed, 11 Jun 2003 19:00:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C20pDD052299 for ; Wed, 11 Jun 2003 19:00:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C20pQg008721 for ; Wed, 11 Jun 2003 19:00:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C20pSd008720; Wed, 11 Jun 2003 19:00:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306120200.h5C20pSd008720@xorpc.icir.org> Date: Wed, 11 Jun 2003 19:00:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/11 19:00:51 Modified files: xorp/pim/: TODO Log message: Delete an implementation TODO entry regarding a problem that doesn't appear to exist anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 19:16:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 19:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2H1wF020416 for ; Wed, 11 Jun 2003 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2H0DD052436; Wed, 11 Jun 2003 19:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C2H0bb029455; Wed, 11 Jun 2003 19:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C2GJbb029434 for ; Wed, 11 Jun 2003 19:16:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2GJDD052432 for ; Wed, 11 Jun 2003 19:16:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2GJQg008874 for ; Wed, 11 Jun 2003 19:16:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C2GJMf008873; Wed, 11 Jun 2003 19:16:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306120216.h5C2GJMf008873@xorpc.icir.org> Date: Wed, 11 Jun 2003 19:16:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/11 19:16:19 Modified files: xorp/bgp/: route_table_dump.cc Log message: fprintf(stderr, -> debug_msg( Missed one. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 19:42:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 19:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2h1wF028058 for ; Wed, 11 Jun 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2h1DD052601 for ; Wed, 11 Jun 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C2h0bb029790; Wed, 11 Jun 2003 19:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C2glbb029784 for ; Wed, 11 Jun 2003 19:42:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2gkDD052598 for ; Wed, 11 Jun 2003 19:42:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C2gkQg009166 for ; Wed, 11 Jun 2003 19:42:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C2gk47009165; Wed, 11 Jun 2003 19:42:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306120242.h5C2gk47009165@xorpc.icir.org> Date: Wed, 11 Jun 2003 19:42:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/11 19:42:46 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Modify a spec-related comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 20:01:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 20:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C322wF035509 for ; Wed, 11 Jun 2003 20:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C321DD052729 for ; Wed, 11 Jun 2003 20:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C321bb029979; Wed, 11 Jun 2003 20:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C312bb029965 for ; Wed, 11 Jun 2003 20:01:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C311DD052723 for ; Wed, 11 Jun 2003 20:01:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C311Qg009428 for ; Wed, 11 Jun 2003 20:01:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C31195009427; Wed, 11 Jun 2003 20:01:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306120301.h5C31195009427@xorpc.icir.org> Date: Wed, 11 Jun 2003 20:01:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/11 20:01:01 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: The handling of XRL errors should now correspond to the error document, including checking the error returns from the XRL sends. Retransmit XRLs when a timeout occurs. The code to support more than one XRL in flight did not work fixed code and we now allow 100 XRLs in flight. The sendit method was specialised for IPv4 and IPv6, unfortunately some changes had only made it to the IPv4 method. Unspecialised the sendit method and added two smaller specialised methods sendit_spec. The MAX_ERR_RETRIES was previously set to 30, take its value from the FLYING_LIMIT. When there is a glitch, this allows all XRLs in flight to return REPLY_TIMED_OUT. Now that we support retransmissions on REPLY_TIMED_OUT errors it is possible to send the same add/delete request to the RIB. Currently a duplicate request to the RIB returns COMMAND_FAILED, which BGP considers a fatal error. Perhaps the error return should supply the reason for the COMMAND_FAILED. Conversely the point may be moot, when we move to reliable XRLs the REPLY_TIMED_OUT error will no longer occur. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 20:01:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 20:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C322wF035536 for ; Wed, 11 Jun 2003 20:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C322DD052733 for ; Wed, 11 Jun 2003 20:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C322bb029990; Wed, 11 Jun 2003 20:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C317bb029969 for ; Wed, 11 Jun 2003 20:01:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C317DD052725 for ; Wed, 11 Jun 2003 20:01:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C316Qg009440 for ; Wed, 11 Jun 2003 20:01:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C316YS009439; Wed, 11 Jun 2003 20:01:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306120301.h5C316YS009439@xorpc.icir.org> Date: Wed, 11 Jun 2003 20:01:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/11 20:01:06 Modified files: xorp/pim/: pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_join_prune.cc Log message: * Move the implementation of Join/Prune-related methods from pim_mre.cc to pim_mre_join_prune.cc * Move the implementation of Assert-related methods from pim_mre.cc to pim_mre_assert.cc * Few declarations reordering inside pim_mre.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 20:02:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 20:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C331wF035737 for ; Wed, 11 Jun 2003 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C331DD052743 for ; Wed, 11 Jun 2003 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C331bb000017; Wed, 11 Jun 2003 20:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C323bb000006 for ; Wed, 11 Jun 2003 20:02:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C323DD052737 for ; Wed, 11 Jun 2003 20:02:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C323Qg009471 for ; Wed, 11 Jun 2003 20:02:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C323f3009470; Wed, 11 Jun 2003 20:02:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306120302.h5C323f3009470@xorpc.icir.org> Date: Wed, 11 Jun 2003 20:02:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/11 20:02:03 Modified files: xorp/pim/: TODO Log message: Remove a TODO entry regarding moving methods implementation from pim_mre.hh to other files, because it is DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Wed Jun 11 23:02:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Jun 2003 23:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C631wF059342 for ; Wed, 11 Jun 2003 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C631DD054012 for ; Wed, 11 Jun 2003 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C630bb002256; Wed, 11 Jun 2003 23:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5C62Nbb002233 for ; Wed, 11 Jun 2003 23:02:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C62NDD054009 for ; Wed, 11 Jun 2003 23:02:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5C62NQg010705 for ; Wed, 11 Jun 2003 23:02:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5C62NY2010704; Wed, 11 Jun 2003 23:02:23 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306120602.h5C62NY2010704@xorpc.icir.org> Date: Wed, 11 Jun 2003 23:02:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/11 23:02:22 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Add an id to each route add/delete that can be matched in the callback. This way we don't remove the wrong entry from the queue when a REPLY_TIMED_OUT error occurs. Previously every call to sendit would cause only one XRL to be sent. If there is space and there are queued actions try and send them all. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 11:41:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 11:42:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CIg4wF063453 for ; Thu, 12 Jun 2003 11:42:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CIg3DD061058 for ; Thu, 12 Jun 2003 11:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CIg2bb014804; Thu, 12 Jun 2003 11:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CIfmbb014796 for ; Thu, 12 Jun 2003 11:41:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CIfmDD061056 for ; Thu, 12 Jun 2003 11:41:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CIfmQg064463 for ; Thu, 12 Jun 2003 11:41:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CIfm4x064462; Thu, 12 Jun 2003 11:41:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306121841.h5CIfm4x064462@xorpc.icir.org> Date: Thu, 12 Jun 2003 11:41:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ WORKPLAN xorp_release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/06/12 11:41:48 Removed files: xorp/devnotes/: WORKPLAN xorp_release_process.txt Log message: Renaming: o WORKPLAN -> work_plan.txt o xorp_release_process.txt -> release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 14:58:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CLx1wF093724 for ; Thu, 12 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CLx1DD062793 for ; Thu, 12 Jun 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CLx1bb018668; Thu, 12 Jun 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CLwvbb018662 for ; Thu, 12 Jun 2003 14:58:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CLwuDD062791 for ; Thu, 12 Jun 2003 14:58:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CLwuQg066213 for ; Thu, 12 Jun 2003 14:58:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CLwusH066212; Thu, 12 Jun 2003 14:58:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306122158.h5CLwusH066212@xorpc.icir.org> Date: Thu, 12 Jun 2003 14:58:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc peer.cc peer.hh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/06/12 14:58:56 Modified files: xorp/bgp/harness/: command.cc peer.cc peer.hh xorp/docs/test_harness/: test_harness.tex Log message: Add a disconnect command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 15:06:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 15:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CM71wF001506 for ; Thu, 12 Jun 2003 15:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CM71DD062889 for ; Thu, 12 Jun 2003 15:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CM71bb018828; Thu, 12 Jun 2003 15:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CM6Lbb018805 for ; Thu, 12 Jun 2003 15:06:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CM6LDD062882 for ; Thu, 12 Jun 2003 15:06:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CM6LQg066319 for ; Thu, 12 Jun 2003 15:06:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CM6Llg066318; Thu, 12 Jun 2003 15:06:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306122206.h5CM6Llg066318@xorpc.icir.org> Date: Thu, 12 Jun 2003 15:06:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/12 15:06:21 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: New test that injects a feed then disconnects session. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 15:20:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 15:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CML1wF006243 for ; Thu, 12 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CML1DD063023; Thu, 12 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CML0bb019075; Thu, 12 Jun 2003 15:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CMKtbb019067 for ; Thu, 12 Jun 2003 15:20:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMKsDD063020 for ; Thu, 12 Jun 2003 15:20:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMKsQg066465 for ; Thu, 12 Jun 2003 15:20:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CMKsAs066464; Thu, 12 Jun 2003 15:20:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306122220.h5CMKsAs066464@xorpc.icir.org> Date: Thu, 12 Jun 2003 15:20:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/12 15:20:54 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Get echo to expand backslash sequences. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 15:27:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 15:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMS1wF008125 for ; Thu, 12 Jun 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMS1DD063061 for ; Thu, 12 Jun 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CMS0bb019256; Thu, 12 Jun 2003 15:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CMRxbb019250 for ; Thu, 12 Jun 2003 15:27:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMRwDD063059 for ; Thu, 12 Jun 2003 15:27:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMRwQg066560 for ; Thu, 12 Jun 2003 15:27:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CMRwL7066559; Thu, 12 Jun 2003 15:27:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306122227.h5CMRwL7066559@xorpc.icir.org> Date: Thu, 12 Jun 2003 15:27:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/12 15:27:58 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Lose the fancy formatting. Don't check for connection establishment, always fails on slow machines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 15:33:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 15:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMY2wF008889 for ; Thu, 12 Jun 2003 15:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMY2DD063102 for ; Thu, 12 Jun 2003 15:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CMY1bb019375; Thu, 12 Jun 2003 15:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CMXQbb019351 for ; Thu, 12 Jun 2003 15:33:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMXQDD063096 for ; Thu, 12 Jun 2003 15:33:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CMXPQg066645 for ; Thu, 12 Jun 2003 15:33:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CMXPP9066644; Thu, 12 Jun 2003 15:33:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306122233.h5CMXPP9066644@xorpc.icir.org> Date: Thu, 12 Jun 2003 15:33:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/12 15:33:25 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Move test3 into the tests not fixed list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 16:58:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CNx1wF019522 for ; Thu, 12 Jun 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CNx1DD063686 for ; Thu, 12 Jun 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CNx0bb020976; Thu, 12 Jun 2003 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5CNwGbb020963 for ; Thu, 12 Jun 2003 16:58:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CNwGDD063684 for ; Thu, 12 Jun 2003 16:58:16 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5CNwGQg067296 for ; Thu, 12 Jun 2003 16:58:16 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5CNwG5h067295; Thu, 12 Jun 2003 16:58:16 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306122358.h5CNwG5h067295@xorpc.icir.org> Date: Thu, 12 Jun 2003 16:58:16 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc selector.hh test_observers.cc timer.cc timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/06/12 16:58:16 Modified files: xorp/libxorp/: selector.cc selector.hh test_observers.cc timer.cc timer.hh Log message: Per Orion's suggestions: Renamed ListObserver classes to *ListObserver Virtual destructors for abstract classes Fixed comment width _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:10 2005 Subject: No subject Thu Jun 12 17:19:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D0K1wF022078 for ; Thu, 12 Jun 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D0K1DD063847 for ; Thu, 12 Jun 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D0K1bb021340; Thu, 12 Jun 2003 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D0JKbb021322 for ; Thu, 12 Jun 2003 17:19:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D0JKDD063837 for ; Thu, 12 Jun 2003 17:19:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D0JKQg067594 for ; Thu, 12 Jun 2003 17:19:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D0JKa6067593; Thu, 12 Jun 2003 17:19:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306130019.h5D0JKa6067593@xorpc.icir.org> Date: Thu, 12 Jun 2003 17:19:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/12 17:19:20 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Fix comment regarding REPLY_TIMED_OUT. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 18:24:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 18:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1P1wF034592 for ; Thu, 12 Jun 2003 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1P0DD064291 for ; Thu, 12 Jun 2003 18:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1P0bb022191; Thu, 12 Jun 2003 18:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1OEbb022176 for ; Thu, 12 Jun 2003 18:24:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1ODDD064286 for ; Thu, 12 Jun 2003 18:24:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1ODQg068601 for ; Thu, 12 Jun 2003 18:24:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D1ODP1068600; Thu, 12 Jun 2003 18:24:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306130124.h5D1ODP1068600@xorpc.icir.org> Date: Thu, 12 Jun 2003 18:24:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/12 18:24:13 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: New style xrl callback handling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 18:28:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 18:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1T1wF035166 for ; Thu, 12 Jun 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1T1DD064337 for ; Thu, 12 Jun 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1T1bb022265; Thu, 12 Jun 2003 18:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1S3bb022244 for ; Thu, 12 Jun 2003 18:28:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1S3DD064327 for ; Thu, 12 Jun 2003 18:28:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1S3Qg068735 for ; Thu, 12 Jun 2003 18:28:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D1S3qx068734; Thu, 12 Jun 2003 18:28:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130128.h5D1S3qx068734@xorpc.icir.org> Date: Thu, 12 Jun 2003 18:28:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/12 18:28:03 Modified files: xorp/pim/: pim_node_cli.cc Log message: Print the PimMre entry-related info only for the entry it applies (i.e., (*,*,RP), (*,G), (S,G), (S,G,rpt)). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 18:32:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 18:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1X1wF035787 for ; Thu, 12 Jun 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1X1DD064365; Thu, 12 Jun 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1X1bb022345; Thu, 12 Jun 2003 18:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1WXbb022326 for ; Thu, 12 Jun 2003 18:32:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1WXDD064361 for ; Thu, 12 Jun 2003 18:32:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1WXQg068809 for ; Thu, 12 Jun 2003 18:32:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D1WXqR068808; Thu, 12 Jun 2003 18:32:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130132.h5D1WXqR068808@xorpc.icir.org> Date: Thu, 12 Jun 2003 18:32:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc pim_mre.cc pim_mre.hh pim_mre_data.cc pim_mrt_mfc.cc pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/12 18:32:33 Modified files: xorp/pim/: pim_mfc.cc pim_mre.cc pim_mre.hh pim_mre_data.cc pim_mrt_mfc.cc pim_proto_register.cc Log message: * Fix PimMre::inherited_olist_sg() and PimMre::inherited_olist_sg_rpt() such that they can be applied for any type of PimMre entry. * Remove PimMre::inherited_olist_sg_forward() and PimMre::inherited_olist_sg_rpt_forward() methods, and call instead inherited_olist_sg() and inherited_olist_sg_rpt() * Modify PimMre::immediate_olist_wc() to explicitly check whether the PimMre entry is (*,G) or (S,G) or (S,G,rpt) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 18:49:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 18:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1o1wF038157 for ; Thu, 12 Jun 2003 18:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1o1DD064487; Thu, 12 Jun 2003 18:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1o1bb022592; Thu, 12 Jun 2003 18:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1n9bb022566 for ; Thu, 12 Jun 2003 18:49:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1n9DD064478 for ; Thu, 12 Jun 2003 18:49:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1n9Qg068982 for ; Thu, 12 Jun 2003 18:49:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D1n9hd068981; Thu, 12 Jun 2003 18:49:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130149.h5D1n9hd068981@xorpc.icir.org> Date: Thu, 12 Jun 2003 18:49:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/12 18:49:09 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc Log message: * Modify PimMre::lost_assert_sg_rpt() such that now it can be applied for (S,G) entry as well (in addition to (S,G,rpt) entry), * Add an explicit check to PimMre::lost_assert_wc() that the entry is (*,G), (S,G) or (S,G,rpt) * Add an explicit check toPimMre::could_assert_wc() that the entry is (*,G) or (S,G) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 18:56:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 18:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1v1wF044460 for ; Thu, 12 Jun 2003 18:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1v1DD064537 for ; Thu, 12 Jun 2003 18:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1v1bb022676; Thu, 12 Jun 2003 18:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D1uObb022661 for ; Thu, 12 Jun 2003 18:56:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1uNDD064535 for ; Thu, 12 Jun 2003 18:56:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D1uNQg069566 for ; Thu, 12 Jun 2003 18:56:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D1uNnA069565; Thu, 12 Jun 2003 18:56:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130156.h5D1uNnA069565@xorpc.icir.org> Date: Thu, 12 Jun 2003 18:56:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/06/12 18:56:23 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Modify the cut-and-paste output of all "show pim join" CLI commands to correspond to the recent modification of the format of that command (e.g., remove information that doesn't apply to the particular multicast routing entry: (*,*,RP), (*,G), (S,G), (S,G,rpt)). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 19:05:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 19:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D261wF051781 for ; Thu, 12 Jun 2003 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D261DD064608; Thu, 12 Jun 2003 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D261bb022829; Thu, 12 Jun 2003 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D257bb022815 for ; Thu, 12 Jun 2003 19:05:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D257DD064605 for ; Thu, 12 Jun 2003 19:05:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D257Qg069709 for ; Thu, 12 Jun 2003 19:05:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D257Df069708; Thu, 12 Jun 2003 19:05:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130205.h5D257Df069708@xorpc.icir.org> Date: Thu, 12 Jun 2003 19:05:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/12 19:05:07 Modified files: xorp/pim/: TODO Log message: Remove a TODO entry regarding cleanup of the "show pim join" CLI output, because now it is DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 19:29:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 19:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D2U1wF055092 for ; Thu, 12 Jun 2003 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D2U1DD064733 for ; Thu, 12 Jun 2003 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D2U0bb023097; Thu, 12 Jun 2003 19:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D2Trbb023090 for ; Thu, 12 Jun 2003 19:29:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D2TqDD064728 for ; Thu, 12 Jun 2003 19:29:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D2TqQg069881 for ; Thu, 12 Jun 2003 19:29:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D2TqFj069880; Thu, 12 Jun 2003 19:29:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306130229.h5D2TqFj069880@xorpc.icir.org> Date: Thu, 12 Jun 2003 19:29:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/12 19:29:52 Modified files: xorp/pim/: TODO Log message: Remove two duplicated TODO entries that were already DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Thu Jun 12 22:58:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Jun 2003 22:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D5x1wF080166 for ; Thu, 12 Jun 2003 22:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D5x1DD065973 for ; Thu, 12 Jun 2003 22:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D5x0bb025550; Thu, 12 Jun 2003 22:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5D5wobb025544 for ; Thu, 12 Jun 2003 22:58:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D5woDD065971 for ; Thu, 12 Jun 2003 22:58:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5D5woQg075249 for ; Thu, 12 Jun 2003 22:58:50 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5D5woPG075248; Thu, 12 Jun 2003 22:58:50 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306130558.h5D5woPG075248@xorpc.icir.org> Date: Thu, 12 Jun 2003 22:58:50 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc ospf_mib_1850.cc test_xorpevents.cc xorp_if_mib_module.cc ...xorpevents.cc ...xorpevents.hh xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/12 22:58:50 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc ospf_mib_1850.cc test_xorpevents.cc xorp_if_mib_module.cc xorpevents.cc xorpevents.hh xorp/mibs/tests/: test_bgpmib.sh.in Log message: Modified xorpevents to use the new observer classes and updated kdocumentation Removed the calls to eventloop.export_events in all the MIB modules Deleted misleading commented out code in test_bgpmib.sh.in Added _DEPENDENCIES to libnetsnmpxorp.so _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 11:23:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 11:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DIO1wF071872 for ; Fri, 13 Jun 2003 11:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DIO0DD073155 for ; Fri, 13 Jun 2003 11:24:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DIO0bb007377; Fri, 13 Jun 2003 11:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DINLbb007366 for ; Fri, 13 Jun 2003 11:23:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DINKDD073151 for ; Fri, 13 Jun 2003 11:23:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DINKQg029046 for ; Fri, 13 Jun 2003 11:23:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5DINK8i029045; Fri, 13 Jun 2003 11:23:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306131823.h5DINK8i029045@xorpc.icir.org> Date: Fri, 13 Jun 2003 11:23:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/13 11:23:20 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Change-back a spec-related comment (the original text in the spec was fine). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 12:06:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJ91wF077483 for ; Fri, 13 Jun 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJ90DD073588 for ; Fri, 13 Jun 2003 12:09:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJ90bb008208; Fri, 13 Jun 2003 12:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJ8sbb008202 for ; Fri, 13 Jun 2003 12:08:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJ8sDD073586 for ; Fri, 13 Jun 2003 12:08:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJ6KQg029462 for ; Fri, 13 Jun 2003 12:06:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5DJ6KNY029461; Fri, 13 Jun 2003 12:06:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306131906.h5DJ6KNY029461@xorpc.icir.org> Date: Fri, 13 Jun 2003 12:06:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/13 12:06:20 Modified files: xorp/pim/: pim_proto.h Log message: Print PIM message type if the message is PIM_ALL_DF_ELECTION _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 12:20:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 12:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJL1wF078998 for ; Fri, 13 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJL1DD073689 for ; Fri, 13 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJL1bb008391; Fri, 13 Jun 2003 12:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJKvbb008385 for ; Fri, 13 Jun 2003 12:20:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJKvDD073687 for ; Fri, 13 Jun 2003 12:20:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJKvQg029610 for ; Fri, 13 Jun 2003 12:20:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5DJKvXq029609; Fri, 13 Jun 2003 12:20:57 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306131920.h5DJKvXq029609@xorpc.icir.org> Date: Fri, 13 Jun 2003 12:20:57 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.cc xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/13 12:20:57 Modified files: xorp/mibs/: xorpevents.cc xorpevents.hh Log message: Fix SnmpEventLoop destruction (patch provided by Orion) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 12:23:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 12:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJO1wF079420 for ; Fri, 13 Jun 2003 12:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJO1DD073702 for ; Fri, 13 Jun 2003 12:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJO1bb008438; Fri, 13 Jun 2003 12:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJNebb008430 for ; Fri, 13 Jun 2003 12:23:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJNeDD073700 for ; Fri, 13 Jun 2003 12:23:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJNeQg029637 for ; Fri, 13 Jun 2003 12:23:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5DJNemZ029636; Fri, 13 Jun 2003 12:23:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306131923.h5DJNemZ029636@xorpc.icir.org> Date: Fri, 13 Jun 2003 12:23:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/13 12:23:40 Modified files: xorp/pim/: TODO Log message: * Remove TODO entries that are done or are obsolete. * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 12:29:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJU1wF085196 for ; Fri, 13 Jun 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJU1DD073748 for ; Fri, 13 Jun 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJU1bb008560; Fri, 13 Jun 2003 12:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5DJTqbb008548 for ; Fri, 13 Jun 2003 12:29:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJTqDD073743 for ; Fri, 13 Jun 2003 12:29:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5DJTpQg029708 for ; Fri, 13 Jun 2003 12:29:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5DJTpK0029707; Fri, 13 Jun 2003 12:29:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306131929.h5DJTpK0029707@xorpc.icir.org> Date: Fri, 13 Jun 2003 12:29:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_events.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/13 12:29:51 Modified files: xorp/libxipc/: test_finder_events.cc Log message: Crank up inter-operation wait. This test needs to be re-written to be 100% event driven. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 18:03:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 18:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E142wF030471 for ; Fri, 13 Jun 2003 18:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E141DD076479 for ; Fri, 13 Jun 2003 18:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E140bb013999; Fri, 13 Jun 2003 18:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E13Tbb013992 for ; Fri, 13 Jun 2003 18:03:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E13TDD076475 for ; Fri, 13 Jun 2003 18:03:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E13TQg031788 for ; Fri, 13 Jun 2003 18:03:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5E13Tgm031787; Fri, 13 Jun 2003 18:03:29 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306140103.h5E13Tgm031787@xorpc.icir.org> Date: Fri, 13 Jun 2003 18:03:29 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/06/13 18:03:29 Modified files: xorp/libxorp/: timer.cc Log message: Fixed potential double frees when reference counter underflows _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 18:22:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 18:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1N1wF031932 for ; Fri, 13 Jun 2003 18:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1N1DD076610; Fri, 13 Jun 2003 18:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E1N1bb014207; Fri, 13 Jun 2003 18:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E1MTbb014198 for ; Fri, 13 Jun 2003 18:22:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1MTDD076606 for ; Fri, 13 Jun 2003 18:22:29 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1MSQg031931 for ; Fri, 13 Jun 2003 18:22:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5E1MSZg031930; Fri, 13 Jun 2003 18:22:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306140122.h5E1MSZg031930@xorpc.icir.org> Date: Fri, 13 Jun 2003 18:22:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657.hh test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorpevents.cc xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/13 18:22:28 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorpevents.cc xorpevents.hh Log message: Linux did not appreciate static storage of SnmpEventLoop. Reverted to heap. Improved termination... but still dumping core, but farther down the road. Re-enabled run_test_1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Fri Jun 13 18:35:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Jun 2003 18:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1a1wF032926 for ; Fri, 13 Jun 2003 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1a1DD076706; Fri, 13 Jun 2003 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E1a1bb014409; Fri, 13 Jun 2003 18:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5E1ZHbb014399 for ; Fri, 13 Jun 2003 18:35:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1ZGDD076704 for ; Fri, 13 Jun 2003 18:35:16 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5E1ZGQg032054 for ; Fri, 13 Jun 2003 18:35:16 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5E1ZGaS032053; Fri, 13 Jun 2003 18:35:16 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306140135.h5E1ZGaS032053@xorpc.icir.org> Date: Fri, 13 Jun 2003 18:35:16 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/13 18:35:16 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Deleted redundant kill _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Mon Jun 16 8:16:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 08:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFH1wF029603 for ; Mon, 16 Jun 2003 08:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFH1DD009369 for ; Mon, 16 Jun 2003 08:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFH0bb025907; Mon, 16 Jun 2003 08:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFGibb025897 for ; Mon, 16 Jun 2003 08:16:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFGiDD009367 for ; Mon, 16 Jun 2003 08:16:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFGhQg033575 for ; Mon, 16 Jun 2003 08:16:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GFGhAE033574; Mon, 16 Jun 2003 08:16:43 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306161516.h5GFGhAE033574@xorpc.icir.org> Date: Mon, 16 Jun 2003 8:16:43 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/16 08:16:43 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Added flag to prevent conflicts with existing snmpd configuration files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Mon Jun 16 8:48:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 08:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFn2wF032004 for ; Mon, 16 Jun 2003 08:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFn1DD009602 for ; Mon, 16 Jun 2003 08:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFn1bb026316; Mon, 16 Jun 2003 08:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFmBbb026292 for ; Mon, 16 Jun 2003 08:48:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFmBDD009590 for ; Mon, 16 Jun 2003 08:48:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFmAQg033904 for ; Mon, 16 Jun 2003 08:48:10 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GFmAdx033903; Mon, 16 Jun 2003 08:48:10 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306161548.h5GFmAdx033903@xorpc.icir.org> Date: Mon, 16 Jun 2003 8:48:10 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/16 08:48:10 Modified files: xorp/mibs/: xorpevents.cc Log message: Fixed incorrect handling of expired timers. When the "timer scheduled" notification is called, timers should not be executed since their internal state is not fully initialized. In particular, if a timer is expired inside the notification, it's TimerNode will be deleted but reused when the notification returns. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Mon Jun 16 8:52:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 08:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFr1wF032319 for ; Mon, 16 Jun 2003 08:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFr1DD009665; Mon, 16 Jun 2003 08:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFr1bb026375; Mon, 16 Jun 2003 08:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GFqJbb026364 for ; Mon, 16 Jun 2003 08:52:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFqJDD009653 for ; Mon, 16 Jun 2003 08:52:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GFqJQg033971 for ; Mon, 16 Jun 2003 08:52:19 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GFqJHT033970; Mon, 16 Jun 2003 08:52:19 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306161552.h5GFqJHT033970@xorpc.icir.org> Date: Mon, 16 Jun 2003 8:52:19 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/06/16 08:52:19 Modified files: xorp/libxorp/: timer.cc Log message: Per Orion's request: I'd really like this to be backed out and reverted to it's former state. Tools exist to detect multiple frees, eg both Linux and FreeBSD manual pages document environment variables that can be used for this purpose and these are by no means the only tools. However, unless delete is called multiple times there is no chance of detecting the problem non-intrusively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:11 2005 Subject: No subject Mon Jun 16 12:50:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 12:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GJp2wF050991 for ; Mon, 16 Jun 2003 12:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GJp1DD011737 for ; Mon, 16 Jun 2003 12:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GJp1bb000732; Mon, 16 Jun 2003 12:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GJo2bb000717 for ; Mon, 16 Jun 2003 12:50:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GJo2DD011704 for ; Mon, 16 Jun 2003 12:50:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GJo2Qg053229 for ; Mon, 16 Jun 2003 12:50:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GJo2FY053228; Mon, 16 Jun 2003 12:50:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306161950.h5GJo2FY053228@xorpc.icir.org> Date: Mon, 16 Jun 2003 12:50:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorpevents.cc xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/16 12:50:02 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorpevents.cc xorpevents.hh Log message: No more need for explicit destructors _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 15:45:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 15:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMk1wF071834 for ; Mon, 16 Jun 2003 15:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMk1DD013312 for ; Mon, 16 Jun 2003 15:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMk0bb003869; Mon, 16 Jun 2003 15:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMjXbb003856 for ; Mon, 16 Jun 2003 15:45:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMjXDD013310 for ; Mon, 16 Jun 2003 15:45:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMjWQg084311 for ; Mon, 16 Jun 2003 15:45:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GMjWS1084310; Mon, 16 Jun 2003 15:45:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306162245.h5GMjWS1084310@xorpc.icir.org> Date: Mon, 16 Jun 2003 15:45:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/16 15:45:32 Modified files: xorp/pim/: pim_proto.h Log message: * Add a reference to the PIM-SM and PIM-DM specs * Add few PIM-DM related defines (for consistency). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 15:47:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 15:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMm1wF072083 for ; Mon, 16 Jun 2003 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMm0DD013328 for ; Mon, 16 Jun 2003 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMm0bb003920; Mon, 16 Jun 2003 15:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMlcbb003910 for ; Mon, 16 Jun 2003 15:47:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMlcDD013322 for ; Mon, 16 Jun 2003 15:47:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMlcQg084363 for ; Mon, 16 Jun 2003 15:47:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GMlcs6084362; Mon, 16 Jun 2003 15:47:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306162247.h5GMlcs6084362@xorpc.icir.org> Date: Mon, 16 Jun 2003 15:47:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/16 15:47:38 Modified files: xorp/pim/: xrl_pim_node.cc Log message: * Change all foo_masklen to be uint8_t * Add explicit checks for the max. value of some of the arguments that are uint32_t when received by XRL, but the protocol defines them that they should 8 or 16 bits. * Bugfix the check for max. value of rp_holdtime (the max value should be 0xffff instead of 0xff). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 15:48:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 15:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMn1wF072222 for ; Mon, 16 Jun 2003 15:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMn1DD013337; Mon, 16 Jun 2003 15:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMn1bb003951; Mon, 16 Jun 2003 15:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GMm4bb003931 for ; Mon, 16 Jun 2003 15:48:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMm4DD013332 for ; Mon, 16 Jun 2003 15:48:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GMm4Qg084400 for ; Mon, 16 Jun 2003 15:48:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GMm4JD084399; Mon, 16 Jun 2003 15:48:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306162248.h5GMm4JD084399@xorpc.icir.org> Date: Mon, 16 Jun 2003 15:48:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_nbr.hh pim_node.hh pim_proto_join_prune_message.hh pim_vif.hh pim_config.cc pim_nbr.cc pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_join_prune.cc ...pim_proto_join_prune_message.cc ...pim_proto_register_stop.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/16 15:48:04 Modified files: xorp/pim/: pim_nbr.hh pim_node.hh pim_proto_join_prune_message.hh pim_vif.hh pim_config.cc pim_nbr.cc pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_register_stop.cc Log message: Change all masklen variables to uint8_t _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 16:06:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 16:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GN71wF074487 for ; Mon, 16 Jun 2003 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GN71DD013517 for ; Mon, 16 Jun 2003 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GN70bb004277; Mon, 16 Jun 2003 16:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5GN6ebb004268 for ; Mon, 16 Jun 2003 16:06:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GN6dDD013513 for ; Mon, 16 Jun 2003 16:06:39 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5GN6dQg084573 for ; Mon, 16 Jun 2003 16:06:39 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5GN6ds9084572; Mon, 16 Jun 2003 16:06:39 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306162306.h5GN6ds9084572@xorpc.icir.org> Date: Mon, 16 Jun 2003 16:06:39 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/16 16:06:39 Modified files: xorp/mibs/: xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh xorp/mibs/tests/: test_bgpmib.sh.in Log message: Implemented shutdown XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 19:09:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 19:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H2A1wF012197 for ; Mon, 16 Jun 2003 19:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H2A1DD014935 for ; Mon, 16 Jun 2003 19:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H2A1bb006786; Mon, 16 Jun 2003 19:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H29Qbb006775 for ; Mon, 16 Jun 2003 19:09:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H29PDD014930 for ; Mon, 16 Jun 2003 19:09:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H29PQg007685 for ; Mon, 16 Jun 2003 19:09:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5H29P8F007684; Mon, 16 Jun 2003 19:09:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306170209.h5H29P8F007684@xorpc.icir.org> Date: Mon, 16 Jun 2003 19:09:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/16 19:09:25 Modified files: xorp/pim/: TODO Log message: Remove/relocate a number of TODO entries that are already obsolete or done. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 23:44:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 23:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6j1wF057949 for ; Mon, 16 Jun 2003 23:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6j1DD016968 for ; Mon, 16 Jun 2003 23:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H6j0bb010537; Mon, 16 Jun 2003 23:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H6iIbb010526 for ; Mon, 16 Jun 2003 23:44:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6iIDD016957 for ; Mon, 16 Jun 2003 23:44:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6iIQg034822 for ; Mon, 16 Jun 2003 23:44:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5H6iIFW034821; Mon, 16 Jun 2003 23:44:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306170644.h5H6iIFW034821@xorpc.icir.org> Date: Mon, 16 Jun 2003 23:44:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in xorp/bgp/ Makefile.am Makefile.in bgp.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc main.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh ...plumbing_test.cc ...plumbing_test.hh ...rib_ipc_handler.cc ...rib_ipc_handler.hh ...test_decision.cc ...test_dump.cc ...test_filter.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc ...xrl_target.cc ...xrl_target.hh xorp/xrl/targets/ bgp.tgt bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/06/16 23:44:18 Modified files: ./: Makefile.in xorp/bgp/: Makefile.am Makefile.in bgp.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh main.cc main.hh next_hop_resolver.cc next_hop_resolver.hh plumbing.cc plumbing.hh plumbing_test.cc plumbing_test.hh rib_ipc_handler.cc rib_ipc_handler.hh test_decision.cc test_dump.cc test_filter.cc test_next_hop_resolver.cc test_nhlookup.cc xrl_target.cc xrl_target.hh xorp/xrl/targets/: bgp.tgt bgp.xrls bgp_base.cc bgp_base.hh Log message: Watch for fea and rib, birth and death. Deal consistently with the loss of the finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Mon Jun 16 23:44:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Jun 2003 23:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6j2wF057968 for ; Mon, 16 Jun 2003 23:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6j2DD016973; Mon, 16 Jun 2003 23:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H6j2bb010550; Mon, 16 Jun 2003 23:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5H6ipbb010531 for ; Mon, 16 Jun 2003 23:44:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6ipDD016961 for ; Mon, 16 Jun 2003 23:44:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5H6ipQg034850 for ; Mon, 16 Jun 2003 23:44:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5H6ip4d034849; Mon, 16 Jun 2003 23:44:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306170644.h5H6ip4d034849@xorpc.icir.org> Date: Mon, 16 Jun 2003 23:44:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/16 23:44:51 Added files: xorp/bgp/: process_watch.cc process_watch.hh Log message: Watch for fea and rib, birth and death. Deal consistently with the loss of the finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 9:57:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 09:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HGw2wF085108 for ; Tue, 17 Jun 2003 09:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HGw2DD023625; Tue, 17 Jun 2003 09:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HGw1bb020244; Tue, 17 Jun 2003 09:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HGvBbb020223 for ; Tue, 17 Jun 2003 09:57:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HGvADD023612 for ; Tue, 17 Jun 2003 09:57:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HGvAQg046208 for ; Tue, 17 Jun 2003 09:57:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HGvAPX046207; Tue, 17 Jun 2003 09:57:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306171657.h5HGvAPX046207@xorpc.icir.org> Date: Tue, 17 Jun 2003 9:57:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/17 09:57:10 Modified files: xorp/bgp/: process_watch.cc process_watch.hh Log message: Add XLOG and make method "ready" const. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 14:47:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 14:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HLm1wF021404 for ; Tue, 17 Jun 2003 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HLm1DD026810 for ; Tue, 17 Jun 2003 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HLm1bb026173; Tue, 17 Jun 2003 14:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HLlWbb026160 for ; Tue, 17 Jun 2003 14:47:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HLlVDD026806 for ; Tue, 17 Jun 2003 14:47:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HLlVQg003212 for ; Tue, 17 Jun 2003 14:47:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HLlV1v003211; Tue, 17 Jun 2003 14:47:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306172147.h5HLlV1v003211@xorpc.icir.org> Date: Tue, 17 Jun 2003 14:47:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ exceptions.hh process_watch.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/17 14:47:31 Modified files: xorp/bgp/: exceptions.hh process_watch.cc Log message: Throw an exception when a NO_FINDER error occurs rather than just exiting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:04:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HN51wF030894 for ; Tue, 17 Jun 2003 16:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HN51DD027461 for ; Tue, 17 Jun 2003 16:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HN51bb027773; Tue, 17 Jun 2003 16:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HN4lbb027765 for ; Tue, 17 Jun 2003 16:04:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HN4lDD027456 for ; Tue, 17 Jun 2003 16:04:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HN4lQg006002 for ; Tue, 17 Jun 2003 16:04:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HN4lis006001; Tue, 17 Jun 2003 16:04:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306172304.h5HN4lis006001@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:04:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/06/17 16:04:47 Modified files: xorp/libproto/: proto_node.hh Log message: Added a new method set_config_pif_index to setup the pif_index of an configured interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:11:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNC1wF031768 for ; Tue, 17 Jun 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNC0DD027527 for ; Tue, 17 Jun 2003 16:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNC0bb027941; Tue, 17 Jun 2003 16:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNBEbb027914 for ; Tue, 17 Jun 2003 16:11:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNBEDD027525 for ; Tue, 17 Jun 2003 16:11:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNBEQg006139 for ; Tue, 17 Jun 2003 16:11:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HNBE0i006138; Tue, 17 Jun 2003 16:11:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306172311.h5HNBE0i006138@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:11:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/06/17 16:11:14 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Added two new XRLs to the FEA interface manager interface: get_all_vif_pif_index get_configured_vif_pif_index Those XRLs are needed by the MFEA to get the physical interface index of an interface. The MFEA itself requires the physical interface index (as known by the kernel) in case of IPv6 to setup multicast virtual interfaces, etc. Other modules (RIB, protocols, etc) that do not operate directly on the kernel and/or may be running on a host that is different from the forwarding plane do not need this pif_index. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:13:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNE1wF032033 for ; Tue, 17 Jun 2003 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNE1DD027541 for ; Tue, 17 Jun 2003 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNE1bb027981; Tue, 17 Jun 2003 16:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNDebb027974 for ; Tue, 17 Jun 2003 16:13:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNDeDD027539 for ; Tue, 17 Jun 2003 16:13:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNDeQg006323 for ; Tue, 17 Jun 2003 16:13:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HNDeDw006322; Tue, 17 Jun 2003 16:13:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306172313.h5HNDeDw006322@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:13:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_node.hh xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/17 16:13:40 Modified files: xorp/fea/: mfea_config.cc mfea_node.hh xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Log message: Added support to the MFEA vif manager to obtain from the FEA the pif_index of the interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:14:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNF1wF032175 for ; Tue, 17 Jun 2003 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNF1DD027552 for ; Tue, 17 Jun 2003 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNF0bb028015; Tue, 17 Jun 2003 16:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNETbb028000 for ; Tue, 17 Jun 2003 16:14:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNETDD027547 for ; Tue, 17 Jun 2003 16:14:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNESQg006374 for ; Tue, 17 Jun 2003 16:14:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HNES0O006373; Tue, 17 Jun 2003 16:14:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306172314.h5HNES0O006373@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:14:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc iftree.cc iftree.hh xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/17 16:14:28 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc iftree.cc iftree.hh xrl_target.cc xrl_target.hh Log message: Added support to the FEA to return the pif_index of interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:18:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNJ1wF032689 for ; Tue, 17 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNJ1DD027585 for ; Tue, 17 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNJ1bb028107; Tue, 17 Jun 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNI7bb028094 for ; Tue, 17 Jun 2003 16:18:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNI6DD027583 for ; Tue, 17 Jun 2003 16:18:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNI6Qg007215 for ; Tue, 17 Jun 2003 16:18:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HNI6Bw007214; Tue, 17 Jun 2003 16:18:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306172318.h5HNI6Bw007214@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:18:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/17 16:18:06 Modified files: xorp/libxipc/: TODO Log message: Add virtual methods to XrlRouter for Finder related events. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 16:45:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 16:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNk1wF040983 for ; Tue, 17 Jun 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNk1DD027825 for ; Tue, 17 Jun 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNk1bb028628; Tue, 17 Jun 2003 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5HNj0bb028612 for ; Tue, 17 Jun 2003 16:45:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNj0DD027806 for ; Tue, 17 Jun 2003 16:45:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5HNj0Qg008408 for ; Tue, 17 Jun 2003 16:45:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5HNj0x7008407; Tue, 17 Jun 2003 16:45:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306172345.h5HNj0x7008407@xorpc.icir.org> Date: Tue, 17 Jun 2003 16:45:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/17 16:45:00 Modified files: xorp/bgp/: process_watch.cc Log message: Corrected error message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 17:07:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 17:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I081wF044953 for ; Tue, 17 Jun 2003 17:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I080DD027997 for ; Tue, 17 Jun 2003 17:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I080bb029038; Tue, 17 Jun 2003 17:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I074bb029025 for ; Tue, 17 Jun 2003 17:07:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I073DD027994 for ; Tue, 17 Jun 2003 17:07:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I073Qg009678 for ; Tue, 17 Jun 2003 17:07:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5I073Wn009677; Tue, 17 Jun 2003 17:07:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306180007.h5I073Wn009677@xorpc.icir.org> Date: Tue, 17 Jun 2003 17:07:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/17 17:07:03 Modified files: xorp/mld6igmp/: configure_mld6igmp Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 17:47:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 17:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I0m1wF049879 for ; Tue, 17 Jun 2003 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I0m1DD028345 for ; Tue, 17 Jun 2003 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I0m1bb029872; Tue, 17 Jun 2003 17:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I0l1bb029854 for ; Tue, 17 Jun 2003 17:47:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I0l1DD028340 for ; Tue, 17 Jun 2003 17:47:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I0l0Qg010047 for ; Tue, 17 Jun 2003 17:47:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5I0l0iU010046; Tue, 17 Jun 2003 17:47:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306180047.h5I0l0iU010046@xorpc.icir.org> Date: Tue, 17 Jun 2003 17:47:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/06/17 17:47:00 Modified files: xorp/libxorp/: .cvsignore Log message: Added test_observers to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Tue Jun 17 19:18:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Jun 2003 19:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I2J1wF061161 for ; Tue, 17 Jun 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I2J1DD029004; Tue, 17 Jun 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I2J0bb001244; Tue, 17 Jun 2003 19:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5I2IZbb001235 for ; Tue, 17 Jun 2003 19:18:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I2IZDD029000 for ; Tue, 17 Jun 2003 19:18:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5I2IZQg042877 for ; Tue, 17 Jun 2003 19:18:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5I2IZPY042875; Tue, 17 Jun 2003 19:18:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306180218.h5I2IZPY042875@xorpc.icir.org> Date: Tue, 17 Jun 2003 19:18:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ c++refs.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/06/17 19:18:34 Added files: xorp/devnotes/: c++refs.txt Log message: A file containing list of C++ books and materials that we've found useful. Short, subjective, and edit ready comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Wed Jun 18 12:08:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJ91wF078246 for ; Wed, 18 Jun 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJ91DD038600; Wed, 18 Jun 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IJ91bb017726; Wed, 18 Jun 2003 12:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IJ90bb017718 for ; Wed, 18 Jun 2003 12:09:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJ8xDD038596 for ; Wed, 18 Jun 2003 12:08:59 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJ8xQg068951 for ; Wed, 18 Jun 2003 12:08:59 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5IJ8x21068950; Wed, 18 Jun 2003 12:08:59 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306181908.h5IJ8x21068950@xorpc.icir.org> Date: Wed, 18 Jun 2003 12:08:59 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc ...bgp4_mib_1657_bgpversion.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/18 12:08:59 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc bgp4_mib_1657_bgpversion.hh Log message: Added Copyright notices _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:12 2005 Subject: No subject Wed Jun 18 12:13:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 12:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJE1wF079073 for ; Wed, 18 Jun 2003 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJE1DD038638; Wed, 18 Jun 2003 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IJE1bb017816; Wed, 18 Jun 2003 12:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IJDnbb017805 for ; Wed, 18 Jun 2003 12:13:49 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJDnDD038635; Wed, 18 Jun 2003 12:13:49 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IJDnsC006776; Wed, 18 Jun 2003 12:13:49 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200306181913.h5IJDnsC006776@possum.icir.org> To: jcardona@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc ...bgp4_mib_1657_bgpversion.hh In-Reply-To: Message from Javier Cardona of "Wed, 18 Jun 2003 12:08:59." <200306181908.h5IJ8x21068950@xorpc.icir.org> Date: Wed, 18 Jun 2003 12:13:49 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Repository: xorp/mibs/ > Changes by: jcardona@xorpc.icir.org. 03/06/18 12:08:59 > > Modified files: > xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh > bgp4_mib_1657_bgppeertable.cc > bgp4_mib_1657_bgppeertable.hh > bgp4_mib_1657_bgpversion.cc > bgp4_mib_1657_bgpversion.hh > > Log message: > Added Copyright notices Could you add the $XORP$ ID as well according to the XORP template files (see devnotes/template.{hh,cc,h,c}). The Template Police. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 14:51:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 14:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ILq2wF004160 for ; Wed, 18 Jun 2003 14:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ILq1DD040026 for ; Wed, 18 Jun 2003 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ILq1bb020832; Wed, 18 Jun 2003 14:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ILpubb020825 for ; Wed, 18 Jun 2003 14:51:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ILpuDD040024 for ; Wed, 18 Jun 2003 14:51:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ILpuQg008969 for ; Wed, 18 Jun 2003 14:51:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5ILpuK6008968; Wed, 18 Jun 2003 14:51:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306182151.h5ILpuK6008968@xorpc.icir.org> Date: Wed, 18 Jun 2003 14:51:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/18 14:51:56 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Add a hackish #ifndef HOST_OS_LINUX compilation fix in case of IPv6 Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 15:12:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 15:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IMD1wF007491 for ; Wed, 18 Jun 2003 15:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IMD1DD040178 for ; Wed, 18 Jun 2003 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IMD1bb021248; Wed, 18 Jun 2003 15:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5IMC8bb021228 for ; Wed, 18 Jun 2003 15:12:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IMC8DD040174 for ; Wed, 18 Jun 2003 15:12:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5IMC8Qg009139 for ; Wed, 18 Jun 2003 15:12:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5IMC82m009138; Wed, 18 Jun 2003 15:12:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306182212.h5IMC82m009138@xorpc.icir.org> Date: Wed, 18 Jun 2003 15:12:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/06/18 15:12:07 Modified files: xorp/libxorp/: selector.cc Log message: Simplify callback invocation. Add missing whitespace. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 17:44:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 17:45:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0j4wF031754 for ; Wed, 18 Jun 2003 17:45:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0j3DD041439 for ; Wed, 18 Jun 2003 17:45:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J0j2bb023972; Wed, 18 Jun 2003 17:45:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J0iobb023966 for ; Wed, 18 Jun 2003 17:44:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0ioDD041434 for ; Wed, 18 Jun 2003 17:44:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0ioQg018531 for ; Wed, 18 Jun 2003 17:44:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5J0iofW018530; Wed, 18 Jun 2003 17:44:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306190044.h5J0iofW018530@xorpc.icir.org> Date: Wed, 18 Jun 2003 17:44:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.cc finder_client.hh finder_messenger.cc finder_tcp_messenger.cc finder_tcp_messenger.hh finder_xrl_target.cc test_finder_messenger.cc test_inproc.cc ...test_lemming.cc ...test_stcp.cc ...test_sudp.cc ...test_xrl.cc ...test_xrl_router.cc ...xrl.cc ...xrl.hh ...xrl_args.hh ...xrl_cmd_map.hh ...xrl_dispatcher.cc ...xrl_dispatcher.hh ...xrl_pf.hh ...xrl_pf_inproc.cc ...xrl_pf_inproc.hh ...xrl_pf_stcp.cc ...xrl_pf_sudp.cc ...xrl_router.cc ...xrl_router.hh xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea_base.cc ...fea_base.hh ...finder_base.cc ...finder_base.hh ...finder_client_base.cc ...finder_client_bas! e.hh ...mf! ea_base.cc ...mfea_base.hh ...mld6igmp_base.cc ...mld6igmp_base.hh ...ospf_base.cc ...ospf_base.hh ...pim_base.cc ...pim_base.hh ...rib_base.cc ...rib_base.hh ...ribclient_base.cc ...ribclient_base.hh ...rtrmgr_base.cc ...rtrmgr_base.hh ...test_base.cc ...test_base.hh ...test_finder_events_base.cc ...test_finder_events_base.hh ...test_peer_base.cc ...test_peer_base.hh ...xorp_if_mib_base.cc ...xorp_if_mib_base.hh ...xorpsh_base.cc ...xorpsh_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/06/18 17:44:50 Modified files: xorp/libxipc/: finder_client.cc finder_client.hh finder_messenger.cc finder_tcp_messenger.cc finder_tcp_messenger.hh finder_xrl_target.cc test_finder_messenger.cc test_inproc.cc test_lemming.cc test_stcp.cc test_sudp.cc test_xrl.cc test_xrl_router.cc xrl.cc xrl.hh xrl_args.hh xrl_cmd_map.hh xrl_dispatcher.cc xrl_dispatcher.hh xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_sudp.cc xrl_router.cc xrl_router.hh xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea_base.cc fea_base.hh finder_base.cc finder_base.hh finder_client_base.cc finder_client_base.hh mfea_base.cc mfea_base.hh mld6igmp_base.cc mld6igmp_base.hh ospf_base.cc ospf_base.hh pim_base.cc pim_base.hh rib_base.cc rib_base.hh ribclient_base.cc ribclient_base.hh rtrmgr_base.cc rtrmgr_base.hh test_base.cc test_base.hh test_finder_events_base.cc test_finder_events_base.hh test_peer_base.cc test_peer_base.hh xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh_base.cc xorpsh_base.hh Log message: Change XrlCallback dispatch arguments to just contain XrlArgs rather than complete Xrl. This saves undue Xrl copying. Add fast path to XrlRouter that entails no data copies when Xrl is already resolved. Add HOL blocking so an unresolved Xrl will not lead to re-ordering in a batch. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 17:46:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 17:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0l1wF032107 for ; Wed, 18 Jun 2003 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0l0DD041465 for ; Wed, 18 Jun 2003 17:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J0l0bb024005; Wed, 18 Jun 2003 17:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J0kAbb023996 for ; Wed, 18 Jun 2003 17:46:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0kADD041462 for ; Wed, 18 Jun 2003 17:46:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J0k9Qg018585 for ; Wed, 18 Jun 2003 17:46:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5J0k9vu018584; Wed, 18 Jun 2003 17:46:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306190046.h5J0k9vu018584@xorpc.icir.org> Date: Wed, 18 Jun 2003 17:46:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh peer.cc peer.hh test_peer.cc test_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/06/18 17:46:09 Modified files: xorp/bgp/harness/: command.cc command.hh peer.cc peer.hh test_peer.cc test_peer.hh Log message: Change Peer class to use own XrlRouter rather than Coord instances XrlRouter. Previously Peers could be deleted and then have Xrl callbacks invoked upon deleted object. Reviewed by: Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 18:24:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 18:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1P1wF044128 for ; Wed, 18 Jun 2003 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1P1DD041744 for ; Wed, 18 Jun 2003 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J1P1bb024473; Wed, 18 Jun 2003 18:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J1OJbb024456 for ; Wed, 18 Jun 2003 18:24:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1OJDD041739 for ; Wed, 18 Jun 2003 18:24:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1OJQg041689 for ; Wed, 18 Jun 2003 18:24:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5J1OJ8R041688; Wed, 18 Jun 2003 18:24:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306190124.h5J1OJ8R041688@xorpc.icir.org> Date: Wed, 18 Jun 2003 18:24:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/18 18:24:19 Modified files: xorp/fea/: mfea_node.hh Log message: Add a new method MfeaNode::mfea_mrouter() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 18:25:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 18:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1Q1wF044324 for ; Wed, 18 Jun 2003 18:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1Q0DD041771 for ; Wed, 18 Jun 2003 18:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J1Q0bb024506; Wed, 18 Jun 2003 18:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J1PDbb024487 for ; Wed, 18 Jun 2003 18:25:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1PDDD041767 for ; Wed, 18 Jun 2003 18:25:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J1PDQg042429 for ; Wed, 18 Jun 2003 18:25:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5J1PDQI042428; Wed, 18 Jun 2003 18:25:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306190125.h5J1PDQI042428@xorpc.icir.org> Date: Wed, 18 Jun 2003 18:25:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/18 18:25:13 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: Bugfix: if the protocol to start/stop is PIM, then start/stop PIM multicast routing in the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Wed Jun 18 22:18:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Jun 2003 22:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J5J2wF086845 for ; Wed, 18 Jun 2003 22:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J5J2DD043461; Wed, 18 Jun 2003 22:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J5J1bb027097; Wed, 18 Jun 2003 22:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5J5IObb027087 for ; Wed, 18 Jun 2003 22:18:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J5IODD043454 for ; Wed, 18 Jun 2003 22:18:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5J5INQg090052 for ; Wed, 18 Jun 2003 22:18:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5J5INwJ090051; Wed, 18 Jun 2003 22:18:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306190518.h5J5INwJ090051@xorpc.icir.org> Date: Wed, 18 Jun 2003 22:18:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ test_xorpevents.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: hodson@xorpc.icir.org. 03/06/18 22:18:23 Modified files: xorp/mibs/: test_xorpevents.cc Log message: Sync with Xrl library. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Thu Jun 19 12:20:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Jun 2003 12:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5JJL1wF019513 for ; Thu, 19 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5JJL1DD052035 for ; Thu, 19 Jun 2003 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5JJL0bb010925; Thu, 19 Jun 2003 12:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5JJK8bb010912 for ; Thu, 19 Jun 2003 12:20:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5JJK8DD052033 for ; Thu, 19 Jun 2003 12:20:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5JJK8Qg000953 for ; Thu, 19 Jun 2003 12:20:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5JJK83R000952; Thu, 19 Jun 2003 12:20:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306191920.h5JJK83R000952@xorpc.icir.org> Date: Thu, 19 Jun 2003 12:20:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in finder_client.cc finder_client.hh test_finder.cc xorp/libxipc/ finder_client_observer.cc finder_client_observer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/19 12:20:08 Modified files: xorp/libxipc/: Makefile.am Makefile.in finder_client.cc finder_client.hh test_finder.cc Added files: xorp/libxipc/: finder_client_observer.cc finder_client_observer.hh Log message: Add FinderClientObserver class to observer FinderClient events (connection to finder, disconnection, target ready). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Thu Jun 19 18:27:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Jun 2003 18:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1S2wF079548 for ; Thu, 19 Jun 2003 18:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1S1DD055014 for ; Thu, 19 Jun 2003 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5K1S1bb016978; Thu, 19 Jun 2003 18:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5K1RIbb016965 for ; Thu, 19 Jun 2003 18:27:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1RIDD055007 for ; Thu, 19 Jun 2003 18:27:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1RIQg057022 for ; Thu, 19 Jun 2003 18:27:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5K1RIGf057021; Thu, 19 Jun 2003 18:27:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306200127.h5K1RIGf057021@xorpc.icir.org> Date: Thu, 19 Jun 2003 18:27:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client_observer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/06/19 18:27:18 Modified files: xorp/libxipc/: finder_client_observer.cc Log message: gcc-3.2 compilation fix: add #include "libxorp/xorp.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Thu Jun 19 18:58:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Jun 2003 18:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1x1wF089386 for ; Thu, 19 Jun 2003 18:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1x0DD055226 for ; Thu, 19 Jun 2003 18:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5K1x0bb017341; Thu, 19 Jun 2003 18:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5K1wXbb017334 for ; Thu, 19 Jun 2003 18:58:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1wXDD055224 for ; Thu, 19 Jun 2003 18:58:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5K1wXQg070692 for ; Thu, 19 Jun 2003 18:58:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5K1wXUM070680; Thu, 19 Jun 2003 18:58:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306200158.h5K1wXUM070680@xorpc.icir.org> Date: Thu, 19 Jun 2003 18:58:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client_observer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/19 18:58:32 Modified files: xorp/libxipc/: finder_client_observer.cc Log message: Trade xorp.h for config.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 11:55:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 11:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KIu1wF022004 for ; Fri, 20 Jun 2003 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KIu1DD064511 for ; Fri, 20 Jun 2003 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KIu1bb002511; Fri, 20 Jun 2003 11:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KItwbb002505 for ; Fri, 20 Jun 2003 11:55:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KItwDD064509 for ; Fri, 20 Jun 2003 11:55:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KItwQg098566 for ; Fri, 20 Jun 2003 11:55:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KItwVB098565; Fri, 20 Jun 2003 11:55:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306201855.h5KItwVB098565@xorpc.icir.org> Date: Fri, 20 Jun 2003 11:55:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ asyncio.hh asyncio.cc xorp/bgp/ process_watch.cc process_watch.hh rib_ipc_handler.cc rib_ipc_handler.hh xorp/bgp/harness/ peer.cc peer.hh test_peer.cc test_peer.hh xorp/libxipc/ finder_messenger.cc xrl_cmd_map.cc xrl_cmd_map.hh xrl_dispatcher.cc xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/20 11:55:58 Modified files: xorp/libxorp/: asyncio.hh asyncio.cc xorp/bgp/: process_watch.cc process_watch.hh rib_ipc_handler.cc rib_ipc_handler.hh xorp/bgp/harness/: peer.cc peer.hh test_peer.cc test_peer.hh xorp/libxipc/: finder_messenger.cc xrl_cmd_map.cc xrl_cmd_map.hh xrl_dispatcher.cc xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_router.cc Log message: Change names of methods and members called "callback". Since for debugging we'd like to macro-ize callback in callback.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 12:05:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJ61wF029980 for ; Fri, 20 Jun 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJ60DD064652 for ; Fri, 20 Jun 2003 12:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJ60bb002754; Fri, 20 Jun 2003 12:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJ5kbb002744 for ; Fri, 20 Jun 2003 12:05:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJ5kDD064648 for ; Fri, 20 Jun 2003 12:05:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJ5jQg006850 for ; Fri, 20 Jun 2003 12:05:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KJ5jaf006849; Fri, 20 Jun 2003 12:05:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306201905.h5KJ5jaf006849@xorpc.icir.org> Date: Fri, 20 Jun 2003 12:05:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/20 12:05:45 Modified files: xorp/bgp/harness/: command.cc Log message: An XRL call to "reset" causes the destruction of all current peers. A subsequent XRL call to "initialise" can create a new peer while the destruction is taking place. Move the peers to be destroyed to a separate map, stops an conflict with subsequent peer creations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 12:21:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 12:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJM2wF034144 for ; Fri, 20 Jun 2003 12:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJM1DD064800; Fri, 20 Jun 2003 12:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJM1bb003056; Fri, 20 Jun 2003 12:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJLfbb003039 for ; Fri, 20 Jun 2003 12:21:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJLfDD064796 for ; Fri, 20 Jun 2003 12:21:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJLeQg009168 for ; Fri, 20 Jun 2003 12:21:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KJLeKb009167; Fri, 20 Jun 2003 12:21:40 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306201921.h5KJLeKb009167@xorpc.icir.org> Date: Fri, 20 Jun 2003 12:21:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/06/20 12:21:40 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Fix cross directory build of callback.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 12:24:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 12:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJP1wF035326 for ; Fri, 20 Jun 2003 12:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJP0DD064836 for ; Fri, 20 Jun 2003 12:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJP0bb003126; Fri, 20 Jun 2003 12:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJOkbb003117 for ; Fri, 20 Jun 2003 12:24:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJOkDD064830 for ; Fri, 20 Jun 2003 12:24:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJOjQg009586 for ; Fri, 20 Jun 2003 12:24:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KJOjjq009583; Fri, 20 Jun 2003 12:24:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306201924.h5KJOjjq009583@xorpc.icir.org> Date: Fri, 20 Jun 2003 12:24:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/06/20 12:24:45 Modified files: xorp/libxorp/: callback-gen.py callback.hh Log message: Add debugging information to callbacks (source file and line). This is now turned on by default, but can be disabled by specifying -n to callback-gen.py. All your recompilations are belong to us. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 12:27:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJS1wF036194 for ; Fri, 20 Jun 2003 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJS1DD064879; Fri, 20 Jun 2003 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJS0bb003192; Fri, 20 Jun 2003 12:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJRrbb003181 for ; Fri, 20 Jun 2003 12:27:53 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJRrDD064875 for ; Fri, 20 Jun 2003 12:27:53 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJRrRt071832 for ; Fri, 20 Jun 2003 12:27:53 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200306201927.h5KJRrRt071832@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.hh In-Reply-To: My message of "Fri, 20 Jun 2003 12:24:45." <200306201924.h5KJOjjq009583@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Jun 2003 12:27:53 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | Log message: | Add debugging information to callbacks (source file and line). This | is now turned on by default, but can be disabled by specifying -n to | callback-gen.py. | | All your recompilations are belong to us. I suggest now would be a good time to update, type make, and go for lunch :-) - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 12:33:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 12:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJY2wF037404 for ; Fri, 20 Jun 2003 12:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJY1DD064929 for ; Fri, 20 Jun 2003 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJY1bb003319; Fri, 20 Jun 2003 12:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KJXPbb003295 for ; Fri, 20 Jun 2003 12:33:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJXPDD064927 for ; Fri, 20 Jun 2003 12:33:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KJXPQg011854 for ; Fri, 20 Jun 2003 12:33:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KJXOAS011853; Fri, 20 Jun 2003 12:33:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306201933.h5KJXOAS011853@xorpc.icir.org> Date: Fri, 20 Jun 2003 12:33:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh test_peering2.sh test_rib1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/20 12:33:24 Modified files: xorp/bgp/harness/: test_peering1.sh test_peering2.sh test_rib1.sh Log message: These tests now all start a fea and rib. 1) Reduces number of warnings. 2) In the future BGP will not operate in an fea and rib are not present. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 13:56:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 13:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KKv1wF048100 for ; Fri, 20 Jun 2003 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KKv1DD065662 for ; Fri, 20 Jun 2003 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KKv1bb004739; Fri, 20 Jun 2003 13:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KKunbb004726 for ; Fri, 20 Jun 2003 13:56:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KKumDD065652 for ; Fri, 20 Jun 2003 13:56:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KKumQg036671 for ; Fri, 20 Jun 2003 13:56:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KKumOs036670; Fri, 20 Jun 2003 13:56:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306202056.h5KKumOs036670@xorpc.icir.org> Date: Fri, 20 Jun 2003 13:56:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/20 13:56:48 Modified files: xorp/libxipc/: xrl_pf_stcp.hh Log message: Add missing character. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 14:44:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 14:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KLj1wF060096 for ; Fri, 20 Jun 2003 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KLj1DD066057 for ; Fri, 20 Jun 2003 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KLj1bb005627; Fri, 20 Jun 2003 14:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KLiRbb005615 for ; Fri, 20 Jun 2003 14:44:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KLiRDD066050 for ; Fri, 20 Jun 2003 14:44:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KLiQQg045570 for ; Fri, 20 Jun 2003 14:44:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KLiQlh045569; Fri, 20 Jun 2003 14:44:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306202144.h5KLiQlh045569@xorpc.icir.org> Date: Fri, 20 Jun 2003 14:44:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/20 14:44:26 Modified files: xorp/bgp/: bgp.cc xrl_target.cc Log message: BGP will now check for the existence of a fea and rib processes before allowing certain configuration commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 15:20:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 15:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KML1wF072413 for ; Fri, 20 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KML1DD066373 for ; Fri, 20 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KML0bb006383; Fri, 20 Jun 2003 15:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KMKSbb006364 for ; Fri, 20 Jun 2003 15:20:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMKSDD066369 for ; Fri, 20 Jun 2003 15:20:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMKSQg046421 for ; Fri, 20 Jun 2003 15:20:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KMKSED046420; Fri, 20 Jun 2003 15:20:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306202220.h5KMKSED046420@xorpc.icir.org> Date: Fri, 20 Jun 2003 15:20:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/20 15:20:28 Modified files: xorp/bgp/: socket.cc Log message: If a connect call fails, no longer generate an error. Dramatically reduces the amount of output generated by the tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:13 2005 Subject: No subject Fri Jun 20 15:21:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Jun 2003 15:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMM1wF072558 for ; Fri, 20 Jun 2003 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMM0DD066381 for ; Fri, 20 Jun 2003 15:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KMM0bb006419; Fri, 20 Jun 2003 15:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5KMLsbb006411 for ; Fri, 20 Jun 2003 15:21:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMLsDD066379 for ; Fri, 20 Jun 2003 15:21:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5KMLrQg046450 for ; Fri, 20 Jun 2003 15:21:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5KMLrI0046449; Fri, 20 Jun 2003 15:21:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306202221.h5KMLrI0046449@xorpc.icir.org> Date: Fri, 20 Jun 2003 15:21:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/20 15:21:53 Modified files: xorp/bgp/: process_watch.cc process_watch.hh Log message: If a process that BGP is dependant on exits and a tidy exit is being attempted start a kill timer to kill the process in 10 seconds just in case. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 10:56:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 10:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NHv1wF000368 for ; Mon, 23 Jun 2003 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NHv1DD099996; Mon, 23 Jun 2003 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NHv1bb023243; Mon, 23 Jun 2003 10:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NHuhbb023233 for ; Mon, 23 Jun 2003 10:56:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NHuhDD099992 for ; Mon, 23 Jun 2003 10:56:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NHuhQg013082 for ; Mon, 23 Jun 2003 10:56:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NHuh4m013081; Mon, 23 Jun 2003 10:56:43 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306231756.h5NHuh4m013081@xorpc.icir.org> Date: Mon, 23 Jun 2003 10:56:43 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/23 10:56:43 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Imported changes done to test_peering2.sh: The test now start an fea and a rib. 1) Reduces number of warnings. 2) In the future BGP will not operate if fea and rib are not present. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 11:50:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 11:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIp1wF007281 for ; Mon, 23 Jun 2003 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIp1DD000609 for ; Mon, 23 Jun 2003 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NIp0bb024310; Mon, 23 Jun 2003 11:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NIoIbb024293 for ; Mon, 23 Jun 2003 11:50:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIoIDD000605 for ; Mon, 23 Jun 2003 11:50:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIoIQg019290 for ; Mon, 23 Jun 2003 11:50:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NIoIN2019289; Mon, 23 Jun 2003 11:50:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306231850.h5NIoIN2019289@xorpc.icir.org> Date: Mon, 23 Jun 2003 11:50:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/23 11:50:18 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Remove obsolete "TODO" comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 11:56:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 11:57:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIv2wF007755 for ; Mon, 23 Jun 2003 11:57:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIv1DD000662; Mon, 23 Jun 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NIv1bb024471; Mon, 23 Jun 2003 11:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NIutbb024454 for ; Mon, 23 Jun 2003 11:56:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIutDD000654 for ; Mon, 23 Jun 2003 11:56:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIutQg019418 for ; Mon, 23 Jun 2003 11:56:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NIut3P019417; Mon, 23 Jun 2003 11:56:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306231856.h5NIut3P019417@xorpc.icir.org> Date: Mon, 23 Jun 2003 11:56:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/23 11:56:55 Modified files: xorp/pim/: pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_vif.hh Log message: * Implement the splitting of Join/Prune entries among a number of Join/Prune messages: e.g., if the size of a message becomes too large, or if the number of the groups is more than 255 (the maximum number of groups in a message). Note: currently, the code assumes that the maximum message size is 65535 for IPv6 and 65535-few_bytes for IPv4, though in reality this size is smaller if we use XRLs over UDP (e.g., at least a single control message that is sent over an UDP datagram has to have the space for few XRL arguments). * Fix few bugs related to the construction of Join/Prune messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 11:59:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 12:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJ01wF007988 for ; Mon, 23 Jun 2003 12:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJ01DD000674 for ; Mon, 23 Jun 2003 12:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NJ01bb024573; Mon, 23 Jun 2003 12:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NIxPbb024554 for ; Mon, 23 Jun 2003 11:59:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIxODD000666 for ; Mon, 23 Jun 2003 11:59:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NIxOQg019445 for ; Mon, 23 Jun 2003 11:59:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NIxOMW019444; Mon, 23 Jun 2003 11:59:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306231859.h5NIxOMW019444@xorpc.icir.org> Date: Mon, 23 Jun 2003 11:59:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/23 11:59:24 Modified files: xorp/pim/: TODO Log message: Remove a number of TODO entries that are either obsolete or are DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 12:32:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 12:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJX1wF010896 for ; Mon, 23 Jun 2003 12:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJX1DD000948 for ; Mon, 23 Jun 2003 12:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NJX1bb025186; Mon, 23 Jun 2003 12:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NJWXbb025179 for ; Mon, 23 Jun 2003 12:32:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJWXDD000946 for ; Mon, 23 Jun 2003 12:32:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NJWXQg030564 for ; Mon, 23 Jun 2003 12:32:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NJWXWB030563; Mon, 23 Jun 2003 12:32:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306231932.h5NJWXWB030563@xorpc.icir.org> Date: Mon, 23 Jun 2003 12:32:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/23 12:32:33 Modified files: xorp/bgp/harness/: peer.cc Log message: Each peer now has its own XrlStdRouter. So the call to pending now need to check the local router. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 15:09:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 15:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NMA1wF030162 for ; Mon, 23 Jun 2003 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NMA1DD002144 for ; Mon, 23 Jun 2003 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NMA1bb028005; Mon, 23 Jun 2003 15:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NM9Dbb027983 for ; Mon, 23 Jun 2003 15:09:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NM9DDD002139 for ; Mon, 23 Jun 2003 15:09:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NM9DQg074730 for ; Mon, 23 Jun 2003 15:09:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NM9DBa074729; Mon, 23 Jun 2003 15:09:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306232209.h5NM9DBa074729@xorpc.icir.org> Date: Mon, 23 Jun 2003 15:09:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/06/23 15:09:13 Modified files: xorp/bgp/: plumbing.cc Log message: printf -> debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Mon Jun 23 16:39:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Jun 2003 16:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NNe1wF041638 for ; Mon, 23 Jun 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NNe1DD002822 for ; Mon, 23 Jun 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NNe0bb029608; Mon, 23 Jun 2003 16:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5NNd5bb029582 for ; Mon, 23 Jun 2003 16:39:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NNd4DD002813 for ; Mon, 23 Jun 2003 16:39:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5NNd4Qg080657 for ; Mon, 23 Jun 2003 16:39:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5NNd4iZ080656; Mon, 23 Jun 2003 16:39:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306232339.h5NNd4iZ080656@xorpc.icir.org> Date: Mon, 23 Jun 2003 16:39:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/23 16:39:04 Modified files: xorp/bgp/harness/: command.cc command.hh Log message: Pending will now return true when a peer is being initialised. Errors in the initialise callback are now noticed and handled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 11:28:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 11:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIT1wF063913 for ; Tue, 24 Jun 2003 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIT1DD012929 for ; Tue, 24 Jun 2003 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIT0bb016526; Tue, 24 Jun 2003 11:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OISdbb016511 for ; Tue, 24 Jun 2003 11:28:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIScDD012927 for ; Tue, 24 Jun 2003 11:28:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIScQg035820 for ; Tue, 24 Jun 2003 11:28:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OIScht035819; Tue, 24 Jun 2003 11:28:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306241828.h5OIScht035819@xorpc.icir.org> Date: Tue, 24 Jun 2003 11:28:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/24 11:28:38 Modified files: xorp/pim/: pim_mre_assert.cc Log message: * Modify PimMre::could_assert_wc() such that it can be called for all entries (i.e., not only for (*,G) and (S,G)) * Modify PimMre::could_assert() such that it can be called for (S,G,rpt) entry as well (in addition to (S,G)) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 11:29:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 11:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIU1wF064472 for ; Tue, 24 Jun 2003 11:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIU1DD012940 for ; Tue, 24 Jun 2003 11:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIU0bb016562; Tue, 24 Jun 2003 11:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OITqbb016551 for ; Tue, 24 Jun 2003 11:29:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OITqDD012935 for ; Tue, 24 Jun 2003 11:29:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OITqQg035880 for ; Tue, 24 Jun 2003 11:29:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OITqYG035879; Tue, 24 Jun 2003 11:29:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306241829.h5OITqYG035879@xorpc.icir.org> Date: Tue, 24 Jun 2003 11:29:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/24 11:29:52 Modified files: xorp/pim/: pim_mre.hh Log message: * Modify PimMre::could_assert_wc() such that it can be called for all entries (i.e., not only for (*,G) and (S,G)) * Modify PimMre::could_assert() such that it can be called for (S,G,rpt) entry as well (in addition to (S,G)) * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 11:32:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 11:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIX1wF064914 for ; Tue, 24 Jun 2003 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIX1DD012990; Tue, 24 Jun 2003 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIX1bb016635; Tue, 24 Jun 2003 11:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIWQbb016613 for ; Tue, 24 Jun 2003 11:32:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIWQDD012986 for ; Tue, 24 Jun 2003 11:32:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIWQQg035950 for ; Tue, 24 Jun 2003 11:32:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OIWQbe035949; Tue, 24 Jun 2003 11:32:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306241832.h5OIWQbe035949@xorpc.icir.org> Date: Tue, 24 Jun 2003 11:32:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/24 11:32:26 Modified files: xorp/pim/: pim_node_cli.cc Log message: * Print "Could assert WC:" info for all entries, because now PimMre::could_assert_wc() applies for all entries (i.e., not only for (*,G) and (S,G)) * Print "Could assert SG:" info for (S,G,rpt) entries as well, because now PimMre::could_assert() applies for (S,G,rpt) entry (in addition to (S,G)) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 11:40:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 11:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIf1wF065891 for ; Tue, 24 Jun 2003 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIf1DD013068; Tue, 24 Jun 2003 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIf1bb016849; Tue, 24 Jun 2003 11:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIe7bb016833 for ; Tue, 24 Jun 2003 11:40:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIe7DD013062 for ; Tue, 24 Jun 2003 11:40:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIe7Qg036074 for ; Tue, 24 Jun 2003 11:40:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OIe7dE036073; Tue, 24 Jun 2003 11:40:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306241840.h5OIe7dE036073@xorpc.icir.org> Date: Tue, 24 Jun 2003 11:40:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/06/24 11:40:07 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Modify output information from "show pim join" sample outputs to reflect current code: - Remove "Upstream RPF'(*,G):" and "Upstream RPF'(S,G,rpt):" for some of the earlier (S,G) examples - Add missing "Assert lost SG:", "Assert lost SG_RPT:", "Assert tracking SG:", "PIM include SG:", "PIM exclude SG:" for some of the earlier (S,G) sample outputs. - Add "Could assert WC:" output for (*,*,RP) and (S,G,rpt) entries (in addition to (*,G) and (S,G)) - Add "Could assert SG:" output for (S,G,rpt) entries (in addition to (S,G)) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 11:51:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 11:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIq1wF067794 for ; Tue, 24 Jun 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIq1DD013172 for ; Tue, 24 Jun 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIq1bb017015; Tue, 24 Jun 2003 11:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OIpgbb017008 for ; Tue, 24 Jun 2003 11:51:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIpgDD013170 for ; Tue, 24 Jun 2003 11:51:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OIpgQg036189 for ; Tue, 24 Jun 2003 11:51:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OIpfVt036188; Tue, 24 Jun 2003 11:51:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306241851.h5OIpfVt036188@xorpc.icir.org> Date: Tue, 24 Jun 2003 11:51:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: atanu@xorpc.icir.org. 03/06/24 11:51:41 Modified files: xorp/libxipc/: call_xrl.cc Log message: Its now an error if the callback for an XRL doesn't happen in the allocated time. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 12:31:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 12:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OJW1wF077624 for ; Tue, 24 Jun 2003 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OJW1DD013587 for ; Tue, 24 Jun 2003 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OJW1bb017934; Tue, 24 Jun 2003 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OJVAbb017924 for ; Tue, 24 Jun 2003 12:31:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OJVADD013581 for ; Tue, 24 Jun 2003 12:31:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OJVAQg047296 for ; Tue, 24 Jun 2003 12:31:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OJVAMe047295; Tue, 24 Jun 2003 12:31:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306241931.h5OJVAMe047295@xorpc.icir.org> Date: Tue, 24 Jun 2003 12:31:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/24 12:31:09 Modified files: xorp/pim/: TODO Log message: Add two TODO entries regarding the PIM spec. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 13:38:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 13:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKd1wF089187 for ; Tue, 24 Jun 2003 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKd0DD014227 for ; Tue, 24 Jun 2003 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OKd0bb019134; Tue, 24 Jun 2003 13:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OKcNbb019117 for ; Tue, 24 Jun 2003 13:38:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKcMDD014225 for ; Tue, 24 Jun 2003 13:38:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKcMQg077843 for ; Tue, 24 Jun 2003 13:38:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OKcMYl077842; Tue, 24 Jun 2003 13:38:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306242038.h5OKcMYl077842@xorpc.icir.org> Date: Tue, 24 Jun 2003 13:38:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/24 13:38:22 Modified files: xorp/pim/: TODO Log message: Add a TODO entry regarding the PIM spec. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 13:47:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 13:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKm1wF090374 for ; Tue, 24 Jun 2003 13:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKm1DD014312 for ; Tue, 24 Jun 2003 13:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OKm1bb019315; Tue, 24 Jun 2003 13:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5OKlTbb019307 for ; Tue, 24 Jun 2003 13:47:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKlTDD014310 for ; Tue, 24 Jun 2003 13:47:29 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5OKlSQg084286 for ; Tue, 24 Jun 2003 13:47:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5OKlSau084277; Tue, 24 Jun 2003 13:47:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306242047.h5OKlSau084277@xorpc.icir.org> Date: Tue, 24 Jun 2003 13:47:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/24 13:47:28 Modified files: xorp/bgp/harness/: xrl_shell_funcs.sh Log message: Wait up to ten seconds for an XRL to complete. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 16:30:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 16:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONV1wF019488 for ; Tue, 24 Jun 2003 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONV1DD015509 for ; Tue, 24 Jun 2003 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ONV1bb022433; Tue, 24 Jun 2003 16:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ONUibb022427 for ; Tue, 24 Jun 2003 16:30:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONUiDD015506 for ; Tue, 24 Jun 2003 16:30:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONUhQg089816 for ; Tue, 24 Jun 2003 16:30:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5ONUhXh089815; Tue, 24 Jun 2003 16:30:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306242330.h5ONUhXh089815@xorpc.icir.org> Date: Tue, 24 Jun 2003 16:30:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ xrl_shell_funcs.sh xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: atanu@xorpc.icir.org. 03/06/24 16:30:43 Modified files: xorp/bgp/harness/: xrl_shell_funcs.sh xorp/libxipc/: call_xrl.cc Log message: Add "-w" wait time argument to call_xrl and change test script to use it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Tue Jun 24 16:49:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Jun 2003 16:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONo1wF025163 for ; Tue, 24 Jun 2003 16:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONo1DD015634 for ; Tue, 24 Jun 2003 16:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ONo1bb022834; Tue, 24 Jun 2003 16:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5ONnxbb022828 for ; Tue, 24 Jun 2003 16:49:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONnxDD015629 for ; Tue, 24 Jun 2003 16:49:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5ONnxQg089952 for ; Tue, 24 Jun 2003 16:49:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5ONnxXa089951; Tue, 24 Jun 2003 16:49:59 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306242349.h5ONnxXa089951@xorpc.icir.org> Date: Tue, 24 Jun 2003 16:49:59 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/24 16:49:59 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: In test2 poll for the peering to be dropped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Wed Jun 25 10:59:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 11:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI01wF028084 for ; Wed, 25 Jun 2003 11:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI01DD025360 for ; Wed, 25 Jun 2003 11:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PI01bb009631; Wed, 25 Jun 2003 11:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PHxgbb009620 for ; Wed, 25 Jun 2003 10:59:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PHxfDD025350 for ; Wed, 25 Jun 2003 10:59:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PHxfQg039012 for ; Wed, 25 Jun 2003 10:59:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PHxfsI039011; Wed, 25 Jun 2003 10:59:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306251759.h5PHxfsI039011@xorpc.icir.org> Date: Wed, 25 Jun 2003 10:59:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rip/ Changes by: hodson@xorpc.icir.org. 03/06/25 10:59:41 xorp/docs/rip Update of /usr/local/www/data/cvs/xorp/docs/rip In directory xorpc.icir.org:/tmp/cvs-serv39005/rip Log Message: Directory /usr/local/www/data/cvs/xorp/docs/rip added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Wed Jun 25 11:00:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 11:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI11wF028192 for ; Wed, 25 Jun 2003 11:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI10DD025387 for ; Wed, 25 Jun 2003 11:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PI10bb009656; Wed, 25 Jun 2003 11:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PI04bb009642 for ; Wed, 25 Jun 2003 11:00:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI04DD025364 for ; Wed, 25 Jun 2003 11:00:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI03Qg039036 for ; Wed, 25 Jun 2003 11:00:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PI03ox039035; Wed, 25 Jun 2003 11:00:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306251800.h5PI03ox039035@xorpc.icir.org> Date: Wed, 25 Jun 2003 11:00:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rip/figs/ Changes by: hodson@xorpc.icir.org. 03/06/25 11:00:03 xorp/docs/rip/figs Update of /usr/local/www/data/cvs/xorp/docs/rip/figs In directory xorpc.icir.org:/tmp/cvs-serv39029/figs Log Message: Directory /usr/local/www/data/cvs/xorp/docs/rip/figs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:14 2005 Subject: No subject Wed Jun 25 11:05:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 11:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI61wF028579 for ; Wed, 25 Jun 2003 11:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI61DD025441; Wed, 25 Jun 2003 11:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PI60bb009759; Wed, 25 Jun 2003 11:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PI5rbb009750 for ; Wed, 25 Jun 2003 11:05:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI5rDD025438 for ; Wed, 25 Jun 2003 11:05:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PI5rQg039135 for ; Wed, 25 Jun 2003 11:05:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PI5rYV039134; Wed, 25 Jun 2003 11:05:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306251805.h5PI5rYV039134@xorpc.icir.org> Date: Wed, 25 Jun 2003 11:05:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rip/ Makefile design-talk.pdf design-talk.ps design-talk.tex xorp/docs/rip/figs/ 3node.eps 3node.gd core.eps core.fig rip-10000.eps rip-10000.ssd rip-processes-interaction.efd rip-processes-interaction.eps ...split-horizon-1.eps ...split-horizon-1.gd Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rip/figs/ Changes by: hodson@xorpc.icir.org. 03/06/25 11:05:53 Added files: xorp/docs/rip/: Makefile design-talk.pdf design-talk.ps design-talk.tex xorp/docs/rip/figs/: 3node.eps 3node.gd core.eps core.fig rip-10000.eps rip-10000.ssd rip-processes-interaction.efd rip-processes-interaction.eps split-horizon-1.eps split-horizon-1.gd Log message: Add design talk slides. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 11:32:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 11:33:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIX8wF030654 for ; Wed, 25 Jun 2003 11:33:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIX8DD025717; Wed, 25 Jun 2003 11:33:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PIX8bb010212; Wed, 25 Jun 2003 11:33:08 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PIWfbb010203 for ; Wed, 25 Jun 2003 11:32:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIWfDD025713 for ; Wed, 25 Jun 2003 11:32:41 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIWfQg039451 for ; Wed, 25 Jun 2003 11:32:41 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PIWfMS039450; Wed, 25 Jun 2003 11:32:41 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306251832.h5PIWfMS039450@xorpc.icir.org> Date: Wed, 25 Jun 2003 11:32:41 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/25 11:32:41 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: No more need to call shutdown XRL since runit will now call it. The default timeout for XRLs (10s) will fail on slow machines: raised it to 20 secs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 11:57:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 11:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIw1wF032642 for ; Wed, 25 Jun 2003 11:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIw1DD025976 for ; Wed, 25 Jun 2003 11:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PIw1bb010751; Wed, 25 Jun 2003 11:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PIvrbb010738 for ; Wed, 25 Jun 2003 11:57:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIvqDD025968 for ; Wed, 25 Jun 2003 11:57:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PIvqQg039685 for ; Wed, 25 Jun 2003 11:57:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PIvqU1039684; Wed, 25 Jun 2003 11:57:52 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306251857.h5PIvqU1039684@xorpc.icir.org> Date: Wed, 25 Jun 2003 11:57:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/25 11:57:52 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Can't seem to get test2 to work. Give in add a ten second sleep. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 14:45:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 14:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PLk1wF045548 for ; Wed, 25 Jun 2003 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PLk1DD027656; Wed, 25 Jun 2003 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PLk0bb013887; Wed, 25 Jun 2003 14:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PLjabb013854 for ; Wed, 25 Jun 2003 14:45:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PLjaDD027652 for ; Wed, 25 Jun 2003 14:45:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PLjaQg088640 for ; Wed, 25 Jun 2003 14:45:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PLjain088639; Wed, 25 Jun 2003 14:45:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306252145.h5PLjain088639@xorpc.icir.org> Date: Wed, 25 Jun 2003 14:45:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rip/ design-talk.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rip/ Changes by: hodson@xorpc.icir.org. 03/06/25 14:45:36 Modified files: xorp/docs/rip/: design-talk.tex Log message: Add a slide on IPv6 link-local addresses. Add a slide on RIP response packet fields. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 16:47:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 16:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PNm1wF055638 for ; Wed, 25 Jun 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PNm1DD028878 for ; Wed, 25 Jun 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PNm1bb016562; Wed, 25 Jun 2003 16:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5PNlqbb016551 for ; Wed, 25 Jun 2003 16:47:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PNlpDD028876 for ; Wed, 25 Jun 2003 16:47:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5PNlpQg089719 for ; Wed, 25 Jun 2003 16:47:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5PNlplq089718; Wed, 25 Jun 2003 16:47:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306252347.h5PNlplq089718@xorpc.icir.org> Date: Wed, 25 Jun 2003 16:47:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ wishlist.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/25 16:47:51 Modified files: ./: wishlist.html Log message: Additional items. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 17:05:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 17:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q061wF057722 for ; Wed, 25 Jun 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q060DD029082; Wed, 25 Jun 2003 17:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q060bb016979; Wed, 25 Jun 2003 17:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q05jbb016967 for ; Wed, 25 Jun 2003 17:05:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q05jDD029076 for ; Wed, 25 Jun 2003 17:05:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q05jQg090023 for ; Wed, 25 Jun 2003 17:05:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q05jV6090022; Wed, 25 Jun 2003 17:05:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306260005.h5Q05jV6090022@xorpc.icir.org> Date: Wed, 25 Jun 2003 17:05:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html ./ contributing.html ./ wishlist.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/06/25 17:05:45 Modified files: ./: index.html Added files: ./: contributing.html Removed files: ./: wishlist.html Log message: Rename wishlist.html to contributing.html. Minor fixes to contributing.html for netscape 4.x. Change links relating to contributions on index.html to point contributing.html. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 17:26:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 17:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0R1wF059635 for ; Wed, 25 Jun 2003 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0R1DD029245 for ; Wed, 25 Jun 2003 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q0R1bb017323; Wed, 25 Jun 2003 17:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q0QIbb017307 for ; Wed, 25 Jun 2003 17:26:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0QHDD029241 for ; Wed, 25 Jun 2003 17:26:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0QHQg095512 for ; Wed, 25 Jun 2003 17:26:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q0QH8B095511; Wed, 25 Jun 2003 17:26:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200306260026.h5Q0QH8B095511@xorpc.icir.org> Date: Wed, 25 Jun 2003 17:26:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/06/25 17:26:17 Modified files: xorp/libxipc/: xrl_router.cc xrl_router.hh Log message: Add FinderClientObserver to the base classes of XrlRouter. Class deriving from XrlRouter will get FinderClient event notifications if they implement finder_connect_event, finder_disconnect_event, and finder_ready_event. Default XrlRouter implementations are no-ops. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 17:54:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 17:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0t1wF067622 for ; Wed, 25 Jun 2003 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0t1DD029480 for ; Wed, 25 Jun 2003 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q0t1bb017735; Wed, 25 Jun 2003 17:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q0sEbb017721 for ; Wed, 25 Jun 2003 17:54:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0sEDD029471 for ; Wed, 25 Jun 2003 17:54:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q0sEQg095715 for ; Wed, 25 Jun 2003 17:54:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q0sEnR095714; Wed, 25 Jun 2003 17:54:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306260054.h5Q0sEnR095714@xorpc.icir.org> Date: Wed, 25 Jun 2003 17:54:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/25 17:54:14 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 18:34:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 18:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1Z1wF079476 for ; Wed, 25 Jun 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1Z1DD029912 for ; Wed, 25 Jun 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q1Z1bb018345; Wed, 25 Jun 2003 18:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q1Ygbb018338 for ; Wed, 25 Jun 2003 18:34:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1YgDD029901 for ; Wed, 25 Jun 2003 18:34:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1YgQg007197 for ; Wed, 25 Jun 2003 18:34:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q1YgYl007196; Wed, 25 Jun 2003 18:34:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306260134.h5Q1YgYl007196@xorpc.icir.org> Date: Wed, 25 Jun 2003 18:34:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/25 18:34:41 Modified files: xorp/pim/: TODO Log message: Add a TODO entry regarding PIM Asserts (both spec and impl). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 18:39:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 18:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1e1wF079994 for ; Wed, 25 Jun 2003 18:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1e1DD029962 for ; Wed, 25 Jun 2003 18:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q1e1bb018448; Wed, 25 Jun 2003 18:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q1dxbb018442 for ; Wed, 25 Jun 2003 18:39:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1dxDD029957 for ; Wed, 25 Jun 2003 18:39:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q1dxQg013040 for ; Wed, 25 Jun 2003 18:39:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q1dxnw013039; Wed, 25 Jun 2003 18:39:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306260139.h5Q1dxnw013039@xorpc.icir.org> Date: Wed, 25 Jun 2003 18:39:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/25 18:39:59 Modified files: xorp/pim/: pim_proto_assert.cc Log message: Fix a comment regarding processing of Assert messages by the (*,G) assert state machine. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 19:15:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 19:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2G1wF086304 for ; Wed, 25 Jun 2003 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2G0DD030253 for ; Wed, 25 Jun 2003 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2G0bb018910; Wed, 25 Jun 2003 19:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2FRbb018898 for ; Wed, 25 Jun 2003 19:15:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2FRDD030247 for ; Wed, 25 Jun 2003 19:15:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2FRQg026533 for ; Wed, 25 Jun 2003 19:15:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q2FR0F026527; Wed, 25 Jun 2003 19:15:27 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306260215.h5Q2FR0F026527@xorpc.icir.org> Date: Wed, 25 Jun 2003 19:15:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/25 19:15:27 Modified files: xorp/bgp/harness/: trie.cc trie.hh Log message: Count the number of update messages that are submitted to the trie. Add a method to return this count. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 19:17:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 19:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2I1wF086471 for ; Wed, 25 Jun 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2I0DD030277; Wed, 25 Jun 2003 19:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2I0bb018973; Wed, 25 Jun 2003 19:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2Hkbb018962 for ; Wed, 25 Jun 2003 19:17:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2HkDD030273 for ; Wed, 25 Jun 2003 19:17:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2HkQg027475 for ; Wed, 25 Jun 2003 19:17:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q2Hjs9027473; Wed, 25 Jun 2003 19:17:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306260217.h5Q2Hjs9027473@xorpc.icir.org> Date: Wed, 25 Jun 2003 19:17:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh coord.cc coord.hh peer.cc peer.hh xorp/xrl/interfaces/ coord.xif coord_xif.cc coord_xif.hh xorp/xrl/targets/ coord.xrls coord_base.cc coord_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/06/25 19:17:45 Modified files: xorp/bgp/harness/: command.cc command.hh coord.cc coord.hh peer.cc peer.hh xorp/xrl/interfaces/: coord.xif coord_xif.cc coord_xif.hh xorp/xrl/targets/: coord.xrls coord_base.cc coord_base.hh Log message: Add a status XRL to the coordinator. This returns the state of a test_peer and the number of update packets that have been sent or received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 19:22:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 19:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2N1wF087259 for ; Wed, 25 Jun 2003 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2N0DD030325 for ; Wed, 25 Jun 2003 19:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2N0bb019040; Wed, 25 Jun 2003 19:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2M5bb019024 for ; Wed, 25 Jun 2003 19:22:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2M4DD030321 for ; Wed, 25 Jun 2003 19:22:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2M4Qg029175 for ; Wed, 25 Jun 2003 19:22:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q2M4q3029174; Wed, 25 Jun 2003 19:22:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306260222.h5Q2M4q3029174@xorpc.icir.org> Date: Wed, 25 Jun 2003 19:22:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/25 19:22:04 Modified files: xorp/bgp/harness/: test_peering2.sh xrl_shell_funcs.sh Log message: Use the new status method to detect when a peering is established/dropped or when all the update packets have been received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 19:33:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 19:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2Y1wF093668 for ; Wed, 25 Jun 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2Y1DD030398; Wed, 25 Jun 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2Y0bb019186; Wed, 25 Jun 2003 19:34:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q2X7bb019165 for ; Wed, 25 Jun 2003 19:33:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2X7DD030396 for ; Wed, 25 Jun 2003 19:33:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q2X6Qg031782 for ; Wed, 25 Jun 2003 19:33:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q2X6it031781; Wed, 25 Jun 2003 19:33:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306260233.h5Q2X6it031781@xorpc.icir.org> Date: Wed, 25 Jun 2003 19:33:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/06/25 19:33:06 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Paragraph regarding the new "status" xrl. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Wed Jun 25 20:12:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Jun 2003 20:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q3D1wF010640 for ; Wed, 25 Jun 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q3D1DD030675 for ; Wed, 25 Jun 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q3D0bb019611; Wed, 25 Jun 2003 20:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5Q3CCbb019599 for ; Wed, 25 Jun 2003 20:12:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q3CCDD030666 for ; Wed, 25 Jun 2003 20:12:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5Q3CCQg044157 for ; Wed, 25 Jun 2003 20:12:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5Q3CC53044152; Wed, 25 Jun 2003 20:12:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306260312.h5Q3CC53044152@xorpc.icir.org> Date: Wed, 25 Jun 2003 20:12:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/25 20:12:12 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Update a comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 9:53:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 09:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QGs1wF047452 for ; Thu, 26 Jun 2003 09:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QGs1DD039569 for ; Thu, 26 Jun 2003 09:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QGs1bb002473; Thu, 26 Jun 2003 09:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QGr7bb002455 for ; Thu, 26 Jun 2003 09:53:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QGr6DD039561 for ; Thu, 26 Jun 2003 09:53:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QGr6kN047807 for ; Thu, 26 Jun 2003 09:53:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QGr656047806; Thu, 26 Jun 2003 09:53:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306261653.h5QGr656047806@xorpc.icir.org> Date: Thu, 26 Jun 2003 9:53:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/26 09:53:06 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Enable verbose output to try and find the problem with these tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 11:34:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 11:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIZ2wF055089 for ; Thu, 26 Jun 2003 11:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIZ1DD040551; Thu, 26 Jun 2003 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIZ1bb004789; Thu, 26 Jun 2003 11:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIYwbb004780 for ; Thu, 26 Jun 2003 11:34:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIYwDD040546 for ; Thu, 26 Jun 2003 11:34:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIYwkN061432 for ; Thu, 26 Jun 2003 11:34:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QIYwSk061431; Thu, 26 Jun 2003 11:34:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261834.h5QIYwSk061431@xorpc.icir.org> Date: Thu, 26 Jun 2003 11:34:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 11:34:57 Modified files: xorp/pim/: README Log message: Add a minor clarification that "test_pim" has to be run as a root. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 11:36:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 11:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIb1wF055271 for ; Thu, 26 Jun 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIb1DD040589 for ; Thu, 26 Jun 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIb0bb004842; Thu, 26 Jun 2003 11:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIaIbb004814 for ; Thu, 26 Jun 2003 11:36:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIaIDD040583 for ; Thu, 26 Jun 2003 11:36:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIaIkN061674 for ; Thu, 26 Jun 2003 11:36:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QIaIoJ061673; Thu, 26 Jun 2003 11:36:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261836.h5QIaIoJ061673@xorpc.icir.org> Date: Thu, 26 Jun 2003 11:36:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/06/26 11:36:18 Modified files: xorp/fea/: README.mfea Log message: Add a minor clarification that "test_mfea" has to be run as a root. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 11:36:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 11:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIb1wF055290 for ; Thu, 26 Jun 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIb1DD040593 for ; Thu, 26 Jun 2003 11:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIb1bb004853; Thu, 26 Jun 2003 11:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIaebb004831 for ; Thu, 26 Jun 2003 11:36:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIaeDD040585 for ; Thu, 26 Jun 2003 11:36:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIaekN061753 for ; Thu, 26 Jun 2003 11:36:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QIael0061752; Thu, 26 Jun 2003 11:36:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261836.h5QIael0061752@xorpc.icir.org> Date: Thu, 26 Jun 2003 11:36:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/26 11:36:40 Modified files: xorp/mld6igmp/: README Log message: Add a minor clarification that "test_mld6igmp" has to be run as a root. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 11:45:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 11:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIk1wF056004 for ; Thu, 26 Jun 2003 11:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIk0DD040696 for ; Thu, 26 Jun 2003 11:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIk0bb005037; Thu, 26 Jun 2003 11:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QIjSbb005010 for ; Thu, 26 Jun 2003 11:45:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIjSDD040691 for ; Thu, 26 Jun 2003 11:45:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QIjSkN062795 for ; Thu, 26 Jun 2003 11:45:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QIjSXp062794; Thu, 26 Jun 2003 11:45:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261845.h5QIjSXp062794@xorpc.icir.org> Date: Thu, 26 Jun 2003 11:45:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 11:45:27 Modified files: xorp/pim/: configure_pim xrl_pim_shell_funcs.sh Log message: Update/fix some of the XRL names related to static RP configuration Those were overlooked when the following XRL renaming was performed: foo_rp* -> foo_static_rp* _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:15 2005 Subject: No subject Thu Jun 26 12:00:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 12:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJ11wF062280 for ; Thu, 26 Jun 2003 12:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJ11DD040824 for ; Thu, 26 Jun 2003 12:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJ10bb005334; Thu, 26 Jun 2003 12:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJ0Xbb005318 for ; Thu, 26 Jun 2003 12:00:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJ0XDD040820 for ; Thu, 26 Jun 2003 12:00:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJ0XkN068230 for ; Thu, 26 Jun 2003 12:00:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QJ0XCk068229; Thu, 26 Jun 2003 12:00:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261900.h5QJ0XCk068229@xorpc.icir.org> Date: Thu, 26 Jun 2003 12:00:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/26 12:00:33 Modified files: ./: RELEASE_NOTES Log message: * Added the template release notes for Release 0.4 so it can be filled on-the-fly. * Added few release notes (for MFEA and PIM-SM). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 12:41:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 12:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJg3wF065842 for ; Thu, 26 Jun 2003 12:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJg3DD041199 for ; Thu, 26 Jun 2003 12:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJg2bb006100; Thu, 26 Jun 2003 12:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJfpbb006084 for ; Thu, 26 Jun 2003 12:41:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJfpDD041195 for ; Thu, 26 Jun 2003 12:41:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJfpkN090853 for ; Thu, 26 Jun 2003 12:41:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QJfpCc090852; Thu, 26 Jun 2003 12:41:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306261941.h5QJfpCc090852@xorpc.icir.org> Date: Thu, 26 Jun 2003 12:41:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh coord.cc coord.hh peer.cc peer.hh test_peer.cc test_peer.hh xorp/xrl/interfaces/ datain.xif datain_xif.cc datain_xif.hh test_peer.xif test_peer_xif.cc test_peer_xif.hh xorp/xrl/targets/ coord.xrls coord_base.cc coord_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/06/26 12:41:50 Modified files: xorp/bgp/harness/: command.cc command.hh coord.cc coord.hh peer.cc peer.hh test_peer.cc test_peer.hh xorp/xrl/interfaces/: datain.xif datain_xif.cc datain_xif.hh test_peer.xif test_peer_xif.cc test_peer_xif.hh xorp/xrl/targets/: coord.xrls coord_base.cc coord_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh Log message: Add a generation id to the peer interactions. This allows us to detect "old" xrls sent by the test_peers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 12:42:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 12:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJh1wF071007 for ; Thu, 26 Jun 2003 12:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJh1DD041209 for ; Thu, 26 Jun 2003 12:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJh1bb006160; Thu, 26 Jun 2003 12:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJg3bb006103 for ; Thu, 26 Jun 2003 12:42:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJg2DD041197 for ; Thu, 26 Jun 2003 12:42:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJg2kN090873 for ; Thu, 26 Jun 2003 12:42:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QJg2iT090872; Thu, 26 Jun 2003 12:42:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306261942.h5QJg2iT090872@xorpc.icir.org> Date: Thu, 26 Jun 2003 12:42:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/06/26 12:42:02 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Added retry count to call_xrl _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 12:49:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 12:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJo1wF071700 for ; Thu, 26 Jun 2003 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJo1DD041271; Thu, 26 Jun 2003 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJo1bb006317; Thu, 26 Jun 2003 12:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QJnDbb006297 for ; Thu, 26 Jun 2003 12:49:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJnDDD041264 for ; Thu, 26 Jun 2003 12:49:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QJnDkN091202 for ; Thu, 26 Jun 2003 12:49:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QJnDBp091201; Thu, 26 Jun 2003 12:49:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306261949.h5QJnDBp091201@xorpc.icir.org> Date: Thu, 26 Jun 2003 12:49:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/06/26 12:49:13 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Added text to "Possible Problems" in Section 5.1 (S,G) Assert Message State Machin and Section 5.2 (*,G) Assert Message State Machine The text clarifies that according to the spec, the first data packet that comes on the wrong interface may trigger two identical Assert messages instead of one; though, an implementation may choose to optimize that case and transmit only one Assert message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 14:12:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 14:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLD1wF078101 for ; Thu, 26 Jun 2003 14:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLD1DD042038 for ; Thu, 26 Jun 2003 14:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLD0bb007993; Thu, 26 Jun 2003 14:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLCfbb007986 for ; Thu, 26 Jun 2003 14:12:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLCfDD042030 for ; Thu, 26 Jun 2003 14:12:41 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLCfkN021963 for ; Thu, 26 Jun 2003 14:12:41 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QLCfZx021962; Thu, 26 Jun 2003 14:12:41 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306262112.h5QLCfZx021962@xorpc.icir.org> Date: Thu, 26 Jun 2003 14:12:41 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorp_if_mib_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/06/26 14:12:41 Modified files: xorp/mibs/: xorp_if_mib_xrl_target.cc Log message: Modified shutdown xrl so it returns OKAY before killing snmpd _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 14:16:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 14:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLH1wF078451 for ; Thu, 26 Jun 2003 14:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLH0DD042093 for ; Thu, 26 Jun 2003 14:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLH0bb008085; Thu, 26 Jun 2003 14:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLGZbb008071 for ; Thu, 26 Jun 2003 14:16:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLGZDD042089 for ; Thu, 26 Jun 2003 14:16:35 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLGZkN022277 for ; Thu, 26 Jun 2003 14:16:35 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QLGZw3022276; Thu, 26 Jun 2003 14:16:35 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306262116.h5QLGZw3022276@xorpc.icir.org> Date: Thu, 26 Jun 2003 14:16:35 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/06/26 14:16:35 Modified files: ./: configure configure.in Log message: Increased the wait time when checking for snmpd. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 14:38:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 14:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLd1wF080322 for ; Thu, 26 Jun 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLd1DD042262; Thu, 26 Jun 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLd0bb008714; Thu, 26 Jun 2003 14:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QLcsbb008706 for ; Thu, 26 Jun 2003 14:38:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLcsDD042259 for ; Thu, 26 Jun 2003 14:38:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QLcskN022476 for ; Thu, 26 Jun 2003 14:38:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QLcscE022475; Thu, 26 Jun 2003 14:38:54 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306262138.h5QLcscE022475@xorpc.icir.org> Date: Thu, 26 Jun 2003 14:38:54 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.hh xorp/libxorp/ ref_trie.hh test_ref_trie.cc test_trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/06/26 14:38:54 Modified files: xorp/bgp/: next_hop_resolver.hh xorp/libxorp/: ref_trie.hh test_ref_trie.cc test_trie.cc trie.hh Log message: Wrote preorder iterators for Trie and RefTrie, and added tests for them in test_trie and test_ref_trie. The previous iterators have been renamed to {RefTrie,Trie}PostOrderIterator, and are still used by default when a Trie is instanciated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 15:12:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMD1wF083090 for ; Thu, 26 Jun 2003 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMD1DD042572 for ; Thu, 26 Jun 2003 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMD0bb009566; Thu, 26 Jun 2003 15:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMC9bb009525 for ; Thu, 26 Jun 2003 15:12:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMC9DD042567 for ; Thu, 26 Jun 2003 15:12:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMC8kN022875 for ; Thu, 26 Jun 2003 15:12:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QMC8qN022874; Thu, 26 Jun 2003 15:12:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262212.h5QMC8qN022874@xorpc.icir.org> Date: Thu, 26 Jun 2003 15:12:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 15:12:08 Modified files: xorp/pim/: pim_proto_assert.cc Log message: Remove obsolete stuff. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 15:17:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 15:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMI1wF083477 for ; Thu, 26 Jun 2003 15:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMI1DD042619; Thu, 26 Jun 2003 15:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMI1bb009662; Thu, 26 Jun 2003 15:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMHJbb009645 for ; Thu, 26 Jun 2003 15:17:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMHJDD042615 for ; Thu, 26 Jun 2003 15:17:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMHJkN022942 for ; Thu, 26 Jun 2003 15:17:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QMHJDN022941; Thu, 26 Jun 2003 15:17:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262217.h5QMHJDN022941@xorpc.icir.org> Date: Thu, 26 Jun 2003 15:17:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 15:17:19 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc Log message: Implement properly the handling of data packets when received on the wrong interface: * The (*,G) and (S,G) Assert state machine processes the event independently, and eventually generates an Assert message. * The data packet processing rules may generate an Assert independently from the Assert state machine. - Implemented rate-limit of those Assert messages (on average, one assert message/s) Note: currently, the implementation does not optimize the rules to eliminate the duplication of an Assert message which may happen when the first data packet is received on the wrong interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 15:20:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 15:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QML1wF083744 for ; Thu, 26 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QML1DD042653 for ; Thu, 26 Jun 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QML1bb009737; Thu, 26 Jun 2003 15:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMKobb009731 for ; Thu, 26 Jun 2003 15:20:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMKoDD042651 for ; Thu, 26 Jun 2003 15:20:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMKokN023003 for ; Thu, 26 Jun 2003 15:20:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QMKoGf023002; Thu, 26 Jun 2003 15:20:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262220.h5QMKoGf023002@xorpc.icir.org> Date: Thu, 26 Jun 2003 15:20:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/06/26 15:20:50 Modified files: ./: RELEASE_NOTES Log message: Add a release note regarding some PIM Assert related fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 15:21:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 15:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMM1wF083842 for ; Thu, 26 Jun 2003 15:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMM1DD042663 for ; Thu, 26 Jun 2003 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMM1bb009772; Thu, 26 Jun 2003 15:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMLJbb009758 for ; Thu, 26 Jun 2003 15:21:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMLJDD042661 for ; Thu, 26 Jun 2003 15:21:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMLJkN023033 for ; Thu, 26 Jun 2003 15:21:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QMLJtk023032; Thu, 26 Jun 2003 15:21:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262221.h5QMLJtk023032@xorpc.icir.org> Date: Thu, 26 Jun 2003 15:21:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 15:21:19 Modified files: xorp/pim/: TODO Log message: Remove assert-related TODO entries that are already DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 15:52:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 15:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMr2wF086258 for ; Thu, 26 Jun 2003 15:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMr1DD042873 for ; Thu, 26 Jun 2003 15:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMr1bb010257; Thu, 26 Jun 2003 15:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QMq1bb010240 for ; Thu, 26 Jun 2003 15:52:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMq1DD042864 for ; Thu, 26 Jun 2003 15:52:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QMq1kN023736 for ; Thu, 26 Jun 2003 15:52:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QMq12P023735; Thu, 26 Jun 2003 15:52:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262252.h5QMq12P023735@xorpc.icir.org> Date: Thu, 26 Jun 2003 15:52:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 15:52:01 Modified files: xorp/pim/: pim_mre.hh pim_mre_assert.cc pim_mrt_mfc.cc Log message: Implement an optimization when generating Assert messages triggered by the data packets received on the wrong interface: suppress the second Assert message that is a duplicate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 16:18:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 16:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QNJ1wF088297 for ; Thu, 26 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QNJ1DD043097 for ; Thu, 26 Jun 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QNJ1bb010838; Thu, 26 Jun 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5QNIDbb010807 for ; Thu, 26 Jun 2003 16:18:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QNICDD043086 for ; Thu, 26 Jun 2003 16:18:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5QNICkN024379 for ; Thu, 26 Jun 2003 16:18:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5QNICiM024378; Thu, 26 Jun 2003 16:18:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306262318.h5QNICiM024378@xorpc.icir.org> Date: Thu, 26 Jun 2003 16:18:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 16:18:12 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Comments edits: clarify where each Join/Prune message is sent to. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 17:11:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 17:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0C1wF092304 for ; Thu, 26 Jun 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0C1DD043482 for ; Thu, 26 Jun 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R0C1bb011752; Thu, 26 Jun 2003 17:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R0Bsbb011742 for ; Thu, 26 Jun 2003 17:11:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0BsDD043480 for ; Thu, 26 Jun 2003 17:11:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0BskN024764 for ; Thu, 26 Jun 2003 17:11:54 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5R0BsRR024763; Thu, 26 Jun 2003 17:11:54 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306270011.h5R0BsRR024763@xorpc.icir.org> Date: Thu, 26 Jun 2003 17:11:54 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/06/26 17:11:54 Modified files: ./: configure.in configure Log message: Capture process terminated message _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 17:40:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 17:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0f1wF094485 for ; Thu, 26 Jun 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0f1DD043716 for ; Thu, 26 Jun 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R0f0bb012204; Thu, 26 Jun 2003 17:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R0evbb012198 for ; Thu, 26 Jun 2003 17:40:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0evDD043714 for ; Thu, 26 Jun 2003 17:40:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R0evkN025031 for ; Thu, 26 Jun 2003 17:40:57 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5R0evC3025030; Thu, 26 Jun 2003 17:40:57 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200306270040.h5R0evC3025030@xorpc.icir.org> Date: Thu, 26 Jun 2003 17:40:57 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/06/26 17:40:57 Modified files: ./: configure.in configure Log message: &> is bash, as Pavlin wisely noted... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Thu Jun 26 19:47:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Jun 2003 19:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R2m2wF007321 for ; Thu, 26 Jun 2003 19:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R2m1DD044708 for ; Thu, 26 Jun 2003 19:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R2m1bb013914; Thu, 26 Jun 2003 19:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5R2lYbb013907 for ; Thu, 26 Jun 2003 19:47:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R2lYDD044706 for ; Thu, 26 Jun 2003 19:47:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5R2lYkN067316 for ; Thu, 26 Jun 2003 19:47:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5R2lYij067315; Thu, 26 Jun 2003 19:47:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306270247.h5R2lYij067315@xorpc.icir.org> Date: Thu, 26 Jun 2003 19:47:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/26 19:47:34 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Fri Jun 27 15:07:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 15:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM82wF025014 for ; Fri, 27 Jun 2003 15:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM82RS000288 for ; Fri, 27 Jun 2003 15:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RM81ai000803; Fri, 27 Jun 2003 15:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RM7Nai000789 for ; Fri, 27 Jun 2003 15:07:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM7NRS000282 for ; Fri, 27 Jun 2003 15:07:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM7NkN053128 for ; Fri, 27 Jun 2003 15:07:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5RM7Npd053127; Fri, 27 Jun 2003 15:07:23 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306272207.h5RM7Npd053127@xorpc.icir.org> Date: Fri, 27 Jun 2003 15:07:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/27 15:07:23 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in Log message: Temporarily remove test_peering2.sh from the check target, it is consistently causing tinderbox runs to fail. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Fri Jun 27 15:08:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 15:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM91wF025231 for ; Fri, 27 Jun 2003 15:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM91RS000298 for ; Fri, 27 Jun 2003 15:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RM90ai000834; Fri, 27 Jun 2003 15:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RM8tai000828 for ; Fri, 27 Jun 2003 15:08:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM8tRS000296 for ; Fri, 27 Jun 2003 15:08:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RM8skN053173 for ; Fri, 27 Jun 2003 15:08:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5RM8sLr053172; Fri, 27 Jun 2003 15:08:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200306272208.h5RM8sLr053172@xorpc.icir.org> Date: Fri, 27 Jun 2003 15:08:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peer.cc test_peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/06/27 15:08:54 Modified files: xorp/bgp/harness/: test_peer.cc test_peer.hh Log message: Add a trace option ("-t") to the test_peers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Fri Jun 27 15:26:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 15:27:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMR2wF031192 for ; Fri, 27 Jun 2003 15:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMR2RS000513; Fri, 27 Jun 2003 15:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RMR1ai001122; Fri, 27 Jun 2003 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RMQGai001107 for ; Fri, 27 Jun 2003 15:26:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMQFRS000502 for ; Fri, 27 Jun 2003 15:26:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMQFkN053370 for ; Fri, 27 Jun 2003 15:26:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5RMQFqE053369; Fri, 27 Jun 2003 15:26:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306272226.h5RMQFqE053369@xorpc.icir.org> Date: Fri, 27 Jun 2003 15:26:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/27 15:26:15 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: Remove a replicated call to entry_try_remove(), and the obsoleted comment with it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Fri Jun 27 15:28:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 15:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMT1wF031552 for ; Fri, 27 Jun 2003 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMT1RS000533 for ; Fri, 27 Jun 2003 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RMT1ai001152; Fri, 27 Jun 2003 15:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5RMSLai001143 for ; Fri, 27 Jun 2003 15:28:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMSLRS000529 for ; Fri, 27 Jun 2003 15:28:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5RMSLkN053430 for ; Fri, 27 Jun 2003 15:28:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5RMSLau053429; Fri, 27 Jun 2003 15:28:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306272228.h5RMSLau053429@xorpc.icir.org> Date: Fri, 27 Jun 2003 15:28:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO pim_mre_assert.cc pim_proto_assert.cc pim_proto_assert.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/27 15:28:21 Modified files: xorp/pim/: TODO pim_mre_assert.cc pim_proto_assert.cc pim_proto_assert.hh Log message: * Replace AssertMetric::is_better(AssertMetric *a); with AssertMetric::operator>(const AssertMetric& other) const; * Const-ify some of the methods to class AssertMetric _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:16 2005 Subject: No subject Fri Jun 27 17:27:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 17:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S0S1wF044891 for ; Fri, 27 Jun 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S0S1RS001564 for ; Fri, 27 Jun 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S0S1ai002990; Fri, 27 Jun 2003 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S0RXai002980 for ; Fri, 27 Jun 2003 17:27:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S0RXRS001562 for ; Fri, 27 Jun 2003 17:27:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S0RXkN054310 for ; Fri, 27 Jun 2003 17:27:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5S0RXUf054309; Fri, 27 Jun 2003 17:27:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306280027.h5S0RXUf054309@xorpc.icir.org> Date: Fri, 27 Jun 2003 17:27:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/27 17:27:33 Modified files: xorp/pim/: pim_mre_assert.cc Log message: * Remove duplicated calls to PimMre::set_i_am_assert_winner_state() and PimMre::set_assert_noinfo_state() * Fix few return values * Remove obsolete TODO comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Fri Jun 27 19:37:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 19:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2c2wF056164 for ; Fri, 27 Jun 2003 19:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2c1RS002505 for ; Fri, 27 Jun 2003 19:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S2c1ai004526; Fri, 27 Jun 2003 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S2bdai004511 for ; Fri, 27 Jun 2003 19:37:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2bdRS002499 for ; Fri, 27 Jun 2003 19:37:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2bdkN095927 for ; Fri, 27 Jun 2003 19:37:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5S2bdrY095926; Fri, 27 Jun 2003 19:37:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306280237.h5S2bdrY095926@xorpc.icir.org> Date: Fri, 27 Jun 2003 19:37:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/27 19:37:39 Modified files: xorp/pim/: pim_mre_assert.cc Log message: Add few comments that clarify the computation of some of the assert-related macros. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Fri Jun 27 19:38:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Jun 2003 19:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2d1wF056270 for ; Fri, 27 Jun 2003 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2d1RS002520 for ; Fri, 27 Jun 2003 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S2d1ai004548; Fri, 27 Jun 2003 19:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h5S2c0ai004522 for ; Fri, 27 Jun 2003 19:38:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2c0RS002503 for ; Fri, 27 Jun 2003 19:38:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h5S2c0kN095969 for ; Fri, 27 Jun 2003 19:38:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h5S2c0xG095968; Fri, 27 Jun 2003 19:38:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200306280238.h5S2c0xG095968@xorpc.icir.org> Date: Fri, 27 Jun 2003 19:38:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/27 19:38:00 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Mon Jun 30 17:59:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Jun 2003 18:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61101wF099026 for ; Mon, 30 Jun 2003 18:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61101RS043975 for ; Mon, 30 Jun 2003 18:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61100ai029249; Mon, 30 Jun 2003 18:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h610xhai029242 for ; Mon, 30 Jun 2003 17:59:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h610xhRS043967 for ; Mon, 30 Jun 2003 17:59:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h610xhkN037444 for ; Mon, 30 Jun 2003 17:59:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h610xheM037443; Mon, 30 Jun 2003 17:59:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307010059.h610xheM037443@xorpc.icir.org> Date: Mon, 30 Jun 2003 17:59:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/06/30 17:59:43 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Change the "RX" log messages to include the vif name a message was received on. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Mon Jun 30 18:00:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Jun 2003 18:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61111wF099134 for ; Mon, 30 Jun 2003 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61111RS044004 for ; Mon, 30 Jun 2003 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61110ai029272; Mon, 30 Jun 2003 18:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6110iai029264 for ; Mon, 30 Jun 2003 18:00:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6110iRS044002 for ; Mon, 30 Jun 2003 18:00:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6110ikN037574 for ; Mon, 30 Jun 2003 18:00:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6110i2m037573; Mon, 30 Jun 2003 18:00:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307010100.h6110i2m037573@xorpc.icir.org> Date: Mon, 30 Jun 2003 18:00:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/30 18:00:44 Modified files: xorp/pim/: pim_node.cc Log message: * Add vif_index info to a debug_msg() * Change the format of a XLOG_WARNING message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Mon Jun 30 18:01:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Jun 2003 18:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61121wF099213 for ; Mon, 30 Jun 2003 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61121RS044017 for ; Mon, 30 Jun 2003 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61121ai029312; Mon, 30 Jun 2003 18:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6111gai029305 for ; Mon, 30 Jun 2003 18:01:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6111fRS044015 for ; Mon, 30 Jun 2003 18:01:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6111fkN037631 for ; Mon, 30 Jun 2003 18:01:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6111f1r037630; Mon, 30 Jun 2003 18:01:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307010101.h6111f1r037630@xorpc.icir.org> Date: Mon, 30 Jun 2003 18:01:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/30 18:01:41 Modified files: xorp/pim/: pim_vif.cc Log message: Change the "RX" log messages to include the vif name a message was received on. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Mon Jun 30 18:02:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Jun 2003 18:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61131wF099304 for ; Mon, 30 Jun 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61131RS044028 for ; Mon, 30 Jun 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61131ai029346; Mon, 30 Jun 2003 18:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6112bai029337 for ; Mon, 30 Jun 2003 18:02:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6112bRS044025 for ; Mon, 30 Jun 2003 18:02:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6112bkN038601 for ; Mon, 30 Jun 2003 18:02:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6112bnJ038600; Mon, 30 Jun 2003 18:02:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307010102.h6112bnJ038600@xorpc.icir.org> Date: Mon, 30 Jun 2003 18:02:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/06/30 18:02:37 Modified files: xorp/pim/: TODO Log message: Remove TODO entries regarding log messages formats that are now DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 15:20:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 15:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61ML1wF010289 for ; Tue, 1 Jul 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61ML1RS057931 for ; Tue, 1 Jul 2003 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61ML1ai020026; Tue, 1 Jul 2003 15:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61MKrai020018 for ; Tue, 1 Jul 2003 15:20:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61MKqRS057927 for ; Tue, 1 Jul 2003 15:20:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h61MKqkN030915 for ; Tue, 1 Jul 2003 15:20:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h61MKqcf030914; Tue, 1 Jul 2003 15:20:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307012220.h61MKqcf030914@xorpc.icir.org> Date: Tue, 1 Jul 2003 15:20:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/07/01 15:20:52 Modified files: xorp/devnotes/: work_plan.txt Log message: Update the work plan based on the today's discussion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 16:58:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h61Nx1wF018887 for ; Tue, 1 Jul 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61Nx0RS058686 for ; Tue, 1 Jul 2003 16:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61Nx0ai021742; Tue, 1 Jul 2003 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h61NwNai021731 for ; Tue, 1 Jul 2003 16:58:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h61NwNRS058683 for ; Tue, 1 Jul 2003 16:58:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h61NwNkN031506 for ; Tue, 1 Jul 2003 16:58:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h61NwNkk031505; Tue, 1 Jul 2003 16:58:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307012358.h61NwNkk031505@xorpc.icir.org> Date: Tue, 1 Jul 2003 16:58:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/01 16:58:23 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 18:50:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 18:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h621p2wF039322 for ; Tue, 1 Jul 2003 18:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h621p2RS059671 for ; Tue, 1 Jul 2003 18:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h621p1ai023173; Tue, 1 Jul 2003 18:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h621oJai023165 for ; Tue, 1 Jul 2003 18:50:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h621oJRS059664 for ; Tue, 1 Jul 2003 18:50:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h621oJkN049649 for ; Tue, 1 Jul 2003 18:50:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h621oJVu049648; Tue, 1 Jul 2003 18:50:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307020150.h621oJVu049648@xorpc.icir.org> Date: Tue, 1 Jul 2003 18:50:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/01 18:50:19 Modified files: xorp/bgp/: peer.cc Log message: Generate an XLOG_INFO message if an incoming connection is rejected. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 19:08:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 19:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h62291wF042924 for ; Tue, 1 Jul 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h62291RS059857 for ; Tue, 1 Jul 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h62291ai023426; Tue, 1 Jul 2003 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6228Hai023402 for ; Tue, 1 Jul 2003 19:08:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6228HRS059851 for ; Tue, 1 Jul 2003 19:08:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6228HkN053766 for ; Tue, 1 Jul 2003 19:08:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6228H21053765; Tue, 1 Jul 2003 19:08:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307020208.h6228H21053765@xorpc.icir.org> Date: Tue, 1 Jul 2003 19:08:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh peer.cc peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/07/01 19:08:17 Modified files: xorp/bgp/harness/: command.cc command.hh peer.cc peer.hh Log message: Go back to using an single XrlStdRouter. When a peer is removed mark it as down, but don't remove it immediately as callbacks may be returning to this peer. Semantic change, a reset will cause all tcp connections from test_peers to the test bgp process to be dropped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 19:19:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 19:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h622K1wF047057 for ; Tue, 1 Jul 2003 19:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h622K1RS059948; Tue, 1 Jul 2003 19:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h622K1ai023589; Tue, 1 Jul 2003 19:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h622Jgai023578 for ; Tue, 1 Jul 2003 19:19:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h622JfRS059942 for ; Tue, 1 Jul 2003 19:19:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h622JfkN064572 for ; Tue, 1 Jul 2003 19:19:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h622JffE064571; Tue, 1 Jul 2003 19:19:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307020219.h622JffE064571@xorpc.icir.org> Date: Tue, 1 Jul 2003 19:19:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/07/01 19:19:41 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Increase the delay after a reset from 5 to 10 seconds. A test_peer can close its tcp connection to the BGP process, but the BGP process will only see the close after it has read all the data on the connection. Without the delay the sequence, open a connection, inject traffic, drop connection, open another connection, often fails as the BGP process rejects the second open. Need to check the spec as perhaps the BGP process should accept the second connection regardless of already having a connection. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Tue Jul 1 21:34:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jul 2003 21:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h624Z1wF083371 for ; Tue, 1 Jul 2003 21:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h624Z1RS061012 for ; Tue, 1 Jul 2003 21:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h624Z1ai025134; Tue, 1 Jul 2003 21:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h624Ykai025125 for ; Tue, 1 Jul 2003 21:34:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h624YkRS061005 for ; Tue, 1 Jul 2003 21:34:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h624YjkN078950 for ; Tue, 1 Jul 2003 21:34:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h624YjbZ078949; Tue, 1 Jul 2003 21:34:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307020434.h624YjbZ078949@xorpc.icir.org> Date: Tue, 1 Jul 2003 21:34:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/07/01 21:34:45 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: 1) Move test2 to the list of not fixed tests. 2) test5 a new test that demonstrates that our bgp process will send withdraws to a new peering, if was sending withdraws to the old peering. This is probably the reason that the peering tests have been failing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 13:20:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 13:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KL1wF011561 for ; Wed, 2 Jul 2003 13:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KL1RS071319 for ; Wed, 2 Jul 2003 13:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h62KL1ai010565; Wed, 2 Jul 2003 13:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h62KKaai010554 for ; Wed, 2 Jul 2003 13:20:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KKaRS071317 for ; Wed, 2 Jul 2003 13:20:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KKakN010755 for ; Wed, 2 Jul 2003 13:20:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h62KKax1010754; Wed, 2 Jul 2003 13:20:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307022020.h62KKax1010754@xorpc.icir.org> Date: Wed, 2 Jul 2003 13:20:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/07/02 13:20:36 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in Log message: Re-enable test_peering2.sh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 13:39:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 13:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h62Ke1wF014942 for ; Wed, 2 Jul 2003 13:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h62Ke1RS071491 for ; Wed, 2 Jul 2003 13:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h62Ke0ai010996; Wed, 2 Jul 2003 13:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h62KdTai010988 for ; Wed, 2 Jul 2003 13:39:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KdSRS071486 for ; Wed, 2 Jul 2003 13:39:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h62KdSkN019669 for ; Wed, 2 Jul 2003 13:39:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h62KdSvl019668; Wed, 2 Jul 2003 13:39:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307022039.h62KdSvl019668@xorpc.icir.org> Date: Wed, 2 Jul 2003 13:39:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/02 13:39:28 Modified files: xorp/libxorp/: test_main.hh Log message: Fix typo in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 17:10:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 17:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h630B1wF041781 for ; Wed, 2 Jul 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630B1RS074703 for ; Wed, 2 Jul 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630B0ai015065; Wed, 2 Jul 2003 17:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630ATai015059 for ; Wed, 2 Jul 2003 17:10:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630ASRS074699 for ; Wed, 2 Jul 2003 17:10:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h630ASkN025737 for ; Wed, 2 Jul 2003 17:10:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h630ASjp025736; Wed, 2 Jul 2003 17:10:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030010.h630ASjp025736@xorpc.icir.org> Date: Wed, 2 Jul 2003 17:10:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_next_hop_resolver.cc xorp/libxorp/ test_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/02 17:10:28 Modified files: xorp/bgp/: test_next_hop_resolver.cc xorp/libxorp/: test_main.hh Log message: Move the DOUT macro from test_next_hop_resolver.cc to test_main.hh and only generate output if verbose is enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 17:19:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h630K1wF043092 for ; Wed, 2 Jul 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630K1RS074786 for ; Wed, 2 Jul 2003 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630K1ai015173; Wed, 2 Jul 2003 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630Jkai015163 for ; Wed, 2 Jul 2003 17:19:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630JkRS074781 for ; Wed, 2 Jul 2003 17:19:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h630JkkN025799 for ; Wed, 2 Jul 2003 17:19:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h630JkpB025798; Wed, 2 Jul 2003 17:19:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030019.h630JkpB025798@xorpc.icir.org> Date: Wed, 2 Jul 2003 17:19:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/02 17:19:46 Modified files: xorp/libxorp/: test_main.hh Log message: Guard defines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 17:24:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 17:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h630P1wF043792 for ; Wed, 2 Jul 2003 17:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630P1RS074836 for ; Wed, 2 Jul 2003 17:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630P1ai015237; Wed, 2 Jul 2003 17:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630Oiai015225 for ; Wed, 2 Jul 2003 17:24:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630OiRS074831 for ; Wed, 2 Jul 2003 17:24:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h630OikN025859 for ; Wed, 2 Jul 2003 17:24:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h630OiGi025858; Wed, 2 Jul 2003 17:24:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030024.h630OiGi025858@xorpc.icir.org> Date: Wed, 2 Jul 2003 17:24:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/02 17:24:44 Added files: xorp/bgp/: test_next_hop_resolver.hh Log message: Declare next hop resolver test functions in header file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 17:25:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 17:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h630Q1wF043958 for ; Wed, 2 Jul 2003 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630Q0RS074865 for ; Wed, 2 Jul 2003 17:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630Q0ai015259; Wed, 2 Jul 2003 17:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h630PDai015251 for ; Wed, 2 Jul 2003 17:25:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h630PDRS074859 for ; Wed, 2 Jul 2003 17:25:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h630PDkN025901 for ; Wed, 2 Jul 2003 17:25:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h630PDYc025900; Wed, 2 Jul 2003 17:25:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030025.h630PDYc025900@xorpc.icir.org> Date: Wed, 2 Jul 2003 17:25:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/02 17:25:13 Modified files: xorp/bgp/: test_next_hop_resolver.cc Log message: Include test_next_hop_resolver.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 19:03:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 19:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63242wF063430 for ; Wed, 2 Jul 2003 19:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63242RS075602 for ; Wed, 2 Jul 2003 19:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63241ai016440; Wed, 2 Jul 2003 19:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6323Iai016426 for ; Wed, 2 Jul 2003 19:03:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6323IRS075593 for ; Wed, 2 Jul 2003 19:03:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6323IkN046930 for ; Wed, 2 Jul 2003 19:03:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6323Ij6046929; Wed, 2 Jul 2003 19:03:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030203.h6323Ij6046929@xorpc.icir.org> Date: Wed, 2 Jul 2003 19:03:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_next_hop_resolver.cc test_next_hop_resolver.hh test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc xorp/libxorp/ test_main.hh test_test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/02 19:03:18 Modified files: xorp/bgp/: test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_next_hop_resolver.cc test_next_hop_resolver.hh test_nhlookup.cc test_ribin.cc test_ribout.cc xorp/libxorp/: test_main.hh test_test_main.cc Log message: The bgp isolation tests are now called in a regular manor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:17 2005 Subject: No subject Wed Jul 2 19:48:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 19:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h632n1wF075473 for ; Wed, 2 Jul 2003 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h632n1RS075939 for ; Wed, 2 Jul 2003 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h632n1ai016992; Wed, 2 Jul 2003 19:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h632m4ai016980 for ; Wed, 2 Jul 2003 19:48:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h632m4RS075937 for ; Wed, 2 Jul 2003 19:48:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h632m3kN068413 for ; Wed, 2 Jul 2003 19:48:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h632m3ds068412; Wed, 2 Jul 2003 19:48:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307030248.h632m3ds068412@xorpc.icir.org> Date: Wed, 2 Jul 2003 19:48:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_main.hh test_test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/02 19:48:03 Modified files: xorp/libxorp/: test_main.hh test_test_main.cc Log message: Add a debugging macro that uses the verbose level. Modify the test program to use the debugging macros. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Wed Jul 2 23:47:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 23:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h636m1wF054425 for ; Wed, 2 Jul 2003 23:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636m1RS077914 for ; Wed, 2 Jul 2003 23:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636m1ai020428; Wed, 2 Jul 2003 23:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636lAai020384 for ; Wed, 2 Jul 2003 23:47:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636lARS077912 for ; Wed, 2 Jul 2003 23:47:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h636lAkN074770 for ; Wed, 2 Jul 2003 23:47:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h636lAU6074769; Wed, 2 Jul 2003 23:47:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030647.h636lAU6074769@xorpc.icir.org> Date: Wed, 2 Jul 2003 23:47:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.hh vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/07/02 23:47:10 Modified files: xorp/libxorp/: vif.hh vif.cc Log message: * Modify VifAddr::is_same_subnet(const IPvXNet& ipvxnet) to return true only if ipvxnet is same as VifAddr::_subnet_addr In other words, it no longer returns true in the case when ipvxnet and _subnet_addr just overlap. * Modify Vif::is_same_subnet() to return false for p2p interface. The reason is because a p2p interface may not have a subnet. * Add new method Vif::is_same_p2p(const IPvX& ipvx_addr) that returns true if ipvx_addr is same as my address or the address of the pair. It returns false if the interface is not p2p. * Remove method Vif::is_directly_connected() The reason is because it is not sufficient to compare a given address against the address of the vif or the subnet address. E.g., a given address may belong to the same LAN, but if the vif is down, the address may be reachable via an indirect path. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Wed Jul 2 23:48:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 23:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h636n1wF054748 for ; Wed, 2 Jul 2003 23:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636n1RS077925 for ; Wed, 2 Jul 2003 23:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636n0ai020460; Wed, 2 Jul 2003 23:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636mtai020452 for ; Wed, 2 Jul 2003 23:48:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636mtRS077922 for ; Wed, 2 Jul 2003 23:48:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h636mtkN074800 for ; Wed, 2 Jul 2003 23:48:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h636mtUL074799; Wed, 2 Jul 2003 23:48:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030648.h636mtUL074799@xorpc.icir.org> Date: Wed, 2 Jul 2003 23:48:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/07/02 23:48:55 Modified files: xorp/libxorp/: test_vif.cc Log message: * Modify the test for Vif::is_same_subnet() to consider the case when the vif is p2p * Add a test for the new method Vif::is_same_p2p() * Remove the test for non-existing method Vif::is_directly_connected() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Wed Jul 2 23:54:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jul 2003 23:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h636t2wF056747 for ; Wed, 2 Jul 2003 23:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636t1RS077977 for ; Wed, 2 Jul 2003 23:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636t1ai020605; Wed, 2 Jul 2003 23:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636sMai020590 for ; Wed, 2 Jul 2003 23:54:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636sMRS077970 for ; Wed, 2 Jul 2003 23:54:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h636sMkN074871 for ; Wed, 2 Jul 2003 23:54:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h636sMQN074870; Wed, 2 Jul 2003 23:54:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030654.h636sMQN074870@xorpc.icir.org> Date: Wed, 2 Jul 2003 23:54:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/07/02 23:54:22 Modified files: xorp/libproto/: proto_node.hh Log message: * Add new method ProtoNode::vif_find_same_subnet_or_p2p(const IPvX& ipaddr_test) that returns the vif that belongs to the same subnet or p2p link as ipaddr_test * Add new method ProtoNode::vif_find_same_subnet_or_p2p(const IPvX& ipaddr_test) that returns the vif that belongs to the same subnet as ipaddr_test * Remove method ProtoNode::is_directly_connected() because computing whether an address is directly connected may require some more knowledge than ProtoNode itself contains. E.g., it may require knowledge whether the underlying interface is UP and/or whether the route toward the given address really uses that vif. * Add new method ProtoNode::const_proto_vifs() that returns a const-ified reference to _proto_vifs. * Modify some of the kdoc comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Wed Jul 2 23:59:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63702wF058187 for ; Thu, 3 Jul 2003 00:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63701RS078046 for ; Thu, 3 Jul 2003 00:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63701ai020690; Thu, 3 Jul 2003 00:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h636xcai020681 for ; Wed, 2 Jul 2003 23:59:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h636xcRS078036 for ; Wed, 2 Jul 2003 23:59:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h636xckN074975 for ; Wed, 2 Jul 2003 23:59:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h636xcjR074974; Wed, 2 Jul 2003 23:59:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030659.h636xcjR074974@xorpc.icir.org> Date: Wed, 2 Jul 2003 23:59:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ route.hh rt_tab_extint.cc rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/02 23:59:38 Modified files: xorp/rib/: route.hh rt_tab_extint.cc rib.cc Log message: * Remove method Route::directly_connected() It uses method Vif::is_same_subnet() to decide whether a destination is directly connected to a vif. However, just comparing the subnet address may not be sufficient (e.g., we may require information whether the underlying physical interface is UP, etc). Further, Vif::is_same_subnet() doesn't consider p2p links. * Replace all cases (total of two cases) when Route::directly_connected() is used with calls to Vif::is_same_subnet() and Vif::is_same_p2p() which take care of the case of p2p interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:01:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63721wF058760 for ; Thu, 3 Jul 2003 00:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63721RS078092 for ; Thu, 3 Jul 2003 00:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63721ai020734; Thu, 3 Jul 2003 00:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6371Dai020713 for ; Thu, 3 Jul 2003 00:01:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6371DRS078086 for ; Thu, 3 Jul 2003 00:01:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6371CkN075111 for ; Thu, 3 Jul 2003 00:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6371CO6075110; Thu, 3 Jul 2003 00:01:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030701.h6371CO6075110@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:01:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:01:12 Modified files: xorp/rib/: TODO Log message: * Add a TODO entry that we may need to consider whether a vif is DOWN to compute whether a route is/is not toward a directly-connected address. * Remove the date when this TODO list was started _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:04:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63751wF059755 for ; Thu, 3 Jul 2003 00:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63751RS078133 for ; Thu, 3 Jul 2003 00:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63751ai020807; Thu, 3 Jul 2003 00:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6374Jai020795 for ; Thu, 3 Jul 2003 00:04:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6374JRS078124 for ; Thu, 3 Jul 2003 00:04:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6374JkN082494 for ; Thu, 3 Jul 2003 00:04:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6374JHW082493; Thu, 3 Jul 2003 00:04:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030704.h6374JHW082493@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:04:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_unix_comm.cc mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_rtread_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:04:19 Modified files: xorp/mfea/: mfea_unix_comm.cc mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_rtread_sysctl.cc Log message: * Replace all calls to Vif::vif_find_direct() with calls to Vif::vif_find_same_subnet_or_p2p() * Consider whether the underlying interface is UP when it comes to computing whether an address is directly connected. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:05:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63761wF060074 for ; Thu, 3 Jul 2003 00:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63760RS078162 for ; Thu, 3 Jul 2003 00:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63760ai020833; Thu, 3 Jul 2003 00:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6375hai020826 for ; Thu, 3 Jul 2003 00:05:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6375hRS078158 for ; Thu, 3 Jul 2003 00:05:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6375hkN082889 for ; Thu, 3 Jul 2003 00:05:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6375h1v082888; Thu, 3 Jul 2003 00:05:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030705.h6375h1v082888@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:05:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:05:43 Modified files: xorp/fea/: mfea_node.cc mfea_proto_comm.cc Log message: * Replace all calls to Vif::vif_find_direct() with calls to Vif::vif_find_same_subnet_or_p2p() or Vif::vif_find_same_subnet() * Consider whether the underlying interface is UP when it comes to computing whether an address is directly connected. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:09:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637A1wF061432 for ; Thu, 3 Jul 2003 00:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637A1RS078204 for ; Thu, 3 Jul 2003 00:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637A1ai021065; Thu, 3 Jul 2003 00:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6379Bai021051 for ; Thu, 3 Jul 2003 00:09:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6379BRS078199 for ; Thu, 3 Jul 2003 00:09:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6379BkN083432 for ; Thu, 3 Jul 2003 00:09:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6379Amb083431; Thu, 3 Jul 2003 00:09:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030709.h6379Amb083431@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:09:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:09:10 Modified files: xorp/pim/: pim_mre.cc Log message: * Remove commented-out code that doesn't apply for the specific PimMre entries. * Reset _asserts_rate_limit when appropriate, and remove the corresponding TODO marks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:11:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637C1wF062153 for ; Thu, 3 Jul 2003 00:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637C1RS078232 for ; Thu, 3 Jul 2003 00:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637C1ai021103; Thu, 3 Jul 2003 00:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637Brai021095 for ; Thu, 3 Jul 2003 00:11:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637BrRS078230 for ; Thu, 3 Jul 2003 00:11:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637BrkN083848 for ; Thu, 3 Jul 2003 00:11:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637BrQ7083847; Thu, 3 Jul 2003 00:11:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030711.h637BrQ7083847@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:11:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:11:53 Modified files: xorp/pim/: pim_mre.hh Log message: * Clarify a comment that PimMre::compute_mrib_next_hop_s(), PimMre::is_directly_connected_s() and PimMre::set_directly_connected_s(bool v) that they apply only for (S,G) entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:13:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637E1wF062692 for ; Thu, 3 Jul 2003 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637E1RS078245 for ; Thu, 3 Jul 2003 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637E0ai021134; Thu, 3 Jul 2003 00:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637Dhai021128 for ; Thu, 3 Jul 2003 00:13:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637DgRS078243 for ; Thu, 3 Jul 2003 00:13:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637DgkN084203 for ; Thu, 3 Jul 2003 00:13:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637DgXP084202; Thu, 3 Jul 2003 00:13:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030713.h637DgXP084202@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:13:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:13:42 Modified files: xorp/pim/: pim_mre_rpf.cc Log message: * Replace the old Vif::is_directly_connected() with PimNode::is_directly_connected() * Comments tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:15:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637G2wF063086 for ; Thu, 3 Jul 2003 00:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637G1RS078285 for ; Thu, 3 Jul 2003 00:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637G1ai021167; Thu, 3 Jul 2003 00:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637FKai021159 for ; Thu, 3 Jul 2003 00:15:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637FKRS078280 for ; Thu, 3 Jul 2003 00:15:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637FKkN084503 for ; Thu, 3 Jul 2003 00:15:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637FKGa084502; Thu, 3 Jul 2003 00:15:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030715.h637FKGa084502@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:15:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:15:20 Modified files: xorp/pim/: pim_mre_register.cc Log message: Replace using ProtoNode::vif_find_direct() with using PimNode::vif_find_direct(), because ProtoNode doesn't contain vif_find_direct() anymore., _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:17:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637I1wF063652 for ; Thu, 3 Jul 2003 00:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637I1RS078310 for ; Thu, 3 Jul 2003 00:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637I1ai021195; Thu, 3 Jul 2003 00:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637HIai021188 for ; Thu, 3 Jul 2003 00:17:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637HIRS078304 for ; Thu, 3 Jul 2003 00:17:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637HIkN084776 for ; Thu, 3 Jul 2003 00:17:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637HIVq084775; Thu, 3 Jul 2003 00:17:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030717.h637HIVq084775@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:17:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:17:18 Modified files: xorp/pim/: pim_node.cc pim_node.hh Log message: Add new methods to PimNode: bool is_directly_connected(const IPvX& ipaddr_test) and bool is_directly_connected(const PimVif& pim_vif, const IPvX& ipaddr_test) const; _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:19:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637K1wF064338 for ; Thu, 3 Jul 2003 00:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637K1RS078334 for ; Thu, 3 Jul 2003 00:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637K0ai021230; Thu, 3 Jul 2003 00:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637Jkai021223 for ; Thu, 3 Jul 2003 00:19:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637JjRS078327 for ; Thu, 3 Jul 2003 00:19:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637JjkN085080 for ; Thu, 3 Jul 2003 00:19:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637Jj3l085079; Thu, 3 Jul 2003 00:19:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030719.h637Jj3l085079@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:19:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:19:45 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Replace using of Vif::vif_find_direct() with ProtoNode::vif_find_same_subnet_or_p2p() and test whether the vif is UP to consider it useful to send a packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 0:20:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 00:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h637L1wF064617 for ; Thu, 3 Jul 2003 00:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637L1RS078364 for ; Thu, 3 Jul 2003 00:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637L1ai021253; Thu, 3 Jul 2003 00:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h637Kaai021244 for ; Thu, 3 Jul 2003 00:20:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h637KaRS078362 for ; Thu, 3 Jul 2003 00:20:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h637KakN085227 for ; Thu, 3 Jul 2003 00:20:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h637Karx085226; Thu, 3 Jul 2003 00:20:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307030720.h637Karx085226@xorpc.icir.org> Date: Thu, 3 Jul 2003 0:20:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/03 00:20:36 Modified files: xorp/pim/: pim_vif.cc Log message: Replace usage of Vif::is_directly_connected() with ProtoNode::is_directly_connected() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 9:20:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 09:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63GL2wF003698 for ; Thu, 3 Jul 2003 09:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63GL1RS084848 for ; Thu, 3 Jul 2003 09:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63GL1ai029522; Thu, 3 Jul 2003 09:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63GKHai029506 for ; Thu, 3 Jul 2003 09:20:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63GKHRS084840 for ; Thu, 3 Jul 2003 09:20:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h63GKHkN053553 for ; Thu, 3 Jul 2003 09:20:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h63GKHx1053552; Thu, 3 Jul 2003 09:20:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307031620.h63GKHx1053552@xorpc.icir.org> Date: Thu, 3 Jul 2003 9:20:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/07/03 09:20:17 Modified files: xorp/libxorp/: vif.cc Log message: Temporary reverse back to the old code in VifAddr::is_same_subnet() which checks whether the subnet addresses overlap instead of check for exact equation. This reversing is needed because two of the tests in rib fail, probably because they use different assumption when two subnet addresses belong to the same subnet. The reversing is temporary until the problem is investigated further. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 16:52:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 16:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h63Nr1wF086074 for ; Thu, 3 Jul 2003 16:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63Nr1RS088774 for ; Thu, 3 Jul 2003 16:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63Nr0ai007508; Thu, 3 Jul 2003 16:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h63NqOai007502 for ; Thu, 3 Jul 2003 16:52:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h63NqORS088768 for ; Thu, 3 Jul 2003 16:52:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h63NqOkN002749 for ; Thu, 3 Jul 2003 16:52:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h63NqO3o002748; Thu, 3 Jul 2003 16:52:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307032352.h63NqO3o002748@xorpc.icir.org> Date: Thu, 3 Jul 2003 16:52:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc peer.hh test_peering2.sh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/07/03 16:52:24 Modified files: xorp/bgp/harness/: peer.cc peer.hh test_peering2.sh xorp/docs/test_harness/: test_harness.tex Log message: The test harness allows a saved data file in mrtd format to be sent to a BGP process under test. Add an optional count to allow less than the whole file to be sent. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:18 2005 Subject: No subject Thu Jul 3 17:10:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jul 2003 17:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h640B1wF096496 for ; Thu, 3 Jul 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h640B1RS088950 for ; Thu, 3 Jul 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h640B0ai007840; Thu, 3 Jul 2003 17:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h640Atai007834 for ; Thu, 3 Jul 2003 17:10:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h640AtRS088946 for ; Thu, 3 Jul 2003 17:10:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h640AskN002963 for ; Thu, 3 Jul 2003 17:10:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h640AsvI002962; Thu, 3 Jul 2003 17:10:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307040010.h640AsvI002962@xorpc.icir.org> Date: Thu, 3 Jul 2003 17:10:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/07/03 17:10:54 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Rationalise function name: bgp_peer_updates_received -> bgp_peer_unchanged. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Fri Jul 4 12:57:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jul 2003 12:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h64Jw2wF045382 for ; Fri, 4 Jul 2003 12:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h64Jw1RS099450 for ; Fri, 4 Jul 2003 12:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h64Jw1ai023565; Fri, 4 Jul 2003 12:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h64JvPai023552 for ; Fri, 4 Jul 2003 12:57:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h64JvORS099446 for ; Fri, 4 Jul 2003 12:57:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h64JvOkN070919 for ; Fri, 4 Jul 2003 12:57:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h64JvOQa070918; Fri, 4 Jul 2003 12:57:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307041957.h64JvOQa070918@xorpc.icir.org> Date: Fri, 4 Jul 2003 12:57:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/07/04 12:57:24 Modified files: xorp/libxorp/: vif.cc Log message: Fix again VifAddr:is_same_subnet(const IPvXNet& ipvxnet) such that it returns true only if ipvxnet is same as _subnet_addr _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Fri Jul 4 12:59:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jul 2003 13:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h64K01wF045639 for ; Fri, 4 Jul 2003 13:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h64K01RS099479 for ; Fri, 4 Jul 2003 13:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h64K01ai023602; Fri, 4 Jul 2003 13:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h64Jxpai023593 for ; Fri, 4 Jul 2003 12:59:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h64JxpRS099466 for ; Fri, 4 Jul 2003 12:59:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h64JxpkN071752 for ; Fri, 4 Jul 2003 12:59:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h64JxpS7071751; Fri, 4 Jul 2003 12:59:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307041959.h64JxpS7071751@xorpc.icir.org> Date: Fri, 4 Jul 2003 12:59:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ commands parser.hh parser_direct_cmds.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/04 12:59:51 Modified files: xorp/rib/: commands parser.hh parser_direct_cmds.hh Log message: Add one more argument to the "vif Ethernet" command: the subnet masklen, and use it to assign the subnet address per vif. Now the tests pass with the new version of VifAddr::is_same_subnet() that returns true only if the subnet addresses are exactly same. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Sat Jul 5 8:06:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jul 2003 08:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h65FK1wF089636 for ; Sat, 5 Jul 2003 08:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65FK1RS011689 for ; Sat, 5 Jul 2003 08:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65FK0ai007307; Sat, 5 Jul 2003 08:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65F6hai007167 for ; Sat, 5 Jul 2003 08:06:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65F6hRS010265 for ; Sat, 5 Jul 2003 08:06:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h65F6hkN048175 for ; Sat, 5 Jul 2003 08:06:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h65F6h0X048174; Sat, 5 Jul 2003 08:06:43 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200307051506.h65F6h0X048174@xorpc.icir.org> Date: Sat, 5 Jul 2003 8:06:43 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc xorpsh_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 03/07/05 08:06:43 Modified files: xorp/rtrmgr/: xorpsh_main.cc xorpsh_main.hh Log message: Bug fix that allows a router to be started with no configuration information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Sat Jul 5 11:56:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jul 2003 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Iv1wF015466 for ; Sat, 5 Jul 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Iv1RS013033 for ; Sat, 5 Jul 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65Iv0ai009356; Sat, 5 Jul 2003 11:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65IuKai009341 for ; Sat, 5 Jul 2003 11:56:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65IuJRS013031 for ; Sat, 5 Jul 2003 11:56:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h65IuJkN051729 for ; Sat, 5 Jul 2003 11:56:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h65IuJZI051728; Sat, 5 Jul 2003 11:56:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307051856.h65IuJZI051728@xorpc.icir.org> Date: Sat, 5 Jul 2003 11:56:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/05 11:56:19 Modified files: xorp/pim/: pim_config.cc Log message: Bugfix: Set the "pim_register" flag when updating the vif flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Sat Jul 5 12:43:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jul 2003 12:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Ji1wF021056 for ; Sat, 5 Jul 2003 12:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Ji1RS013329 for ; Sat, 5 Jul 2003 12:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65Ji1ai009777; Sat, 5 Jul 2003 12:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65JhJai009770 for ; Sat, 5 Jul 2003 12:43:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JhJRS013327 for ; Sat, 5 Jul 2003 12:43:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JhJkN068849 for ; Sat, 5 Jul 2003 12:43:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h65JhJc4068848; Sat, 5 Jul 2003 12:43:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307051943.h65JhJc4068848@xorpc.icir.org> Date: Sat, 5 Jul 2003 12:43:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/07/05 12:43:19 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Sat Jul 5 12:44:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jul 2003 12:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Jj1wF021190 for ; Sat, 5 Jul 2003 12:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Jj1RS013342 for ; Sat, 5 Jul 2003 12:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65Jj1ai009805; Sat, 5 Jul 2003 12:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65JiJai009794 for ; Sat, 5 Jul 2003 12:44:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JiJRS013337 for ; Sat, 5 Jul 2003 12:44:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JiJkN068899 for ; Sat, 5 Jul 2003 12:44:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h65JiJ3h068898; Sat, 5 Jul 2003 12:44:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307051944.h65JiJ3h068898@xorpc.icir.org> Date: Sat, 5 Jul 2003 12:44:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/05 12:44:19 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: Change PimNode::add_vif_addr() so it can be used to update an existing vif address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Sat Jul 5 12:46:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jul 2003 12:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Jl1wF021461 for ; Sat, 5 Jul 2003 12:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65Jl1RS013373 for ; Sat, 5 Jul 2003 12:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65Jl1ai009837; Sat, 5 Jul 2003 12:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h65JkEai009823 for ; Sat, 5 Jul 2003 12:46:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JkERS013369 for ; Sat, 5 Jul 2003 12:46:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h65JkDkN068981 for ; Sat, 5 Jul 2003 12:46:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h65JkDvF068980; Sat, 5 Jul 2003 12:46:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307051946.h65JkDvF068980@xorpc.icir.org> Date: Sat, 5 Jul 2003 12:46:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/05 12:46:13 Modified files: xorp/pim/: pim_config.cc Log message: Modify PimNode::set_config_all_vifs_done() such that now it uses PimNode::set_vif_flags(), PimNode::add_vif_addr() and PimNode::delete_vif_addr() to change vif information instead of directly manipulating the vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 11:45:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 11:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Ik2wF093319 for ; Mon, 7 Jul 2003 11:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Ik2RS036812 for ; Mon, 7 Jul 2003 11:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Ik1ai013307; Mon, 7 Jul 2003 11:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67IjCai013287 for ; Mon, 7 Jul 2003 11:45:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IjBRS036802 for ; Mon, 7 Jul 2003 11:45:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IjBkN045323 for ; Mon, 7 Jul 2003 11:45:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67IjBbp045322; Mon, 7 Jul 2003 11:45:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307071845.h67IjBbp045322@xorpc.icir.org> Date: Mon, 7 Jul 2003 11:45:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 11:45:11 Modified files: xorp/pim/: pim_node.cc Log message: * Add the appropriate dependency-tracking task when we add or delete an address from a vif. * Minor changes to PimNode::add_vif_addr() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 11:46:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 11:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Il2wF093450 for ; Mon, 7 Jul 2003 11:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Il1RS036828 for ; Mon, 7 Jul 2003 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Il1ai013344; Mon, 7 Jul 2003 11:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Ikxai013334 for ; Mon, 7 Jul 2003 11:46:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IkwRS036826 for ; Mon, 7 Jul 2003 11:46:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IkwkN045372 for ; Mon, 7 Jul 2003 11:46:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67IkwBL045371; Mon, 7 Jul 2003 11:46:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307071846.h67IkwBL045371@xorpc.icir.org> Date: Mon, 7 Jul 2003 11:46:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 11:46:58 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc Log message: Add a new method PimMre::recompute_is_directly_connected_sg() that recomputes whether a source is directly connected. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 11:47:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 11:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Im1wF093591 for ; Mon, 7 Jul 2003 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Im1RS036844 for ; Mon, 7 Jul 2003 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Im0ai013371; Mon, 7 Jul 2003 11:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Illai013362 for ; Mon, 7 Jul 2003 11:47:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IllRS036840 for ; Mon, 7 Jul 2003 11:47:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67IllkN045404 for ; Mon, 7 Jul 2003 11:47:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67IllbR045403; Mon, 7 Jul 2003 11:47:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307071847.h67IllbR045403@xorpc.icir.org> Date: Mon, 7 Jul 2003 11:47:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 11:47:47 Modified files: xorp/pim/: pim_mrt_task.cc Log message: Remove TODO comments re. an item that is already done. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 11:49:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 11:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Io1wF093865 for ; Mon, 7 Jul 2003 11:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Io0RS036885 for ; Mon, 7 Jul 2003 11:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Io0ai013433; Mon, 7 Jul 2003 11:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67InKai013409 for ; Mon, 7 Jul 2003 11:49:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67InKRS036865 for ; Mon, 7 Jul 2003 11:49:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67InKkN045460 for ; Mon, 7 Jul 2003 11:49:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67InK49045459; Mon, 7 Jul 2003 11:49:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307071849.h67InK49045459@xorpc.icir.org> Date: Mon, 7 Jul 2003 11:49:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/07/07 11:49:20 Modified files: xorp/pim/: pim_mre_track_state.cc pim_mre_track_state.hh xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Add a new output dependency-tracking state OUTPUT_STATE_IS_COULD_REGISTER_SG that is used to recompute whether a source is directly connected to a vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 12:12:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 12:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67JD1wF096721 for ; Mon, 7 Jul 2003 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67JD1RS037165 for ; Mon, 7 Jul 2003 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67JD1ai013938; Mon, 7 Jul 2003 12:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67JCqai013931 for ; Mon, 7 Jul 2003 12:12:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67JCqRS037163 for ; Mon, 7 Jul 2003 12:12:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67JCqkN054990 for ; Mon, 7 Jul 2003 12:12:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67JCpw8054988; Mon, 7 Jul 2003 12:12:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307071912.h67JCpw8054988@xorpc.icir.org> Date: Mon, 7 Jul 2003 12:12:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/07/07 12:12:51 Modified files: xorp/pim/: pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Add dependency tracking between start/stop vif and recomputing "is_directly_connected_sg()" and "is_could_register_sg()" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 14:37:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 14:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Lc1wF020964 for ; Mon, 7 Jul 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Lc1RS038547 for ; Mon, 7 Jul 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Lc1ai017421; Mon, 7 Jul 2003 14:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Lbwai017415 for ; Mon, 7 Jul 2003 14:37:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LbwRS038545 for ; Mon, 7 Jul 2003 14:37:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LbwkN094264 for ; Mon, 7 Jul 2003 14:37:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67Lbw3G094263; Mon, 7 Jul 2003 14:37:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307072137.h67Lbw3G094263@xorpc.icir.org> Date: Mon, 7 Jul 2003 14:37:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 14:37:58 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: Change the implementation of PimNode::is_directly_connected() such that now it considers whether the MRIB-based RPF information point toward the same interface, and doesn't consider anymore whether the vif is UP (i.e., the presumption is that the MRIB info takes care of adding/deleting routes for interfaces when they go UP or DOWN). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 14:39:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 14:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Le1wF021331 for ; Mon, 7 Jul 2003 14:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Le1RS038567 for ; Mon, 7 Jul 2003 14:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Le1ai017498; Mon, 7 Jul 2003 14:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Ldgai017490 for ; Mon, 7 Jul 2003 14:39:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LdgRS038560 for ; Mon, 7 Jul 2003 14:39:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LdgkN094321 for ; Mon, 7 Jul 2003 14:39:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67Ldg9I094320; Mon, 7 Jul 2003 14:39:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307072139.h67Ldg9I094320@xorpc.icir.org> Date: Mon, 7 Jul 2003 14:39:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/07/07 14:39:42 Modified files: xorp/pim/: pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Change the dependency tracking relationship such that now the recomputation of "is_directly_connected()" happens whenever the MRIB changes (before the recomputation was happenning whenever a vif goes UP or DOWN). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 14:42:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 14:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Lh2wF027040 for ; Mon, 7 Jul 2003 14:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67Lh1RS038620 for ; Mon, 7 Jul 2003 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67Lh1ai017579; Mon, 7 Jul 2003 14:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67LgNai017564 for ; Mon, 7 Jul 2003 14:42:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LgNRS038610 for ; Mon, 7 Jul 2003 14:42:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67LgNkN094781 for ; Mon, 7 Jul 2003 14:42:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67LgNpr094780; Mon, 7 Jul 2003 14:42:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307072142.h67LgNpr094780@xorpc.icir.org> Date: Mon, 7 Jul 2003 14:42:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 14:42:23 Modified files: xorp/pim/: TODO Log message: Remove TODO entries re. computation whether a source is directly-connected to an interface (those entries are either obsolete or DONE). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 15:15:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 15:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67MG1wF032598 for ; Mon, 7 Jul 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67MG1RS038893 for ; Mon, 7 Jul 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67MG1ai018251; Mon, 7 Jul 2003 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67MF8ai018221 for ; Mon, 7 Jul 2003 15:15:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67MF8RS038891 for ; Mon, 7 Jul 2003 15:15:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67MF8kN095039 for ; Mon, 7 Jul 2003 15:15:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67MF8HO095038; Mon, 7 Jul 2003 15:15:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307072215.h67MF8HO095038@xorpc.icir.org> Date: Mon, 7 Jul 2003 15:15:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 15:15:08 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 16:13:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 16:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h67NE2wF040527 for ; Mon, 7 Jul 2003 16:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67NE1RS039374 for ; Mon, 7 Jul 2003 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67NE1ai019355; Mon, 7 Jul 2003 16:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h67ND3ai019335 for ; Mon, 7 Jul 2003 16:13:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h67ND3RS039368 for ; Mon, 7 Jul 2003 16:13:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h67ND3kN095664 for ; Mon, 7 Jul 2003 16:13:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h67ND3eB095663; Mon, 7 Jul 2003 16:13:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307072313.h67ND3eB095663@xorpc.icir.org> Date: Mon, 7 Jul 2003 16:13:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_data.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/07/07 16:13:02 Modified files: xorp/pim/: pim_mre.hh pim_mre_data.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_task.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Remove the dependency-tracking machinery for checking whether to switch to the SPT. The reason for the removal is because the check whether to switch to the SPT has to be performed right only when a data packet is received/forwarded (or at least when a signal is received that the dataflow bandwidth is above a threshold), and doesn't need to track any other state such as pim_include(*,G). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 18:32:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 18:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h681X2wF057161 for ; Mon, 7 Jul 2003 18:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681X1RS040353 for ; Mon, 7 Jul 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681X1ai021278; Mon, 7 Jul 2003 18:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681WRai021271 for ; Mon, 7 Jul 2003 18:32:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681WRRS040351 for ; Mon, 7 Jul 2003 18:32:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h681WRkN008021 for ; Mon, 7 Jul 2003 18:32:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h681WQTZ008020; Mon, 7 Jul 2003 18:32:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307080132.h681WQTZ008020@xorpc.icir.org> Date: Mon, 7 Jul 2003 18:32:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 18:32:26 Modified files: xorp/pim/: pim_node.hh pim_config.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 18:34:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 18:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h681Z1wF057409 for ; Mon, 7 Jul 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681Z1RS040368 for ; Mon, 7 Jul 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681Z1ai021342; Mon, 7 Jul 2003 18:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681Yuai021336 for ; Mon, 7 Jul 2003 18:34:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681YuRS040363 for ; Mon, 7 Jul 2003 18:34:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h681YukN008333 for ; Mon, 7 Jul 2003 18:34:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h681YuMq008332; Mon, 7 Jul 2003 18:34:56 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307080134.h681YuMq008332@xorpc.icir.org> Date: Mon, 7 Jul 2003 18:34:56 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc xorp/mibs/tests/ test_bgpmib.sh.in xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/07 18:34:56 Modified files: xorp/docs/snmp/: snmp_overview.tex xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgpversion.cc xorp/mibs/tests/: test_bgpmib.sh.in Added files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh Log message: Implemented the Path Attributes Table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:19 2005 Subject: No subject Mon Jul 7 18:36:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 18:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h681b1wF057663 for ; Mon, 7 Jul 2003 18:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681b1RS040403 for ; Mon, 7 Jul 2003 18:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681b0ai021373; Mon, 7 Jul 2003 18:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681auai021366 for ; Mon, 7 Jul 2003 18:36:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681atRS040400 for ; Mon, 7 Jul 2003 18:36:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h681atkN008578 for ; Mon, 7 Jul 2003 18:36:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h681atHk008577; Mon, 7 Jul 2003 18:36:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307080136.h681atHk008577@xorpc.icir.org> Date: Mon, 7 Jul 2003 18:36:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_data.cc pim_mrt_mfc.cc pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/07 18:36:55 Modified files: xorp/pim/: pim_mre.hh pim_mre_data.cc pim_mrt_mfc.cc pim_proto_register.cc Log message: * Change the implementation of PimMre::check_switch_to_spt_sg(...) such that if the SPT switch is desired, then it creates the (S,G) entry, and (re)starts the Keepalive Timer. Also, modify it that it explicitly applies only for (*,G), (S,G) or (S,G,rpt) only * Modify PimMre::is_switch_to_spt_desired_sg() such that it explicitly applies only for (*,G), (S,G) or (S,G,rpt) only * Replace direct call to PimMre::is_switch_to_spt_desired_sg() (inside PimVif::pim_register_recv()) with call to PimMre::check_switch_to_spt_sg() * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Mon Jul 7 18:51:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jul 2003 18:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h681q1wF059477 for ; Mon, 7 Jul 2003 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681q1RS040524 for ; Mon, 7 Jul 2003 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681q1ai021540; Mon, 7 Jul 2003 18:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h681pcai021528 for ; Mon, 7 Jul 2003 18:51:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h681pcRS040521 for ; Mon, 7 Jul 2003 18:51:38 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h681pckN015166 for ; Mon, 7 Jul 2003 18:51:38 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h681pcH4015165; Mon, 7 Jul 2003 18:51:38 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307080151.h681pcH4015165@xorpc.icir.org> Date: Mon, 7 Jul 2003 18:51:37 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/07/07 18:51:37 Modified files: xorp/libxorp/: ref_trie.hh trie.hh Log message: Only nodes under the root are pushed to the stack, so there is no need for the deleted test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 8:45:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 08:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Fk2wF049105 for ; Tue, 8 Jul 2003 08:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Fk2RS048845 for ; Tue, 8 Jul 2003 08:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68Fk1ai005658; Tue, 8 Jul 2003 08:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68FjSai005645 for ; Tue, 8 Jul 2003 08:45:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68FjSRS048841 for ; Tue, 8 Jul 2003 08:45:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h68FjSkN045146 for ; Tue, 8 Jul 2003 08:45:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h68FjSUk045145; Tue, 8 Jul 2003 08:45:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307081545.h68FjSUk045145@xorpc.icir.org> Date: Tue, 8 Jul 2003 8:45:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.hh update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 08:45:28 Modified files: xorp/rip/: update_queue.hh update_queue.cc Log message: Add UpdateQueue::ffwd(ReadIterator& r) const. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 9:56:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 09:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Gv1wF054485 for ; Tue, 8 Jul 2003 09:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Gv0RS049499 for ; Tue, 8 Jul 2003 09:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68Gv0ai007015; Tue, 8 Jul 2003 09:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68GuIai006998 for ; Tue, 8 Jul 2003 09:56:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68GuHRS049496 for ; Tue, 8 Jul 2003 09:56:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h68GuHkN045842 for ; Tue, 8 Jul 2003 09:56:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h68GuHqU045841; Tue, 8 Jul 2003 09:56:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307081656.h68GuHqU045841@xorpc.icir.org> Date: Tue, 8 Jul 2003 9:56:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.hh update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 09:56:17 Modified files: xorp/rip/: update_queue.hh update_queue.cc Log message: Move UpdateQueue::Reader to UpdateQueueReader since ref_ptr usage in this code ends up needing to see destructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 9:57:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 09:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Gw1wF054564 for ; Tue, 8 Jul 2003 09:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68Gw1RS049517 for ; Tue, 8 Jul 2003 09:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68Gw1ai007051; Tue, 8 Jul 2003 09:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68GvKai007030 for ; Tue, 8 Jul 2003 09:57:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68GvKRS049509 for ; Tue, 8 Jul 2003 09:57:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h68GvKkN045889 for ; Tue, 8 Jul 2003 09:57:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h68GvK2Z045888; Tue, 8 Jul 2003 09:57:20 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307081657.h68GvK2Z045888@xorpc.icir.org> Date: Tue, 8 Jul 2003 9:57:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 09:57:20 Modified files: xorp/rip/: route_db.hh route_db.cc Log message: Implement UpdateQueue accessors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 12:18:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 12:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h68JJ2wF078856 for ; Tue, 8 Jul 2003 12:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68JJ2RS050855 for ; Tue, 8 Jul 2003 12:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68JJ1ai009754; Tue, 8 Jul 2003 12:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h68JIEai009735 for ; Tue, 8 Jul 2003 12:18:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h68JIERS050851 for ; Tue, 8 Jul 2003 12:18:14 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h68JIEkN056408 for ; Tue, 8 Jul 2003 12:18:14 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h68JIE3Z056407; Tue, 8 Jul 2003 12:18:14 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307081918.h68JIE3Z056407@xorpc.icir.org> Date: Tue, 8 Jul 2003 12:18:14 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/08 12:18:14 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Minor changes on the files generated by the tests _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 17:05:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 17:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h69061wF009345 for ; Tue, 8 Jul 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69061RS053319 for ; Tue, 8 Jul 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69061ai015511; Tue, 8 Jul 2003 17:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6905Iai015492 for ; Tue, 8 Jul 2003 17:05:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6905IRS053315 for ; Tue, 8 Jul 2003 17:05:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6905HkN001672 for ; Tue, 8 Jul 2003 17:05:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6905HsA001671; Tue, 8 Jul 2003 17:05:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090005.h6905HsA001671@xorpc.icir.org> Date: Tue, 8 Jul 2003 17:05:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 17:05:17 Modified files: xorp/rip/: constants.hh Log message: WS bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 17:06:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 17:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h69071wF009482 for ; Tue, 8 Jul 2003 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69071RS053336 for ; Tue, 8 Jul 2003 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69071ai015543; Tue, 8 Jul 2003 17:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6906Zai015529 for ; Tue, 8 Jul 2003 17:06:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6906ZRS053328 for ; Tue, 8 Jul 2003 17:06:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6906YkN001783 for ; Tue, 8 Jul 2003 17:06:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6906YmD001782; Tue, 8 Jul 2003 17:06:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090006.h6906YmD001782@xorpc.icir.org> Date: Tue, 8 Jul 2003 17:06:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ system.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 17:06:34 Modified files: xorp/rip/: system.hh Log message: WS bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 17:06:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 17:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h69072wF009497 for ; Tue, 8 Jul 2003 17:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69072RS053340 for ; Tue, 8 Jul 2003 17:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69071ai015554; Tue, 8 Jul 2003 17:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6906sai015535 for ; Tue, 8 Jul 2003 17:06:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6906rRS053333 for ; Tue, 8 Jul 2003 17:06:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6906rkN001821 for ; Tue, 8 Jul 2003 17:06:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6906rxQ001820; Tue, 8 Jul 2003 17:06:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090006.h6906rxQ001820@xorpc.icir.org> Date: Tue, 8 Jul 2003 17:06:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 17:06:53 Modified files: xorp/rip/: update_queue.hh Log message: WS bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 17:08:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 17:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h69091wF009754 for ; Tue, 8 Jul 2003 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69090RS053363 for ; Tue, 8 Jul 2003 17:09:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69090ai015600; Tue, 8 Jul 2003 17:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69088ai015589 for ; Tue, 8 Jul 2003 17:08:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69088RS053359 for ; Tue, 8 Jul 2003 17:08:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h69087kN001892 for ; Tue, 8 Jul 2003 17:08:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h69087St001891; Tue, 8 Jul 2003 17:08:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090008.h69087St001891@xorpc.icir.org> Date: Tue, 8 Jul 2003 17:08:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 17:08:07 Modified files: xorp/rip/: port_manager.hh Log message: WS bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 17:11:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 17:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h690C1wF010147 for ; Tue, 8 Jul 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h690C1RS053398 for ; Tue, 8 Jul 2003 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h690C0ai015650; Tue, 8 Jul 2003 17:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h690B3ai015627 for ; Tue, 8 Jul 2003 17:11:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h690B2RS053396 for ; Tue, 8 Jul 2003 17:11:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h690B2kN001964 for ; Tue, 8 Jul 2003 17:11:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h690B2j1001963; Tue, 8 Jul 2003 17:11:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090011.h690B2j1001963@xorpc.icir.org> Date: Tue, 8 Jul 2003 17:11:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in peer.hh port.cc port.hh route_db.cc route_db.hh route_entry.cc route_entry.hh xorp/rip/ peer.cc redist.cc redist.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 17:11:02 Modified files: xorp/rip/: Makefile.am Makefile.in peer.hh port.cc port.hh route_db.cc route_db.hh route_entry.cc route_entry.hh Added files: xorp/rip/: peer.cc redist.cc redist.hh Log message: o Add route redistribution class (to be initially used for static routes). o Move Peer casts from RouteDB (was needed for access to time constants, but classes derived from RouteEntryOrigin are now forced to implement this). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Tue Jul 8 20:14:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jul 2003 20:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h693F2wF027627 for ; Tue, 8 Jul 2003 20:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h693F1RS054790 for ; Tue, 8 Jul 2003 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h693F1ai018403; Tue, 8 Jul 2003 20:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h693Ebai018395 for ; Tue, 8 Jul 2003 20:14:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h693EbRS054785 for ; Tue, 8 Jul 2003 20:14:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h693EbkN039735 for ; Tue, 8 Jul 2003 20:14:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h693Eb9Q039734; Tue, 8 Jul 2003 20:14:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307090314.h693Eb9Q039734@xorpc.icir.org> Date: Tue, 8 Jul 2003 20:14:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/08 20:14:37 Modified files: xorp/rip/: port.hh Log message: Add a missing typename. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Wed Jul 9 15:29:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jul 2003 15:30:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h69MU3wF037809 for ; Wed, 9 Jul 2003 15:30:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69MU2RS066164 for ; Wed, 9 Jul 2003 15:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69MU1ai007604; Wed, 9 Jul 2003 15:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h69MT8ai007591 for ; Wed, 9 Jul 2003 15:29:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h69MT7RS066157 for ; Wed, 9 Jul 2003 15:29:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h69MT7kN088902 for ; Wed, 9 Jul 2003 15:29:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h69MT78a088901; Wed, 9 Jul 2003 15:29:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307092229.h69MT78a088901@xorpc.icir.org> Date: Wed, 9 Jul 2003 15:29:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh port.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/09 15:29:07 Modified files: xorp/rip/: constants.hh port.hh Log message: Enforce limits on minimum route deletion seconds and maximum interpacket delay milliseconds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Thu Jul 10 16:44:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jul 2003 16:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANk3wF034451 for ; Thu, 10 Jul 2003 16:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANk2RS080442 for ; Thu, 10 Jul 2003 16:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ANk0ai003793; Thu, 10 Jul 2003 16:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ANjUai003785 for ; Thu, 10 Jul 2003 16:45:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANjTRS080440 for ; Thu, 10 Jul 2003 16:45:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANiWkN093146 for ; Thu, 10 Jul 2003 16:44:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6ANiWLZ093145; Thu, 10 Jul 2003 16:44:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307102344.h6ANiWLZ093145@xorpc.icir.org> Date: Thu, 10 Jul 2003 16:44:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/07/10 16:44:32 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_node_net.cc Log message: Added new method CliClient::stop_connection() that is called when a CliClient object is deleted. For now, it only restores the original termios flags (in case of stdio CliClient). This should fix a bug when xorpsh is run from sh or bash and when pressing Ctrl-D leaves sh or bash in non-echo mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Thu Jul 10 16:50:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jul 2003 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANp1wF035228 for ; Thu, 10 Jul 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANp1RS080494 for ; Thu, 10 Jul 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ANp1ai003905; Thu, 10 Jul 2003 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ANo1ai003884 for ; Thu, 10 Jul 2003 16:50:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANo0RS080466 for ; Thu, 10 Jul 2003 16:50:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ANo0kN093199 for ; Thu, 10 Jul 2003 16:50:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6ANo0SC093198; Thu, 10 Jul 2003 16:50:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307102350.h6ANo0SC093198@xorpc.icir.org> Date: Thu, 10 Jul 2003 16:50:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/10 16:50:00 Modified files: ./: RELEASE_NOTES Log message: Add a release note for CLI re. a bug fix (if xorpsh is run from sh/bash, then pressing Ctrl-D was leaving sh/bash in non-echo mode). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Thu Jul 10 17:01:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jul 2003 17:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6B021wF036836 for ; Thu, 10 Jul 2003 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6B020RS080632 for ; Thu, 10 Jul 2003 17:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6B020ai004114; Thu, 10 Jul 2003 17:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6B01Jai004104 for ; Thu, 10 Jul 2003 17:01:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6B01JRS080619 for ; Thu, 10 Jul 2003 17:01:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6B01JkN093370 for ; Thu, 10 Jul 2003 17:01:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6B01JGH093369; Thu, 10 Jul 2003 17:01:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307110001.h6B01JGH093369@xorpc.icir.org> Date: Thu, 10 Jul 2003 17:01:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/07/10 17:01:19 Modified files: xorp/libxorp/: trie.hh Log message: Add Trie::unbind_root(iterator) which returns an iterator pointing to same node as argument but with root set to root node of trie (ugh!). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Fri Jul 11 10:53:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 10:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BHs1wF095130 for ; Fri, 11 Jul 2003 10:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BHs1K6091416 for ; Fri, 11 Jul 2003 10:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6BHs1ai020571; Fri, 11 Jul 2003 10:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6BHrHai020557 for ; Fri, 11 Jul 2003 10:53:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BHrGK6091406 for ; Fri, 11 Jul 2003 10:53:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BHrGkN042153 for ; Fri, 11 Jul 2003 10:53:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6BHrGji042152; Fri, 11 Jul 2003 10:53:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307111753.h6BHrGji042152@xorpc.icir.org> Date: Fri, 11 Jul 2003 10:53:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_entry.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/11 10:53:16 Modified files: xorp/rip/: route_entry.hh Log message: Sanitize RtPtrComparitor::operator(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Fri Jul 11 15:10:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 15:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BMC1wF033107 for ; Fri, 11 Jul 2003 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BMC0K6093827 for ; Fri, 11 Jul 2003 15:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6BMC0ai025456; Fri, 11 Jul 2003 15:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6BMB0ai025443 for ; Fri, 11 Jul 2003 15:11:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BMB0K6093821 for ; Fri, 11 Jul 2003 15:11:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6BMAxkN016432 for ; Fri, 11 Jul 2003 15:10:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6BMAx2b016431; Fri, 11 Jul 2003 15:10:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307112210.h6BMAx2b016431@xorpc.icir.org> Date: Fri, 11 Jul 2003 15:10:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in route_db.cc route_db.hh xorp/rip/ test_route_walk.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/11 15:10:59 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in route_db.cc route_db.hh Added files: xorp/rip/: test_route_walk.cc Log message: o Exchange trie for map in RouteDB. This code does not need trie functionality except for debugging and map is cheaper and easier to walk for the purposes of RIP. o Add RouteWalk class for getting routes for unsolicited updates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Fri Jul 11 18:02:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C131wF058587 for ; Fri, 11 Jul 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C131K6095082 for ; Fri, 11 Jul 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C130ai028368; Fri, 11 Jul 2003 18:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C126ai028361 for ; Fri, 11 Jul 2003 18:02:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C126K6095078 for ; Fri, 11 Jul 2003 18:02:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C126kN018263 for ; Fri, 11 Jul 2003 18:02:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C126jq018262; Fri, 11 Jul 2003 18:02:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120102.h6C126jq018262@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:02:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:02:05 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Fri Jul 11 18:05:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C162wF059058 for ; Fri, 11 Jul 2003 18:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C161K6095120 for ; Fri, 11 Jul 2003 18:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C161ai028420; Fri, 11 Jul 2003 18:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C15Jai028412 for ; Fri, 11 Jul 2003 18:05:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C15JK6095114 for ; Fri, 11 Jul 2003 18:05:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C15JkN025879 for ; Fri, 11 Jul 2003 18:05:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C15J3B025878; Fri, 11 Jul 2003 18:05:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120105.h6C15J3B025878@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:05:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:05:19 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: * Implement setup of Mld6igmpNode node/process status that then can be queried by the rtrmgr * Syncronize the Mld6igmpNode::add_vif_addr() implementation with the PimNode::add_vif_addr() implementation: use finer-granularity tests whether to add a new vif address or update an existing one. * Remove obsolete comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:20 2005 Subject: No subject Fri Jul 11 18:06:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C171wF059197 for ; Fri, 11 Jul 2003 18:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C170K6095133 for ; Fri, 11 Jul 2003 18:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C170ai028442; Fri, 11 Jul 2003 18:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C16vai028435 for ; Fri, 11 Jul 2003 18:06:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C16vK6095131 for ; Fri, 11 Jul 2003 18:06:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C16vkN026142 for ; Fri, 11 Jul 2003 18:06:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C16vWV026141; Fri, 11 Jul 2003 18:06:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120106.h6C16vWV026141@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:06:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:06:56 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: * Remove PimNode::set_proto_version() because it is never used, and because we always setup the protocol version per vif. * Remove obsolete TODO comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Fri Jul 11 18:14:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1F1wF060382 for ; Fri, 11 Jul 2003 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1F1K6095194 for ; Fri, 11 Jul 2003 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1F1ai028533; Fri, 11 Jul 2003 18:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1Edai028526 for ; Fri, 11 Jul 2003 18:14:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1EdK6095187 for ; Fri, 11 Jul 2003 18:14:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1EdkN027459 for ; Fri, 11 Jul 2003 18:14:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C1Edmf027458; Fri, 11 Jul 2003 18:14:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120114.h6C1Edmf027458@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:14:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc pim_mfc.cc pim_mfc.hh pim_mre.hh pim_mre_data.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_mfc.cc pim_mrt_task.cc pim_proto_register.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:14:39 Modified files: xorp/pim/: pim_config.cc pim_mfc.cc pim_mfc.hh pim_mre.hh pim_mre_data.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.hh pim_mrt_mfc.cc pim_mrt_task.cc pim_proto_register.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: * Implement bandwidth-prorated SPT switch triggering: The SPT switch can be triggered at the last-hop router if the bandwidth from a given source is above a configured threshold. In addition, the same mechanism is implemented in the RP as well (not in the spec, where the SPT switch in the RP is always triggered by the first packet). * Update the state-dependency tracking mechanism to accomodate the above SPT-switch mechanism. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Fri Jul 11 18:18:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1J1wF060972 for ; Fri, 11 Jul 2003 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1J1K6095227 for ; Fri, 11 Jul 2003 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1J0ai028595; Fri, 11 Jul 2003 18:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1I5ai028580 for ; Fri, 11 Jul 2003 18:18:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1I5K6095223 for ; Fri, 11 Jul 2003 18:18:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1I5kN027944 for ; Fri, 11 Jul 2003 18:18:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C1I5ZE027943; Fri, 11 Jul 2003 18:18:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120118.h6C1I5ZE027943@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:18:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:18:05 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Fri Jul 11 18:20:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jul 2003 18:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1L1wF061315 for ; Fri, 11 Jul 2003 18:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1L0K6095269 for ; Fri, 11 Jul 2003 18:21:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1L0ai028681; Fri, 11 Jul 2003 18:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6C1K7ai028656 for ; Fri, 11 Jul 2003 18:20:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1K7K6095265 for ; Fri, 11 Jul 2003 18:20:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6C1K7kN028147 for ; Fri, 11 Jul 2003 18:20:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6C1K7QP028146; Fri, 11 Jul 2003 18:20:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307120120.h6C1K7QP028146@xorpc.icir.org> Date: Fri, 11 Jul 2003 18:20:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/11 18:20:07 Modified files: ./: RELEASE_NOTES Log message: Add an entry for PIM-SM re. implementing the bandwidth-prorated SPT switch. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Sat Jul 12 9:18:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jul 2003 09:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJ1wF017475 for ; Sat, 12 Jul 2003 09:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJ1K6006077 for ; Sat, 12 Jul 2003 09:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGJ1ai011053; Sat, 12 Jul 2003 09:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGIOai011046 for ; Sat, 12 Jul 2003 09:18:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGINK6006075 for ; Sat, 12 Jul 2003 09:18:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGINkN071222 for ; Sat, 12 Jul 2003 09:18:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6CGINZm071221; Sat, 12 Jul 2003 09:18:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307121618.h6CGINZm071221@xorpc.icir.org> Date: Sat, 12 Jul 2003 9:18:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_route_walk.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/12 09:18:23 Modified files: xorp/rip/: test_route_walk.cc Log message: Add more count checks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Sat Jul 12 9:19:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jul 2003 09:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGK1wF017641 for ; Sat, 12 Jul 2003 09:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGK0K6006095 for ; Sat, 12 Jul 2003 09:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGK0ai011085; Sat, 12 Jul 2003 09:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGJHai011064 for ; Sat, 12 Jul 2003 09:19:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJGK6006081 for ; Sat, 12 Jul 2003 09:19:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJGkN071259 for ; Sat, 12 Jul 2003 09:19:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6CGJGrp071258; Sat, 12 Jul 2003 09:19:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307121619.h6CGJGrp071258@xorpc.icir.org> Date: Sat, 12 Jul 2003 9:19:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/12 09:19:16 Modified files: xorp/rip/: route_db.cc Log message: Check map iterator != end before attempting to access data. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Sat Jul 12 9:19:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jul 2003 09:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGK2wF017673 for ; Sat, 12 Jul 2003 09:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGK2K6006103 for ; Sat, 12 Jul 2003 09:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGK2ai011104; Sat, 12 Jul 2003 09:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6CGJcai011076 for ; Sat, 12 Jul 2003 09:19:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJcK6006089 for ; Sat, 12 Jul 2003 09:19:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6CGJbkN071316 for ; Sat, 12 Jul 2003 09:19:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6CGJbc5071315; Sat, 12 Jul 2003 09:19:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307121619.h6CGJbc5071315@xorpc.icir.org> Date: Sat, 12 Jul 2003 9:19:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/12 09:19:37 Modified files: xorp/rip/: route_db.hh Log message: WS bogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Sat Jul 12 23:23:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jul 2003 23:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6D6O2wF044970 for ; Sat, 12 Jul 2003 23:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6D6O1K6013719 for ; Sat, 12 Jul 2003 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6D6O1ai019875; Sat, 12 Jul 2003 23:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6D6NNai019859 for ; Sat, 12 Jul 2003 23:23:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6D6NNK6013714 for ; Sat, 12 Jul 2003 23:23:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6D6NNkN075588 for ; Sat, 12 Jul 2003 23:23:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6D6NMoJ075587; Sat, 12 Jul 2003 23:23:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307130623.h6D6NMoJ075587@xorpc.icir.org> Date: Sat, 12 Jul 2003 23:23:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/12 23:23:22 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: When we fail to send an XRL because we are out of buffer space, stop trying to send any more XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 14:55:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 14:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELu2wF007107 for ; Mon, 14 Jul 2003 14:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELu2K6033838 for ; Mon, 14 Jul 2003 14:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ELu1ai023010; Mon, 14 Jul 2003 14:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ELtJai022994 for ; Mon, 14 Jul 2003 14:55:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELtIK6033831 for ; Mon, 14 Jul 2003 14:55:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELtIkN037811 for ; Mon, 14 Jul 2003 14:55:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6ELtI6N037810; Mon, 14 Jul 2003 14:55:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307142155.h6ELtI6N037810@xorpc.icir.org> Date: Mon, 14 Jul 2003 14:55:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/07/14 14:55:18 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Don't print a "+" everytime we call eventloop.run(). Too much output. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 14:58:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELx1wF007828 for ; Mon, 14 Jul 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELx1K6033855 for ; Mon, 14 Jul 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ELx1ai023088; Mon, 14 Jul 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ELwtai023082 for ; Mon, 14 Jul 2003 14:58:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELwsK6033853 for ; Mon, 14 Jul 2003 14:58:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ELwskN037847 for ; Mon, 14 Jul 2003 14:58:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6ELwsWK037846; Mon, 14 Jul 2003 14:58:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307142158.h6ELwsWK037846@xorpc.icir.org> Date: Mon, 14 Jul 2003 14:58:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/14 14:58:54 Modified files: xorp/bgp/: rib_ipc_handler.hh Log message: Only allow 1 xrl in flight between BGP and the RIB. The previous value was 100 and seemed to be causing overrun/timeout problems when testing on xorp12. We can bump the value later when we are XRLs are sent over a reliable transport. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 15:03:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 15:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EM42wF009088 for ; Mon, 14 Jul 2003 15:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EM41K6033898 for ; Mon, 14 Jul 2003 15:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6EM41ai023189; Mon, 14 Jul 2003 15:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6EM3Oai023177 for ; Mon, 14 Jul 2003 15:03:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EM3OK6033894 for ; Mon, 14 Jul 2003 15:03:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EM3OkN037907 for ; Mon, 14 Jul 2003 15:03:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6EM3OgO037906; Mon, 14 Jul 2003 15:03:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307142203.h6EM3OgO037906@xorpc.icir.org> Date: Mon, 14 Jul 2003 15:03:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/07/14 15:03:24 Modified files: xorp/rib/: xrl_target.cc Log message: printf -> debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 15:27:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 15:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EMS1wF020217 for ; Mon, 14 Jul 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EMS1K6034122 for ; Mon, 14 Jul 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6EMS1ai023697; Mon, 14 Jul 2003 15:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6EMRlai023687 for ; Mon, 14 Jul 2003 15:27:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EMRlK6034120 for ; Mon, 14 Jul 2003 15:27:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6EMRlkN038134 for ; Mon, 14 Jul 2003 15:27:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6EMRlZb038133; Mon, 14 Jul 2003 15:27:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307142227.h6EMRlZb038133@xorpc.icir.org> Date: Mon, 14 Jul 2003 15:27:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/07/14 15:27:47 Modified files: xorp/rib/: xrl_target.cc Log message: DEBUG_LOGGING disabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 17:45:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 17:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0k1wF052466 for ; Mon, 14 Jul 2003 17:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0k0K6035080 for ; Mon, 14 Jul 2003 17:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F0k0ai026375; Mon, 14 Jul 2003 17:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F0joai026366 for ; Mon, 14 Jul 2003 17:45:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0jnK6035078 for ; Mon, 14 Jul 2003 17:45:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0jnkN039101 for ; Mon, 14 Jul 2003 17:45:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6F0jn0l039100; Mon, 14 Jul 2003 17:45:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307150045.h6F0jn0l039100@xorpc.icir.org> Date: Mon, 14 Jul 2003 17:45:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_vif.cc mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/07/14 17:45:49 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_vif.cc mld6igmp_vif.hh Log message: * Pass TTL, TOS and router-alert flag of the received IP packet as arguments to igmp_process() and mld6_process(). Currently, those arguments are not used. * Move all source and destination address checking to igmp_process() and mld6_process() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 17:46:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 17:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0l1wF052725 for ; Mon, 14 Jul 2003 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0l1K6035092 for ; Mon, 14 Jul 2003 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F0l1ai026397; Mon, 14 Jul 2003 17:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F0koai026389 for ; Mon, 14 Jul 2003 17:46:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0koK6035090 for ; Mon, 14 Jul 2003 17:46:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F0kokN039131 for ; Mon, 14 Jul 2003 17:46:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6F0ko5v039130; Mon, 14 Jul 2003 17:46:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307150046.h6F0ko5v039130@xorpc.icir.org> Date: Mon, 14 Jul 2003 17:46:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_vif.hh pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/14 17:46:50 Modified files: xorp/pim/: pim_node.cc pim_vif.hh pim_vif.cc Log message: * Pass TTL, TOS and router-alert flag of the received IP packet as arguments to pim_process(). Currently, those arguments are not used. * Move all source and destination address checking to pim_process() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Mon Jul 14 20:26:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jul 2003 20:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F3R1wF084470 for ; Mon, 14 Jul 2003 20:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F3R0K6036101 for ; Mon, 14 Jul 2003 20:27:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F3R0ai028281; Mon, 14 Jul 2003 20:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6F3QLai028269 for ; Mon, 14 Jul 2003 20:26:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F3QKK6036096 for ; Mon, 14 Jul 2003 20:26:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6F3QKkN087652 for ; Mon, 14 Jul 2003 20:26:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6F3QKA8087651; Mon, 14 Jul 2003 20:26:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307150326.h6F3QKA8087651@xorpc.icir.org> Date: Mon, 14 Jul 2003 20:26:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/14 20:26:20 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 10:25:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 10:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHQ1wF050355 for ; Tue, 15 Jul 2003 10:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHQ1K6044302 for ; Tue, 15 Jul 2003 10:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FHQ0ai012047; Tue, 15 Jul 2003 10:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FHP9ai012022 for ; Tue, 15 Jul 2003 10:25:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHP9K6044296 for ; Tue, 15 Jul 2003 10:25:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHP9kN088151 for ; Tue, 15 Jul 2003 10:25:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6FHP98u088150; Tue, 15 Jul 2003 10:25:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307151725.h6FHP98u088150@xorpc.icir.org> Date: Tue, 15 Jul 2003 10:25:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/15 10:25:09 Modified files: xorp/fea/: fticonfig_table_parse_rtm.cc Log message: Conditionally define RTF_WASCLONED as RTF_CLONED. This is needed to fix a compilation problem on NetBSD: in case of FreeBSD, the flag name is RTF_WASCLONED, but in case of NetBSD the flag name is RTF_CLONED. (courtesy Hitoshi Asaeda ) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 10:40:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 10:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHf2wF053929 for ; Tue, 15 Jul 2003 10:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHf2K6044421 for ; Tue, 15 Jul 2003 10:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FHf2ai012425; Tue, 15 Jul 2003 10:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FHeiai012395 for ; Tue, 15 Jul 2003 10:40:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHehK6044415 for ; Tue, 15 Jul 2003 10:40:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FHehkN088278 for ; Tue, 15 Jul 2003 10:40:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6FHehwu088277; Tue, 15 Jul 2003 10:40:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307151740.h6FHehwu088277@xorpc.icir.org> Date: Tue, 15 Jul 2003 10:40:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in update_queue.cc update_queue.hh xorp/rip/ test_update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/15 10:40:43 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in update_queue.cc update_queue.hh Added files: xorp/rip/: test_update_queue.cc Log message: Implement update queue as a list of update blocks. Add update queue tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 11:49:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 11:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FIo1wF070132 for ; Tue, 15 Jul 2003 11:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FIo1K6045006 for ; Tue, 15 Jul 2003 11:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FIo1ai014061; Tue, 15 Jul 2003 11:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FIn9ai014037 for ; Tue, 15 Jul 2003 11:49:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FIn9K6044995 for ; Tue, 15 Jul 2003 11:49:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FIn9kN094152 for ; Tue, 15 Jul 2003 11:49:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6FIn9CW094151; Tue, 15 Jul 2003 11:49:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307151849.h6FIn9CW094151@xorpc.icir.org> Date: Tue, 15 Jul 2003 11:49:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.cc update_queue.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/15 11:49:08 Modified files: xorp/rip/: update_queue.cc update_queue.hh Log message: Add rewind method for update queue read iterator. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 12:05:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 12:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FJ62wF073994 for ; Tue, 15 Jul 2003 12:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FJ62K6045198 for ; Tue, 15 Jul 2003 12:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FJ61ai014480; Tue, 15 Jul 2003 12:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FJ5lai014468 for ; Tue, 15 Jul 2003 12:05:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FJ5lK6045193 for ; Tue, 15 Jul 2003 12:05:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FJ5lkN002285 for ; Tue, 15 Jul 2003 12:05:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6FJ5lfs002284; Tue, 15 Jul 2003 12:05:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307151905.h6FJ5lfs002284@xorpc.icir.org> Date: Tue, 15 Jul 2003 12:05:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_route_walk.cc test_update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/15 12:05:47 Modified files: xorp/rip/: test_route_walk.cc test_update_queue.cc Log message: Speed up route generation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 15:35:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 15:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FMa1wF015297 for ; Tue, 15 Jul 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FMa1K6047008 for ; Tue, 15 Jul 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FMa1ai019205; Tue, 15 Jul 2003 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6FMZiai019197 for ; Tue, 15 Jul 2003 15:35:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FMZiK6047004 for ; Tue, 15 Jul 2003 15:35:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6FMZikN042642 for ; Tue, 15 Jul 2003 15:35:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6FMZiMH042641; Tue, 15 Jul 2003 15:35:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307152235.h6FMZiMH042641@xorpc.icir.org> Date: Tue, 15 Jul 2003 15:35:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/07/15 15:35:44 Modified files: xorp/devnotes/: work_plan.txt Log message: Add a low priority TODO entry (implement "gmake install") for the next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 17:15:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 17:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G0G1wF034488 for ; Tue, 15 Jul 2003 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G0G1K6047865 for ; Tue, 15 Jul 2003 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G0G1ai020980; Tue, 15 Jul 2003 17:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G0FNai020967 for ; Tue, 15 Jul 2003 17:15:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G0FNK6047854 for ; Tue, 15 Jul 2003 17:15:23 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G0FNkN043530 for ; Tue, 15 Jul 2003 17:15:23 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G0FNRn043529; Tue, 15 Jul 2003 17:15:23 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307160015.h6G0FNRn043529@xorpc.icir.org> Date: Tue, 15 Jul 2003 17:15:23 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/07/15 17:15:23 Modified files: xorp/mibs/snmpdscripts/: README Log message: Added comment about MIBS environment variable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:21 2005 Subject: No subject Tue Jul 15 19:12:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 19:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2D1wF062490 for ; Tue, 15 Jul 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2D1K6048675 for ; Tue, 15 Jul 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2D1ai022799; Tue, 15 Jul 2003 19:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2CLai022788 for ; Tue, 15 Jul 2003 19:12:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2CLK6048671 for ; Tue, 15 Jul 2003 19:12:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2CKkN066273 for ; Tue, 15 Jul 2003 19:12:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G2CKdj066272; Tue, 15 Jul 2003 19:12:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160212.h6G2CKdj066272@xorpc.icir.org> Date: Tue, 15 Jul 2003 19:12:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/15 19:12:20 Modified files: xorp/pim/: pim_vif.hh pim_vif.cc Log message: Nits: reorder few config params per vif, and fix few comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 19:49:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 19:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2o1wF069560 for ; Tue, 15 Jul 2003 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2o1K6048914 for ; Tue, 15 Jul 2003 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2o1ai023241; Tue, 15 Jul 2003 19:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2nPai023234 for ; Tue, 15 Jul 2003 19:49:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2nPK6048909 for ; Tue, 15 Jul 2003 19:49:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2nPkN086958 for ; Tue, 15 Jul 2003 19:49:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G2nPU3086957; Tue, 15 Jul 2003 19:49:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160249.h6G2nPU3086957@xorpc.icir.org> Date: Tue, 15 Jul 2003 19:49:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/15 19:49:25 Modified files: xorp/pim/: pim_mre_task.cc Log message: Add few TODO comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 19:56:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 19:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2v1wF070938 for ; Tue, 15 Jul 2003 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2v1K6048972 for ; Tue, 15 Jul 2003 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2v0ai023328; Tue, 15 Jul 2003 19:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G2uvai023321 for ; Tue, 15 Jul 2003 19:56:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2uvK6048970 for ; Tue, 15 Jul 2003 19:56:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G2uvkN087446 for ; Tue, 15 Jul 2003 19:56:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G2uv3D087445; Tue, 15 Jul 2003 19:56:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160256.h6G2uv3D087445@xorpc.icir.org> Date: Tue, 15 Jul 2003 19:56:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_node.hh xrl_mfea_node.cc xorp/libproto/ proto_node.hh xorp/mfea/ mfea_node.cc mfea_node.hh xrl_mfea_node.cc xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_vif.cc xrl_mld6igmp_node.cc xorp/pim/ pim_node.cc pim_vif.cc xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/15 19:56:57 Modified files: xorp/fea/: mfea_node.cc mfea_node.hh xrl_mfea_node.cc xorp/libproto/: proto_node.hh xorp/mfea/: mfea_node.cc mfea_node.hh xrl_mfea_node.cc xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_vif.cc xrl_mld6igmp_node.cc xorp/pim/: pim_node.cc pim_vif.cc xrl_pim_node.cc Log message: Replace "ROUTER_ALERT" with "Router Alert" inside comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 20:11:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 20:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3C2wF073834 for ; Tue, 15 Jul 2003 20:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3C2K6049086 for ; Tue, 15 Jul 2003 20:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3C1ai023508; Tue, 15 Jul 2003 20:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3Beai023500 for ; Tue, 15 Jul 2003 20:11:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3BeK6049082 for ; Tue, 15 Jul 2003 20:11:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3BdkN090994 for ; Tue, 15 Jul 2003 20:11:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G3BdJa090993; Tue, 15 Jul 2003 20:11:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160311.h6G3BdJa090993@xorpc.icir.org> Date: Tue, 15 Jul 2003 20:11:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/15 20:11:39 Modified files: xorp/pim/: TODO Log message: Remove TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 20:19:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 20:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3K1wF075376 for ; Tue, 15 Jul 2003 20:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3K1K6049137 for ; Tue, 15 Jul 2003 20:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3K1ai023602; Tue, 15 Jul 2003 20:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3Jfai023594 for ; Tue, 15 Jul 2003 20:19:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3JfK6049132 for ; Tue, 15 Jul 2003 20:19:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3JfkN092413 for ; Tue, 15 Jul 2003 20:19:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G3Jfx0092412; Tue, 15 Jul 2003 20:19:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160319.h6G3Jfx0092412@xorpc.icir.org> Date: Tue, 15 Jul 2003 20:19:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/15 20:19:41 Modified files: xorp/pim/: TODO Log message: Remove an obsolete TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 20:45:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 20:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3k1wF079193 for ; Tue, 15 Jul 2003 20:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3k1K6049308 for ; Tue, 15 Jul 2003 20:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3k0ai023989; Tue, 15 Jul 2003 20:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3jfai023982 for ; Tue, 15 Jul 2003 20:45:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3jfK6049306 for ; Tue, 15 Jul 2003 20:45:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3jfkN092611 for ; Tue, 15 Jul 2003 20:45:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G3jfhW092610; Tue, 15 Jul 2003 20:45:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160345.h6G3jfhW092610@xorpc.icir.org> Date: Tue, 15 Jul 2003 20:45:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/15 20:45:41 Modified files: ./: configure.in configure Log message: * When printing the ./configure --help usage, replace the second instance of "--with-path-to-snmpd" with "--with-path-to-net-snmpd-src" * Nits in the output message when printing the ./configure --help usage _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 20:50:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 20:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3p1wF079925 for ; Tue, 15 Jul 2003 20:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3p1K6049348 for ; Tue, 15 Jul 2003 20:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3p1ai024047; Tue, 15 Jul 2003 20:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G3ovai024041 for ; Tue, 15 Jul 2003 20:50:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3ovK6049346 for ; Tue, 15 Jul 2003 20:50:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G3ovkN092659 for ; Tue, 15 Jul 2003 20:50:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G3ovJR092658; Tue, 15 Jul 2003 20:50:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160350.h6G3ovJR092658@xorpc.icir.org> Date: Tue, 15 Jul 2003 20:50:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/15 20:50:57 Modified files: ./: configure configure.in Log message: Change the default installation prefix from /usr/local to /usr/local/xorp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 21:18:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 21:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G4J1wF083973 for ; Tue, 15 Jul 2003 21:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G4J1K6049507 for ; Tue, 15 Jul 2003 21:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G4J0ai024377; Tue, 15 Jul 2003 21:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G4Iiai024365 for ; Tue, 15 Jul 2003 21:18:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G4IiK6049500 for ; Tue, 15 Jul 2003 21:18:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G4IikN092908 for ; Tue, 15 Jul 2003 21:18:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G4Iiqn092907; Tue, 15 Jul 2003 21:18:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307160418.h6G4Iiqn092907@xorpc.icir.org> Date: Tue, 15 Jul 2003 21:18:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/15 21:18:44 Modified files: xorp/fea/: .cvsignore Log message: Remove obsolete binaries _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Tue Jul 15 22:03:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jul 2003 22:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G541wF090499 for ; Tue, 15 Jul 2003 22:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G541K6049832 for ; Tue, 15 Jul 2003 22:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G541ai024966; Tue, 15 Jul 2003 22:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6G53Yai024959 for ; Tue, 15 Jul 2003 22:03:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G53YK6049828 for ; Tue, 15 Jul 2003 22:03:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6G53YkN093242 for ; Tue, 15 Jul 2003 22:03:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6G53Y10093241; Tue, 15 Jul 2003 22:03:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307160503.h6G53Y10093241@xorpc.icir.org> Date: Tue, 15 Jul 2003 22:03:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc route_db.hh route_entry.cc route_entry.hh update_queue.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/15 22:03:34 Modified files: xorp/rip/: route_db.cc route_db.hh route_entry.cc route_entry.hh update_queue.hh Log message: Switch to intrusive reference count on routes. This makes life easier when route does not exist in main route table but exists in update queue and so it associated with a peer and an update comes in which means we want to resurrect it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 8:46:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 08:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GFl1wF089936 for ; Wed, 16 Jul 2003 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GFl1K6056468 for ; Wed, 16 Jul 2003 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GFl1ai005664; Wed, 16 Jul 2003 08:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GFkkai005656 for ; Wed, 16 Jul 2003 08:46:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GFkkK6056464 for ; Wed, 16 Jul 2003 08:46:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GFkkkN092488 for ; Wed, 16 Jul 2003 08:46:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GFkkrU092487; Wed, 16 Jul 2003 08:46:46 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307161546.h6GFkkrU092487@xorpc.icir.org> Date: Wed, 16 Jul 2003 8:46:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/16 08:46:46 Modified files: xorp/rip/: route_db.cc Log message: Sanitize route resurrection code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 9:37:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 09:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GGc1wF098690 for ; Wed, 16 Jul 2003 09:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GGc1K6056922 for ; Wed, 16 Jul 2003 09:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GGc0ai006861; Wed, 16 Jul 2003 09:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GGbRai006849 for ; Wed, 16 Jul 2003 09:37:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GGbRK6056920 for ; Wed, 16 Jul 2003 09:37:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GGbRkN093033 for ; Wed, 16 Jul 2003 09:37:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GGbRjg093032; Wed, 16 Jul 2003 09:37:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307161637.h6GGbRjg093032@xorpc.icir.org> Date: Wed, 16 Jul 2003 9:37:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/07/16 09:37:27 Modified files: xorp/rtrmgr/: TODO Log message: * Add a TODO entry re. implementation of "help" and "quit" commands in the xorpsh command-tree * Move two entries from the TODO list to the DONE list (regarding removing the 5 seconds timeout, and the interruption of commands in progress) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 10:33:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 10:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHY2wF022532 for ; Wed, 16 Jul 2003 10:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHY2K6057370 for ; Wed, 16 Jul 2003 10:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GHY1ai008159; Wed, 16 Jul 2003 10:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GHX5ai008114 for ; Wed, 16 Jul 2003 10:33:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHX5K6057358 for ; Wed, 16 Jul 2003 10:33:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHX5kN099694 for ; Wed, 16 Jul 2003 10:33:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GHX54t099693; Wed, 16 Jul 2003 10:33:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307161733.h6GHX54t099693@xorpc.icir.org> Date: Wed, 16 Jul 2003 10:33:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/16 10:33:04 Modified files: xorp/libxorp/: callback.hh Log message: Dump callback args from 12 to 13. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 10:46:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 10:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHl1wF035579 for ; Wed, 16 Jul 2003 10:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHl1K6057520 for ; Wed, 16 Jul 2003 10:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GHl1ai008574; Wed, 16 Jul 2003 10:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GHkYai008552 for ; Wed, 16 Jul 2003 10:46:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHkYK6057513 for ; Wed, 16 Jul 2003 10:46:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GHkYkN099928 for ; Wed, 16 Jul 2003 10:46:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GHkYIa099927; Wed, 16 Jul 2003 10:46:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307161746.h6GHkYIa099927@xorpc.icir.org> Date: Wed, 16 Jul 2003 10:46:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/16 10:46:34 Modified files: xorp/pim/: configure_pim Log message: Added configuration options to setup the PIM SPT switch bandwidth threshold. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 11:27:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 11:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIS2wF041578 for ; Wed, 16 Jul 2003 11:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIS1K6057834 for ; Wed, 16 Jul 2003 11:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIS1ai009623; Wed, 16 Jul 2003 11:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIRAai009602 for ; Wed, 16 Jul 2003 11:27:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIR9K6057832 for ; Wed, 16 Jul 2003 11:27:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIR9kN005388 for ; Wed, 16 Jul 2003 11:27:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GIR9mF005387; Wed, 16 Jul 2003 11:27:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307161827.h6GIR9mF005387@xorpc.icir.org> Date: Wed, 16 Jul 2003 11:27:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packets.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/16 11:27:09 Modified files: xorp/rip/: packets.hh Log message: WS bogons. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 11:30:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 11:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIV1wF042067 for ; Wed, 16 Jul 2003 11:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIV1K6057878 for ; Wed, 16 Jul 2003 11:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIV1ai009720; Wed, 16 Jul 2003 11:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIU7ai009695 for ; Wed, 16 Jul 2003 11:30:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIU6K6057874 for ; Wed, 16 Jul 2003 11:30:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIU6kN005453 for ; Wed, 16 Jul 2003 11:30:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GIU6Ak005452; Wed, 16 Jul 2003 11:30:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307161830.h6GIU6Ak005452@xorpc.icir.org> Date: Wed, 16 Jul 2003 11:30:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc port.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/16 11:30:06 Modified files: xorp/rip/: port.cc port.hh Log message: o Add RIPv2 route parsing. o Add accessors and modifiers for advertising default routes and accepting default routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 11:40:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 11:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIf1wF043552 for ; Wed, 16 Jul 2003 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIf0K6057964 for ; Wed, 16 Jul 2003 11:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIf0ai009945; Wed, 16 Jul 2003 11:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GIeRai009937 for ; Wed, 16 Jul 2003 11:40:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIeRK6057962 for ; Wed, 16 Jul 2003 11:40:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GIeQkN005549 for ; Wed, 16 Jul 2003 11:40:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GIeQRD005548; Wed, 16 Jul 2003 11:40:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307161840.h6GIeQRD005548@xorpc.icir.org> Date: Wed, 16 Jul 2003 11:40:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/16 11:40:26 Modified files: xorp/rip/: route_db.hh Log message: Remove declaration never to be implemented. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 14:01:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 14:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL21wF065755 for ; Wed, 16 Jul 2003 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL21K6059125 for ; Wed, 16 Jul 2003 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL20ai013069; Wed, 16 Jul 2003 14:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL1rai013062 for ; Wed, 16 Jul 2003 14:01:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL1rK6059123 for ; Wed, 16 Jul 2003 14:01:53 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL1rkN050319 for ; Wed, 16 Jul 2003 14:01:53 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GL1rIr050318; Wed, 16 Jul 2003 14:01:53 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307162101.h6GL1rIr050318@xorpc.icir.org> Date: Wed, 16 Jul 2003 14:01:53 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/talks/ Changes by: jcardona@xorpc.icir.org. 03/07/16 14:01:53 xorp/docs/snmp/talks Update of /usr/local/www/data/cvs/xorp/docs/snmp/talks In directory xorpc.icir.org:/tmp/cvs-serv50310/talks Log Message: Directory /usr/local/www/data/cvs/xorp/docs/snmp/talks added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 14:02:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 14:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL31wF065983 for ; Wed, 16 Jul 2003 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL31K6059135 for ; Wed, 16 Jul 2003 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL31ai013110; Wed, 16 Jul 2003 14:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL2Uai013090 for ; Wed, 16 Jul 2003 14:02:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL2UK6059133 for ; Wed, 16 Jul 2003 14:02:30 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL2UkN050520 for ; Wed, 16 Jul 2003 14:02:30 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GL2U1x050519; Wed, 16 Jul 2003 14:02:30 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307162102.h6GL2U1x050519@xorpc.icir.org> Date: Wed, 16 Jul 2003 14:02:30 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/talks/figs/ Changes by: jcardona@xorpc.icir.org. 03/07/16 14:02:30 xorp/docs/snmp/talks/figs Update of /usr/local/www/data/cvs/xorp/docs/snmp/talks/figs In directory xorpc.icir.org:/tmp/cvs-serv50511/figs Log Message: Directory /usr/local/www/data/cvs/xorp/docs/snmp/talks/figs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 14:06:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 14:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL71wF066786 for ; Wed, 16 Jul 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL71K6059183 for ; Wed, 16 Jul 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL71ai013220; Wed, 16 Jul 2003 14:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GL6Sai013187 for ; Wed, 16 Jul 2003 14:06:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL6SK6059175 for ; Wed, 16 Jul 2003 14:06:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GL6SkN051691 for ; Wed, 16 Jul 2003 14:06:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GL6SVv051690; Wed, 16 Jul 2003 14:06:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307162106.h6GL6SVv051690@xorpc.icir.org> Date: Wed, 16 Jul 2003 14:06:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/talks/ Makefile PPRfyma.sty how-to-mibs.tex xorp/docs/snmp/talks/figs/ bgp_mib.eps bgp_mib.ssd mibtree.eps mibtree.png pdu_seq.eps pdu_seq.fig snmp_fig2.eps snmp_fig2.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/talks/figs/ Changes by: jcardona@xorpc.icir.org. 03/07/16 14:06:28 Added files: xorp/docs/snmp/talks/: Makefile PPRfyma.sty how-to-mibs.tex xorp/docs/snmp/talks/figs/: bgp_mib.eps bgp_mib.ssd mibtree.eps mibtree.png pdu_seq.eps pdu_seq.fig snmp_fig2.eps snmp_fig2.fig Log message: Checking in yesterday's talk _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 14:45:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 14:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GLk2wF084603 for ; Wed, 16 Jul 2003 14:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GLk2K6059524 for ; Wed, 16 Jul 2003 14:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GLk2ai014114; Wed, 16 Jul 2003 14:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6GLjkai014088 for ; Wed, 16 Jul 2003 14:45:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GLjjK6059522 for ; Wed, 16 Jul 2003 14:45:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6GLjjkN053415 for ; Wed, 16 Jul 2003 14:45:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6GLjjxA053414; Wed, 16 Jul 2003 14:45:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307162145.h6GLjjxA053414@xorpc.icir.org> Date: Wed, 16 Jul 2003 14:45:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/docs/ INDEX xorp/rip/docs/ rfc1058.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/docs/ Changes by: hodson@xorpc.icir.org. 03/07/16 14:45:45 Modified files: xorp/rip/docs/: INDEX Added files: xorp/rip/docs/: rfc1058.txt Log message: Add original RIP rfc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:22 2005 Subject: No subject Wed Jul 16 17:28:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 17:29:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0T3wF015950 for ; Wed, 16 Jul 2003 17:29:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0T2K6060814 for ; Wed, 16 Jul 2003 17:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6H0T2ai017303; Wed, 16 Jul 2003 17:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6H0Saai017278 for ; Wed, 16 Jul 2003 17:28:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0SaK6060808 for ; Wed, 16 Jul 2003 17:28:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0SakN054502 for ; Wed, 16 Jul 2003 17:28:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6H0SZNb054501; Wed, 16 Jul 2003 17:28:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307170028.h6H0SZNb054501@xorpc.icir.org> Date: Wed, 16 Jul 2003 17:28:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Makefile.am Makefile.in run_tests xorp/bgp/harness/ inject.sh test2.sh test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh xorp/etc/templates/ bgp.tp fea.tp ospf.tp rib.tp xorp/fea/ .cvsignore Makefile.am Makefile.in xorp/libxipc/ .cvsignore Makefile.am Makefile.in test_finder_deaths.sh xorp/mibs/tests/ test_bgpmib.sh.in xorp/ospfd/xorp/ .cvsignore Makefile.am Makefile.in xorp/rib/ .cvsignore Makefile.am Makefile.in xorp/rtrmgr/ .cvsignore Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/07/16 17:28:35 Modified files: xorp/bgp/: .cvsignore Makefile.am Makefile.in run_tests xorp/bgp/harness/: inject.sh test2.sh test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_terminate.sh xorp/etc/templates/: bgp.tp fea.tp ospf.tp rib.tp xorp/fea/: .cvsignore Makefile.am Makefile.in xorp/libxipc/: .cvsignore Makefile.am Makefile.in test_finder_deaths.sh xorp/mibs/tests/: test_bgpmib.sh.in xorp/ospfd/xorp/: .cvsignore Makefile.am Makefile.in xorp/rib/: .cvsignore Makefile.am Makefile.in xorp/rtrmgr/: .cvsignore Makefile.am Makefile.in Log message: Rename XORP process names: bgp -> xorp_bgp fea -> xorp_fea fea_dummy -> xorp_fea_dummy finder -> xorp_finder ospfd -> xorp_ospf rib -> xorp_rib rtrmgr -> xorp_rtrmgr _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Wed Jul 16 17:45:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jul 2003 17:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0k1wF023617 for ; Wed, 16 Jul 2003 17:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0k1K6060952 for ; Wed, 16 Jul 2003 17:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6H0k1ai017588; Wed, 16 Jul 2003 17:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6H0jfai017578 for ; Wed, 16 Jul 2003 17:45:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0jfK6060950 for ; Wed, 16 Jul 2003 17:45:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6H0jfkN054662 for ; Wed, 16 Jul 2003 17:45:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6H0jfJ8054661; Wed, 16 Jul 2003 17:45:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307170045.h6H0jfJ8054661@xorpc.icir.org> Date: Wed, 16 Jul 2003 17:45:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/16 17:45:41 Modified files: xorp/fea/: fticonfig_table_parse_rtm.cc Log message: RTF_CLONED/RTF_WASCLONED tweaks for NetBSD (courtesy Jun-ichiro itojun Hagino ) Note: the problem was already fixed with the previous commit, so this is just a styling change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Thu Jul 17 9:11:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Jul 2003 09:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6HGC1wF062587 for ; Thu, 17 Jul 2003 09:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6HGC1K6069863 for ; Thu, 17 Jul 2003 09:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6HGC1ai002354; Thu, 17 Jul 2003 09:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6HGB4ai002342 for ; Thu, 17 Jul 2003 09:11:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6HGB4K6069859 for ; Thu, 17 Jul 2003 09:11:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6HGB3kN002288 for ; Thu, 17 Jul 2003 09:11:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6HGB36l002287; Thu, 17 Jul 2003 09:11:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307171611.h6HGB36l002287@xorpc.icir.org> Date: Thu, 17 Jul 2003 9:11:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_io.hh auth.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/17 09:11:03 Modified files: xorp/rip/: port_io.hh auth.hh Log message: WS bogons. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Thu Jul 17 18:25:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Jul 2003 18:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1Q2wF062070 for ; Thu, 17 Jul 2003 18:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1Q2K6074527 for ; Thu, 17 Jul 2003 18:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6I1Q1ai013153; Thu, 17 Jul 2003 18:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6I1PDai013142 for ; Thu, 17 Jul 2003 18:25:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1PDK6074525 for ; Thu, 17 Jul 2003 18:25:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1PDkN062805 for ; Thu, 17 Jul 2003 18:25:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6I1PDfU062804; Thu, 17 Jul 2003 18:25:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307180125.h6I1PDfU062804@xorpc.icir.org> Date: Thu, 17 Jul 2003 18:25:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/07/17 18:25:13 Modified files: xorp/bgp/: main.cc Log message: In the destructor for BGPMain we wait for all the timers to expire apart from the one in the xrl_router. The code was incorrectly checking against true? not > 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Thu Jul 17 18:59:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Jul 2003 19:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I201wF068594 for ; Thu, 17 Jul 2003 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I201K6074754 for ; Thu, 17 Jul 2003 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6I201ai013658; Thu, 17 Jul 2003 19:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6I1xGai013644 for ; Thu, 17 Jul 2003 18:59:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1xGK6074746 for ; Thu, 17 Jul 2003 18:59:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6I1xGkN072119 for ; Thu, 17 Jul 2003 18:59:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6I1xGTl072118; Thu, 17 Jul 2003 18:59:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307180159.h6I1xGTl072118@xorpc.icir.org> Date: Thu, 17 Jul 2003 18:59:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ isis.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: atanu@xorpc.icir.org. 03/07/17 18:59:15 Added files: xorp/xrl/interfaces/: isis.xif Log message: Interfaces for IS-IS. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:01:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI22wF072335 for ; Mon, 21 Jul 2003 11:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI22K6021053 for ; Mon, 21 Jul 2003 11:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI21ai024493; Mon, 21 Jul 2003 11:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI1Cai024455 for ; Mon, 21 Jul 2003 11:01:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI1BK6021051 for ; Mon, 21 Jul 2003 11:01:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI1BkN016926 for ; Mon, 21 Jul 2003 11:01:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI1B9l016925; Mon, 21 Jul 2003 11:01:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211801.h6LI1B9l016925@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:01:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ auth.cc test_auth.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:01:11 Modified files: xorp/rip/: auth.cc test_auth.cc Log message: WS Bogons. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:03:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI41wF072630 for ; Mon, 21 Jul 2003 11:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI41K6021088 for ; Mon, 21 Jul 2003 11:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI41ai024567; Mon, 21 Jul 2003 11:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI34ai024546 for ; Mon, 21 Jul 2003 11:03:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI34K6021070 for ; Mon, 21 Jul 2003 11:03:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI34kN016995 for ; Mon, 21 Jul 2003 11:03:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI34UF016994; Mon, 21 Jul 2003 11:03:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211803.h6LI34UF016994@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:03:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packet_queue.hh packet_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:03:04 Added files: xorp/rip/: packet_queue.hh packet_queue.cc Log message: Move RipPacket and RipPacketQueue into own files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:04:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI52wF072787 for ; Mon, 21 Jul 2003 11:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI51K6021106 for ; Mon, 21 Jul 2003 11:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI51ai024635; Mon, 21 Jul 2003 11:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI4Lai024596 for ; Mon, 21 Jul 2003 11:04:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI4KK6021094 for ; Mon, 21 Jul 2003 11:04:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI4KkN017033 for ; Mon, 21 Jul 2003 11:04:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI4KhW017032; Mon, 21 Jul 2003 11:04:20 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211804.h6LI4KhW017032@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:04:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:04:20 Modified files: xorp/rip/: constants.hh Log message: Add DEFAULT_INTERQUERY_GAP_MS - the minimum gap between queries RIP will respond to (DoS protection). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:04:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI52wF072813 for ; Mon, 21 Jul 2003 11:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI52K6021110 for ; Mon, 21 Jul 2003 11:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI52ai024646; Mon, 21 Jul 2003 11:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI4vai024628 for ; Mon, 21 Jul 2003 11:04:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI4vK6021101 for ; Mon, 21 Jul 2003 11:04:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI4ukN017075 for ; Mon, 21 Jul 2003 11:04:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI4ugp017074; Mon, 21 Jul 2003 11:04:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211804.h6LI4ugp017074@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:04:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:04:56 Modified files: xorp/rip/: route_db.hh route_db.cc Log message: Add find_route to find a specific route. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:05:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI61wF073006 for ; Mon, 21 Jul 2003 11:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI60K6021151 for ; Mon, 21 Jul 2003 11:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI60ai024696; Mon, 21 Jul 2003 11:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI5uai024689 for ; Mon, 21 Jul 2003 11:05:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI5tK6021149 for ; Mon, 21 Jul 2003 11:05:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI5tkN017136 for ; Mon, 21 Jul 2003 11:05:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI5tlZ017135; Mon, 21 Jul 2003 11:05:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211805.h6LI5tlZ017135@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:05:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in packets.hh port.cc port.hh port_io.hh xorp/rip/ test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:05:55 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in packets.hh port.cc port.hh port_io.hh Added files: xorp/rip/: test_request.cc Log message: Add constants for RIP packet version and address family for route table solicitation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 11:06:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 11:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI72wF073172 for ; Mon, 21 Jul 2003 11:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI71K6021161 for ; Mon, 21 Jul 2003 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI71ai024728; Mon, 21 Jul 2003 11:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LI6uai024721 for ; Mon, 21 Jul 2003 11:06:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI6uK6021159 for ; Mon, 21 Jul 2003 11:06:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LI6ukN017169 for ; Mon, 21 Jul 2003 11:06:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LI6uYH017168; Mon, 21 Jul 2003 11:06:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307211806.h6LI6uYH017168@xorpc.icir.org> Date: Mon, 21 Jul 2003 11:06:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh port.cc test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 11:06:56 Modified files: xorp/rip/: port.hh port.cc test_request.cc Log message: Add specific route request packet handling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 12:22:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 12:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJN2wF084139 for ; Mon, 21 Jul 2003 12:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJN1K6021865 for ; Mon, 21 Jul 2003 12:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LJN1ai026389; Mon, 21 Jul 2003 12:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LJMhai026372 for ; Mon, 21 Jul 2003 12:22:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJMgK6021863 for ; Mon, 21 Jul 2003 12:22:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJMgkN032787 for ; Mon, 21 Jul 2003 12:22:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LJMgjj032786; Mon, 21 Jul 2003 12:22:42 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307211922.h6LJMgjj032786@xorpc.icir.org> Date: Mon, 21 Jul 2003 12:22:42 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh xorp/mibs/tests/ test_bgpmib.sh.in xorp/mibs/ bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/21 12:22:42 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh xorp/mibs/tests/: test_bgpmib.sh.in Added files: xorp/mibs/: bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh Log message: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh tests/test_bgpmib.sh.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 12:31:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 12:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJW2wF085472 for ; Mon, 21 Jul 2003 12:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJW1K6021943 for ; Mon, 21 Jul 2003 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LJW1ai026555; Mon, 21 Jul 2003 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LJVhai026544 for ; Mon, 21 Jul 2003 12:31:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJVhK6021939 for ; Mon, 21 Jul 2003 12:31:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LJVgkN033627 for ; Mon, 21 Jul 2003 12:31:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LJVgHc033626; Mon, 21 Jul 2003 12:31:42 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307211931.h6LJVgHc033626@xorpc.icir.org> Date: Mon, 21 Jul 2003 12:31:42 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/21 12:31:42 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: This is the log message for my previous commit (I was trying to do a partial commit with -F file, but it did not work quite as expected...) * Implemented bgpLocalAs * Implemented local copy of bgpPathAttrTable in agent memory space (still have to choose a valid update method for this table) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 15:35:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 15:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LMa1wF029858 for ; Mon, 21 Jul 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LMa1K6023701 for ; Mon, 21 Jul 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LMa1ai000655; Mon, 21 Jul 2003 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LMZoai000643 for ; Mon, 21 Jul 2003 15:35:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LMZoK6023699 for ; Mon, 21 Jul 2003 15:35:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LMZokN071490 for ; Mon, 21 Jul 2003 15:35:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LMZokW071489; Mon, 21 Jul 2003 15:35:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307212235.h6LMZokW071489@xorpc.icir.org> Date: Mon, 21 Jul 2003 15:35:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/07/21 15:35:50 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Increase callback.hh late bound arguments from 12 to 13. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 16:13:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 16:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNE1wF054771 for ; Mon, 21 Jul 2003 16:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNE1K6023952 for ; Mon, 21 Jul 2003 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LNE1ai001348; Mon, 21 Jul 2003 16:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LNDWai001324 for ; Mon, 21 Jul 2003 16:13:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNDWK6023950 for ; Mon, 21 Jul 2003 16:13:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNDWkN071865 for ; Mon, 21 Jul 2003 16:13:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LNDW90071864; Mon, 21 Jul 2003 16:13:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307212313.h6LNDW90071864@xorpc.icir.org> Date: Mon, 21 Jul 2003 16:13:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/21 16:13:32 Modified files: xorp/rip/: route_db.hh Log message: kdoc NetCmp. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Mon Jul 21 16:15:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jul 2003 16:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNG1wF060419 for ; Mon, 21 Jul 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNG1K6023993 for ; Mon, 21 Jul 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LNG1ai001411; Mon, 21 Jul 2003 16:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6LNFRai001395 for ; Mon, 21 Jul 2003 16:15:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNFRK6023983 for ; Mon, 21 Jul 2003 16:15:27 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6LNFRkN071915 for ; Mon, 21 Jul 2003 16:15:27 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6LNFRBB071914; Mon, 21 Jul 2003 16:15:27 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307212315.h6LNFRBB071914@xorpc.icir.org> Date: Mon, 21 Jul 2003 16:15:27 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ patched_container.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/07/21 16:15:27 Added files: xorp/mibs/: patched_container.h Log message: This is a net-snmp header file that does not compile in C++ (someone decided to call a variable 'private', among other things...) I will check in a patch that should be applied to the Net-SNMP installation, but until then we'll use this file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Tue Jul 22 10:05:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 10:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MH62wF051494 for ; Tue, 22 Jul 2003 10:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MH61K6033934 for ; Tue, 22 Jul 2003 10:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MH61ai017524; Tue, 22 Jul 2003 10:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MH58ai017512 for ; Tue, 22 Jul 2003 10:05:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MH58K6033930 for ; Tue, 22 Jul 2003 10:05:08 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MH57kN021847 for ; Tue, 22 Jul 2003 10:05:07 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6MH57Jt021844; Tue, 22 Jul 2003 10:05:07 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307221705.h6MH57Jt021844@xorpc.icir.org> Date: Tue, 22 Jul 2003 10:05:07 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.hh xorp/mibs/ container.h.patch Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/07/22 10:05:07 Modified files: ./: config.h.in configure configure.in xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.hh Added files: xorp/mibs/: container.h.patch Log message: Added check for bug in one of Net-SNMP header files (container.h) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Tue Jul 22 11:37:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 11:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MIc2wF064910 for ; Tue, 22 Jul 2003 11:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MIc1K6034751 for ; Tue, 22 Jul 2003 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MIc1ai019551; Tue, 22 Jul 2003 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MIbQai019530 for ; Tue, 22 Jul 2003 11:37:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MIbPK6034749 for ; Tue, 22 Jul 2003 11:37:25 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MIbPkN022524 for ; Tue, 22 Jul 2003 11:37:25 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6MIbPjP022523; Tue, 22 Jul 2003 11:37:25 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307221837.h6MIbPjP022523@xorpc.icir.org> Date: Tue, 22 Jul 2003 11:37:25 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/22 11:37:25 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh xorp/mibs/tests/: test_bgpmib.sh.in Log message: Enabled periodic update of local bgp4PathAttrTable Added comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Tue Jul 22 12:22:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 12:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MJN1wF079916 for ; Tue, 22 Jul 2003 12:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MJN1K6035192 for ; Tue, 22 Jul 2003 12:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MJN0ai020607; Tue, 22 Jul 2003 12:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MJMXai020595 for ; Tue, 22 Jul 2003 12:22:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MJMXK6035188 for ; Tue, 22 Jul 2003 12:22:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MJMXkN033059 for ; Tue, 22 Jul 2003 12:22:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6MJMXgO033058; Tue, 22 Jul 2003 12:22:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307221922.h6MJMXgO033058@xorpc.icir.org> Date: Tue, 22 Jul 2003 12:22:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/22 12:22:33 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: When setting the multicast/broadcast/etc flags per address (in the IfTree), do NOT consider the ifam_flags from struct ifa_msghdr, because they do not contain the IFF_* flags (the value of the ifam_flags contains the RTF_* flags, which are different). Instead, consider only the vif flags which were set already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:23 2005 Subject: No subject Tue Jul 22 14:37:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 14:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLc1wF010969 for ; Tue, 22 Jul 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLc1K6036402 for ; Tue, 22 Jul 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MLc1ai023285; Tue, 22 Jul 2003 14:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MLbpai023278 for ; Tue, 22 Jul 2003 14:37:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLbpK6036400 for ; Tue, 22 Jul 2003 14:37:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLbpkN071628 for ; Tue, 22 Jul 2003 14:37:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6MLbp5Z071627; Tue, 22 Jul 2003 14:37:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307222137.h6MLbp5Z071627@xorpc.icir.org> Date: Tue, 22 Jul 2003 14:37:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/22 14:37:51 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Don't set the vif flags based on the IfTree address flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Tue Jul 22 14:38:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 14:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLd1wF011134 for ; Tue, 22 Jul 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLd1K6036415 for ; Tue, 22 Jul 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MLd0ai023309; Tue, 22 Jul 2003 14:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6MLcAai023296 for ; Tue, 22 Jul 2003 14:38:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLc9K6036408 for ; Tue, 22 Jul 2003 14:38:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6MLc9kN071690 for ; Tue, 22 Jul 2003 14:38:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6MLc9tT071689; Tue, 22 Jul 2003 14:38:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307222138.h6MLc9tT071689@xorpc.icir.org> Date: Tue, 22 Jul 2003 14:38:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/22 14:38:09 Modified files: xorp/rib/: vifmanager.cc Log message: Don't set the vif flags based on the IfTree address flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Tue Jul 22 19:06:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 19:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N271wF055575 for ; Tue, 22 Jul 2003 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N271K6038617 for ; Tue, 22 Jul 2003 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6N271ai028202; Tue, 22 Jul 2003 19:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6N26iai028194 for ; Tue, 22 Jul 2003 19:06:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N26iK6038615 for ; Tue, 22 Jul 2003 19:06:44 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N26hkN094911 for ; Tue, 22 Jul 2003 19:06:43 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6N26hZL094910; Tue, 22 Jul 2003 19:06:43 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307230206.h6N26hZL094910@xorpc.icir.org> Date: Tue, 22 Jul 2003 19:06:43 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/22 19:06:43 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc xorp/mibs/tests/: test_bgpmib.sh.in Log message: Improved bgp4PathAttrTable update algorithm Modified bgp4PathAttrTable test to feed all the routes in the route updates file (now takes significantly longer!) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Tue Jul 22 19:18:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jul 2003 19:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N2J1wF057404 for ; Tue, 22 Jul 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N2J1K6038706 for ; Tue, 22 Jul 2003 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6N2J1ai028342; Tue, 22 Jul 2003 19:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6N2I3ai028331 for ; Tue, 22 Jul 2003 19:18:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N2I3K6038699 for ; Tue, 22 Jul 2003 19:18:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6N2I2kN004907 for ; Tue, 22 Jul 2003 19:18:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6N2I2Bk004906; Tue, 22 Jul 2003 19:18:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307230218.h6N2I2Bk004906@xorpc.icir.org> Date: Tue, 22 Jul 2003 19:18:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xtreset.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/tools/ Changes by: atanu@xorpc.icir.org. 03/07/22 19:18:02 Modified files: other/testbed/tools/: xtreset.py Log message: Xorp12 is on the APC power switch. The old xorp8 position. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Wed Jul 23 12:45:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Jul 2003 12:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6NJk2wF033601 for ; Wed, 23 Jul 2003 12:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6NJk2K6048655 for ; Wed, 23 Jul 2003 12:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6NJk1ai015839; Wed, 23 Jul 2003 12:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6NJjKai015822 for ; Wed, 23 Jul 2003 12:45:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6NJjJK6048646 for ; Wed, 23 Jul 2003 12:45:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6NJjJkN023242 for ; Wed, 23 Jul 2003 12:45:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6NJjJXP023241; Wed, 23 Jul 2003 12:45:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307231945.h6NJjJXP023241@xorpc.icir.org> Date: Wed, 23 Jul 2003 12:45:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ isis.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: atanu@xorpc.icir.org. 03/07/23 12:45:19 Modified files: xorp/xrl/interfaces/: isis.xif Log message: Support for interface addresses and NLRI v4 and v6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Thu Jul 24 16:50:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jul 2003 16:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ONp2wF004644 for ; Thu, 24 Jul 2003 16:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ONp1K6064164 for ; Thu, 24 Jul 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ONp1ai015027; Thu, 24 Jul 2003 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6ONovai015021 for ; Thu, 24 Jul 2003 16:50:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ONovK6064162 for ; Thu, 24 Jul 2003 16:50:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6ONovkN036618 for ; Thu, 24 Jul 2003 16:50:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6ONovZN036617; Thu, 24 Jul 2003 16:50:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307242350.h6ONovZN036617@xorpc.icir.org> Date: Thu, 24 Jul 2003 16:50:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/07/24 16:50:57 Modified files: xorp/devnotes/: work_plan.txt Log message: Update workplan with tasks for the next release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Thu Jul 24 19:10:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jul 2003 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2B1wF038406 for ; Thu, 24 Jul 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2B11N065286 for ; Thu, 24 Jul 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6P2B0ai017175; Thu, 24 Jul 2003 19:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6P2Adai017167 for ; Thu, 24 Jul 2003 19:10:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2Ad1N065284 for ; Thu, 24 Jul 2003 19:10:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2AckN037891 for ; Thu, 24 Jul 2003 19:10:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6P2Acn8037890; Thu, 24 Jul 2003 19:10:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307250210.h6P2Acn8037890@xorpc.icir.org> Date: Thu, 24 Jul 2003 19:10:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ xorpsh_print_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: atanu@xorpc.icir.org. 03/07/24 19:10:38 Modified files: xorp/bgp/tools/: xorpsh_print_routes.cc Log message: sumary -> summary. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Thu Jul 24 19:12:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jul 2003 19:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2D1wF038803 for ; Thu, 24 Jul 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2D01N065303 for ; Thu, 24 Jul 2003 19:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6P2D0ai017211; Thu, 24 Jul 2003 19:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6P2CQai017200 for ; Thu, 24 Jul 2003 19:12:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2CP1N065299 for ; Thu, 24 Jul 2003 19:12:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6P2CPkN037944 for ; Thu, 24 Jul 2003 19:12:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6P2CPgL037943; Thu, 24 Jul 2003 19:12:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307250212.h6P2CPgL037943@xorpc.icir.org> Date: Thu, 24 Jul 2003 19:12:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/bgp/tools/ print_routes.cc print_routes.hh xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/07/24 19:12:25 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/bgp/tools/: print_routes.cc print_routes.hh xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh Log message: When fetching routing table entries don't use an error to denote the end of the table, use an explicit flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Fri Jul 25 11:42:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Jul 2003 11:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6PIh2wF084005 for ; Fri, 25 Jul 2003 11:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6PIh1dk001371 for ; Fri, 25 Jul 2003 11:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6PIh1RW003702; Fri, 25 Jul 2003 11:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6PIgBRW003691 for ; Fri, 25 Jul 2003 11:42:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6PIgBdk001367 for ; Fri, 25 Jul 2003 11:42:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6PIgBkN055078 for ; Fri, 25 Jul 2003 11:42:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6PIgBds055077; Fri, 25 Jul 2003 11:42:11 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307251842.h6PIgBds055077@xorpc.icir.org> Date: Fri, 25 Jul 2003 11:42:11 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/07/25 11:42:11 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc Log message: Fixed memory leak _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Sat Jul 26 0:46:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 26 Jul 2003 00:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6Q7l2wF048594 for ; Sat, 26 Jul 2003 00:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6Q7l1dk007109 for ; Sat, 26 Jul 2003 00:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6Q7l1RW014485; Sat, 26 Jul 2003 00:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6Q7kXRW014477 for ; Sat, 26 Jul 2003 00:46:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6Q7kWdk007106 for ; Sat, 26 Jul 2003 00:46:32 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6Q7kWkN059986 for ; Sat, 26 Jul 2003 00:46:32 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6Q7kWxD059985; Sat, 26 Jul 2003 00:46:32 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307260746.h6Q7kWxD059985@xorpc.icir.org> Date: Sat, 26 Jul 2003 0:46:32 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/07/26 00:46:32 Modified files: xorp/libxorp/: ref_trie.hh Log message: Changed PreOrder iterator so it doesn't require internal state. This is the first step towards supporting conversion between different types of iterators. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Sun Jul 27 3:34:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Jul 2003 03:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RAZ2wF084625 for ; Sun, 27 Jul 2003 03:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RAZ1dk022286 for ; Sun, 27 Jul 2003 03:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6RAZ1RW003596; Sun, 27 Jul 2003 03:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6RAYJRW003588 for ; Sun, 27 Jul 2003 03:34:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RAYIdk022277 for ; Sun, 27 Jul 2003 03:34:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RAYHkN073884 for ; Sun, 27 Jul 2003 03:34:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6RAYHef073883; Sun, 27 Jul 2003 03:34:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307271034.h6RAYHef073883@xorpc.icir.org> Date: Sun, 27 Jul 2003 3:34:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xtreset.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/tools/ Changes by: pavlin@xorpc.icir.org. 03/07/27 03:34:17 Modified files: other/testbed/tools/: xtreset.py Log message: Change the path to the mibs from /usr/local/xorp/mibs to /usr/local/xorp_tools/mibs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Sun Jul 27 4:00:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Jul 2003 04:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RB11wF086596 for ; Sun, 27 Jul 2003 04:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RB11dk022509 for ; Sun, 27 Jul 2003 04:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6RB10RW003831; Sun, 27 Jul 2003 04:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6RB0JRW003809 for ; Sun, 27 Jul 2003 04:00:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RB0Jdk022502 for ; Sun, 27 Jul 2003 04:00:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6RB0IkN074251 for ; Sun, 27 Jul 2003 04:00:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6RB0IvV074250; Sun, 27 Jul 2003 04:00:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307271100.h6RB0IvV074250@xorpc.icir.org> Date: Sun, 27 Jul 2003 4:00:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/27 04:00:18 Modified files: ./: configure.in configure Log message: Minor edits to a warning message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Mon Jul 28 11:13:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Jul 2003 11:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SIE2wF045831 for ; Mon, 28 Jul 2003 11:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SIE1dk038451 for ; Mon, 28 Jul 2003 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SIE1RW001615; Mon, 28 Jul 2003 11:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SIDGRW001573 for ; Mon, 28 Jul 2003 11:13:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SIDGdk038439 for ; Mon, 28 Jul 2003 11:13:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SIDGkN001406 for ; Mon, 28 Jul 2003 11:13:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6SIDGfY001405; Mon, 28 Jul 2003 11:13:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200307281813.h6SIDGfY001405@xorpc.icir.org> Date: Mon, 28 Jul 2003 11:13:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/07/28 11:13:16 Modified files: other/tinderbox/scripts/: config Log message: Bump timeout from 3600 seconds to 6000 seconds to reflect the length of time some tests take. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Mon Jul 28 12:08:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Jul 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SJ91wF052489 for ; Mon, 28 Jul 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SJ91dk039191 for ; Mon, 28 Jul 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SJ91RW003057; Mon, 28 Jul 2003 12:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SJ82RW003029 for ; Mon, 28 Jul 2003 12:08:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SJ82dk039185 for ; Mon, 28 Jul 2003 12:08:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SJ82kN010084 for ; Mon, 28 Jul 2003 12:08:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6SJ82Pq010083; Mon, 28 Jul 2003 12:08:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307281908.h6SJ82Pq010083@xorpc.icir.org> Date: Mon, 28 Jul 2003 12:08:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/28 12:08:01 Modified files: xorp/pim/: configure_pim Log message: Added a configuration entry for koala.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Mon Jul 28 14:09:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Jul 2003 14:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SLA1wF067284 for ; Mon, 28 Jul 2003 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SLA1dk040424 for ; Mon, 28 Jul 2003 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SLA1RW005940; Mon, 28 Jul 2003 14:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SL9mRW005931 for ; Mon, 28 Jul 2003 14:09:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SL9ldk040417 for ; Mon, 28 Jul 2003 14:09:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SL9lkN048757 for ; Mon, 28 Jul 2003 14:09:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6SL9lr6048756; Mon, 28 Jul 2003 14:09:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307282109.h6SL9lr6048756@xorpc.icir.org> Date: Mon, 28 Jul 2003 14:09:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ linux-2.4.18.config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 03/07/28 14:09:47 Modified files: other/testbed/config/: linux-2.4.18.config Log message: Enable CONFIG_TUN _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Mon Jul 28 16:37:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Jul 2003 16:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SNc2wF085161 for ; Mon, 28 Jul 2003 16:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SNc1dk041665 for ; Mon, 28 Jul 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SNc1RW009363; Mon, 28 Jul 2003 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6SNbpRW009355 for ; Mon, 28 Jul 2003 16:37:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SNbpdk041663 for ; Mon, 28 Jul 2003 16:37:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6SNbpkN050132 for ; Mon, 28 Jul 2003 16:37:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6SNbp4g050131; Mon, 28 Jul 2003 16:37:51 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307282337.h6SNbp4g050131@xorpc.icir.org> Date: Mon, 28 Jul 2003 16:37:51 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh test_ref_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: jcardona@xorpc.icir.org. 03/07/28 16:37:51 Modified files: xorp/libxorp/: ref_trie.hh test_ref_trie.cc Log message: Added operator to convert between preoder and postorder iterators. The iterator type is no longer a template parameter, so you can now use both iterators on any given trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Mon Jul 28 18:01:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Jul 2003 18:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6T121wF095083 for ; Mon, 28 Jul 2003 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6T121dk042333 for ; Mon, 28 Jul 2003 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6T121RW010832; Mon, 28 Jul 2003 18:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6T11mRW010822 for ; Mon, 28 Jul 2003 18:01:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6T11mdk042331 for ; Mon, 28 Jul 2003 18:01:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6T11lkN050753 for ; Mon, 28 Jul 2003 18:01:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6T11lDP050752; Mon, 28 Jul 2003 18:01:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307290101.h6T11lDP050752@xorpc.icir.org> Date: Mon, 28 Jul 2003 18:01:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/07/28 18:01:47 Modified files: xorp/fea/: mfea_node.cc Log message: Add a fix in computing the MRIB entries in case of p2p links created by openvpn on Linux. Typically, the next-hop router in the kernel forwarding table shows 0.0.0.0, hence, we need to search the vif based on the a.b.c.d/32 MRIB prefix address (where a.b.c.d is the peer address). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Tue Jul 29 11:41:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Jul 2003 11:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TIg1wF083218 for ; Tue, 29 Jul 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TIg1dk052276 for ; Tue, 29 Jul 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6TIg0RW029972; Tue, 29 Jul 2003 11:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6TIfkRW029956 for ; Tue, 29 Jul 2003 11:41:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TIfjdk052274 for ; Tue, 29 Jul 2003 11:41:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TIfjkN021538 for ; Tue, 29 Jul 2003 11:41:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6TIfjxE021537; Tue, 29 Jul 2003 11:41:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307291841.h6TIfjxE021537@xorpc.icir.org> Date: Tue, 29 Jul 2003 11:41:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/07/29 11:41:45 Modified files: xorp/bgp/: main.cc Log message: Replaced "eventloop().timers_pending() > 1" with "eventloop().timer_list_length() > 1", because timers_pending() returns bool, and in the above case is not the right method. [Problem caught with gcc-3.3] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Tue Jul 29 12:33:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Jul 2003 12:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TJY2wF089507 for ; Tue, 29 Jul 2003 12:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TJY1dk052741 for ; Tue, 29 Jul 2003 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6TJY1RW001445; Tue, 29 Jul 2003 12:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6TJX3RW001398 for ; Tue, 29 Jul 2003 12:33:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TJX3dk052735 for ; Tue, 29 Jul 2003 12:33:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6TJX3kN032775 for ; Tue, 29 Jul 2003 12:33:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6TJX3v3032774; Tue, 29 Jul 2003 12:33:03 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307291933.h6TJX3v3032774@xorpc.icir.org> Date: Tue, 29 Jul 2003 12:33:03 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/07/29 12:33:03 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh Log message: Fixed incorrect 'valid' parameter usage _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Wed Jul 30 12:05:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ61wF059264 for ; Wed, 30 Jul 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ61dk065649 for ; Wed, 30 Jul 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ60RW026645; Wed, 30 Jul 2003 12:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ5iRW026634 for ; Wed, 30 Jul 2003 12:05:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ5idk065646 for ; Wed, 30 Jul 2003 12:05:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ5ikN034169 for ; Wed, 30 Jul 2003 12:05:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UJ5hed034168; Wed, 30 Jul 2003 12:05:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307301905.h6UJ5hed034168@xorpc.icir.org> Date: Wed, 30 Jul 2003 12:05:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_proto.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/07/30 12:05:43 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_proto.cc mld6igmp_vif.cc Log message: Added few XLOG_ASSERT(addr_ptr() != NULL) as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:24 2005 Subject: No subject Wed Jul 30 12:06:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 12:07:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ73wF059457 for ; Wed, 30 Jul 2003 12:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ73dk065664 for ; Wed, 30 Jul 2003 12:07:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ71RW026685; Wed, 30 Jul 2003 12:07:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ6hRW026677 for ; Wed, 30 Jul 2003 12:06:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ6hdk065658 for ; Wed, 30 Jul 2003 12:06:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ6hkN034352 for ; Wed, 30 Jul 2003 12:06:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UJ6hlb034351; Wed, 30 Jul 2003 12:06:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307301906.h6UJ6hlb034351@xorpc.icir.org> Date: Wed, 30 Jul 2003 12:06:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/30 12:06:43 Modified files: xorp/rib/: rib.cc Log message: A typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 12:07:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 12:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ81wF059638 for ; Wed, 30 Jul 2003 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ81dk065678 for ; Wed, 30 Jul 2003 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ80RW026717; Wed, 30 Jul 2003 12:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UJ7PRW026702 for ; Wed, 30 Jul 2003 12:07:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ7Pdk065674 for ; Wed, 30 Jul 2003 12:07:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UJ7PkN034456 for ; Wed, 30 Jul 2003 12:07:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UJ7PO3034455; Wed, 30 Jul 2003 12:07:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307301907.h6UJ7PO3034455@xorpc.icir.org> Date: Wed, 30 Jul 2003 12:07:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 03/07/30 12:07:25 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif Log message: Formatting nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 14:02:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 14:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UL31wF084062 for ; Wed, 30 Jul 2003 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UL30dk066739 for ; Wed, 30 Jul 2003 14:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UL30RW029216; Wed, 30 Jul 2003 14:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UL2HRW029197 for ; Wed, 30 Jul 2003 14:02:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UL2Hdk066737 for ; Wed, 30 Jul 2003 14:02:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UL2HkN071503 for ; Wed, 30 Jul 2003 14:02:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UL2HG0071502; Wed, 30 Jul 2003 14:02:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307302102.h6UL2HG0071502@xorpc.icir.org> Date: Wed, 30 Jul 2003 14:02:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/07/30 14:02:17 Modified files: xorp/cli/libtecla/: Makefile.in Log message: * Renamed the existing "install" target to "really_install" * Added a dummy "install" target instead of the existing one (see above). * Added a dummy "uninstall" target The above changes are needed because we do NOT want/need the libtecla stuff installed when we install XORP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 15:12:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UMD1wF096068 for ; Wed, 30 Jul 2003 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UMD1dk067508 for ; Wed, 30 Jul 2003 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UMD1RW000939; Wed, 30 Jul 2003 15:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UMC6RW000915 for ; Wed, 30 Jul 2003 15:12:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UMC5dk067506 for ; Wed, 30 Jul 2003 15:12:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UMC5kN075544 for ; Wed, 30 Jul 2003 15:12:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UMC5oK075543; Wed, 30 Jul 2003 15:12:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200307302212.h6UMC5oK075543@xorpc.icir.org> Date: Wed, 30 Jul 2003 15:12:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: atanu@xorpc.icir.org. 03/07/30 15:12:05 Modified files: xorp/libxipc/: call_xrl.cc Log message: Allow the setting of the finder host and port on the command line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 16:43:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UNi1wF011568 for ; Wed, 30 Jul 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UNi1dk068336 for ; Wed, 30 Jul 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UNi0RW002785; Wed, 30 Jul 2003 16:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6UNhXRW002773 for ; Wed, 30 Jul 2003 16:43:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UNhXdk068334 for ; Wed, 30 Jul 2003 16:43:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6UNhXkN076514 for ; Wed, 30 Jul 2003 16:43:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6UNhXEi076513; Wed, 30 Jul 2003 16:43:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307302343.h6UNhXEi076513@xorpc.icir.org> Date: Wed, 30 Jul 2003 16:43:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/harness/ Makefile.am Makefile.in xorp/bgp/tools/ Makefile.am Makefile.in xorp/cli/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/libcomm/ Makefile.am Makefile.in xorp/libproto/ Makefile.am Makefile.in xorp/libxorp/ Makefile.am Makefile.in xorp/mfea/ Makefile.am xorp/mld6igmp/ Makefile.am Makefile.in xorp/mrt/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xrl_pim_node.cc xrl_pim_node.hh xorp/policy/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in xorp/rip/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in xorp/rtrmgr/tools/ Makefile.am Makefile.in xorp/utils/ Makefile.am Makefile.in xorp/xrl/tests/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/07/30 16:43:33 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/bgp/harness/: Makefile.am Makefile.in xorp/bgp/tools/: Makefile.am Makefile.in xorp/cli/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/libcomm/: Makefile.am Makefile.in xorp/libproto/: Makefile.am Makefile.in xorp/libxorp/: Makefile.am Makefile.in xorp/mfea/: Makefile.am xorp/mld6igmp/: Makefile.am Makefile.in xorp/mrt/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xrl_pim_node.cc xrl_pim_node.hh xorp/policy/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in xorp/rip/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in xorp/rtrmgr/tools/: Makefile.am Makefile.in xorp/utils/: Makefile.am Makefile.in xorp/xrl/tests/: Makefile.am Makefile.in Log message: * Add support for "gmake install" for the binary files (below $(prefix) defaults ot /usr/local/xorp) - all xorp_foo binaries are installed in $(prefix)/bin - the pkglib programs/libs are installed in $(prefix)/lib/xorp (TODO: maybe this should be changed to $(prefix)/lib ?) - The bgp xorpsh tools programs are installed in $(prefix)/bgp/tools - The rtrmgr xorpsh tools programs are installed in $(prefix)/rtrmgrp/tools * Cleanup of most of the Makefile.am files Remaining: install xrl/targets/*.xrls and etc/* _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 17:29:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 17:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0U1wF019597 for ; Wed, 30 Jul 2003 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0U1dk068753 for ; Wed, 30 Jul 2003 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0U1RW003722; Wed, 30 Jul 2003 17:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0TnRW003715 for ; Wed, 30 Jul 2003 17:29:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0Tndk068748 for ; Wed, 30 Jul 2003 17:29:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0TnkN076883 for ; Wed, 30 Jul 2003 17:29:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6V0TnoP076882; Wed, 30 Jul 2003 17:29:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307310029.h6V0TnoP076882@xorpc.icir.org> Date: Wed, 30 Jul 2003 17:29:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/30 17:29:49 Modified files: xorp/pim/: test_pim.cc Log message: A typo: "-f" -> "-F" in the program usage string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 17:34:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 17:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0Z2wF020449 for ; Wed, 30 Jul 2003 17:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0Z1dk068797 for ; Wed, 30 Jul 2003 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0Z1RW003862; Wed, 30 Jul 2003 17:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0YPRW003846 for ; Wed, 30 Jul 2003 17:34:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0YPdk068792 for ; Wed, 30 Jul 2003 17:34:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0YPkN077142 for ; Wed, 30 Jul 2003 17:34:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6V0YPwY077141; Wed, 30 Jul 2003 17:34:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307310034.h6V0YPwY077141@xorpc.icir.org> Date: Wed, 30 Jul 2003 17:34:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/ .cvsignore Makefile.am Makefile.in xorp/etc/templates/ .cvsignore Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/07/30 17:34:25 Added files: xorp/etc/: .cvsignore Makefile.am Makefile.in xorp/etc/templates/: .cvsignore Makefile.am Makefile.in Log message: Added new files etc/Makefile.am and etc/templates/Makefile.am which are used to install the Xorp config+template files in /usr/local/xorp/etc/templates _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 17:35:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0a1wF020644 for ; Wed, 30 Jul 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0a1dk068830 for ; Wed, 30 Jul 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0a0RW003890; Wed, 30 Jul 2003 17:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V0ZKRW003875 for ; Wed, 30 Jul 2003 17:35:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0ZJdk068821 for ; Wed, 30 Jul 2003 17:35:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V0ZJkN077192 for ; Wed, 30 Jul 2003 17:35:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6V0ZJjv077191; Wed, 30 Jul 2003 17:35:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307310035.h6V0ZJjv077191@xorpc.icir.org> Date: Wed, 30 Jul 2003 17:35:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/30 17:35:19 Modified files: ./: Makefile.am Makefile.in configure.in configure Log message: Added directories etc and etc/templates to the list of directories to build _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 18:12:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 18:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1D1wF026792 for ; Wed, 30 Jul 2003 18:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1D1dk069144 for ; Wed, 30 Jul 2003 18:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V1D0RW004456; Wed, 30 Jul 2003 18:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V1CgRW004448 for ; Wed, 30 Jul 2003 18:12:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1Cgdk069142 for ; Wed, 30 Jul 2003 18:12:42 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1CfkN082889 for ; Wed, 30 Jul 2003 18:12:41 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6V1CfLh082888; Wed, 30 Jul 2003 18:12:41 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307310112.h6V1CfLh082888@xorpc.icir.org> Date: Wed, 30 Jul 2003 18:12:41 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.hh bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/07/30 18:12:41 Modified files: xorp/mibs/: bgp4_mib_1657.hh bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh xorp/mibs/tests/: test_bgpmib.sh.in Log message: Implemented bgpEstablishedTrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Wed Jul 30 18:17:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jul 2003 18:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1I2wF037968 for ; Wed, 30 Jul 2003 18:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1I1dk069188 for ; Wed, 30 Jul 2003 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V1I1RW004525; Wed, 30 Jul 2003 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6V1HeRW004507 for ; Wed, 30 Jul 2003 18:17:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1Hedk069182 for ; Wed, 30 Jul 2003 18:17:40 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6V1HekN088395 for ; Wed, 30 Jul 2003 18:17:40 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6V1HeNJ088394; Wed, 30 Jul 2003 18:17:40 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307310117.h6V1HeNJ088394@xorpc.icir.org> Date: Wed, 30 Jul 2003 18:17:40 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ bgp4_mib.tgt bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh xorp/xrl/interfaces/ bgp_mib_traps.xif bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: jcardona@xorpc.icir.org. 03/07/30 18:17:40 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: bgp4_mib.tgt bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh Added files: xorp/xrl/interfaces/: bgp_mib_traps.xif bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh Log message: Created new interface to send BGP4-MIB traps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 11:11:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 11:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VIC1wF030023 for ; Thu, 31 Jul 2003 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VIC1dk079239 for ; Thu, 31 Jul 2003 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VIC1RW021704; Thu, 31 Jul 2003 11:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VIBTRW021674 for ; Thu, 31 Jul 2003 11:11:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VIBSdk079235 for ; Thu, 31 Jul 2003 11:11:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VIBSkN054353 for ; Thu, 31 Jul 2003 11:11:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6VIBSPO054352; Thu, 31 Jul 2003 11:11:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307311811.h6VIBSPO054352@xorpc.icir.org> Date: Thu, 31 Jul 2003 11:11:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/07/31 11:11:28 Modified files: xorp/pim/: pim_mre_track_state.cc Log message: Modify a comment regarding removing duplicated actions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 12:17:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 12:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VJI2wF044143 for ; Thu, 31 Jul 2003 12:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VJI2dk079950 for ; Thu, 31 Jul 2003 12:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VJI0RW023584; Thu, 31 Jul 2003 12:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VJHgRW023571 for ; Thu, 31 Jul 2003 12:17:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VJHgdk079947 for ; Thu, 31 Jul 2003 12:17:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VJHgkN064260 for ; Thu, 31 Jul 2003 12:17:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6VJHgwp064259; Thu, 31 Jul 2003 12:17:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307311917.h6VJHgwp064259@xorpc.icir.org> Date: Thu, 31 Jul 2003 12:17:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/07/31 12:17:42 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: * Create list "tgt_files" that contains all *.tgt files. Note: if a new foo.tgt file is created, it MUST be added to that list. * Use the tgt_files list to automatically compute xrls_files (the list of all *.xrls files). * Add the hooks to install all the *.xrls files to /usr/local/xorp/xrl/targets * Add the *.tgt and *.xrls files to EXTRA_DIST (i.e., the list of files that go into the distribution tarball). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 14:59:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 15:00:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VM03wF076685 for ; Thu, 31 Jul 2003 15:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VM03dk081569 for ; Thu, 31 Jul 2003 15:00:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VM02RW027426; Thu, 31 Jul 2003 15:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VLxfRW027406 for ; Thu, 31 Jul 2003 14:59:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VLxedk081556 for ; Thu, 31 Jul 2003 14:59:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VLxekN003417 for ; Thu, 31 Jul 2003 14:59:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6VLxeDm003416; Thu, 31 Jul 2003 14:59:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307312159.h6VLxeDm003416@xorpc.icir.org> Date: Thu, 31 Jul 2003 14:59:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/libxipc/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/31 14:59:40 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/libxipc/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in Log message: Change the Makefile.am files such that all xorp_foo protocol binaries are installed under /usr/local/xorp by replicating their original place in the source tree. E.g., xorp_bgp goes to $(prefix)/bgp/xorp_bgp xorp_fea goes to $(prefix)/fea/xorp_fea xorp_fea_dummy goes to $(prefix)/fea/xorp_fea_dummy xorp_rib goes to /usr/local/xorp/rib/xorp_rib xorp_finder goes to /usr/local/xorp/libxipc/xorp_finder xorp_ospf goes to /usr/local/xorp/ospfd/xorp/xorp_ospf Only xorp_rtrmgr, xorpsh and call_xrl go to /usr/local/xorp/bin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 15:30:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 15:31:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VMV2wF087842 for ; Thu, 31 Jul 2003 15:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VMV1dk081904 for ; Thu, 31 Jul 2003 15:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VMV1RW028125; Thu, 31 Jul 2003 15:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VMUPRW028108 for ; Thu, 31 Jul 2003 15:30:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VMUPdk081898 for ; Thu, 31 Jul 2003 15:30:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VMUPkN009659 for ; Thu, 31 Jul 2003 15:30:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6VMUOKr009658; Thu, 31 Jul 2003 15:30:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200307312230.h6VMUOKr009658@xorpc.icir.org> Date: Thu, 31 Jul 2003 15:30:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/07/31 15:30:24 Modified files: ./: config.h.in configure.in configure Log message: Define XORP_ROOT (in config.h) to be the path to the XORP install location. Default: #define XORP_ROOT "/usr/local/xorp" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 16:37:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 16:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VNc1wF002278 for ; Thu, 31 Jul 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VNc1dk082414 for ; Thu, 31 Jul 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VNc1RW029488; Thu, 31 Jul 2003 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h6VNbERW029469 for ; Thu, 31 Jul 2003 16:37:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VNbEdk082410 for ; Thu, 31 Jul 2003 16:37:14 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h6VNbEkN010195 for ; Thu, 31 Jul 2003 16:37:14 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h6VNbE6q010194; Thu, 31 Jul 2003 16:37:14 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200307312337.h6VNbE6q010194@xorpc.icir.org> Date: Thu, 31 Jul 2003 16:37:14 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.hh route_table_cache.cc route_table_cache.hh route_table_debug.hh route_table_nhlookup.cc route_table_nhlookup.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: jcardona@xorpc.icir.org. 03/07/31 16:37:14 Modified files: xorp/bgp/: next_hop_resolver.hh route_table_cache.cc route_table_cache.hh route_table_debug.hh route_table_nhlookup.cc route_table_nhlookup.hh Log message: Replaced trie.hh with ref_trie.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 18:57:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 18:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h711w2wF038639 for ; Thu, 31 Jul 2003 18:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h711w1dk083462 for ; Thu, 31 Jul 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h711w1RW001880; Thu, 31 Jul 2003 18:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h711veRW001873 for ; Thu, 31 Jul 2003 18:57:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h711vddk083460 for ; Thu, 31 Jul 2003 18:57:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h711vdkN020300 for ; Thu, 31 Jul 2003 18:57:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h711vdtG020299; Thu, 31 Jul 2003 18:57:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308010157.h711vdtG020299@xorpc.icir.org> Date: Thu, 31 Jul 2003 18:57:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/07/31 18:57:39 Modified files: xorp/rib/: TODO Log message: Add a TODO entry to make test_rib_client.cc work properly _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 19:11:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 19:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h712C1wF040990 for ; Thu, 31 Jul 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h712C1dk083579 for ; Thu, 31 Jul 2003 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h712C1RW002092; Thu, 31 Jul 2003 19:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h712BqRW002086 for ; Thu, 31 Jul 2003 19:11:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h712Bqdk083577 for ; Thu, 31 Jul 2003 19:11:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h712BqkN026047 for ; Thu, 31 Jul 2003 19:11:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h712BqpF026046; Thu, 31 Jul 2003 19:11:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308010211.h712BqpF026046@xorpc.icir.org> Date: Thu, 31 Jul 2003 19:11:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/harness/ Makefile.am xorp/fea/ Makefile.am Makefile.in xorp/libcomm/ Makefile.am Makefile.in xorp/libproto/ Makefile.am Makefile.in xorp/libxorp/ Makefile.am Makefile.in xorp/mfea/ Makefile.am xorp/mld6igmp/ Makefile.am Makefile.in xorp/mrt/ Makefile.am Makefile.in xorp/ospfd/xorp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xorp/policy/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in xorp/rip/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in xorp/rtrmgr/tools/ Makefile.am Makefile.in xorp/utils/ Makefile.am Makefile.in xorp/xrl/tests/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/07/31 19:11:52 Modified files: xorp/bgp/: Makefile.am Makefile.in xorp/bgp/harness/: Makefile.am xorp/fea/: Makefile.am Makefile.in xorp/libcomm/: Makefile.am Makefile.in xorp/libproto/: Makefile.am Makefile.in xorp/libxorp/: Makefile.am Makefile.in xorp/mfea/: Makefile.am xorp/mld6igmp/: Makefile.am Makefile.in xorp/mrt/: Makefile.am Makefile.in xorp/ospfd/xorp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xorp/policy/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in xorp/rip/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in xorp/rtrmgr/tools/: Makefile.am Makefile.in xorp/utils/: Makefile.am Makefile.in xorp/xrl/tests/: Makefile.am Makefile.in Log message: Makefile.am tweaks: * Replace all check_PROGRAMS with noinst_PROGRAMS The reason is because the check_PROGRAMS are built only if we run "gmake check", and this might be confusing. E.g., if someone modifies a test program, then runs gmake, and then the program itself, it will still execute the old program. * Explicitly enumerate the TESTS programs. E.g., avoid things like TESTS = $(noinst_PROGRAMS) because in number of cases they are not equivalent, and this can be a source for an error (see the next bullet). On the down side, now the C/C++ test programs have to be listed twice: once in TESTS, and once in noinst_PROGRAMS * Fix a bug in rib/Makefile.am, where a number of binary programs (some of them old and unused for quite some time) were snicked-in as tests programs by me two commits ago. This should fix a tinderbox failure in the rib tests. Sigh... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Thu Jul 31 21:08:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Jul 2003 21:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71491wF060014 for ; Thu, 31 Jul 2003 21:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71491dk084388 for ; Thu, 31 Jul 2003 21:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71491RW003567; Thu, 31 Jul 2003 21:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7148DRW003554 for ; Thu, 31 Jul 2003 21:08:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7148Ddk084381 for ; Thu, 31 Jul 2003 21:08:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7148DkN027189 for ; Thu, 31 Jul 2003 21:08:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7148Dce027188; Thu, 31 Jul 2003 21:08:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308010408.h7148Dce027188@xorpc.icir.org> Date: Thu, 31 Jul 2003 21:08:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in auth.cc constants.hh packet_queue.cc packet_queue.hh packets.hh port.cc port.hh route_db.hh test_request.cc test_update_queue.cc xorp/rip/ output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh packet_assembly.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/07/31 21:08:13 Modified files: xorp/rip/: Makefile.am Makefile.in auth.cc constants.hh packet_queue.cc packet_queue.hh packets.hh port.cc port.hh route_db.hh test_request.cc test_update_queue.cc Added files: xorp/rip/: output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh packet_assembly.hh Log message: o Change interface to PacketQueue and head drop should amount of data buffered exceed configurable limit. o Add packet assembly code specialized for IPv4 and IPv6 versions. o Add address family specialized data to constants.hh and to Port class. o Initial pass on output processing. o Resulting compilation fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:25 2005 Subject: No subject Fri Aug 1 9:32:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 09:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71GX2wF092610 for ; Fri, 1 Aug 2003 09:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71GX1dk092150 for ; Fri, 1 Aug 2003 09:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71GX1RW016208; Fri, 1 Aug 2003 09:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71GWtRW016199 for ; Fri, 1 Aug 2003 09:32:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71GWtdk092148 for ; Fri, 1 Aug 2003 09:32:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71GWtkN088068 for ; Fri, 1 Aug 2003 09:32:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71GWsb3088067; Fri, 1 Aug 2003 09:32:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308011632.h71GWsb3088067@xorpc.icir.org> Date: Fri, 1 Aug 2003 9:32:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh route_db.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/01 09:32:54 Modified files: xorp/rip/: port.hh route_db.hh Log message: kdoc nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 10:10:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 10:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HB1wF098946 for ; Fri, 1 Aug 2003 10:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HB1dk092508 for ; Fri, 1 Aug 2003 10:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71HB1RW016991; Fri, 1 Aug 2003 10:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71HA6RW016971 for ; Fri, 1 Aug 2003 10:10:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HA6dk092496 for ; Fri, 1 Aug 2003 10:10:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HA5kN088323 for ; Fri, 1 Aug 2003 10:10:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71HA54g088322; Fri, 1 Aug 2003 10:10:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308011710.h71HA54g088322@xorpc.icir.org> Date: Fri, 1 Aug 2003 10:10:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/01 10:10:05 Modified files: xorp/rip/: constants.hh Log message: Add address family specific constants for RIP multicast groups. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 10:10:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 10:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HB2wF098961 for ; Fri, 1 Aug 2003 10:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HB2dk092512 for ; Fri, 1 Aug 2003 10:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71HB2RW017003; Fri, 1 Aug 2003 10:11:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71HAjRW016984 for ; Fri, 1 Aug 2003 10:10:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HAjdk092506 for ; Fri, 1 Aug 2003 10:10:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71HAjkN088367 for ; Fri, 1 Aug 2003 10:10:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71HAi2d088366; Fri, 1 Aug 2003 10:10:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308011710.h71HAi2d088366@xorpc.icir.org> Date: Fri, 1 Aug 2003 10:10:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/01 10:10:44 Modified files: xorp/rip/: output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh Log message: o Add destination ip and port no's to output constructors and use them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 15:49:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 15:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Mo2vs009825 for ; Fri, 1 Aug 2003 15:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Mo2dk095692 for ; Fri, 1 Aug 2003 15:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71Mo1RW023403; Fri, 1 Aug 2003 15:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71MnGRW023385 for ; Fri, 1 Aug 2003 15:49:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71MnGdk095683 for ; Fri, 1 Aug 2003 15:49:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71MnGkN038892 for ; Fri, 1 Aug 2003 15:49:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71MnGkg038891; Fri, 1 Aug 2003 15:49:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308012249.h71MnGkg038891@xorpc.icir.org> Date: Fri, 1 Aug 2003 15:49:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp ospf.tp rib.tp snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/08/01 15:49:16 Modified files: xorp/etc/templates/: bgp.tp fea.tp ospf.tp rib.tp snmp.tp Log message: Remove the "../" part from the path to each module/binary that would be started by the rtrmgr. Thus, the paths to the binaries will be relative not from the rtrmgr directory, but from the XORP root directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 15:49:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 15:50:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Mo5vs009840 for ; Fri, 1 Aug 2003 15:50:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Mo5dk095696 for ; Fri, 1 Aug 2003 15:50:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71Mo4RW023414; Fri, 1 Aug 2003 15:50:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71MnrRW023397 for ; Fri, 1 Aug 2003 15:49:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Mnqdk095687 for ; Fri, 1 Aug 2003 15:49:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71MnqkN038919 for ; Fri, 1 Aug 2003 15:49:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71MnqSB038918; Fri, 1 Aug 2003 15:49:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308012249.h71MnqSB038918@xorpc.icir.org> Date: Fri, 1 Aug 2003 15:49:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/08/01 15:49:52 Modified files: xorp/rtrmgr/: TODO Log message: Add a todo entry to fix test_router_manager error returning. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 16:07:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 16:08:43 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71N8hvs014327 for ; Fri, 1 Aug 2003 16:08:43 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71N8gdk095873 for ; Fri, 1 Aug 2003 16:08:42 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71N82RW023824; Fri, 1 Aug 2003 16:08:41 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71N7URW023813 for ; Fri, 1 Aug 2003 16:07:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71N7Udk095869 for ; Fri, 1 Aug 2003 16:07:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71N7UkN039120 for ; Fri, 1 Aug 2003 16:07:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71N7UhV039119; Fri, 1 Aug 2003 16:07:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308012307.h71N7UhV039119@xorpc.icir.org> Date: Fri, 1 Aug 2003 16:07:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc module_manager.cc module_manager.hh op_commands.cc template_tree.cc template_tree.hh test_module_manager.cc test_sample_config.cc test_templates.cc xorpsh_main.cc xorpsh_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/08/01 16:07:29 Modified files: xorp/rtrmgr/: main_rtrmgr.cc module_manager.cc module_manager.hh op_commands.cc template_tree.cc template_tree.hh test_module_manager.cc test_sample_config.cc test_templates.cc xorpsh_main.cc xorpsh_main.hh Log message: * Add support for using the root of the xorp tree for calculating all paths to template and xrl files, etc. The ordering in computing the root of the tree is: 1. The shell environment XORP_ROOT 2. The parent directory the binary in question is run from (only if it contains the etc/templates and the xrl/targets directories) 3. The XORP_ROOT value as defined in config.h (currently this is the installation directory, and it defaults to /usr/local/xorp) * Now the root of the tree is used for the following: 1. To compute the path to the config template dir, and the xrl dir. Default: xorp_root_dir + "/" + "etc/templates" xorp_root_dir + "/" + "xrl/targets" 2. To compute the path to the config boot file. Default: config_root_dir + "/" + config.boot 3. To compute the path to the Xorp modules binaries as specified in the "%modinfo path" variables in the etc/templates/*.tp files: xorp_root_dir + "/" + modinfo_path 4. To compute the path to the xorpsh commands as specified in the "%command" variables in the etc/templates/*.cmds files: xorp_root_dir + "/" + command * When starting xorpsh, don't search anymore for the executable "show" commands in the current and the parent directory. Instead, use only the xorp_root_dir + the configured path to each command. This change is for consistency reasons with the rest of the paths configurations. * Fix the XORP finder naming in test_module_manager.cc : "../libxipc/finder" -> "../libxipc/xorp_finder" * Misc. formatting nits here and there. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 16:38:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 16:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Nd1vs027008 for ; Fri, 1 Aug 2003 16:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Nd0dk096173 for ; Fri, 1 Aug 2003 16:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71Nd0RW024512; Fri, 1 Aug 2003 16:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h71NcvRW024506 for ; Fri, 1 Aug 2003 16:38:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h71Ncvdk096171 for ; Fri, 1 Aug 2003 16:38:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h71NcvkN039424 for ; Fri, 1 Aug 2003 16:38:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h71Ncvnx039423; Fri, 1 Aug 2003 16:38:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308012338.h71Ncvnx039423@xorpc.icir.org> Date: Fri, 1 Aug 2003 16:38:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/mibs/ Makefile.am Makefile.in xorp/mibs/snmpdscripts/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: pavlin@xorpc.icir.org. 03/08/01 16:38:57 Modified files: ./: Makefile.in configure configure.in xorp/mibs/: Makefile.am Makefile.in Added files: xorp/mibs/snmpdscripts/: Makefile.am Makefile.in Log message: * Added file mibs/snmpdscripts/Makefile.am that takes care of installing the snmp-related scripts * Added the generation of the corresponding Makefile to configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Fri Aug 1 17:40:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Aug 2003 17:41:40 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h720fevs051891 for ; Fri, 1 Aug 2003 17:41:40 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h720fddk096719 for ; Fri, 1 Aug 2003 17:41:39 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h720f1RW025585; Fri, 1 Aug 2003 17:41:39 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h720e2RW025558 for ; Fri, 1 Aug 2003 17:40:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h720e1dk096691 for ; Fri, 1 Aug 2003 17:40:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h720e1kN051409 for ; Fri, 1 Aug 2003 17:40:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h720e1Fv051408; Fri, 1 Aug 2003 17:40:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308020040.h720e1Fv051408@xorpc.icir.org> Date: Fri, 1 Aug 2003 17:40:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ args.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/01 17:40:01 Modified files: xorp/bgp/harness/: args.sh Log message: Its not always possible to tell which test has failed. Has a test failed to complete or has the next test failed to start? Explicitly mark the start and end of tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Sat Aug 2 9:10:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Aug 2003 09:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h72GB1vs063942 for ; Sat, 2 Aug 2003 09:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h72GB1dk007516 for ; Sat, 2 Aug 2003 09:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h72GB0RW008677; Sat, 2 Aug 2003 09:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h72GADRW008662 for ; Sat, 2 Aug 2003 09:10:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h72GADdk007510 for ; Sat, 2 Aug 2003 09:10:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h72GADkN015955 for ; Sat, 2 Aug 2003 09:10:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h72GADd7015954; Sat, 2 Aug 2003 09:10:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308021610.h72GADd7015954@xorpc.icir.org> Date: Sat, 2 Aug 2003 9:10:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_sample_config.cc test_templates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/08/02 09:10:13 Modified files: xorp/rtrmgr/: test_sample_config.cc test_templates.cc Log message: Fix the path to the root of the XORP tree to be the parent directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Sun Aug 3 1:31:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 03 Aug 2003 01:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h738W2vs092612 for ; Sun, 3 Aug 2003 01:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h738W2dk013395 for ; Sun, 3 Aug 2003 01:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h738W1RW018614; Sun, 3 Aug 2003 01:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h738VRRW018607 for ; Sun, 3 Aug 2003 01:31:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h738VQdk013393 for ; Sun, 3 Aug 2003 01:31:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h738VQkN010038 for ; Sun, 3 Aug 2003 01:31:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h738VQam010037; Sun, 3 Aug 2003 01:31:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308030831.h738VQam010037@xorpc.icir.org> Date: Sun, 3 Aug 2003 1:31:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/03 01:31:26 Modified files: xorp/pim/: xrl_pim_node.cc Log message: Comment-out experimental RIB-related code that was commited by accident by the last commit of this file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 12:27:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 12:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74JS2vs025790 for ; Mon, 4 Aug 2003 12:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74JS1dk031104 for ; Mon, 4 Aug 2003 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74JS1RW016355; Mon, 4 Aug 2003 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74JR5RW016328 for ; Mon, 4 Aug 2003 12:27:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74JR5dk031100 for ; Mon, 4 Aug 2003 12:27:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74JR5kN049069 for ; Mon, 4 Aug 2003 12:27:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74JR5IL049068; Mon, 4 Aug 2003 12:27:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308041927.h74JR5IL049068@xorpc.icir.org> Date: Mon, 4 Aug 2003 12:27:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ from.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/policy/ Changes by: pavlin@xorpc.icir.org. 03/08/04 12:27:05 Modified files: xorp/policy/: from.cc Log message: Add a missing return statement at the end of a template method (problem spotted by Adam with gcc-3.2.3) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 14:29:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 14:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74LU1vs084090 for ; Mon, 4 Aug 2003 14:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74LU1dk032165 for ; Mon, 4 Aug 2003 14:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74LU0RW018951; Mon, 4 Aug 2003 14:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74LTORW018918 for ; Mon, 4 Aug 2003 14:29:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74LTOdk032156 for ; Mon, 4 Aug 2003 14:29:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74LTOkN088026 for ; Mon, 4 Aug 2003 14:29:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74LTOOL088025; Mon, 4 Aug 2003 14:29:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308042129.h74LTOOL088025@xorpc.icir.org> Date: Mon, 4 Aug 2003 14:29:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_base.hh rt_tab_origin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/08/04 14:29:24 Modified files: xorp/rib/: rt_tab_base.hh rt_tab_origin.hh Log message: Add missing return statements (problem spotted by Adam with gcc-3.2.3) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 14:58:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Lx1vs005324 for ; Mon, 4 Aug 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Lx1dk032384 for ; Mon, 4 Aug 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Lx1RW019614; Mon, 4 Aug 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74LwwRW019607 for ; Mon, 4 Aug 2003 14:58:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Lwwdk032382 for ; Mon, 4 Aug 2003 14:58:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74LwwkN088257 for ; Mon, 4 Aug 2003 14:58:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74Lww6Z088256; Mon, 4 Aug 2003 14:58:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308042158.h74Lww6Z088256@xorpc.icir.org> Date: Mon, 4 Aug 2003 14:58:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_base.hh route_table_decision.hh route_table_deletion.hh route_table_ribin.hh route_table_ribout.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/08/04 14:58:58 Modified files: xorp/bgp/: route_table_base.hh route_table_decision.hh route_table_deletion.hh route_table_ribin.hh route_table_ribout.hh Log message: Add missing return statements (problem spotted by Adam with gcc-3.2.3) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:11:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NC1vs039897 for ; Mon, 4 Aug 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NC1dk032983 for ; Mon, 4 Aug 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NC1RW021265; Mon, 4 Aug 2003 16:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NBhRW021247 for ; Mon, 4 Aug 2003 16:11:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NBgdk032981 for ; Mon, 4 Aug 2003 16:11:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NBgkN088720 for ; Mon, 4 Aug 2003 16:11:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NBgug088719; Mon, 4 Aug 2003 16:11:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308042311.h74NBgug088719@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:11:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: atanu@xorpc.icir.org. 03/08/04 16:11:42 Modified files: xorp/libxipc/: call_xrl.cc Log message: Add some more warnings. Still trying in vain to find the reason for occasional BGP tinderbox failures. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:35:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:36:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na3vs056900 for ; Mon, 4 Aug 2003 16:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na3dk033145 for ; Mon, 4 Aug 2003 16:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Na2RW021732; Mon, 4 Aug 2003 16:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NZ9RW021714 for ; Mon, 4 Aug 2003 16:35:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZ9dk033134 for ; Mon, 4 Aug 2003 16:35:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZ9kN088923 for ; Mon, 4 Aug 2003 16:35:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NZ9eK088922; Mon, 4 Aug 2003 16:35:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308042335.h74NZ9eK088922@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:35:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/04 16:35:09 Added files: xorp/bgp/harness/: TODO Log message: The test_terminate.sh script doesn't actually verify that the bgp process has terminated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:35:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:36:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na6vs056945 for ; Mon, 4 Aug 2003 16:36:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na6dk033149 for ; Mon, 4 Aug 2003 16:36:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Na5RW021744; Mon, 4 Aug 2003 16:36:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NZXRW021721 for ; Mon, 4 Aug 2003 16:35:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZXdk033137 for ; Mon, 4 Aug 2003 16:35:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZWkN088935 for ; Mon, 4 Aug 2003 16:35:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NZWDc088934; Mon, 4 Aug 2003 16:35:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042335.h74NZWDc088934@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:35:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packet_assembly.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:35:32 Modified files: xorp/rip/: packet_assembly.hh Log message: Remember to set packet size when finishing off IPv4 packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:35:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:36:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na9vs056986 for ; Mon, 4 Aug 2003 16:36:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Na9dk033153 for ; Mon, 4 Aug 2003 16:36:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Na8RW021756; Mon, 4 Aug 2003 16:36:08 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NZwRW021726 for ; Mon, 4 Aug 2003 16:35:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZwdk033143 for ; Mon, 4 Aug 2003 16:35:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NZwkN088981 for ; Mon, 4 Aug 2003 16:35:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NZwCm088980; Mon, 4 Aug 2003 16:35:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042335.h74NZwCm088980@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:35:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packet_queue.hh packet_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:35:58 Modified files: xorp/rip/: packet_queue.hh packet_queue.cc Log message: Add empty() method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:36:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nb1vs057621 for ; Mon, 4 Aug 2003 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nb0dk033176 for ; Mon, 4 Aug 2003 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Nb0RW021792; Mon, 4 Aug 2003 16:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NadRW021774 for ; Mon, 4 Aug 2003 16:36:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Naddk033170 for ; Mon, 4 Aug 2003 16:36:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NadkN089025 for ; Mon, 4 Aug 2003 16:36:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74Nadis089024; Mon, 4 Aug 2003 16:36:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042336.h74Nadis089024@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:36:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:36:39 Modified files: xorp/rip/: port.cc Log message: Correct horizon policy code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:39:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Ne1vs064270 for ; Mon, 4 Aug 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Ne1dk033207 for ; Mon, 4 Aug 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Ne1RW021859; Mon, 4 Aug 2003 16:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NdrRW021850 for ; Mon, 4 Aug 2003 16:39:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Ndrdk033202 for ; Mon, 4 Aug 2003 16:39:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NdrkN089107 for ; Mon, 4 Aug 2003 16:39:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74Ndr2k089106; Mon, 4 Aug 2003 16:39:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042339.h74Ndr2k089106@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:39:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:39:53 Modified files: xorp/rip/: test_update_queue.cc Log message: Add missing newline. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:41:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Ng1vs065315 for ; Mon, 4 Aug 2003 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Ng1dk033254 for ; Mon, 4 Aug 2003 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Ng1RW021958; Mon, 4 Aug 2003 16:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NfARW021920 for ; Mon, 4 Aug 2003 16:41:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NfAdk033242 for ; Mon, 4 Aug 2003 16:41:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NfAkN089186 for ; Mon, 4 Aug 2003 16:41:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NfA4l089185; Mon, 4 Aug 2003 16:41:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042341.h74NfA4l089185@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:41:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_updates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:41:10 Modified files: xorp/rip/: output_updates.cc Log message: Iterator advance glitch - didn't happen if packet was full so last route in packet P would appear as first route in packet P + 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:26 2005 Subject: No subject Mon Aug 4 16:45:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nk1vs067384 for ; Mon, 4 Aug 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nk1dk033300 for ; Mon, 4 Aug 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Nk1RW022067; Mon, 4 Aug 2003 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NjXRW022057 for ; Mon, 4 Aug 2003 16:45:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NjXdk033291 for ; Mon, 4 Aug 2003 16:45:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NjXkN089279 for ; Mon, 4 Aug 2003 16:45:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NjX4t089278; Mon, 4 Aug 2003 16:45:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042345.h74NjX4t089278@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:45:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packets.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:45:33 Modified files: xorp/rip/: packets.hh Log message: Change vector sizing policy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 16:46:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 16:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nl1vs067653 for ; Mon, 4 Aug 2003 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nl0dk033316 for ; Mon, 4 Aug 2003 16:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74Nl0RW022120; Mon, 4 Aug 2003 16:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h74NkiRW022109 for ; Mon, 4 Aug 2003 16:46:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h74Nkidk033310 for ; Mon, 4 Aug 2003 16:46:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h74NkikN089309 for ; Mon, 4 Aug 2003 16:46:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h74NkiNc089308; Mon, 4 Aug 2003 16:46:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308042346.h74NkiNc089308@xorpc.icir.org> Date: Mon, 4 Aug 2003 16:46:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Makefile.am Makefile.in xorp/rip/ test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 16:46:44 Modified files: xorp/rip/: .cvsignore Makefile.am Makefile.in Added files: xorp/rip/: test_outputs.cc Log message: Add output process tester. This test needs cleaning up and wants a test for the table request output processing, but it's a start and has revealed quite a few gotchas already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 22:36:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 22:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h755b1vs082438 for ; Mon, 4 Aug 2003 22:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755b1dk035885 for ; Mon, 4 Aug 2003 22:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755b1RW026601; Mon, 4 Aug 2003 22:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755aRRW026593 for ; Mon, 4 Aug 2003 22:36:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755aRdk035881 for ; Mon, 4 Aug 2003 22:36:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h755aQkN091873 for ; Mon, 4 Aug 2003 22:36:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h755aQ6U091872; Mon, 4 Aug 2003 22:36:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308050536.h755aQ6U091872@xorpc.icir.org> Date: Mon, 4 Aug 2003 22:36:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/04 22:36:26 Modified files: xorp/fea/: mfea_proto_comm.hh Log message: Added a new method ProtoComm::ipproto() that returns the IP protocol number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 22:37:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 22:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h755c1vs082655 for ; Mon, 4 Aug 2003 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755c1dk035895 for ; Mon, 4 Aug 2003 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755c1RW026626; Mon, 4 Aug 2003 22:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755bURW026617 for ; Mon, 4 Aug 2003 22:37:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755bUdk035891 for ; Mon, 4 Aug 2003 22:37:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h755bTkN091940 for ; Mon, 4 Aug 2003 22:37:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h755bTj9091939; Mon, 4 Aug 2003 22:37:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308050537.h755bTj9091939@xorpc.icir.org> Date: Mon, 4 Aug 2003 22:37:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/04 22:37:29 Modified files: xorp/fea/: mfea_node.hh mfea_node.cc Log message: Added a new method MfeaNode::proto_comm_find_by_ipproto(int ipproto) that returns the ProtoComm for a given IP protocol number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 22:44:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 22:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h755k2vs084188 for ; Mon, 4 Aug 2003 22:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755k1dk035967 for ; Mon, 4 Aug 2003 22:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755k1RW026701; Mon, 4 Aug 2003 22:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h755j0RW026688 for ; Mon, 4 Aug 2003 22:45:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h755j0dk035946 for ; Mon, 4 Aug 2003 22:45:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h755j0kN092099 for ; Mon, 4 Aug 2003 22:45:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h755ix20092098; Mon, 4 Aug 2003 22:44:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308050544.h755ix20092098@xorpc.icir.org> Date: Mon, 4 Aug 2003 22:44:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_mrouter.hh mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/04 22:44:59 Modified files: xorp/fea/: mfea_mrouter.cc mfea_mrouter.hh mfea_proto_comm.cc Log message: Redesign the handling of the IGMP/ICMPV6 socket and the socket used for multicast routing. In case of FreeBSD, we can open two IGMP sockets: if we set one as a socket for multicast routing, then we can use both sockets to receive IGMP data messages. However, in case of Linux, we would receive the IGMP Membership Report messages only on the mrouter socket. In other words, the second IGMP socket will NOT receive the IGMP Membership Report messages. The fix (applied by this commit) to the above problem is to use a single socket that is shared for both IGMP/MLD protocol messages AND for multicast routing. The sharing mechanism takes care of properly opening the socket if it wasn't open by any party, and to close it when is not used by both parties anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 23:06:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 23:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75671vs088450 for ; Mon, 4 Aug 2003 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75671dk036200 for ; Mon, 4 Aug 2003 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75671RW026983; Mon, 4 Aug 2003 23:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75662RW026949 for ; Mon, 4 Aug 2003 23:06:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75662dk036184 for ; Mon, 4 Aug 2003 23:06:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75662kN098776 for ; Mon, 4 Aug 2003 23:06:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h756612m098774; Mon, 4 Aug 2003 23:06:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308050606.h756612m098774@xorpc.icir.org> Date: Mon, 4 Aug 2003 23:06:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 23:06:01 Modified files: xorp/rip/: test_outputs.cc Log message: o Add test and validator class for poison reverse output policy. o Partial clean-up - still a bit of a pigs ear. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 23:06:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 23:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75672vs088471 for ; Mon, 4 Aug 2003 23:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75672dk036204 for ; Mon, 4 Aug 2003 23:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75672RW026994; Mon, 4 Aug 2003 23:07:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7566MRW026959 for ; Mon, 4 Aug 2003 23:06:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7566Mdk036198 for ; Mon, 4 Aug 2003 23:06:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7566MkN098788 for ; Mon, 4 Aug 2003 23:06:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7566Mpv098787; Mon, 4 Aug 2003 23:06:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308050606.h7566Mpv098787@xorpc.icir.org> Date: Mon, 4 Aug 2003 23:06:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/04 23:06:22 Modified files: ./: RELEASE_NOTES Log message: Added a "Bug fix" entry for FEA/MFEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 23:37:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 23:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h756c1vs095761 for ; Mon, 4 Aug 2003 23:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h756c1dk036393 for ; Mon, 4 Aug 2003 23:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h756c0RW027619; Mon, 4 Aug 2003 23:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h756bdRW027603 for ; Mon, 4 Aug 2003 23:37:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h756bddk036390 for ; Mon, 4 Aug 2003 23:37:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h756bdkN099007 for ; Mon, 4 Aug 2003 23:37:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h756bdCj099006; Mon, 4 Aug 2003 23:37:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308050637.h756bdCj099006@xorpc.icir.org> Date: Mon, 4 Aug 2003 23:37:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 23:37:39 Modified files: xorp/rip/: output_table.cc Log message: Iterator advance glitch - didn't happen if packet was full so last route in packet P would appear as first route in packet P + 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Mon Aug 4 23:55:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Aug 2003 23:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h756u2vs000104 for ; Mon, 4 Aug 2003 23:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h756u1dk036553 for ; Mon, 4 Aug 2003 23:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h756u1RW028122; Mon, 4 Aug 2003 23:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h756tERW028101 for ; Mon, 4 Aug 2003 23:55:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h756tEdk036541 for ; Mon, 4 Aug 2003 23:55:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h756tEkN099206 for ; Mon, 4 Aug 2003 23:55:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h756tENd099205; Mon, 4 Aug 2003 23:55:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308050655.h756tENd099205@xorpc.icir.org> Date: Mon, 4 Aug 2003 23:55:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/04 23:55:14 Modified files: xorp/rip/: test_outputs.cc Log message: Add test cases for table output processing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 14:06:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 14:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75L71vs074763 for ; Tue, 5 Aug 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75L71dk044699 for ; Tue, 5 Aug 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75L70RW012787; Tue, 5 Aug 2003 14:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75L6oRW012778 for ; Tue, 5 Aug 2003 14:06:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75L6odk044689 for ; Tue, 5 Aug 2003 14:06:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75L6okN099255 for ; Tue, 5 Aug 2003 14:06:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75L6onS099254; Tue, 5 Aug 2003 14:06:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052106.h75L6onS099254@xorpc.icir.org> Date: Tue, 5 Aug 2003 14:06:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/05 14:06:49 Modified files: xorp/bgp/: path_attribute.cc Log message: From my reading of the spec (draft-ietf-idr-bgp4-20.txt) an unknown path attribute will have the optional bit set. However the transitive bit can be on or off. Previously the transitive bit had to be set. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 14:56:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 14:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Lv1vs085261 for ; Tue, 5 Aug 2003 14:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Lv1dk045107 for ; Tue, 5 Aug 2003 14:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75Lv1RW014168; Tue, 5 Aug 2003 14:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75LumRW014159 for ; Tue, 5 Aug 2003 14:56:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Lumdk045101 for ; Tue, 5 Aug 2003 14:56:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75LumkN004077 for ; Tue, 5 Aug 2003 14:56:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75LumOU004076; Tue, 5 Aug 2003 14:56:48 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052156.h75LumOU004076@xorpc.icir.org> Date: Tue, 5 Aug 2003 14:56:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ tokenize.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/05 14:56:48 Added files: xorp/bgp/harness/: tokenize.hh Log message: Move the tokenize routine into its own header file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 15:14:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 15:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75MF1vs094037 for ; Tue, 5 Aug 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75MF1dk045268 for ; Tue, 5 Aug 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75MF0RW014594; Tue, 5 Aug 2003 15:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75MEkRW014571 for ; Tue, 5 Aug 2003 15:14:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75MEkdk045263 for ; Tue, 5 Aug 2003 15:14:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75MEkkN010604 for ; Tue, 5 Aug 2003 15:14:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75MEjEn010603; Tue, 5 Aug 2003 15:14:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052214.h75MEjEn010603@xorpc.icir.org> Date: Tue, 5 Aug 2003 15:14:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc command.hh peer.cc peer.hh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/08/05 15:14:45 Modified files: xorp/bgp/harness/: command.cc command.hh peer.cc peer.hh xorp/docs/test_harness/: test_harness.tex Log message: Support for sending optional path attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 16:42:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 16:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nh1vs012491 for ; Tue, 5 Aug 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nh1dk046007 for ; Tue, 5 Aug 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75Nh1RW016497; Tue, 5 Aug 2003 16:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75NgARW016483 for ; Tue, 5 Aug 2003 16:42:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NgAdk045999 for ; Tue, 5 Aug 2003 16:42:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NgAkN016556 for ; Tue, 5 Aug 2003 16:42:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75NgA1f016555; Tue, 5 Aug 2003 16:42:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052342.h75NgA1f016555@xorpc.icir.org> Date: Tue, 5 Aug 2003 16:42:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/05 16:42:10 Modified files: xorp/bgp/harness/: peer.cc Log message: Out by one in argument checking code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 16:55:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 16:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nu1vs015723 for ; Tue, 5 Aug 2003 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nu1dk046142 for ; Tue, 5 Aug 2003 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75Nu1RW016768; Tue, 5 Aug 2003 16:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75NtERW016748 for ; Tue, 5 Aug 2003 16:55:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NtEdk046134 for ; Tue, 5 Aug 2003 16:55:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NtEkN022092 for ; Tue, 5 Aug 2003 16:55:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75NtEJa022091; Tue, 5 Aug 2003 16:55:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052355.h75NtEJa022091@xorpc.icir.org> Date: Tue, 5 Aug 2003 16:55:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_path_attribute1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/05 16:55:14 Added files: xorp/bgp/harness/: test_path_attribute1.sh Log message: Tests to verify that we correctly handle optional path attributes. Currently our BGP process is incorrectly propogating optional path attributes that don't have the transitive bit set. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 16:58:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nx1vs021666 for ; Tue, 5 Aug 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75Nx0dk046160 for ; Tue, 5 Aug 2003 16:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75Nx0RW016863; Tue, 5 Aug 2003 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h75NwLRW016837 for ; Tue, 5 Aug 2003 16:58:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NwLdk046158 for ; Tue, 5 Aug 2003 16:58:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h75NwLkN022149 for ; Tue, 5 Aug 2003 16:58:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h75NwLTJ022148; Tue, 5 Aug 2003 16:58:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308052358.h75NwLTJ022148@xorpc.icir.org> Date: Tue, 5 Aug 2003 16:58:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/05 16:58:21 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in Log message: Add test_path_attribute1.sh to the list of regression tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 17:20:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 17:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h760L2vs031414 for ; Tue, 5 Aug 2003 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h760L1dk046394 for ; Tue, 5 Aug 2003 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h760L1RW017365; Tue, 5 Aug 2003 17:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h760KtRW017357 for ; Tue, 5 Aug 2003 17:20:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h760Ktdk046392 for ; Tue, 5 Aug 2003 17:20:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h760KtkN027749 for ; Tue, 5 Aug 2003 17:20:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h760KtAW027748; Tue, 5 Aug 2003 17:20:55 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308060020.h760KtAW027748@xorpc.icir.org> Date: Tue, 5 Aug 2003 17:20:55 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_xrl_target.cc xorp/mibs/tests/ test_bgpmib.sh.in xorp/mibs/ bgp4_mib_1657_bgpidentifier.cc bgp4_mib_1657_bgpidentifier.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/05 17:20:55 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_xrl_target.cc xorp/mibs/tests/: test_bgpmib.sh.in Added files: xorp/mibs/: bgp4_mib_1657_bgpidentifier.cc bgp4_mib_1657_bgpidentifier.hh Log message: Implemented bgpIdentifier Implemented bgp{Established,BackwardTransition}Trap Wrote additional tests Fixed a memory leak _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 18:19:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 18:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h761K1vs043972 for ; Tue, 5 Aug 2003 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761K1dk046840 for ; Tue, 5 Aug 2003 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761K0RW018543; Tue, 5 Aug 2003 18:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761JHRW018531 for ; Tue, 5 Aug 2003 18:19:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761JHdk046827 for ; Tue, 5 Aug 2003 18:19:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h761JHkN036690 for ; Tue, 5 Aug 2003 18:19:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h761JGDN036689; Tue, 5 Aug 2003 18:19:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308060119.h761JGDN036689@xorpc.icir.org> Date: Tue, 5 Aug 2003 18:19:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/05 18:19:16 Modified files: xorp/fea/: routing_socket.cc Log message: Bug fix: the minimum size of a message received on a routing socket shoudn't be sizeof(struct if_msghdr), but sizeof(u_short) + 2 * sizeof(u_char), because all messages received on routing sockets must start with the following three fields: { u_short foo_msglen; u_char foo_version; u_char foo_type; ... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 18:31:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 18:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h761W1vs047050 for ; Tue, 5 Aug 2003 18:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761W0dk046930 for ; Tue, 5 Aug 2003 18:32:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761W0RW018717; Tue, 5 Aug 2003 18:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761V4RW018701 for ; Tue, 5 Aug 2003 18:31:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761V3dk046928 for ; Tue, 5 Aug 2003 18:31:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h761V3kN042455 for ; Tue, 5 Aug 2003 18:31:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h761V34b042454; Tue, 5 Aug 2003 18:31:03 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308060131.h761V34b042454@xorpc.icir.org> Date: Tue, 5 Aug 2003 18:31:03 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/05 18:31:03 Modified files: xorp/mibs/: Makefile.am Log message: Corrected SUBDIR _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 18:39:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 18:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h761e1vs048785 for ; Tue, 5 Aug 2003 18:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761e1dk047015 for ; Tue, 5 Aug 2003 18:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761e1RW018834; Tue, 5 Aug 2003 18:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h761d7RW018810 for ; Tue, 5 Aug 2003 18:39:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h761d6dk047004 for ; Tue, 5 Aug 2003 18:39:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h761d6kN042659 for ; Tue, 5 Aug 2003 18:39:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h761d6fP042658; Tue, 5 Aug 2003 18:39:06 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308060139.h761d6fP042658@xorpc.icir.org> Date: Tue, 5 Aug 2003 18:39:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/05 18:39:06 Modified files: xorp/mibs/: Makefile.am Log message: Undid last commit _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 19:09:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 19:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h762A1vs056242 for ; Tue, 5 Aug 2003 19:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h762A1dk047212 for ; Tue, 5 Aug 2003 19:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h762A0RW019236; Tue, 5 Aug 2003 19:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7629PRW019224 for ; Tue, 5 Aug 2003 19:09:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7629Pdk047207 for ; Tue, 5 Aug 2003 19:09:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7629PkN043458 for ; Tue, 5 Aug 2003 19:09:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7629PV7043457; Tue, 5 Aug 2003 19:09:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308060209.h7629PV7043457@xorpc.icir.org> Date: Tue, 5 Aug 2003 19:09:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/05 19:09:25 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: * Bug fix: when setting the broadcast or point-to-point address check that rti_info[RTAX_BRD]->sa_family matches our address family. This is needed because otherwise the address in (rti_info[RTAX_BRD] may be bogus. * Bug fix: when setting the broadcast or point_to_point flags per address, set them to false if there was no broadcast or point_to_point address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 19:10:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h762B1vs056474 for ; Tue, 5 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h762B1dk047241 for ; Tue, 5 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h762B1RW019264; Tue, 5 Aug 2003 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h762AhRW019252 for ; Tue, 5 Aug 2003 19:10:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h762Ahdk047239 for ; Tue, 5 Aug 2003 19:10:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h762AhkN043576 for ; Tue, 5 Aug 2003 19:10:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h762Ahg8043575; Tue, 5 Aug 2003 19:10:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308060210.h762Ahg8043575@xorpc.icir.org> Date: Tue, 5 Aug 2003 19:10:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/05 19:10:43 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc ifconfig_parse_ifaddrs.cc Log message: Bug fix: when setting the broadcast or point_to_point flags per address, set them to false if there was no broadcast or point_to_point address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:27 2005 Subject: No subject Tue Aug 5 22:04:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Aug 2003 22:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76551vs089517 for ; Tue, 5 Aug 2003 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76551dk048422 for ; Tue, 5 Aug 2003 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76551RW021306; Tue, 5 Aug 2003 22:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7654lRW021300 for ; Tue, 5 Aug 2003 22:04:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7654ldk048417 for ; Tue, 5 Aug 2003 22:04:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7654lkN050020 for ; Tue, 5 Aug 2003 22:04:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7654lXa050019; Tue, 5 Aug 2003 22:04:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308060504.h7654lXa050019@xorpc.icir.org> Date: Tue, 5 Aug 2003 22:04:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/08/05 22:04:47 Modified files: xorp/bgp/harness/: peer.cc Log message: Move the initialization of "static const uint8_t _valid[]" out of the class definition, because gcc-3.3 doesn't like it inside. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 0:44:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 00:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h767j1vs020225 for ; Wed, 6 Aug 2003 00:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h767j1dk049515 for ; Wed, 6 Aug 2003 00:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h767j1RW024061; Wed, 6 Aug 2003 00:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h767imRW024051 for ; Wed, 6 Aug 2003 00:44:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h767imdk049510 for ; Wed, 6 Aug 2003 00:44:48 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h767ilkN068519 for ; Wed, 6 Aug 2003 00:44:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h767il3U068518; Wed, 6 Aug 2003 00:44:47 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308060744.h767il3U068518@xorpc.icir.org> Date: Wed, 6 Aug 2003 0:44:47 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/06 00:44:47 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc Log message: Fixed row comparison _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 10:24:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 10:25:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HP5vs055236 for ; Wed, 6 Aug 2003 10:25:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HP2dk055787; Wed, 6 Aug 2003 10:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76HP1RW003534; Wed, 6 Aug 2003 10:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76HOERW003509 for ; Wed, 6 Aug 2003 10:24:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HODdk055780 for ; Wed, 6 Aug 2003 10:24:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HODkN022411 for ; Wed, 6 Aug 2003 10:24:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76HODiq022410; Wed, 6 Aug 2003 10:24:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308061724.h76HODiq022410@xorpc.icir.org> Date: Wed, 6 Aug 2003 10:24:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/06 10:24:13 Modified files: xorp/bgp/: path_attribute.hh Log message: 1) Remove the UKNOWN type value for path attributes. 2) Add a method to set the partial bit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 10:31:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 10:32:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HW5vs056783 for ; Wed, 6 Aug 2003 10:32:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HW1dk055866; Wed, 6 Aug 2003 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76HW1RW003697; Wed, 6 Aug 2003 10:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76HVkRW003689 for ; Wed, 6 Aug 2003 10:31:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HVkdk055864 for ; Wed, 6 Aug 2003 10:31:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HVkkN022747 for ; Wed, 6 Aug 2003 10:31:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76HVkUp022746; Wed, 6 Aug 2003 10:31:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308061731.h76HVkUp022746@xorpc.icir.org> Date: Wed, 6 Aug 2003 10:31:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 10:31:46 Modified files: xorp/libxorp/: vif.cc Log message: Change vif.str() to print the _is_underlying_vif_up flag status as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 10:52:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 10:53:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Hr5vs061537 for ; Wed, 6 Aug 2003 10:53:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Hr1dk056038; Wed, 6 Aug 2003 10:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Hr1RW004272; Wed, 6 Aug 2003 10:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76HquRW004263 for ; Wed, 6 Aug 2003 10:52:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Hqudk056033 for ; Wed, 6 Aug 2003 10:52:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76HqukN023464 for ; Wed, 6 Aug 2003 10:52:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76HquY6023463; Wed, 6 Aug 2003 10:52:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308061752.h76HquY6023463@xorpc.icir.org> Date: Wed, 6 Aug 2003 10:52:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh plumbing.cc route_table_filter.cc route_table_filter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/06 10:52:55 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh plumbing.cc route_table_filter.cc route_table_filter.hh Log message: An output filter has been added for unknown path attributes: 1) If transitive bit is not set the attribute is removed. 2) If the transitive bit is set the partial bit is unconditionally set. We remove the unknown attributes on output rather than input because it is possible that dynamic filters may be keyed on these attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 11:30:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 11:31:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IV5vs069166 for ; Wed, 6 Aug 2003 11:31:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IV1dk056403; Wed, 6 Aug 2003 11:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76IV0RW005330; Wed, 6 Aug 2003 11:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76IUjRW005313 for ; Wed, 6 Aug 2003 11:30:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IUjdk056399 for ; Wed, 6 Aug 2003 11:30:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IUjkN029542 for ; Wed, 6 Aug 2003 11:30:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76IUjPh029541; Wed, 6 Aug 2003 11:30:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308061830.h76IUjPh029541@xorpc.icir.org> Date: Wed, 6 Aug 2003 11:30:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_path_attribute1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/06 11:30:45 Modified files: xorp/bgp/harness/: test_path_attribute1.sh Log message: 1) Move all the tests to the working set. 2) Modify tests to handle the partial bit being set. 3) Update comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 11:50:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 11:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ip2vs078988 for ; Wed, 6 Aug 2003 11:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ip1dk056622 for ; Wed, 6 Aug 2003 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Ip1RW005818; Wed, 6 Aug 2003 11:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76IoNRW005797 for ; Wed, 6 Aug 2003 11:50:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IoNdk056613 for ; Wed, 6 Aug 2003 11:50:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IoNkN035566 for ; Wed, 6 Aug 2003 11:50:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76IoNfk035565; Wed, 6 Aug 2003 11:50:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308061850.h76IoNfk035565@xorpc.icir.org> Date: Wed, 6 Aug 2003 11:50:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh mfea_node.cc xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 11:50:22 Modified files: xorp/fea/: mfea_node.hh mfea_node.cc xrl_mfea_node.cc Log message: * Add new methods that enable/disable/start/stop a MFEA vif: MfeaNode::enable_vif() MfeaNode::disable_vif() MfeaNode::start_vif() MfeaNode::stop_vif() * Use the above methods in XrlMfeaNode to enable/disable/start/stop a vif via XRLs instead of directly manipulating the vifs. * If an error, use the argument vif_name instead of mfea_node->name() to print the name of the vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 11:51:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 11:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Iq1vs079193 for ; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Iq1dk056640 for ; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Iq1RW005850; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76IpHRW005831 for ; Wed, 6 Aug 2003 11:51:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IpHdk056628 for ; Wed, 6 Aug 2003 11:51:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76IpHkN035607 for ; Wed, 6 Aug 2003 11:51:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76IpHWs035606; Wed, 6 Aug 2003 11:51:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308061851.h76IpHWs035606@xorpc.icir.org> Date: Wed, 6 Aug 2003 11:51:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 11:51:17 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Log message: * Add new methods that enable/disable/start/stop a MLD6IGMP vif: Mld6igmpNode::enable_vif() Mld6igmpNode::disable_vif() Mld6igmpNode::start_vif() Mld6igmpNode::stop_vif() * Use the above methods in XrlMld6igmpNode to enable/disable/start/stop a vif via XRLs instead of directly manipulating the vifs. * If an error, use the argument vif_name instead of mld6igmp_vif->name() to print the name of the vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 11:52:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 11:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ir1vs079411 for ; Wed, 6 Aug 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ir1dk056656 for ; Wed, 6 Aug 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Ir0RW005891; Wed, 6 Aug 2003 11:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Iq1RW005858 for ; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Iq1dk056638 for ; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Iq1kN035672 for ; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76Iq191035671; Wed, 6 Aug 2003 11:52:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308061852.h76Iq191035671@xorpc.icir.org> Date: Wed, 6 Aug 2003 11:52:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/06 11:52:01 Modified files: xorp/pim/: pim_node.hh pim_node.cc xrl_pim_node.cc Log message: * Add new methods that enable/disable/start/stop a PIM vif: PimNode::enable_vif() PimNode::disable_vif() PimNode::start_vif() PimNode::stop_vif() * Use the above methods in XrlPimNode to enable/disable/start/stop a vif via XRLs instead of directly manipulating the vifs. * If an error, use the argument vif_name instead of pim_vif->name() to print the name of the vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 12:19:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 12:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JK1vs084864 for ; Wed, 6 Aug 2003 12:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JK1dk056929 for ; Wed, 6 Aug 2003 12:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76JK0RW006481; Wed, 6 Aug 2003 12:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76JJgRW006469 for ; Wed, 6 Aug 2003 12:19:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JJgdk056924 for ; Wed, 6 Aug 2003 12:19:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JJgkN046850 for ; Wed, 6 Aug 2003 12:19:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76JJfsl046849; Wed, 6 Aug 2003 12:19:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308061919.h76JJfsl046849@xorpc.icir.org> Date: Wed, 6 Aug 2003 12:19:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: atanu@xorpc.icir.org. 03/08/06 12:19:41 Modified files: xorp/devnotes/: work_plan.txt Log message: BGP - handling of unknown attributes completed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 12:28:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 12:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JT1vs086636 for ; Wed, 6 Aug 2003 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JT1dk057003 for ; Wed, 6 Aug 2003 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76JT1RW006696; Wed, 6 Aug 2003 12:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76JSnRW006687 for ; Wed, 6 Aug 2003 12:28:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JSndk056999 for ; Wed, 6 Aug 2003 12:28:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76JSnkN048059 for ; Wed, 6 Aug 2003 12:28:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76JSnfG048058; Wed, 6 Aug 2003 12:28:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308061928.h76JSnfG048058@xorpc.icir.org> Date: Wed, 6 Aug 2003 12:28:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.cc ref_ptr.hh test_ref_ptr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/08/06 12:28:49 Modified files: xorp/libxorp/: ref_ptr.cc ref_ptr.hh test_ref_ptr.cc Log message: o Don't allocate a pool entry for null pointers in pointer constructor. We explicitly check for null during unref and don't free the blighters. [10 points jcardona who noticed there was a problem, -945 for the idiot responsible]. o Add ref counter balance to pool class to keep track of all calls to counter increment and decrement methods. o Check balance is zero at end of ref_ptr test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 13:53:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 13:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ks1vs003169 for ; Wed, 6 Aug 2003 13:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Ks1dk057788 for ; Wed, 6 Aug 2003 13:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Ks1RW008548; Wed, 6 Aug 2003 13:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76KrCRW008526 for ; Wed, 6 Aug 2003 13:53:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76KrBdk057778 for ; Wed, 6 Aug 2003 13:53:11 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76KrBkN081618 for ; Wed, 6 Aug 2003 13:53:11 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76KrBTK081617; Wed, 6 Aug 2003 13:53:11 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308062053.h76KrBTK081617@xorpc.icir.org> Date: Wed, 6 Aug 2003 13:53:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/06 13:53:11 Modified files: xorp/bgp/: path_attribute.cc Log message: Remove outdated comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 14:42:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 14:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Lh1vs013569 for ; Wed, 6 Aug 2003 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Lh1dk058209 for ; Wed, 6 Aug 2003 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Lh0RW009689; Wed, 6 Aug 2003 14:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76LgLRW009667 for ; Wed, 6 Aug 2003 14:42:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76LgLdk058204 for ; Wed, 6 Aug 2003 14:42:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76LgLkN088532 for ; Wed, 6 Aug 2003 14:42:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76LgL2M088531; Wed, 6 Aug 2003 14:42:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308062142.h76LgL2M088531@xorpc.icir.org> Date: Wed, 6 Aug 2003 14:42:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/08/06 14:42:20 Modified files: ./: Makefile.am Makefile.in Log message: Build utils immediately after libraries. Facilitates top-level gmake check since bgp checks depend on utils/runit being built before running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 14:43:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 14:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Li1vs013787 for ; Wed, 6 Aug 2003 14:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Li1dk058224 for ; Wed, 6 Aug 2003 14:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Li1RW009733; Wed, 6 Aug 2003 14:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76LhaRW009720 for ; Wed, 6 Aug 2003 14:43:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Lhadk058218 for ; Wed, 6 Aug 2003 14:43:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76LhakN088591 for ; Wed, 6 Aug 2003 14:43:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76LhaJf088590; Wed, 6 Aug 2003 14:43:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308062143.h76LhaJf088590@xorpc.icir.org> Date: Wed, 6 Aug 2003 14:43:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: hodson@xorpc.icir.org. 03/08/06 14:43:36 Modified files: xorp/cli/libtecla/: Makefile.in Log message: Build all for 'check' target. Facilitates top-level gmake check invocation with or without running gmake first. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 14:56:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 14:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Lv1vs022666 for ; Wed, 6 Aug 2003 14:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Lv1dk058368 for ; Wed, 6 Aug 2003 14:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Lv1RW010025; Wed, 6 Aug 2003 14:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76LuhRW010012 for ; Wed, 6 Aug 2003 14:56:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Luhdk058366 for ; Wed, 6 Aug 2003 14:56:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76LuhkN089333 for ; Wed, 6 Aug 2003 14:56:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76LuhX4089331; Wed, 6 Aug 2003 14:56:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308062156.h76LuhX4089331@xorpc.icir.org> Date: Wed, 6 Aug 2003 14:56:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/src/ Makefile.am Makefile.in spfifc.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/ospfd/src/ Changes by: hodson@xorpc.icir.org. 03/08/06 14:56:42 Modified files: xorp/ospfd/src/: Makefile.am Makefile.in spfifc.C Log message: Use OpenSSL implementation of md5. Removes need for contrib dir file linking hackery in Makefile.am. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 16:48:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 16:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Nn1vs069986 for ; Wed, 6 Aug 2003 16:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Nn0dk059206 for ; Wed, 6 Aug 2003 16:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Nn0RW012386; Wed, 6 Aug 2003 16:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h76Nm9RW012364 for ; Wed, 6 Aug 2003 16:48:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Nm9dk059200 for ; Wed, 6 Aug 2003 16:48:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h76Nm9kN015960 for ; Wed, 6 Aug 2003 16:48:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h76Nm94X015959; Wed, 6 Aug 2003 16:48:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308062348.h76Nm94X015959@xorpc.icir.org> Date: Wed, 6 Aug 2003 16:48:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgppeertable.cc xorp/xrl/interfaces/ bgp.xif bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 03/08/06 16:48:09 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgppeertable.cc xorp/xrl/interfaces/: bgp.xif bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh Log message: Move set_parameter higher up the bgp.xif file then fix the generated errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 17:27:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770S1vs098967 for ; Wed, 6 Aug 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770S1dk059494 for ; Wed, 6 Aug 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770S0RW013092; Wed, 6 Aug 2003 17:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770RLRW013077 for ; Wed, 6 Aug 2003 17:27:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770RLdk059488 for ; Wed, 6 Aug 2003 17:27:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770RLkN017038 for ; Wed, 6 Aug 2003 17:27:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770RLXF017037; Wed, 6 Aug 2003 17:27:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070027.h770RLXF017037@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:27:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_node.cc mfea_node.hh xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 17:27:21 Modified files: xorp/fea/: mfea_config.cc mfea_node.cc mfea_node.hh xrl_mfea_node.cc Log message: Rename all "reason" and "err" return-by-reference error messages to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 17:30:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770V1vs099567 for ; Wed, 6 Aug 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770V1dk059536 for ; Wed, 6 Aug 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770V0RW013146; Wed, 6 Aug 2003 17:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770UCRW013132 for ; Wed, 6 Aug 2003 17:30:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770UCdk059532 for ; Wed, 6 Aug 2003 17:30:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770UCkN017146 for ; Wed, 6 Aug 2003 17:30:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770UCsj017145; Wed, 6 Aug 2003 17:30:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070030.h770UCsj017145@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:30:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_config.cc mld6igmp_node.cc xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 17:30:12 Modified files: xorp/mld6igmp/: mld6igmp_config.cc mld6igmp_node.cc xrl_mld6igmp_node.cc Log message: * Add new method Mld6igmpNode::get_vif_proto_version() and use it when an XRL is received instead of directly accessing the vif state. * Rename all "reason" and "err" return-by-reference error messages to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:28 2005 Subject: No subject Wed Aug 6 17:31:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770W2vs099788 for ; Wed, 6 Aug 2003 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770W2dk059550 for ; Wed, 6 Aug 2003 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770W1RW013178; Wed, 6 Aug 2003 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770VxRW013168 for ; Wed, 6 Aug 2003 17:31:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770Vwdk059546 for ; Wed, 6 Aug 2003 17:31:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770VwkN017202 for ; Wed, 6 Aug 2003 17:31:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770Vwql017201; Wed, 6 Aug 2003 17:31:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070031.h770Vwql017201@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:31:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc pim_config.cc xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/06 17:31:58 Modified files: xorp/pim/: pim_node.hh pim_node.cc pim_config.cc xrl_pim_node.cc Log message: * Add a number of new methods PimNode::get_foo() for all configurable parameters, and use them when an XRL is received instead of directly accessing the PimNode inner state. * Rename all "reason" and "err" return-by-reference error messages to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 17:35:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770a1vs000690 for ; Wed, 6 Aug 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770a1dk059591 for ; Wed, 6 Aug 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770a1RW013286; Wed, 6 Aug 2003 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770ZcRW013276 for ; Wed, 6 Aug 2003 17:35:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770Zcdk059589 for ; Wed, 6 Aug 2003 17:35:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770ZckN017305 for ; Wed, 6 Aug 2003 17:35:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770Zc8k017304; Wed, 6 Aug 2003 17:35:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070035.h770Zc8k017304@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:35:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 17:35:38 Modified files: xorp/mld6igmp/: mld6igmp_node.hh Log message: * Add new method Mld6igmpNode::get_vif_proto_version() and use it when an XRL is received instead of directly accessing the vif state. * Rename all "reason" and "err" return-by-reference error messages to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 17:36:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770b1vs000889 for ; Wed, 6 Aug 2003 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770b1dk059607 for ; Wed, 6 Aug 2003 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770b1RW013310; Wed, 6 Aug 2003 17:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770acRW013300 for ; Wed, 6 Aug 2003 17:36:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770abdk059603 for ; Wed, 6 Aug 2003 17:36:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770abkN017360 for ; Wed, 6 Aug 2003 17:36:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770ab06017359; Wed, 6 Aug 2003 17:36:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070036.h770ab06017359@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:36:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/08/06 17:36:37 Modified files: xorp/libproto/: proto_node.hh Log message: Rename all "reason" and "err" return-by-reference error messages to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 17:40:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770f1vs001719 for ; Wed, 6 Aug 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770f1dk059652 for ; Wed, 6 Aug 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770f0RW013386; Wed, 6 Aug 2003 17:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770ejRW013375 for ; Wed, 6 Aug 2003 17:40:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770ejdk059650 for ; Wed, 6 Aug 2003 17:40:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770eikN023171 for ; Wed, 6 Aug 2003 17:40:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770eiCR023170; Wed, 6 Aug 2003 17:40:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308070040.h770eiCR023170@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:40:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_updates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/06 17:40:44 Modified files: xorp/rip/: output_updates.cc Log message: Use default route entries for constructed packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 17:46:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 17:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h770l1vs002865 for ; Wed, 6 Aug 2003 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770l0dk059710 for ; Wed, 6 Aug 2003 17:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770l0RW013486; Wed, 6 Aug 2003 17:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h770k5RW013474 for ; Wed, 6 Aug 2003 17:46:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h770k5dk059706 for ; Wed, 6 Aug 2003 17:46:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h770k5kN028157 for ; Wed, 6 Aug 2003 17:46:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h770k5xd028156; Wed, 6 Aug 2003 17:46:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308070046.h770k5xd028156@xorpc.icir.org> Date: Wed, 6 Aug 2003 17:46:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packets.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/08/06 17:46:05 Modified files: xorp/rip/: packets.hh Log message: o Use a sensible default number of route entries in packet. o Minor tweak to resizing policy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:07:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h77182vs006924 for ; Wed, 6 Aug 2003 18:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77181dk059880 for ; Wed, 6 Aug 2003 18:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77181RW013827; Wed, 6 Aug 2003 18:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7717TRW013810 for ; Wed, 6 Aug 2003 18:07:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717Sdk059870 for ; Wed, 6 Aug 2003 18:07:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717SkN032540 for ; Wed, 6 Aug 2003 18:07:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7717SFG032539; Wed, 6 Aug 2003 18:07:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070107.h7717SFG032539@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:07:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_node.cc mfea_proto_comm.cc mfea_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:07:28 Modified files: xorp/fea/: mfea_mrouter.cc mfea_node.cc mfea_proto_comm.cc mfea_vif.cc Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:07:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h77182vs006940 for ; Wed, 6 Aug 2003 18:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77182dk059884 for ; Wed, 6 Aug 2003 18:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77182RW013838; Wed, 6 Aug 2003 18:08:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7717kRW013817 for ; Wed, 6 Aug 2003 18:07:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717jdk059872 for ; Wed, 6 Aug 2003 18:07:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717jkN032591 for ; Wed, 6 Aug 2003 18:07:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7717jGg032590; Wed, 6 Aug 2003 18:07:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070107.h7717jGg032590@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:07:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ mfea_node.cc mfea_unix_comm.cc mfea_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:07:45 Modified files: xorp/mfea/: mfea_node.cc mfea_unix_comm.cc mfea_vif.cc Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:07:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:08:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h77183vs006955 for ; Wed, 6 Aug 2003 18:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77183dk059888 for ; Wed, 6 Aug 2003 18:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77183RW013849; Wed, 6 Aug 2003 18:08:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7717wRW013821 for ; Wed, 6 Aug 2003 18:07:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717wdk059878 for ; Wed, 6 Aug 2003 18:07:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7717wkN032641 for ; Wed, 6 Aug 2003 18:07:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7717wOe032640; Wed, 6 Aug 2003 18:07:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070107.h7717wOe032640@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:07:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:07:58 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_vif.cc Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:09:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h771A1vs007355 for ; Wed, 6 Aug 2003 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h771A1dk059907 for ; Wed, 6 Aug 2003 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h771A1RW013886; Wed, 6 Aug 2003 18:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7719BRW013870 for ; Wed, 6 Aug 2003 18:09:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7719Bdk059902 for ; Wed, 6 Aug 2003 18:09:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7719BkN032728 for ; Wed, 6 Aug 2003 18:09:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7719Bc2032727; Wed, 6 Aug 2003 18:09:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070109.h7719Bc2032727@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:09:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc pim_nbr.cc pim_node.cc pim_node_cli.cc pim_node_cli.hh pim_proto_hello.cc pim_rp.cc pim_scope_zone_table.cc pim_vif.hh pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:09:11 Modified files: xorp/pim/: pim_bsr.cc pim_nbr.cc pim_node.cc pim_node_cli.cc pim_node_cli.hh pim_proto_hello.cc pim_rp.cc pim_scope_zone_table.cc pim_vif.hh pim_vif.cc Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:10:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h771B1vs007571 for ; Wed, 6 Aug 2003 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h771B1dk059936 for ; Wed, 6 Aug 2003 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h771B1RW013913; Wed, 6 Aug 2003 18:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h771AERW013897 for ; Wed, 6 Aug 2003 18:10:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h771ADdk059930 for ; Wed, 6 Aug 2003 18:10:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h771ADkN032857 for ; Wed, 6 Aug 2003 18:10:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h771ADq7032856; Wed, 6 Aug 2003 18:10:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070110.h771ADq7032856@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:10:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:10:13 Modified files: xorp/rib/: rib_manager.cc Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 18:10:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 18:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h771B2vs007586 for ; Wed, 6 Aug 2003 18:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h771B2dk059940 for ; Wed, 6 Aug 2003 18:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h771B2RW013924; Wed, 6 Aug 2003 18:11:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h771AkRW013905 for ; Wed, 6 Aug 2003 18:10:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h771Akdk059932 for ; Wed, 6 Aug 2003 18:10:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h771AkkN032923 for ; Wed, 6 Aug 2003 18:10:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h771Akbb032922; Wed, 6 Aug 2003 18:10:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070110.h771Akbb032922@xorpc.icir.org> Date: Wed, 6 Aug 2003 18:10:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/06 18:10:46 Modified files: xorp/libxorp/: vif.hh Log message: foo(void) -> foo() for class methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 19:23:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 19:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h772O1vs021474 for ; Wed, 6 Aug 2003 19:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772O1dk060400 for ; Wed, 6 Aug 2003 19:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772O1RW014866; Wed, 6 Aug 2003 19:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772NcRW014857 for ; Wed, 6 Aug 2003 19:23:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772Ncdk060398 for ; Wed, 6 Aug 2003 19:23:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h772NckN035642 for ; Wed, 6 Aug 2003 19:23:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h772Nc3Q035641; Wed, 6 Aug 2003 19:23:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070223.h772Nc3Q035641@xorpc.icir.org> Date: Wed, 6 Aug 2003 19:23:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 19:23:38 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Rename "err" to "error_msg". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 19:24:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 19:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h772P1vs021674 for ; Wed, 6 Aug 2003 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772P1dk060411 for ; Wed, 6 Aug 2003 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772P0RW014896; Wed, 6 Aug 2003 19:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772ODRW014878 for ; Wed, 6 Aug 2003 19:24:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772ODdk060406 for ; Wed, 6 Aug 2003 19:24:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h772ODkN035693 for ; Wed, 6 Aug 2003 19:24:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h772ODK8035692; Wed, 6 Aug 2003 19:24:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070224.h772ODK8035692@xorpc.icir.org> Date: Wed, 6 Aug 2003 19:24:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/08/06 19:24:13 Modified files: xorp/rib/: vifmanager.cc Log message: Rename "err" to "error_msg" (for consistency with fea/xrl_mfea_vif_manager.cc) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:29 2005 Subject: No subject Wed Aug 6 19:41:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 19:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h772g2vs024929 for ; Wed, 6 Aug 2003 19:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772g1dk060572 for ; Wed, 6 Aug 2003 19:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772g1RW015170; Wed, 6 Aug 2003 19:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h772fjRW015157 for ; Wed, 6 Aug 2003 19:41:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h772fidk060570 for ; Wed, 6 Aug 2003 19:41:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h772fikN036025 for ; Wed, 6 Aug 2003 19:41:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h772fi53036024; Wed, 6 Aug 2003 19:41:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070241.h772fi53036024@xorpc.icir.org> Date: Wed, 6 Aug 2003 19:41:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/06 19:41:44 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc xorp/pim/: pim_vif.cc Log message: Remove the KERNEL_UP/KERNEL_DOWN string from flags_string(), because now the Vif::str() method returns the _is_underlying_vif_up status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Wed Aug 6 20:12:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 20:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h773D1vs030760 for ; Wed, 6 Aug 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h773D1dk060785 for ; Wed, 6 Aug 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h773D0RW015609; Wed, 6 Aug 2003 20:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h773CORW015600 for ; Wed, 6 Aug 2003 20:12:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h773COdk060783 for ; Wed, 6 Aug 2003 20:12:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h773COkN036725 for ; Wed, 6 Aug 2003 20:12:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h773COxo036724; Wed, 6 Aug 2003 20:12:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308070312.h773COxo036724@xorpc.icir.org> Date: Wed, 6 Aug 2003 20:12:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/06 20:12:24 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: When sending "set_vif_flags" XRL to a MFEA client, the is_up flag is set to true if the kernel interface is UP; i.e., we ignore whether we have really started the vif with the MFEA. The reason for this change is to be consistent with the vif flag status updates; otherwise, if this flag is set to the status of the vif inside the MFEA we need to refactor the MFEA configuration code. Though, in the future we may want this behavior instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Wed Aug 6 21:51:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 21:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h774q1vs049604 for ; Wed, 6 Aug 2003 21:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h774q1dk061511 for ; Wed, 6 Aug 2003 21:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h774q1RW016874; Wed, 6 Aug 2003 21:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h774pNRW016858 for ; Wed, 6 Aug 2003 21:51:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h774pNdk061505 for ; Wed, 6 Aug 2003 21:51:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h774pNkN037654 for ; Wed, 6 Aug 2003 21:51:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h774pNvU037653; Wed, 6 Aug 2003 21:51:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308070451.h774pNvU037653@xorpc.icir.org> Date: Wed, 6 Aug 2003 21:51:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ clnt-gen xorp/xrl/scripts/Xif/ util.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/Xif/ Changes by: hodson@xorpc.icir.org. 03/08/06 21:51:23 Modified files: xorp/xrl/scripts/: clnt-gen xorp/xrl/scripts/Xif/: util.py Log message: o Name callback types and marshalling functions according to request name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Wed Aug 6 21:52:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 21:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h774r1vs049807 for ; Wed, 6 Aug 2003 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h774r1dk061521 for ; Wed, 6 Aug 2003 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h774r1RW016900; Wed, 6 Aug 2003 21:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h774qTRW016887 for ; Wed, 6 Aug 2003 21:52:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h774qTdk061519 for ; Wed, 6 Aug 2003 21:52:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h774qTkN037697 for ; Wed, 6 Aug 2003 21:52:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h774qSe1037696; Wed, 6 Aug 2003 21:52:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308070452.h774qSe1037696@xorpc.icir.org> Date: Wed, 6 Aug 2003 21:52:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc ...common_xif.hh ...coord_xif.cc ...coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...fea_xif.cc ...fea_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_event_notifier_xif.cc ...finder_event_notifier_xif.hh ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh ...finder_xif.cc ...finder_xif.hh ...fti_xif.cc ...fti_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh ...mfea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ..! .mld6igmp_x! if.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...pim_xif.hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr_client_xif.hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh ...xorp_if_mib_xif.cc ...xorp_if_mib_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/08/06 21:52:28 Modified files: xorp/xrl/interfaces/: bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh fea_xif.cc fea_xif.hh finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp_if_mib_xif.cc xorp_if_mib_xif.hh Log message: o Regenerate following naming changes in clnt-gen. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Wed Aug 6 22:23:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Aug 2003 22:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h775O1vs055689 for ; Wed, 6 Aug 2003 22:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h775O1dk061768 for ; Wed, 6 Aug 2003 22:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h775O0RW017259; Wed, 6 Aug 2003 22:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h775NWRW017250 for ; Wed, 6 Aug 2003 22:23:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h775NWdk061766 for ; Wed, 6 Aug 2003 22:23:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h775NWkN038090 for ; Wed, 6 Aug 2003 22:23:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h775NWZC038089; Wed, 6 Aug 2003 22:23:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308070523.h775NWZC038089@xorpc.icir.org> Date: Wed, 6 Aug 2003 22:23:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgpversion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: hodson@xorpc.icir.org. 03/08/06 22:23:32 Modified files: xorp/mibs/: bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgpversion.cc Log message: Sync Xrl interface callback types with xrl files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Thu Aug 7 8:31:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Aug 2003 08:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h77FW1vs081763 for ; Thu, 7 Aug 2003 08:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77FW1dk068308 for ; Thu, 7 Aug 2003 08:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77FW1RW027043; Thu, 7 Aug 2003 08:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77FV6RW027031 for ; Thu, 7 Aug 2003 08:31:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77FV6dk068301 for ; Thu, 7 Aug 2003 08:31:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h77FV6kN094036 for ; Thu, 7 Aug 2003 08:31:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h77FV6b8094035; Thu, 7 Aug 2003 08:31:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308071531.h77FV6b8094035@xorpc.icir.org> Date: Thu, 7 Aug 2003 8:31:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgpidentifier.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: hodson@xorpc.icir.org. 03/08/07 08:31:06 Modified files: xorp/mibs/: bgp4_mib_1657_bgpidentifier.cc Log message: Remove xrl interface order dependent type declaration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Thu Aug 7 15:33:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Aug 2003 15:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h77MY2vs077235 for ; Thu, 7 Aug 2003 15:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77MY2dk072186 for ; Thu, 7 Aug 2003 15:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77MY1RW006395; Thu, 7 Aug 2003 15:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h77MXHRW006375 for ; Thu, 7 Aug 2003 15:33:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h77MXHdk072180 for ; Thu, 7 Aug 2003 15:33:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h77MXHkN052970 for ; Thu, 7 Aug 2003 15:33:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h77MXHo2052969; Thu, 7 Aug 2003 15:33:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308072233.h77MXHo2052969@xorpc.icir.org> Date: Thu, 7 Aug 2003 15:33:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/07 15:33:17 Modified files: xorp/bgp/: path_attribute.hh Log message: Add the type values for multiprotocol reachable and unreachable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Thu Aug 7 18:51:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Aug 2003 18:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h781q1vs018367 for ; Thu, 7 Aug 2003 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h781q1dk073618 for ; Thu, 7 Aug 2003 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h781q1RW009312; Thu, 7 Aug 2003 18:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h781pmRW009303 for ; Thu, 7 Aug 2003 18:51:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h781pldk073616 for ; Thu, 7 Aug 2003 18:51:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h781plkN067057 for ; Thu, 7 Aug 2003 18:51:47 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h781plLC067056; Thu, 7 Aug 2003 18:51:47 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308080151.h781plLC067056@xorpc.icir.org> Date: Thu, 7 Aug 2003 18:51:47 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/07 18:51:47 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Added mpatrol option, useful only for debugging _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Fri Aug 8 9:38:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Aug 2003 09:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h78Gd1vs093001 for ; Fri, 8 Aug 2003 09:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78Gd1dk081561 for ; Fri, 8 Aug 2003 09:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78Gd1RW021926; Fri, 8 Aug 2003 09:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78Gc8RW021914 for ; Fri, 8 Aug 2003 09:38:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78Gc8dk081553 for ; Fri, 8 Aug 2003 09:38:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h78Gc8kN023761 for ; Fri, 8 Aug 2003 09:38:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h78Gc74l023760; Fri, 8 Aug 2003 09:38:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308081638.h78Gc74l023760@xorpc.icir.org> Date: Fri, 8 Aug 2003 9:38:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/mibs/ bgp4_mib_1657_bgpidentifier.cc xorp/mibs/tests/ test_bgpmib.sh.in xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/08/08 09:38:07 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/mibs/: bgp4_mib_1657_bgpidentifier.cc xorp/mibs/tests/: test_bgpmib.sh.in xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Address minor naming consistency nit: bgp xrl method get_bgpid -> get_bgp_id bgp xrl method set_bgpid -> set_bgp_id _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Fri Aug 8 11:17:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Aug 2003 11:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h78II1vs013683 for ; Fri, 8 Aug 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78II1dk082374 for ; Fri, 8 Aug 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78II0RW023590; Fri, 8 Aug 2003 11:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78IHBRW023575 for ; Fri, 8 Aug 2003 11:17:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78IHBdk082367 for ; Fri, 8 Aug 2003 11:17:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h78IHBkN024461 for ; Fri, 8 Aug 2003 11:17:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h78IHBPQ024460; Fri, 8 Aug 2003 11:17:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308081817.h78IHBPQ024460@xorpc.icir.org> Date: Fri, 8 Aug 2003 11:17:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt xorp/xrl/interfaces/ fea.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/08/08 11:17:11 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt Removed files: xorp/xrl/interfaces/: fea.xif Log message: Remove empty fea.xif and references to it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Fri Aug 8 14:01:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Aug 2003 14:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h78L22vs049493 for ; Fri, 8 Aug 2003 14:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78L21dk083782 for ; Fri, 8 Aug 2003 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78L21RW026491; Fri, 8 Aug 2003 14:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78L1FRW026473 for ; Fri, 8 Aug 2003 14:01:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78L1Fdk083771 for ; Fri, 8 Aug 2003 14:01:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h78L1FkN069325 for ; Fri, 8 Aug 2003 14:01:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h78L1FFm069324; Fri, 8 Aug 2003 14:01:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308082101.h78L1FFm069324@xorpc.icir.org> Date: Fri, 8 Aug 2003 14:01:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 03/08/08 14:01:15 Modified files: xorp/etc/templates/: bgp.tp Log message: Address minor naming consistency nit: bgp xrl method get_bgpid -> get_bgp_id bgp xrl method set_bgpid -> set_bgp_id _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Fri Aug 8 15:34:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Aug 2003 15:35:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h78MZ3vs068534 for ; Fri, 8 Aug 2003 15:35:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78MZ2dk084601 for ; Fri, 8 Aug 2003 15:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78MZ1RW028097; Fri, 8 Aug 2003 15:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h78MYsRW028090 for ; Fri, 8 Aug 2003 15:34:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h78MYsdk084596 for ; Fri, 8 Aug 2003 15:34:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h78MYskN083718 for ; Fri, 8 Aug 2003 15:34:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h78MYs5F083717; Fri, 8 Aug 2003 15:34:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308082234.h78MYs5F083717@xorpc.icir.org> Date: Fri, 8 Aug 2003 15:34:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/08 15:34:53 Modified files: xorp/pim/: xrl_pim_node.cc Log message: Reverse-back experimental code that was enabled by mistake by the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Sun Aug 10 15:00:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 10 Aug 2003 15:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM11vs026716 for ; Sun, 10 Aug 2003 15:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM11dk009053 for ; Sun, 10 Aug 2003 15:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM11RW000039; Sun, 10 Aug 2003 15:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM0tRW000032 for ; Sun, 10 Aug 2003 15:00:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM0sdk009051 for ; Sun, 10 Aug 2003 15:00:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM0skN029064 for ; Sun, 10 Aug 2003 15:00:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7AM0sMs029063; Sun, 10 Aug 2003 15:00:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308102200.h7AM0sMs029063@xorpc.icir.org> Date: Sun, 10 Aug 2003 15:00:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/10 15:00:54 Modified files: xorp/fea/: iftree.cc Log message: * Added new method IfTree::ignore_duplicates(const IfTree& o) This method ignores state in the local tree that is duplicated in the other tree (see the iftree.hh kdoc comments for details) * Added kdoc explanation text to iftree.hh regarding IfTree::finalize_state() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:30 2005 Subject: No subject Sun Aug 10 15:01:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 10 Aug 2003 15:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM21vs026931 for ; Sun, 10 Aug 2003 15:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM21dk009063 for ; Sun, 10 Aug 2003 15:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM21RW000068; Sun, 10 Aug 2003 15:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM1ORW000056 for ; Sun, 10 Aug 2003 15:01:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM1Odk009059 for ; Sun, 10 Aug 2003 15:01:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM1OkN029091 for ; Sun, 10 Aug 2003 15:01:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7AM1OL7029090; Sun, 10 Aug 2003 15:01:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308102201.h7AM1OL7029090@xorpc.icir.org> Date: Sun, 10 Aug 2003 15:01:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/10 15:01:24 Modified files: xorp/fea/: iftree.hh Log message: * Added new method IfTree::ignore_duplicates(const IfTree& o) This method ignores state in the local tree that is duplicated in the other tree (see the iftree.hh kdoc comments for details) * Added kdoc explanation text to iftree.hh regarding IfTree::finalize_state() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Sun Aug 10 15:02:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 10 Aug 2003 15:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM41vs027314 for ; Sun, 10 Aug 2003 15:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM41dk009086 for ; Sun, 10 Aug 2003 15:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM40RW000101; Sun, 10 Aug 2003 15:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7AM30RW000093 for ; Sun, 10 Aug 2003 15:03:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM30dk009082 for ; Sun, 10 Aug 2003 15:03:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7AM2xkN029149 for ; Sun, 10 Aug 2003 15:03:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7AM2xDI029148; Sun, 10 Aug 2003 15:02:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308102202.h7AM2xDI029148@xorpc.icir.org> Date: Sun, 10 Aug 2003 15:02:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/10 15:02:59 Modified files: xorp/fea/: xrl_ifmanager.cc Log message: Ignore operations that don't change anything when committing interface manager transactions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Sun Aug 10 23:18:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 10 Aug 2003 23:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7B6J1vs021595 for ; Sun, 10 Aug 2003 23:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7B6J1dk012323 for ; Sun, 10 Aug 2003 23:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7B6J1RW005312; Sun, 10 Aug 2003 23:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7B6ItRW005306 for ; Sun, 10 Aug 2003 23:18:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7B6Itdk012321 for ; Sun, 10 Aug 2003 23:18:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7B6ItkN033001 for ; Sun, 10 Aug 2003 23:18:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7B6Itop033000; Sun, 10 Aug 2003 23:18:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308110618.h7B6Itop033000@xorpc.icir.org> Date: Sun, 10 Aug 2003 23:18:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/10 23:18:55 Modified files: xorp/fea/: iftree.cc Log message: When IfTreeAddr[4,6]::set_bcast() or set_endpoint() is called, do NOT set the broadcast or p2p flags. Those are always explicity set somewhere else as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 10:20:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 10:21:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BHL6vs051297 for ; Mon, 11 Aug 2003 10:21:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BHL5dk018762 for ; Mon, 11 Aug 2003 10:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BHL5RW015609; Mon, 11 Aug 2003 10:21:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BHKORW015576 for ; Mon, 11 Aug 2003 10:20:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BHKOdk018754 for ; Mon, 11 Aug 2003 10:20:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BHKOkN088476 for ; Mon, 11 Aug 2003 10:20:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7BHKOTW088475; Mon, 11 Aug 2003 10:20:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308111720.h7BHKOTW088475@xorpc.icir.org> Date: Mon, 11 Aug 2003 10:20:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/08/11 10:20:24 Modified files: xorp/fea/: iftree.hh Log message: Correct description of endpoint(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 11:09:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 11:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIA1vs061456 for ; Mon, 11 Aug 2003 11:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIA1dk019163 for ; Mon, 11 Aug 2003 11:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BIA1RW016575; Mon, 11 Aug 2003 11:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BI9vRW016569 for ; Mon, 11 Aug 2003 11:09:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BI9udk019158 for ; Mon, 11 Aug 2003 11:09:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BI9ukN088802 for ; Mon, 11 Aug 2003 11:09:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7BI9uIU088801; Mon, 11 Aug 2003 11:09:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308111809.h7BI9uIU088801@xorpc.icir.org> Date: Mon, 11 Aug 2003 11:09:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/11 11:09:56 Modified files: xorp/bgp/: parameter.hh Log message: SAFI = 3 - Removed in draft-ietf-idr-rfc2858bis-04.txt. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 11:11:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 11:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIC1vs067278 for ; Mon, 11 Aug 2003 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIC1dk019201 for ; Mon, 11 Aug 2003 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BIC1RW016631; Mon, 11 Aug 2003 11:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BIBnRW016619 for ; Mon, 11 Aug 2003 11:11:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIBmdk019199 for ; Mon, 11 Aug 2003 11:11:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BIBmkN088865 for ; Mon, 11 Aug 2003 11:11:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7BIBmdP088864; Mon, 11 Aug 2003 11:11:48 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308111811.h7BIBmdP088864@xorpc.icir.org> Date: Mon, 11 Aug 2003 11:11:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.hh path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/11 11:11:48 Modified files: xorp/bgp/: path_attribute.hh path_attribute.cc Log message: Start of multiprotocol extensions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 12:08:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BJ91vs093596 for ; Mon, 11 Aug 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BJ91dk019814 for ; Mon, 11 Aug 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BJ91RW017785; Mon, 11 Aug 2003 12:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BJ8ORW017761 for ; Mon, 11 Aug 2003 12:08:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BJ8Ndk019805 for ; Mon, 11 Aug 2003 12:08:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BJ8NkN097457 for ; Mon, 11 Aug 2003 12:08:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7BJ8NwX097456; Mon, 11 Aug 2003 12:08:23 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308111908.h7BJ8NwX097456@xorpc.icir.org> Date: Mon, 11 Aug 2003 12:08:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ rfc2545.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/08/11 12:08:23 Added files: xorp/bgp/docs/: rfc2545.txt Log message: Use of BGP-4 Multiprotocol Extensions for IPv6 Inter-Domain Routing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 14:14:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 14:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BLF2vs024151 for ; Mon, 11 Aug 2003 14:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BLF1dk021039 for ; Mon, 11 Aug 2003 14:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BLF1RW020489; Mon, 11 Aug 2003 14:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7BLEBRW020454 for ; Mon, 11 Aug 2003 14:14:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BLEAdk021034 for ; Mon, 11 Aug 2003 14:14:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7BLEAkN036597 for ; Mon, 11 Aug 2003 14:14:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7BLEAE6036588; Mon, 11 Aug 2003 14:14:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308112114.h7BLEAE6036588@xorpc.icir.org> Date: Mon, 11 Aug 2003 14:14:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/08/11 14:14:10 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh Log message: Group get_all methods at end of interface to make reading the get_configured methods that are supposed to be used easier to read. Note use of get_all methods is supposed to be for debugging and note use as discouraged. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 18:55:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 18:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1u2vs094001 for ; Mon, 11 Aug 2003 18:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1u1dk023252 for ; Mon, 11 Aug 2003 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C1u1RW025482; Mon, 11 Aug 2003 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C1tbRW025464 for ; Mon, 11 Aug 2003 18:55:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1tadk023250 for ; Mon, 11 Aug 2003 18:55:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1takN043772 for ; Mon, 11 Aug 2003 18:55:36 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7C1tab2043771; Mon, 11 Aug 2003 18:55:36 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308120155.h7C1tab2043771@xorpc.icir.org> Date: Mon, 11 Aug 2003 18:55:36 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgppeertable.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/11 18:55:36 Modified files: xorp/mibs/: bgp4_mib_1657_bgppeertable.cc Log message: Added temporary fix to the problem that cause getbulk requests to fail with delegated processing. Suggested by the Net-SNMP community. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 18:57:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 18:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1w1vs094406 for ; Mon, 11 Aug 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1w1dk023270 for ; Mon, 11 Aug 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C1w0RW025511; Mon, 11 Aug 2003 18:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C1vqRW025505 for ; Mon, 11 Aug 2003 18:57:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1vqdk023266 for ; Mon, 11 Aug 2003 18:57:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C1vqkN043825 for ; Mon, 11 Aug 2003 18:57:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7C1vq5v043824; Mon, 11 Aug 2003 18:57:52 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308120157.h7C1vq5v043824@xorpc.icir.org> Date: Mon, 11 Aug 2003 18:57:52 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/11 18:57:52 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Modified bgpPeerTable test to use GETBULK requests, which used to fail. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Mon Aug 11 19:52:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Aug 2003 19:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C2r1vs005039 for ; Mon, 11 Aug 2003 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C2r1dk023633 for ; Mon, 11 Aug 2003 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C2r1RW026198; Mon, 11 Aug 2003 19:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C2q2RW026182 for ; Mon, 11 Aug 2003 19:52:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C2q2dk023629 for ; Mon, 11 Aug 2003 19:52:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C2q2kN044313 for ; Mon, 11 Aug 2003 19:52:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7C2q2F6044312; Mon, 11 Aug 2003 19:52:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308120252.h7C2q2F6044312@xorpc.icir.org> Date: Mon, 11 Aug 2003 19:52:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ config_param.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/11 19:52:01 Modified files: xorp/libxorp/: config_param.hh Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 1:05:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 01:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C861vs064591 for ; Tue, 12 Aug 2003 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C861dk025743 for ; Tue, 12 Aug 2003 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C860RW000713; Tue, 12 Aug 2003 01:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7C85YRW000706 for ; Tue, 12 Aug 2003 01:05:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C85Ydk025737 for ; Tue, 12 Aug 2003 01:05:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7C85YkN067367 for ; Tue, 12 Aug 2003 01:05:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7C85Ynf067366; Tue, 12 Aug 2003 01:05:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308120805.h7C85Ynf067366@xorpc.icir.org> Date: Tue, 12 Aug 2003 1:05:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ config_param.hh test_config_param.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/12 01:05:34 Modified files: xorp/libxorp/: config_param.hh test_config_param.cc Log message: * Added operator++ and operator-- to ConfigParam * Add the appropriate tests to test_config_param.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 8:09:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 08:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFA1vs047355 for ; Tue, 12 Aug 2003 08:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFA1dk030795 for ; Tue, 12 Aug 2003 08:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFA1RW007464; Tue, 12 Aug 2003 08:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CF9NRW007440 for ; Tue, 12 Aug 2003 08:09:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CF9Mdk030775 for ; Tue, 12 Aug 2003 08:09:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CF9MkN005628 for ; Tue, 12 Aug 2003 08:09:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CF9Ma8005627; Tue, 12 Aug 2003 08:09:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121509.h7CF9Ma8005627@xorpc.icir.org> Date: Tue, 12 Aug 2003 8:09:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ fea.xrls fea_base.hh fea_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/08/12 08:09:22 Modified files: xorp/xrl/targets/: fea.xrls fea_base.hh fea_base.cc Log message: Regenerate autogenereated files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 8:10:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 08:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFB1vs047570 for ; Tue, 12 Aug 2003 08:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFB1dk030829 for ; Tue, 12 Aug 2003 08:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFB1RW007486; Tue, 12 Aug 2003 08:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFAIRW007479 for ; Tue, 12 Aug 2003 08:10:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFAIdk030818 for ; Tue, 12 Aug 2003 08:10:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFAIkN005703 for ; Tue, 12 Aug 2003 08:10:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CFAIKR005702; Tue, 12 Aug 2003 08:10:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121510.h7CFAIKR005702@xorpc.icir.org> Date: Tue, 12 Aug 2003 8:10:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/08/12 08:10:18 Modified files: xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Add a number of XRL interfaces pimstat_foo and pimstat_foo_per_vif to get various PIM-related statistics. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 8:11:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 08:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFC1vs047773 for ; Tue, 12 Aug 2003 08:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFC0dk030851 for ; Tue, 12 Aug 2003 08:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFC0RW007515; Tue, 12 Aug 2003 08:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFBcRW007503 for ; Tue, 12 Aug 2003 08:11:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFBcdk030845 for ; Tue, 12 Aug 2003 08:11:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFBckN005756 for ; Tue, 12 Aug 2003 08:11:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CFBcXn005755; Tue, 12 Aug 2003 08:11:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121511.h7CFBcXn005755@xorpc.icir.org> Date: Tue, 12 Aug 2003 8:11:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_node.hh pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_register.cc pim_proto_register_stop.cc ...pim_vif.cc ...pim_vif.hh ...xrl_pim_node.cc ...xrl_pim_node.hh ...xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/12 08:11:38 Modified files: xorp/pim/: pim_node.cc pim_node.hh pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_register.cc pim_proto_register_stop.cc pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Log message: * Added a number of counters for various PIM-related statistics (e.g., number of sent and received PIM Hello messages, etc). * Added the appropriate XRL interface to get those values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 8:49:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 08:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFo1vs056390 for ; Tue, 12 Aug 2003 08:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFo0dk031324 for ; Tue, 12 Aug 2003 08:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFo0RW008147; Tue, 12 Aug 2003 08:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFnORW008132 for ; Tue, 12 Aug 2003 08:49:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFnOdk031316 for ; Tue, 12 Aug 2003 08:49:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFnOkN009105 for ; Tue, 12 Aug 2003 08:49:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CFnOuf009104; Tue, 12 Aug 2003 08:49:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121549.h7CFnOuf009104@xorpc.icir.org> Date: Tue, 12 Aug 2003 8:49:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/08/12 08:49:24 Modified files: xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Added XRLs to clear pim statistics _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 8:50:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 08:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFp1vs056666 for ; Tue, 12 Aug 2003 08:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFp1dk031357 for ; Tue, 12 Aug 2003 08:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFp1RW008185; Tue, 12 Aug 2003 08:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CFoERW008163 for ; Tue, 12 Aug 2003 08:50:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFoEdk031346 for ; Tue, 12 Aug 2003 08:50:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CFoEkN009165 for ; Tue, 12 Aug 2003 08:50:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CFoESp009164; Tue, 12 Aug 2003 08:50:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121550.h7CFoESp009164@xorpc.icir.org> Date: Tue, 12 Aug 2003 8:50:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/12 08:50:14 Modified files: xorp/pim/: pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh Log message: Added methods to clear pim statistics, and the corresponding XRL support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 9:02:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 09:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CG31vs065737 for ; Tue, 12 Aug 2003 09:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CG31dk031497 for ; Tue, 12 Aug 2003 09:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CG30RW008411; Tue, 12 Aug 2003 09:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CG2QRW008399 for ; Tue, 12 Aug 2003 09:02:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CG2Qdk031495 for ; Tue, 12 Aug 2003 09:02:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CG2QkN009284 for ; Tue, 12 Aug 2003 09:02:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CG2QZT009283; Tue, 12 Aug 2003 09:02:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121602.h7CG2QZT009283@xorpc.icir.org> Date: Tue, 12 Aug 2003 9:02:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/12 09:02:26 Modified files: ./: RELEASE_NOTES Log message: Add an entry for PIM-SM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 11:24:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 11:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIP2vs005447 for ; Tue, 12 Aug 2003 11:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIP1dk032847 for ; Tue, 12 Aug 2003 11:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CIP1RW011538; Tue, 12 Aug 2003 11:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CIOBRW011518 for ; Tue, 12 Aug 2003 11:24:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIOBdk032838 for ; Tue, 12 Aug 2003 11:24:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIOBkN010325 for ; Tue, 12 Aug 2003 11:24:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CIOASl010324; Tue, 12 Aug 2003 11:24:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121824.h7CIOASl010324@xorpc.icir.org> Date: Tue, 12 Aug 2003 11:24:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/12 11:24:10 Modified files: xorp/pim/: pim_node.cc xrl_pim_node.cc Log message: Do some renaming to pacify the gcc32 tokenization. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:31 2005 Subject: No subject Tue Aug 12 11:45:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 11:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIk1vs015776 for ; Tue, 12 Aug 2003 11:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIk0dk033056 for ; Tue, 12 Aug 2003 11:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CIk0RW011929; Tue, 12 Aug 2003 11:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CIjORW011918 for ; Tue, 12 Aug 2003 11:45:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIjOdk033052 for ; Tue, 12 Aug 2003 11:45:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CIjOkN010535 for ; Tue, 12 Aug 2003 11:45:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CIjOsX010534; Tue, 12 Aug 2003 11:45:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308121845.h7CIjOsX010534@xorpc.icir.org> Date: Tue, 12 Aug 2003 11:45:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mfea/ .cvsignore DEVNOTES Makefile.am Makefile.in README TODO command_mfea configure_mfea mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_module.h mfea_node.cc mfea_node.hh mfea_node_cli.cc ...mfea_node_cli.hh ...mfea_private.hh ...mfea_unix_comm.cc ...mfea_unix_comm.hh ...mfea_unix_if_getifaddrs.cc ...mfea_unix_if_ioctl.cc ...mfea_unix_if_sysctl.cc ...mfea_unix_kernel_messages.hh ...mfea_unix_mrib_netlink.cc ...mfea_unix_mrib_rawsock.cc ...mfea_unix_osdep.hh ...mfea_unix_rtread_netlink.cc ...mfea_unix_rtread_sysctl.cc ...mfea_vif.cc ...mfea_vif.hh ...test_mfea.cc ...xrl_mfea_node.cc ...xrl_mfea_node.hh ...xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mfea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 11:45:24 Removed files: xorp/mfea/: .cvsignore DEVNOTES Makefile.am Makefile.in README TODO command_mfea configure_mfea mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_module.h mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_private.hh mfea_unix_comm.cc mfea_unix_comm.hh mfea_unix_if_getifaddrs.cc mfea_unix_if_ioctl.cc mfea_unix_if_sysctl.cc mfea_unix_kernel_messages.hh mfea_unix_mrib_netlink.cc mfea_unix_mrib_rawsock.cc mfea_unix_osdep.hh mfea_unix_rtread_netlink.cc mfea_unix_rtread_sysctl.cc mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh Log message: Complete remove the original stand-alone MFEA code, because that code has been already merged with the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Tue Aug 12 14:50:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 14:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLp1vs066365 for ; Tue, 12 Aug 2003 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLp1dk034682 for ; Tue, 12 Aug 2003 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLp0RW015556; Tue, 12 Aug 2003 14:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLoMRW015535 for ; Tue, 12 Aug 2003 14:50:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLoMdk034674 for ; Tue, 12 Aug 2003 14:50:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLoMkN062864 for ; Tue, 12 Aug 2003 14:50:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CLoMj5062863; Tue, 12 Aug 2003 14:50:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308122150.h7CLoMj5062863@xorpc.icir.org> Date: Tue, 12 Aug 2003 14:50:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 14:50:22 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: Remove bogus setup of broadcast address that happens in case of a loopback address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Tue Aug 12 14:51:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 14:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLq2vs067409 for ; Tue, 12 Aug 2003 14:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLq1dk034692 for ; Tue, 12 Aug 2003 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLq1RW015587; Tue, 12 Aug 2003 14:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLpBRW015567 for ; Tue, 12 Aug 2003 14:51:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLpAdk034687 for ; Tue, 12 Aug 2003 14:51:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLpAkN062918 for ; Tue, 12 Aug 2003 14:51:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CLpAUA062917; Tue, 12 Aug 2003 14:51:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308122151.h7CLpAUA062917@xorpc.icir.org> Date: Tue, 12 Aug 2003 14:51:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifmanager_transaction.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 14:51:10 Modified files: xorp/fea/: ifmanager_transaction.hh Log message: When setting the broadcast or the endpoint address, explicity set the broadcast flag or the p2p flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Tue Aug 12 14:54:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLt1vs072575 for ; Tue, 12 Aug 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLt1dk034709 for ; Tue, 12 Aug 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLt0RW015659; Tue, 12 Aug 2003 14:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLsCRW015640 for ; Tue, 12 Aug 2003 14:54:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLsCdk034703 for ; Tue, 12 Aug 2003 14:54:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLsCkN062967 for ; Tue, 12 Aug 2003 14:54:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CLsC6V062966; Tue, 12 Aug 2003 14:54:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308122154.h7CLsC6V062966@xorpc.icir.org> Date: Tue, 12 Aug 2003 14:54:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 14:54:12 Modified files: xorp/fea/: iftree.hh Log message: * When coping state between IfTreeAddr[4,6], set the broadcast or endpoint address only if the flag for that address is set to broadcast or p2p. * Explicitly compare the broadcast address when comparing IfTreeAddr4 state _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Tue Aug 12 14:55:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 14:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLu1vs073719 for ; Tue, 12 Aug 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLu1dk034739 for ; Tue, 12 Aug 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLu1RW015709; Tue, 12 Aug 2003 14:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLt8RW015679 for ; Tue, 12 Aug 2003 14:55:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLt7dk034734 for ; Tue, 12 Aug 2003 14:55:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLt7kN063021 for ; Tue, 12 Aug 2003 14:55:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CLt7Zj063020; Tue, 12 Aug 2003 14:55:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308122155.h7CLt7Zj063020@xorpc.icir.org> Date: Tue, 12 Aug 2003 14:55:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 14:55:07 Modified files: xorp/fea/: iftree.cc Log message: A formatting nit to IfTreeAddr4::str() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Tue Aug 12 14:55:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Aug 2003 14:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLu2vs073734 for ; Tue, 12 Aug 2003 14:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLu2dk034743 for ; Tue, 12 Aug 2003 14:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLu2RW015720; Tue, 12 Aug 2003 14:56:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7CLtORW015684 for ; Tue, 12 Aug 2003 14:55:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLtOdk034737 for ; Tue, 12 Aug 2003 14:55:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7CLtOkN063083 for ; Tue, 12 Aug 2003 14:55:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7CLtOEB063082; Tue, 12 Aug 2003 14:55:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308122155.h7CLtOEB063082@xorpc.icir.org> Date: Tue, 12 Aug 2003 14:55:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/12 14:55:24 Modified files: xorp/fea/: xrl_ifmanager.cc Log message: A formatting nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 0:29:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 00:31:14 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7VEvs003066 for ; Wed, 13 Aug 2003 00:31:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7VEdk038577 for ; Wed, 13 Aug 2003 00:31:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7D7V1RW024741; Wed, 13 Aug 2003 00:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7D7U6RW024718 for ; Wed, 13 Aug 2003 00:30:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7Txdk038552 for ; Wed, 13 Aug 2003 00:29:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7TxkN079096 for ; Wed, 13 Aug 2003 00:29:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7D7TxiQ079095; Wed, 13 Aug 2003 00:29:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308130729.h7D7TxiQ079095@xorpc.icir.org> Date: Wed, 13 Aug 2003 0:29:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/08/13 00:29:58 Modified files: xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Add several XRLs to retrieve various info from the PIM-SM stack. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 0:34:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 00:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7Z1vs003784 for ; Wed, 13 Aug 2003 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7Z1dk038596 for ; Wed, 13 Aug 2003 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7D7Z1RW024823; Wed, 13 Aug 2003 00:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7D7YmRW024810 for ; Wed, 13 Aug 2003 00:34:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7Ymdk038591 for ; Wed, 13 Aug 2003 00:34:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7D7YmkN079642 for ; Wed, 13 Aug 2003 00:34:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7D7YmSH079641; Wed, 13 Aug 2003 00:34:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308130734.h7D7YmSH079641@xorpc.icir.org> Date: Wed, 13 Aug 2003 0:34:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 00:34:48 Modified files: xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Log message: * Add several XRLs to retrieve various info from the PIM-SM stack. * Add some kdoc to the XRLs specification. * Fix some of the old naming wrappers _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 11:20:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 11:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DIL1vs031337 for ; Wed, 13 Aug 2003 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DIL1dk045232 for ; Wed, 13 Aug 2003 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7DIL0RW005992; Wed, 13 Aug 2003 11:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7DIK6RW005977 for ; Wed, 13 Aug 2003 11:20:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DIK5dk045209 for ; Wed, 13 Aug 2003 11:20:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DIK5kN024021 for ; Wed, 13 Aug 2003 11:20:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7DIK5bQ024020; Wed, 13 Aug 2003 11:20:05 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308131820.h7DIK5bQ024020@xorpc.icir.org> Date: Wed, 13 Aug 2003 11:20:05 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ startsnmp.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/13 11:20:05 Modified files: xorp/mibs/snmpdscripts/: startsnmp.in Log message: Reduced the number of debug tokens to keep the log file small _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 15:13:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 15:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DME1vs084811 for ; Wed, 13 Aug 2003 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DME1dk047202 for ; Wed, 13 Aug 2003 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7DME0RW010572; Wed, 13 Aug 2003 15:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7DMDbRW010559 for ; Wed, 13 Aug 2003 15:13:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DMDbdk047198 for ; Wed, 13 Aug 2003 15:13:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7DMDbkN075252 for ; Wed, 13 Aug 2003 15:13:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7DMDbKP075251; Wed, 13 Aug 2003 15:13:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308132213.h7DMDbKP075251@xorpc.icir.org> Date: Wed, 13 Aug 2003 15:13:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 15:13:37 Modified files: xorp/pim/: pim_vif.cc Log message: Bugfix: when receiving PIM packet in case of IPv6, use the IPv6-specific pseudo-header to compute the checksum. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 18:00:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 18:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E111vs033695 for ; Wed, 13 Aug 2003 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E111dk048540 for ; Wed, 13 Aug 2003 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E111RW013639; Wed, 13 Aug 2003 18:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E10VRW013631 for ; Wed, 13 Aug 2003 18:00:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E10Udk048532 for ; Wed, 13 Aug 2003 18:00:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E10UkN076985 for ; Wed, 13 Aug 2003 18:00:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E10Uaf076984; Wed, 13 Aug 2003 18:00:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140100.h7E10Uaf076984@xorpc.icir.org> Date: Wed, 13 Aug 2003 18:00:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 18:00:30 Modified files: xorp/pim/: xrl_pim_shell_funcs.sh Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 18:16:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 18:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1H1vs038006 for ; Wed, 13 Aug 2003 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1H1dk048642 for ; Wed, 13 Aug 2003 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E1H1RW013924; Wed, 13 Aug 2003 18:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E1GaRW013917 for ; Wed, 13 Aug 2003 18:16:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1Gadk048640 for ; Wed, 13 Aug 2003 18:16:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1GakN077365 for ; Wed, 13 Aug 2003 18:16:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E1Ga96077364; Wed, 13 Aug 2003 18:16:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140116.h7E1Ga96077364@xorpc.icir.org> Date: Wed, 13 Aug 2003 18:16:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_nbr.hh pim_nbr.cc pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 18:16:35 Modified files: xorp/pim/: pim_nbr.hh pim_nbr.cc pim_vif.cc Log message: Add TimeVal _startup_time field to PimNbr, and fill it with the absolute time we see a new PIM neighbor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 18:21:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 18:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1M1vs039255 for ; Wed, 13 Aug 2003 18:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1M0dk048690 for ; Wed, 13 Aug 2003 18:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E1M0RW014025; Wed, 13 Aug 2003 18:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E1L5RW014013 for ; Wed, 13 Aug 2003 18:21:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1L4dk048686 for ; Wed, 13 Aug 2003 18:21:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E1L4kN077442 for ; Wed, 13 Aug 2003 18:21:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E1L46M077441; Wed, 13 Aug 2003 18:21:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140121.h7E1L46M077441@xorpc.icir.org> Date: Wed, 13 Aug 2003 18:21:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 18:21:04 Modified files: xorp/pim/: xrl_pim_node.cc Log message: * Fix the processing of pimstat_neighbors[4,6] XRLs to return the uptime of each neighbor rather than -1 * Explicitly cast every signed or unsigned integer to (int32_t) when added to XrlAtomList in XRL return result. This casting is probably not needed because it appears that every integer value added to XrlAtomList always appears as i32, but just in case... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 19:07:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E281vs051651 for ; Wed, 13 Aug 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E280dk049001 for ; Wed, 13 Aug 2003 19:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E280RW014752; Wed, 13 Aug 2003 19:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E27ARW014729 for ; Wed, 13 Aug 2003 19:07:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E27Adk048993 for ; Wed, 13 Aug 2003 19:07:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E27AkN077992 for ; Wed, 13 Aug 2003 19:07:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E27A3I077991; Wed, 13 Aug 2003 19:07:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140207.h7E27A3I077991@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:07:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp xrl_mld6igmp_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:07:10 Modified files: xorp/mld6igmp/: configure_mld6igmp xrl_mld6igmp_shell_funcs.sh Log message: Change the MLD/IGMP configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 19:07:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E282vs051679 for ; Wed, 13 Aug 2003 19:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E281dk049005 for ; Wed, 13 Aug 2003 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E281RW014763; Wed, 13 Aug 2003 19:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E27fRW014737 for ; Wed, 13 Aug 2003 19:07:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E27fdk048999 for ; Wed, 13 Aug 2003 19:07:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E27fkN078042 for ; Wed, 13 Aug 2003 19:07:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E27fdm078041; Wed, 13 Aug 2003 19:07:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140207.h7E27fdm078041@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:07:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:07:41 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh Log message: Change the CLI configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 19:08:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E291vs051943 for ; Wed, 13 Aug 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E291dk049017 for ; Wed, 13 Aug 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E290RW014795; Wed, 13 Aug 2003 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E28IRW014779 for ; Wed, 13 Aug 2003 19:08:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E28Idk049013 for ; Wed, 13 Aug 2003 19:08:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E28IkN078147 for ; Wed, 13 Aug 2003 19:08:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E28Ipc078146; Wed, 13 Aug 2003 19:08:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140208.h7E28Ipc078146@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:08:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:08:18 Modified files: xorp/pim/: xrl_rib_shell_funcs.sh Log message: Change the RIB configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 19:08:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E292vs051960 for ; Wed, 13 Aug 2003 19:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E291dk049021 for ; Wed, 13 Aug 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E291RW014806; Wed, 13 Aug 2003 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E28dRW014784 for ; Wed, 13 Aug 2003 19:08:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E28cdk049015 for ; Wed, 13 Aug 2003 19:08:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E28ckN078183 for ; Wed, 13 Aug 2003 19:08:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E28caI078182; Wed, 13 Aug 2003 19:08:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140208.h7E28caI078182@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:08:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:08:38 Modified files: xorp/pim/: configure_pim xrl_pim_shell_funcs.sh Log message: Change the PIM configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:32 2005 Subject: No subject Wed Aug 13 19:10:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2B1vs052468 for ; Wed, 13 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2B1dk049063 for ; Wed, 13 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2B1RW014872; Wed, 13 Aug 2003 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2ApRW014866 for ; Wed, 13 Aug 2003 19:10:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2Apdk049061 for ; Wed, 13 Aug 2003 19:10:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2ApkN078304 for ; Wed, 13 Aug 2003 19:10:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E2Apmd078303; Wed, 13 Aug 2003 19:10:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140210.h7E2Apmd078303@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:10:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:10:51 Modified files: xorp/fea/: xrl_mfea_shell_funcs.sh Log message: Change the MFEA configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 19:06:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2c1vs059379 for ; Wed, 13 Aug 2003 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2c1dk049240 for ; Wed, 13 Aug 2003 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2c1RW015212; Wed, 13 Aug 2003 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2b9RW015198 for ; Wed, 13 Aug 2003 19:37:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E26gdk048989 for ; Wed, 13 Aug 2003 19:06:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E26gkN077942 for ; Wed, 13 Aug 2003 19:06:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E26gTv077941; Wed, 13 Aug 2003 19:06:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140206.h7E26gTv077941@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:06:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:06:42 Modified files: xorp/fea/: configure_mfea Log message: Change the MFEA configuration scripts so now the IPv4/IPv6 setup is controlled by a single variable IP_VERSION that should be either IPV4 or IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 19:57:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2w1vs064463 for ; Wed, 13 Aug 2003 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2w0dk049389 for ; Wed, 13 Aug 2003 19:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2w0RW015543; Wed, 13 Aug 2003 19:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2v1RW015523 for ; Wed, 13 Aug 2003 19:57:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2v0dk049381 for ; Wed, 13 Aug 2003 19:57:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2v0kN079323 for ; Wed, 13 Aug 2003 19:57:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E2v0eF079322; Wed, 13 Aug 2003 19:57:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140257.h7E2v0eF079322@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:57:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh xorp/fea/ xrl_mfea_shell_funcs.sh xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh xorp/pim/ xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:57:00 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh xorp/fea/: xrl_mfea_shell_funcs.sh xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh xorp/pim/: xrl_pim_shell_funcs.sh Log message: Added missing ;; in "case" statements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 19:57:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 19:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2w1vs064480 for ; Wed, 13 Aug 2003 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2w1dk049393 for ; Wed, 13 Aug 2003 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2w1RW015554; Wed, 13 Aug 2003 19:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E2veRW015535 for ; Wed, 13 Aug 2003 19:57:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2vedk049385 for ; Wed, 13 Aug 2003 19:57:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E2vekN079373 for ; Wed, 13 Aug 2003 19:57:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E2vemk079372; Wed, 13 Aug 2003 19:57:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140257.h7E2vemk079372@xorpc.icir.org> Date: Wed, 13 Aug 2003 19:57:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 19:57:40 Modified files: xorp/pim/: xrl_rib_shell_funcs.sh Log message: Added missing ;; in "case" statements _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 20:01:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 20:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E321vs065487 for ; Wed, 13 Aug 2003 20:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E321dk049448 for ; Wed, 13 Aug 2003 20:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E321RW015622; Wed, 13 Aug 2003 20:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E31DRW015608 for ; Wed, 13 Aug 2003 20:01:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E31Ddk049439 for ; Wed, 13 Aug 2003 20:01:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E31DkN079490 for ; Wed, 13 Aug 2003 20:01:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E31DfQ079489; Wed, 13 Aug 2003 20:01:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140301.h7E31DfQ079489@xorpc.icir.org> Date: Wed, 13 Aug 2003 20:01:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ command_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 20:01:13 Modified files: xorp/pim/: command_pim Log message: Added optional [-4 | -6] argument to specify whether the IP version is IPv4 or IPv6. If the version argument is not supplied, then it defaults to IPv4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 20:01:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 20:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E322vs065515 for ; Wed, 13 Aug 2003 20:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E322dk049452 for ; Wed, 13 Aug 2003 20:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E322RW015633; Wed, 13 Aug 2003 20:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E31xRW015616 for ; Wed, 13 Aug 2003 20:01:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E31xdk049445 for ; Wed, 13 Aug 2003 20:01:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E31xkN079538 for ; Wed, 13 Aug 2003 20:01:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E31xhJ079537; Wed, 13 Aug 2003 20:01:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140301.h7E31xhJ079537@xorpc.icir.org> Date: Wed, 13 Aug 2003 20:01:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ rcommand_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/13 20:01:59 Modified files: xorp/pim/: rcommand_pim Log message: * Added "[-4 | -6]" to the usage string * Nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 20:12:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 20:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E3D1vs068573 for ; Wed, 13 Aug 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E3D1dk049531 for ; Wed, 13 Aug 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E3D1RW015764; Wed, 13 Aug 2003 20:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E3CDRW015749 for ; Wed, 13 Aug 2003 20:12:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E3CDdk049529 for ; Wed, 13 Aug 2003 20:12:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E3CDkN079724 for ; Wed, 13 Aug 2003 20:12:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E3CD2M079723; Wed, 13 Aug 2003 20:12:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308140312.h7E3CD2M079723@xorpc.icir.org> Date: Wed, 13 Aug 2003 20:12:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/13 20:12:13 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: Use of BGP-4 Multiprotocol Extensions for IPv6 Inter-Domain Routing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Wed Aug 13 22:20:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Aug 2003 22:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E5L1vs095664 for ; Wed, 13 Aug 2003 22:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E5L1dk050325 for ; Wed, 13 Aug 2003 22:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E5L0RW017111; Wed, 13 Aug 2003 22:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E5KnRW017104 for ; Wed, 13 Aug 2003 22:20:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E5Kmdk050323 for ; Wed, 13 Aug 2003 22:20:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E5KmkN080994 for ; Wed, 13 Aug 2003 22:20:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E5KmPp080993; Wed, 13 Aug 2003 22:20:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140520.h7E5KmPp080993@xorpc.icir.org> Date: Wed, 13 Aug 2003 22:20:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/08/13 22:20:48 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: * Increase slightly the receiver buffer size from 32000 to 32*1024 * Introduce a new value SUDP_SEND_BUFFER_BYTES that is set to 1/4th of the receiver buffer size, and set the sending socket buffer size to that value. * Modify the sending code to check the sending size against SUDP_SEND_BUFFER_BYTES [Changes approved by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 0:47:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 00:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E7m2vs023762 for ; Thu, 14 Aug 2003 00:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E7m2dk051278 for ; Thu, 14 Aug 2003 00:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E7m1RW019469; Thu, 14 Aug 2003 00:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7E7l7RW019460 for ; Thu, 14 Aug 2003 00:47:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E7l7dk051268 for ; Thu, 14 Aug 2003 00:47:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7E7l7kN000629 for ; Thu, 14 Aug 2003 00:47:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7E7l7GB000628; Thu, 14 Aug 2003 00:47:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308140747.h7E7l7GB000628@xorpc.icir.org> Date: Thu, 14 Aug 2003 0:47:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/08/14 00:47:07 Modified files: xorp/bgp/: path_attribute.cc Log message: Move the PathAttribute methods toward the end of the file, because gcc-2.95.4 didn't like template specialization after instantiation (though, gcc-3.2 seems happy with it). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 8:20:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 08:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFL1vs013978 for ; Thu, 14 Aug 2003 08:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFL0dk056477 for ; Thu, 14 Aug 2003 08:21:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFL0RW027010; Thu, 14 Aug 2003 08:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFKGRW026991 for ; Thu, 14 Aug 2003 08:20:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFKGdk056473 for ; Thu, 14 Aug 2003 08:20:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFKGkN027417 for ; Thu, 14 Aug 2003 08:20:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EFKGKl027416; Thu, 14 Aug 2003 08:20:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308141520.h7EFKGKl027416@xorpc.icir.org> Date: Thu, 14 Aug 2003 8:20:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/14 08:20:16 Modified files: xorp/fea/: xrl_ifmanager.cc Log message: Remove #define DEBUG_LOGGING that was commited by accident by the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 8:20:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 08:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFL2vs013993 for ; Thu, 14 Aug 2003 08:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFL2dk056481 for ; Thu, 14 Aug 2003 08:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFL2RW027021; Thu, 14 Aug 2003 08:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFKbRW027003 for ; Thu, 14 Aug 2003 08:20:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFKbdk056475 for ; Thu, 14 Aug 2003 08:20:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFKbkN027452 for ; Thu, 14 Aug 2003 08:20:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EFKbNg027451; Thu, 14 Aug 2003 08:20:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308141520.h7EFKbNg027451@xorpc.icir.org> Date: Thu, 14 Aug 2003 8:20:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/14 08:20:36 Modified files: xorp/pim/: TODO Log message: Add Bootstrap-related TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 8:23:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 08:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFO1vs014720 for ; Thu, 14 Aug 2003 08:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFO1dk056528 for ; Thu, 14 Aug 2003 08:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFO1RW027070; Thu, 14 Aug 2003 08:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFNQRW027060 for ; Thu, 14 Aug 2003 08:23:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFNPdk056520 for ; Thu, 14 Aug 2003 08:23:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFNPkN027512 for ; Thu, 14 Aug 2003 08:23:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EFNP0r027511; Thu, 14 Aug 2003 08:23:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308141523.h7EFNP0r027511@xorpc.icir.org> Date: Thu, 14 Aug 2003 8:23:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/14 08:23:25 Modified files: xorp/fea/: ifconfig.hh Log message: Added new method "const IfTree& IfConfig::pulled_config()" that returns the IfTree that was pulled-out last from the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 8:29:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 08:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFU1vs016146 for ; Thu, 14 Aug 2003 08:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFU1dk056595 for ; Thu, 14 Aug 2003 08:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFU1RW027171; Thu, 14 Aug 2003 08:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EFTKRW027161 for ; Thu, 14 Aug 2003 08:29:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFTKdk056590 for ; Thu, 14 Aug 2003 08:29:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EFTKkN027633 for ; Thu, 14 Aug 2003 08:29:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EFTKsQ027632; Thu, 14 Aug 2003 08:29:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308141529.h7EFTKsQ027632@xorpc.icir.org> Date: Thu, 14 Aug 2003 8:29:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/14 08:29:20 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Modify IfConfigSetIoctl::push_if(), and push_addr() such that they don't execute some of the system calls if nothing has changed: * In push_if() don't set the MTU if it hasn't changed * In push_addr() don't set the address if it hasn't changed Otherwise, if we set exactly same address for example, the FreeBSD kernel sends-up two messages to the interface observer: the first one to delete the address, and the second one to add that address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:33 2005 Subject: No subject Thu Aug 14 9:46:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 09:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EGm1vs042132 for ; Thu, 14 Aug 2003 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EGm1dk057400 for ; Thu, 14 Aug 2003 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EGm1RW028615; Thu, 14 Aug 2003 09:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EGl0RW028580 for ; Thu, 14 Aug 2003 09:47:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EGl0dk057396 for ; Thu, 14 Aug 2003 09:47:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EGl0kN028649 for ; Thu, 14 Aug 2003 09:47:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EGl02d028648; Thu, 14 Aug 2003 09:47:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308141647.h7EGl02d028648@xorpc.icir.org> Date: Thu, 14 Aug 2003 9:46:59 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/14 09:46:59 Modified files: xorp/bgp/: path_attribute.cc Log message: Str method now knows about multiprotocol attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 14 11:43:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 11:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EIi1vs080792 for ; Thu, 14 Aug 2003 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EIi1dk058529 for ; Thu, 14 Aug 2003 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EIi0RW000878; Thu, 14 Aug 2003 11:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EIhCRW000847 for ; Thu, 14 Aug 2003 11:43:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EIhBdk058522 for ; Thu, 14 Aug 2003 11:43:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EIhBkN029670 for ; Thu, 14 Aug 2003 11:43:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EIhB3i029669; Thu, 14 Aug 2003 11:43:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308141843.h7EIhB3i029669@xorpc.icir.org> Date: Thu, 14 Aug 2003 11:43:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/14 11:43:11 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Bugfix in the previous commit: don't use XLOG_ASSERT() when searching for an address in the pulled_config interface tree, because an address that is to be added may, obviously, not in that tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 14 15:36:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 15:37:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EMb2vs033273 for ; Thu, 14 Aug 2003 15:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EMb2dk060595 for ; Thu, 14 Aug 2003 15:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EMb1RW005481; Thu, 14 Aug 2003 15:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7EMaERW005469 for ; Thu, 14 Aug 2003 15:36:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EMaEdk060593 for ; Thu, 14 Aug 2003 15:36:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7EMaDkN080988 for ; Thu, 14 Aug 2003 15:36:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7EMaD4Y080987; Thu, 14 Aug 2003 15:36:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308142236.h7EMaD4Y080987@xorpc.icir.org> Date: Thu, 14 Aug 2003 15:36:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/08/14 15:36:13 Modified files: xorp/devnotes/: work_plan.txt Log message: Update status after weekly meeting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 14 16:25:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 16:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENQ1vs043510 for ; Thu, 14 Aug 2003 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENQ1dk060965 for ; Thu, 14 Aug 2003 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7ENQ0RW006263; Thu, 14 Aug 2003 16:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7ENPpRW006257 for ; Thu, 14 Aug 2003 16:25:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENPpdk060963 for ; Thu, 14 Aug 2003 16:25:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENPpkN086493 for ; Thu, 14 Aug 2003 16:25:51 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7ENPpLb086492; Thu, 14 Aug 2003 16:25:51 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308142325.h7ENPpLb086492@xorpc.icir.org> Date: Thu, 14 Aug 2003 16:25:51 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/14 16:25:51 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Modified mpatrol options _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 14 16:53:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Aug 2003 16:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENs2vs050138 for ; Thu, 14 Aug 2003 16:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENs1dk061196 for ; Thu, 14 Aug 2003 16:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7ENs1RW006745; Thu, 14 Aug 2003 16:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7ENr8RW006727 for ; Thu, 14 Aug 2003 16:53:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENr8dk061192 for ; Thu, 14 Aug 2003 16:53:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ENr7kN086669 for ; Thu, 14 Aug 2003 16:53:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7ENr7cA086668; Thu, 14 Aug 2003 16:53:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308142353.h7ENr7cA086668@xorpc.icir.org> Date: Thu, 14 Aug 2003 16:53:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/14 16:53:07 Modified files: xorp/pim/: TODO Log message: Add a bit of text to one of the TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Fri Aug 15 16:45:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Aug 2003 16:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNk2vs066495 for ; Fri, 15 Aug 2003 16:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNk1dk073485 for ; Fri, 15 Aug 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7FNk0RW028512; Fri, 15 Aug 2003 16:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7FNj9RW028495 for ; Fri, 15 Aug 2003 16:45:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNj9dk073480 for ; Fri, 15 Aug 2003 16:45:09 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNj9kN098979 for ; Fri, 15 Aug 2003 16:45:09 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7FNj9Qs098978; Fri, 15 Aug 2003 16:45:09 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308152345.h7FNj9Qs098978@xorpc.icir.org> Date: Fri, 15 Aug 2003 16:45:09 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/15 16:45:09 Modified files: xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc Log message: Fixed leak caused by uncalled destructors _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Fri Aug 15 16:58:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Aug 2003 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNx1vs069628 for ; Fri, 15 Aug 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNx1dk073604 for ; Fri, 15 Aug 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7FNx1RW028751; Fri, 15 Aug 2003 16:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7FNwbRW028736 for ; Fri, 15 Aug 2003 16:58:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNwbdk073602 for ; Fri, 15 Aug 2003 16:58:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNwakN099382 for ; Fri, 15 Aug 2003 16:58:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7FNwa0q099381; Fri, 15 Aug 2003 16:58:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308152358.h7FNwa0q099381@xorpc.icir.org> Date: Fri, 15 Aug 2003 16:58:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.hh fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/15 16:58:36 Modified files: xorp/fea/: fticonfig.hh fticonfig.cc Log message: Add new methods to FtiConfig to get the status of the kernel whether it was enabled to perform unicast forwarding, and methods to enable/disable unicast forwarding: - unicast_forwarding_enabled[4,6] - accept_rtadv_enabled6 - set_unicast_forwarding_enabled[4,6] - set_accept_rtadv_enabled6 Currently, the inner code of those methods uses sysctlbyname() and is #ifdef for all supported OS-es: *BSD and Linux. Later, when we have support for more OSes, we must add the appropriate method for each new platform, otherwise the above code will fail to compile with #error The second and the fourth methods are needed for *BSD to get/set the flag regarding acceptance of IPv6 Router Advertisement messages, and are no-op for Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Fri Aug 15 16:59:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Aug 2003 17:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G001vs069887 for ; Fri, 15 Aug 2003 17:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G001dk073619 for ; Fri, 15 Aug 2003 17:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7G001RW028774; Fri, 15 Aug 2003 17:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7FNxrRW028766 for ; Fri, 15 Aug 2003 16:59:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNxrdk073611 for ; Fri, 15 Aug 2003 16:59:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7FNxrkN099455 for ; Fri, 15 Aug 2003 16:59:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7FNxrmM099454; Fri, 15 Aug 2003 16:59:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308152359.h7FNxrmM099454@xorpc.icir.org> Date: Fri, 15 Aug 2003 16:59:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/08/15 16:59:53 Modified files: xorp/xrl/interfaces/: fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Added new XRLs to enable/disable unicast forwarding, and to get/set the current status: get_unicast_forwarding_enabled[4,6] set_unicast_forwarding_enabled[4,6] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Fri Aug 15 17:00:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Aug 2003 17:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G012vs070160 for ; Fri, 15 Aug 2003 17:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G012dk073654 for ; Fri, 15 Aug 2003 17:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7G012RW028818; Fri, 15 Aug 2003 17:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7G00ZRW028808 for ; Fri, 15 Aug 2003 17:00:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G00Zdk073650 for ; Fri, 15 Aug 2003 17:00:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G00ZkN099530 for ; Fri, 15 Aug 2003 17:00:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7G00ZU4099529; Fri, 15 Aug 2003 17:00:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308160000.h7G00ZU4099529@xorpc.icir.org> Date: Fri, 15 Aug 2003 17:00:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh xrl_target.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/15 17:00:35 Modified files: xorp/fea/: xrl_shell_funcs.sh xrl_target.hh xrl_target.cc Log message: Added support for the following XRLs to enable/disable unicast forwarding, and to get/set the current status: get_unicast_forwarding_enabled[4,6] set_unicast_forwarding_enabled[4,6] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Fri Aug 15 17:12:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Aug 2003 17:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G0D2vs073008 for ; Fri, 15 Aug 2003 17:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G0D1dk073748 for ; Fri, 15 Aug 2003 17:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7G0D1RW029013; Fri, 15 Aug 2003 17:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7G0CXRW029000 for ; Fri, 15 Aug 2003 17:12:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G0CXdk073744 for ; Fri, 15 Aug 2003 17:12:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7G0CXkN000492 for ; Fri, 15 Aug 2003 17:12:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7G0CXpw000491; Fri, 15 Aug 2003 17:12:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308160012.h7G0CXpw000491@xorpc.icir.org> Date: Fri, 15 Aug 2003 17:12:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/15 17:12:33 Modified files: xorp/fea/: fticonfig.cc Log message: A temporary compilation hack regarding enabling/disabling the unicast forwarding in the kernel: Linux doesn't have sysctlbyname(), hence for now the code in case of Linux is commented-out (i.e., it is no-op). The solution probably would be to use the Linux /proc system to enable/disable unicast forwarding, because Linux doesn't appear to support sysctl(3) either... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Sat Aug 16 11:05:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 16 Aug 2003 11:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7GI62vs094084 for ; Sat, 16 Aug 2003 11:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7GI61dk085502 for ; Sat, 16 Aug 2003 11:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7GI61RW012607; Sat, 16 Aug 2003 11:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7GI5CRW012598 for ; Sat, 16 Aug 2003 11:05:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7GI5Cdk085498 for ; Sat, 16 Aug 2003 11:05:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7GI5CkN038290 for ; Sat, 16 Aug 2003 11:05:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7GI5CCq038289; Sat, 16 Aug 2003 11:05:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308161805.h7GI5CCq038289@xorpc.icir.org> Date: Sat, 16 Aug 2003 11:05:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.hh xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/16 11:05:12 Modified files: xorp/pim/: xrl_pim_node.hh xrl_pim_node.cc Log message: Add dummy [get,set]_unicast_forwarding_enabled[4,6] XRL support, because XrlPimNode inherits the FTI XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Tue Aug 19 16:01:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Aug 2003 16:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JN21vs068771 for ; Tue, 19 Aug 2003 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JN21dk045140 for ; Tue, 19 Aug 2003 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7JN20RW025985; Tue, 19 Aug 2003 16:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7JN1XRW025968 for ; Tue, 19 Aug 2003 16:01:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JN1Xdk045112 for ; Tue, 19 Aug 2003 16:01:33 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JN1XkN058811 for ; Tue, 19 Aug 2003 16:01:33 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7JN1XYv058810; Tue, 19 Aug 2003 16:01:33 -0700 (PDT) (envelope-from kohler) From: Eddie Kohler Message-Id: <200308192301.h7JN1XYv058810@xorpc.icir.org> Date: Tue, 19 Aug 2003 16:01:32 () To: xorp-cvs@icir.org Reply-To: kohler@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/hotnets_2002_talk/ talk.pdf talk.ps xorp/docs/papers/hotnets_2002_talk/ fonts.sty Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/hotnets_2002_talk/ Changes by: kohler@xorpc.icir.org. 03/08/19 16:01:32 Modified files: xorp/docs/papers/hotnets_2002_talk/: talk.pdf talk.ps Added files: xorp/docs/papers/hotnets_2002_talk/: fonts.sty Log message: use Times _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Tue Aug 19 16:11:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Aug 2003 16:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JNC2vs071142 for ; Tue, 19 Aug 2003 16:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JNC1dk045581 for ; Tue, 19 Aug 2003 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7JNC1RW026323; Tue, 19 Aug 2003 16:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7JNBVRW026299 for ; Tue, 19 Aug 2003 16:11:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JNBVdk045550 for ; Tue, 19 Aug 2003 16:11:31 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7JNBVkN059623 for ; Tue, 19 Aug 2003 16:11:31 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7JNBVr8059622; Tue, 19 Aug 2003 16:11:31 -0700 (PDT) (envelope-from kohler) From: Eddie Kohler Message-Id: <200308192311.h7JNBVr8059622@xorpc.icir.org> Date: Tue, 19 Aug 2003 16:11:31 () To: xorp-cvs@icir.org Reply-To: kohler@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/hotnets_2002_talk/ Makefile talk.pdf talk.ps talk.tex xorp/docs/papers/hotnets_2002_talk/ elements.mp elemfig.sty samp04_iprouter.1 samp04_iprouter.mp xorp/docs/papers/hotnets_2002_talk/ ipr.1 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/hotnets_2002_talk/ Changes by: kohler@xorpc.icir.org. 03/08/19 16:11:31 Modified files: xorp/docs/papers/hotnets_2002_talk/: Makefile talk.pdf talk.ps talk.tex Added files: xorp/docs/papers/hotnets_2002_talk/: elements.mp elemfig.sty samp04_iprouter.1 samp04_iprouter.mp Removed files: xorp/docs/papers/hotnets_2002_talk/: ipr.1 Log message: add samp04_iprouter _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Wed Aug 20 16:01:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Aug 2003 16:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7KN21dE071699 for ; Wed, 20 Aug 2003 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7KN20dk079482 for ; Wed, 20 Aug 2003 16:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7KN20RW003408; Wed, 20 Aug 2003 16:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7KN1dRW003397 for ; Wed, 20 Aug 2003 16:01:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7KN1ddk079478 for ; Wed, 20 Aug 2003 16:01:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7KN1dkN004935 for ; Wed, 20 Aug 2003 16:01:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7KN1ck3004934; Wed, 20 Aug 2003 16:01:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308202301.h7KN1ck3004934@xorpc.icir.org> Date: Wed, 20 Aug 2003 16:01:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/08/20 16:01:38 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Avoid allocating and deallocating memory around user callback dispatch. User callback could unwind the stack and cause deallocation not to happen. Alternative would be to use catch(...), deallocate the memory, and then rethrow the exception, but this is overkill in this instance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 11:37:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 11:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIc1dE016302 for ; Thu, 21 Aug 2003 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIc1dk001967 for ; Thu, 21 Aug 2003 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIc1RW001019; Thu, 21 Aug 2003 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIbARW000983 for ; Thu, 21 Aug 2003 11:37:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIbAdk001951 for ; Thu, 21 Aug 2003 11:37:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIb9kN098312 for ; Thu, 21 Aug 2003 11:37:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LIb9q0098311; Thu, 21 Aug 2003 11:37:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308211837.h7LIb9q0098311@xorpc.icir.org> Date: Thu, 21 Aug 2003 11:37:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in xorp/bgp/ Makefile.am Makefile.in xorp/bgp/ test_packet.cc test_packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/21 11:37:09 Modified files: ./: Makefile.in xorp/bgp/: Makefile.am Makefile.in Added files: xorp/bgp/: test_packet.cc test_packet.hh Log message: Renaming packet_test -> test_packet to conform with xorp naming convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 11:37:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 11:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIc3dE016317 for ; Thu, 21 Aug 2003 11:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIc3dk001971 for ; Thu, 21 Aug 2003 11:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIc3RW001034; Thu, 21 Aug 2003 11:38:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIbjRW001005 for ; Thu, 21 Aug 2003 11:37:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIbjdk001960 for ; Thu, 21 Aug 2003 11:37:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIbikN098357 for ; Thu, 21 Aug 2003 11:37:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LIbipV098356; Thu, 21 Aug 2003 11:37:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308211837.h7LIbipV098356@xorpc.icir.org> Date: Thu, 21 Aug 2003 11:37:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/21 11:37:44 Modified files: xorp/bgp/: .cvsignore Log message: Renaming packet_test -> test_packet to conform with xorp naming convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 11:41:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 11:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIg1dE017114 for ; Thu, 21 Aug 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIg1dk002048 for ; Thu, 21 Aug 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIg0RW001168; Thu, 21 Aug 2003 11:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIfVRW001148 for ; Thu, 21 Aug 2003 11:41:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIfVdk002036 for ; Thu, 21 Aug 2003 11:41:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIfVkN098511 for ; Thu, 21 Aug 2003 11:41:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LIfVdh098510; Thu, 21 Aug 2003 11:41:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308211841.h7LIfVdh098510@xorpc.icir.org> Date: Thu, 21 Aug 2003 11:41:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet_test.cc packet_test.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/21 11:41:31 Removed files: xorp/bgp/: packet_test.cc packet_test.hh Log message: Renaming packet_test -> test_packet to conform with xorp naming convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 11:51:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 11:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIq1dE029961 for ; Thu, 21 Aug 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIq1dk002235 for ; Thu, 21 Aug 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIq0RW001523; Thu, 21 Aug 2003 11:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LIpqRW001517 for ; Thu, 21 Aug 2003 11:51:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIpqdk002233 for ; Thu, 21 Aug 2003 11:51:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LIppkN004182 for ; Thu, 21 Aug 2003 11:51:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LIppGL004181; Thu, 21 Aug 2003 11:51:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308211851.h7LIppGL004181@xorpc.icir.org> Date: Thu, 21 Aug 2003 11:51:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet.cc test_packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/21 11:51:51 Modified files: xorp/bgp/: test_packet.cc test_packet.hh Log message: Rudimentary tests for IPv6 multiprotocol update packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 12:00:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 12:01:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LJ15dE034051 for ; Thu, 21 Aug 2003 12:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LJ15dk002361 for ; Thu, 21 Aug 2003 12:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LJ14RW001791; Thu, 21 Aug 2003 12:01:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LJ0URW001755 for ; Thu, 21 Aug 2003 12:00:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LJ0Udk002350 for ; Thu, 21 Aug 2003 12:00:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LJ0UkN009660 for ; Thu, 21 Aug 2003 12:00:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LJ0U9H009659; Thu, 21 Aug 2003 12:00:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308211900.h7LJ0U9H009659@xorpc.icir.org> Date: Thu, 21 Aug 2003 12:00:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/21 12:00:30 Modified files: xorp/bgp/: process_watch.hh Log message: Correct comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:34 2005 Subject: No subject Thu Aug 21 14:34:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 14:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LLZ1dE066506 for ; Thu, 21 Aug 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LLZ1dk004467 for ; Thu, 21 Aug 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LLZ1RW006221; Thu, 21 Aug 2003 14:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LLY3RW006165 for ; Thu, 21 Aug 2003 14:34:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LLY3dk004447 for ; Thu, 21 Aug 2003 14:34:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LLY3kN070997 for ; Thu, 21 Aug 2003 14:34:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LLY3uB070996; Thu, 21 Aug 2003 14:34:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308212134.h7LLY3uB070996@xorpc.icir.org> Date: Thu, 21 Aug 2003 14:34:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/08/21 14:34:03 Modified files: xorp/devnotes/: work_plan.txt Log message: * Keep August 28 as the release date for 0.4 * Move most of the release 0.4 TODO items to release 0.5 * Add few immediate TODO entries for 0.4 * Schedule release 0.5 for October 16 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 16:46:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 16:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNl1dE098411 for ; Thu, 21 Aug 2003 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNl1dk006380 for ; Thu, 21 Aug 2003 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNl0RW009772; Thu, 21 Aug 2003 16:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNkURW009762 for ; Thu, 21 Aug 2003 16:46:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNkUdk006376 for ; Thu, 21 Aug 2003 16:46:30 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNkUkN077534 for ; Thu, 21 Aug 2003 16:46:30 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LNkUtU077533; Thu, 21 Aug 2003 16:46:30 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308212346.h7LNkUtU077533@xorpc.icir.org> Date: Thu, 21 Aug 2003 16:46:30 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_args.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: fred@xorpc.icir.org. 03/08/21 16:46:30 Modified files: xorp/libxipc/: xrl_args.cc Log message: Catch XrlAtomFound exception in XrlArgs constructor taking string argument. Avoids a potential unexpected exception. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 17:07:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 17:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M081dE004112 for ; Thu, 21 Aug 2003 17:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M081dk006818 for ; Thu, 21 Aug 2003 17:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M080RW010378; Thu, 21 Aug 2003 17:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M07GRW010358 for ; Thu, 21 Aug 2003 17:07:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M07Gdk006803 for ; Thu, 21 Aug 2003 17:07:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M07GkN078020 for ; Thu, 21 Aug 2003 17:07:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7M07GwE078019; Thu, 21 Aug 2003 17:07:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308220007.h7M07GwE078019@xorpc.icir.org> Date: Thu, 21 Aug 2003 17:07:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure xorp/fea/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/21 17:07:16 Modified files: ./: configure xorp/fea/: Makefile.in Log message: Commit auto-generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 16:47:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 17:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f2dE013912 for ; Thu, 21 Aug 2003 17:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f2dk007298 for ; Thu, 21 Aug 2003 17:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M0f1RW011162; Thu, 21 Aug 2003 17:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNltRW009791 for ; Thu, 21 Aug 2003 16:47:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNltdk006397 for ; Thu, 21 Aug 2003 16:47:55 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNltkN077579 for ; Thu, 21 Aug 2003 16:47:55 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: (from fred@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LNltPu077578; Thu, 21 Aug 2003 16:47:55 -0700 (PDT) (envelope-from fred) From: Fred Bauer Message-Id: <200308212347.h7LNltPu077578@xorpc.icir.org> Date: Thu, 21 Aug 2003 16:47:55 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: fred@xorpc.icir.org. 03/08/21 16:47:55 Modified files: xorp/fea/: ifconfig_get.hh Log message: New C++ class for Linux /proc parsing _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 16:49:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 17:41:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f4dE013937 for ; Thu, 21 Aug 2003 17:41:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f4dk007303 for ; Thu, 21 Aug 2003 17:41:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M0f3RW011173; Thu, 21 Aug 2003 17:41:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNnERW009842 for ; Thu, 21 Aug 2003 16:49:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNnEdk006415 for ; Thu, 21 Aug 2003 16:49:14 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNnEkN077597 for ; Thu, 21 Aug 2003 16:49:14 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: (from fred@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LNnECZ077596; Thu, 21 Aug 2003 16:49:14 -0700 (PDT) (envelope-from fred) From: Fred Bauer Message-Id: <200308212349.h7LNnECZ077596@xorpc.icir.org> Date: Thu, 21 Aug 2003 16:49:14 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am ifconfig.cc ifconfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: fred@xorpc.icir.org. 03/08/21 16:49:14 Modified files: xorp/fea/: Makefile.am ifconfig.cc ifconfig.hh Log message: New files/declarations for Linux /proc parsing for fea _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 16:50:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 17:41:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f5dE013969 for ; Thu, 21 Aug 2003 17:41:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f5dk007307 for ; Thu, 21 Aug 2003 17:41:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M0f4RW011185; Thu, 21 Aug 2003 17:41:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNo5RW009888 for ; Thu, 21 Aug 2003 16:50:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNo5dk006430 for ; Thu, 21 Aug 2003 16:50:05 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNo4kN077631 for ; Thu, 21 Aug 2003 16:50:04 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: (from fred@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LNo4bM077630; Thu, 21 Aug 2003 16:50:04 -0700 (PDT) (envelope-from fred) From: Fred Bauer Message-Id: <200308212350.h7LNo4bM077630@xorpc.icir.org> Date: Thu, 21 Aug 2003 16:50:04 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: fred@xorpc.icir.org. 03/08/21 16:50:04 Added files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: New code to return interface information for Linux _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 16:56:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 17:41:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f7dE013998 for ; Thu, 21 Aug 2003 17:41:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M0f6dk007313 for ; Thu, 21 Aug 2003 17:41:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M0f6RW011196; Thu, 21 Aug 2003 17:41:06 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7LNuQRW010053 for ; Thu, 21 Aug 2003 16:56:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNuPdk006575 for ; Thu, 21 Aug 2003 16:56:25 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7LNuPkN077743 for ; Thu, 21 Aug 2003 16:56:25 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: (from fred@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7LNuPIA077742; Thu, 21 Aug 2003 16:56:25 -0700 (PDT) (envelope-from fred) From: Fred Bauer Message-Id: <200308212356.h7LNuPIA077742@xorpc.icir.org> Date: Thu, 21 Aug 2003 16:56:25 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: fred@xorpc.icir.org. 03/08/21 16:56:25 Modified files: ./: configure.in Log message: Check for Linux /proc filesystem _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Thu Aug 21 21:23:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Aug 2003 21:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M4O1dE062412 for ; Thu, 21 Aug 2003 21:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M4O0dk009854 for ; Thu, 21 Aug 2003 21:24:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M4O0RW015582; Thu, 21 Aug 2003 21:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7M4N4RW015562 for ; Thu, 21 Aug 2003 21:23:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M4N3dk009852 for ; Thu, 21 Aug 2003 21:23:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7M4N3kN079907 for ; Thu, 21 Aug 2003 21:23:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7M4N3k6079906; Thu, 21 Aug 2003 21:23:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308220423.h7M4N3k6079906@xorpc.icir.org> Date: Thu, 21 Aug 2003 21:23:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc iftree.cc iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/21 21:23:03 Modified files: xorp/fea/: ifconfig_set_ioctl.cc iftree.cc iftree.hh Log message: Remove IfTreeInterface::_if_flags, IfTreeVif::_vif_flags and IfTree::IfTreeAddr[4,6]::_addr_flags and friends, because they are not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Fri Aug 22 16:15:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Aug 2003 16:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNG1dE094892 for ; Fri, 22 Aug 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNG1dk025713 for ; Fri, 22 Aug 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNG0RW013303; Fri, 22 Aug 2003 16:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNFnRW013295 for ; Fri, 22 Aug 2003 16:15:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNFndk025707 for ; Fri, 22 Aug 2003 16:15:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNFnkN049865 for ; Fri, 22 Aug 2003 16:15:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7MNFnqn049864; Fri, 22 Aug 2003 16:15:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308222315.h7MNFnqn049864@xorpc.icir.org> Date: Fri, 22 Aug 2003 16:15:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/22 16:15:49 xorp/libfeaclient Update of /usr/local/www/data/cvs/xorp/libfeaclient In directory xorpc.icir.org:/tmp/cvs-serv49858/libfeaclient Log Message: Directory /usr/local/www/data/cvs/xorp/libfeaclient added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Fri Aug 22 16:18:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Aug 2003 16:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNJ1dE095467 for ; Fri, 22 Aug 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNJ1dk025753 for ; Fri, 22 Aug 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNJ1RW013450; Fri, 22 Aug 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNIERW013386 for ; Fri, 22 Aug 2003 16:18:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNIEdk025736 for ; Fri, 22 Aug 2003 16:18:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNIEkN049982 for ; Fri, 22 Aug 2003 16:18:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7MNIEOp049981; Fri, 22 Aug 2003 16:18:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308222318.h7MNIEOp049981@xorpc.icir.org> Date: Fri, 22 Aug 2003 16:18:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/interfaces/ fea_ifmgr_client2.xif fea_ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/08/22 16:18:14 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: fea_ifmgr_client2.xif fea_ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Log message: Add new interface for replicating fea ifmgr state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Fri Aug 22 16:19:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Aug 2003 16:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNK1dE095661 for ; Fri, 22 Aug 2003 16:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNK0dk025773 for ; Fri, 22 Aug 2003 16:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNK0RW013488; Fri, 22 Aug 2003 16:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNJ3RW013462 for ; Fri, 22 Aug 2003 16:19:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNJ2dk025757 for ; Fri, 22 Aug 2003 16:19:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNJ2kN050002 for ; Fri, 22 Aug 2003 16:19:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7MNJ2dx050001; Fri, 22 Aug 2003 16:19:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308222319.h7MNJ2dx050001@xorpc.icir.org> Date: Fri, 22 Aug 2003 16:19:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ .cvsignore Makefile.am Makefile.in README ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh ...libfeaclient_module.h ...test_local_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/22 16:19:02 Added files: xorp/libfeaclient/: .cvsignore Makefile.am Makefile.in README ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh libfeaclient_module.h test_local_copy.cc Log message: Add new Fea IfMgr configuration tree and classes to help with it's replication. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Fri Aug 22 16:28:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Aug 2003 16:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNT1dE097411 for ; Fri, 22 Aug 2003 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNT1dk025874 for ; Fri, 22 Aug 2003 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNT0RW013693; Fri, 22 Aug 2003 16:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7MNSuRW013683 for ; Fri, 22 Aug 2003 16:28:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNSudk025872 for ; Fri, 22 Aug 2003 16:28:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7MNSukN050221 for ; Fri, 22 Aug 2003 16:28:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7MNSuL0050220; Fri, 22 Aug 2003 16:28:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308222328.h7MNSuL0050220@xorpc.icir.org> Date: Fri, 22 Aug 2003 16:28:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/08/22 16:28:56 Modified files: ./: Makefile.am Makefile.in configure configure.in Log message: Add libfeaclient to build process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 9:58:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 09:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGx2dE073203 for ; Mon, 25 Aug 2003 09:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGx2dk074712 for ; Mon, 25 Aug 2003 09:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PGx1RW024612; Mon, 25 Aug 2003 09:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PGw3RW024587 for ; Mon, 25 Aug 2003 09:58:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGw3dk074692 for ; Mon, 25 Aug 2003 09:58:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGw3kN030152 for ; Mon, 25 Aug 2003 09:58:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PGw3V4030151; Mon, 25 Aug 2003 09:58:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308251658.h7PGw3V4030151@xorpc.icir.org> Date: Mon, 25 Aug 2003 9:58:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ test_local_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/25 09:58:03 Modified files: xorp/libfeaclient/: test_local_copy.cc Log message: Add IPv6 address test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 9:59:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 10:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PH01dE073380 for ; Mon, 25 Aug 2003 10:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PH01dk074738 for ; Mon, 25 Aug 2003 10:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PH00RW024657; Mon, 25 Aug 2003 10:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PGxBRW024626 for ; Mon, 25 Aug 2003 09:59:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGxAdk074718 for ; Mon, 25 Aug 2003 09:59:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PGxAkN030205 for ; Mon, 25 Aug 2003 09:59:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PGxAnV030204; Mon, 25 Aug 2003 09:59:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308251659.h7PGxAnV030204@xorpc.icir.org> Date: Mon, 25 Aug 2003 9:59:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/25 09:59:10 Modified files: xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc Log message: Remove parent pointer from IfMgr*Atom structures and propagate change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 14:50:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 14:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLu1dE046194 for ; Mon, 25 Aug 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLu1dk078299 for ; Mon, 25 Aug 2003 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PLu1RW002693; Mon, 25 Aug 2003 14:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PLoiRW002561 for ; Mon, 25 Aug 2003 14:55:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLoidk078236 for ; Mon, 25 Aug 2003 14:50:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLoikN081856 for ; Mon, 25 Aug 2003 14:50:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PLoiJB081855; Mon, 25 Aug 2003 14:50:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308252150.h7PLoiJB081855@xorpc.icir.org> Date: Mon, 25 Aug 2003 14:50:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/25 14:50:44 Modified files: xorp/bgp/: process_watch.cc process_watch.hh Log message: Increase the functionality of the process watcher so it can be used to watch for arbitary targets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 14:52:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 14:56:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLu6dE046249 for ; Mon, 25 Aug 2003 14:56:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLu6dk078305 for ; Mon, 25 Aug 2003 14:56:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PLu5RW002706; Mon, 25 Aug 2003 14:56:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PLqgRW002603 for ; Mon, 25 Aug 2003 14:55:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLqgdk078248 for ; Mon, 25 Aug 2003 14:52:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PLqgkN081887 for ; Mon, 25 Aug 2003 14:52:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PLqg87081886; Mon, 25 Aug 2003 14:52:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308252152.h7PLqg87081886@xorpc.icir.org> Date: Mon, 25 Aug 2003 14:52:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/25 14:52:42 Modified files: xorp/bgp/: main.hh Log message: Add two methods: 1) Return the name of the BGP MIB target. 2) Is the BGP MIB target running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 15:20:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 15:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PML2dE052051 for ; Mon, 25 Aug 2003 15:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PML1dk078592 for ; Mon, 25 Aug 2003 15:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PML1RW003382; Mon, 25 Aug 2003 15:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PMKCRW003362 for ; Mon, 25 Aug 2003 15:20:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMKCdk078589 for ; Mon, 25 Aug 2003 15:20:12 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMKBkN088424 for ; Mon, 25 Aug 2003 15:20:11 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PMKBGe088423; Mon, 25 Aug 2003 15:20:11 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308252220.h7PMKBGe088423@xorpc.icir.org> Date: Mon, 25 Aug 2003 15:20:11 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ Makefile.am Makefile.in xorp/utils/ FlowerCheck flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: jcardona@xorpc.icir.org. 03/08/25 15:20:11 Modified files: xorp/utils/: Makefile.am Makefile.in Added files: xorp/utils/: FlowerCheck flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Log message: Adding flower_malloc debug library and a test for it _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 15:23:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 15:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMO1dE052776 for ; Mon, 25 Aug 2003 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMO1dk078625 for ; Mon, 25 Aug 2003 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PMO0RW003461; Mon, 25 Aug 2003 15:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PMN3RW003444 for ; Mon, 25 Aug 2003 15:23:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMN3dk078615 for ; Mon, 25 Aug 2003 15:23:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMN2kN088452 for ; Mon, 25 Aug 2003 15:23:02 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PMN2MW088451; Mon, 25 Aug 2003 15:23:02 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308252223.h7PMN2MW088451@xorpc.icir.org> Date: Mon, 25 Aug 2003 15:23:02 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: jcardona@xorpc.icir.org. 03/08/25 15:23:02 Modified files: xorp/utils/: test_flower_malloc.sh Log message: Fxied tpyo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 15:40:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 15:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMf2dE056899 for ; Mon, 25 Aug 2003 15:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMf1dk078889 for ; Mon, 25 Aug 2003 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PMf1RW004011; Mon, 25 Aug 2003 15:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PMenRW003996 for ; Mon, 25 Aug 2003 15:40:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMendk078887 for ; Mon, 25 Aug 2003 15:40:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PMenkN088663 for ; Mon, 25 Aug 2003 15:40:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PMenN0088662; Mon, 25 Aug 2003 15:40:49 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308252240.h7PMenN0088662@xorpc.icir.org> Date: Mon, 25 Aug 2003 15:40:49 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ test_flower_malloc.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: jcardona@xorpc.icir.org. 03/08/25 15:40:49 Modified files: xorp/utils/: test_flower_malloc.c Log message: Fixed printf args _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Mon Aug 25 16:01:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Aug 2003 16:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PN21dE069859 for ; Mon, 25 Aug 2003 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PN20dk079101 for ; Mon, 25 Aug 2003 16:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PN20RW004560; Mon, 25 Aug 2003 16:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7PN1YRW004541 for ; Mon, 25 Aug 2003 16:01:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PN1Ydk079096 for ; Mon, 25 Aug 2003 16:01:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7PN1YkN094254 for ; Mon, 25 Aug 2003 16:01:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7PN1YC2094253; Mon, 25 Aug 2003 16:01:34 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308252301.h7PN1YC2094253@xorpc.icir.org> Date: Mon, 25 Aug 2003 16:01:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/25 16:01:34 Modified files: xorp/bgp/: Makefile.am Makefile.in peer.cc Log message: Call the BGP MIB code when there are state transitions to allow SNMP trap generation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:35 2005 Subject: No subject Tue Aug 26 10:26:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 10:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QHR1dE095403 for ; Tue, 26 Aug 2003 10:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QHR1dk091772 for ; Tue, 26 Aug 2003 10:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QHR0RW028442; Tue, 26 Aug 2003 10:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QHQtRW028436 for ; Tue, 26 Aug 2003 10:26:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QHQtdk091770 for ; Tue, 26 Aug 2003 10:26:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QHQtkN057547 for ; Tue, 26 Aug 2003 10:26:55 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QHQtdo057546; Tue, 26 Aug 2003 10:26:55 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308261726.h7QHQtdo057546@xorpc.icir.org> Date: Tue, 26 Aug 2003 10:26:55 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ test_flower_malloc.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: jcardona@xorpc.icir.org. 03/08/26 10:26:55 Modified files: xorp/utils/: test_flower_malloc.c Log message: Removed line from reference report _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 11:05:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 11:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QI62dE003080 for ; Tue, 26 Aug 2003 11:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QI61dk092250 for ; Tue, 26 Aug 2003 11:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QI61RW029446; Tue, 26 Aug 2003 11:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QI5SRW029431 for ; Tue, 26 Aug 2003 11:05:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QI5Rdk092246 for ; Tue, 26 Aug 2003 11:05:27 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QI5RkN057816 for ; Tue, 26 Aug 2003 11:05:27 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QI5R5g057815; Tue, 26 Aug 2003 11:05:27 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308261805.h7QI5R5g057815@xorpc.icir.org> Date: Tue, 26 Aug 2003 11:05:27 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: jcardona@xorpc.icir.org. 03/08/26 11:05:27 Modified files: xorp/utils/: flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Log message: Skipped flower_malloc tests in non-FreeBSD systems _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 12:03:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 12:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ41dE015333 for ; Tue, 26 Aug 2003 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ41dk093014 for ; Tue, 26 Aug 2003 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ41RW001005; Tue, 26 Aug 2003 12:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ3cRW000987 for ; Tue, 26 Aug 2003 12:03:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ3cdk092994 for ; Tue, 26 Aug 2003 12:03:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ3ckN065658 for ; Tue, 26 Aug 2003 12:03:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QJ3c9d065657; Tue, 26 Aug 2003 12:03:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308261903.h7QJ3c9d065657@xorpc.icir.org> Date: Tue, 26 Aug 2003 12:03:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr_client2.xif fea_ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/08/26 12:03:37 Modified files: xorp/xrl/interfaces/: fea_ifmgr_client2.xif fea_ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Log message: Remove flags related method(s). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 12:03:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 12:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ42dE015348 for ; Tue, 26 Aug 2003 12:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ42dk093019 for ; Tue, 26 Aug 2003 12:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ42RW001016; Tue, 26 Aug 2003 12:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ3qRW000995 for ; Tue, 26 Aug 2003 12:03:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ3qdk093009 for ; Tue, 26 Aug 2003 12:03:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ3qkN065728 for ; Tue, 26 Aug 2003 12:03:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QJ3q7Y065727; Tue, 26 Aug 2003 12:03:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308261903.h7QJ3q7Y065727@xorpc.icir.org> Date: Tue, 26 Aug 2003 12:03:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/targets/ fea_ifmgr_mirror.tgt fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/08/26 12:03:52 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/targets/: fea_ifmgr_mirror.tgt fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh Log message: Add IfMgr mirror target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 12:04:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 12:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ52dE015618 for ; Tue, 26 Aug 2003 12:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ51dk093063 for ; Tue, 26 Aug 2003 12:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ51RW001054; Tue, 26 Aug 2003 12:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJ4eRW001046 for ; Tue, 26 Aug 2003 12:04:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ4ddk093045 for ; Tue, 26 Aug 2003 12:04:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJ4dkN065910 for ; Tue, 26 Aug 2003 12:04:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QJ4dTS065909; Tue, 26 Aug 2003 12:04:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308261904.h7QJ4dTS065909@xorpc.icir.org> Date: Tue, 26 Aug 2003 12:04:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ Makefile.am Makefile.in ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh xorp/libfeaclient/ xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/26 12:04:39 Modified files: xorp/libfeaclient/: Makefile.am Makefile.in ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh Added files: xorp/libfeaclient/: xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Log message: Addition of IfMgrMirrorTarget related code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 12:29:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJU1dE031740 for ; Tue, 26 Aug 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJU1dk093392 for ; Tue, 26 Aug 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJU1RW001694; Tue, 26 Aug 2003 12:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QJTeRW001679 for ; Tue, 26 Aug 2003 12:29:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJTedk093387 for ; Tue, 26 Aug 2003 12:29:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QJTekN069216 for ; Tue, 26 Aug 2003 12:29:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QJTeTj069215; Tue, 26 Aug 2003 12:29:40 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308261929.h7QJTeTj069215@xorpc.icir.org> Date: Tue, 26 Aug 2003 12:29:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/08/26 12:29:40 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Add libfeaclient to list of kdoc targets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 15:23:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 15:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QMO2dE087621 for ; Tue, 26 Aug 2003 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QMO1dk095639 for ; Tue, 26 Aug 2003 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QMO1eR006436; Tue, 26 Aug 2003 15:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7QMNkeR006426 for ; Tue, 26 Aug 2003 15:23:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QMNkdk095637 for ; Tue, 26 Aug 2003 15:23:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7QMNkkN009566 for ; Tue, 26 Aug 2003 15:23:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7QMNj2F009565; Tue, 26 Aug 2003 15:23:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308262223.h7QMNj2F009565@xorpc.icir.org> Date: Tue, 26 Aug 2003 15:23:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/08/26 15:23:45 Modified files: ./: contributing.html Log message: Add scripting language support to code contributions. Came across SWIG the other day, looks useful, and would be interesting to do and useful to us. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 17:38:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 17:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0d1dE025974 for ; Tue, 26 Aug 2003 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0d0dk097087 for ; Tue, 26 Aug 2003 17:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0d0eR009391; Tue, 26 Aug 2003 17:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0c7eR009358 for ; Tue, 26 Aug 2003 17:38:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0c6dk097076 for ; Tue, 26 Aug 2003 17:38:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0c6kN010271 for ; Tue, 26 Aug 2003 17:38:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R0c6nR010270; Tue, 26 Aug 2003 17:38:06 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308270038.h7R0c6nR010270@xorpc.icir.org> Date: Tue, 26 Aug 2003 17:38:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ dbg_config.sh dbg_loadmib.sh dbg_startsnmp.sh dbg_unloadmib.sh xorp/mibs/snmpdscripts/ loadmib unloadmib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/26 17:38:06 Added files: xorp/mibs/snmpdscripts/: dbg_config.sh dbg_loadmib.sh dbg_startsnmp.sh dbg_unloadmib.sh Removed files: xorp/mibs/snmpdscripts/: loadmib unloadmib Log message: Per Atanu's request, added some debug scripts to start the snmp agent and load/unload mibs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 17:42:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 17:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0h1dE026991 for ; Tue, 26 Aug 2003 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0h0dk097154 for ; Tue, 26 Aug 2003 17:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0h0eR009502; Tue, 26 Aug 2003 17:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0gWeR009477 for ; Tue, 26 Aug 2003 17:42:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0gVdk097147 for ; Tue, 26 Aug 2003 17:42:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0gVkN010322 for ; Tue, 26 Aug 2003 17:42:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R0gV1U010321; Tue, 26 Aug 2003 17:42:31 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308270042.h7R0gV1U010321@xorpc.icir.org> Date: Tue, 26 Aug 2003 17:42:31 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ dbg_startsnmp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/26 17:42:31 Modified files: xorp/mibs/snmpdscripts/: dbg_startsnmp.sh Log message: Setting LD_LIBRARY_PATH _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 17:49:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 17:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0o1dE028740 for ; Tue, 26 Aug 2003 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0o1dk097219 for ; Tue, 26 Aug 2003 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0o1eR009650; Tue, 26 Aug 2003 17:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R0noeR009644 for ; Tue, 26 Aug 2003 17:49:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0nndk097214 for ; Tue, 26 Aug 2003 17:49:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R0nnkN010375 for ; Tue, 26 Aug 2003 17:49:49 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R0nnlF010374; Tue, 26 Aug 2003 17:49:49 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308270049.h7R0nnlF010374@xorpc.icir.org> Date: Tue, 26 Aug 2003 17:49:49 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ dbg_loadmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/26 17:49:49 Modified files: xorp/mibs/snmpdscripts/: dbg_loadmib.sh Log message: Fixed usage _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 18:29:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 18:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1U1dE039076 for ; Tue, 26 Aug 2003 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1U1dk097664 for ; Tue, 26 Aug 2003 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R1U0eR010417; Tue, 26 Aug 2003 18:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R1TXeR010406 for ; Tue, 26 Aug 2003 18:29:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1TXdk097655 for ; Tue, 26 Aug 2003 18:29:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1TXkN010712 for ; Tue, 26 Aug 2003 18:29:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R1TXrW010711; Tue, 26 Aug 2003 18:29:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270129.h7R1TXrW010711@xorpc.icir.org> Date: Tue, 26 Aug 2003 18:29:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc main.hh process_watch.cc process_watch.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 18:29:33 Modified files: xorp/bgp/: main.cc main.hh process_watch.cc process_watch.hh Log message: If we are interested in the target "bgp4_mib" actually register interest in it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 18:35:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 18:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1a1dE041051 for ; Tue, 26 Aug 2003 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1a1dk097743 for ; Tue, 26 Aug 2003 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R1a1eR010585; Tue, 26 Aug 2003 18:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R1Z6eR010569 for ; Tue, 26 Aug 2003 18:35:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1Z5dk097718 for ; Tue, 26 Aug 2003 18:35:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R1Z5kN010780 for ; Tue, 26 Aug 2003 18:35:05 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R1Z5AF010779; Tue, 26 Aug 2003 18:35:05 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308270135.h7R1Z5AF010779@xorpc.icir.org> Date: Tue, 26 Aug 2003 18:35:05 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_xrl_target.hh xorp/mibs/snmpdscripts/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/26 18:35:05 Modified files: xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_xrl_target.hh xorp/mibs/snmpdscripts/: Makefile.am Makefile.in Log message: Updated kdoc comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 19:08:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 19:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R291dE055130 for ; Tue, 26 Aug 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R291dk098085 for ; Tue, 26 Aug 2003 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R291eR011280; Tue, 26 Aug 2003 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R28EeR011266 for ; Tue, 26 Aug 2003 19:08:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R28Edk098078 for ; Tue, 26 Aug 2003 19:08:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R28EkN011072 for ; Tue, 26 Aug 2003 19:08:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R28ESn011071; Tue, 26 Aug 2003 19:08:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270208.h7R28ESn011071@xorpc.icir.org> Date: Tue, 26 Aug 2003 19:08:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 19:08:14 Modified files: xorp/bgp/: notification_packet.cc packet.hh Log message: Create a new static method to print notification error codes and subcodes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 19:10:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2B1dE055643 for ; Tue, 26 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2B1dk098129 for ; Tue, 26 Aug 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2B1eR011335; Tue, 26 Aug 2003 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2ABeR011317 for ; Tue, 26 Aug 2003 19:10:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2AAdk098125 for ; Tue, 26 Aug 2003 19:10:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2AAkN011123 for ; Tue, 26 Aug 2003 19:10:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R2AAgm011122; Tue, 26 Aug 2003 19:10:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270210.h7R2AAgm011122@xorpc.icir.org> Date: Tue, 26 Aug 2003 19:10:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 19:10:10 Modified files: xorp/bgp/: peer.cc Log message: Use the new method in the notification class to format error codes to for snmp traps. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 19:27:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 19:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2S1dE060106 for ; Tue, 26 Aug 2003 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2S1dk098304 for ; Tue, 26 Aug 2003 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2S1eR011715; Tue, 26 Aug 2003 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2RteR011706 for ; Tue, 26 Aug 2003 19:27:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2Rsdk098302 for ; Tue, 26 Aug 2003 19:27:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2RskN011229 for ; Tue, 26 Aug 2003 19:27:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R2RsDC011228; Tue, 26 Aug 2003 19:27:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270227.h7R2RsDC011228@xorpc.icir.org> Date: Tue, 26 Aug 2003 19:27:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 19:27:54 Modified files: xorp/bgp/: peer.cc Log message: Remove some dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 19:30:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2V1dE060952 for ; Tue, 26 Aug 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2V1dk098347 for ; Tue, 26 Aug 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2V1eR011813; Tue, 26 Aug 2003 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2UteR011807 for ; Tue, 26 Aug 2003 19:30:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2Utdk098345 for ; Tue, 26 Aug 2003 19:30:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2UtkN011287 for ; Tue, 26 Aug 2003 19:30:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R2UtGF011286; Tue, 26 Aug 2003 19:30:55 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270230.h7R2UtGF011286@xorpc.icir.org> Date: Tue, 26 Aug 2003 19:30:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 19:30:55 Modified files: xorp/bgp/: peer.cc Log message: When we generate a notification packet save the error codes. We were only saving the error codes that we received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 19:45:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 19:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2k1dE064612 for ; Tue, 26 Aug 2003 19:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2k1dk098503 for ; Tue, 26 Aug 2003 19:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2k1eR012122; Tue, 26 Aug 2003 19:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R2jMeR012112 for ; Tue, 26 Aug 2003 19:45:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2jMdk098499 for ; Tue, 26 Aug 2003 19:45:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R2jMkN016782 for ; Tue, 26 Aug 2003 19:45:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R2jMVw016781; Tue, 26 Aug 2003 19:45:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308270245.h7R2jMVw016781@xorpc.icir.org> Date: Tue, 26 Aug 2003 19:45:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/26 19:45:22 Modified files: xorp/bgp/: peer.cc Log message: Undid last change. Last error should only contain state received from the peer. > When we generate a notification packet save the error codes. We were > only saving the error codes that we received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Tue Aug 26 20:18:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Aug 2003 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R3J1dE072534 for ; Tue, 26 Aug 2003 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R3J0dk098851 for ; Tue, 26 Aug 2003 20:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R3J0eR012695; Tue, 26 Aug 2003 20:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7R3ITeR012678 for ; Tue, 26 Aug 2003 20:18:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R3ISdk098844 for ; Tue, 26 Aug 2003 20:18:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7R3ISkN017007 for ; Tue, 26 Aug 2003 20:18:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7R3ISI0017006; Tue, 26 Aug 2003 20:18:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308270318.h7R3ISI0017006@xorpc.icir.org> Date: Tue, 26 Aug 2003 20:18:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/08/26 20:18:28 Modified files: xorp/cli/: cli_client.cc Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Wed Aug 27 10:08:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 10:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RH91dE034646 for ; Wed, 27 Aug 2003 10:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RH91dk008910 for ; Wed, 27 Aug 2003 10:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RH91eR000307; Wed, 27 Aug 2003 10:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RH8JeR000278 for ; Wed, 27 Aug 2003 10:08:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RH8Idk008899 for ; Wed, 27 Aug 2003 10:08:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RH8IkN061825 for ; Wed, 27 Aug 2003 10:08:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RH8Ibp061824; Wed, 27 Aug 2003 10:08:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308271708.h7RH8Ibp061824@xorpc.icir.org> Date: Wed, 27 Aug 2003 10:08:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/08/27 10:08:18 Modified files: xorp/devnotes/: release_process.txt Log message: Add MISC item to task 1200. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Wed Aug 27 10:13:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 10:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RHE1dE035621 for ; Wed, 27 Aug 2003 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RHE1dk008990 for ; Wed, 27 Aug 2003 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RHE1eR000467; Wed, 27 Aug 2003 10:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RHDteR000458 for ; Wed, 27 Aug 2003 10:13:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RHDtdk008988 for ; Wed, 27 Aug 2003 10:13:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RHDtkN061883 for ; Wed, 27 Aug 2003 10:13:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RHDtia061882; Wed, 27 Aug 2003 10:13:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308271713.h7RHDtia061882@xorpc.icir.org> Date: Wed, 27 Aug 2003 10:13:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ xrl_ifmgr_mirror.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/27 10:13:55 Modified files: xorp/libfeaclient/: xrl_ifmgr_mirror.cc Log message: Exchange std::string::clear() for std::string::erase(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Wed Aug 27 11:21:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 11:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RIM1dE054037 for ; Wed, 27 Aug 2003 11:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RIM1dk009739 for ; Wed, 27 Aug 2003 11:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RIM0eR002510; Wed, 27 Aug 2003 11:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RILqeR002499 for ; Wed, 27 Aug 2003 11:21:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RILqdk009737 for ; Wed, 27 Aug 2003 11:21:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RILqkN068535 for ; Wed, 27 Aug 2003 11:21:52 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RILq1p068534; Wed, 27 Aug 2003 11:21:52 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308271821.h7RILq1p068534@xorpc.icir.org> Date: Wed, 27 Aug 2003 11:21:52 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 03/08/27 11:21:52 Modified files: xorp/mibs/: bgp4_mib_xrl_target.cc Log message: Fixed snmptrap OID value _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:36 2005 Subject: No subject Wed Aug 27 12:15:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 12:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RJG1dE067823 for ; Wed, 27 Aug 2003 12:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RJG1dk010391 for ; Wed, 27 Aug 2003 12:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RJG1eR003943; Wed, 27 Aug 2003 12:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RJFJeR003927 for ; Wed, 27 Aug 2003 12:15:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RJFJdk010383 for ; Wed, 27 Aug 2003 12:15:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RJFJkN078270 for ; Wed, 27 Aug 2003 12:15:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RJFJmT078269; Wed, 27 Aug 2003 12:15:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308271915.h7RJFJmT078269@xorpc.icir.org> Date: Wed, 27 Aug 2003 12:15:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 12:15:18 Modified files: xorp/bgp/: path_attribute.hh Log message: Add the access methods for the multiprotocol attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 14:04:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 14:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RL51dE094142 for ; Wed, 27 Aug 2003 14:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RL50dk011587 for ; Wed, 27 Aug 2003 14:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RL50eR006775; Wed, 27 Aug 2003 14:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RL43eR006751 for ; Wed, 27 Aug 2003 14:04:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RL43dk011577 for ; Wed, 27 Aug 2003 14:04:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RL43kN020180 for ; Wed, 27 Aug 2003 14:04:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RL43qF020179; Wed, 27 Aug 2003 14:04:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272104.h7RL43qF020179@xorpc.icir.org> Date: Wed, 27 Aug 2003 14:04:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ peer_with_icsi.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 14:04:02 Modified files: other/bgp/: peer_with_icsi.sh Log message: Add xorp_ before xorp process names. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:17:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMI1dE013215 for ; Wed, 27 Aug 2003 15:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMI1dk012363 for ; Wed, 27 Aug 2003 15:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMI0eR008725; Wed, 27 Aug 2003 15:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMHVeR008707 for ; Wed, 27 Aug 2003 15:17:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMHVdk012359 for ; Wed, 27 Aug 2003 15:17:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMHVkN026645 for ; Wed, 27 Aug 2003 15:17:31 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMHVr8026644; Wed, 27 Aug 2003 15:17:31 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308272217.h7RMHVr8026644@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:17:30 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ README xorp/mibs/snmpdscripts/ README dbg_loadmib.sh dbg_unloadmib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/27 15:17:30 Modified files: xorp/mibs/: README xorp/mibs/snmpdscripts/: README dbg_loadmib.sh dbg_unloadmib.sh Log message: Documented scripts and updated README files for 0.4 release _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:19:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMK1dE013701 for ; Wed, 27 Aug 2003 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMK1dk012395 for ; Wed, 27 Aug 2003 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMK0eR008805; Wed, 27 Aug 2003 15:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMJ5eR008756 for ; Wed, 27 Aug 2003 15:19:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMJ5dk012378 for ; Wed, 27 Aug 2003 15:19:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMJ4kN026683 for ; Wed, 27 Aug 2003 15:19:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMJ4YF026682; Wed, 27 Aug 2003 15:19:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272219.h7RMJ4YF026682@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:19:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: pavlin@xorpc.icir.org. 03/08/27 15:19:04 Modified files: xorp/libfeaclient/: .cvsignore Log message: Added Makefile and friends to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:31:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:32:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMW3dE016915 for ; Wed, 27 Aug 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMW2dk012523 for ; Wed, 27 Aug 2003 15:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMW2eR009120; Wed, 27 Aug 2003 15:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMV3eR009075 for ; Wed, 27 Aug 2003 15:31:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMV3dk012517 for ; Wed, 27 Aug 2003 15:31:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMV3kN027018 for ; Wed, 27 Aug 2003 15:31:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMV3mY027017; Wed, 27 Aug 2003 15:31:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308272231.h7RMV3mY027017@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:31:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/27 15:31:03 Modified files: xorp/libfeaclient/: ifmgr_atoms.hh Log message: Add back clear() method that got cleared before last commit. Reported by: Pavlin Radoslavov _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:32:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMX1dE017190 for ; Wed, 27 Aug 2003 15:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMX1dk012538 for ; Wed, 27 Aug 2003 15:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMX1eR009151; Wed, 27 Aug 2003 15:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMWXeR009137 for ; Wed, 27 Aug 2003 15:32:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMWXdk012529 for ; Wed, 27 Aug 2003 15:32:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMWXkN027061 for ; Wed, 27 Aug 2003 15:32:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMWXYg027060; Wed, 27 Aug 2003 15:32:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272232.h7RMWXYg027060@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:32:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 15:32:33 Modified files: xorp/bgp/: parameter.cc Log message: Print the AFI and SAFI values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:32:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMX2dE017205 for ; Wed, 27 Aug 2003 15:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMX2dk012542 for ; Wed, 27 Aug 2003 15:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMX2eR009162; Wed, 27 Aug 2003 15:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMWmeR009144 for ; Wed, 27 Aug 2003 15:32:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMWmdk012533 for ; Wed, 27 Aug 2003 15:32:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMWmkN027097 for ; Wed, 27 Aug 2003 15:32:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMWmkK027096; Wed, 27 Aug 2003 15:32:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272232.h7RMWmkK027096@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:32:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/08/27 15:32:48 Modified files: xorp/bgp/: peer.cc Log message: Move the declaration of the local trap_callback() to the beginning of the file, because gcc33 doesn't like it declared inside another function if the definition is outside that scope. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:36:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMb1dE023529 for ; Wed, 27 Aug 2003 15:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMb0dk012607 for ; Wed, 27 Aug 2003 15:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMb0eR009330; Wed, 27 Aug 2003 15:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMaWeR009323 for ; Wed, 27 Aug 2003 15:36:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMaVdk012600 for ; Wed, 27 Aug 2003 15:36:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMaVkN027220 for ; Wed, 27 Aug 2003 15:36:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMaVSk027219; Wed, 27 Aug 2003 15:36:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272236.h7RMaVSk027219@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:36:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 15:36:31 Modified files: xorp/bgp/: main.cc Log message: Add the hook for enabling the Multiprotocol capability "MultiProtocolIPv6". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:42:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMh1dE025108 for ; Wed, 27 Aug 2003 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMh1dk012669 for ; Wed, 27 Aug 2003 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMh1eR009474; Wed, 27 Aug 2003 15:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMgAeR009450 for ; Wed, 27 Aug 2003 15:42:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMg9dk012659 for ; Wed, 27 Aug 2003 15:42:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMg9kN027304 for ; Wed, 27 Aug 2003 15:42:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMg9XZ027303; Wed, 27 Aug 2003 15:42:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272242.h7RMg9XZ027303@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:42:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc peer.hh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/08/27 15:42:09 Modified files: xorp/bgp/harness/: peer.cc peer.hh xorp/docs/test_harness/: test_harness.tex Log message: Enable the sending of the IPv6 capability through the test harness. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:43:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMi1dE025361 for ; Wed, 27 Aug 2003 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMi0dk012682 for ; Wed, 27 Aug 2003 15:44:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMi0eR009506; Wed, 27 Aug 2003 15:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMhbeR009496 for ; Wed, 27 Aug 2003 15:43:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMhadk012678 for ; Wed, 27 Aug 2003 15:43:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMhakN027349 for ; Wed, 27 Aug 2003 15:43:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMha1g027348; Wed, 27 Aug 2003 15:43:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272243.h7RMha1g027348@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:43:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ peer_with_icsi.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 15:43:36 Modified files: other/bgp/: peer_with_icsi.sh Log message: Enable IPv6 between bgp and the test peer. Not to the Cisco as our image does not support IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 15:44:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 15:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMj1dE025623 for ; Wed, 27 Aug 2003 15:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMj1dk012698 for ; Wed, 27 Aug 2003 15:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMj0eR009547; Wed, 27 Aug 2003 15:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RMiKeR009519 for ; Wed, 27 Aug 2003 15:44:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMiJdk012690 for ; Wed, 27 Aug 2003 15:44:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RMiJkN027365 for ; Wed, 27 Aug 2003 15:44:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RMiJSb027364; Wed, 27 Aug 2003 15:44:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272244.h7RMiJSb027364@xorpc.icir.org> Date: Wed, 27 Aug 2003 15:44:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: pavlin@xorpc.icir.org. 03/08/27 15:44:19 Modified files: xorp/libfeaclient/: ifmgr_atoms.hh Log message: Move the definition of IfMgrIfTree::clear() outside the IfMgrIfTree class, because gcc33 doesn't like it inside (due to incomplete knowledge about IfMgrIfAtom). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:15:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNG2dE040429 for ; Wed, 27 Aug 2003 16:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNG1dk013017 for ; Wed, 27 Aug 2003 16:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNG1eR010287; Wed, 27 Aug 2003 16:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNFUeR010272 for ; Wed, 27 Aug 2003 16:15:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNFUdk013013 for ; Wed, 27 Aug 2003 16:15:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNFUkN027890 for ; Wed, 27 Aug 2003 16:15:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNFUHi027889; Wed, 27 Aug 2003 16:15:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272315.h7RNFUHi027889@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:15:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/08/27 16:15:30 Modified files: xorp/cli/: cli_client.cc Log message: Reverse the functions of 'j' and 'k' in page mode: - 'j' scroll down one line - 'k' scroll up one line This behavior is now consistent with "vi" and "more/less" key binding. If in the future we want to be consistent with the CLI behavior of some router vendors which use different key binding from the key binding of "vi/more/less", then we can add the hook later. Requested by Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:19:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNK1dE041856 for ; Wed, 27 Aug 2003 16:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNK1dk013067 for ; Wed, 27 Aug 2003 16:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNK1eR010440; Wed, 27 Aug 2003 16:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNJ2eR010415 for ; Wed, 27 Aug 2003 16:19:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNJ2dk013052 for ; Wed, 27 Aug 2003 16:19:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNJ2kN027928 for ; Wed, 27 Aug 2003 16:19:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNJ27X027927; Wed, 27 Aug 2003 16:19:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272319.h7RNJ27X027927@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:19:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/08/27 16:19:02 Modified files: xorp/cli/: TODO Log message: Add a TODO item. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:21:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNM1dE042587 for ; Wed, 27 Aug 2003 16:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNM1dk013115 for ; Wed, 27 Aug 2003 16:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNM1eR010521; Wed, 27 Aug 2003 16:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNLaeR010508 for ; Wed, 27 Aug 2003 16:21:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNLadk013101 for ; Wed, 27 Aug 2003 16:21:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNLakN027984 for ; Wed, 27 Aug 2003 16:21:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNLaM7027983; Wed, 27 Aug 2003 16:21:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308272321.h7RNLaM7027983@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:21:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/27 16:21:36 Modified files: ./: RELEASE_NOTES Log message: Added a 0.4 release note for CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:30:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNV1dE045640 for ; Wed, 27 Aug 2003 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNV1dk013223 for ; Wed, 27 Aug 2003 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNV1eR010759; Wed, 27 Aug 2003 16:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNUheR010749 for ; Wed, 27 Aug 2003 16:30:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNUgdk013213 for ; Wed, 27 Aug 2003 16:30:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNUgkN028093 for ; Wed, 27 Aug 2003 16:30:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNUgjE028092; Wed, 27 Aug 2003 16:30:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272330.h7RNUgjE028092@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:30:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 16:30:42 Modified files: xorp/bgp/: README Log message: Update the program names. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:37:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNc1dE052626 for ; Wed, 27 Aug 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNc1dk013290 for ; Wed, 27 Aug 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNc1eR011034; Wed, 27 Aug 2003 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNbveR011026 for ; Wed, 27 Aug 2003 16:37:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNbudk013288 for ; Wed, 27 Aug 2003 16:37:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNbukN028191 for ; Wed, 27 Aug 2003 16:37:56 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNbuQc028190; Wed, 27 Aug 2003 16:37:56 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308272337.h7RNbuQc028190@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:37:56 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html xorp/docs/kdoc/ gen-kdoc.sh xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: jcardona@xorpc.icir.org. 03/08/27 16:37:56 Modified files: xorp/docs/: status.html xorp/docs/kdoc/: gen-kdoc.sh xorp/docs/snmp/: snmp_overview.tex Log message: Updated documentation for 0.4 release _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:39:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNe1dE053249 for ; Wed, 27 Aug 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNe1dk013311 for ; Wed, 27 Aug 2003 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNe1eR011093; Wed, 27 Aug 2003 16:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNdSeR011080 for ; Wed, 27 Aug 2003 16:39:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNdSdk013305 for ; Wed, 27 Aug 2003 16:39:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNdSkN028226 for ; Wed, 27 Aug 2003 16:39:28 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNdSj1028225; Wed, 27 Aug 2003 16:39:28 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308272339.h7RNdSj1028225@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:39:28 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ xorp_if_mib.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: jcardona@xorpc.icir.org. 03/08/27 16:39:28 Modified files: xorp/xrl/interfaces/: xorp_if_mib.xif Log message: Trimmed long lines in comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:43:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNi1dE054147 for ; Wed, 27 Aug 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNi1dk013357 for ; Wed, 27 Aug 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNi0eR011193; Wed, 27 Aug 2003 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNh6eR011168 for ; Wed, 27 Aug 2003 16:43:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNh6dk013344 for ; Wed, 27 Aug 2003 16:43:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNh6kN028317 for ; Wed, 27 Aug 2003 16:43:06 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNh6Tc028316; Wed, 27 Aug 2003 16:43:06 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308272343.h7RNh6Tc028316@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:43:06 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ dbg_dlmiblist.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: jcardona@xorpc.icir.org. 03/08/27 16:43:06 Added files: xorp/mibs/snmpdscripts/: dbg_dlmiblist.sh Log message: Convenience script that shows the list of currently loaded mib modules _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:50:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNp1dE061957 for ; Wed, 27 Aug 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNp1dk013430 for ; Wed, 27 Aug 2003 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNp1eR011383; Wed, 27 Aug 2003 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNoNeR011371 for ; Wed, 27 Aug 2003 16:50:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNoMdk013426 for ; Wed, 27 Aug 2003 16:50:22 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNoMkN028449 for ; Wed, 27 Aug 2003 16:50:22 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNoMKM028448; Wed, 27 Aug 2003 16:50:22 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308272350.h7RNoMKM028448@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:50:22 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: jcardona@xorpc.icir.org. 03/08/27 16:50:22 Modified files: ./: RELEASE_NOTES Log message: Added SNMP section _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:37 2005 Subject: No subject Wed Aug 27 16:53:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNs1dE062711 for ; Wed, 27 Aug 2003 16:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNs0dk013462 for ; Wed, 27 Aug 2003 16:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNs0eR011453; Wed, 27 Aug 2003 16:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNrgeR011438 for ; Wed, 27 Aug 2003 16:53:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNrgdk013457 for ; Wed, 27 Aug 2003 16:53:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNrfkN028501 for ; Wed, 27 Aug 2003 16:53:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNrfOh028500; Wed, 27 Aug 2003 16:53:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272353.h7RNrfOh028500@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:53:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/08/27 16:53:41 Modified files: ./: RELEASE_NOTES Log message: Update BGP section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 16:54:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 16:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNt1dE062995 for ; Wed, 27 Aug 2003 16:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNt1dk013478 for ; Wed, 27 Aug 2003 16:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNt0eR011496; Wed, 27 Aug 2003 16:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNsOeR011474 for ; Wed, 27 Aug 2003 16:54:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNsOdk013472 for ; Wed, 27 Aug 2003 16:54:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNsOkN028536 for ; Wed, 27 Aug 2003 16:54:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNsOx9028535; Wed, 27 Aug 2003 16:54:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272354.h7RNsOx9028535@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:54:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/08/27 16:54:24 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Bumped version number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 16:59:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S002dE069634 for ; Wed, 27 Aug 2003 17:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S001dk013558 for ; Wed, 27 Aug 2003 17:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S001eR011629; Wed, 27 Aug 2003 17:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7RNxbeR011596 for ; Wed, 27 Aug 2003 16:59:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNxbdk013550 for ; Wed, 27 Aug 2003 16:59:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7RNxbkN028644 for ; Wed, 27 Aug 2003 16:59:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7RNxbHH028643; Wed, 27 Aug 2003 16:59:37 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308272359.h7RNxbHH028643@xorpc.icir.org> Date: Wed, 27 Aug 2003 16:59:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 16:59:37 Added files: xorp/bgp/: test_packet_coding.cc Log message: Rename packet_coding_test.cc to test_packet_coding.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:00:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S011dE069918 for ; Wed, 27 Aug 2003 17:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S011dk013595 for ; Wed, 27 Aug 2003 17:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S011eR011657; Wed, 27 Aug 2003 17:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S009eR011646 for ; Wed, 27 Aug 2003 17:00:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S009dk013584 for ; Wed, 27 Aug 2003 17:00:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S009kN028687 for ; Wed, 27 Aug 2003 17:00:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S009ro028686; Wed, 27 Aug 2003 17:00:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308280000.h7S009ro028686@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:00:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 17:00:09 Modified files: xorp/bgp/: Makefile.am Makefile.in Log message: Rename packet_coding_test.cc to test_packet_coding.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:01:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S022dE070205 for ; Wed, 27 Aug 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S021dk013624 for ; Wed, 27 Aug 2003 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S021eR011699; Wed, 27 Aug 2003 17:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S01VeR011679 for ; Wed, 27 Aug 2003 17:01:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S01Vdk013612 for ; Wed, 27 Aug 2003 17:01:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S01VkN028739 for ; Wed, 27 Aug 2003 17:01:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S01V0E028738; Wed, 27 Aug 2003 17:01:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308280001.h7S01V0E028738@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:01:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet_coding_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 17:01:31 Removed files: xorp/bgp/: packet_coding_test.cc Log message: Rename packet_coding_test.cc to test_packet_coding.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:01:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S022dE070220 for ; Wed, 27 Aug 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S022dk013627 for ; Wed, 27 Aug 2003 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S022eR011710; Wed, 27 Aug 2003 17:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S01weR011692 for ; Wed, 27 Aug 2003 17:01:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S01wdk013620 for ; Wed, 27 Aug 2003 17:01:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S01wkN028770 for ; Wed, 27 Aug 2003 17:01:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S01weE028769; Wed, 27 Aug 2003 17:01:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308280001.h7S01weE028769@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:01:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 17:01:58 Modified files: xorp/bgp/: .cvsignore Log message: Rename packet_coding_test.cc to test_packet_coding.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:05:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S061dE071194 for ; Wed, 27 Aug 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S061dk013692 for ; Wed, 27 Aug 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S060eR011821; Wed, 27 Aug 2003 17:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S05MeR011813 for ; Wed, 27 Aug 2003 17:05:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S05Ldk013685 for ; Wed, 27 Aug 2003 17:05:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S05LkN028905 for ; Wed, 27 Aug 2003 17:05:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S05LmF028904; Wed, 27 Aug 2003 17:05:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280005.h7S05LmF028904@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:05:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:05:21 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Bump-up the version number to 0.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:08:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S091dE071942 for ; Wed, 27 Aug 2003 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S091dk013732 for ; Wed, 27 Aug 2003 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S090eR011869; Wed, 27 Aug 2003 17:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S08teR011863 for ; Wed, 27 Aug 2003 17:08:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S08tdk013729 for ; Wed, 27 Aug 2003 17:08:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S08tkN028989 for ; Wed, 27 Aug 2003 17:08:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S08tcr028988; Wed, 27 Aug 2003 17:08:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308280008.h7S08tcr028988@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:08:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.tgt fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc ...fea_ifmgr_mirror_base.hh xorp/fea/ xrl_target.cc xrl_target.hh xorp/libfeaclient/ Makefile.am Makefile.in ifmgr_cmds.cc xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh xorp/xrl/interfaces/ fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator.xif fea_ifmgr_replicator_xif.cc ...fea_ifmgr_replicator_xif.hh xorp/xrl/targets/ test_fea_ifmgr_mirror.tgt test_fea_ifmgr_mirror.xrls test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh xorp/xrl/interfaces/ fea_ifmgr_client2.xif ! fea_! ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/08/27 17:08:55 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.tgt fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh xorp/fea/: xrl_target.cc xrl_target.hh xorp/libfeaclient/: Makefile.am Makefile.in ifmgr_cmds.cc xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Added files: xorp/xrl/interfaces/: fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator.xif fea_ifmgr_replicator_xif.cc fea_ifmgr_replicator_xif.hh xorp/xrl/targets/: test_fea_ifmgr_mirror.tgt test_fea_ifmgr_mirror.xrls test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh Removed files: xorp/xrl/interfaces/: fea_ifmgr_client2.xif fea_ifmgr_client2_xif.cc fea_ifmgr_client2_xif.hh Log message: Rename xrl/interfaces/fea_ifmgr_client2.xif to fea_ifmgr_mirror.xif. Add fea_ifmgr_replicator.xif, the registration interface for xrl target instances implement fea_ifmgr_mirror. Add to fea xrl interface and add placeholder hooks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:12:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0D1dE072928 for ; Wed, 27 Aug 2003 17:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0D0dk013800 for ; Wed, 27 Aug 2003 17:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0D0eR011993; Wed, 27 Aug 2003 17:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0CmeR011979 for ; Wed, 27 Aug 2003 17:12:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0Cmdk013793 for ; Wed, 27 Aug 2003 17:12:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0CmkN029064 for ; Wed, 27 Aug 2003 17:12:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0CmJH029063; Wed, 27 Aug 2003 17:12:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280012.h7S0CmJH029063@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:12:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:12:48 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:13:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0E1dE073188 for ; Wed, 27 Aug 2003 17:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0E1dk013813 for ; Wed, 27 Aug 2003 17:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0E0eR012030; Wed, 27 Aug 2003 17:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0DMeR012014 for ; Wed, 27 Aug 2003 17:13:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0DMdk013807 for ; Wed, 27 Aug 2003 17:13:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0DMkN029108 for ; Wed, 27 Aug 2003 17:13:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0DLQ2029107; Wed, 27 Aug 2003 17:13:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280013.h7S0DLQ2029107@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:13:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:13:21 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:23:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0O1dE075701 for ; Wed, 27 Aug 2003 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0O1dk013885 for ; Wed, 27 Aug 2003 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0O0eR012247; Wed, 27 Aug 2003 17:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0NGeR012230 for ; Wed, 27 Aug 2003 17:23:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0NGdk013883 for ; Wed, 27 Aug 2003 17:23:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0NGkN029175 for ; Wed, 27 Aug 2003 17:23:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0NGxJ029174; Wed, 27 Aug 2003 17:23:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280023.h7S0NGxJ029174@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:23:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:23:16 Modified files: xorp/docs/multicast/: multicast_arch.tex Log message: August 28, 2003: Bump-up the version to 0.4, and the date; minor edits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:34:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0Z1dE078539 for ; Wed, 27 Aug 2003 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0Z1dk014013 for ; Wed, 27 Aug 2003 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0Z1eR012488; Wed, 27 Aug 2003 17:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0YaeR012474 for ; Wed, 27 Aug 2003 17:34:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0Yadk014008 for ; Wed, 27 Aug 2003 17:34:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0YakN029251 for ; Wed, 27 Aug 2003 17:34:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0Yad2029250; Wed, 27 Aug 2003 17:34:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280034.h7S0Yad2029250@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:34:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:34:36 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:35:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0a2dE078859 for ; Wed, 27 Aug 2003 17:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0a1dk014050 for ; Wed, 27 Aug 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0a1eR012551; Wed, 27 Aug 2003 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0ZHeR012503 for ; Wed, 27 Aug 2003 17:35:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0ZGdk014036 for ; Wed, 27 Aug 2003 17:35:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0ZGkN029301 for ; Wed, 27 Aug 2003 17:35:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0ZGxq029300; Wed, 27 Aug 2003 17:35:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280035.h7S0ZGxq029300@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:35:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:35:16 Modified files: xorp/docs/pim/: pim_arch.tex Log message: Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:39:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0e2dE079837 for ; Wed, 27 Aug 2003 17:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0e1dk014085 for ; Wed, 27 Aug 2003 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0e1eR012651; Wed, 27 Aug 2003 17:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0deeR012633 for ; Wed, 27 Aug 2003 17:39:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0dddk014079 for ; Wed, 27 Aug 2003 17:39:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0ddkN029340 for ; Wed, 27 Aug 2003 17:39:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0ddwu029339; Wed, 27 Aug 2003 17:39:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280039.h7S0ddwu029339@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:39:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:39:39 Modified files: xorp/docs/rib/: rib.tex Log message: Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 17:49:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 17:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0o1dE082321 for ; Wed, 27 Aug 2003 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0o0dk014182 for ; Wed, 27 Aug 2003 17:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0o0eR012848; Wed, 27 Aug 2003 17:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S0nfeR012839 for ; Wed, 27 Aug 2003 17:49:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0nfdk014176 for ; Wed, 27 Aug 2003 17:49:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S0nekN029452 for ; Wed, 27 Aug 2003 17:49:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S0ne7d029451; Wed, 27 Aug 2003 17:49:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280049.h7S0ne7d029451@xorpc.icir.org> Date: Wed, 27 Aug 2003 17:49:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/08/27 17:49:40 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: * Added brief text with the document changes since the previous release. * Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 18:05:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 18:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S161dE086974 for ; Wed, 27 Aug 2003 18:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S161dk014369 for ; Wed, 27 Aug 2003 18:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S161eR013139; Wed, 27 Aug 2003 18:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S151eR013114 for ; Wed, 27 Aug 2003 18:05:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S151dk014341 for ; Wed, 27 Aug 2003 18:05:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S151kN029587 for ; Wed, 27 Aug 2003 18:05:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S151he029586; Wed, 27 Aug 2003 18:05:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308280105.h7S151he029586@xorpc.icir.org> Date: Wed, 27 Aug 2003 18:05:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 18:05:01 Modified files: xorp/bgp/: test_packet_coding.cc Log message: Refactor tests to use libxorp/test_main.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 18:12:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 18:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1D1dE094225 for ; Wed, 27 Aug 2003 18:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1D0dk014433 for ; Wed, 27 Aug 2003 18:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1D0eR013274; Wed, 27 Aug 2003 18:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1CHeR013250 for ; Wed, 27 Aug 2003 18:12:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1CGdk014428 for ; Wed, 27 Aug 2003 18:12:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1CGkN029705 for ; Wed, 27 Aug 2003 18:12:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S1CGF1029704; Wed, 27 Aug 2003 18:12:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280112.h7S1CGF1029704@xorpc.icir.org> Date: Wed, 27 Aug 2003 18:12:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/08/27 18:12:16 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: * Modify the text to match recent changes to the rtrmgr and xorpsh regarding computing the path to module binaries or commands. * Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 18:24:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 18:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1P2dE003984 for ; Wed, 27 Aug 2003 18:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1P1dk014534 for ; Wed, 27 Aug 2003 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1P1eR013530; Wed, 27 Aug 2003 18:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1OheR013498 for ; Wed, 27 Aug 2003 18:24:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1Ohdk014528 for ; Wed, 27 Aug 2003 18:24:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1OhkN035660 for ; Wed, 27 Aug 2003 18:24:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S1Ohcc035659; Wed, 27 Aug 2003 18:24:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280124.h7S1Ohcc035659@xorpc.icir.org> Date: Wed, 27 Aug 2003 18:24:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/27 18:24:43 Modified files: ./: RELEASE_NOTES Log message: Added release notes for RTRMGR and XORPSH. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:38 2005 Subject: No subject Wed Aug 27 18:29:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 18:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1U2dE005470 for ; Wed, 27 Aug 2003 18:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1U1dk014584 for ; Wed, 27 Aug 2003 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1U1eR013655; Wed, 27 Aug 2003 18:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1T0eR013634 for ; Wed, 27 Aug 2003 18:29:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1T0dk014575 for ; Wed, 27 Aug 2003 18:29:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1T0kN041176 for ; Wed, 27 Aug 2003 18:29:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S1T0cv041175; Wed, 27 Aug 2003 18:29:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280129.h7S1T0cv041175@xorpc.icir.org> Date: Wed, 27 Aug 2003 18:29:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/08/27 18:29:00 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:39 2005 Subject: No subject Wed Aug 27 18:36:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 18:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1b1dE007863 for ; Wed, 27 Aug 2003 18:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1b0dk014689 for ; Wed, 27 Aug 2003 18:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1b0eR013835; Wed, 27 Aug 2003 18:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S1aLeR013812 for ; Wed, 27 Aug 2003 18:36:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1aLdk014681 for ; Wed, 27 Aug 2003 18:36:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S1aLkN041344 for ; Wed, 27 Aug 2003 18:36:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S1aLpn041343; Wed, 27 Aug 2003 18:36:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280136.h7S1aLpn041343@xorpc.icir.org> Date: Wed, 27 Aug 2003 18:36:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/27 18:36:21 Modified files: ./: RELEASE_NOTES Log message: Added release notes for MLD/IGMP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:39 2005 Subject: No subject Wed Aug 27 19:30:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 19:31:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2V4dE022049 for ; Wed, 27 Aug 2003 19:31:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2V1dk015227; Wed, 27 Aug 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S2V0eR014760; Wed, 27 Aug 2003 19:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S2UbeR014750 for ; Wed, 27 Aug 2003 19:30:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2Ubdk015218 for ; Wed, 27 Aug 2003 19:30:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2UbkN047418 for ; Wed, 27 Aug 2003 19:30:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S2Ub9E047417; Wed, 27 Aug 2003 19:30:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308280230.h7S2Ub9E047417@xorpc.icir.org> Date: Wed, 27 Aug 2003 19:30:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/27 19:30:37 Modified files: ./: RELEASE_NOTES Log message: * Added several release notes for "ALL:" * Added release notes for FEA. * Added one more release notes for MLD/IGMP. * Added few more release notes for PIM-SM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:39 2005 Subject: No subject Wed Aug 27 19:33:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Aug 2003 19:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2Y1dE022850 for ; Wed, 27 Aug 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2Y1dk015249 for ; Wed, 27 Aug 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S2Y1eR014829; Wed, 27 Aug 2003 19:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7S2XgeR014810 for ; Wed, 27 Aug 2003 19:33:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2Xgdk015245 for ; Wed, 27 Aug 2003 19:33:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7S2XgkN047469 for ; Wed, 27 Aug 2003 19:33:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7S2Xg44047468; Wed, 27 Aug 2003 19:33:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308280233.h7S2Xg44047468@xorpc.icir.org> Date: Wed, 27 Aug 2003 19:33:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc parameter.hh test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/27 19:33:42 Modified files: xorp/bgp/: parameter.cc parameter.hh test_packet_coding.cc Log message: Fix a minor casting problem that caused the AFI to incorrectly read. Also add some tests for multiprocotol open options. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:39 2005 Subject: No subject Thu Aug 28 6:18:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 06:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDJ2dE048302 for ; Thu, 28 Aug 2003 06:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDJ2dk022751 for ; Thu, 28 Aug 2003 06:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDJ1eR029023; Thu, 28 Aug 2003 06:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDIPeR029012 for ; Thu, 28 Aug 2003 06:18:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDIPdk022746 for ; Thu, 28 Aug 2003 06:18:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDIPkN001894 for ; Thu, 28 Aug 2003 06:18:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SDIPlL001893; Thu, 28 Aug 2003 06:18:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281318.h7SDIPlL001893@xorpc.icir.org> Date: Thu, 28 Aug 2003 6:18:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 06:18:24 Modified files: ./: RELEASE_NOTES Log message: * Added release notes for "ALL", "LIBXORP", and "RIB". * Separate all 0.4 release notes items with empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:39 2005 Subject: No subject Thu Aug 28 6:25:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 06:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDQ1dE049652 for ; Thu, 28 Aug 2003 06:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDQ1dk022847 for ; Thu, 28 Aug 2003 06:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDQ0eR029174; Thu, 28 Aug 2003 06:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDPpeR029168 for ; Thu, 28 Aug 2003 06:25:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDPpdk022844 for ; Thu, 28 Aug 2003 06:25:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDPokN001979 for ; Thu, 28 Aug 2003 06:25:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SDPoc8001978; Thu, 28 Aug 2003 06:25:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281325.h7SDPoc8001978@xorpc.icir.org> Date: Thu, 28 Aug 2003 6:25:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/08/28 06:25:50 Modified files: xorp/docs/design_arch/: design_arch.tex Log message: * Add SNMP to the set of implemented items. * Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 6:29:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 06:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDU1dE050414 for ; Thu, 28 Aug 2003 06:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDU1dk022874 for ; Thu, 28 Aug 2003 06:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDU1eR029272; Thu, 28 Aug 2003 06:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDToeR029265 for ; Thu, 28 Aug 2003 06:29:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDTodk022869 for ; Thu, 28 Aug 2003 06:29:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDTokN002013 for ; Thu, 28 Aug 2003 06:29:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SDTofx002012; Thu, 28 Aug 2003 06:29:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281329.h7SDTofx002012@xorpc.icir.org> Date: Thu, 28 Aug 2003 6:29:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/08/28 06:29:50 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Bump-up the version to 0.4, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 6:44:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 06:45:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDjCdE053326 for ; Thu, 28 Aug 2003 06:45:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDjCdk023051 for ; Thu, 28 Aug 2003 06:45:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDj1eR029570; Thu, 28 Aug 2003 06:45:11 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDiweR029563 for ; Thu, 28 Aug 2003 06:44:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDiwdk023028 for ; Thu, 28 Aug 2003 06:44:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDiwkN002121 for ; Thu, 28 Aug 2003 06:44:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SDiwLL002120; Thu, 28 Aug 2003 06:44:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281344.h7SDiwLL002120@xorpc.icir.org> Date: Thu, 28 Aug 2003 6:44:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 06:44:58 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Updated to match XORP version 0.4 release code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 6:55:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 06:56:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDu3dE055351 for ; Thu, 28 Aug 2003 06:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDu1dk023197 for ; Thu, 28 Aug 2003 06:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDu0eR029770; Thu, 28 Aug 2003 06:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SDtJeR029758 for ; Thu, 28 Aug 2003 06:55:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDtIdk023189 for ; Thu, 28 Aug 2003 06:55:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SDtIkN002225 for ; Thu, 28 Aug 2003 06:55:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SDtIZ1002224; Thu, 28 Aug 2003 06:55:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281355.h7SDtIZ1002224@xorpc.icir.org> Date: Thu, 28 Aug 2003 6:55:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/28 06:55:18 Modified files: xorp/docs/fea/: fea.tex Log message: * Bump-up the version to 0.4, and the date. * Add "Linux /proc" to the list of implemented mechanisms for reading network interface information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:00:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE11dE056317 for ; Thu, 28 Aug 2003 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE11dk023243 for ; Thu, 28 Aug 2003 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE11eR029868; Thu, 28 Aug 2003 07:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE0teR029862 for ; Thu, 28 Aug 2003 07:00:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE0tdk023241 for ; Thu, 28 Aug 2003 07:00:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE0tkN002340 for ; Thu, 28 Aug 2003 07:00:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SE0tQw002339; Thu, 28 Aug 2003 07:00:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200308281400.h7SE0tQw002339@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:00:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ libxipc_overview.tex xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/08/28 07:00:55 Modified files: xorp/docs/libxipc/: libxipc_overview.tex xrl_interfaces.tex Log message: Bump version number and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:02:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE31dE056704 for ; Thu, 28 Aug 2003 07:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE31dk023272 for ; Thu, 28 Aug 2003 07:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE31eR029914; Thu, 28 Aug 2003 07:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE2geR029905 for ; Thu, 28 Aug 2003 07:02:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE2gdk023268 for ; Thu, 28 Aug 2003 07:02:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE2gkN002377 for ; Thu, 28 Aug 2003 07:02:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SE2gEX002376; Thu, 28 Aug 2003 07:02:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281402.h7SE2gEX002376@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:02:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:02:41 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Update document date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:04:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE51dE057090 for ; Thu, 28 Aug 2003 07:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE50dk023288 for ; Thu, 28 Aug 2003 07:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE50eR029962; Thu, 28 Aug 2003 07:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SE4CeR029941 for ; Thu, 28 Aug 2003 07:04:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE4Cdk023283 for ; Thu, 28 Aug 2003 07:04:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SE4BkN002428 for ; Thu, 28 Aug 2003 07:04:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SE4B5b002427; Thu, 28 Aug 2003 07:04:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281404.h7SE4B5b002427@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:04:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:04:11 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Update the document date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:15:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEG1dE059218 for ; Thu, 28 Aug 2003 07:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEG1dk023435 for ; Thu, 28 Aug 2003 07:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEG0eR000193; Thu, 28 Aug 2003 07:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEFTeR000179 for ; Thu, 28 Aug 2003 07:15:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEFTdk023427 for ; Thu, 28 Aug 2003 07:15:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEFTkN002620 for ; Thu, 28 Aug 2003 07:15:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEFTdm002619; Thu, 28 Aug 2003 07:15:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281415.h7SEFTdm002619@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:15:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:15:29 Modified files: xorp/fea/: TODO Log message: Prune a TODO entry that is already DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:22:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEN1dE060556 for ; Thu, 28 Aug 2003 07:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEN1dk023503 for ; Thu, 28 Aug 2003 07:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEN0eR000353; Thu, 28 Aug 2003 07:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEMWeR000343 for ; Thu, 28 Aug 2003 07:22:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEMWdk023498 for ; Thu, 28 Aug 2003 07:22:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEMWkN002699 for ; Thu, 28 Aug 2003 07:22:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEMWTn002698; Thu, 28 Aug 2003 07:22:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281422.h7SEMWTn002698@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:22:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:22:32 Modified files: xorp/mld6igmp/: TODO Log message: Remove TODO entries that are DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:32:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEX1dE062469 for ; Thu, 28 Aug 2003 07:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEX0dk023595 for ; Thu, 28 Aug 2003 07:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEX0eR000551; Thu, 28 Aug 2003 07:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEWHeR000541 for ; Thu, 28 Aug 2003 07:32:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEWHdk023590 for ; Thu, 28 Aug 2003 07:32:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEWGkN002858 for ; Thu, 28 Aug 2003 07:32:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEWGnB002857; Thu, 28 Aug 2003 07:32:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281432.h7SEWGnB002857@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:32:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:32:16 Modified files: ./: Makefile.in config.h.in Log message: Commit autogenerated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:40 2005 Subject: No subject Thu Aug 28 7:42:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEh1dE064376 for ; Thu, 28 Aug 2003 07:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEh1dk023689 for ; Thu, 28 Aug 2003 07:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEh1eR000778; Thu, 28 Aug 2003 07:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEgJeR000762 for ; Thu, 28 Aug 2003 07:42:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEgJdk023684 for ; Thu, 28 Aug 2003 07:42:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEgJkN002945 for ; Thu, 28 Aug 2003 07:42:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEgJVd002944; Thu, 28 Aug 2003 07:42:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281442.h7SEgJVd002944@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:42:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:42:19 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: Explicitly disable HAVE_PROC_LINUX until the implementation is completed and tested. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 7:55:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEu1dE066862 for ; Thu, 28 Aug 2003 07:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEu1dk023854 for ; Thu, 28 Aug 2003 07:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEu1eR001019; Thu, 28 Aug 2003 07:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEtEeR001002 for ; Thu, 28 Aug 2003 07:55:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEtDdk023846 for ; Thu, 28 Aug 2003 07:55:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEtDkN003039 for ; Thu, 28 Aug 2003 07:55:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEtDiu003038; Thu, 28 Aug 2003 07:55:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281455.h7SEtDiu003038@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:55:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:55:13 Modified files: xorp/pim/: README Log message: * Add a note about PIM support in recent FreeBSD kernel. * Update status date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 7:56:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 07:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEv1dE067073 for ; Thu, 28 Aug 2003 07:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEv0dk023881 for ; Thu, 28 Aug 2003 07:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEv0eR001048; Thu, 28 Aug 2003 07:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SEuJeR001034 for ; Thu, 28 Aug 2003 07:56:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEuIdk023864 for ; Thu, 28 Aug 2003 07:56:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SEuIkN003081 for ; Thu, 28 Aug 2003 07:56:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SEuIvK003080; Thu, 28 Aug 2003 07:56:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281456.h7SEuIvK003080@xorpc.icir.org> Date: Thu, 28 Aug 2003 7:56:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README xorp/fea/ README.mfea xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 07:56:18 Modified files: xorp/cli/: README xorp/fea/: README.mfea xorp/mld6igmp/: README Log message: Update status date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:03:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF41dE068403 for ; Thu, 28 Aug 2003 08:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF40dk023994 for ; Thu, 28 Aug 2003 08:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF40eR001208; Thu, 28 Aug 2003 08:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF3ZeR001188 for ; Thu, 28 Aug 2003 08:03:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF3Ydk023990 for ; Thu, 28 Aug 2003 08:03:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF3YkN003151 for ; Thu, 28 Aug 2003 08:03:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SF3Y1u003150; Thu, 28 Aug 2003 08:03:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281503.h7SF3Y1u003150@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:03:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:03:34 Modified files: xorp/devnotes/: release_process.txt Log message: Added a new task (number 1550). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:05:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF61dE068839 for ; Thu, 28 Aug 2003 08:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF61dk024045 for ; Thu, 28 Aug 2003 08:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF61eR001265; Thu, 28 Aug 2003 08:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF5leR001255 for ; Thu, 28 Aug 2003 08:05:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF5ldk024041 for ; Thu, 28 Aug 2003 08:05:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF5lkN003201 for ; Thu, 28 Aug 2003 08:05:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SF5lhl003200; Thu, 28 Aug 2003 08:05:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281505.h7SF5lhl003200@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:05:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:05:47 Modified files: xorp/docs/: status.html Log message: Update the date and release number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:07:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF81dE069249 for ; Thu, 28 Aug 2003 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF81dk024076 for ; Thu, 28 Aug 2003 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF81eR001313; Thu, 28 Aug 2003 08:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SF72eR001296 for ; Thu, 28 Aug 2003 08:07:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF71dk024065 for ; Thu, 28 Aug 2003 08:07:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SF71kN003231 for ; Thu, 28 Aug 2003 08:07:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SF71Ns003230; Thu, 28 Aug 2003 08:07:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281507.h7SF71Ns003230@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:07:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:07:01 Modified files: xorp/devnotes/: release_process.txt Log message: Minor edit to task number 1200. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:13:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFE1dE070396 for ; Thu, 28 Aug 2003 08:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFE1dk025477 for ; Thu, 28 Aug 2003 08:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFE0eR001431; Thu, 28 Aug 2003 08:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFDUeR001419 for ; Thu, 28 Aug 2003 08:13:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFDUdk025465 for ; Thu, 28 Aug 2003 08:13:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFDUkN004655 for ; Thu, 28 Aug 2003 08:13:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFDUZW004654; Thu, 28 Aug 2003 08:13:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281513.h7SFDUZW004654@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:13:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:13:30 Modified files: ./: downloads.html Log message: Added an entry for release-0.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:31:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFW1dE075189 for ; Thu, 28 Aug 2003 08:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFW0dk025766 for ; Thu, 28 Aug 2003 08:32:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFW0eR001834; Thu, 28 Aug 2003 08:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFVAeR001795 for ; Thu, 28 Aug 2003 08:31:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFV9dk025755 for ; Thu, 28 Aug 2003 08:31:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFV9kN004815 for ; Thu, 28 Aug 2003 08:31:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFV99J004814; Thu, 28 Aug 2003 08:31:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281531.h7SFV99J004814@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:31:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:31:09 Modified files: ./: news.html Log message: Add a news item for release-0.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:32:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFX1dE075384 for ; Thu, 28 Aug 2003 08:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFX1dk025781 for ; Thu, 28 Aug 2003 08:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFX1eR001888; Thu, 28 Aug 2003 08:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFW1eR001845 for ; Thu, 28 Aug 2003 08:32:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFW1dk025770 for ; Thu, 28 Aug 2003 08:32:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFW1kN004842 for ; Thu, 28 Aug 2003 08:32:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFW138004841; Thu, 28 Aug 2003 08:32:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281532.h7SFW138004841@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:32:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:32:01 Modified files: ./: index.html Log message: * Add a news item for release-0.4 * Delete old news items * Update the current release number and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:41:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFg1dE077121 for ; Thu, 28 Aug 2003 08:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFg1dk025931 for ; Thu, 28 Aug 2003 08:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFg1eR002092; Thu, 28 Aug 2003 08:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFfleR002086 for ; Thu, 28 Aug 2003 08:41:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFfldk025927 for ; Thu, 28 Aug 2003 08:41:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFflkN004931 for ; Thu, 28 Aug 2003 08:41:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFflon004930; Thu, 28 Aug 2003 08:41:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281541.h7SFflon004930@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:41:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:41:47 Modified files: ./: RELEASE_NOTES Log message: Update one of the FEA release notes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:45:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFk1dE077912 for ; Thu, 28 Aug 2003 08:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFk1dk026001 for ; Thu, 28 Aug 2003 08:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFk0eR002219; Thu, 28 Aug 2003 08:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFjNeR002203 for ; Thu, 28 Aug 2003 08:45:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFjNdk025996 for ; Thu, 28 Aug 2003 08:45:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFjNkN004988 for ; Thu, 28 Aug 2003 08:45:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFjNsq004987; Thu, 28 Aug 2003 08:45:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281545.h7SFjNsq004987@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:45:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:45:23 Modified files: xorp/docs/: index.html Log message: Update the document versions and date to match release-0.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:54:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFt1dE079639 for ; Thu, 28 Aug 2003 08:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFt1dk026121 for ; Thu, 28 Aug 2003 08:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFt1eR002408; Thu, 28 Aug 2003 08:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFsseR002400 for ; Thu, 28 Aug 2003 08:54:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFsrdk026116 for ; Thu, 28 Aug 2003 08:54:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFsrkN005091 for ; Thu, 28 Aug 2003 08:54:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFsrKS005090; Thu, 28 Aug 2003 08:54:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281554.h7SFsrKS005090@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:54:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:54:53 Modified files: ./: RELEASE_NOTES Log message: Added a release note for "ALL". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 8:57:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 08:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFw2dE080249 for ; Thu, 28 Aug 2003 08:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFw1dk026172 for ; Thu, 28 Aug 2003 08:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFw1eR002496; Thu, 28 Aug 2003 08:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SFvYeR002487 for ; Thu, 28 Aug 2003 08:57:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFvXdk026166 for ; Thu, 28 Aug 2003 08:57:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SFvXkN005144 for ; Thu, 28 Aug 2003 08:57:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SFvXQ0005143; Thu, 28 Aug 2003 08:57:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281557.h7SFvXQ0005143@xorpc.icir.org> Date: Thu, 28 Aug 2003 8:57:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 08:57:33 Modified files: ./: README Log message: * Remove the reference that the code compiles on MacOS X 10.2.x The reason for the removal is in RELEASE_NOTES (under category ALL). * Add an item for libfeaclient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 9:11:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 09:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGC2dE082945 for ; Thu, 28 Aug 2003 09:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGC1dk026395 for ; Thu, 28 Aug 2003 09:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGC1eR002801; Thu, 28 Aug 2003 09:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGB5eR002788 for ; Thu, 28 Aug 2003 09:11:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGB5dk026388 for ; Thu, 28 Aug 2003 09:11:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGB5kN005415 for ; Thu, 28 Aug 2003 09:11:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SGB5iF005414; Thu, 28 Aug 2003 09:11:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281611.h7SGB5iF005414@xorpc.icir.org> Date: Thu, 28 Aug 2003 9:11:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_ptr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 09:11:05 Modified files: xorp/libxorp/: ref_ptr.hh Log message: Unite a line that was split into two, because kdoc didn't like the split (even though the code was #if 0 ??). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 9:16:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 09:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGH1dE083903 for ; Thu, 28 Aug 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGH1dk026468 for ; Thu, 28 Aug 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGH0eR002914; Thu, 28 Aug 2003 09:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGGEeR002895 for ; Thu, 28 Aug 2003 09:16:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGGDdk026464 for ; Thu, 28 Aug 2003 09:16:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGGDkN005466 for ; Thu, 28 Aug 2003 09:16:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SGGDGr005465; Thu, 28 Aug 2003 09:16:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281616.h7SGGDGr005465@xorpc.icir.org> Date: Thu, 28 Aug 2003 9:16:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/08/28 09:16:13 Modified files: xorp/fea/: mfea_mrouter.hh Log message: Remove kdoc "@see" tag that is in the wrong place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 9:23:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 09:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGO1dE085258 for ; Thu, 28 Aug 2003 09:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGO1dk026560 for ; Thu, 28 Aug 2003 09:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGO0eR003105; Thu, 28 Aug 2003 09:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGNveR003098 for ; Thu, 28 Aug 2003 09:23:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGNvdk026558 for ; Thu, 28 Aug 2003 09:23:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGNvkN005533 for ; Thu, 28 Aug 2003 09:23:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SGNvAq005532; Thu, 28 Aug 2003 09:23:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281623.h7SGNvAq005532@xorpc.icir.org> Date: Thu, 28 Aug 2003 9:23:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/08/28 09:23:56 Modified files: xorp/bgp/: bgp_trie.hh Log message: Unite a long line that was split into two, because kdoc didn't like the split. Sigh... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 9:28:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 09:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGT1dE086420 for ; Thu, 28 Aug 2003 09:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGT0dk026634 for ; Thu, 28 Aug 2003 09:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGT0eR003234; Thu, 28 Aug 2003 09:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SGSMeR003215 for ; Thu, 28 Aug 2003 09:28:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGSMdk026630 for ; Thu, 28 Aug 2003 09:28:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SGSLkN005603 for ; Thu, 28 Aug 2003 09:28:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SGSLSv005602; Thu, 28 Aug 2003 09:28:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281628.h7SGSLSv005602@xorpc.icir.org> Date: Thu, 28 Aug 2003 9:28:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/08/28 09:28:21 Modified files: xorp/utils/: .cvsignore Log message: Added test_flower_malloc to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 10:06:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 10:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SH71dE004317 for ; Thu, 28 Aug 2003 10:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SH70dk027132 for ; Thu, 28 Aug 2003 10:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SH70eR004182; Thu, 28 Aug 2003 10:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SH6NeR004145 for ; Thu, 28 Aug 2003 10:06:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SH6Ndk027127 for ; Thu, 28 Aug 2003 10:06:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SH6NkN014686 for ; Thu, 28 Aug 2003 10:06:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SH6M9p014685; Thu, 28 Aug 2003 10:06:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308281706.h7SH6M9p014685@xorpc.icir.org> Date: Thu, 28 Aug 2003 10:06:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 10:06:22 Modified files: xorp/bgp/: README Log message: Fixed the date and added a known problems section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 10:17:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 10:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHI1dE007369 for ; Thu, 28 Aug 2003 10:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHI1dk027280 for ; Thu, 28 Aug 2003 10:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SHI0eR004438; Thu, 28 Aug 2003 10:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SHHkeR004425 for ; Thu, 28 Aug 2003 10:17:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHHkdk027277 for ; Thu, 28 Aug 2003 10:17:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHHkkN016333 for ; Thu, 28 Aug 2003 10:17:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SHHkiO016332; Thu, 28 Aug 2003 10:17:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308281717.h7SHHkiO016332@xorpc.icir.org> Date: Thu, 28 Aug 2003 10:17:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 10:17:45 Modified files: xorp/bgp/: TODO Log message: Documented the problem with new session getting withdraws from previous session. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 10:19:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 10:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHK2dE007879 for ; Thu, 28 Aug 2003 10:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHK1dk027307 for ; Thu, 28 Aug 2003 10:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SHK1eR004509; Thu, 28 Aug 2003 10:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SHJaeR004490 for ; Thu, 28 Aug 2003 10:19:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHJadk027300 for ; Thu, 28 Aug 2003 10:19:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SHJakN016633 for ; Thu, 28 Aug 2003 10:19:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SHJajI016632; Thu, 28 Aug 2003 10:19:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308281719.h7SHJajI016632@xorpc.icir.org> Date: Thu, 28 Aug 2003 10:19:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 10:19:36 Modified files: xorp/docs/bgp/: bgp.tex Log message: Bumped version number and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:41 2005 Subject: No subject Thu Aug 28 12:29:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 12:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJU1dE040991 for ; Thu, 28 Aug 2003 12:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJU10D029285 for ; Thu, 28 Aug 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SJU1eR008050; Thu, 28 Aug 2003 12:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SJTseR008041 for ; Thu, 28 Aug 2003 12:29:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJTr0D029279 for ; Thu, 28 Aug 2003 12:29:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJTrkN029919 for ; Thu, 28 Aug 2003 12:29:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SJTrBO029918; Thu, 28 Aug 2003 12:29:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281929.h7SJTrBO029918@xorpc.icir.org> Date: Thu, 28 Aug 2003 12:29:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 12:29:53 Modified files: ./: RELEASE_NOTES Log message: Added release notes for LIBXIPC, XRL, RIP. [commited by Pavlin on behalf of Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 12:41:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 12:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJg1dE043899 for ; Thu, 28 Aug 2003 12:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJg00D029469 for ; Thu, 28 Aug 2003 12:42:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SJg0eR008371; Thu, 28 Aug 2003 12:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SJfteR008365 for ; Thu, 28 Aug 2003 12:41:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJfs0D029466 for ; Thu, 28 Aug 2003 12:41:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SJfskN031101 for ; Thu, 28 Aug 2003 12:41:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SJfsnA031100; Thu, 28 Aug 2003 12:41:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308281941.h7SJfsnA031100@xorpc.icir.org> Date: Thu, 28 Aug 2003 12:41:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 12:41:54 Modified files: ./: VERSION configure.in configure Log message: Prepare XORP for release: bump-up version number _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 14:07:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 14:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SL91dE076580 for ; Thu, 28 Aug 2003 14:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SL910D030666 for ; Thu, 28 Aug 2003 14:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SL90eR010622; Thu, 28 Aug 2003 14:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SL7NeR010573 for ; Thu, 28 Aug 2003 14:07:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SL7N0D030651 for ; Thu, 28 Aug 2003 14:07:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SL7NkN064775 for ; Thu, 28 Aug 2003 14:07:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SL7NJE064745; Thu, 28 Aug 2003 14:07:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200308282107.h7SL7NJE064745@xorpc.icir.org> Date: Thu, 28 Aug 2003 14:07:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/08/28 14:07:23 Modified files: ./: RELEASE_NOTES Log message: Fix few typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 14:21:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 14:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLM1dE086082 for ; Thu, 28 Aug 2003 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLM10D030823 for ; Thu, 28 Aug 2003 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLM1eR010956; Thu, 28 Aug 2003 14:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLLGeR010940 for ; Thu, 28 Aug 2003 14:21:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLLG0D030818 for ; Thu, 28 Aug 2003 14:21:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLLGkN074753 for ; Thu, 28 Aug 2003 14:21:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SLLGsb074752; Thu, 28 Aug 2003 14:21:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308282121.h7SLLGsb074752@xorpc.icir.org> Date: Thu, 28 Aug 2003 14:21:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 14:21:16 Modified files: xorp/bgp/: parameter.cc Log message: 1) Removed redundant casts. 2) Required casts changed to C++ style. 3) Minor reformating and fixing of typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 14:22:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 14:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLN1dE086412 for ; Thu, 28 Aug 2003 14:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLN00D030836 for ; Thu, 28 Aug 2003 14:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLN0eR010996; Thu, 28 Aug 2003 14:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLM3eR010967 for ; Thu, 28 Aug 2003 14:22:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLM30D030827 for ; Thu, 28 Aug 2003 14:22:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLM3kN075054 for ; Thu, 28 Aug 2003 14:22:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SLM3wd075053; Thu, 28 Aug 2003 14:22:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308282122.h7SLM3wd075053@xorpc.icir.org> Date: Thu, 28 Aug 2003 14:22:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 14:22:03 Modified files: xorp/bgp/: test_packet_coding.cc Log message: Add a test for the refresh capability. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 14:24:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 14:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLP1dE087072 for ; Thu, 28 Aug 2003 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLP10D030880 for ; Thu, 28 Aug 2003 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLP1eR011052; Thu, 28 Aug 2003 14:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLOFeR011029 for ; Thu, 28 Aug 2003 14:24:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLOF0D030861 for ; Thu, 28 Aug 2003 14:24:15 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLOFkN075761 for ; Thu, 28 Aug 2003 14:24:15 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SLOFfW075760; Thu, 28 Aug 2003 14:24:15 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308282124.h7SLOFfW075760@xorpc.icir.org> Date: Thu, 28 Aug 2003 14:24:15 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/28 14:24:15 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Adding new test to verify that bgp sends SNMP traps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Thu Aug 28 14:41:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Aug 2003 14:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLg1dE091776 for ; Thu, 28 Aug 2003 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLg10D031132 for ; Thu, 28 Aug 2003 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLg1eR011529; Thu, 28 Aug 2003 14:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7SLfZeR011518 for ; Thu, 28 Aug 2003 14:41:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLfZ0D031127 for ; Thu, 28 Aug 2003 14:41:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7SLfZkN081685 for ; Thu, 28 Aug 2003 14:41:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7SLfZmK081678; Thu, 28 Aug 2003 14:41:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308282141.h7SLfZmK081678@xorpc.icir.org> Date: Thu, 28 Aug 2003 14:41:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/08/28 14:41:34 Modified files: xorp/bgp/: parameter.cc Log message: Change assert -> XLOG_ASSERT and add some comments regarding why it it safe to use asserts in decode routines that deal with packets off the wire. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Fri Aug 29 14:37:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Aug 2003 14:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TLc1FO037651 for ; Fri, 29 Aug 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TLc1LL048088 for ; Fri, 29 Aug 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7TLc1Xd013452; Fri, 29 Aug 2003 14:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7TLbvXd013443 for ; Fri, 29 Aug 2003 14:37:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TLbuLL048086 for ; Fri, 29 Aug 2003 14:37:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TLbukN092246 for ; Fri, 29 Aug 2003 14:37:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7TLbuau092245; Fri, 29 Aug 2003 14:37:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200308292137.h7TLbuau092245@xorpc.icir.org> Date: Fri, 29 Aug 2003 14:37:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/08/29 14:37:56 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Occasionally test1 fails, perhaps because 10 seconds is not long enough for our BGP process to read all the outstanding updates. Print a diagnostic explaining why the test may fail, also record the uptime. There may be correlation between this test failing and a machine being heavily loaded. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Fri Aug 29 15:10:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Aug 2003 15:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TMB1FO046975 for ; Fri, 29 Aug 2003 15:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TMB1LL048436 for ; Fri, 29 Aug 2003 15:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7TMB1Xd014293; Fri, 29 Aug 2003 15:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h7TMA9Xd014283 for ; Fri, 29 Aug 2003 15:10:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TMA9LL048432 for ; Fri, 29 Aug 2003 15:10:09 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h7TMA9kN092469 for ; Fri, 29 Aug 2003 15:10:09 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h7TMA9ZG092465; Fri, 29 Aug 2003 15:10:09 -0700 (PDT) (envelope-from jcardona) From: Javier Cardona Message-Id: <200308292210.h7TMA9ZG092465@xorpc.icir.org> Date: Fri, 29 Aug 2003 15:10:09 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgpversion.cc xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: jcardona@xorpc.icir.org. 03/08/29 15:10:09 Modified files: xorp/mibs/: bgp4_mib_1657_bgpversion.cc xorp/mibs/tests/: test_bgpmib.sh.in Log message: Changed bgpVersion to match MIB format _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 9:38:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 09:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Gd2FO081433 for ; Tue, 2 Sep 2003 09:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Gd2LL011982 for ; Tue, 2 Sep 2003 09:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82Gd1Xd015195; Tue, 2 Sep 2003 09:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82GcCXd015176 for ; Tue, 2 Sep 2003 09:38:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82GcCLL011959 for ; Tue, 2 Sep 2003 09:38:12 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82GcCkN083532 for ; Tue, 2 Sep 2003 09:38:12 -0700 (PDT) (envelope-from fred@xorpc.icir.org) Received: (from fred@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82GcCe8083531; Tue, 2 Sep 2003 09:38:12 -0700 (PDT) (envelope-from fred) From: Fred Bauer Message-Id: <200309021638.h82GcCe8083531@xorpc.icir.org> Date: Tue, 2 Sep 2003 9:38:12 () To: xorp-cvs@icir.org Reply-To: fred@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: fred@xorpc.icir.org. 03/09/02 09:38:12 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: Completed C++ class for Linux interfaces using /proc filesystem _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 14:39:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 14:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Le1FO053498 for ; Tue, 2 Sep 2003 14:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Le1LL016675 for ; Tue, 2 Sep 2003 14:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82Le1Xd023369; Tue, 2 Sep 2003 14:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82Ld2Xd023349 for ; Tue, 2 Sep 2003 14:39:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Ld2LL016642 for ; Tue, 2 Sep 2003 14:39:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Ld2kN058728 for ; Tue, 2 Sep 2003 14:39:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82Ld2Mk058727; Tue, 2 Sep 2003 14:39:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309022139.h82Ld2Mk058727@xorpc.icir.org> Date: Tue, 2 Sep 2003 14:39:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/02 14:39:02 Modified files: xorp/bgp/: TODO peer_handler.cc Log message: Code to tease apart an update packet into its IPv4 and IPv6 components. NOTE: The way the code is currently structured we will never construct a packet containing both IPv4 and IPv6 NLRI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 15:02:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 15:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M31FO059099 for ; Tue, 2 Sep 2003 15:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M31LL017058 for ; Tue, 2 Sep 2003 15:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M31Xd023827; Tue, 2 Sep 2003 15:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M2NXd023807 for ; Tue, 2 Sep 2003 15:02:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M2NLL017054 for ; Tue, 2 Sep 2003 15:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M2NkN058928 for ; Tue, 2 Sep 2003 15:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82M2NXU058927; Tue, 2 Sep 2003 15:02:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309022202.h82M2NXU058927@xorpc.icir.org> Date: Tue, 2 Sep 2003 15:02:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/09/02 15:02:23 Modified files: xorp/rtrmgr/: module_manager.cc Log message: Fix the process name of a started proces to be the same as the binary name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 15:04:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 15:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M51FO059611 for ; Tue, 2 Sep 2003 15:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M51LL017090 for ; Tue, 2 Sep 2003 15:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M50Xd023894; Tue, 2 Sep 2003 15:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M4oXd023868 for ; Tue, 2 Sep 2003 15:04:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M4oLL017083 for ; Tue, 2 Sep 2003 15:04:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M4okN058958 for ; Tue, 2 Sep 2003 15:04:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82M4oc5058957; Tue, 2 Sep 2003 15:04:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309022204.h82M4oc5058957@xorpc.icir.org> Date: Tue, 2 Sep 2003 15:04:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/02 15:04:50 Modified files: ./: RELEASE_NOTES Log message: Added a template for release-0.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 15:06:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 15:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M71FO060140 for ; Tue, 2 Sep 2003 15:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M70LL017121 for ; Tue, 2 Sep 2003 15:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M70Xd023944; Tue, 2 Sep 2003 15:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82M6PXd023934 for ; Tue, 2 Sep 2003 15:06:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M6OLL017117 for ; Tue, 2 Sep 2003 15:06:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82M6OkN059008 for ; Tue, 2 Sep 2003 15:06:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82M6OUh059007; Tue, 2 Sep 2003 15:06:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309022206.h82M6OUh059007@xorpc.icir.org> Date: Tue, 2 Sep 2003 15:06:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/02 15:06:24 Modified files: ./: RELEASE_NOTES Log message: Added a release note for RTRMGR. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 15:46:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 15:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Ml1FO069973 for ; Tue, 2 Sep 2003 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Ml1LL017644 for ; Tue, 2 Sep 2003 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82Ml0Xd024881; Tue, 2 Sep 2003 15:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82MkdXd024868 for ; Tue, 2 Sep 2003 15:46:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82MkdLL017640 for ; Tue, 2 Sep 2003 15:46:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82MkdkN059350 for ; Tue, 2 Sep 2003 15:46:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82MkdDB059349; Tue, 2 Sep 2003 15:46:39 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309022246.h82MkdDB059349@xorpc.icir.org> Date: Tue, 2 Sep 2003 15:46:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/02 15:46:38 Modified files: xorp/bgp/: path_attribute.hh Log message: Some minor syntax errors (missing underscores), discovered when template code was instantiated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 15:50:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 15:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Mp1FO076409 for ; Tue, 2 Sep 2003 15:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82Mp0LL017742 for ; Tue, 2 Sep 2003 15:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82Mp0Xd025003; Tue, 2 Sep 2003 15:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82MoCXd024984 for ; Tue, 2 Sep 2003 15:50:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82MoBLL017734 for ; Tue, 2 Sep 2003 15:50:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82MoBkN059420 for ; Tue, 2 Sep 2003 15:50:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82MoBve059419; Tue, 2 Sep 2003 15:50:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309022250.h82MoBve059419@xorpc.icir.org> Date: Tue, 2 Sep 2003 15:50:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/09/02 15:50:11 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 16:16:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 16:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h82NH3FO082843 for ; Tue, 2 Sep 2003 16:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82NH2LL018172 for ; Tue, 2 Sep 2003 16:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82NH2Xd025661; Tue, 2 Sep 2003 16:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h82NGhXd025652 for ; Tue, 2 Sep 2003 16:16:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h82NGhLL018168 for ; Tue, 2 Sep 2003 16:16:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h82NGgkN059649 for ; Tue, 2 Sep 2003 16:16:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h82NGgmc059648; Tue, 2 Sep 2003 16:16:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309022316.h82NGgmc059648@xorpc.icir.org> Date: Tue, 2 Sep 2003 16:16:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/09/02 16:16:42 Modified files: xorp/bgp/harness/: peer.cc xorp/docs/test_harness/: test_harness.tex Log message: Support for generating ipv6 update packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 17:26:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 17:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h830R1FO000258 for ; Tue, 2 Sep 2003 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h830R1LL019158 for ; Tue, 2 Sep 2003 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h830R0Xd027528; Tue, 2 Sep 2003 17:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h830QkXd027522 for ; Tue, 2 Sep 2003 17:26:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h830QjLL019156 for ; Tue, 2 Sep 2003 17:26:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h830QjkN060105 for ; Tue, 2 Sep 2003 17:26:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h830QjVp060104; Tue, 2 Sep 2003 17:26:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309030026.h830QjVp060104@xorpc.icir.org> Date: Tue, 2 Sep 2003 17:26:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/02 17:26:45 Modified files: xorp/bgp/harness/: peer.cc Log message: The copy constructor wasn't copying the ipv6 flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Tue Sep 2 17:49:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Sep 2003 17:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h830o1FO006164 for ; Tue, 2 Sep 2003 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h830o1LL019450 for ; Tue, 2 Sep 2003 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h830o0Xd028076; Tue, 2 Sep 2003 17:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h830n8Xd028051 for ; Tue, 2 Sep 2003 17:49:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h830n7LL019439 for ; Tue, 2 Sep 2003 17:49:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h830n7kN065842 for ; Tue, 2 Sep 2003 17:49:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h830n7O5065841; Tue, 2 Sep 2003 17:49:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309030049.h830n7O5065841@xorpc.icir.org> Date: Tue, 2 Sep 2003 17:49:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/02 17:49:07 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Create a session with both sides sending "BGP Multiple Protocol Capability AFI = 2 SAFI = 1" (test22). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:42 2005 Subject: No subject Wed Sep 3 10:34:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 10:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h83HZ1FO015996 for ; Wed, 3 Sep 2003 10:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83HZ1LL034204 for ; Wed, 3 Sep 2003 10:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83HZ1Xd017847; Wed, 3 Sep 2003 10:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83HYMXd017825 for ; Wed, 3 Sep 2003 10:34:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83HYLLL034194 for ; Wed, 3 Sep 2003 10:34:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h83HYLkN026576 for ; Wed, 3 Sep 2003 10:34:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h83HYLiQ026575; Wed, 3 Sep 2003 10:34:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309031734.h83HYLiQ026575@xorpc.icir.org> Date: Wed, 3 Sep 2003 10:34:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/Xif/ util.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/Xif/ Changes by: hodson@xorpc.icir.org. 03/09/03 10:34:21 Modified files: xorp/xrl/scripts/Xif/: util.py Log message: Switch from string.ascii_letters (python2.2) to string.letters (more portable). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 11:39:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 12:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h83J31FO037257 for ; Wed, 3 Sep 2003 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83J30LL034838 for ; Wed, 3 Sep 2003 12:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83J30Xd019196; Wed, 3 Sep 2003 12:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83J22Xd019104 for ; Wed, 3 Sep 2003 12:02:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83J20LL034821 for ; Wed, 3 Sep 2003 12:02:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h83Id9kN032316 for ; Wed, 3 Sep 2003 11:39:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h83Id9es032315; Wed, 3 Sep 2003 11:39:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309031839.h83Id9es032315@xorpc.icir.org> Date: Wed, 3 Sep 2003 11:39:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 11:39:04 Modified files: xorp/bgp/: peer.cc Log message: The mandatory attributes ORIGIN, ASPATH and NEXT HOP only need to be present if there are any NLRIs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 16:18:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 16:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NJ1FO099086 for ; Wed, 3 Sep 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NJ1LL038632 for ; Wed, 3 Sep 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83NJ1Xd025814; Wed, 3 Sep 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83NIqXd025803 for ; Wed, 3 Sep 2003 16:18:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NIqLL038630 for ; Wed, 3 Sep 2003 16:18:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NIpkN088916 for ; Wed, 3 Sep 2003 16:18:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h83NIp28088915; Wed, 3 Sep 2003 16:18:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309032318.h83NIp28088915@xorpc.icir.org> Date: Wed, 3 Sep 2003 16:18:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_replicator.hh ifmgr_xrl_replicator.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/09/03 16:18:51 Added files: xorp/libfeaclient/: ifmgr_xrl_replicator.hh ifmgr_xrl_replicator.cc Log message: Add replicator class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 16:20:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 16:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NL1FO099610 for ; Wed, 3 Sep 2003 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NL1LL038678 for ; Wed, 3 Sep 2003 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83NL0Xd025863; Wed, 3 Sep 2003 16:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h83NKIXd025852 for ; Wed, 3 Sep 2003 16:20:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NKILL038673 for ; Wed, 3 Sep 2003 16:20:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h83NKIkN088982 for ; Wed, 3 Sep 2003 16:20:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h83NKIQL088981; Wed, 3 Sep 2003 16:20:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309032320.h83NKIQL088981@xorpc.icir.org> Date: Wed, 3 Sep 2003 16:20:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ Makefile.am Makefile.in ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh xorp/libfeaclient/ ifmgr_cmd_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/09/03 16:20:18 Modified files: xorp/libfeaclient/: Makefile.am Makefile.in ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh Added files: xorp/libfeaclient/: ifmgr_cmd_base.hh Log message: o Move command base class into separate file. o Add n-way command tee. o Update makefiles. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 19:59:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h84301FO059448 for ; Wed, 3 Sep 2003 20:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84301LL041573 for ; Wed, 3 Sep 2003 20:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84300Xd029835; Wed, 3 Sep 2003 20:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h842xJXd029821 for ; Wed, 3 Sep 2003 19:59:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h842xJLL041557 for ; Wed, 3 Sep 2003 19:59:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h842xJkN090398 for ; Wed, 3 Sep 2003 19:59:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h842xJg1090397; Wed, 3 Sep 2003 19:59:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040259.h842xJg1090397@xorpc.icir.org> Date: Wed, 3 Sep 2003 19:59:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 19:59:19 Modified files: xorp/bgp/: plumbing.cc Log message: Uncomment all the IPv6 hooks and add some debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:07:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h84381FO062245 for ; Wed, 3 Sep 2003 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84381LL041723 for ; Wed, 3 Sep 2003 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84381Xd029984; Wed, 3 Sep 2003 20:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8437gXd029976 for ; Wed, 3 Sep 2003 20:07:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8437gLL041713 for ; Wed, 3 Sep 2003 20:07:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8437fkN092712 for ; Wed, 3 Sep 2003 20:07:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8437fMm092711; Wed, 3 Sep 2003 20:07:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040307.h8437fMm092711@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:07:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:07:41 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: 1) Fix systematic bug in encoding and decoding multiprotocol nlri. 2) Hold the next hop as a path attribute in a futile attempt to get a reference to a next hop path attribute for the path attribute list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:11:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:12:28 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h843CSFO063354 for ; Wed, 3 Sep 2003 20:12:28 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843CRLL041792 for ; Wed, 3 Sep 2003 20:12:27 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843C0Xd000075; Wed, 3 Sep 2003 20:12:27 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843BiXd000065 for ; Wed, 3 Sep 2003 20:11:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843BiLL041782 for ; Wed, 3 Sep 2003 20:11:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h843BikN093554 for ; Wed, 3 Sep 2003 20:11:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h843Bixx093553; Wed, 3 Sep 2003 20:11:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040311.h843Bixx093553@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:11:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:11:44 Modified files: xorp/bgp/harness/: peer.cc Log message: Forgot to call the encode method on the multiprotocol attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:12:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h843D1FO063483 for ; Wed, 3 Sep 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843D1LL041803 for ; Wed, 3 Sep 2003 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843D0Xd000103; Wed, 3 Sep 2003 20:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843CLXd000081 for ; Wed, 3 Sep 2003 20:12:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843CLLL041786 for ; Wed, 3 Sep 2003 20:12:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h843CLkN093670 for ; Wed, 3 Sep 2003 20:12:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h843CLDK093669; Wed, 3 Sep 2003 20:12:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040312.h843CLDK093669@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:12:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:12:21 Modified files: xorp/bgp/: test_packet.cc Log message: Add some more multiprotocol test cases. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:13:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h843E1FO063715 for ; Wed, 3 Sep 2003 20:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843E1LL041818 for ; Wed, 3 Sep 2003 20:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843E1Xd000141; Wed, 3 Sep 2003 20:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843DVXd000132 for ; Wed, 3 Sep 2003 20:13:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843DVLL041812 for ; Wed, 3 Sep 2003 20:13:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h843DUkN093897 for ; Wed, 3 Sep 2003 20:13:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h843DUuI093896; Wed, 3 Sep 2003 20:13:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040313.h843DUuI093896@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:13:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:13:30 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Add a test that sends an IPv6 only update packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:24:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h843P1FO066947 for ; Wed, 3 Sep 2003 20:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843P1LL041937 for ; Wed, 3 Sep 2003 20:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843P1Xd000369; Wed, 3 Sep 2003 20:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843OWXd000360 for ; Wed, 3 Sep 2003 20:24:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843OWLL041931 for ; Wed, 3 Sep 2003 20:24:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h843OWkN096738 for ; Wed, 3 Sep 2003 20:24:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h843OWR9096737; Wed, 3 Sep 2003 20:24:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040324.h843OWR9096737@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:24:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:24:32 Modified files: xorp/bgp/: peer_handler.cc Log message: Rather than creating a bogus next hop attribute for IPv6 just save the multiprotocol path attribute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 20:42:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 20:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h843h1FO071805 for ; Wed, 3 Sep 2003 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843h1LL042129 for ; Wed, 3 Sep 2003 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843h1Xd000753; Wed, 3 Sep 2003 20:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h843gdXd000740 for ; Wed, 3 Sep 2003 20:42:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h843gdLL042126 for ; Wed, 3 Sep 2003 20:42:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h843gdkN001020 for ; Wed, 3 Sep 2003 20:42:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h843gdNM001019; Wed, 3 Sep 2003 20:42:39 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040342.h843gdNM001019@xorpc.icir.org> Date: Wed, 3 Sep 2003 20:42:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc plumbing.cc plumbing.hh plumbing_test.cc rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 20:42:39 Modified files: xorp/bgp/: peer_handler.cc plumbing.cc plumbing.hh plumbing_test.cc rib_ipc_handler.cc Log message: Previously there was a single push method. Split into an ipv4 and an ipv6 push method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 21:04:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 21:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h84451FO082684 for ; Wed, 3 Sep 2003 21:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84451LL042420 for ; Wed, 3 Sep 2003 21:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84450Xd001130; Wed, 3 Sep 2003 21:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8444PXd001118 for ; Wed, 3 Sep 2003 21:04:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8444PLL042409 for ; Wed, 3 Sep 2003 21:04:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8444PkN006518 for ; Wed, 3 Sep 2003 21:04:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8444P3t006517; Wed, 3 Sep 2003 21:04:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309040404.h8444P3t006517@xorpc.icir.org> Date: Wed, 3 Sep 2003 21:04:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/09/03 21:04:25 Modified files: xorp/libxorp/: timer.cc timer.hh Log message: o Initialize static class object TimerList::_dummy_timer_node in timer.cc. Found by: gcc version 3.3 20030304 (Apple Computer, Inc. build 1435) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 21:16:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 21:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h844H2FO086194 for ; Wed, 3 Sep 2003 21:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h844H1LL042623 for ; Wed, 3 Sep 2003 21:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h844H1Xd001318; Wed, 3 Sep 2003 21:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h844GUXd001301 for ; Wed, 3 Sep 2003 21:16:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h844GULL042620 for ; Wed, 3 Sep 2003 21:16:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h844GUkN008134 for ; Wed, 3 Sep 2003 21:16:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h844GUgA008133; Wed, 3 Sep 2003 21:16:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040416.h844GUgA008133@xorpc.icir.org> Date: Wed, 3 Sep 2003 21:16:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 21:16:30 Modified files: xorp/bgp/: path_attribute.cc Log message: Formatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 21:17:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 21:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h844I1FO086527 for ; Wed, 3 Sep 2003 21:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h844I1LL042643 for ; Wed, 3 Sep 2003 21:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h844I0Xd001352; Wed, 3 Sep 2003 21:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h844HKXd001339 for ; Wed, 3 Sep 2003 21:17:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h844HJLL042631 for ; Wed, 3 Sep 2003 21:17:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h844HJkN008162 for ; Wed, 3 Sep 2003 21:17:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h844HJgi008161; Wed, 3 Sep 2003 21:17:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309040417.h844HJgi008161@xorpc.icir.org> Date: Wed, 3 Sep 2003 21:17:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/03 21:17:19 Modified files: xorp/bgp/: plumbing.cc Log message: Distinguish between ipv4 and ipv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Wed Sep 3 22:26:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Sep 2003 22:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h845R1FO001029 for ; Wed, 3 Sep 2003 22:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h845R1LL043474 for ; Wed, 3 Sep 2003 22:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h845R1Xd002334; Wed, 3 Sep 2003 22:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h845QsXd002327 for ; Wed, 3 Sep 2003 22:26:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h845QrLL043472 for ; Wed, 3 Sep 2003 22:26:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h845QrkN008576 for ; Wed, 3 Sep 2003 22:26:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h845Qrlo008575; Wed, 3 Sep 2003 22:26:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309040526.h845Qrlo008575@xorpc.icir.org> Date: Wed, 3 Sep 2003 22:26:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/09/03 22:26:53 Modified files: xorp/rip/: test_outputs.cc test_request.cc Log message: size_t casting in format strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Thu Sep 4 9:21:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 09:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h84GM1FO033290 for ; Thu, 4 Sep 2003 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84GM1LL053091 for ; Thu, 4 Sep 2003 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84GM0Xd015035; Thu, 4 Sep 2003 09:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84GLLXd015021 for ; Thu, 4 Sep 2003 09:21:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84GLLLL053089 for ; Thu, 4 Sep 2003 09:21:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h84GLLkN052992 for ; Thu, 4 Sep 2003 09:21:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h84GLLeG052991; Thu, 4 Sep 2003 09:21:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309041621.h84GLLeG052991@xorpc.icir.org> Date: Thu, 4 Sep 2003 9:21:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 09:21:20 Modified files: xorp/bgp/: plumbing.hh Log message: #include _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Thu Sep 4 11:03:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 11:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h84I41FO058475 for ; Thu, 4 Sep 2003 11:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84I41LL054676 for ; Thu, 4 Sep 2003 11:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84I41Xd017699; Thu, 4 Sep 2003 11:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h84I3QXd017685 for ; Thu, 4 Sep 2003 11:03:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h84I3PLL054666 for ; Thu, 4 Sep 2003 11:03:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h84I3PkN053770 for ; Thu, 4 Sep 2003 11:03:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h84I3PNq053769; Thu, 4 Sep 2003 11:03:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309041803.h84I3PNq053769@xorpc.icir.org> Date: Thu, 4 Sep 2003 11:03:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/04 11:03:25 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh xorp/bgp/harness/: peer.cc Log message: Add a clone method to all path attributes. It is now therefore possible to take a copy of an attribute without going through the wire format. Especially useful as IPv6 nexthop does not have a wire format. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:43 2005 Subject: No subject Thu Sep 4 17:39:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 17:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h850e1FO060315 for ; Thu, 4 Sep 2003 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850e1LL060126 for ; Thu, 4 Sep 2003 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850e0Xd027385; Thu, 4 Sep 2003 17:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850dEXd027370 for ; Thu, 4 Sep 2003 17:39:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850dELL060108 for ; Thu, 4 Sep 2003 17:39:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h850dEkN006831 for ; Thu, 4 Sep 2003 17:39:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h850dEJq006830; Thu, 4 Sep 2003 17:39:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050039.h850dEJq006830@xorpc.icir.org> Date: Thu, 4 Sep 2003 17:39:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/04 17:39:14 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh xorp/bgp/harness/: peer.cc Log message: 1) Change all the clone methods to be const. 2) Use the clone method to create new path attributes. 3) Remove the specialised method "add_path_attribute". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 17:43:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 17:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h850i1FO061319 for ; Thu, 4 Sep 2003 17:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850i1LL060221 for ; Thu, 4 Sep 2003 17:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850i1Xd027458; Thu, 4 Sep 2003 17:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850hFXd027446 for ; Thu, 4 Sep 2003 17:43:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850hELL060216 for ; Thu, 4 Sep 2003 17:43:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h850hEkN007465 for ; Thu, 4 Sep 2003 17:43:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h850hEiH007464; Thu, 4 Sep 2003 17:43:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050043.h850hEiH007464@xorpc.icir.org> Date: Thu, 4 Sep 2003 17:43:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.hh plumbing.cc plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 17:43:14 Modified files: xorp/bgp/: main.hh plumbing.cc plumbing.hh Log message: Don't use typeid() and to figure out which template instance we are in at runtime. Use a dedicated structure at compile time. Suggested by Orion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 17:55:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 17:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h850u1FO065431 for ; Thu, 4 Sep 2003 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850u1LL060404 for ; Thu, 4 Sep 2003 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850u1Xd027705; Thu, 4 Sep 2003 17:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h850tkXd027693 for ; Thu, 4 Sep 2003 17:55:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h850tkLL060402 for ; Thu, 4 Sep 2003 17:55:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h850tkkN015194 for ; Thu, 4 Sep 2003 17:55:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h850tk5G015193; Thu, 4 Sep 2003 17:55:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050055.h850tk5G015193@xorpc.icir.org> Date: Thu, 4 Sep 2003 17:55:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 17:55:46 Modified files: xorp/bgp/: peer_handler.cc Log message: Create an IPv6 nexthop and place it in path attribute list. Not a multiprotocol unreachable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 18:02:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 18:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h85131FO067624 for ; Thu, 4 Sep 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h85131LL060544 for ; Thu, 4 Sep 2003 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h85131Xd027840; Thu, 4 Sep 2003 18:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8512QXd027827 for ; Thu, 4 Sep 2003 18:02:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8512QLL060531 for ; Thu, 4 Sep 2003 18:02:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8512PkN016581 for ; Thu, 4 Sep 2003 18:02:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8512PG3016580; Thu, 4 Sep 2003 18:02:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050102.h8512PG3016580@xorpc.icir.org> Date: Thu, 4 Sep 2003 18:02:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 18:02:25 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: The multiprotocol reachable attribute no longer requires an embeded next hop attribute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 18:37:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 18:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h851c1FO076746 for ; Thu, 4 Sep 2003 18:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851c0LL060953 for ; Thu, 4 Sep 2003 18:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851c0Xd028422; Thu, 4 Sep 2003 18:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851bHXd028406 for ; Thu, 4 Sep 2003 18:37:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851bHLL060947 for ; Thu, 4 Sep 2003 18:37:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h851bGkN019524 for ; Thu, 4 Sep 2003 18:37:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h851bGX1019523; Thu, 4 Sep 2003 18:37:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050137.h851bGX1019523@xorpc.icir.org> Date: Thu, 4 Sep 2003 18:37:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 18:37:16 Modified files: xorp/bgp/: peer.cc Log message: Actually set the bool that checks for the presence of local pref. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 18:52:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 18:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h851r1FO080850 for ; Thu, 4 Sep 2003 18:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851r0LL061181 for ; Thu, 4 Sep 2003 18:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851r0Xd028705; Thu, 4 Sep 2003 18:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851qjXd028697 for ; Thu, 4 Sep 2003 18:52:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851qjLL061177 for ; Thu, 4 Sep 2003 18:52:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h851qikN019667 for ; Thu, 4 Sep 2003 18:52:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h851qiBf019666; Thu, 4 Sep 2003 18:52:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050152.h851qiBf019666@xorpc.icir.org> Date: Thu, 4 Sep 2003 18:52:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 18:52:44 Modified files: xorp/bgp/: peer_handler.cc Log message: Clarify comment with regard to IPv4 and IPv6 nexthop mismatches. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 18:54:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 18:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h851t0FO081490 for ; Thu, 4 Sep 2003 18:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851t0LL061201 for ; Thu, 4 Sep 2003 18:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851t0Xd028760; Thu, 4 Sep 2003 18:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851sLXd028742 for ; Thu, 4 Sep 2003 18:54:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851sKLL061195 for ; Thu, 4 Sep 2003 18:54:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h851sKkN019698 for ; Thu, 4 Sep 2003 18:54:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h851sKQn019697; Thu, 4 Sep 2003 18:54:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050154.h851sKQn019697@xorpc.icir.org> Date: Thu, 4 Sep 2003 18:54:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 18:54:20 Modified files: xorp/bgp/: path_attribute.cc Log message: Replace nasty horrible C style casts with cool C++ dynamic casts so we can detect if somebody tries to sneak a nexhop of the wrong address family past us. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 18:57:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 18:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h851w1FO082246 for ; Thu, 4 Sep 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851w1LL061259 for ; Thu, 4 Sep 2003 18:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851w0Xd028860; Thu, 4 Sep 2003 18:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h851vtXd028852 for ; Thu, 4 Sep 2003 18:57:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h851vsLL061257 for ; Thu, 4 Sep 2003 18:57:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h851vskN019753 for ; Thu, 4 Sep 2003 18:57:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h851vsj0019752; Thu, 4 Sep 2003 18:57:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050157.h851vsj0019752@xorpc.icir.org> Date: Thu, 4 Sep 2003 18:57:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/04 18:57:54 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Add some more IPv6 tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:39:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852e2FO093849 for ; Thu, 4 Sep 2003 19:40:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852e1LL061761 for ; Thu, 4 Sep 2003 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852e1Xd029481; Thu, 4 Sep 2003 19:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852dMXd029471 for ; Thu, 4 Sep 2003 19:39:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852dMLL061756 for ; Thu, 4 Sep 2003 19:39:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852dMkN020076 for ; Thu, 4 Sep 2003 19:39:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852dMod020075; Thu, 4 Sep 2003 19:39:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050239.h852dMod020075@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:39:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:39:22 Modified files: xorp/bgp/: plumbing.cc Log message: 1) assert -> XLOG_ASSERT 2) debug_msg prints address family in route_add. 3) Minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:41:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852g1FO094391 for ; Thu, 4 Sep 2003 19:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852g1LL061799 for ; Thu, 4 Sep 2003 19:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852g1Xd029521; Thu, 4 Sep 2003 19:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852f3Xd029507 for ; Thu, 4 Sep 2003 19:41:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852f3LL061793 for ; Thu, 4 Sep 2003 19:41:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852f3kN020134 for ; Thu, 4 Sep 2003 19:41:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852f3Ds020133; Thu, 4 Sep 2003 19:41:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050241.h852f3Ds020133@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:41:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:41:03 Modified files: xorp/bgp/: route_table_decision.cc Log message: Minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:42:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852h1FO094740 for ; Thu, 4 Sep 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852h1LL061816 for ; Thu, 4 Sep 2003 19:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852h1Xd029554; Thu, 4 Sep 2003 19:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852glXd029545 for ; Thu, 4 Sep 2003 19:42:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852glLL061812 for ; Thu, 4 Sep 2003 19:42:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852glkN020190 for ; Thu, 4 Sep 2003 19:42:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852glGd020189; Thu, 4 Sep 2003 19:42:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050242.h852glGd020189@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:42:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_filter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:42:47 Modified files: xorp/bgp/: route_table_filter.cc Log message: 1) assert -> XLOG_ASSERT 2) debug_msg prints address family in route_add. 3) Minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:43:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852i1FO095002 for ; Thu, 4 Sep 2003 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852i1LL061840 for ; Thu, 4 Sep 2003 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852i1Xd029583; Thu, 4 Sep 2003 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852hlXd029573 for ; Thu, 4 Sep 2003 19:43:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852hlLL061835 for ; Thu, 4 Sep 2003 19:43:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852hlkN020232 for ; Thu, 4 Sep 2003 19:43:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852hlUZ020231; Thu, 4 Sep 2003 19:43:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050243.h852hlUZ020231@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:43:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:43:47 Modified files: xorp/bgp/: route_table_ribin.cc Log message: 1) assert -> XLOG_ASSERT 2) debug_msg prints address family in route_add. 3) Minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:44:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852j1FO095288 for ; Thu, 4 Sep 2003 19:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852j1LL061854 for ; Thu, 4 Sep 2003 19:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852j0Xd029614; Thu, 4 Sep 2003 19:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852iiXd029608 for ; Thu, 4 Sep 2003 19:44:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852iiLL061851 for ; Thu, 4 Sep 2003 19:44:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852iikN020261 for ; Thu, 4 Sep 2003 19:44:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852iiuC020260; Thu, 4 Sep 2003 19:44:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050244.h852iiuC020260@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:44:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:44:44 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Use an AS path that will allow this test to pass. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 19:55:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 19:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h852u1FO099614 for ; Thu, 4 Sep 2003 19:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852u1LL062020 for ; Thu, 4 Sep 2003 19:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852u0Xd029823; Thu, 4 Sep 2003 19:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h852tZXd029809 for ; Thu, 4 Sep 2003 19:55:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h852tYLL062009 for ; Thu, 4 Sep 2003 19:55:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h852tYkN020376 for ; Thu, 4 Sep 2003 19:55:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h852tY13020375; Thu, 4 Sep 2003 19:55:34 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050255.h852tY13020375@xorpc.icir.org> Date: Thu, 4 Sep 2003 19:55:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/04 19:55:34 Modified files: xorp/bgp/: plumbing.cc Log message: Print address family in NULL parent table warning. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Thu Sep 4 20:18:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Sep 2003 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h853J1FO007353 for ; Thu, 4 Sep 2003 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h853J0LL062373 for ; Thu, 4 Sep 2003 20:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h853J0Xd000191; Thu, 4 Sep 2003 20:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h853IEXd000176 for ; Thu, 4 Sep 2003 20:18:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h853IELL062346 for ; Thu, 4 Sep 2003 20:18:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h853IDkN020545 for ; Thu, 4 Sep 2003 20:18:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h853IDs0020544; Thu, 4 Sep 2003 20:18:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050318.h853IDs0020544@xorpc.icir.org> Date: Thu, 4 Sep 2003 20:18:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/04 20:18:13 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Added or removed the setting of local pref in tests that were not testing local pref, because our BGP now correctly complains Clarified some of the text that is emitted by the tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:44 2005 Subject: No subject Fri Sep 5 1:38:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Sep 2003 01:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h858d1FO072444 for ; Fri, 5 Sep 2003 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h858d1LL065859 for ; Fri, 5 Sep 2003 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h858d1Xd005960; Fri, 5 Sep 2003 01:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h858c2Xd005946 for ; Fri, 5 Sep 2003 01:38:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h858c2LL065852 for ; Fri, 5 Sep 2003 01:38:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h858c2kN058087 for ; Fri, 5 Sep 2003 01:38:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h858c23x058086; Fri, 5 Sep 2003 01:38:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309050838.h858c23x058086@xorpc.icir.org> Date: Fri, 5 Sep 2003 1:38:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/09/05 01:38:02 Modified files: xorp/libxorp/: ipv4.hh Log message: Typo in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Fri Sep 5 8:49:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Sep 2003 08:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h85Fo1FO059838 for ; Fri, 5 Sep 2003 08:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h85Fo1LL073013 for ; Fri, 5 Sep 2003 08:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h85Fo1Xd014925; Fri, 5 Sep 2003 08:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h85FnpXd014917 for ; Fri, 5 Sep 2003 08:49:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h85FnpLL073008 for ; Fri, 5 Sep 2003 08:49:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h85FnpkN077600 for ; Fri, 5 Sep 2003 08:49:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h85FnpJZ077599; Fri, 5 Sep 2003 08:49:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309051549.h85FnpJZ077599@xorpc.icir.org> Date: Fri, 5 Sep 2003 8:49:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_nbr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/05 08:49:51 Modified files: xorp/pim/: pim_nbr.cc Log message: Fix a typo in comment _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Mon Sep 8 17:40:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Sep 2003 17:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h890f1FO039094 for ; Mon, 8 Sep 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h890f1LL037071 for ; Mon, 8 Sep 2003 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h890f0Xd019991; Mon, 8 Sep 2003 17:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h890eGXd019976 for ; Mon, 8 Sep 2003 17:40:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h890e6LL037045 for ; Mon, 8 Sep 2003 17:40:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h890e5kN081771 for ; Mon, 8 Sep 2003 17:40:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h890e5Dg081770; Mon, 8 Sep 2003 17:40:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309090040.h890e5Dg081770@xorpc.icir.org> Date: Mon, 8 Sep 2003 17:40:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh ipvx.cc ipvx.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/09/08 17:40:05 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh ipvx.cc ipvx.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: * Added new methods string IPv{4,6,X}::ip_version_str() that return "IPv4" or "IPv6" for IPv4 or IPv6 addresses respectively. The IPv4 and IPv6 methods are static, while the IPvX method has to be applied on specific object. * Added the appropriate tests for the above new methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Mon Sep 8 19:02:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Sep 2003 19:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h89231FO073870 for ; Mon, 8 Sep 2003 19:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h89231LL037907 for ; Mon, 8 Sep 2003 19:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h89230Xd021505; Mon, 8 Sep 2003 19:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h89223Xd021486 for ; Mon, 8 Sep 2003 19:02:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h89223LL037899 for ; Mon, 8 Sep 2003 19:02:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h89223kN082340 for ; Mon, 8 Sep 2003 19:02:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h89223kb082339; Mon, 8 Sep 2003 19:02:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309090202.h89223kb082339@xorpc.icir.org> Date: Mon, 8 Sep 2003 19:02:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/08 19:02:03 Modified files: xorp/bgp/harness/: trie.cc trie.hh Log message: Refactoring in preparation for IPv6 support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Tue Sep 9 20:14:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Sep 2003 20:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3F1FO030429 for ; Tue, 9 Sep 2003 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3F1LL056552 for ; Tue, 9 Sep 2003 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3F0Xd025435; Tue, 9 Sep 2003 20:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3ElXd025428 for ; Tue, 9 Sep 2003 20:14:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3ElLL056547 for ; Tue, 9 Sep 2003 20:14:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3ElkN001105 for ; Tue, 9 Sep 2003 20:14:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A3ElTl001104; Tue, 9 Sep 2003 20:14:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100314.h8A3ElTl001104@xorpc.icir.org> Date: Tue, 9 Sep 2003 20:14:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/09/09 20:14:47 Modified files: xorp/libxorp/: test_main.hh Log message: Add a copy constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Tue Sep 9 20:19:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Sep 2003 20:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3K1FO032970 for ; Tue, 9 Sep 2003 20:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3K1LL056609 for ; Tue, 9 Sep 2003 20:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3K1Xd025517; Tue, 9 Sep 2003 20:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3JRXd025505 for ; Tue, 9 Sep 2003 20:19:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3JQLL056599 for ; Tue, 9 Sep 2003 20:19:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3JQkN001181 for ; Tue, 9 Sep 2003 20:19:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A3JQO5001180; Tue, 9 Sep 2003 20:19:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100319.h8A3JQO5001180@xorpc.icir.org> Date: Tue, 9 Sep 2003 20:19:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in peer.cc trie.cc trie.hh xorp/bgp/harness/ real_trie.hh test_trie.cc trie_payload.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/09 20:19:26 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in peer.cc trie.cc trie.hh Added files: xorp/bgp/harness/: real_trie.hh test_trie.cc trie_payload.hh Log message: Add support for IPv6 in the test harness. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Tue Sep 9 20:19:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Sep 2003 20:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3K2FO033001 for ; Tue, 9 Sep 2003 20:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3K2LL056613 for ; Tue, 9 Sep 2003 20:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3K1Xd025528; Tue, 9 Sep 2003 20:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A3JoXd025511 for ; Tue, 9 Sep 2003 20:19:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3JnLL056604 for ; Tue, 9 Sep 2003 20:19:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A3JnkN001199 for ; Tue, 9 Sep 2003 20:19:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A3Jn6V001198; Tue, 9 Sep 2003 20:19:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100319.h8A3Jn6V001198@xorpc.icir.org> Date: Tue, 9 Sep 2003 20:19:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/09 20:19:49 Modified files: xorp/bgp/harness/: .cvsignore Log message: test_trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Tue Sep 9 22:50:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Sep 2003 22:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A5p1FO075438 for ; Tue, 9 Sep 2003 22:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A5p1LL057887 for ; Tue, 9 Sep 2003 22:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A5p1Xd027743; Tue, 9 Sep 2003 22:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A5oMXd027730 for ; Tue, 9 Sep 2003 22:50:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A5oMLL057885 for ; Tue, 9 Sep 2003 22:50:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A5oMkN011845 for ; Tue, 9 Sep 2003 22:50:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A5oMRL011844; Tue, 9 Sep 2003 22:50:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309100550.h8A5oMRL011844@xorpc.icir.org> Date: Tue, 9 Sep 2003 22:50:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/Xif/ parse.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/Xif/ Changes by: hodson@xorpc.icir.org. 03/09/09 22:50:22 Modified files: xorp/xrl/scripts/Xif/: parse.py Log message: Ignore #pragma directives that a pre-processor may emit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 0:29:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 00:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7U1FO096265 for ; Wed, 10 Sep 2003 00:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7U1LL058675 for ; Wed, 10 Sep 2003 00:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7U0Xd029592; Wed, 10 Sep 2003 00:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7TVXd029579 for ; Wed, 10 Sep 2003 00:29:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7TULL058668 for ; Wed, 10 Sep 2003 00:29:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7TUkN040138 for ; Wed, 10 Sep 2003 00:29:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A7TUev040137; Wed, 10 Sep 2003 00:29:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100729.h8A7TUev040137@xorpc.icir.org> Date: Wed, 10 Sep 2003 0:29:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 00:29:30 Modified files: xorp/bgp/harness/: trie.cc Log message: In a list iterator used a different .begin() to .end(). Why did the 2.95 compiler spot this and the new 3.2 didn't. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 0:38:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 00:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7d1FO098398 for ; Wed, 10 Sep 2003 00:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7d1LL058769 for ; Wed, 10 Sep 2003 00:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7d1Xd029739; Wed, 10 Sep 2003 00:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7cwXd029732 for ; Wed, 10 Sep 2003 00:38:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7cvLL058767 for ; Wed, 10 Sep 2003 00:38:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7cvkN041131 for ; Wed, 10 Sep 2003 00:38:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A7cvtk041129; Wed, 10 Sep 2003 00:38:57 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100738.h8A7cvtk041129@xorpc.icir.org> Date: Wed, 10 Sep 2003 0:38:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 00:38:57 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Free up the memory allocated for the update packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 0:47:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 00:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7m1FO000681 for ; Wed, 10 Sep 2003 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7m1LL058871 for ; Wed, 10 Sep 2003 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7m1Xd029955; Wed, 10 Sep 2003 00:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7lLXd029943 for ; Wed, 10 Sep 2003 00:47:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7lLLL058869 for ; Wed, 10 Sep 2003 00:47:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7lLkN041992 for ; Wed, 10 Sep 2003 00:47:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A7lL8v041991; Wed, 10 Sep 2003 00:47:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100747.h8A7lL8v041991@xorpc.icir.org> Date: Wed, 10 Sep 2003 0:47:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 00:47:21 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Free up the memory allocated for the update packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 0:50:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 00:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7p1FO001518 for ; Wed, 10 Sep 2003 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7p1LL058926 for ; Wed, 10 Sep 2003 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7p1Xd000005; Wed, 10 Sep 2003 00:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8A7oFXd029993 for ; Wed, 10 Sep 2003 00:50:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7oFLL058916 for ; Wed, 10 Sep 2003 00:50:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8A7oFkN043529 for ; Wed, 10 Sep 2003 00:50:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8A7oFrh043528; Wed, 10 Sep 2003 00:50:15 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309100750.h8A7oFrh043528@xorpc.icir.org> Date: Wed, 10 Sep 2003 0:50:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 00:50:15 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Free up the memory allocated for the update packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 3:15:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 03:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAG1FO040582 for ; Wed, 10 Sep 2003 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAG1LL060487 for ; Wed, 10 Sep 2003 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AAG1Xd001760; Wed, 10 Sep 2003 03:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AAFoXd001752 for ; Wed, 10 Sep 2003 03:15:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAFoLL060485 for ; Wed, 10 Sep 2003 03:15:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAFnkN070784 for ; Wed, 10 Sep 2003 03:15:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AAFnse070783; Wed, 10 Sep 2003 03:15:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309101015.h8AAFnse070783@xorpc.icir.org> Date: Wed, 10 Sep 2003 3:15:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie_payload.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 03:15:49 Modified files: xorp/bgp/harness/: trie_payload.hh Log message: Comments and minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 3:17:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 03:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAI1FO041259 for ; Wed, 10 Sep 2003 03:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAI1LL060500 for ; Wed, 10 Sep 2003 03:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AAI1Xd001797; Wed, 10 Sep 2003 03:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AAHIXd001783 for ; Wed, 10 Sep 2003 03:17:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAHILL060496 for ; Wed, 10 Sep 2003 03:17:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAHHkN070819 for ; Wed, 10 Sep 2003 03:17:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AAHHPf070818; Wed, 10 Sep 2003 03:17:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309101017.h8AAHHPf070818@xorpc.icir.org> Date: Wed, 10 Sep 2003 3:17:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ real_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 03:17:17 Modified files: xorp/bgp/harness/: real_trie.hh Log message: Full support for IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 3:28:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 03:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAT1FO043887 for ; Wed, 10 Sep 2003 03:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AAT1LL060587 for ; Wed, 10 Sep 2003 03:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AAT1Xd001932; Wed, 10 Sep 2003 03:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AASNXd001909 for ; Wed, 10 Sep 2003 03:28:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AASNLL060585 for ; Wed, 10 Sep 2003 03:28:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AASMkN070955 for ; Wed, 10 Sep 2003 03:28:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AASMv5070954; Wed, 10 Sep 2003 03:28:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309101028.h8AASMv5070954@xorpc.icir.org> Date: Wed, 10 Sep 2003 3:28:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ real_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 03:28:22 Modified files: xorp/bgp/harness/: real_trie.hh Log message: Apple size_t casts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:45 2005 Subject: No subject Wed Sep 10 11:04:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 11:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI51FO035795 for ; Wed, 10 Sep 2003 11:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI51LL066003 for ; Wed, 10 Sep 2003 11:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AI51Xd011283; Wed, 10 Sep 2003 11:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AI4wXd011277 for ; Wed, 10 Sep 2003 11:04:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI4wLL065996 for ; Wed, 10 Sep 2003 11:04:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI4wkN075228 for ; Wed, 10 Sep 2003 11:04:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AI4wTv075227; Wed, 10 Sep 2003 11:04:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309101804.h8AI4wTv075227@xorpc.icir.org> Date: Wed, 10 Sep 2003 11:04:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/10 11:04:58 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Tweaklet to make stepping with gcc easier. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 11:06:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 11:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI71FO036293 for ; Wed, 10 Sep 2003 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI71LL066043 for ; Wed, 10 Sep 2003 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AI71Xd011366; Wed, 10 Sep 2003 11:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AI64Xd011326 for ; Wed, 10 Sep 2003 11:06:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI64LL066037 for ; Wed, 10 Sep 2003 11:06:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AI64kN075287 for ; Wed, 10 Sep 2003 11:06:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AI64nx075286; Wed, 10 Sep 2003 11:06:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309101806.h8AI64nx075286@xorpc.icir.org> Date: Wed, 10 Sep 2003 11:06:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/10 11:06:04 Modified files: xorp/libxipc/: xrl_router.cc Log message: Call attach and detach on FinderClient instance associated with router. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 12:21:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 12:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AJM1FO051960 for ; Wed, 10 Sep 2003 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AJM1LL066798 for ; Wed, 10 Sep 2003 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AJM1Xd012980; Wed, 10 Sep 2003 12:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AJLYXd012959 for ; Wed, 10 Sep 2003 12:21:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AJLYLL066796 for ; Wed, 10 Sep 2003 12:21:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AJLYkN085811 for ; Wed, 10 Sep 2003 12:21:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AJLYmN085810; Wed, 10 Sep 2003 12:21:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309101921.h8AJLYmN085810@xorpc.icir.org> Date: Wed, 10 Sep 2003 12:21:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ .cvsignore Makefile.am Makefile.in ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_replicator.cc ...ifmgr_xrl_replicator.hh ...xrl_ifmgr_mirror.cc ...xrl_ifmgr_mirror.hh xorp/libfeaclient/ test_remote_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/09/10 12:21:34 Modified files: xorp/libfeaclient/: .cvsignore Makefile.am Makefile.in ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Added files: xorp/libfeaclient/: test_remote_copy.cc Log message: Code for remote replication of IfMgr configuration state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 14:37:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 14:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALc1FO088822 for ; Wed, 10 Sep 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALc1LL068033 for ; Wed, 10 Sep 2003 14:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALc1Xd015832; Wed, 10 Sep 2003 14:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALb7Xd015812 for ; Wed, 10 Sep 2003 14:37:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALb7LL068024 for ; Wed, 10 Sep 2003 14:37:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALb7kN032984 for ; Wed, 10 Sep 2003 14:37:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8ALb7oi032983; Wed, 10 Sep 2003 14:37:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309102137.h8ALb7oi032983@xorpc.icir.org> Date: Wed, 10 Sep 2003 14:37:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.hh plumbing.cc route_table_filter.cc route_table_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/10 14:37:06 Modified files: xorp/bgp/: main.hh plumbing.cc route_table_filter.cc route_table_ribin.cc Log message: In methods built from templates its not always easy to detect if we are in an IPv4 or an IPv6 instance. We were using a specialised template, now using "ip_version_str()" method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 14:38:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 14:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALd1FO089039 for ; Wed, 10 Sep 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALd1LL068042 for ; Wed, 10 Sep 2003 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALd1Xd015895; Wed, 10 Sep 2003 14:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALctXd015886 for ; Wed, 10 Sep 2003 14:38:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALctLL068040 for ; Wed, 10 Sep 2003 14:38:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALctkN033016 for ; Wed, 10 Sep 2003 14:38:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8ALctdc033015; Wed, 10 Sep 2003 14:38:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309102138.h8ALctdc033015@xorpc.icir.org> Date: Wed, 10 Sep 2003 14:38:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/09/10 14:38:55 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry to implement RFC 3590 (MLD related). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 14:42:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 14:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALh1FO089830 for ; Wed, 10 Sep 2003 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALh1LL068081 for ; Wed, 10 Sep 2003 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALh1Xd016017; Wed, 10 Sep 2003 14:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ALg6Xd016005 for ; Wed, 10 Sep 2003 14:42:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALg6LL068077 for ; Wed, 10 Sep 2003 14:42:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8ALg6kN033062 for ; Wed, 10 Sep 2003 14:42:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8ALg6bM033061; Wed, 10 Sep 2003 14:42:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309102142.h8ALg6bM033061@xorpc.icir.org> Date: Wed, 10 Sep 2003 14:42:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.hh xrl_std_router.cc xrl_std_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/10 14:42:06 Modified files: xorp/libxipc/: xrl_router.hh xrl_std_router.cc xrl_std_router.hh Log message: Minor clean-up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 15:28:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 15:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AMT1FO001302 for ; Wed, 10 Sep 2003 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AMT1LL068486 for ; Wed, 10 Sep 2003 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AMT1Xd017198; Wed, 10 Sep 2003 15:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8AMSOXd017181 for ; Wed, 10 Sep 2003 15:28:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AMSOLL068479 for ; Wed, 10 Sep 2003 15:28:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8AMSOkN038923 for ; Wed, 10 Sep 2003 15:28:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8AMSOUg038922; Wed, 10 Sep 2003 15:28:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309102228.h8AMSOUg038922@xorpc.icir.org> Date: Wed, 10 Sep 2003 15:28:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh xorp/xrl/targets/ fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/09/10 15:28:23 Modified files: xorp/xrl/interfaces/: fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh xorp/xrl/targets/: fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh Log message: Add hint methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:15:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:16:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3G3FO062693 for ; Wed, 10 Sep 2003 20:16:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3G3LL070570 for ; Wed, 10 Sep 2003 20:16:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3G1Xd022107; Wed, 10 Sep 2003 20:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3F6Xd022095 for ; Wed, 10 Sep 2003 20:15:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3F5LL070551 for ; Wed, 10 Sep 2003 20:15:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3F5kN042802 for ; Wed, 10 Sep 2003 20:15:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3F5pA042801; Wed, 10 Sep 2003 20:15:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110315.h8B3F5pA042801@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:15:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:15:05 Modified files: xorp/bgp/: path_attribute.cc Log message: For multiprotocol packets: 1) Correctly convert from bits to bytes. 2) Clear memory before using it. 3) Generate a notification if we get an illegal prefix length. 4) Slight formating change in "MPUNReachNLRIAttribute::str()". Multiprotocol unreachable packets may now be correctly encoded and decoded. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:18:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3J1FO063959 for ; Wed, 10 Sep 2003 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3J1LL070585 for ; Wed, 10 Sep 2003 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3J1Xd022156; Wed, 10 Sep 2003 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3InXd022143 for ; Wed, 10 Sep 2003 20:18:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3InLL070583 for ; Wed, 10 Sep 2003 20:18:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3InkN042875 for ; Wed, 10 Sep 2003 20:18:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3In2O042874; Wed, 10 Sep 2003 20:18:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110318.h8B3In2O042874@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:18:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:18:49 Modified files: xorp/bgp/: test_packet_coding.cc Log message: Add a test for multiprotocol unreachable packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:20:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3L1FO064525 for ; Wed, 10 Sep 2003 20:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3L1LL070613 for ; Wed, 10 Sep 2003 20:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3L1Xd022189; Wed, 10 Sep 2003 20:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3K6Xd022177 for ; Wed, 10 Sep 2003 20:20:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3K6LL070611 for ; Wed, 10 Sep 2003 20:20:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3K6kN042919 for ; Wed, 10 Sep 2003 20:20:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3K6mO042918; Wed, 10 Sep 2003 20:20:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110320.h8B3K6mO042918@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:20:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ real_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:20:06 Modified files: xorp/bgp/harness/: real_trie.hh Log message: Missed a few IPv4 dependencies. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:38:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3d1FO068161 for ; Wed, 10 Sep 2003 20:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3d1LL070748 for ; Wed, 10 Sep 2003 20:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3d1Xd022436; Wed, 10 Sep 2003 20:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3cdXd022418 for ; Wed, 10 Sep 2003 20:38:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3ccLL070744 for ; Wed, 10 Sep 2003 20:38:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3cckN050954 for ; Wed, 10 Sep 2003 20:38:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3ccY2050953; Wed, 10 Sep 2003 20:38:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110338.h8B3ccY2050953@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:38:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc trie.hh trie_payload.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:38:38 Modified files: xorp/bgp/harness/: trie.cc trie.hh trie_payload.hh Log message: 1) IPv6 multiprotocol attributes are now extracted and placed in an IPv6 trie. 2) Update packets containing only withdraws are now saved. This will aid in replaying sessions. 3) Hooks for replaying sessions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:42:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3h1FO068988 for ; Wed, 10 Sep 2003 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3h1LL070780 for ; Wed, 10 Sep 2003 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3h0Xd022499; Wed, 10 Sep 2003 20:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3gRXd022489 for ; Wed, 10 Sep 2003 20:42:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3gQLL070778 for ; Wed, 10 Sep 2003 20:42:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3gQkN051839 for ; Wed, 10 Sep 2003 20:42:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3gQhk051838; Wed, 10 Sep 2003 20:42:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110342.h8B3gQhk051838@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:42:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:42:26 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Fixed some problems in the building of IPv6 multiprotocol packets by using goto:-). Also enabled an IPv6 test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:46:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3l1FO069793 for ; Wed, 10 Sep 2003 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3l1LL070816 for ; Wed, 10 Sep 2003 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3l0Xd022580; Wed, 10 Sep 2003 20:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3kRXd022567 for ; Wed, 10 Sep 2003 20:46:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3kQLL070814 for ; Wed, 10 Sep 2003 20:46:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3kQkN053234 for ; Wed, 10 Sep 2003 20:46:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3kQxw053233; Wed, 10 Sep 2003 20:46:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110346.h8B3kQxw053233@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:46:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:46:26 Modified files: xorp/bgp/harness/: trie.cc Log message: Zap dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:50:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3p1FO070645 for ; Wed, 10 Sep 2003 20:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3p0LL070852 for ; Wed, 10 Sep 2003 20:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3p0Xd022630; Wed, 10 Sep 2003 20:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3oZXd022623 for ; Wed, 10 Sep 2003 20:50:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3oZLL070850 for ; Wed, 10 Sep 2003 20:50:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3oZkN054307 for ; Wed, 10 Sep 2003 20:50:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3oZGH054306; Wed, 10 Sep 2003 20:50:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110350.h8B3oZGH054306@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:50:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:50:35 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Missed adding a goto. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Wed Sep 10 20:57:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Sep 2003 20:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3w1FO071994 for ; Wed, 10 Sep 2003 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3w1LL070916 for ; Wed, 10 Sep 2003 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3w0Xd022714; Wed, 10 Sep 2003 20:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B3vDXd022705 for ; Wed, 10 Sep 2003 20:57:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3vCLL070907 for ; Wed, 10 Sep 2003 20:57:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B3vCkN055897 for ; Wed, 10 Sep 2003 20:57:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B3vCpq055896; Wed, 10 Sep 2003 20:57:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110357.h8B3vCpq055896@xorpc.icir.org> Date: Wed, 10 Sep 2003 20:57:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/10 20:57:12 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Add an aspath to keep the update packet legal. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 1:10:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 01:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8B1FO024591 for ; Thu, 11 Sep 2003 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8B1LL072660 for ; Thu, 11 Sep 2003 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8B0Xd027156; Thu, 11 Sep 2003 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8AKXd027143 for ; Thu, 11 Sep 2003 01:10:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8AJLL072658 for ; Thu, 11 Sep 2003 01:10:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8AJkN089375 for ; Thu, 11 Sep 2003 01:10:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B8AJgb089374; Thu, 11 Sep 2003 01:10:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110810.h8B8AJgb089374@xorpc.icir.org> Date: Thu, 11 Sep 2003 1:10:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/11 01:10:19 Modified files: xorp/bgp/: path_attribute.cc Log message: Change the formatting of the multiprotocol output. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 1:17:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 01:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8I1FO026423 for ; Thu, 11 Sep 2003 01:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8I1LL072694 for ; Thu, 11 Sep 2003 01:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8I1Xd027248; Thu, 11 Sep 2003 01:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8H4Xd027239 for ; Thu, 11 Sep 2003 01:17:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8H3LL072692 for ; Thu, 11 Sep 2003 01:17:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8H3kN091032 for ; Thu, 11 Sep 2003 01:17:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B8H3X3091031; Thu, 11 Sep 2003 01:17:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110817.h8B8H3X3091031@xorpc.icir.org> Date: Thu, 11 Sep 2003 1:17:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie_payload.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/11 01:17:03 Modified files: xorp/bgp/harness/: trie_payload.hh Log message: Manipulate the real head and tail pointers as opposed to local copies. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 1:19:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 01:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8K1FO026957 for ; Thu, 11 Sep 2003 01:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8K1LL072711 for ; Thu, 11 Sep 2003 01:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8K0Xd027287; Thu, 11 Sep 2003 01:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8B8JFXd027278 for ; Thu, 11 Sep 2003 01:19:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8JFLL072706 for ; Thu, 11 Sep 2003 01:19:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8B8JFkN091577 for ; Thu, 11 Sep 2003 01:19:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8B8JFt6091576; Thu, 11 Sep 2003 01:19:15 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309110819.h8B8JFt6091576@xorpc.icir.org> Date: Thu, 11 Sep 2003 1:19:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/11 01:19:15 Modified files: xorp/bgp/harness/: trie.cc trie.hh Log message: Rename update_walk to replay_walk. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 3:44:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 03:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BAj1FO063414 for ; Thu, 11 Sep 2003 03:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BAj0LL074100 for ; Thu, 11 Sep 2003 03:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BAj0Xd029173; Thu, 11 Sep 2003 03:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BAigXd029163 for ; Thu, 11 Sep 2003 03:44:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BAifLL074095 for ; Thu, 11 Sep 2003 03:44:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BAifkN019799 for ; Thu, 11 Sep 2003 03:44:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BAifdI019798; Thu, 11 Sep 2003 03:44:41 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309111044.h8BAifdI019798@xorpc.icir.org> Date: Thu, 11 Sep 2003 3:44:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/11 03:44:41 Modified files: xorp/bgp/harness/: test_trie.cc Log message: Tests for the replay code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 4:56:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 04:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BBv1FO080818 for ; Thu, 11 Sep 2003 04:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BBv1LL074570 for ; Thu, 11 Sep 2003 04:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BBv1Xd001651; Thu, 11 Sep 2003 04:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BBuJXd001547 for ; Thu, 11 Sep 2003 04:56:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BBuJLL074568 for ; Thu, 11 Sep 2003 04:56:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BBuIkN025768 for ; Thu, 11 Sep 2003 04:56:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BBuIZV025767; Thu, 11 Sep 2003 04:56:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309111156.h8BBuIZV025767@xorpc.icir.org> Date: Thu, 11 Sep 2003 4:56:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc trie.cc trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/11 04:56:18 Modified files: xorp/bgp/harness/: test_trie.cc trie.cc trie.hh Log message: The replay code no longer generates redundant withdraws. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 5:56:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 05:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCv1FO093130 for ; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCv1LL074935 for ; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCv1Xd002604; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCuRXd002594 for ; Thu, 11 Sep 2003 05:56:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCuRLL074932 for ; Thu, 11 Sep 2003 05:56:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCuQkN026246 for ; Thu, 11 Sep 2003 05:56:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BCuQJj026245; Thu, 11 Sep 2003 05:56:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111256.h8BCuQJj026245@xorpc.icir.org> Date: Thu, 11 Sep 2003 5:56:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 05:56:26 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: * Misc. fixes and cleanup * Now IfConfigGet::parse_buffer_ifreq() will do the right thing even if the buffer contains a single ifreq with the interface name only. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:46 2005 Subject: No subject Thu Sep 11 5:57:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 05:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCw1FO093347 for ; Thu, 11 Sep 2003 05:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCw1LL074949 for ; Thu, 11 Sep 2003 05:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCw0Xd002635; Thu, 11 Sep 2003 05:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCv1Xd002610 for ; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCv1LL074934 for ; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCv1kN026281 for ; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BCv1SO026280; Thu, 11 Sep 2003 05:57:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111257.h8BCv1SO026280@xorpc.icir.org> Date: Thu, 11 Sep 2003 5:57:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 05:57:01 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Misc. fixes and cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 5:57:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 05:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCw1FO093362 for ; Thu, 11 Sep 2003 05:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCw1LL074953 for ; Thu, 11 Sep 2003 05:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCw1Xd002646; Thu, 11 Sep 2003 05:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BCvUXd002626 for ; Thu, 11 Sep 2003 05:57:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCvULL074947 for ; Thu, 11 Sep 2003 05:57:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BCvUkN026316 for ; Thu, 11 Sep 2003 05:57:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BCvU99026315; Thu, 11 Sep 2003 05:57:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111257.h8BCvU99026315@xorpc.icir.org> Date: Thu, 11 Sep 2003 5:57:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 05:57:30 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: Cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 6:01:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 06:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BD21FO094140 for ; Thu, 11 Sep 2003 06:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BD21LL075003 for ; Thu, 11 Sep 2003 06:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BD21Xd002715; Thu, 11 Sep 2003 06:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BD1LXd002703 for ; Thu, 11 Sep 2003 06:01:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BD1LLL074999 for ; Thu, 11 Sep 2003 06:01:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BD1KkN026631 for ; Thu, 11 Sep 2003 06:01:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BD1K8L026630; Thu, 11 Sep 2003 06:01:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111301.h8BD1K8L026630@xorpc.icir.org> Date: Thu, 11 Sep 2003 6:01:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 06:01:20 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: Fix a compilation error on Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 7:01:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 07:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BE21FO005694 for ; Thu, 11 Sep 2003 07:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BE21LL075451 for ; Thu, 11 Sep 2003 07:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BE21Xd003486; Thu, 11 Sep 2003 07:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BE1JXd003475 for ; Thu, 11 Sep 2003 07:01:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BE1ILL075447 for ; Thu, 11 Sep 2003 07:01:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BE1IkN027579 for ; Thu, 11 Sep 2003 07:01:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BE1IGa027578; Thu, 11 Sep 2003 07:01:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111401.h8BE1IGa027578@xorpc.icir.org> Date: Thu, 11 Sep 2003 7:01:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 07:01:18 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: If getting the IP address of an interface with ioctl(SIOCGIFADDR) fails, then ignore the error and continue processing with the next interface. We need to ignore the error simply because this could be the case when the interface has no IP address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 7:19:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 07:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BEK1FO009123 for ; Thu, 11 Sep 2003 07:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BEK0LL075587 for ; Thu, 11 Sep 2003 07:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BEK0Xd003689; Thu, 11 Sep 2003 07:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BEJlXd003683 for ; Thu, 11 Sep 2003 07:19:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BEJlLL075580 for ; Thu, 11 Sep 2003 07:19:47 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BEJlkN027773 for ; Thu, 11 Sep 2003 07:19:47 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BEJlvB027772; Thu, 11 Sep 2003 07:19:47 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200309111419.h8BEJlvB027772@xorpc.icir.org> Date: Thu, 11 Sep 2003 7:19:47 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: greenhal@xorpc.icir.org. 03/09/11 07:19:47 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: tiny compiler fix of an unused variable problem int mtu = 0; to int mtu; mtu = 0; to get around the #ifdef's effectively producing a situation where mtu is never used. ---------------------------------------------------------------------- _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 8:07:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 08:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BF81FO018295 for ; Thu, 11 Sep 2003 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BF81LL075948 for ; Thu, 11 Sep 2003 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BF81Xd004386; Thu, 11 Sep 2003 08:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BF7KXd004374 for ; Thu, 11 Sep 2003 08:07:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BF7KLL075943 for ; Thu, 11 Sep 2003 08:07:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BF7KkN028074 for ; Thu, 11 Sep 2003 08:07:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BF7KNA028073; Thu, 11 Sep 2003 08:07:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111507.h8BF7KNA028073@xorpc.icir.org> Date: Thu, 11 Sep 2003 8:07:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 08:07:20 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Move the mtu variable declaration right where is needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 8:44:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 08:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BFj1FO026645 for ; Thu, 11 Sep 2003 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BFj1LL077579 for ; Thu, 11 Sep 2003 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BFj0Xd005007; Thu, 11 Sep 2003 08:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BFiEXd004987 for ; Thu, 11 Sep 2003 08:44:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BFiELL077574 for ; Thu, 11 Sep 2003 08:44:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BFiEkN029674 for ; Thu, 11 Sep 2003 08:44:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BFiEGh029673; Thu, 11 Sep 2003 08:44:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309111544.h8BFiEGh029673@xorpc.icir.org> Date: Thu, 11 Sep 2003 8:44:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 08:44:14 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: * Include missing #include header files * Fix a bug revealed after the missing header files were included _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 12:24:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 12:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJP2FO074644 for ; Thu, 11 Sep 2003 12:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJP2LL079518 for ; Thu, 11 Sep 2003 12:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJP1wG009833; Thu, 11 Sep 2003 12:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJOfwG009817 for ; Thu, 11 Sep 2003 12:24:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJOeLL079509 for ; Thu, 11 Sep 2003 12:24:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJOekN041549 for ; Thu, 11 Sep 2003 12:24:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BJOeYg041548; Thu, 11 Sep 2003 12:24:40 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309111924.h8BJOeYg041548@xorpc.icir.org> Date: Thu, 11 Sep 2003 12:24:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.hh xrl_router.cc xrl_pf_factory.hh xrl_pf_factory.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 12:24:40 Modified files: xorp/libxipc/: xrl_router.hh xrl_router.cc xrl_pf_factory.hh xrl_pf_factory.cc Log message: Add XrlPFSenderFactory startup and shutdown methods. Have XrlRouter call these methods when first and last instances constructed and destructed. Change XrlPFSenderFactory to cache STCP senders. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 12:25:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 12:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJQ0FO074852 for ; Thu, 11 Sep 2003 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJQ0LL079548 for ; Thu, 11 Sep 2003 12:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJQ0wG009861; Thu, 11 Sep 2003 12:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJPxwG009855 for ; Thu, 11 Sep 2003 12:25:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJPxLL079546 for ; Thu, 11 Sep 2003 12:25:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJPwkN041696 for ; Thu, 11 Sep 2003 12:25:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BJPw0I041695; Thu, 11 Sep 2003 12:25:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309111925.h8BJPw0I041695@xorpc.icir.org> Date: Thu, 11 Sep 2003 12:25:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh xrl_pf_inproc.hh xrl_pf_inproc.cc xrl_pf_sudp.hh xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 12:25:58 Modified files: xorp/libxipc/: xrl_pf.hh xrl_pf_inproc.hh xrl_pf_inproc.cc xrl_pf_sudp.hh xrl_pf_sudp.cc Log message: Add non-static XrlPFSender::protocol(). Rename static XrlPFSender::protocol() XrlPFSender::protocol_name(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 12:26:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 12:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJR1FO075055 for ; Thu, 11 Sep 2003 12:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJR1LL079559 for ; Thu, 11 Sep 2003 12:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJR0wG009887; Thu, 11 Sep 2003 12:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJQSwG009876 for ; Thu, 11 Sep 2003 12:26:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJQRLL079557 for ; Thu, 11 Sep 2003 12:26:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJQRkN041776 for ; Thu, 11 Sep 2003 12:26:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BJQR36041775; Thu, 11 Sep 2003 12:26:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309111926.h8BJQR36041775@xorpc.icir.org> Date: Thu, 11 Sep 2003 12:26:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp_ph.hh xrl_pf_stcp_ph.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 12:26:27 Modified files: xorp/libxipc/: xrl_pf_stcp_ph.hh xrl_pf_stcp_ph.cc Log message: Minor tidy up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 12:28:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJU1FO075652 for ; Thu, 11 Sep 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJU0LL079603 for ; Thu, 11 Sep 2003 12:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJU0wG009942; Thu, 11 Sep 2003 12:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BJSxwG009921 for ; Thu, 11 Sep 2003 12:28:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJSxLL079596 for ; Thu, 11 Sep 2003 12:28:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BJSxkN042031 for ; Thu, 11 Sep 2003 12:28:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BJSxeB042030; Thu, 11 Sep 2003 12:28:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309111928.h8BJSxeB042030@xorpc.icir.org> Date: Thu, 11 Sep 2003 12:28:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc xrl_pf_stcp.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 12:28:59 Modified files: xorp/libxipc/: xrl_pf_stcp.cc xrl_pf_stcp.hh Log message: Add non-static XrlPFSender::protocol(). Rename static XrlPFSender::protocol() XrlPFSender::protocol_name(). Remove sender's timeout timer and associated code. Fix buffer reallocation error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 14:08:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 14:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BL91FO000780 for ; Thu, 11 Sep 2003 14:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BL91LL080529 for ; Thu, 11 Sep 2003 14:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BL91wG012067; Thu, 11 Sep 2003 14:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BL8swG012057 for ; Thu, 11 Sep 2003 14:08:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BL8rLL080525 for ; Thu, 11 Sep 2003 14:08:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BL8qkN076943 for ; Thu, 11 Sep 2003 14:08:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BL8qq9076942; Thu, 11 Sep 2003 14:08:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309112108.h8BL8qq9076942@xorpc.icir.org> Date: Thu, 11 Sep 2003 14:08:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ FlowerCheck test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/09/11 14:08:52 Modified files: xorp/utils/: FlowerCheck test_flower_malloc.sh Log message: Enable cross-directory gmake check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 15:23:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 15:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BMO1FO018006 for ; Thu, 11 Sep 2003 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BMO1LL081189 for ; Thu, 11 Sep 2003 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BMO1wG013836; Thu, 11 Sep 2003 15:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BMNswG013826 for ; Thu, 11 Sep 2003 15:23:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BMNsLL081187 for ; Thu, 11 Sep 2003 15:23:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BMNskN090351 for ; Thu, 11 Sep 2003 15:23:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BMNsZQ090350; Thu, 11 Sep 2003 15:23:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309112223.h8BMNsZQ090350@xorpc.icir.org> Date: Thu, 11 Sep 2003 15:23:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/11 15:23:54 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Fix core dump when config file is not found. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 16:00:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 16:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BN10FO025238 for ; Thu, 11 Sep 2003 16:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BN10LL081514 for ; Thu, 11 Sep 2003 16:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BN10wG014532; Thu, 11 Sep 2003 16:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BN0owG014526 for ; Thu, 11 Sep 2003 16:00:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BN0oLL081512 for ; Thu, 11 Sep 2003 16:00:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BN0nkN090631 for ; Thu, 11 Sep 2003 16:00:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BN0n22090630; Thu, 11 Sep 2003 16:00:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309112300.h8BN0n22090630@xorpc.icir.org> Date: Thu, 11 Sep 2003 16:00:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/11 16:00:49 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: Fix getopt argument for -x . _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 16:36:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 16:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNb1FO032283 for ; Thu, 11 Sep 2003 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNb1LL081895 for ; Thu, 11 Sep 2003 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BNb0wG015337; Thu, 11 Sep 2003 16:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BNaxwG015331 for ; Thu, 11 Sep 2003 16:36:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNaxLL081893 for ; Thu, 11 Sep 2003 16:36:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNaxkN090941 for ; Thu, 11 Sep 2003 16:36:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BNaxL3090940; Thu, 11 Sep 2003 16:36:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309112336.h8BNaxL3090940@xorpc.icir.org> Date: Thu, 11 Sep 2003 16:36:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 16:36:59 Modified files: xorp/fea/: fticonfig.cc Log message: Reimplement/fix the methods for enabling/disabling the unicast forwarding. The new implementation uses sysctl() for {Free,Net,Open}BSD, and read/write to /proc for Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 16:44:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 16:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNj1FO033914 for ; Thu, 11 Sep 2003 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNj1LL081950 for ; Thu, 11 Sep 2003 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BNj1wG015483; Thu, 11 Sep 2003 16:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8BNicwG015474 for ; Thu, 11 Sep 2003 16:44:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNibLL081945 for ; Thu, 11 Sep 2003 16:44:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8BNibkN091012 for ; Thu, 11 Sep 2003 16:44:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8BNib9V091011; Thu, 11 Sep 2003 16:44:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309112344.h8BNib9V091011@xorpc.icir.org> Date: Thu, 11 Sep 2003 16:44:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/11 16:44:37 Modified files: xorp/fea/: TODO Log message: Remove a TODO entry that is DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 17:48:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 17:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0n1FO046018 for ; Thu, 11 Sep 2003 17:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0n1LL082367 for ; Thu, 11 Sep 2003 17:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0n0wG016636; Thu, 11 Sep 2003 17:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0mEwG016620 for ; Thu, 11 Sep 2003 17:48:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0mDLL082363 for ; Thu, 11 Sep 2003 17:48:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0mDkN091351 for ; Thu, 11 Sep 2003 17:48:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8C0mDrC091350; Thu, 11 Sep 2003 17:48:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309120048.h8C0mDrC091350@xorpc.icir.org> Date: Thu, 11 Sep 2003 17:48:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp_messenger.cc finder_tcp_messenger.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 17:48:13 Modified files: xorp/libxipc/: finder_tcp_messenger.cc finder_tcp_messenger.hh Log message: Remove quick hack to auto connector class. Now retries to connect to finder on construction and only stops once connection established and becomes active. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 17:48:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 17:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0n2FO046033 for ; Thu, 11 Sep 2003 17:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0n2LL082371 for ; Thu, 11 Sep 2003 17:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0n1wG016647; Thu, 11 Sep 2003 17:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0mdwG016627 for ; Thu, 11 Sep 2003 17:48:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0mdLL082365 for ; Thu, 11 Sep 2003 17:48:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0mdkN091380 for ; Thu, 11 Sep 2003 17:48:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8C0mdWA091379; Thu, 11 Sep 2003 17:48:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309120048.h8C0mdWA091379@xorpc.icir.org> Date: Thu, 11 Sep 2003 17:48:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_error.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 17:48:39 Modified files: xorp/libxipc/: xrl_error.hh Log message: Debogon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 17:50:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 17:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0p1FO046454 for ; Thu, 11 Sep 2003 17:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0p0LL082413 for ; Thu, 11 Sep 2003 17:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0p0wG016714; Thu, 11 Sep 2003 17:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0oKwG016689 for ; Thu, 11 Sep 2003 17:50:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0oJLL082402 for ; Thu, 11 Sep 2003 17:50:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0oJkN091425 for ; Thu, 11 Sep 2003 17:50:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8C0oJ2N091424; Thu, 11 Sep 2003 17:50:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309120050.h8C0oJ2N091424@xorpc.icir.org> Date: Thu, 11 Sep 2003 17:50:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/11 17:50:19 Modified files: xorp/libxipc/: xrl_router.cc Log message: Fail XrlRouter::send when no finder is present and dispatch callback with XrlError::NO_FINDER. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 17:50:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 17:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0p1FO046469 for ; Thu, 11 Sep 2003 17:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0p1LL082417 for ; Thu, 11 Sep 2003 17:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0p1wG016725; Thu, 11 Sep 2003 17:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0ovwG016707 for ; Thu, 11 Sep 2003 17:50:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0ovLL082411 for ; Thu, 11 Sep 2003 17:50:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0ovkN091449 for ; Thu, 11 Sep 2003 17:50:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8C0ovVb091448; Thu, 11 Sep 2003 17:50:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309120050.h8C0ovVb091448@xorpc.icir.org> Date: Thu, 11 Sep 2003 17:50:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/11 17:50:57 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: Wait for finder to become ready before attempting to send xrls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:47 2005 Subject: No subject Thu Sep 11 17:53:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 17:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0s1FO047044 for ; Thu, 11 Sep 2003 17:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0s0LL082443 for ; Thu, 11 Sep 2003 17:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0s0wG016793; Thu, 11 Sep 2003 17:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0rMwG016781 for ; Thu, 11 Sep 2003 17:53:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0rMLL082439 for ; Thu, 11 Sep 2003 17:53:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0rLkN091478 for ; Thu, 11 Sep 2003 17:53:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8C0rLGf091477; Thu, 11 Sep 2003 17:53:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309120053.h8C0rLGf091477@xorpc.icir.org> Date: Thu, 11 Sep 2003 17:53:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/11 17:53:21 Modified files: xorp/rtrmgr/: TODO Log message: Add item to fix restart. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Thu Sep 11 17:59:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Sep 2003 18:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C101FO048197 for ; Thu, 11 Sep 2003 18:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C101LL082491 for ; Thu, 11 Sep 2003 18:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C101wG016887; Thu, 11 Sep 2003 18:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8C0xxwG016881 for ; Thu, 11 Sep 2003 17:59:59 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0xxLL082481 for ; Thu, 11 Sep 2003 17:59:59 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h8C0xxcO038954 for ; Thu, 11 Sep 2003 17:59:59 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309120059.h8C0xxcO038954@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc In-Reply-To: Your message of "Thu, 11 Sep 2003 17:50:19." <200309120050.h8C0oJ2N091424@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 11 Sep 2003 17:59:59 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/libxipc/ | Changes by: hodson@xorpc.icir.org. 03/09/11 17:50:19 | | Modified files: | xorp/libxipc/: xrl_router.cc | | Log message: | Fail XrlRouter::send when no finder is present and dispatch callback | with XrlError::NO_FINDER. The upshot of this is that any code that attempts to send Xrls before the XrlRouter has gone through the initiation steps with the Finder will fail. That this check was not there before is a more an oversight than anything else. Pavlin spotted a problem, that turned out to be this, when quiting xorpsh after the rtrmgr had gone away. We may see tinderbox failures following this change. We will need to review the code that is failing and see that it is going through the correct XrlRouter initialization sequence. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 10:28:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 10:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHT1FO040125 for ; Fri, 12 Sep 2003 10:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHT1LL091017 for ; Fri, 12 Sep 2003 10:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CHT1wG001809; Fri, 12 Sep 2003 10:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CHSEwG001788 for ; Fri, 12 Sep 2003 10:28:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHSELL091014 for ; Fri, 12 Sep 2003 10:28:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHSDkN039878 for ; Fri, 12 Sep 2003 10:28:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CHSDvK039877; Fri, 12 Sep 2003 10:28:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309121728.h8CHSDvK039877@xorpc.icir.org> Date: Fri, 12 Sep 2003 10:28:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc xorp/bgp/harness/ test_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/09/12 10:28:13 Modified files: xorp/bgp/: main.cc xorp/bgp/harness/: test_peer.cc Log message: Wait for XrlRouter to be ready before using it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 10:52:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 10:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHr1FO045827 for ; Fri, 12 Sep 2003 10:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHr1LL091221 for ; Fri, 12 Sep 2003 10:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CHr0wG002364; Fri, 12 Sep 2003 10:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CHqfwG002352 for ; Fri, 12 Sep 2003 10:52:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHqfLL091217 for ; Fri, 12 Sep 2003 10:52:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CHqfkN040071 for ; Fri, 12 Sep 2003 10:52:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CHqfTL040070; Fri, 12 Sep 2003 10:52:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309121752.h8CHqfTL040070@xorpc.icir.org> Date: Fri, 12 Sep 2003 10:52:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 03/09/12 10:52:41 Modified files: xorp/rib/: test_rib_xrls.cc Log message: Wait for XrlRouter to be ready before using it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 14:34:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 14:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CLZ1FO097529 for ; Fri, 12 Sep 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CLZ1LL093058 for ; Fri, 12 Sep 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CLZ0wG007063; Fri, 12 Sep 2003 14:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CLYiwG007047 for ; Fri, 12 Sep 2003 14:34:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CLYiLL093053 for ; Fri, 12 Sep 2003 14:34:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CLYikN090874 for ; Fri, 12 Sep 2003 14:34:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CLYiAF090873; Fri, 12 Sep 2003 14:34:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309122134.h8CLYiAF090873@xorpc.icir.org> Date: Fri, 12 Sep 2003 14:34:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/12 14:34:44 Modified files: xorp/fea/: ifconfig.hh Log message: Added new method IfConfig::ifc_get_ioctl() that is needed by the ifconfig_get_proc_linux method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 15:39:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 15:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CMe1FO020392 for ; Fri, 12 Sep 2003 15:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CMe1LL093682 for ; Fri, 12 Sep 2003 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CMe0wG008305; Fri, 12 Sep 2003 15:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CMdAwG008274 for ; Fri, 12 Sep 2003 15:39:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CMd9LL093672 for ; Fri, 12 Sep 2003 15:39:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CMd9kN091340 for ; Fri, 12 Sep 2003 15:39:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CMd90o091339; Fri, 12 Sep 2003 15:39:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309122239.h8CMd90o091339@xorpc.icir.org> Date: Fri, 12 Sep 2003 15:39:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/12 15:39:09 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: * Refactor the /proc information fetch mechanism (mostly the IPv4 case): - First we call the ioctl()'s pull_config() to get most of the interface information (including the IP aliases information). - Then, in case of IPv4 we get the list of interfaces from /proc/net/dev . This info would include the tunnel interface names that is not returned by the ioctl(SIOCGIFCONF) method. Then, for every interface name that is not on the interface tree (i.e., that ioctl(SIOCGIFCONF) doesn't know about) we call IfConfigIoctl::parse_buffer_ifreq() that will call various ioctl()'s to fill-in the missing info for that interface (MTU, IP address, etc). This is the model used by Linux's ifconfig (from net-tools), and seems to be the only workaround of collecting all the missing interface information. * Few tweaks to the IPv6 case, where we need to use /proc/net/if_inet6 to get the IP addresses, etc (similar to Linux's ifconfig). We still don't obtain the endpoint address in case of IPv6 point-to-point interfaces, because there is no information in ifconfig's source code or the Linux kernel code how to do that. Could be that RedHat-7.x (Linux kernel 2.4.x) doesn't support IPv6 tunnels? _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 16:43:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNi1FO048400 for ; Fri, 12 Sep 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNi1LL094169 for ; Fri, 12 Sep 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNi1wG009501; Fri, 12 Sep 2003 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNhfwG009493 for ; Fri, 12 Sep 2003 16:43:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNhfLL094166 for ; Fri, 12 Sep 2003 16:43:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNhfkN000841 for ; Fri, 12 Sep 2003 16:43:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CNhfMT000840; Fri, 12 Sep 2003 16:43:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309122343.h8CNhfMT000840@xorpc.icir.org> Date: Fri, 12 Sep 2003 16:43:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/09/12 16:43:41 Modified files: xorp/xrl/interfaces/: fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Added new XRLs to the FEA: fti/0.2/have_ipv4 -> result:bool fti/0.2/have_ipv6 -> result:bool The return result is run-time check whether the underlying system supports IPv4 and IPv6 respectively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 16:44:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 16:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNj1FO048686 for ; Fri, 12 Sep 2003 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNj1LL094183 for ; Fri, 12 Sep 2003 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNj0wG009524; Fri, 12 Sep 2003 16:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNikwG009517 for ; Fri, 12 Sep 2003 16:44:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNijLL094176 for ; Fri, 12 Sep 2003 16:44:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNijkN000861 for ; Fri, 12 Sep 2003 16:44:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CNijxo000860; Fri, 12 Sep 2003 16:44:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309122344.h8CNijxo000860@xorpc.icir.org> Date: Fri, 12 Sep 2003 16:44:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc fticonfig.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/12 16:44:45 Modified files: xorp/fea/: fticonfig.cc fticonfig.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh Log message: Implement support for the following XRLs: have_ipv4 and have_ipv6. The return result is run-time check whether the underlying system supports IPv4 and IPv6 respectively. Note: class FtiConfig is probably not the right-place for the implementation of the check, because this check is not specific to the forwarding table, but currently there is no an appropriate class for that. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 16:45:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 16:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNk1FO049019 for ; Fri, 12 Sep 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNk1LL094216 for ; Fri, 12 Sep 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNk1wG009551; Fri, 12 Sep 2003 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8CNjiwG009543 for ; Fri, 12 Sep 2003 16:45:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNjhLL094214 for ; Fri, 12 Sep 2003 16:45:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8CNjhkN000906 for ; Fri, 12 Sep 2003 16:45:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8CNjhXK000905; Fri, 12 Sep 2003 16:45:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309122345.h8CNjhXK000905@xorpc.icir.org> Date: Fri, 12 Sep 2003 16:45:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/12 16:45:43 Modified files: xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh Log message: Add dummy support for the following XRLs: fti/0.2/have_ipv4 and have_ipv6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:28:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2T1FO088376 for ; Fri, 12 Sep 2003 19:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2T1LL095309 for ; Fri, 12 Sep 2003 19:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2T1wG011670; Fri, 12 Sep 2003 19:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2SrwG011657 for ; Fri, 12 Sep 2003 19:28:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2SrLL095307 for ; Fri, 12 Sep 2003 19:28:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2SrkN005492 for ; Fri, 12 Sep 2003 19:28:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2SrM6005491; Fri, 12 Sep 2003 19:28:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130228.h8D2SrM6005491@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:28:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ compile Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:28:53 Added files: xorp/config/: compile Log message: Added a script that automake-1.5 auto-copies to the xorp/config directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:30:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2V1FO088809 for ; Fri, 12 Sep 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2V1LL095343 for ; Fri, 12 Sep 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2V1wG011742; Fri, 12 Sep 2003 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2UVwG011727 for ; Fri, 12 Sep 2003 19:30:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2UVLL095337 for ; Fri, 12 Sep 2003 19:30:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2UVkN005568 for ; Fri, 12 Sep 2003 19:30:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2UV0o005567; Fri, 12 Sep 2003 19:30:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130230.h8D2UV0o005567@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:30:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:30:31 Modified files: ./: Makefile.in Log message: Auto-regenerate to include the new "config/compile" file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:33:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2Y1FO089406 for ; Fri, 12 Sep 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2Y1LL095370 for ; Fri, 12 Sep 2003 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2Y1wG011791; Fri, 12 Sep 2003 19:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2XjwG011773 for ; Fri, 12 Sep 2003 19:33:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2XjLL095368 for ; Fri, 12 Sep 2003 19:33:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2XikN005616 for ; Fri, 12 Sep 2003 19:33:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2Xisf005615; Fri, 12 Sep 2003 19:33:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130233.h8D2Xisf005615@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:33:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:33:44 Modified files: ./: config.h.in configure xorp/config/: acipv6.m4 Log message: Added a compilation check to config/acipv6.m4 to test whether the IPv6 stack supports IPv6 multicast and IPv6 multicast routing. The new #define names are: #HAVE_IPV6_MULTICAST #HAVE_IPV6_MULTICAST_ROUTING Currently, those new #define names are not used yet. Theoretically, only the FEA/MFEA should use them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:40:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2f1FO090750 for ; Fri, 12 Sep 2003 19:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2f1LL095428 for ; Fri, 12 Sep 2003 19:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2f1wG011918; Fri, 12 Sep 2003 19:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2euwG011912 for ; Fri, 12 Sep 2003 19:40:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2euLL095426 for ; Fri, 12 Sep 2003 19:40:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2eukN005697 for ; Fri, 12 Sep 2003 19:40:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2euMl005696; Fri, 12 Sep 2003 19:40:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130240.h8D2euMl005696@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:40:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:40:56 Modified files: ./: configure configure.in Log message: Tweaks to some of the AC_MSG_CHECKING() printed messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:56:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2v1FO093774 for ; Fri, 12 Sep 2003 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2v1LL095536 for ; Fri, 12 Sep 2003 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2v1wG012081; Fri, 12 Sep 2003 19:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2uVwG012067 for ; Fri, 12 Sep 2003 19:56:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2uULL095530 for ; Fri, 12 Sep 2003 19:56:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2uUkN005810 for ; Fri, 12 Sep 2003 19:56:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2uUCb005809; Fri, 12 Sep 2003 19:56:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130256.h8D2uUCb005809@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:56:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_register.cc pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:56:30 Modified files: xorp/pim/: pim_proto_register.cc pim_vif.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Fri Sep 12 19:56:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Sep 2003 19:58:23 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2wNFO094043 for ; Fri, 12 Sep 2003 19:58:23 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2wNLL095543 for ; Fri, 12 Sep 2003 19:58:23 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2wMwG012115; Fri, 12 Sep 2003 19:58:23 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8D2umwG012074 for ; Fri, 12 Sep 2003 19:56:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2umLL095534 for ; Fri, 12 Sep 2003 19:56:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8D2umkN005848 for ; Fri, 12 Sep 2003 19:56:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8D2um79005847; Fri, 12 Sep 2003 19:56:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309130256.h8D2um79005847@xorpc.icir.org> Date: Fri, 12 Sep 2003 19:56:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/09/12 19:56:48 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: Minor tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 10:46:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 10:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FHl2FO039862 for ; Mon, 15 Sep 2003 10:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FHl2LL027965 for ; Mon, 15 Sep 2003 10:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FHl1wG029458; Mon, 15 Sep 2003 10:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FHkXwG029443 for ; Mon, 15 Sep 2003 10:46:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FHkWLL027961 for ; Mon, 15 Sep 2003 10:46:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FHkWkN081952 for ; Mon, 15 Sep 2003 10:46:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FHkWf7081951; Mon, 15 Sep 2003 10:46:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309151746.h8FHkWf7081951@xorpc.icir.org> Date: Mon, 15 Sep 2003 10:46:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/15 10:46:32 Modified files: xorp/libxipc/: xrl_pf_stcp.cc Log message: Handle end-of-file in sender. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 11:16:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 11:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIH1FO046847 for ; Mon, 15 Sep 2003 11:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIH1LL028214 for ; Mon, 15 Sep 2003 11:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FIH1wG000168; Mon, 15 Sep 2003 11:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FIGWwG000148 for ; Mon, 15 Sep 2003 11:16:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIGWLL028210 for ; Mon, 15 Sep 2003 11:16:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIGWkN082197 for ; Mon, 15 Sep 2003 11:16:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FIGW4V082196; Mon, 15 Sep 2003 11:16:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309151816.h8FIGW4V082196@xorpc.icir.org> Date: Mon, 15 Sep 2003 11:16:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/09/15 11:16:32 Modified files: xorp/bgp/harness/: coord.cc Log message: Add code to wait for Finder to become ready. Set done flag in common_0_1_shutdown so there's just one path to exit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 11:17:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 11:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FII1FO047098 for ; Mon, 15 Sep 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FII1LL028225 for ; Mon, 15 Sep 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FII1wG000197; Mon, 15 Sep 2003 11:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FIHwwG000190 for ; Mon, 15 Sep 2003 11:17:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIHwLL028223 for ; Mon, 15 Sep 2003 11:17:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIHwkN082260 for ; Mon, 15 Sep 2003 11:17:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FIHwm8082259; Mon, 15 Sep 2003 11:17:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309151817.h8FIHwm8082259@xorpc.icir.org> Date: Mon, 15 Sep 2003 11:17:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peer.cc xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/09/15 11:17:58 Modified files: xorp/bgp/harness/: test_peer.cc xorp/bgp/: main.cc Log message: Test timed_out flag while waiting for XrlRouter to become ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 11:56:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIv1FO057221 for ; Mon, 15 Sep 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIv1LL028534 for ; Mon, 15 Sep 2003 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FIv1wG001118; Mon, 15 Sep 2003 11:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FIuGwG001104 for ; Mon, 15 Sep 2003 11:56:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIuGLL028530 for ; Mon, 15 Sep 2003 11:56:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FIuGkN082660 for ; Mon, 15 Sep 2003 11:56:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FIuGvv082659; Mon, 15 Sep 2003 11:56:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309151856.h8FIuGvv082659@xorpc.icir.org> Date: Mon, 15 Sep 2003 11:56:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/09/15 11:56:16 Modified files: xorp/rib/: main_rib.cc Log message: Wait for the finder to become ready. Early on its startup process the rib registers interest in interfaces with the fea. This call was failing because the rib did not wait for the finder to become ready. Hence any changes in interface state were not propogated to the rib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 12:08:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FJ91FO071372 for ; Mon, 15 Sep 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FJ91LL028674 for ; Mon, 15 Sep 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FJ90wG001446; Mon, 15 Sep 2003 12:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FJ8HwG001431 for ; Mon, 15 Sep 2003 12:08:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FJ8HLL028672 for ; Mon, 15 Sep 2003 12:08:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FJ8GkN090941 for ; Mon, 15 Sep 2003 12:08:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FJ8GkT090940; Mon, 15 Sep 2003 12:08:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309151908.h8FJ8GkT090940@xorpc.icir.org> Date: Mon, 15 Sep 2003 12:08:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.hh coord.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/09/15 12:08:16 Modified files: xorp/bgp/harness/: coord.hh coord.cc Log message: Unbreak build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:48 2005 Subject: No subject Mon Sep 15 14:54:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FLt1FO024122 for ; Mon, 15 Sep 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FLt0LL030193 for ; Mon, 15 Sep 2003 14:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FLt0wG004914; Mon, 15 Sep 2003 14:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FLsjwG004905 for ; Mon, 15 Sep 2003 14:54:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FLsjLL030188 for ; Mon, 15 Sep 2003 14:54:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FLsjkN011847 for ; Mon, 15 Sep 2003 14:54:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FLsj4o011846; Mon, 15 Sep 2003 14:54:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309152154.h8FLsj4o011846@xorpc.icir.org> Date: Mon, 15 Sep 2003 14:54:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 03/09/15 14:54:45 Modified files: other/tinderbox/scripts/: config Log message: Switch tinderbox to gcc33. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 16:32:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNX1FO042034 for ; Mon, 15 Sep 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNX1LL031167 for ; Mon, 15 Sep 2003 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNX0wG007052; Mon, 15 Sep 2003 16:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNW4wG007036 for ; Mon, 15 Sep 2003 16:32:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNW4LL031160 for ; Mon, 15 Sep 2003 16:32:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNW4kN012478 for ; Mon, 15 Sep 2003 16:32:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FNW4xW012477; Mon, 15 Sep 2003 16:32:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309152332.h8FNW4xW012477@xorpc.icir.org> Date: Mon, 15 Sep 2003 16:32:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/15 16:32:04 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Add explicit check in MfeaMrouter::open_mrouter_socket() and close_mrouter_socket() that the protocol number for opening a socket for multicast routing is valid. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 16:41:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 16:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNg1FO043626 for ; Mon, 15 Sep 2003 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNg1LL031257 for ; Mon, 15 Sep 2003 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNg1wG007248; Mon, 15 Sep 2003 16:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNfJwG007228 for ; Mon, 15 Sep 2003 16:41:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNfJLL031254 for ; Mon, 15 Sep 2003 16:41:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNfJkN012571 for ; Mon, 15 Sep 2003 16:41:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FNfJSk012570; Mon, 15 Sep 2003 16:41:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309152341.h8FNfJSk012570@xorpc.icir.org> Date: Mon, 15 Sep 2003 16:41:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_factory.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/15 16:41:19 Modified files: xorp/libxipc/: xrl_pf_factory.cc Log message: Reap dead tcp senders (if they ever occur). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 16:45:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 16:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNk1FO044335 for ; Mon, 15 Sep 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNk1LL031314 for ; Mon, 15 Sep 2003 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNk1wG007320; Mon, 15 Sep 2003 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNjgwG007310 for ; Mon, 15 Sep 2003 16:45:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNjgLL031312 for ; Mon, 15 Sep 2003 16:45:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNjfkN012627 for ; Mon, 15 Sep 2003 16:45:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FNjf2t012626; Mon, 15 Sep 2003 16:45:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309152345.h8FNjf2t012626@xorpc.icir.org> Date: Mon, 15 Sep 2003 16:45:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_std_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/15 16:45:41 Modified files: xorp/libxipc/: xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_std_router.cc Log message: Rearrange check on whether out going queue is empty and what action to take as placing item in queue and testing whether queue is empty is not a winning strategery. Add verbose flag to STCPRequestHandler::die. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 16:47:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 16:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNm1FO044698 for ; Mon, 15 Sep 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNm1LL031326 for ; Mon, 15 Sep 2003 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNm1wG007356; Mon, 15 Sep 2003 16:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNlQwG007347 for ; Mon, 15 Sep 2003 16:47:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNlQLL031322 for ; Mon, 15 Sep 2003 16:47:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNlQkN012660 for ; Mon, 15 Sep 2003 16:47:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8FNlQLv012659; Mon, 15 Sep 2003 16:47:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309152347.h8FNlQLv012659@xorpc.icir.org> Date: Mon, 15 Sep 2003 16:47:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_std_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/15 16:47:26 Modified files: xorp/libxipc/: xrl_std_router.cc Log message: Switch default protocol family from udp to tcp. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 16:55:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 16:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNu1FO046092 for ; Mon, 15 Sep 2003 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNu1LL031401 for ; Mon, 15 Sep 2003 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNu0wG007549; Mon, 15 Sep 2003 16:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8FNt8wG007516 for ; Mon, 15 Sep 2003 16:55:08 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNt8LL031397 for ; Mon, 15 Sep 2003 16:55:08 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h8FNt8cO008794 for ; Mon, 15 Sep 2003 16:55:08 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309152355.h8FNt8cO008794@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_std_router.cc In-Reply-To: Your message of "Mon, 15 Sep 2003 16:47:26." <200309152347.h8FNlQLv012659@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 Sep 2003 16:55:08 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/libxipc/ | Changes by: hodson@xorpc.icir.org. 03/09/15 16:47:26 | | Modified files: | xorp/libxipc/: xrl_std_router.cc | | Log message: | Switch default protocol family from udp to tcp. At the time of writing, bgp's test_terminate.sh fails. I'm leaving this to one of the bgp crew. If you experience any other problems let me know: I've only checked programs that have unit tests using xrls. PS If this change gets in the way of work in progress, it's just substitute udp for tcp in this file, save, and recompile. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 17:38:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 17:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G0d1FO060498 for ; Mon, 15 Sep 2003 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G0d1LL031802 for ; Mon, 15 Sep 2003 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G0d1wG008327; Mon, 15 Sep 2003 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G0c7wG008319 for ; Mon, 15 Sep 2003 17:38:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G0c6LL031798 for ; Mon, 15 Sep 2003 17:38:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G0c6kN012990 for ; Mon, 15 Sep 2003 17:38:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G0c6M1012989; Mon, 15 Sep 2003 17:38:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309160038.h8G0c6M1012989@xorpc.icir.org> Date: Mon, 15 Sep 2003 17:38:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/15 17:38:06 Modified files: xorp/bgp/harness/: peer.cc Log message: Add "replay" support. All update packet sent to or by a test_peer are saved in a corresponding trie. Each trie is capable of generating the minimum list of update packet that created the state in that trie (including update packets containing only withdraws). This replay state can now be extracted from a trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 18:15:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 18:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1G1FO068192 for ; Mon, 15 Sep 2003 18:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1G1LL032207 for ; Mon, 15 Sep 2003 18:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G1G0wG009062; Mon, 15 Sep 2003 18:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G1FrwG009056 for ; Mon, 15 Sep 2003 18:15:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1FrLL032202 for ; Mon, 15 Sep 2003 18:15:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1FrkN013508 for ; Mon, 15 Sep 2003 18:15:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G1FrS1013504; Mon, 15 Sep 2003 18:15:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160115.h8G1FrS1013504@xorpc.icir.org> Date: Mon, 15 Sep 2003 18:15:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc mfea_mrouter.cc mfea_node.cc mfea_osdep.hh mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/15 18:15:53 Modified files: xorp/fea/: fea.cc fea_dummy.cc mfea_mrouter.cc mfea_node.cc mfea_osdep.hh mfea_proto_comm.cc Log message: Add #ifdef HAVE_IPV6_MULTICAST and #ifdef HAVE_IPV6_MULTICAST_ROUTING as appropriate. Note: the compilation is not tested yet on systems that have IPv6, but doesn't have IPv6 multicast and/or IPv6 multicast routing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 18:19:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 18:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1K1FO069114 for ; Mon, 15 Sep 2003 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1K1LL032245 for ; Mon, 15 Sep 2003 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G1K0wG009110; Mon, 15 Sep 2003 18:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G1J1wG009096 for ; Mon, 15 Sep 2003 18:19:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1J1LL032236 for ; Mon, 15 Sep 2003 18:19:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G1J1kN013557 for ; Mon, 15 Sep 2003 18:19:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G1J1Zw013556; Mon, 15 Sep 2003 18:19:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160119.h8G1J1Zw013556@xorpc.icir.org> Date: Mon, 15 Sep 2003 18:19:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc mfea_proto_comm.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/15 18:19:01 Modified files: xorp/fea/: mfea_proto_comm.cc mfea_proto_comm.hh Log message: Rename ProtoComm::set_mcast_ttl() to set_multicast_ttl() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 19:24:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 19:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G2P1FO082638 for ; Mon, 15 Sep 2003 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G2P0LL032792 for ; Mon, 15 Sep 2003 19:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G2P0wG010076; Mon, 15 Sep 2003 19:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G2O5wG010056 for ; Mon, 15 Sep 2003 19:24:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G2O5LL032788 for ; Mon, 15 Sep 2003 19:24:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G2O5kN026009 for ; Mon, 15 Sep 2003 19:24:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G2O5JW026008; Mon, 15 Sep 2003 19:24:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309160224.h8G2O5JW026008@xorpc.icir.org> Date: Mon, 15 Sep 2003 19:24:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/15 19:24:05 Modified files: xorp/bgp/: bgp.cc Log message: Wait one second before exiting, this will allow any callers to the shutdown XRL to get a response. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 21:37:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 21:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G4c1FO007711 for ; Mon, 15 Sep 2003 21:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G4c1LL033791 for ; Mon, 15 Sep 2003 21:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G4c1wG011752; Mon, 15 Sep 2003 21:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G4bXwG011733 for ; Mon, 15 Sep 2003 21:37:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G4bXLL033783 for ; Mon, 15 Sep 2003 21:37:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G4bXkN026917 for ; Mon, 15 Sep 2003 21:37:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G4bXtE026916; Mon, 15 Sep 2003 21:37:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160437.h8G4bXtE026916@xorpc.icir.org> Date: Mon, 15 Sep 2003 21:37:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/15 21:37:33 Modified files: xorp/fea/: fticonfig.cc Log message: Fix the IPv6-related sysctl() mib[] argument values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Mon Sep 15 23:50:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Sep 2003 23:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G6p1FO032714 for ; Mon, 15 Sep 2003 23:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G6p1LL034814 for ; Mon, 15 Sep 2003 23:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G6p1wG013742; Mon, 15 Sep 2003 23:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G6oswG013727 for ; Mon, 15 Sep 2003 23:50:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G6osLL034812 for ; Mon, 15 Sep 2003 23:50:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G6orkN029171 for ; Mon, 15 Sep 2003 23:50:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G6orwh029170; Mon, 15 Sep 2003 23:50:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160650.h8G6orwh029170@xorpc.icir.org> Date: Mon, 15 Sep 2003 23:50:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/09/15 23:50:53 Modified files: xorp/rib/: test_rib_xrls.cc Log message: Test timed_out flag while waiting for XrlRouter to become ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 0:04:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 00:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G751FO035336 for ; Tue, 16 Sep 2003 00:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G750LL034931 for ; Tue, 16 Sep 2003 00:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G750wG014001; Tue, 16 Sep 2003 00:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G74WwG013994 for ; Tue, 16 Sep 2003 00:04:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G74WLL034925 for ; Tue, 16 Sep 2003 00:04:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G74WkN037216 for ; Tue, 16 Sep 2003 00:04:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G74WT9037215; Tue, 16 Sep 2003 00:04:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160704.h8G74WT9037215@xorpc.icir.org> Date: Tue, 16 Sep 2003 0:04:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/09/16 00:04:32 Modified files: xorp/bgp/: main.cc Log message: * Strenghten the XrlRouter timeout check * Replace XLOG_ERROR() with XLOG_FATAL() if XrlRouter doesn't become ready, and remove '\n' from the end of the log message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 0:05:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 00:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G761FO035564 for ; Tue, 16 Sep 2003 00:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G761LL034967 for ; Tue, 16 Sep 2003 00:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G760wG014032; Tue, 16 Sep 2003 00:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G755wG014017 for ; Tue, 16 Sep 2003 00:05:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G755LL034940 for ; Tue, 16 Sep 2003 00:05:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G755kN037339 for ; Tue, 16 Sep 2003 00:05:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G7548L037338; Tue, 16 Sep 2003 00:05:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160705.h8G7548L037338@xorpc.icir.org> Date: Tue, 16 Sep 2003 0:05:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/09/16 00:05:04 Modified files: xorp/bgp/harness/: coord.cc Log message: Strenghten the XrlRouter timeout check _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 0:05:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 00:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G761FO035579 for ; Tue, 16 Sep 2003 00:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G761LL034971 for ; Tue, 16 Sep 2003 00:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G761wG014043; Tue, 16 Sep 2003 00:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G75ewG014024 for ; Tue, 16 Sep 2003 00:05:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G75eLL034964 for ; Tue, 16 Sep 2003 00:05:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G75ekN037446 for ; Tue, 16 Sep 2003 00:05:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G75e0t037445; Tue, 16 Sep 2003 00:05:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160705.h8G75e0t037445@xorpc.icir.org> Date: Tue, 16 Sep 2003 0:05:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/09/16 00:05:40 Modified files: xorp/bgp/harness/: test_peer.cc Log message: * Strenghten the XrlRouter timeout check * Remove extra '\n' at the end of XLOG_FATAL() log message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 0:06:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 00:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G771FO035787 for ; Tue, 16 Sep 2003 00:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G771LL034991 for ; Tue, 16 Sep 2003 00:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G770wG014075; Tue, 16 Sep 2003 00:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G76GwG014062 for ; Tue, 16 Sep 2003 00:06:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G76GLL034982 for ; Tue, 16 Sep 2003 00:06:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G76GkN037538 for ; Tue, 16 Sep 2003 00:06:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G76G5U037537; Tue, 16 Sep 2003 00:06:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160706.h8G76G5U037537@xorpc.icir.org> Date: Tue, 16 Sep 2003 0:06:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/09/16 00:06:16 Modified files: xorp/rib/: main_rib.cc Log message: Remove extra '\n' at the end of XLOG_FATAL() message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 0:06:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 00:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G772FO035802 for ; Tue, 16 Sep 2003 00:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G771LL034995 for ; Tue, 16 Sep 2003 00:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G771wG014087; Tue, 16 Sep 2003 00:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G76VwG014067 for ; Tue, 16 Sep 2003 00:06:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G76VLL034987 for ; Tue, 16 Sep 2003 00:06:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G76UkN037605 for ; Tue, 16 Sep 2003 00:06:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G76U4p037604; Tue, 16 Sep 2003 00:06:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160706.h8G76U4p037604@xorpc.icir.org> Date: Tue, 16 Sep 2003 0:06:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/09/16 00:06:30 Modified files: xorp/rib/: test_rib_xrls.cc Log message: Strenghten the XrlRouter timeout check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 1:13:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 01:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8E1FO048611 for ; Tue, 16 Sep 2003 01:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8E1LL035540 for ; Tue, 16 Sep 2003 01:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G8E1wG014983; Tue, 16 Sep 2003 01:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G8DAwG014970 for ; Tue, 16 Sep 2003 01:13:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8DALL035538 for ; Tue, 16 Sep 2003 01:13:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8DAkN052112 for ; Tue, 16 Sep 2003 01:13:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G8DA1X052111; Tue, 16 Sep 2003 01:13:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160813.h8G8DA1X052111@xorpc.icir.org> Date: Tue, 16 Sep 2003 1:13:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/09/16 01:13:10 Modified files: xorp/cli/: test_cli.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 1:19:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 01:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8K1FO050094 for ; Tue, 16 Sep 2003 01:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8K1LL035613 for ; Tue, 16 Sep 2003 01:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G8K0wG015095; Tue, 16 Sep 2003 01:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G8JPwG015081 for ; Tue, 16 Sep 2003 01:19:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8JPLL035602 for ; Tue, 16 Sep 2003 01:19:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G8JOkN052437 for ; Tue, 16 Sep 2003 01:19:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G8JOk1052436; Tue, 16 Sep 2003 01:19:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160819.h8G8JOk1052436@xorpc.icir.org> Date: Tue, 16 Sep 2003 1:19:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea_click.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/16 01:19:24 Modified files: xorp/fea/: fea_click.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 2:02:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G931FO066509 for ; Tue, 16 Sep 2003 02:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G931LL036240 for ; Tue, 16 Sep 2003 02:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G931wG015616; Tue, 16 Sep 2003 02:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G92OwG015602 for ; Tue, 16 Sep 2003 02:02:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G92OLL036222 for ; Tue, 16 Sep 2003 02:02:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G92OkN073995 for ; Tue, 16 Sep 2003 02:02:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G92OeY073994; Tue, 16 Sep 2003 02:02:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160902.h8G92OeY073994@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:02:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc test_mfea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:02:24 Modified files: xorp/fea/: fea.cc fea_dummy.cc test_mfea.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:49 2005 Subject: No subject Tue Sep 16 2:02:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G932FO066524 for ; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G932LL036244 for ; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G932wG015627; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G92bwG015609 for ; Tue, 16 Sep 2003 02:02:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G92bLL036231 for ; Tue, 16 Sep 2003 02:02:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G92bkN074024 for ; Tue, 16 Sep 2003 02:02:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G92bRi074023; Tue, 16 Sep 2003 02:02:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160902.h8G92bRi074023@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:02:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:02:37 Modified files: xorp/mld6igmp/: test_mld6igmp.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 2:03:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G941FO066786 for ; Tue, 16 Sep 2003 02:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G941LL036270 for ; Tue, 16 Sep 2003 02:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G941wG015670; Tue, 16 Sep 2003 02:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G932wG015638 for ; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G932LL036245 for ; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G932kN074055 for ; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G932C0074054; Tue, 16 Sep 2003 02:03:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160903.h8G932C0074054@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:03:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/xorp/ ospfd_xorp.C xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:03:02 Modified files: xorp/ospfd/xorp/: ospfd_xorp.C xorp/pim/: test_pim.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 2:03:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G942FO066803 for ; Tue, 16 Sep 2003 02:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G942LL036274 for ; Tue, 16 Sep 2003 02:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G942wG015681; Tue, 16 Sep 2003 02:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G93MwG015643 for ; Tue, 16 Sep 2003 02:03:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G93MLL036259 for ; Tue, 16 Sep 2003 02:03:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G93LkN074084 for ; Tue, 16 Sep 2003 02:03:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G93L5p074083; Tue, 16 Sep 2003 02:03:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160903.h8G93L5p074083@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:03:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_register_xrls.cc test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:03:21 Modified files: xorp/rib/: test_register_xrls.cc test_rib_xrls.cc Log message: Wait until the XrlRouter becomes ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 2:03:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G943FO066819 for ; Tue, 16 Sep 2003 02:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G943LL036278 for ; Tue, 16 Sep 2003 02:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G942wG015692; Tue, 16 Sep 2003 02:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G93cwG015662 for ; Tue, 16 Sep 2003 02:03:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G93cLL036264 for ; Tue, 16 Sep 2003 02:03:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G93ckN074196 for ; Tue, 16 Sep 2003 02:03:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G93cYO074195; Tue, 16 Sep 2003 02:03:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160903.h8G93cYO074195@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:03:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:03:38 Modified files: xorp/rtrmgr/: test_sample_config.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 2:35:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 02:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G9a1FO074736 for ; Tue, 16 Sep 2003 02:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G9a1LL036623 for ; Tue, 16 Sep 2003 02:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G9a1wG016087; Tue, 16 Sep 2003 02:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8G9ZJwG016076 for ; Tue, 16 Sep 2003 02:35:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G9ZJLL036619 for ; Tue, 16 Sep 2003 02:35:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8G9ZJkN078407 for ; Tue, 16 Sep 2003 02:35:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8G9ZJDh078406; Tue, 16 Sep 2003 02:35:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309160935.h8G9ZJDh078406@xorpc.icir.org> Date: Tue, 16 Sep 2003 2:35:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/09/16 02:35:18 Modified files: xorp/rtrmgr/: main_rtrmgr.cc xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: * Modify the XrlRtrmgrInterface constructor such that it doesn't require MasterConfigTree as one of the arguments. * Add a new method XrlRtrmgrInterface::set_conf_tree() to explicitly set the MasterConfigTree. * Wait until the XrlRouter becomes ready We need the above refactoring (the first and second items) so we can create a new MasterConfigTree after we complete waiting for XrlRouter to become ready. The above changes fix a rtrmgr coredump problem on startup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 11:13:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 11:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GIE2FO072217 for ; Tue, 16 Sep 2003 11:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GIE1LL042956 for ; Tue, 16 Sep 2003 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GIE1wG025089; Tue, 16 Sep 2003 11:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GIDmwG025079 for ; Tue, 16 Sep 2003 11:13:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GIDmLL042954 for ; Tue, 16 Sep 2003 11:13:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GIDmkN083699 for ; Tue, 16 Sep 2003 11:13:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GIDmZl083698; Tue, 16 Sep 2003 11:13:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309161813.h8GIDmZl083698@xorpc.icir.org> Date: Tue, 16 Sep 2003 11:13:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc xorp/bgp/harness/ coord.cc test_peer.cc xorp/cli/ test_cli.cc xorp/fea/ fea.cc fea_click.cc fea_dummy.cc test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/ospfd/xorp/ ospfd_xorp.C xorp/pim/ test_pim.cc xorp/rib/ main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/09/16 11:13:48 Modified files: xorp/bgp/: main.cc xorp/bgp/harness/: coord.cc test_peer.cc xorp/cli/: test_cli.cc xorp/fea/: fea.cc fea_click.cc fea_dummy.cc test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/ospfd/xorp/: ospfd_xorp.C xorp/pim/: test_pim.cc xorp/rib/: main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rtrmgr/: main_rtrmgr.cc Log message: * Remove redundant check for the "timed_out" flag * Remove redundant "exit (1)" after XLOG_FATAL() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 12:05:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ61FO092089 for ; Tue, 16 Sep 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ61hm043741 for ; Tue, 16 Sep 2003 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJ61wG026085; Tue, 16 Sep 2003 12:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJ5LwG026066 for ; Tue, 16 Sep 2003 12:05:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ5Lhm043733 for ; Tue, 16 Sep 2003 12:05:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ5LkN092287 for ; Tue, 16 Sep 2003 12:05:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GJ5LFx092286; Tue, 16 Sep 2003 12:05:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309161905.h8GJ5LFx092286@xorpc.icir.org> Date: Tue, 16 Sep 2003 12:05:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/09/16 12:05:21 Modified files: xorp/bgp/: bgp.cc Log message: Remove delay of 1 seconds waiting for Xrl responses to clear. XrlRouter::pending should cater for this (in following commit). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 12:06:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 12:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ71FO092337 for ; Tue, 16 Sep 2003 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ71hm043762 for ; Tue, 16 Sep 2003 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJ70wG026128; Tue, 16 Sep 2003 12:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJ6bwG026109 for ; Tue, 16 Sep 2003 12:06:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ6bhm043754 for ; Tue, 16 Sep 2003 12:06:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJ6bkN092462 for ; Tue, 16 Sep 2003 12:06:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GJ6bok092461; Tue, 16 Sep 2003 12:06:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309161906.h8GJ6bok092461@xorpc.icir.org> Date: Tue, 16 Sep 2003 12:06:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/16 12:06:37 Modified files: xorp/libxipc/: xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc Log message: Add abstract XrlPFListener::response_pending and implement in derived classes. Check response_pending of all listeners in XrlRouter::pending. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 12:29:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJU1FO097649 for ; Tue, 16 Sep 2003 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJU0hm044063 for ; Tue, 16 Sep 2003 12:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJU0wG026567; Tue, 16 Sep 2003 12:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GJTawG026560 for ; Tue, 16 Sep 2003 12:29:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJTahm044056 for ; Tue, 16 Sep 2003 12:29:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GJTakN095526 for ; Tue, 16 Sep 2003 12:29:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GJTawK095525; Tue, 16 Sep 2003 12:29:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309161929.h8GJTawK095525@xorpc.icir.org> Date: Tue, 16 Sep 2003 12:29:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/16 12:29:35 Modified files: xorp/fea/: fticonfig_entry_set_rtsock.cc Log message: Fix the setup of the rtm_flags (RTF_HOST and RTF_GATEWAY). Those flags are not mutually exclusive, hence each of them is set independently. This should fix the following occasional kernel message spotted by Atanu some time ago: "arp_rtrequest: bad gateway value" that appeared if we tried to install an /32 IPv4 routing entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 14:00:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 14:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GL11FO024030 for ; Tue, 16 Sep 2003 14:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GL11hm044875 for ; Tue, 16 Sep 2003 14:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GL11wG028334; Tue, 16 Sep 2003 14:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GL0SwG028312 for ; Tue, 16 Sep 2003 14:00:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GL0Shm044870 for ; Tue, 16 Sep 2003 14:00:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GL0SkN028892 for ; Tue, 16 Sep 2003 14:00:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GL0SQ3028891; Tue, 16 Sep 2003 14:00:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309162100.h8GL0SQ3028891@xorpc.icir.org> Date: Tue, 16 Sep 2003 14:00:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in bgp.cc dummy_main.cc main.cc next_hop_resolver.cc peer.cc peer_handler.cc plumbing.cc plumbing_test.cc rib_ipc_handler.cc route_table_filter.cc route_table_ribin.cc ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc ...xrl_target.cc ...xrl_target.hh xorp/bgp/ main.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/09/16 14:00:28 Modified files: xorp/bgp/: Makefile.am Makefile.in bgp.cc dummy_main.cc main.cc next_hop_resolver.cc peer.cc peer_handler.cc plumbing.cc plumbing_test.cc rib_ipc_handler.cc route_table_filter.cc route_table_ribin.cc test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_next_hop_resolver.cc test_nhlookup.cc test_ribin.cc test_ribout.cc xrl_target.cc xrl_target.hh Removed files: xorp/bgp/: main.hh Log message: Swap main.cc for bgp.cc. Rename main.hh to bgp.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 14:53:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 14:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLs2FO048898 for ; Tue, 16 Sep 2003 14:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLs1hm045391 for ; Tue, 16 Sep 2003 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLs1wG029393; Tue, 16 Sep 2003 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLrwwG029387 for ; Tue, 16 Sep 2003 14:53:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLrvhm045389 for ; Tue, 16 Sep 2003 14:53:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLrvkN033592 for ; Tue, 16 Sep 2003 14:53:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GLrvPh033591; Tue, 16 Sep 2003 14:53:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309162153.h8GLrvPh033591@xorpc.icir.org> Date: Tue, 16 Sep 2003 14:53:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_dispatcher.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/16 14:53:57 Modified files: xorp/libxipc/: xrl_dispatcher.cc Log message: Enable Xrl dispatch tracing through XRLDISPATCHTRACE environment variable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 14:54:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLt1FO049300 for ; Tue, 16 Sep 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLt1hm045407 for ; Tue, 16 Sep 2003 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLt1wG029422; Tue, 16 Sep 2003 14:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLs3wG029404 for ; Tue, 16 Sep 2003 14:54:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLs2hm045395 for ; Tue, 16 Sep 2003 14:54:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLs2kN033610 for ; Tue, 16 Sep 2003 14:54:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GLs2ev033609; Tue, 16 Sep 2003 14:54:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309162154.h8GLs2ev033609@xorpc.icir.org> Date: Tue, 16 Sep 2003 14:54:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/16 14:54:02 Modified files: xorp/bgp/harness/: command.cc peer.cc Log message: No longer use the XrlRouter pending method to test if a command has completed. We shouldn't really have been doing this anyway as we should have all state to determine if the previous command has completed. This method now always returns true as the request itself is considered a pending transaction. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 14:54:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 14:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLt2FO049317 for ; Tue, 16 Sep 2003 14:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLt2hm045411 for ; Tue, 16 Sep 2003 14:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLt2wG029433; Tue, 16 Sep 2003 14:55:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GLsfwG029409 for ; Tue, 16 Sep 2003 14:54:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLsfhm045402 for ; Tue, 16 Sep 2003 14:54:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GLsfkN033636 for ; Tue, 16 Sep 2003 14:54:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GLsfxZ033635; Tue, 16 Sep 2003 14:54:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309162154.h8GLsfxZ033635@xorpc.icir.org> Date: Tue, 16 Sep 2003 14:54:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/16 14:54:41 Modified files: xorp/libxipc/: call_xrl.cc Log message: Check all flags that can be set whilst waiting for an Xrl result. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 16:04:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 16:05:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GN54FO071951 for ; Tue, 16 Sep 2003 16:05:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GN54hm047360 for ; Tue, 16 Sep 2003 16:05:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GN52wG000714; Tue, 16 Sep 2003 16:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8GN4iwG000700 for ; Tue, 16 Sep 2003 16:04:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GN4ihm047355 for ; Tue, 16 Sep 2003 16:04:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8GN4ikN035560 for ; Tue, 16 Sep 2003 16:04:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8GN4iej035559; Tue, 16 Sep 2003 16:04:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309162304.h8GN4iej035559@xorpc.icir.org> Date: Tue, 16 Sep 2003 16:04:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/16 16:04:44 Modified files: xorp/libxipc/: xrl_pf_stcp.cc Log message: Fix over ambitious assertion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 20:27:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 20:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3S1FO043386 for ; Tue, 16 Sep 2003 20:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3S1hm053967 for ; Tue, 16 Sep 2003 20:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8H3S1wG004895; Tue, 16 Sep 2003 20:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8H3RLwG004882 for ; Tue, 16 Sep 2003 20:27:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3RLhm053964 for ; Tue, 16 Sep 2003 20:27:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3RLkN041311 for ; Tue, 16 Sep 2003 20:27:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8H3RLwV041310; Tue, 16 Sep 2003 20:27:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309170327.h8H3RLwV041310@xorpc.icir.org> Date: Tue, 16 Sep 2003 20:27:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/16 20:27:21 Modified files: xorp/libxipc/: test_stcp.cc Log message: Make test more demanding. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Tue Sep 16 20:36:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Sep 2003 20:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3b1FO045599 for ; Tue, 16 Sep 2003 20:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3b1hm054052 for ; Tue, 16 Sep 2003 20:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8H3b1wG005047; Tue, 16 Sep 2003 20:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8H3aqwG005040 for ; Tue, 16 Sep 2003 20:36:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3aqhm054048 for ; Tue, 16 Sep 2003 20:36:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.8p1/8.12.3) with ESMTP id h8H3aqkN041416 for ; Tue, 16 Sep 2003 20:36:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.8p1/8.12.3/Submit) id h8H3aqgn041415; Tue, 16 Sep 2003 20:36:52 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309170336.h8H3aqgn041415@xorpc.icir.org> Date: Tue, 16 Sep 2003 20:36:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ collect.sh xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/16 20:36:52 Modified files: other/bgp/: collect.sh xorp/bgp/harness/: peer.cc Log message: When dumping the state from a trie it is now necessary to specify either "ipv4" or "ipv6". Also removed a bunch of dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Wed Sep 17 15:33:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Sep 2003 15:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9/8.12.3) with ESMTP id h8HMY1E9015396 for ; Wed, 17 Sep 2003 15:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h8HMY1qZ065074 for ; Wed, 17 Sep 2003 15:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8HMY0wG023765; Wed, 17 Sep 2003 15:34:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8HMXDwG023732 for ; Wed, 17 Sep 2003 15:33:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9/8.12.3) with ESMTP id h8HMXDqZ065070 for ; Wed, 17 Sep 2003 15:33:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9/8.12.3) with ESMTP id h8HMXDdZ001086 for ; Wed, 17 Sep 2003 15:33:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9/8.12.3/Submit) id h8HMXDRG001085; Wed, 17 Sep 2003 15:33:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309172233.h8HMXDRG001085@xorpc.icir.org> Date: Wed, 17 Sep 2003 15:33:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/09/17 15:33:13 Modified files: xorp/libxorp/: timeval.hh Log message: o Add a str() method to return the seconds and microseconds. o Add a pretty_print() method to return a ctime(3) format string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Wed Sep 17 21:36:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Sep 2003 21:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I4b1fw009106 for ; Wed, 17 Sep 2003 21:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I4b1H5071854 for ; Wed, 17 Sep 2003 21:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8I4b1wG029058; Wed, 17 Sep 2003 21:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8I4avwG029051 for ; Wed, 17 Sep 2003 21:36:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I4avH5071852 for ; Wed, 17 Sep 2003 21:36:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I4avsd004524 for ; Wed, 17 Sep 2003 21:36:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8I4avoR004523; Wed, 17 Sep 2003 21:36:57 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309180436.h8I4avoR004523@xorpc.icir.org> Date: Wed, 17 Sep 2003 21:36:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/17 21:36:57 Modified files: xorp/bgp/harness/: peer.cc Log message: We can now generate IPv4 and IPv6 mrtd format route table dumps. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Wed Sep 17 22:04:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Sep 2003 22:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I551fw021273 for ; Wed, 17 Sep 2003 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I551H5072043 for ; Wed, 17 Sep 2003 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8I550wG029399; Wed, 17 Sep 2003 22:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8I54QwG029389 for ; Wed, 17 Sep 2003 22:04:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I54QH5072038 for ; Wed, 17 Sep 2003 22:04:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8I54Qsd004692 for ; Wed, 17 Sep 2003 22:04:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8I54QV4004691; Wed, 17 Sep 2003 22:04:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309180504.h8I54QV4004691@xorpc.icir.org> Date: Wed, 17 Sep 2003 22:04:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/17 22:04:26 Modified files: xorp/bgp/harness/: peer.cc Log message: There are two times with each entry in a route table dump. One seems to be the time that the dump was taken and the other is time the update was seen. The meanings were reversed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Thu Sep 18 10:56:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 10:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IHv1fw076229 for ; Thu, 18 Sep 2003 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IHv1H5079962 for ; Thu, 18 Sep 2003 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IHv1wG012414; Thu, 18 Sep 2003 10:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IHuDwG012387 for ; Thu, 18 Sep 2003 10:56:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IHuDH5079949 for ; Thu, 18 Sep 2003 10:56:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IHuDsd062159 for ; Thu, 18 Sep 2003 10:56:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8IHuDX1062158; Thu, 18 Sep 2003 10:56:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309181756.h8IHuDX1062158@xorpc.icir.org> Date: Thu, 18 Sep 2003 10:56:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/18 10:56:13 Modified files: xorp/bgp/: TODO Log message: Remove two entries: 1) Rationalise main.cc and bgp.cc, with respect to where main is. - Fixed by Orion 2) An incoming update packet carrying both IPv4 and IPv6 NLRI in the current code will always generate a separate IPv4 and IPv6 packet. - This is not really a problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:50 2005 Subject: No subject Thu Sep 18 12:06:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 12:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ71fw095187 for ; Thu, 18 Sep 2003 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ71H5082049 for ; Thu, 18 Sep 2003 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IJ71wG013978; Thu, 18 Sep 2003 12:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IJ6kwG013970 for ; Thu, 18 Sep 2003 12:06:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ6jH5082047 for ; Thu, 18 Sep 2003 12:06:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ6jsd064040 for ; Thu, 18 Sep 2003 12:06:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8IJ6j3O064039; Thu, 18 Sep 2003 12:06:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309181906.h8IJ6j3O064039@xorpc.icir.org> Date: Thu, 18 Sep 2003 12:06:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl.hh xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/18 12:06:45 Modified files: xorp/libxipc/: xrl.hh xrl.cc Log message: Spring cleaning. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 12:08:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 12:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ91fw095678 for ; Thu, 18 Sep 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ91H5082063 for ; Thu, 18 Sep 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IJ91wG014020; Thu, 18 Sep 2003 12:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IJ81wG014009 for ; Thu, 18 Sep 2003 12:08:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ80H5082059 for ; Thu, 18 Sep 2003 12:08:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IJ80sd064067 for ; Thu, 18 Sep 2003 12:08:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8IJ80hR064066; Thu, 18 Sep 2003 12:08:00 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309181908.h8IJ80hR064066@xorpc.icir.org> Date: Thu, 18 Sep 2003 12:08:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh xrl_pf_factory.cc xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/18 12:08:00 Modified files: xorp/libxipc/: xrl_pf.hh xrl_pf_factory.cc xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc Log message: Cache senders in XrlRouter rather than sender factory singleton. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 14:48:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 14:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILn1fw046623 for ; Thu, 18 Sep 2003 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILn1H5087473 for ; Thu, 18 Sep 2003 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ILn1wG017120; Thu, 18 Sep 2003 14:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ILmwwG017114 for ; Thu, 18 Sep 2003 14:48:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILmwH5087471 for ; Thu, 18 Sep 2003 14:48:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILmwsd069192 for ; Thu, 18 Sep 2003 14:48:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8ILmvFX069191; Thu, 18 Sep 2003 14:48:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309182148.h8ILmvFX069191@xorpc.icir.org> Date: Thu, 18 Sep 2003 14:48:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/18 14:48:57 Modified files: xorp/libxipc/: call_xrl.cc Log message: Wait before retrying to send an Xrl when resolution fails. Simplify call_xrl() method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 14:50:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 14:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILp1fw047153 for ; Thu, 18 Sep 2003 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILp0H5087511 for ; Thu, 18 Sep 2003 14:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ILp0wG017168; Thu, 18 Sep 2003 14:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ILoZwG017158 for ; Thu, 18 Sep 2003 14:50:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILoZH5087506 for ; Thu, 18 Sep 2003 14:50:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ILoZsd069236 for ; Thu, 18 Sep 2003 14:50:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8ILoZ4h069235; Thu, 18 Sep 2003 14:50:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309182150.h8ILoZ4h069235@xorpc.icir.org> Date: Thu, 18 Sep 2003 14:50:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: hodson@xorpc.icir.org. 03/09/18 14:50:35 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Use default wait interval when calling call_xrl. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 15:15:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 15:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IMG1fw058405 for ; Thu, 18 Sep 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IMG1H5087712 for ; Thu, 18 Sep 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IMG1wG017664; Thu, 18 Sep 2003 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8IMFVwG017648 for ; Thu, 18 Sep 2003 15:15:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IMFVH5087706 for ; Thu, 18 Sep 2003 15:15:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8IMFVsd069445 for ; Thu, 18 Sep 2003 15:15:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8IMFVBo069444; Thu, 18 Sep 2003 15:15:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309182215.h8IMFVBo069444@xorpc.icir.org> Date: Thu, 18 Sep 2003 15:15:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/09/18 15:15:31 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: The test harness now has all the functionality it was designed to have apart from the ability to corrupt packets. For IPv4 and IPv6. Updated the documentation to reflect this. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 16:26:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 16:27:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INR2fw075349 for ; Thu, 18 Sep 2003 16:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INR2H5088339 for ; Thu, 18 Sep 2003 16:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8INR1wG019058; Thu, 18 Sep 2003 16:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8INQWwG019046 for ; Thu, 18 Sep 2003 16:26:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INQWH5088337 for ; Thu, 18 Sep 2003 16:26:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INQVsd069881 for ; Thu, 18 Sep 2003 16:26:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8INQVFF069880; Thu, 18 Sep 2003 16:26:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309182326.h8INQVFF069880@xorpc.icir.org> Date: Thu, 18 Sep 2003 16:26:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/18 16:26:31 Modified files: xorp/bgp/harness/: peer.cc Log message: Reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 16:56:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 16:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INv1fw083680 for ; Thu, 18 Sep 2003 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INv0H5088565 for ; Thu, 18 Sep 2003 16:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8INv0wG019692; Thu, 18 Sep 2003 16:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8INu2wG019667 for ; Thu, 18 Sep 2003 16:56:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INu2H5088563 for ; Thu, 18 Sep 2003 16:56:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8INu2sd076418 for ; Thu, 18 Sep 2003 16:56:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8INu24W076417; Thu, 18 Sep 2003 16:56:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309182356.h8INu24W076417@xorpc.icir.org> Date: Thu, 18 Sep 2003 16:56:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/09/18 16:56:02 Modified files: xorp/rib/: xrl_shell_funcs.sh Log message: Add all the missing IPv6 functions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 20:07:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 20:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J391fw036313 for ; Thu, 18 Sep 2003 20:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J391H5089869 for ; Thu, 18 Sep 2003 20:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J390wG022670; Thu, 18 Sep 2003 20:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J380wG022656 for ; Thu, 18 Sep 2003 20:08:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J380H5089859 for ; Thu, 18 Sep 2003 20:08:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J37xsd077524 for ; Thu, 18 Sep 2003 20:07:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8J37xjL077523; Thu, 18 Sep 2003 20:07:59 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309190307.h8J37xjL077523@xorpc.icir.org> Date: Thu, 18 Sep 2003 20:07:59 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/18 20:07:59 Modified files: xorp/bgp/: parameter.cc Log message: Small formatting nit when printing BGP Multiple Protocol Capability AFI = 2 SAFI = 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 20:09:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J3A1fw036563 for ; Thu, 18 Sep 2003 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J3A1H5089881 for ; Thu, 18 Sep 2003 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J3A1wG022696; Thu, 18 Sep 2003 20:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J397wG022681 for ; Thu, 18 Sep 2003 20:09:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J397H5089873 for ; Thu, 18 Sep 2003 20:09:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J397sd077567 for ; Thu, 18 Sep 2003 20:09:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8J397Kk077566; Thu, 18 Sep 2003 20:09:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309190309.h8J397Kk077566@xorpc.icir.org> Date: Thu, 18 Sep 2003 20:09:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/18 20:09:07 Modified files: xorp/bgp/: path_attribute.cc Log message: We were printing nlri not withdrawn for withdrawn routes. The joys of cut and paste programming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 21:45:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 21:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4k1fw069409 for ; Thu, 18 Sep 2003 21:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4k0H5090517 for ; Thu, 18 Sep 2003 21:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J4k0wG023782; Thu, 18 Sep 2003 21:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J4jcwG023771 for ; Thu, 18 Sep 2003 21:45:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4jbH5090513 for ; Thu, 18 Sep 2003 21:45:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4jbsd088897 for ; Thu, 18 Sep 2003 21:45:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8J4jbu3088896; Thu, 18 Sep 2003 21:45:37 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309190445.h8J4jbu3088896@xorpc.icir.org> Date: Thu, 18 Sep 2003 21:45:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/18 21:45:37 Modified files: xorp/bgp/harness/: peer.cc Log message: Implement a clone method for AnyAttribute(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Thu Sep 18 21:50:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Sep 2003 21:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4p1fw071440 for ; Thu, 18 Sep 2003 21:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4p1H5090558 for ; Thu, 18 Sep 2003 21:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J4p1wG023843; Thu, 18 Sep 2003 21:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8J4oowG023835 for ; Thu, 18 Sep 2003 21:50:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4ooH5090556 for ; Thu, 18 Sep 2003 21:50:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8J4oosd088988 for ; Thu, 18 Sep 2003 21:50:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8J4oov4088987; Thu, 18 Sep 2003 21:50:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309190450.h8J4oov4088987@xorpc.icir.org> Date: Thu, 18 Sep 2003 21:50:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/18 21:50:50 Modified files: xorp/bgp/: update_packet.cc Log message: When adding a path attribute to an update packet don't decode and encode just call the clone method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 8:01:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 08:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JF21fw007601 for ; Fri, 19 Sep 2003 08:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JF21H5095359 for ; Fri, 19 Sep 2003 08:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JF21wG003073; Fri, 19 Sep 2003 08:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JF1UwG003065 for ; Fri, 19 Sep 2003 08:01:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JF1TH5095351 for ; Fri, 19 Sep 2003 08:01:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JF1Tsd032168 for ; Fri, 19 Sep 2003 08:01:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JF1TJC032167; Fri, 19 Sep 2003 08:01:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309191501.h8JF1TJC032167@xorpc.icir.org> Date: Fri, 19 Sep 2003 8:01:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/19 08:01:29 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Fix compilation on gcc-2.95.4 20020320 [FreeBSD]. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 11:41:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 11:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JIg1fw058804 for ; Fri, 19 Sep 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JIg1H5000410 for ; Fri, 19 Sep 2003 11:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JIg1wG006867; Fri, 19 Sep 2003 11:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JIfJwG006837 for ; Fri, 19 Sep 2003 11:41:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JIfJH5000402 for ; Fri, 19 Sep 2003 11:41:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JIfJsd047734 for ; Fri, 19 Sep 2003 11:41:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JIfJSt047733; Fri, 19 Sep 2003 11:41:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309191841.h8JIfJSt047733@xorpc.icir.org> Date: Fri, 19 Sep 2003 11:41:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_cmd_queue.hh ifmgr_cmds.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/09/19 11:41:19 Modified files: xorp/libfeaclient/: ifmgr_cmd_queue.hh ifmgr_cmds.hh Log message: Additional kdoc descriptions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 13:54:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 13:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JKt1fw079940 for ; Fri, 19 Sep 2003 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JKt1H5001661 for ; Fri, 19 Sep 2003 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JKt0wG009548; Fri, 19 Sep 2003 13:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JKsbwG009540 for ; Fri, 19 Sep 2003 13:54:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JKsbH5001656 for ; Fri, 19 Sep 2003 13:54:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JKsasd095946 for ; Fri, 19 Sep 2003 13:54:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JKsaFc095904; Fri, 19 Sep 2003 13:54:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192054.h8JKsaFc095904@xorpc.icir.org> Date: Fri, 19 Sep 2003 13:54:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/19 13:54:36 Modified files: xorp/bgp/: packet.hh update_packet.cc Log message: Add some fields to the update_packet so that its easy to find the multiprotocol path attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 14:06:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 14:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JL71fw087903 for ; Fri, 19 Sep 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JL71H5001843 for ; Fri, 19 Sep 2003 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JL71wG009836; Fri, 19 Sep 2003 14:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JL6nwG009825 for ; Fri, 19 Sep 2003 14:06:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JL6nH5001841 for ; Fri, 19 Sep 2003 14:06:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JL6nsd005399 for ; Fri, 19 Sep 2003 14:06:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JL6nJQ005398; Fri, 19 Sep 2003 14:06:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192106.h8JL6nJQ005398@xorpc.icir.org> Date: Fri, 19 Sep 2003 14:06:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/19 14:06:49 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: 1) The clone methods for multiprotocol path attributes no longer go via the wire format. 2) When adding a component to a multiprotocol path attribute call encode to keep the wire format updated. This is a stupid requirement that will have to go. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 14:31:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 14:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLW1fw004470 for ; Fri, 19 Sep 2003 14:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLW1H5002088 for ; Fri, 19 Sep 2003 14:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JLW0wG010335; Fri, 19 Sep 2003 14:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JLViwG010323 for ; Fri, 19 Sep 2003 14:31:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLViH5002086 for ; Fri, 19 Sep 2003 14:31:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLVisd014581 for ; Fri, 19 Sep 2003 14:31:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JLVirt014580; Fri, 19 Sep 2003 14:31:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192131.h8JLVirt014580@xorpc.icir.org> Date: Fri, 19 Sep 2003 14:31:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/19 14:31:43 Modified files: xorp/bgp/: peer_handler.cc Log message: We can now generate update packets containing multiprotocol path attributes (IPv6). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 14:34:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 14:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLZ1fw005000 for ; Fri, 19 Sep 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLZ1H5002129 for ; Fri, 19 Sep 2003 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JLZ1wG010438; Fri, 19 Sep 2003 14:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JLY5wG010427 for ; Fri, 19 Sep 2003 14:34:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLY5H5002119 for ; Fri, 19 Sep 2003 14:34:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JLY5sd014642 for ; Fri, 19 Sep 2003 14:34:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JLY5Q5014641; Fri, 19 Sep 2003 14:34:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192134.h8JLY5Q5014641@xorpc.icir.org> Date: Fri, 19 Sep 2003 14:34:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/19 14:34:05 Modified files: xorp/bgp/harness/: test_routing1.sh Log message: Copy test1 and test2 to create test1_ipv6 and test2_ipv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 15:00:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 15:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM11fw012872 for ; Fri, 19 Sep 2003 15:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM11H5002418 for ; Fri, 19 Sep 2003 15:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM10wG010866; Fri, 19 Sep 2003 15:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM0pwG010860 for ; Fri, 19 Sep 2003 15:00:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM0pH5002415 for ; Fri, 19 Sep 2003 15:00:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM0osd014907 for ; Fri, 19 Sep 2003 15:00:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JM0oBU014906; Fri, 19 Sep 2003 15:00:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309192200.h8JM0oBU014906@xorpc.icir.org> Date: Fri, 19 Sep 2003 15:00:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/09/19 15:00:50 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Add functions that wrapper kdocification of each target, ie kdoc_libxorp, kdoc_libcomm, etc. Allow user to set KDOC_TGTS to kdocify a limited subset of targets. Doing this does not construct the correct top-level index, but is generally convenient when working on one directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 15:07:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 15:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM81fw014021 for ; Fri, 19 Sep 2003 15:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM80H5002507 for ; Fri, 19 Sep 2003 15:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM80wG010971; Fri, 19 Sep 2003 15:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM7HwG010962 for ; Fri, 19 Sep 2003 15:07:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM7HH5002505 for ; Fri, 19 Sep 2003 15:07:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM7Hsd015045 for ; Fri, 19 Sep 2003 15:07:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JM7HPH015044; Fri, 19 Sep 2003 15:07:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192207.h8JM7HPH015044@xorpc.icir.org> Date: Fri, 19 Sep 2003 15:07:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/09/19 15:07:17 Modified files: xorp/bgp/harness/: peer.cc xorp/docs/test_harness/: test_harness.tex Log message: Allow testing for idle connections. Very useful for testing that a seesion has actually been torn down after an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 15:08:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 15:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM91fw014220 for ; Fri, 19 Sep 2003 15:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM91H5002529 for ; Fri, 19 Sep 2003 15:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM91wG011008; Fri, 19 Sep 2003 15:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JM8QwG010995 for ; Fri, 19 Sep 2003 15:08:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM8PH5002516 for ; Fri, 19 Sep 2003 15:08:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JM8Psd015099 for ; Fri, 19 Sep 2003 15:08:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JM8PmT015098; Fri, 19 Sep 2003 15:08:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309192208.h8JM8PmT015098@xorpc.icir.org> Date: Fri, 19 Sep 2003 15:08:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/19 15:08:25 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: test26 Verify that we correctly detect a repeated path attribute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 16:28:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 16:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JNT1fw026166 for ; Fri, 19 Sep 2003 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JNT1H5003296 for ; Fri, 19 Sep 2003 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JNT1wG012561; Fri, 19 Sep 2003 16:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8JNSvwG012555 for ; Fri, 19 Sep 2003 16:28:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JNSuH5003294 for ; Fri, 19 Sep 2003 16:28:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8JNSusd015739 for ; Fri, 19 Sep 2003 16:28:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8JNSuHe015738; Fri, 19 Sep 2003 16:28:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309192328.h8JNSuHe015738@xorpc.icir.org> Date: Fri, 19 Sep 2003 16:28:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipvx.hh ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/09/19 16:28:56 Modified files: xorp/libxorp/: ipvx.hh ipvx.cc Log message: Const-ify a pointer argument in IPvX() constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:51 2005 Subject: No subject Fri Sep 19 17:14:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:15:47 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Fkfw032989 for ; Fri, 19 Sep 2003 17:15:46 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0FkH5003697 for ; Fri, 19 Sep 2003 17:15:46 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0F1wG013393; Fri, 19 Sep 2003 17:15:46 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0E4wG013372 for ; Fri, 19 Sep 2003 17:14:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0E3H5003667 for ; Fri, 19 Sep 2003 17:14:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0E3sd016173 for ; Fri, 19 Sep 2003 17:14:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0E3aT016172; Fri, 19 Sep 2003 17:14:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200014.h8K0E3aT016172@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:14:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:14:03 Modified files: xorp/fea/: TODO Log message: Add three TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:15:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0G1fw033056 for ; Fri, 19 Sep 2003 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0G1H5003703 for ; Fri, 19 Sep 2003 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0G1wG013467; Fri, 19 Sep 2003 17:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0FlwG013426 for ; Fri, 19 Sep 2003 17:15:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0FlH5003701 for ; Fri, 19 Sep 2003 17:15:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Flsd016274 for ; Fri, 19 Sep 2003 17:15:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0Fl8A016273; Fri, 19 Sep 2003 17:15:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309200015.h8K0Fl8A016273@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:15:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ Makefile.am Makefile.in ifmgr_atoms.hh ifmgr_cmd_queue.hh ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh libfeaclient_module.h test_remote_copy.cc xorp/libfeaclient/ ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh xorp/libfeaclient/ xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/09/19 17:15:47 Modified files: xorp/libfeaclient/: Makefile.am Makefile.in ifmgr_atoms.hh ifmgr_cmd_queue.hh ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh libfeaclient_module.h test_remote_copy.cc Added files: xorp/libfeaclient/: ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh Removed files: xorp/libfeaclient/: xrl_ifmgr_mirror.cc xrl_ifmgr_mirror.hh Log message: o Add overview text to libfeaclient_module.h. o Assorted kdocifications and name santization. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:15:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0G2fw033071 for ; Fri, 19 Sep 2003 17:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0G2H5003707 for ; Fri, 19 Sep 2003 17:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0G2wG013478; Fri, 19 Sep 2003 17:16:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0FRwG013398 for ; Fri, 19 Sep 2003 17:15:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0FRH5003695 for ; Fri, 19 Sep 2003 17:15:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0FRsd016239 for ; Fri, 19 Sep 2003 17:15:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0FROu016238; Fri, 19 Sep 2003 17:15:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200015.h8K0FROu016238@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:15:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ rawsock4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:15:26 Modified files: xorp/fea/: rawsock4.cc Log message: Prune extra '\n' at the end of XLOG_ERROR() messages (the pruning is for consistency reason even though the '\n won't be printed for XLOG_* messages). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:16:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0H1fw033226 for ; Fri, 19 Sep 2003 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0H1H5003730 for ; Fri, 19 Sep 2003 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0H1wG013511; Fri, 19 Sep 2003 17:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0GOwG013495 for ; Fri, 19 Sep 2003 17:16:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0GOH5003720 for ; Fri, 19 Sep 2003 17:16:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0GOsd016302 for ; Fri, 19 Sep 2003 17:16:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0GOB9016301; Fri, 19 Sep 2003 17:16:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200016.h8K0GOB9016301@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:16:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_rawsock4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:16:24 Modified files: xorp/fea/: xrl_rawsock4.cc Log message: Prune extra '\n' at the end of the message returned by the XrlCmdError::COMMAND_FAILED() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:16:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0H3fw033241 for ; Fri, 19 Sep 2003 17:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0H2H5003736 for ; Fri, 19 Sep 2003 17:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0H2wG013525; Fri, 19 Sep 2003 17:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0GUwG013500 for ; Fri, 19 Sep 2003 17:16:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0GTH5003725 for ; Fri, 19 Sep 2003 17:16:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0GTsd016322 for ; Fri, 19 Sep 2003 17:16:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0GTaA016321; Fri, 19 Sep 2003 17:16:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309200016.h8K0GTaA016321@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:16:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/09/19 17:16:29 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: For libfeaclient glob *h rather than *.hh to get overview comments out of libfeaclient_module.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:17:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0I1fw033400 for ; Fri, 19 Sep 2003 17:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0I0H5003753 for ; Fri, 19 Sep 2003 17:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0I0wG013562; Fri, 19 Sep 2003 17:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0HOwG013553 for ; Fri, 19 Sep 2003 17:17:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0HOH5003747 for ; Fri, 19 Sep 2003 17:17:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0HOsd016357 for ; Fri, 19 Sep 2003 17:17:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0HODw016356; Fri, 19 Sep 2003 17:17:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200017.h8K0HODw016356@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:17:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fti_transaction.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:17:24 Modified files: xorp/fea/: fti_transaction.cc Log message: Prune extra '\n' at the end of XLOG_ERROR() messages (the pruning is for consistency reason even though the '\n won't be printed for XLOG_* messages). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:18:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0J1fw033559 for ; Fri, 19 Sep 2003 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0J1H5003768 for ; Fri, 19 Sep 2003 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0J1wG013588; Fri, 19 Sep 2003 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0IdwG013582 for ; Fri, 19 Sep 2003 17:18:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0IdH5003766 for ; Fri, 19 Sep 2003 17:18:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Idsd016398 for ; Fri, 19 Sep 2003 17:18:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0Idnu016397; Fri, 19 Sep 2003 17:18:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200018.h8K0Idnu016397@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:18:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifmanager_transaction.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:18:39 Modified files: xorp/fea/: ifmanager_transaction.hh Log message: Prune extra '\n' at the end of the string returned by SetInterfaceMAC::str() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:21:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0M1fw034023 for ; Fri, 19 Sep 2003 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0M1H5003828 for ; Fri, 19 Sep 2003 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0M1wG013655; Fri, 19 Sep 2003 17:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0LlwG013625 for ; Fri, 19 Sep 2003 17:21:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0LlH5003822 for ; Fri, 19 Sep 2003 17:21:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Llsd016490 for ; Fri, 19 Sep 2003 17:21:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0LlQl016489; Fri, 19 Sep 2003 17:21:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200021.h8K0LlQl016489@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:21:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:21:47 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: Nitlet: replace "ether_addr" with "struct ether_addr" to specify the system-defined structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:23:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0O1fw034336 for ; Fri, 19 Sep 2003 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0O1H5003847 for ; Fri, 19 Sep 2003 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0O1wG013692; Fri, 19 Sep 2003 17:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0NawG013682 for ; Fri, 19 Sep 2003 17:23:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0NaH5003843 for ; Fri, 19 Sep 2003 17:23:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Nasd016569 for ; Fri, 19 Sep 2003 17:23:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0NaxR016568; Fri, 19 Sep 2003 17:23:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200023.h8K0NaxR016568@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:23:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:23:36 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Nitlet: replace "ether_addr" with "struct ether_addr" to specify the system-defined structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:28:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0T1fw035083 for ; Fri, 19 Sep 2003 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0T1H5003888 for ; Fri, 19 Sep 2003 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0T1wG013775; Fri, 19 Sep 2003 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0SbwG013761 for ; Fri, 19 Sep 2003 17:28:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0SbH5003883 for ; Fri, 19 Sep 2003 17:28:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Sbsd016667 for ; Fri, 19 Sep 2003 17:28:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0SbxM016666; Fri, 19 Sep 2003 17:28:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200028.h8K0SbxM016666@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:28:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:28:37 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Nitlet: replace "ether_addr" with "struct ether_addr" to specify the system-defined structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:28:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0T2fw035098 for ; Fri, 19 Sep 2003 17:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0T2H5003892 for ; Fri, 19 Sep 2003 17:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0T1wG013786; Fri, 19 Sep 2003 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0SvwG013769 for ; Fri, 19 Sep 2003 17:28:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0SvH5003886 for ; Fri, 19 Sep 2003 17:28:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Svsd016703 for ; Fri, 19 Sep 2003 17:28:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0Svnn016702; Fri, 19 Sep 2003 17:28:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200028.h8K0Svnn016702@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:28:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:28:57 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: Nitlet: replace "ether_addr" with "struct ether_addr" to specify the system-defined structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:30:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0V1fw035421 for ; Fri, 19 Sep 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0V1H5003932 for ; Fri, 19 Sep 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0V0wG013834; Fri, 19 Sep 2003 17:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0U3wG013812 for ; Fri, 19 Sep 2003 17:30:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0U3H5003899 for ; Fri, 19 Sep 2003 17:30:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0U3sd016743 for ; Fri, 19 Sep 2003 17:30:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0U3qc016742; Fri, 19 Sep 2003 17:30:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200030.h8K0U3qc016742@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:30:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:30:03 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: Nitlets: - replace "ether_addr" with "struct ether_addr" to specify the system-defined structure. - Remove extra '\n' at the end of XLOG_FATAL() messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:31:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0W1fw035584 for ; Fri, 19 Sep 2003 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0W1H5003944 for ; Fri, 19 Sep 2003 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0W1wG013869; Fri, 19 Sep 2003 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0VUwG013854 for ; Fri, 19 Sep 2003 17:31:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0VUH5003942 for ; Fri, 19 Sep 2003 17:31:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0VTsd016818 for ; Fri, 19 Sep 2003 17:31:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0VTZQ016817; Fri, 19 Sep 2003 17:31:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200031.h8K0VTZQ016817@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:31:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:31:29 Modified files: xorp/fea/: netlink_socket.hh Log message: * Kdoc-ify some of the methods. * Remove redundant "private:" labels _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:32:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0X1fw035747 for ; Fri, 19 Sep 2003 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0X0H5003957 for ; Fri, 19 Sep 2003 17:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0X0wG013901; Fri, 19 Sep 2003 17:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0WBwG013885 for ; Fri, 19 Sep 2003 17:32:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0WBH5003950 for ; Fri, 19 Sep 2003 17:32:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0WBsd016856 for ; Fri, 19 Sep 2003 17:32:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0WBbM016855; Fri, 19 Sep 2003 17:32:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200032.h8K0WBbM016855@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:32:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:32:11 Modified files: xorp/fea/: routing_socket.hh Log message: Kdoc-ify some of the methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:34:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Z1fw036047 for ; Fri, 19 Sep 2003 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Z1H5003980 for ; Fri, 19 Sep 2003 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0Z1wG013977; Fri, 19 Sep 2003 17:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0YswG013970 for ; Fri, 19 Sep 2003 17:34:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0YsH5003972 for ; Fri, 19 Sep 2003 17:34:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Yssd016896 for ; Fri, 19 Sep 2003 17:34:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0YsDx016895; Fri, 19 Sep 2003 17:34:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200034.h8K0YsDx016895@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:34:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:34:54 Modified files: xorp/fea/: netlink_socket.cc Log message: * Replace calling shutdown() with stop() * Bugfix: on error, call XLOG_ERROR(..., strerror(errno)) before calling close(fd), otherwise close(fd) will reset errno. * Replace assert() with XLOG_ASSERT() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:35:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0a1fw036215 for ; Fri, 19 Sep 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0a0H5004010 for ; Fri, 19 Sep 2003 17:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0a0wG014005; Fri, 19 Sep 2003 17:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0ZkwG013999 for ; Fri, 19 Sep 2003 17:35:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0ZkH5004008 for ; Fri, 19 Sep 2003 17:35:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0Zksd016961 for ; Fri, 19 Sep 2003 17:35:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0Zk7G016960; Fri, 19 Sep 2003 17:35:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200035.h8K0Zk7G016960@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:35:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:35:46 Modified files: xorp/fea/: routing_socket.cc Log message: * Replace calling shutdown() with stop() * Replace assert() with XLOG_ASSERT() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:37:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0c1fw036536 for ; Fri, 19 Sep 2003 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0c1H5004027 for ; Fri, 19 Sep 2003 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0c1wG014047; Fri, 19 Sep 2003 17:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0bRwG014035 for ; Fri, 19 Sep 2003 17:37:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0bRH5004022 for ; Fri, 19 Sep 2003 17:37:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0bQsd017015 for ; Fri, 19 Sep 2003 17:37:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0bQns017014; Fri, 19 Sep 2003 17:37:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200037.h8K0bQns017014@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:37:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:37:26 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc Log message: If NetlinkSocket6::start() fails, then call NetlinkSocket4::stop() before returning an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:37:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0c2fw036551 for ; Fri, 19 Sep 2003 17:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0c2H5004031 for ; Fri, 19 Sep 2003 17:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0c2wG014058; Fri, 19 Sep 2003 17:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0bqwG014040 for ; Fri, 19 Sep 2003 17:37:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0bqH5004025 for ; Fri, 19 Sep 2003 17:37:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0bpsd017053 for ; Fri, 19 Sep 2003 17:37:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0bpxu017052; Fri, 19 Sep 2003 17:37:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200037.h8K0bpxu017052@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:37:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:37:51 Modified files: xorp/fea/: fticonfig_table_get_netlink.cc Log message: If NetlinkSocket6::start() fails, then call NetlinkSocket4::stop() before returning an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:41:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0g1fw037150 for ; Fri, 19 Sep 2003 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0g1H5004088 for ; Fri, 19 Sep 2003 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0g0wG014136; Fri, 19 Sep 2003 17:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0f3wG014122 for ; Fri, 19 Sep 2003 17:41:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0f3H5004081 for ; Fri, 19 Sep 2003 17:41:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0f3sd017184 for ; Fri, 19 Sep 2003 17:41:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0f3na017183; Fri, 19 Sep 2003 17:41:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200041.h8K0f3na017183@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:41:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket_utils.hh netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:41:03 Modified files: xorp/fea/: netlink_socket_utils.hh netlink_socket_utils.cc Log message: Add "size_t rta_array_n" as an argument to NlmUtils::get_rtattr() to specify the maximum entry number to store in the rta_array[] array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:52 2005 Subject: No subject Fri Sep 19 17:42:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0h1fw037313 for ; Fri, 19 Sep 2003 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0h1H5004101 for ; Fri, 19 Sep 2003 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0h1wG014193; Fri, 19 Sep 2003 17:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0g3wG014147 for ; Fri, 19 Sep 2003 17:42:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0g2H5004092 for ; Fri, 19 Sep 2003 17:42:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0g2sd017227 for ; Fri, 19 Sep 2003 17:42:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0g2i2017226; Fri, 19 Sep 2003 17:42:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200042.h8K0g2i2017226@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:42:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:42:02 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc Log message: Cleanup of FtiConfigEntryGet::parse_buffer_nlm() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 17:42:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0h2fw037328 for ; Fri, 19 Sep 2003 17:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0h2H5004105 for ; Fri, 19 Sep 2003 17:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0h2wG014204; Fri, 19 Sep 2003 17:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0gVwG014168 for ; Fri, 19 Sep 2003 17:42:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0gVH5004099 for ; Fri, 19 Sep 2003 17:42:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0gVsd017265 for ; Fri, 19 Sep 2003 17:42:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0gVXX017264; Fri, 19 Sep 2003 17:42:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200042.h8K0gVXX017264@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:42:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:42:31 Modified files: xorp/fea/: fticonfig_table_parse_nlm.cc Log message: Cleanup of FtiConfigTableGet::parse_buffer_nlm() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 17:51:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 17:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0q1fw038688 for ; Fri, 19 Sep 2003 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0q1H5004185 for ; Fri, 19 Sep 2003 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0q1wG014385; Fri, 19 Sep 2003 17:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K0piwG014373 for ; Fri, 19 Sep 2003 17:51:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0piH5004179 for ; Fri, 19 Sep 2003 17:51:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K0pisd017424 for ; Fri, 19 Sep 2003 17:51:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K0piVi017423; Fri, 19 Sep 2003 17:51:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200051.h8K0piVi017423@xorpc.icir.org> Date: Fri, 19 Sep 2003 17:51:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 17:51:44 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc Log message: Compilation fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:20:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6L1fw086643 for ; Fri, 19 Sep 2003 23:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6L1H5006322 for ; Fri, 19 Sep 2003 23:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6L1wG017972; Fri, 19 Sep 2003 23:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6K3wG017949 for ; Fri, 19 Sep 2003 23:20:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6K3H5006303 for ; Fri, 19 Sep 2003 23:20:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6K2sd019629 for ; Fri, 19 Sep 2003 23:20:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6K2vx019628; Fri, 19 Sep 2003 23:20:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200620.h8K6K2vx019628@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:20:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:20:02 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:21:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6M1fw086806 for ; Fri, 19 Sep 2003 23:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6M1H5006335 for ; Fri, 19 Sep 2003 23:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6M1wG018025; Fri, 19 Sep 2003 23:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6LkwG018010 for ; Fri, 19 Sep 2003 23:21:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6LkH5006333 for ; Fri, 19 Sep 2003 23:21:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Lksd019708 for ; Fri, 19 Sep 2003 23:21:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6LkSD019707; Fri, 19 Sep 2003 23:21:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200621.h8K6LkSD019707@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:21:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:21:46 Modified files: xorp/rib/: vifmanager.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:26:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6R1fw087545 for ; Fri, 19 Sep 2003 23:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6R1H5006373 for ; Fri, 19 Sep 2003 23:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6R1wG018113; Fri, 19 Sep 2003 23:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6Q0wG018098 for ; Fri, 19 Sep 2003 23:26:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Q0H5006366 for ; Fri, 19 Sep 2003 23:26:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Q0sd019813 for ; Fri, 19 Sep 2003 23:26:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6Q0BB019812; Fri, 19 Sep 2003 23:26:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200626.h8K6Q0BB019812@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:26:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:26:00 Modified files: xorp/fea/: routing_socket_utils.cc Log message: * Replace C-style casting with reinterpret_cast<...>() * Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:27:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6S1fw087708 for ; Fri, 19 Sep 2003 23:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6S1H5006381 for ; Fri, 19 Sep 2003 23:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6S1wG018137; Fri, 19 Sep 2003 23:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6RewG018126 for ; Fri, 19 Sep 2003 23:27:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6ReH5006379 for ; Fri, 19 Sep 2003 23:27:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Resd019873 for ; Fri, 19 Sep 2003 23:27:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6Re72019872; Fri, 19 Sep 2003 23:27:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200627.h8K6Re72019872@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:27:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:27:40 Modified files: xorp/fea/: netlink_socket.cc Log message: Replace C-style casting with reinterpret_cast<...>() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:29:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6U1fw088006 for ; Fri, 19 Sep 2003 23:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6U1H5006392 for ; Fri, 19 Sep 2003 23:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6U1wG018180; Fri, 19 Sep 2003 23:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6TfwG018168 for ; Fri, 19 Sep 2003 23:29:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6TfH5006387 for ; Fri, 19 Sep 2003 23:29:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Tfsd019934 for ; Fri, 19 Sep 2003 23:29:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6Tfjw019933; Fri, 19 Sep 2003 23:29:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200629.h8K6Tfjw019933@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:29:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:29:41 Modified files: xorp/fea/: ifconfig_parse_rtm.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:30:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6V1fw088190 for ; Fri, 19 Sep 2003 23:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6V1H5006423 for ; Fri, 19 Sep 2003 23:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6V1wG018201; Fri, 19 Sep 2003 23:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6UuwG018195 for ; Fri, 19 Sep 2003 23:30:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6UuH5006421 for ; Fri, 19 Sep 2003 23:30:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6Uusd020014 for ; Fri, 19 Sep 2003 23:30:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6Uuqh020013; Fri, 19 Sep 2003 23:30:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200630.h8K6Uuqh020013@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:30:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:30:56 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:36:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6b1fw089075 for ; Fri, 19 Sep 2003 23:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6b1H5006487 for ; Fri, 19 Sep 2003 23:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6b1wG018356; Fri, 19 Sep 2003 23:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6aTwG018340 for ; Fri, 19 Sep 2003 23:36:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6aTH5006484 for ; Fri, 19 Sep 2003 23:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6aTsd020097 for ; Fri, 19 Sep 2003 23:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6aT1g020096; Fri, 19 Sep 2003 23:36:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200636.h8K6aT1g020096@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:36:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:36:29 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: * Replace C-style casting with reinterpret_cast<...>() * Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:41:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6g1fw089814 for ; Fri, 19 Sep 2003 23:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6g0H5006526 for ; Fri, 19 Sep 2003 23:42:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6g0wG018605; Fri, 19 Sep 2003 23:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6f2wG018590 for ; Fri, 19 Sep 2003 23:41:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6f1H5006520 for ; Fri, 19 Sep 2003 23:41:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6f1sd020186 for ; Fri, 19 Sep 2003 23:41:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6f1lG020185; Fri, 19 Sep 2003 23:41:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200641.h8K6f1lG020185@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:41:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:41:01 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc Log message: * Replace C-style casting with reinterpret_cast<...>() * Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:48:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6n1fw090841 for ; Fri, 19 Sep 2003 23:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6n1H5006566 for ; Fri, 19 Sep 2003 23:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6n1wG018759; Fri, 19 Sep 2003 23:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6m7wG018737 for ; Fri, 19 Sep 2003 23:48:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6m7H5006562 for ; Fri, 19 Sep 2003 23:48:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6m7sd020279 for ; Fri, 19 Sep 2003 23:48:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6m7Xp020278; Fri, 19 Sep 2003 23:48:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200648.h8K6m7Xp020278@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:48:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:48:07 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc Log message: * Replace C-style casting with reinterpret_cast<...>() * Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:50:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6p1fw091181 for ; Fri, 19 Sep 2003 23:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6p1H5006597 for ; Fri, 19 Sep 2003 23:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6p1wG018808; Fri, 19 Sep 2003 23:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6o5wG018785 for ; Fri, 19 Sep 2003 23:50:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6o5H5006578 for ; Fri, 19 Sep 2003 23:50:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6o5sd020398 for ; Fri, 19 Sep 2003 23:50:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6o5CL020397; Fri, 19 Sep 2003 23:50:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200650.h8K6o5CL020397@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:50:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:50:05 Modified files: xorp/fea/: fticonfig_entry_parse_rtm.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:51:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6q1fw091372 for ; Fri, 19 Sep 2003 23:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6q0H5006612 for ; Fri, 19 Sep 2003 23:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6q0wG018845; Fri, 19 Sep 2003 23:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6pqwG018838 for ; Fri, 19 Sep 2003 23:51:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6pqH5006610 for ; Fri, 19 Sep 2003 23:51:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6pqsd020485 for ; Fri, 19 Sep 2003 23:51:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6pq9F020484; Fri, 19 Sep 2003 23:51:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200651.h8K6pq9F020484@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:51:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:51:52 Modified files: xorp/fea/: fticonfig_table_get_netlink.cc Log message: * Replace C-style casting with reinterpret_cast<...>() * Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:52:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6r1fw091583 for ; Fri, 19 Sep 2003 23:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6r1H5006627 for ; Fri, 19 Sep 2003 23:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6r1wG018874; Fri, 19 Sep 2003 23:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6qvwG018863 for ; Fri, 19 Sep 2003 23:52:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6quH5006624 for ; Fri, 19 Sep 2003 23:52:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6qusd020553 for ; Fri, 19 Sep 2003 23:52:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6quwT020552; Fri, 19 Sep 2003 23:52:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200652.h8K6quwT020552@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:52:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:52:56 Modified files: xorp/fea/: fticonfig_table_parse_nlm.cc Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Fri Sep 19 23:53:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Sep 2003 23:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6s1fw091790 for ; Fri, 19 Sep 2003 23:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6s0H5006644 for ; Fri, 19 Sep 2003 23:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6s0wG018922; Fri, 19 Sep 2003 23:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K6rowG018913 for ; Fri, 19 Sep 2003 23:53:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6roH5006642 for ; Fri, 19 Sep 2003 23:53:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K6rosd020620 for ; Fri, 19 Sep 2003 23:53:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K6roTr020619; Fri, 19 Sep 2003 23:53:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200653.h8K6roTr020619@xorpc.icir.org> Date: Fri, 19 Sep 2003 23:53:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/19 23:53:50 Modified files: xorp/fea/: fticonfig_table_parse_rtm.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Sat Sep 20 0:00:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 00:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K711fw093177 for ; Sat, 20 Sep 2003 00:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K711H5006713 for ; Sat, 20 Sep 2003 00:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K710wG019031; Sat, 20 Sep 2003 00:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K70CwG019019 for ; Sat, 20 Sep 2003 00:00:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K70CH5006704 for ; Sat, 20 Sep 2003 00:00:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K70Bsd020794 for ; Sat, 20 Sep 2003 00:00:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K70BVo020793; Sat, 20 Sep 2003 00:00:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200700.h8K70BVo020793@xorpc.icir.org> Date: Sat, 20 Sep 2003 0:00:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/20 00:00:11 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc Log message: Fix a compilation error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Sat Sep 20 0:00:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 00:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K712fw093200 for ; Sat, 20 Sep 2003 00:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K711H5006717 for ; Sat, 20 Sep 2003 00:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K711wG019042; Sat, 20 Sep 2003 00:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K70vwG019025 for ; Sat, 20 Sep 2003 00:00:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K70vH5006708 for ; Sat, 20 Sep 2003 00:00:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K70usd020852 for ; Sat, 20 Sep 2003 00:00:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K70uVL020851; Sat, 20 Sep 2003 00:00:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200700.h8K70uVL020851@xorpc.icir.org> Date: Sat, 20 Sep 2003 0:00:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/20 00:00:56 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc Log message: Fix a compilatione error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Sat Sep 20 0:01:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 00:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K721fw093419 for ; Sat, 20 Sep 2003 00:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K720H5006733 for ; Sat, 20 Sep 2003 00:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K720wG019078; Sat, 20 Sep 2003 00:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8K71swG019072 for ; Sat, 20 Sep 2003 00:01:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K71sH5006731 for ; Sat, 20 Sep 2003 00:01:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8K71ssd020913 for ; Sat, 20 Sep 2003 00:01:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8K71rKQ020912; Sat, 20 Sep 2003 00:01:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309200701.h8K71rKQ020912@xorpc.icir.org> Date: Sat, 20 Sep 2003 0:01:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/20 00:01:53 Modified files: xorp/fea/: routing_socket_utils.cc Log message: Fix a compilation error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Sat Sep 20 16:40:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 16:41:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8KNf1fw079556 for ; Sat, 20 Sep 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8KNf1H5018549 for ; Sat, 20 Sep 2003 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8KNf0wG001140; Sat, 20 Sep 2003 16:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8KNeAwG001126 for ; Sat, 20 Sep 2003 16:40:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8KNe9H5018543 for ; Sat, 20 Sep 2003 16:40:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8KNe9sd011701 for ; Sat, 20 Sep 2003 16:40:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8KNe9jW011700; Sat, 20 Sep 2003 16:40:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309202340.h8KNe9jW011700@xorpc.icir.org> Date: Sat, 20 Sep 2003 16:40:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/20 16:40:09 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: Add an assertion to verify that the prefix length returned by the rib in the IPv6 case is within bounds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:53 2005 Subject: No subject Sat Sep 20 17:14:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 17:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0F1fw086833 for ; Sat, 20 Sep 2003 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0F1H5018816 for ; Sat, 20 Sep 2003 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0F0wG001478; Sat, 20 Sep 2003 17:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0EIwG001469 for ; Sat, 20 Sep 2003 17:14:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0EIH5018808 for ; Sat, 20 Sep 2003 17:14:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0EIsd011941 for ; Sat, 20 Sep 2003 17:14:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8L0EIie011940; Sat, 20 Sep 2003 17:14:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309210014.h8L0EIie011940@xorpc.icir.org> Date: Sat, 20 Sep 2003 17:14:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/20 17:14:18 Modified files: xorp/bgp/: next_hop_resolver.cc Log message: Previous assertion not quite right a prefix length of zero was considered an error. >> Add an assertion to verify that the prefix length returned by the rib >> in the IPv6 case is within bounds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Sat Sep 20 17:18:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0J1fw087696 for ; Sat, 20 Sep 2003 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0J0H5018851 for ; Sat, 20 Sep 2003 17:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0J0wG001528; Sat, 20 Sep 2003 17:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0IHwG001514 for ; Sat, 20 Sep 2003 17:18:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0IHH5018849 for ; Sat, 20 Sep 2003 17:18:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0IHsd012010 for ; Sat, 20 Sep 2003 17:18:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8L0IH6U012009; Sat, 20 Sep 2003 17:18:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309210018.h8L0IH6U012009@xorpc.icir.org> Date: Sat, 20 Sep 2003 17:18:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/09/20 17:18:16 Modified files: xorp/rib/: xrl_target.cc Log message: Initialise the real prefix length in the IPv6 case. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Sat Sep 20 17:30:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 17:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0V1fw090396 for ; Sat, 20 Sep 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0V1H5018935 for ; Sat, 20 Sep 2003 17:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0V1wG001641; Sat, 20 Sep 2003 17:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0UHwG001632 for ; Sat, 20 Sep 2003 17:30:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0UHH5018931 for ; Sat, 20 Sep 2003 17:30:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0UGsd012119 for ; Sat, 20 Sep 2003 17:30:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8L0UGmS012118; Sat, 20 Sep 2003 17:30:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309210030.h8L0UGmS012118@xorpc.icir.org> Date: Sat, 20 Sep 2003 17:30:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/20 17:30:16 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Create the IPv6 ibgp and ebgp tables in the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Sat Sep 20 17:35:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Sep 2003 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0a1fw092400 for ; Sat, 20 Sep 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0a1H5018987 for ; Sat, 20 Sep 2003 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0a1wG001729; Sat, 20 Sep 2003 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8L0ZWwG001716 for ; Sat, 20 Sep 2003 17:35:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0ZWH5018979 for ; Sat, 20 Sep 2003 17:35:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8L0ZWsd012192 for ; Sat, 20 Sep 2003 17:35:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8L0ZW1W012191; Sat, 20 Sep 2003 17:35:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309210035.h8L0ZW1W012191@xorpc.icir.org> Date: Sat, 20 Sep 2003 17:35:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/20 17:35:32 Modified files: xorp/bgp/harness/: test_rib1.sh Log message: Copy test1 and make an IPv6 version test1_ipv6. Very trivial IPv6 interactions between BGP and the RIB seem to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Sun Sep 21 22:45:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 21 Sep 2003 22:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8M5k1fw052390 for ; Sun, 21 Sep 2003 22:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8M5k1H5032687 for ; Sun, 21 Sep 2003 22:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8M5k0wG021199; Sun, 21 Sep 2003 22:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8M5jwwG021193 for ; Sun, 21 Sep 2003 22:45:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8M5jvH5032685 for ; Sun, 21 Sep 2003 22:45:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8M5jvsd028971 for ; Sun, 21 Sep 2003 22:45:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8M5jvnw028970; Sun, 21 Sep 2003 22:45:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309220545.h8M5jvnw028970@xorpc.icir.org> Date: Sun, 21 Sep 2003 22:45:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_get.hh xorp/fea/ ifconfig_get_netlink.cc ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/21 22:45:57 Modified files: xorp/fea/: Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_get.hh Added files: xorp/fea/: ifconfig_get_netlink.cc ifconfig_parse_nlm.cc Log message: Added yet another method (Netlink on Linux) for reading the network interfaces from the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 8:44:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 08:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MFj1fw043219 for ; Mon, 22 Sep 2003 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MFj1H5038838 for ; Mon, 22 Sep 2003 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MFj1wG000430; Mon, 22 Sep 2003 08:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MFiLwG000413 for ; Mon, 22 Sep 2003 08:44:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MFiLH5038827 for ; Mon, 22 Sep 2003 08:44:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MFiLsd004962 for ; Mon, 22 Sep 2003 08:44:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8MFiLfZ004961; Mon, 22 Sep 2003 08:44:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309221544.h8MFiLfZ004961@xorpc.icir.org> Date: Mon, 22 Sep 2003 8:44:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc netlink_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/22 08:44:21 Modified files: xorp/fea/: netlink_socket.cc netlink_socket.hh Log message: Implement properly the reading of a large or multipart netlink message: - When reading from a netlink socket, first use repetitive recv(MSG_DONTWAIT | MSG_PEEK) to find the size of the message in the socket (in case the original size estimation is wrong). - When reading a netlink message from a socket, check the NLM_F_MULTI flag in the netlink message header. If this flag is set, then this is a multipart message that must be terminated by a NLMSG_DONE message. Hence, read all messages up to (and including) the NLMSG_DONE, and pass them together to the observer(s). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 9:56:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 09:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MGv0fw053862 for ; Mon, 22 Sep 2003 09:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MGv0H5039577 for ; Mon, 22 Sep 2003 09:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MGv0wG002081; Mon, 22 Sep 2003 09:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MGuPwG002069 for ; Mon, 22 Sep 2003 09:56:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MGuPH5039575 for ; Mon, 22 Sep 2003 09:56:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MGuOsd005569 for ; Mon, 22 Sep 2003 09:56:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8MGuOnm005568; Mon, 22 Sep 2003 09:56:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309221656.h8MGuOnm005568@xorpc.icir.org> Date: Mon, 22 Sep 2003 9:56:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/22 09:56:24 Modified files: xorp/fea/: netlink_socket.cc Log message: Refactor the netlink-message loop over the buffer with the received data to use the netlink macros like NLMSG_OK() and NLMSG_NEXT(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 10:40:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 10:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MHf1fw060442 for ; Mon, 22 Sep 2003 10:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MHf1H5040068 for ; Mon, 22 Sep 2003 10:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MHf1wG003191; Mon, 22 Sep 2003 10:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MHewwG003185 for ; Mon, 22 Sep 2003 10:40:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MHewH5040066 for ; Mon, 22 Sep 2003 10:40:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MHewsd005955 for ; Mon, 22 Sep 2003 10:40:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8MHewDO005954; Mon, 22 Sep 2003 10:40:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309221740.h8MHewDO005954@xorpc.icir.org> Date: Mon, 22 Sep 2003 10:40:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/22 10:40:57 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc Log message: * Netlink rtattr asignment nitlet * Replace a XLOG_ERROR() with XLOG_FATAL() if the buffer size is too small. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 12:22:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 12:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MJN1fw078465 for ; Mon, 22 Sep 2003 12:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MJN1H5041263 for ; Mon, 22 Sep 2003 12:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MJN1wG005415; Mon, 22 Sep 2003 12:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8MJMwwG005409 for ; Mon, 22 Sep 2003 12:22:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MJMwH5041261 for ; Mon, 22 Sep 2003 12:22:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8MJMwsd017981 for ; Mon, 22 Sep 2003 12:22:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8MJMwNH017980; Mon, 22 Sep 2003 12:22:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309221922.h8MJMwNH017980@xorpc.icir.org> Date: Mon, 22 Sep 2003 12:22:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/22 12:22:58 Modified files: xorp/bgp/harness/: peer.cc Log message: Bad initialisation. Hopefully tinderbox failures will stop now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 19:48:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 19:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N2n1fw052718 for ; Mon, 22 Sep 2003 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N2n1H5045577 for ; Mon, 22 Sep 2003 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8N2n1wG023987; Mon, 22 Sep 2003 19:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8N2mbwG023974 for ; Mon, 22 Sep 2003 19:48:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N2mbH5045575 for ; Mon, 22 Sep 2003 19:48:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N2mbsd063334 for ; Mon, 22 Sep 2003 19:48:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8N2mbXd063333; Mon, 22 Sep 2003 19:48:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309230248.h8N2mbXd063333@xorpc.icir.org> Date: Mon, 22 Sep 2003 19:48:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/22 19:48:37 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Mon Sep 22 20:35:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Sep 2003 20:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N3a1fw059659 for ; Mon, 22 Sep 2003 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N3a0H5046128 for ; Mon, 22 Sep 2003 20:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8N3a0wG024687; Mon, 22 Sep 2003 20:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8N3ZewG024679 for ; Mon, 22 Sep 2003 20:35:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N3ZeH5046126 for ; Mon, 22 Sep 2003 20:35:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8N3Zesd063720 for ; Mon, 22 Sep 2003 20:35:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8N3Zers063719; Mon, 22 Sep 2003 20:35:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309230335.h8N3Zers063719@xorpc.icir.org> Date: Mon, 22 Sep 2003 20:35:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_mrouter.hh mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/xrl/interfaces/ mfea.xif mfea_xif.cc mfea_xif.hh xorp/xrl/targets/ mfea.xrls mfea_base.cc mfea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/09/22 20:35:40 Modified files: xorp/fea/: mfea_mrouter.cc mfea_mrouter.hh mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/xrl/interfaces/: mfea.xif mfea_xif.cc mfea_xif.hh xorp/xrl/targets/: mfea.xrls mfea_base.cc mfea_base.hh Log message: Added new XRLs (have_multicast_routing[4,6]) to the MFEA and the appropriate back-end implementation to perform real-time check whether the underlying system supports IPv4 and IPv6 multicast routing respectively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 9:30:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 09:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8NGV1fw076576 for ; Tue, 23 Sep 2003 09:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8NGV1H5054701 for ; Tue, 23 Sep 2003 09:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8NGV1wG007693; Tue, 23 Sep 2003 09:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8NGU7wG007675 for ; Tue, 23 Sep 2003 09:30:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8NGU6H5054692 for ; Tue, 23 Sep 2003 09:30:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8NGU6sd023956 for ; Tue, 23 Sep 2003 09:30:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8NGU6KG023955; Tue, 23 Sep 2003 09:30:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309231630.h8NGU6KG023955@xorpc.icir.org> Date: Tue, 23 Sep 2003 9:30:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ bootstrap Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/09/23 09:30:06 Modified files: ./: bootstrap Log message: Allow script to be run from other locations, ie cd into script directory (the top of the source tree) and process commands from there. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 18:11:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 18:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1C1fw069450 for ; Tue, 23 Sep 2003 18:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1C1H5059834 for ; Tue, 23 Sep 2003 18:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O1C0wG018477; Tue, 23 Sep 2003 18:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O1BdwG018464 for ; Tue, 23 Sep 2003 18:11:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1BdH5059832 for ; Tue, 23 Sep 2003 18:11:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1Bdsd081504 for ; Tue, 23 Sep 2003 18:11:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8O1Bdcb081503; Tue, 23 Sep 2003 18:11:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309240111.h8O1Bdcb081503@xorpc.icir.org> Date: Tue, 23 Sep 2003 18:11:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifupdate.hh xrl_ifupdate.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/23 18:11:39 Modified files: xorp/fea/: xrl_ifupdate.hh xrl_ifupdate.cc Log message: Added new methods (has_reportee() and has_all_interfaces_reportee()) to check if a reportee target name is on the corresponding list of targets to be informed about interfaces status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 18:13:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 18:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1E1fw069894 for ; Tue, 23 Sep 2003 18:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1E1H5059854 for ; Tue, 23 Sep 2003 18:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O1E0wG018520; Tue, 23 Sep 2003 18:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O1DpwG018513 for ; Tue, 23 Sep 2003 18:13:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1DpH5059852 for ; Tue, 23 Sep 2003 18:13:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O1Dpsd081554 for ; Tue, 23 Sep 2003 18:13:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8O1DpsF081553; Tue, 23 Sep 2003 18:13:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309240113.h8O1DpsF081553@xorpc.icir.org> Date: Tue, 23 Sep 2003 18:13:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/23 18:13:51 Modified files: xorp/fea/: xrl_target.cc Log message: If an interface client tries to register again with the FEA, without unregistering first, then the FEA would allow it but will print XLOG_WARNING(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 19:14:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 19:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2F1fw088232 for ; Tue, 23 Sep 2003 19:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2F1H5060385 for ; Tue, 23 Sep 2003 19:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2F0wG019413; Tue, 23 Sep 2003 19:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2EwwG019407 for ; Tue, 23 Sep 2003 19:14:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2EwH5060380 for ; Tue, 23 Sep 2003 19:14:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2Ewsd082154 for ; Tue, 23 Sep 2003 19:14:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8O2EwHC082153; Tue, 23 Sep 2003 19:14:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309240214.h8O2EwHC082153@xorpc.icir.org> Date: Tue, 23 Sep 2003 19:14:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib_fea1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/23 19:14:58 Modified files: xorp/bgp/harness/: test_rib_fea1.sh Log message: Refactor some of the ipv4 tests in order to make them easier to clone for ipv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 19:15:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 19:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2G1fw088431 for ; Tue, 23 Sep 2003 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2G0H5060420 for ; Tue, 23 Sep 2003 19:16:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2G0wG019438; Tue, 23 Sep 2003 19:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2FnwG019431 for ; Tue, 23 Sep 2003 19:15:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2FnH5060418 for ; Tue, 23 Sep 2003 19:15:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2Fnsd082209 for ; Tue, 23 Sep 2003 19:15:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8O2FnmT082208; Tue, 23 Sep 2003 19:15:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309240215.h8O2FnmT082208@xorpc.icir.org> Date: Tue, 23 Sep 2003 19:15:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ process_watch.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/23 19:15:49 Modified files: xorp/bgp/: process_watch.cc Log message: Print an error message when BGP considers that the finder has died and is exiting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Tue Sep 23 19:16:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Sep 2003 19:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2H1fw091101 for ; Tue, 23 Sep 2003 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2H1H5060434 for ; Tue, 23 Sep 2003 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2H0wG019466; Tue, 23 Sep 2003 19:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8O2G7wG019449 for ; Tue, 23 Sep 2003 19:16:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2G7H5060424 for ; Tue, 23 Sep 2003 19:16:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8O2G7sd082241 for ; Tue, 23 Sep 2003 19:16:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8O2G7iP082240; Tue, 23 Sep 2003 19:16:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309240216.h8O2G7iP082240@xorpc.icir.org> Date: Tue, 23 Sep 2003 19:16:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/23 19:16:07 Modified files: xorp/bgp/: socket.cc socket.hh Log message: Remove dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Wed Sep 24 8:42:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 08:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OFh1fw025223 for ; Wed, 24 Sep 2003 08:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OFh1H5069652 for ; Wed, 24 Sep 2003 08:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OFh0wG001805; Wed, 24 Sep 2003 08:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OFgGwG001787 for ; Wed, 24 Sep 2003 08:42:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OFgFH5069649 for ; Wed, 24 Sep 2003 08:42:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OFgFsd045726 for ; Wed, 24 Sep 2003 08:42:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8OFgFsH045725; Wed, 24 Sep 2003 08:42:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309241542.h8OFgFsH045725@xorpc.icir.org> Date: Wed, 24 Sep 2003 8:42:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/24 08:42:15 Removed files: xorp/rtrmgr/: test.ll Log message: Remove unused file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Wed Sep 24 9:16:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 09:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGH1fw030286 for ; Wed, 24 Sep 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGH1H5069974 for ; Wed, 24 Sep 2003 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OGH0wG002493; Wed, 24 Sep 2003 09:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OGG8wG002463 for ; Wed, 24 Sep 2003 09:16:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGG8H5069968 for ; Wed, 24 Sep 2003 09:16:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGG8sd046101 for ; Wed, 24 Sep 2003 09:16:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8OGG8o3046100; Wed, 24 Sep 2003 09:16:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309241616.h8OGG8o3046100@xorpc.icir.org> Date: Wed, 24 Sep 2003 9:16:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in cli.cc conf_tree.cc conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc op_commands.cc slave_conf_tree.cc slave_conf_tree_node.cc ...template_tree.cc ...test_module_manager.cc ...xorpsh_main.cc xorp/rtrmgr/ util.cc util.hh xorp/rtrmgr/ split.cc split.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/24 09:16:08 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in cli.cc conf_tree.cc conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc op_commands.cc slave_conf_tree.cc slave_conf_tree_node.cc template_tree.cc test_module_manager.cc xorpsh_main.cc Added files: xorp/rtrmgr/: util.cc util.hh Removed files: xorp/rtrmgr/: split.cc split.hh Log message: Move split.{hh,cc} to util.{hh,cc}. Move duplicated find_exec_path_name from xorpsh_main.cc and main_rtrmgr.cc to util.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Wed Sep 24 9:26:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 09:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGR1fw031773 for ; Wed, 24 Sep 2003 09:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGR1H5070080 for ; Wed, 24 Sep 2003 09:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OGR1wG002699; Wed, 24 Sep 2003 09:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OGQXwG002683 for ; Wed, 24 Sep 2003 09:26:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGQXH5070076 for ; Wed, 24 Sep 2003 09:26:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OGQXsd046223 for ; Wed, 24 Sep 2003 09:26:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8OGQXKg046222; Wed, 24 Sep 2003 09:26:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309241626.h8OGQXKg046222@xorpc.icir.org> Date: Wed, 24 Sep 2003 9:26:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/24 09:26:33 Modified files: xorp/rtrmgr/: main_rtrmgr.cc xorpsh_main.cc Log message: Use string::empty() to determine whether string is empty rather than calling strlen(s.c_str()). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:54 2005 Subject: No subject Wed Sep 24 11:17:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 11:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OII1fw048136 for ; Wed, 24 Sep 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OII1H5071263 for ; Wed, 24 Sep 2003 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OII1wG005308; Wed, 24 Sep 2003 11:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8OIHnwG005299 for ; Wed, 24 Sep 2003 11:17:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OIHnH5071257 for ; Wed, 24 Sep 2003 11:17:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8OIHnsd047429 for ; Wed, 24 Sep 2003 11:17:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8OIHnoq047428; Wed, 24 Sep 2003 11:17:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309241817.h8OIHnoq047428@xorpc.icir.org> Date: Wed, 24 Sep 2003 11:17:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/09/24 11:17:49 Modified files: ./: config.h.in configure configure.in Log message: Add XORP_SRC_ROOT and XORP_BUILD_ROOT defines. This is part of making the rtrmgr/xorpsh more friendly to cross directory builds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 16:26:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 16:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ONR1fw093549 for ; Wed, 24 Sep 2003 16:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ONR1H5074406 for ; Wed, 24 Sep 2003 16:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ONR1wG011584; Wed, 24 Sep 2003 16:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ONQ4wG011564 for ; Wed, 24 Sep 2003 16:26:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ONQ4H5074402 for ; Wed, 24 Sep 2003 16:26:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ONQ4sd003853 for ; Wed, 24 Sep 2003 16:26:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8ONQ4Hj003852; Wed, 24 Sep 2003 16:26:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309242326.h8ONQ4Hj003852@xorpc.icir.org> Date: Wed, 24 Sep 2003 16:26:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 03/09/24 16:26:04 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Add an entry for the rtrmgr. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 17:54:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 17:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0t1fw007448 for ; Wed, 24 Sep 2003 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0t1H5075107 for ; Wed, 24 Sep 2003 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P0t1wG013014; Wed, 24 Sep 2003 17:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P0sBwG012997 for ; Wed, 24 Sep 2003 17:54:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0sBH5075102 for ; Wed, 24 Sep 2003 17:54:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0sBsd004482 for ; Wed, 24 Sep 2003 17:54:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P0sBri004481; Wed, 24 Sep 2003 17:54:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309250054.h8P0sBri004481@xorpc.icir.org> Date: Wed, 24 Sep 2003 17:54:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc util.cc util.hh xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/24 17:54:11 Modified files: xorp/rtrmgr/: main_rtrmgr.cc util.cc util.hh xorpsh_main.cc Log message: Place path finding code in one place (util.cc). Differentiate between build directory (location of binaries) and source directory (location of config files) when running out of build directory. This provides a glimmer of hope of being able to run the rtrmgr for users of cross directory builds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 17:58:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 17:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0x1fw008170 for ; Wed, 24 Sep 2003 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0x1H5075145 for ; Wed, 24 Sep 2003 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P0x1wG013092; Wed, 24 Sep 2003 17:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P0wvwG013085 for ; Wed, 24 Sep 2003 17:58:57 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0wvH5075143; Wed, 24 Sep 2003 17:58:57 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P0wvCu089263; Wed, 24 Sep 2003 17:58:57 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309250058.h8P0wvCu089263@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: hodson@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc util.cc util.hh xorpsh_main.cc In-Reply-To: Your message of "Wed, 24 Sep 2003 17:54:11." <200309250054.h8P0sBri004481@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 24 Sep 2003 17:58:57 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/rtrmgr/ | Changes by: hodson@xorpc.icir.org. 03/09/24 17:54:11 | | Modified files: | xorp/rtrmgr/: main_rtrmgr.cc util.cc util.hh xorpsh_main.cc | | Log message: | Place path finding code in one place (util.cc). | | Differentiate between build directory (location of binaries) and | source directory (location of config files) when running out of build | directory. This provides a glimmer of hope of being able to run the | rtrmgr for users of cross directory builds. | This commit also prints a gcc style usage message and prints the defaults when prompted an additional flag, rather than in the usage message. The former presentation lead to line wraps. - Orion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 18:27:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 18:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1S1fw013717 for ; Wed, 24 Sep 2003 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1S1H5075391 for ; Wed, 24 Sep 2003 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1S1wG013564; Wed, 24 Sep 2003 18:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1RAwG013546 for ; Wed, 24 Sep 2003 18:27:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1RAH5075383 for ; Wed, 24 Sep 2003 18:27:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1RAsd004850 for ; Wed, 24 Sep 2003 18:27:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P1RAVt004849; Wed, 24 Sep 2003 18:27:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250127.h8P1RAVt004849@xorpc.icir.org> Date: Wed, 24 Sep 2003 18:27:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 18:27:10 Modified files: xorp/bgp/: peer_data.hh Log message: Add a comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 18:27:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 18:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1S2fw013744 for ; Wed, 24 Sep 2003 18:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1S2H5075395 for ; Wed, 24 Sep 2003 18:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1S2wG013575; Wed, 24 Sep 2003 18:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1RewG013555 for ; Wed, 24 Sep 2003 18:27:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1ReH5075387 for ; Wed, 24 Sep 2003 18:27:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1Resd004882 for ; Wed, 24 Sep 2003 18:27:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P1Rd1L004881; Wed, 24 Sep 2003 18:27:39 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250127.h8P1Rd1L004881@xorpc.icir.org> Date: Wed, 24 Sep 2003 18:27:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ local_data.cc local_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 18:27:39 Modified files: xorp/bgp/: local_data.cc local_data.hh Log message: Remove a lot of dead code and kdocify. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 18:28:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 18:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1T1fw013919 for ; Wed, 24 Sep 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1T1H5075413 for ; Wed, 24 Sep 2003 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1T1wG013606; Wed, 24 Sep 2003 18:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1ShwG013598 for ; Wed, 24 Sep 2003 18:28:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1SgH5075411 for ; Wed, 24 Sep 2003 18:28:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1Sgsd004929 for ; Wed, 24 Sep 2003 18:28:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P1SgBn004928; Wed, 24 Sep 2003 18:28:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250128.h8P1SgBn004928@xorpc.icir.org> Date: Wed, 24 Sep 2003 18:28:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 18:28:42 Modified files: xorp/bgp/: xrl_shell_funcs.sh Log message: Remove dead code. Script to convert old style config files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 18:43:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 18:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1i1fw023900 for ; Wed, 24 Sep 2003 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1i1H5075520 for ; Wed, 24 Sep 2003 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1i1wG013886; Wed, 24 Sep 2003 18:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P1hrwG013878 for ; Wed, 24 Sep 2003 18:43:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1hrH5075518 for ; Wed, 24 Sep 2003 18:43:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P1hrsd005074 for ; Wed, 24 Sep 2003 18:43:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P1hrBS005073; Wed, 24 Sep 2003 18:43:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250143.h8P1hrBS005073@xorpc.icir.org> Date: Wed, 24 Sep 2003 18:43:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/24 18:43:53 Modified files: xorp/bgp/harness/: trie.hh Log message: Include "callback.hh". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:00:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P211fw027685 for ; Wed, 24 Sep 2003 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P211H5075650 for ; Wed, 24 Sep 2003 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P211wG014096; Wed, 24 Sep 2003 19:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P20DwG014075 for ; Wed, 24 Sep 2003 19:00:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P20CH5075645 for ; Wed, 24 Sep 2003 19:00:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P20Csd005252 for ; Wed, 24 Sep 2003 19:00:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P20CKc005251; Wed, 24 Sep 2003 19:00:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250200.h8P20CKc005251@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:00:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 03/09/24 19:00:12 Modified files: xorp/libxorp/: eventloop.cc Log message: If the run() method has not been entered for 2 seconds we print a warning. Only print a warning the first time a problem occurs. This change is to reduce the number of warning generated by snmpd, which doesn't use the xorp run() method in its main loop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:09:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2B1fw029263 for ; Wed, 24 Sep 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2B1H5075742 for ; Wed, 24 Sep 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2B0wG014231; Wed, 24 Sep 2003 19:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2A0wG014215 for ; Wed, 24 Sep 2003 19:10:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2A0H5075716 for ; Wed, 24 Sep 2003 19:10:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P29xsd005503 for ; Wed, 24 Sep 2003 19:09:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P29x5L005502; Wed, 24 Sep 2003 19:09:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250209.h8P29x5L005502@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:09:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:09:59 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Compute the (S,G) PimMre entry earlier, and use it as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:13:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2E1fw029742 for ; Wed, 24 Sep 2003 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2E1H5075760 for ; Wed, 24 Sep 2003 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2E1wG014281; Wed, 24 Sep 2003 19:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2DLwG014262 for ; Wed, 24 Sep 2003 19:13:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2DKH5075755 for ; Wed, 24 Sep 2003 19:13:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2DKsd005595 for ; Wed, 24 Sep 2003 19:13:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2DKMP005594; Wed, 24 Sep 2003 19:13:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250213.h8P2DKMP005594@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:13:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt.hh pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:13:20 Modified files: xorp/pim/: pim_mrt.hh pim_mrt_task.cc Log message: Added a new task method PimMrt::add_task_delete_pim_mfc() for deleting PimMfc entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:13:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2E2fw029773 for ; Wed, 24 Sep 2003 19:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2E2H5075764 for ; Wed, 24 Sep 2003 19:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2E2wG014292; Wed, 24 Sep 2003 19:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2DpwG014270 for ; Wed, 24 Sep 2003 19:13:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2DpH5075758 for ; Wed, 24 Sep 2003 19:13:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2Dosd005643 for ; Wed, 24 Sep 2003 19:13:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2Doad005642; Wed, 24 Sep 2003 19:13:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250213.h8P2Doad005642@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:13:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:13:50 Modified files: xorp/pim/: pim_mre_task.cc Log message: Remove obsoleted TODO comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:15:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2G1fw030364 for ; Wed, 24 Sep 2003 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2G1H5075803 for ; Wed, 24 Sep 2003 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2G0wG014321; Wed, 24 Sep 2003 19:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2FXwG014313 for ; Wed, 24 Sep 2003 19:15:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2FXH5075801 for ; Wed, 24 Sep 2003 19:15:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2FXsd005757 for ; Wed, 24 Sep 2003 19:15:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2FXU1005756; Wed, 24 Sep 2003 19:15:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250215.h8P2FXU1005756@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:15:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.hh pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:15:33 Modified files: xorp/pim/: pim_mre_track_state.hh pim_mre_track_state.cc Log message: Added two new input and output states, and the appropriate state-dependency machinery that goes with them: - INPUT_STATE_IN_REMOVE_PIM_MFC - OUTPUT_STATE_OUT_REMOVE_PIM_MFC_ENTRY_MFC _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:19:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2K1fw031182 for ; Wed, 24 Sep 2003 19:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2K0H5075823 for ; Wed, 24 Sep 2003 19:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2K0wG014399; Wed, 24 Sep 2003 19:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2JjwG014392 for ; Wed, 24 Sep 2003 19:19:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2JjH5075816 for ; Wed, 24 Sep 2003 19:19:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2Jisd005835 for ; Wed, 24 Sep 2003 19:19:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2JiaG005834; Wed, 24 Sep 2003 19:19:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250219.h8P2JiaG005834@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:19:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.hh pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:19:44 Modified files: xorp/pim/: pim_mfc.hh pim_mfc.cc Log message: Added new methods to PimMfc that deal with state removal, and use those methods to schedule a task to remove a PimMfc entry rather than immediately deleting an entry. The above fixes a bug in deleting the PimMfc entries that was introduced after implementing the SPT bandwidth-controlled switch. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:49:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2o1fw036361 for ; Wed, 24 Sep 2003 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2o1H5076045 for ; Wed, 24 Sep 2003 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2o1wG014825; Wed, 24 Sep 2003 19:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2nrwG014817 for ; Wed, 24 Sep 2003 19:49:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2nrH5076036 for ; Wed, 24 Sep 2003 19:49:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2nrsd017669 for ; Wed, 24 Sep 2003 19:49:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2nqLE017668; Wed, 24 Sep 2003 19:49:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250249.h8P2nqLE017668@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:49:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 03/09/24 19:49:52 Modified files: xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Update the auto-generated files with the state dependency. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:54:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2t1fw037134 for ; Wed, 24 Sep 2003 19:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2t0H5076098 for ; Wed, 24 Sep 2003 19:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2t0wG014896; Wed, 24 Sep 2003 19:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2siwG014886 for ; Wed, 24 Sep 2003 19:54:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2shH5076093 for ; Wed, 24 Sep 2003 19:54:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2shsd018258 for ; Wed, 24 Sep 2003 19:54:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2shVa018257; Wed, 24 Sep 2003 19:54:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250254.h8P2shVa018257@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:54:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 19:54:43 Modified files: xorp/bgp/: parameter.hh Log message: Make AFI and SAFI defines consts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:56:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2v0fw037683 for ; Wed, 24 Sep 2003 19:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2v0H5076126 for ; Wed, 24 Sep 2003 19:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2v0wG014936; Wed, 24 Sep 2003 19:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2uZwG014928 for ; Wed, 24 Sep 2003 19:56:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2uZH5076124 for ; Wed, 24 Sep 2003 19:56:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2uZsd018311 for ; Wed, 24 Sep 2003 19:56:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2uZdQ018310; Wed, 24 Sep 2003 19:56:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250256.h8P2uZdQ018310@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:56:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 19:56:35 Modified files: xorp/bgp/: parameter.cc Log message: In the clone method use dynamic casts not static casts. The compiler has the type information, lets use it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 19:57:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 19:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2w1fw037945 for ; Wed, 24 Sep 2003 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2w1H5076137 for ; Wed, 24 Sep 2003 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2w1wG014961; Wed, 24 Sep 2003 19:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P2vLwG014952 for ; Wed, 24 Sep 2003 19:57:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2vLH5076133 for ; Wed, 24 Sep 2003 19:57:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P2vLsd018341 for ; Wed, 24 Sep 2003 19:57:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P2vLcq018340; Wed, 24 Sep 2003 19:57:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250257.h8P2vLcq018340@xorpc.icir.org> Date: Wed, 24 Sep 2003 19:57:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/09/24 19:57:21 Modified files: xorp/bgp/harness/: peer.cc Log message: Use the AFI_IPV{4,6} consts in parameter.hh rather than using hardcoded constants. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 21:06:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 21:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P471fw049533 for ; Wed, 24 Sep 2003 21:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P470H5076747 for ; Wed, 24 Sep 2003 21:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P470wG015936; Wed, 24 Sep 2003 21:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P46RwG015926 for ; Wed, 24 Sep 2003 21:06:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P46QH5076743 for ; Wed, 24 Sep 2003 21:06:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P46Qsd019095 for ; Wed, 24 Sep 2003 21:06:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P46QXZ019094; Wed, 24 Sep 2003 21:06:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250406.h8P46QXZ019094@xorpc.icir.org> Date: Wed, 24 Sep 2003 21:06:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ open_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 21:06:26 Modified files: xorp/bgp/: open_packet.cc Log message: Change assert to XLOG_ASSERT and add a comment about why its safe to do this in the open packet parsing code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:55 2005 Subject: No subject Wed Sep 24 21:06:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 21:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P472fw049548 for ; Wed, 24 Sep 2003 21:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P471H5076751 for ; Wed, 24 Sep 2003 21:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P471wG015948; Wed, 24 Sep 2003 21:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P46wwG015930 for ; Wed, 24 Sep 2003 21:06:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P46vH5076745 for ; Wed, 24 Sep 2003 21:06:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P46vsd019127 for ; Wed, 24 Sep 2003 21:06:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P46vko019126; Wed, 24 Sep 2003 21:06:57 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250406.h8P46vko019126@xorpc.icir.org> Date: Wed, 24 Sep 2003 21:06:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/24 21:06:57 Modified files: xorp/bgp/: peer_data.hh Log message: Make BGPVERSION a const from a define. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Wed Sep 24 21:27:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Sep 2003 21:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P4S1fw053663 for ; Wed, 24 Sep 2003 21:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P4S1H5076921 for ; Wed, 24 Sep 2003 21:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P4S1wG016231; Wed, 24 Sep 2003 21:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P4RAwG016220 for ; Wed, 24 Sep 2003 21:27:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P4RAH5076919 for ; Wed, 24 Sep 2003 21:27:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P4R9sd019329 for ; Wed, 24 Sep 2003 21:27:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P4R991019328; Wed, 24 Sep 2003 21:27:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309250427.h8P4R991019328@xorpc.icir.org> Date: Wed, 24 Sep 2003 21:27:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ draft-ietf-idr-bgp4-20.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/09/24 21:27:09 Modified files: xorp/bgp/docs/: draft-ietf-idr-bgp4-20.txt Log message: Remove all the annoying carriage returns. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 2:29:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 02:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P9U2fw006773 for ; Thu, 25 Sep 2003 02:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P9U1H5079995 for ; Thu, 25 Sep 2003 02:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P9U1wG020672; Thu, 25 Sep 2003 02:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8P9TkwG020665 for ; Thu, 25 Sep 2003 02:29:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P9TkH5079987 for ; Thu, 25 Sep 2003 02:29:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8P9Tksd071705 for ; Thu, 25 Sep 2003 02:29:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8P9Tj5B071704; Thu, 25 Sep 2003 02:29:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309250929.h8P9Tj5B071704@xorpc.icir.org> Date: Thu, 25 Sep 2003 2:29:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ getline.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/09/25 02:29:45 Modified files: xorp/cli/libtecla/: getline.c Log message: Add #include because in POSIX world this is the header file that has to be included do get the definions of fd_set and friends. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 8:58:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 08:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PFx1fw068676 for ; Thu, 25 Sep 2003 08:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PFx1H5085009 for ; Thu, 25 Sep 2003 08:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PFx1wG027021; Thu, 25 Sep 2003 08:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PFwZwG027014 for ; Thu, 25 Sep 2003 08:58:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PFwYH5084996 for ; Thu, 25 Sep 2003 08:58:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PFwYsd081602 for ; Thu, 25 Sep 2003 08:58:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PFwY4g081601; Thu, 25 Sep 2003 08:58:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251558.h8PFwY4g081601@xorpc.icir.org> Date: Thu, 25 Sep 2003 8:58:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ bogon-be-gone.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/09/25 08:58:34 Modified files: xorp/utils/: bogon-be-gone.sh Log message: Change an erroneous 'echo' for 'exit'. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 9:26:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 09:27:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGR6fw074195 for ; Thu, 25 Sep 2003 09:27:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGR1H5085447; Thu, 25 Sep 2003 09:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PGR1wG027629; Thu, 25 Sep 2003 09:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PGQYwG027615 for ; Thu, 25 Sep 2003 09:26:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGQYH5085439 for ; Thu, 25 Sep 2003 09:26:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGQXsd081951 for ; Thu, 25 Sep 2003 09:26:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PGQX5m081950; Thu, 25 Sep 2003 09:26:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251626.h8PGQX5m081950@xorpc.icir.org> Date: Thu, 25 Sep 2003 9:26:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ bogon-be-gone.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/09/25 09:26:33 Modified files: xorp/utils/: bogon-be-gone.sh Log message: Run-time location independence. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 9:26:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 09:27:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGR6fw074210 for ; Thu, 25 Sep 2003 09:27:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGR2H5085449; Thu, 25 Sep 2003 09:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PGR2wG027643; Thu, 25 Sep 2003 09:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PGQtwG027619 for ; Thu, 25 Sep 2003 09:26:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGQtH5085441 for ; Thu, 25 Sep 2003 09:26:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PGQtsd081970 for ; Thu, 25 Sep 2003 09:26:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PGQtKQ081969; Thu, 25 Sep 2003 09:26:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251626.h8PGQtKQ081969@xorpc.icir.org> Date: Thu, 25 Sep 2003 9:26:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ bogon-be-gone.sed Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: hodson@xorpc.icir.org. 03/09/25 09:26:55 Modified files: xorp/utils/: bogon-be-gone.sed Log message: A lazy fix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 10:00:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 10:01:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PH15fw080193 for ; Thu, 25 Sep 2003 10:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PH11H5085877; Thu, 25 Sep 2003 10:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PH11wG028382; Thu, 25 Sep 2003 10:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PH0hwG028370 for ; Thu, 25 Sep 2003 10:00:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PH0hH5085870 for ; Thu, 25 Sep 2003 10:00:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PH0hsd082276 for ; Thu, 25 Sep 2003 10:00:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PH0haq082275; Thu, 25 Sep 2003 10:00:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251700.h8PH0haq082275@xorpc.icir.org> Date: Thu, 25 Sep 2003 10:00:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: hodson@xorpc.icir.org. 03/09/25 10:00:43 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc Log message: Wait for XrlRouter::ready() before trying to dispatch Xrls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 11:47:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 11:48:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PIm5fw096087 for ; Thu, 25 Sep 2003 11:48:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PIm1H5087078; Thu, 25 Sep 2003 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PIm1wG001878; Thu, 25 Sep 2003 11:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PIlbwG001859 for ; Thu, 25 Sep 2003 11:47:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PIlbH5087076 for ; Thu, 25 Sep 2003 11:47:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PIlbsd083294 for ; Thu, 25 Sep 2003 11:47:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PIlbjc083293; Thu, 25 Sep 2003 11:47:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251847.h8PIlbjc083293@xorpc.icir.org> Date: Thu, 25 Sep 2003 11:47:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: hodson@xorpc.icir.org. 03/09/25 11:47:37 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc Log message: Call XrlRouter::finalize() before attempting to use router. Check return values from each send xrl call. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Thu Sep 25 12:16:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Sep 2003 12:17:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PJH4fw000583 for ; Thu, 25 Sep 2003 12:17:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PJH1H5087447; Thu, 25 Sep 2003 12:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PJH0wG002625; Thu, 25 Sep 2003 12:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8PJGDwG002607 for ; Thu, 25 Sep 2003 12:16:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PJGDH5087437 for ; Thu, 25 Sep 2003 12:16:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8PJGCsd093349 for ; Thu, 25 Sep 2003 12:16:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8PJGCSj093348; Thu, 25 Sep 2003 12:16:12 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309251916.h8PJGCSj093348@xorpc.icir.org> Date: Thu, 25 Sep 2003 12:16:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/25 12:16:12 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: Switch root directory argument for XorpShell constructor to be binary directory so cross directory execution works. Place XorpShell instance within a try .. catch block to catch exceptions and to ensure destructor is called before xlog stop and exit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 8:21:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 08:22:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QFM4fw081723 for ; Fri, 26 Sep 2003 08:22:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QFM1H5099981; Fri, 26 Sep 2003 08:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QFM0wG024687; Fri, 26 Sep 2003 08:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QFLuwG024678 for ; Fri, 26 Sep 2003 08:21:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QFLuH5099979 for ; Fri, 26 Sep 2003 08:21:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QFLusd003640 for ; Fri, 26 Sep 2003 08:21:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QFLu0u003639; Fri, 26 Sep 2003 08:21:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261521.h8QFLu0u003639@xorpc.icir.org> Date: Fri, 26 Sep 2003 8:21:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/26 08:21:56 Modified files: ./: configure.in configure config.h.in Log message: Added a check whether struct ifreq (in net/if.h) contains field ifr_ifindex. This check is needed because in FreeBSD-5.x the field with the interface index in struct ifreq is called ifr_index, but in Linux the field is called ifr_ifindex. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 9:01:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 09:02:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG24fw088630 for ; Fri, 26 Sep 2003 09:02:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG20H5000484; Fri, 26 Sep 2003 09:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG20wG025421; Fri, 26 Sep 2003 09:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG1uwG025411 for ; Fri, 26 Sep 2003 09:01:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG1uH5000482 for ; Fri, 26 Sep 2003 09:01:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG1usd009314 for ; Fri, 26 Sep 2003 09:01:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QG1uEI009313; Fri, 26 Sep 2003 09:01:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261601.h8QG1uEI009313@xorpc.icir.org> Date: Fri, 26 Sep 2003 9:01:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/26 09:01:56 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Move #endif to the right place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 9:03:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 09:04:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG45fw089010 for ; Fri, 26 Sep 2003 09:04:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG41H5000507; Fri, 26 Sep 2003 09:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG41wG025467; Fri, 26 Sep 2003 09:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG35wG025451 for ; Fri, 26 Sep 2003 09:03:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG35H5000495 for ; Fri, 26 Sep 2003 09:03:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG35sd009341 for ; Fri, 26 Sep 2003 09:03:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QG35jr009340; Fri, 26 Sep 2003 09:03:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261603.h8QG35jr009340@xorpc.icir.org> Date: Fri, 26 Sep 2003 9:03:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/26 09:03:05 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Log message: Use #ifdef HAVE_IFR_IFINDEX as needed to get the interface index from struct ifreq. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 9:07:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 09:08:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG84fw089826 for ; Fri, 26 Sep 2003 09:08:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG81H5000569; Fri, 26 Sep 2003 09:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG81wG025568; Fri, 26 Sep 2003 09:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QG75wG025543 for ; Fri, 26 Sep 2003 09:07:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG75H5000564 for ; Fri, 26 Sep 2003 09:07:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QG75sd009412 for ; Fri, 26 Sep 2003 09:07:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QG75Cx009411; Fri, 26 Sep 2003 09:07:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261607.h8QG75Cx009411@xorpc.icir.org> Date: Fri, 26 Sep 2003 9:07:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/26 09:07:05 Modified files: ./: configure.in configure Log message: Check for the net-snmp container bug only if net-snmp is found. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 9:19:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 09:20:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QGK5fw092125 for ; Fri, 26 Sep 2003 09:20:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QGK1H5000695; Fri, 26 Sep 2003 09:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QGK1wG025816; Fri, 26 Sep 2003 09:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QGJxwG025804 for ; Fri, 26 Sep 2003 09:19:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QGJxH5000690 for ; Fri, 26 Sep 2003 09:19:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QGJxsd009577 for ; Fri, 26 Sep 2003 09:19:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QGJxNk009576; Fri, 26 Sep 2003 09:19:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261619.h8QGJxNk009576@xorpc.icir.org> Date: Fri, 26 Sep 2003 9:19:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/26 09:19:59 Modified files: xorp/config/: acipv6.m4 ./: configure Log message: Added a missing #include to the HAVE_IPV6_MULTICAST_ROUTING check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 10:11:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 10:12:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QHC5fw010254 for ; Fri, 26 Sep 2003 10:12:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QHC1H5001281; Fri, 26 Sep 2003 10:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QHC0wG026876; Fri, 26 Sep 2003 10:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QHBkwG026861 for ; Fri, 26 Sep 2003 10:11:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QHBjH5001277 for ; Fri, 26 Sep 2003 10:11:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QHBjsd010144 for ; Fri, 26 Sep 2003 10:11:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QHBj75010143; Fri, 26 Sep 2003 10:11:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261711.h8QHBj75010143@xorpc.icir.org> Date: Fri, 26 Sep 2003 10:11:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/09/26 10:11:45 Modified files: xorp/bgp/: peer.cc Log message: Cast the return value of time() to (long int) when printing its value in debug_msg(), because in FreeBSD 4.x the return value of time_t is (long int), but in FreeBSD 5.x the value of time_t is (int32). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 11:02:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 11:03:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QI35fw039295 for ; Fri, 26 Sep 2003 11:03:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QI31H5001776; Fri, 26 Sep 2003 11:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QI31wG028046; Fri, 26 Sep 2003 11:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QI29wG028015 for ; Fri, 26 Sep 2003 11:02:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QI29H5001768 for ; Fri, 26 Sep 2003 11:02:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QI29sd010690 for ; Fri, 26 Sep 2003 11:02:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QI29VC010689; Fri, 26 Sep 2003 11:02:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309261802.h8QI29VC010689@xorpc.icir.org> Date: Fri, 26 Sep 2003 11:02:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/09/26 11:02:08 Modified files: ./: configure configure.in Log message: Fixed: 1) The test for finding a running snmpd. 2) Bad syntax. Added: 1) Added the use of the "-p" flag so snmpd will now start on Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 12:25:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 12:26:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QJQ5fw062566 for ; Fri, 26 Sep 2003 12:26:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QJQ1H5002647; Fri, 26 Sep 2003 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QJQ1wG000004; Fri, 26 Sep 2003 12:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QJP1wG029959 for ; Fri, 26 Sep 2003 12:25:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QJP1H5002628 for ; Fri, 26 Sep 2003 12:25:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QJP1sd028457 for ; Fri, 26 Sep 2003 12:25:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QJP1TE028456; Fri, 26 Sep 2003 12:25:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309261925.h8QJP1TE028456@xorpc.icir.org> Date: Fri, 26 Sep 2003 12:25:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/26 12:25:00 Modified files: xorp/pim/: pim_mfc.cc Log message: Conditionally compute the string with the outgoing interface set. This string is used only by XLOG_TRACE(), hence we don't need the overhead when we the trace messages are disabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 14:34:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 14:35:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QLZ6fw002336 for ; Fri, 26 Sep 2003 14:35:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QLZ2H5003756; Fri, 26 Sep 2003 14:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QLZ1wG002715; Fri, 26 Sep 2003 14:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QLYawG002683 for ; Fri, 26 Sep 2003 14:34:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QLYZH5003746 for ; Fri, 26 Sep 2003 14:34:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QLYZsd072694 for ; Fri, 26 Sep 2003 14:34:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QLYZLN072693; Fri, 26 Sep 2003 14:34:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309262134.h8QLYZLN072693@xorpc.icir.org> Date: Fri, 26 Sep 2003 14:34:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ Makefile.am Makefile.in xrl_pf.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xorp/libxipc/ xrl_pf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/26 14:34:35 Modified files: xorp/libxipc/: Makefile.am Makefile.in xrl_pf.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc Added files: xorp/libxipc/: xrl_pf.cc Log message: o Move XrlPF methods into xrl_pf.cc. o Reduce includes. o Tidy up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 15:07:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 15:08:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QM84fw013286 for ; Fri, 26 Sep 2003 15:08:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QM80H5004053; Fri, 26 Sep 2003 15:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QM80wG003350; Fri, 26 Sep 2003 15:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QM76wG003317 for ; Fri, 26 Sep 2003 15:07:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QM76H5004040 for ; Fri, 26 Sep 2003 15:07:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QM76sd080239 for ; Fri, 26 Sep 2003 15:07:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QM76FT080238; Fri, 26 Sep 2003 15:07:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309262207.h8QM76FT080238@xorpc.icir.org> Date: Fri, 26 Sep 2003 15:07:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/26 15:07:06 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Fix the implementation of IfDelAddr4() so now the ioctl() takes struct ifreq as the third argument rather than struct ifaliasreq. Now deleting of IPv4 addresses by using the ioctl() method should work on Linux as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 16:56:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 16:57:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNv5fw038309 for ; Fri, 26 Sep 2003 16:57:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNv1H5005036; Fri, 26 Sep 2003 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNv1wG005523; Fri, 26 Sep 2003 16:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNuFwG005508 for ; Fri, 26 Sep 2003 16:56:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNuFH5005032 for ; Fri, 26 Sep 2003 16:56:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNuEsd081143 for ; Fri, 26 Sep 2003 16:56:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QNuEGB081142; Fri, 26 Sep 2003 16:56:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309262356.h8QNuEGB081142@xorpc.icir.org> Date: Fri, 26 Sep 2003 16:56:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.hh timer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/09/26 16:56:14 Modified files: xorp/libxorp/: selector.hh timer.hh Log message: Add unimplemented private copy constructor and assignment operator declarations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:56 2005 Subject: No subject Fri Sep 26 16:58:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 16:59:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNx6fw038703 for ; Fri, 26 Sep 2003 16:59:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNx1H5005053; Fri, 26 Sep 2003 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNx1wG005572; Fri, 26 Sep 2003 16:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNwiwG005557 for ; Fri, 26 Sep 2003 16:58:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNwiH5005049 for ; Fri, 26 Sep 2003 16:58:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNwisd081280 for ; Fri, 26 Sep 2003 16:58:44 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QNwik8081279; Fri, 26 Sep 2003 16:58:44 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309262358.h8QNwik8081279@xorpc.icir.org> Date: Fri, 26 Sep 2003 16:58:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/26 16:58:44 Modified files: xorp/libxipc/: xrl_pf.hh Log message: Add declaration for unimplmented copy constructor and assignment operator. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 16:58:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 16:59:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNx7fw038718 for ; Fri, 26 Sep 2003 16:59:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNx2H5005055; Fri, 26 Sep 2003 16:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNx2wG005584; Fri, 26 Sep 2003 16:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8QNwnwG005562 for ; Fri, 26 Sep 2003 16:58:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNwnH5005051 for ; Fri, 26 Sep 2003 16:58:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8QNwnsd081306 for ; Fri, 26 Sep 2003 16:58:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8QNwnof081305; Fri, 26 Sep 2003 16:58:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309262358.h8QNwnof081305@xorpc.icir.org> Date: Fri, 26 Sep 2003 16:58:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet.cc test_packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 16:58:49 Modified files: xorp/bgp/: test_packet.cc test_packet.hh Log message: Update this test program so the exit status of the program reflects how well the tests ran. In readiness for hooking adding to the set of regression tests that are always run. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 17:25:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 17:26:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R0Q5fw044253 for ; Fri, 26 Sep 2003 17:26:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R0Q1H5005299; Fri, 26 Sep 2003 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R0Q1wG006044; Fri, 26 Sep 2003 17:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R0PtwG006035 for ; Fri, 26 Sep 2003 17:25:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R0PtH5005297 for ; Fri, 26 Sep 2003 17:25:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R0Ptsd081573 for ; Fri, 26 Sep 2003 17:25:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R0Ptgc081572; Fri, 26 Sep 2003 17:25:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309270025.h8R0Ptgc081572@xorpc.icir.org> Date: Fri, 26 Sep 2003 17:25:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_client.hh finder_client.cc xrl_router.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/26 17:25:55 Modified files: xorp/libxipc/: finder_client.hh finder_client.cc xrl_router.cc Log message: Uncache Xrls when sender for them cannot be instantiated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 18:21:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 18:22:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R1M5fw069349 for ; Fri, 26 Sep 2003 18:22:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R1M1H5005741; Fri, 26 Sep 2003 18:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R1M1wG006955; Fri, 26 Sep 2003 18:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R1L9wG006929 for ; Fri, 26 Sep 2003 18:21:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R1L9H5005731 for ; Fri, 26 Sep 2003 18:21:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R1L9sd082087 for ; Fri, 26 Sep 2003 18:21:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R1L9Rq082086; Fri, 26 Sep 2003 18:21:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270121.h8R1L9Rq082086@xorpc.icir.org> Date: Fri, 26 Sep 2003 18:21:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_main.cc test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 18:21:09 Modified files: xorp/bgp/: test_main.cc test_next_hop_resolver.cc Log message: 1) The wrong test was being called. 2) Simplify the instantiation of the template functions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:17:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2I5fw086299 for ; Fri, 26 Sep 2003 19:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2I1H5006105; Fri, 26 Sep 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2I1wG007705; Fri, 26 Sep 2003 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2HawG007684 for ; Fri, 26 Sep 2003 19:17:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2HaH5006103 for ; Fri, 26 Sep 2003 19:17:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2HZsd088410 for ; Fri, 26 Sep 2003 19:17:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2HZuV088390; Fri, 26 Sep 2003 19:17:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270217.h8R2HZuV088390@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:17:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing_test.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:17:35 Modified files: xorp/bgp/: plumbing_test.cc Log message: Don't use the default constructor on BGPPeerData as we are about to do away with it. Run a xorp_finder so we don't get hung up in the BGPMain constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:20:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:21:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2L4fw086906 for ; Fri, 26 Sep 2003 19:21:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2L1H5006134; Fri, 26 Sep 2003 19:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2L1wG007782; Fri, 26 Sep 2003 19:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2KowG007773 for ; Fri, 26 Sep 2003 19:20:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2KoH5006132 for ; Fri, 26 Sep 2003 19:20:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2Kosd089797 for ; Fri, 26 Sep 2003 19:20:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2KoIY089796; Fri, 26 Sep 2003 19:20:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270220.h8R2KoIY089796@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:20:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_plumbing.cc test_plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:20:50 Added files: xorp/bgp/: test_plumbing.cc test_plumbing.hh Log message: Rename plumbing_test.{cc,hh} test_plumbing.{cc,hh} as per convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:27:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:28:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2S5fw099151 for ; Fri, 26 Sep 2003 19:28:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2S1H5006177; Fri, 26 Sep 2003 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2S1wG007886; Fri, 26 Sep 2003 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2RQwG007871 for ; Fri, 26 Sep 2003 19:27:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2RQH5006175 for ; Fri, 26 Sep 2003 19:27:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2RQsd091737 for ; Fri, 26 Sep 2003 19:27:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2RQAu091736; Fri, 26 Sep 2003 19:27:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270227.h8R2RQAu091736@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:27:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:27:26 Modified files: xorp/bgp/: Makefile.am Makefile.in Log message: Rename plumbing_test.{cc,hh} test_plumbing.{cc,hh} as per convention. Plus add test_plumbing and test_packet to the check target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:28:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:29:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2T5fw099376 for ; Fri, 26 Sep 2003 19:29:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2T1H5006188; Fri, 26 Sep 2003 19:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2T1wG007921; Fri, 26 Sep 2003 19:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2SKwG007901 for ; Fri, 26 Sep 2003 19:28:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2SKH5006181 for ; Fri, 26 Sep 2003 19:28:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2SKsd091972 for ; Fri, 26 Sep 2003 19:28:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2SKfM091971; Fri, 26 Sep 2003 19:28:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270228.h8R2SKfM091971@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:28:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:28:20 Modified files: xorp/bgp/: .cvsignore Log message: Rename plumbing_test.{cc,hh} test_plumbing.{cc,hh} as per convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:29:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:30:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2U4fw099596 for ; Fri, 26 Sep 2003 19:30:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2U1H5006197; Fri, 26 Sep 2003 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2U0wG007949; Fri, 26 Sep 2003 19:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2TLwG007934 for ; Fri, 26 Sep 2003 19:29:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2TLH5006192 for ; Fri, 26 Sep 2003 19:29:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2TKsd092164 for ; Fri, 26 Sep 2003 19:29:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2TKfD092163; Fri, 26 Sep 2003 19:29:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270229.h8R2TKfD092163@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:29:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing_test.cc plumbing_test.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:29:20 Removed files: xorp/bgp/: plumbing_test.cc plumbing_test.hh Log message: Rename plumbing_test.{cc,hh} test_plumbing.{cc,hh} as per convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 19:37:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 19:38:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2c5fw001392 for ; Fri, 26 Sep 2003 19:38:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2c1H5006267; Fri, 26 Sep 2003 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2c1wG008069; Fri, 26 Sep 2003 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R2bXwG008059 for ; Fri, 26 Sep 2003 19:37:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2bXH5006265 for ; Fri, 26 Sep 2003 19:37:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R2bWsd098519 for ; Fri, 26 Sep 2003 19:37:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R2bWRo098518; Fri, 26 Sep 2003 19:37:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270237.h8R2bWRo098518@xorpc.icir.org> Date: Fri, 26 Sep 2003 19:37:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 19:37:32 Modified files: xorp/bgp/: test_plumbing.cc Log message: Rename plumbing_test.{cc,hh} test_plumbing.{cc,hh} as per convention. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 20:17:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 20:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3I5fw016593 for ; Fri, 26 Sep 2003 20:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3I1H5006545; Fri, 26 Sep 2003 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R3I1wG008561; Fri, 26 Sep 2003 20:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R3HswG008551 for ; Fri, 26 Sep 2003 20:17:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3HsH5006541 for ; Fri, 26 Sep 2003 20:17:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3Hssd016195 for ; Fri, 26 Sep 2003 20:17:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R3HsL0016194; Fri, 26 Sep 2003 20:17:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270317.h8R3HsL0016194@xorpc.icir.org> Date: Fri, 26 Sep 2003 20:17:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 20:17:54 Modified files: xorp/bgp/: test_packet.cc Log message: Use a string rather that a const char *, as it causes: Internal compiler error in `const_hash', at varasm.c:2373 with gcc version 2.95.4. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 20:42:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 20:43:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3h5fw025087 for ; Fri, 26 Sep 2003 20:43:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3h1H5006706; Fri, 26 Sep 2003 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R3h1wG008949; Fri, 26 Sep 2003 20:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R3gLwG008936 for ; Fri, 26 Sep 2003 20:42:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3gLH5006704 for ; Fri, 26 Sep 2003 20:42:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R3gLsd023819 for ; Fri, 26 Sep 2003 20:42:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R3gLJs023818; Fri, 26 Sep 2003 20:42:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270342.h8R3gLJs023818@xorpc.icir.org> Date: Fri, 26 Sep 2003 20:42:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ open_packet.cc packet.hh parameter.cc parameter.hh peer.cc peer_data.cc peer_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/26 20:42:20 Modified files: xorp/bgp/: open_packet.cc packet.hh parameter.cc parameter.hh peer.cc peer_data.cc peer_data.hh Log message: Open parameters are now stored in ref_ptr's, no longer need to worry about memory management. BGPPeerData default constructor gone. Start of code to compare the open parameters that we send and receive. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 22:55:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 22:56:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5u5fw058403 for ; Fri, 26 Sep 2003 22:56:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5u1H5007671; Fri, 26 Sep 2003 22:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R5u0wG010415; Fri, 26 Sep 2003 22:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R5tmwG010406 for ; Fri, 26 Sep 2003 22:55:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5tmH5007669 for ; Fri, 26 Sep 2003 22:55:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5tlsd030799 for ; Fri, 26 Sep 2003 22:55:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R5tlnh030798; Fri, 26 Sep 2003 22:55:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309270555.h8R5tlnh030798@xorpc.icir.org> Date: Fri, 26 Sep 2003 22:55:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/09/26 22:55:47 Modified files: xorp/config/: acipv6.m4 Log message: Added a check whether exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 22:59:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 23:00:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R604fw058992 for ; Fri, 26 Sep 2003 23:00:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R601H5007688; Fri, 26 Sep 2003 23:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R600wG010466; Fri, 26 Sep 2003 23:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R5x5wG010443 for ; Fri, 26 Sep 2003 22:59:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5x4H5007680 for ; Fri, 26 Sep 2003 22:59:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R5x4sd030855 for ; Fri, 26 Sep 2003 22:59:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R5x4Jd030854; Fri, 26 Sep 2003 22:59:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309270559.h8R5x4Jd030854@xorpc.icir.org> Date: Fri, 26 Sep 2003 22:59:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/26 22:59:04 Modified files: ./: config.h.in configure configure.in Log message: Added a check whether file exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Fri Sep 26 23:17:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Sep 2003 23:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R6I5fw061633 for ; Fri, 26 Sep 2003 23:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R6I1H5007812; Fri, 26 Sep 2003 23:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R6I1wG010746; Fri, 26 Sep 2003 23:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R6HHwG010728 for ; Fri, 26 Sep 2003 23:17:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R6HHH5007806 for ; Fri, 26 Sep 2003 23:17:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R6HHsd031075 for ; Fri, 26 Sep 2003 23:17:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R6HHSv031074; Fri, 26 Sep 2003 23:17:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309270617.h8R6HHSv031074@xorpc.icir.org> Date: Fri, 26 Sep 2003 23:17:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/09/26 23:17:17 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: * Use the appropriate ioctl() methods for Linux. Now the setting of network interfaces (by using ioctl() methods) should work for Linux as well, though it is not tested yet. * Strengthen the existing ioctl() methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Sat Sep 27 1:34:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 01:35:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8Z4fw091735 for ; Sat, 27 Sep 2003 01:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8Z1H5008818; Sat, 27 Sep 2003 01:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8Z0wG013071; Sat, 27 Sep 2003 01:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8Y7wG013055 for ; Sat, 27 Sep 2003 01:34:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8Y7H5008809 for ; Sat, 27 Sep 2003 01:34:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8Y7sd063445 for ; Sat, 27 Sep 2003 01:34:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R8Y7Si063444; Sat, 27 Sep 2003 01:34:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270834.h8R8Y7Si063444@xorpc.icir.org> Date: Sat, 27 Sep 2003 1:34:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ open_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/27 01:34:07 Modified files: xorp/bgp/: open_packet.cc Log message: Now that we are using ref_ptr's to hold pointers to a parameter making a copy is trivial. Remove code to allocate a copy of the parameter in add_parameter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Sat Sep 27 1:36:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 01:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8b5fw092156 for ; Sat, 27 Sep 2003 01:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8b2H5008852; Sat, 27 Sep 2003 01:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8b2wG013110; Sat, 27 Sep 2003 01:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8aJwG013092 for ; Sat, 27 Sep 2003 01:36:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8aJH5008842 for ; Sat, 27 Sep 2003 01:36:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8aIsd064026 for ; Sat, 27 Sep 2003 01:36:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R8aIHT064025; Sat, 27 Sep 2003 01:36:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270836.h8R8aIHT064025@xorpc.icir.org> Date: Sat, 27 Sep 2003 1:36:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/27 01:36:18 Modified files: xorp/bgp/: packet.hh Log message: Reformatting and killing of dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Sat Sep 27 1:37:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 01:38:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8c5fw092365 for ; Sat, 27 Sep 2003 01:38:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8c1H5008859; Sat, 27 Sep 2003 01:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8c1wG013132; Sat, 27 Sep 2003 01:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8b0wG013103 for ; Sat, 27 Sep 2003 01:37:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8b0H5008850 for ; Sat, 27 Sep 2003 01:37:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8b0sd071105 for ; Sat, 27 Sep 2003 01:37:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R8b0h3071104; Sat, 27 Sep 2003 01:37:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270837.h8R8b0h3071104@xorpc.icir.org> Date: Sat, 27 Sep 2003 1:37:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/27 01:37:00 Modified files: xorp/bgp/: parameter.cc Log message: Multiroute somehow got left out of the parsing process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:57 2005 Subject: No subject Sat Sep 27 1:40:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 01:41:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8f5fw092968 for ; Sat, 27 Sep 2003 01:41:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8f1H5008898; Sat, 27 Sep 2003 01:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8f1wG013170; Sat, 27 Sep 2003 01:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8R8eYwG013161 for ; Sat, 27 Sep 2003 01:40:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8eYH5008896 for ; Sat, 27 Sep 2003 01:40:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8R8eYsd072652 for ; Sat, 27 Sep 2003 01:40:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8R8eYhw072651; Sat, 27 Sep 2003 01:40:34 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309270840.h8R8eYhw072651@xorpc.icir.org> Date: Sat, 27 Sep 2003 1:40:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/27 01:40:34 Modified files: xorp/bgp/: peer_data.cc Log message: We no longer need to explicity call delete on a parameter pointer. The ref_ptr will deal with it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Sat Sep 27 3:42:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 03:43:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RAh6fw017142 for ; Sat, 27 Sep 2003 03:43:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RAh1H5012772; Sat, 27 Sep 2003 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RAh0wG014472; Sat, 27 Sep 2003 03:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RAgfwG014459 for ; Sat, 27 Sep 2003 03:42:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RAgfH5012770 for ; Sat, 27 Sep 2003 03:42:41 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RAgfsd093919 for ; Sat, 27 Sep 2003 03:42:41 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8RAgfVr093918; Sat, 27 Sep 2003 03:42:41 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200309271042.h8RAgfVr093918@xorpc.icir.org> Date: Sat, 27 Sep 2003 3:42:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in rib.cc rib.hh rib_manager.cc rt_tab_base.hh rt_tab_origin.cc rt_tab_origin.hh test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc xorp/rib/ rt_tab_deletion.cc rt_tab_deletion.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/09/27 03:42:40 Modified files: xorp/rib/: Makefile.am Makefile.in rib.cc rib.hh rib_manager.cc rt_tab_base.hh rt_tab_origin.cc rt_tab_origin.hh test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc Added files: xorp/rib/: rt_tab_deletion.cc rt_tab_deletion.hh Log message: Add DeletionTable to RIB. This performs background deletion of all the routes in an OriginTable when the routing protocol that populated the OriginTable goes away. Reasonably complete implementation, but not yet tested or plumbed in. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Sat Sep 27 8:47:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 08:48:22 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RFmMfw063169 for ; Sat, 27 Sep 2003 08:48:22 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RFm1H5016247; Sat, 27 Sep 2003 08:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RFm0wG019505; Sat, 27 Sep 2003 08:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RFl2wG019487 for ; Sat, 27 Sep 2003 08:47:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RFl2H5016240 for ; Sat, 27 Sep 2003 08:47:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RFl2sd000275 for ; Sat, 27 Sep 2003 08:47:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8RFl1M0000274; Sat, 27 Sep 2003 08:47:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309271547.h8RFl1M0000274@xorpc.icir.org> Date: Sat, 27 Sep 2003 8:47:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/27 08:47:01 Modified files: xorp/libxipc/: xrl_pf_stcp.cc Log message: Fix ordering of ops in die() to be safe if call chain deletes sender instance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Sat Sep 27 15:32:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 15:33:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMXCfw028349 for ; Sat, 27 Sep 2003 15:33:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMX7H5019086; Sat, 27 Sep 2003 15:33:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RMX7wG024373; Sat, 27 Sep 2003 15:33:07 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RMWnwG024363 for ; Sat, 27 Sep 2003 15:32:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMWnH5019084 for ; Sat, 27 Sep 2003 15:32:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMWnsd058342 for ; Sat, 27 Sep 2003 15:32:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8RMWn0o058341; Sat, 27 Sep 2003 15:32:49 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200309272232.h8RMWn0o058341@xorpc.icir.org> Date: Sat, 27 Sep 2003 15:32:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc xorp/libxorp/ test_trie.cc xorp/ospfd/xorp/ ospfd_xorp.C xorp/pim/ Makefile.am Makefile.in xorp/rib/ Makefile.am Makefile.in parser_direct_cmds.hh parser_xrl_cmds.hh rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh ...rt_tab_register.cc ...rt_tab_register.hh ...test_register.cc ...test_register_xrls.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...xrl_target.cc ...xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.tgt rib.xrls rib_base.cc rib_base.hh xorp/rib/ dummy_rib_manager.cc dummy_rib_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 03/09/27 15:32:48 Modified files: xorp/bgp/: rib_ipc_handler.cc xorp/libxorp/: test_trie.cc xorp/ospfd/xorp/: ospfd_xorp.C xorp/pim/: Makefile.am Makefile.in xorp/rib/: Makefile.am Makefile.in parser_direct_cmds.hh parser_xrl_cmds.hh rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh rt_tab_register.cc rt_tab_register.hh test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.tgt rib.xrls rib_base.cc rib_base.hh Added files: xorp/rib/: dummy_rib_manager.cc dummy_rib_manager.hh Log message: Routing protocols now register their XRL class and instance names when they create OriginTable's in the RIB. The RIB then tracks when registered processes die using the finder event notifier, and the RIB then removes any orphaned routes as a background task. Also RibClients that die will be removed too, and if the FEA dies, the RIB will exit without waiting to clean up. At least that's what is meant to happen. This code is complete, but not thoroughly tested. It passes all the tinderbox tests, but really needs its own test suite writing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Sat Sep 27 15:49:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Sep 2003 15:50:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMo6fw033350 for ; Sat, 27 Sep 2003 15:50:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMo1H5019184; Sat, 27 Sep 2003 15:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RMo1wG024646; Sat, 27 Sep 2003 15:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8RMnXwG024636 for ; Sat, 27 Sep 2003 15:49:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMnXH5019179 for ; Sat, 27 Sep 2003 15:49:33 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8RMnWsd058461 for ; Sat, 27 Sep 2003 15:49:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8RMnWMW058460; Sat, 27 Sep 2003 15:49:32 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200309272249.h8RMnWMW058460@xorpc.icir.org> Date: Sat, 27 Sep 2003 15:49:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/09/27 15:49:32 Modified files: xorp/rib/: dummy_rib_manager.cc Log message: compilation fix for gcc 2.95 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Sun Sep 28 6:10:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Sep 2003 06:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8SDB5fw087368 for ; Sun, 28 Sep 2003 06:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8SDB1H5025043; Sun, 28 Sep 2003 06:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8SDB1wG006499; Sun, 28 Sep 2003 06:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8SDAgwG006487 for ; Sun, 28 Sep 2003 06:10:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8SDAgH5025040 for ; Sun, 28 Sep 2003 06:10:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8SDAgsd019472 for ; Sun, 28 Sep 2003 06:10:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8SDAgMv019471; Sun, 28 Sep 2003 06:10:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200309281310.h8SDAgMv019471@xorpc.icir.org> Date: Sun, 28 Sep 2003 6:10:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in rt_tab_base.hh xorp/rib/ rt_tab_debug.cc rt_tab_debug.hh test_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/09/28 06:10:42 Modified files: xorp/rib/: Makefile.am Makefile.in rt_tab_base.hh Added files: xorp/rib/: rt_tab_debug.cc rt_tab_debug.hh test_deletion.cc Log message: Simple test suite for RIB Deletion Table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 10:58:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 10:59:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8THx5fw051447 for ; Mon, 29 Sep 2003 10:59:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8THx1H5041749; Mon, 29 Sep 2003 10:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8THx1wG000956; Mon, 29 Sep 2003 10:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8THwGwG000940 for ; Mon, 29 Sep 2003 10:58:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8THwGH5041743 for ; Mon, 29 Sep 2003 10:58:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8THwGsd060606 for ; Mon, 29 Sep 2003 10:58:16 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8THwG11060605; Mon, 29 Sep 2003 10:58:16 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309291758.h8THwG11060605@xorpc.icir.org> Date: Mon, 29 Sep 2003 10:58:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/09/29 10:58:16 Modified files: xorp/libxorp/: selector.cc Log message: Remove EINTR handling around select call. We'll see EINTR after a signal handler has been invoked. Say we want the signal handler to clean up and exit, then the existing code gave a non-deterministic opportunity to do so. In an idle eventloop we'd typically be calling select with a timeout of zero, get an EINTR, and because of the goto do select again with a timeout of zero. Unless the signal handler calls exit() we're potentially blocked forever here. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 11:07:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 11:08:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TI84fw052986 for ; Mon, 29 Sep 2003 11:08:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TI80H5041849; Mon, 29 Sep 2003 11:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TI80wG001170; Mon, 29 Sep 2003 11:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TI7awG001151 for ; Mon, 29 Sep 2003 11:07:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TI7aH5041847 for ; Mon, 29 Sep 2003 11:07:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TI7asd060836 for ; Mon, 29 Sep 2003 11:07:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8TI7aMD060835; Mon, 29 Sep 2003 11:07:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309291807.h8TI7aMD060835@xorpc.icir.org> Date: Mon, 29 Sep 2003 11:07:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/09/29 11:07:36 Modified files: xorp/libxipc/: finder_main.cc Log message: When a signal is received announce it and exit cleanly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 11:31:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 11:32:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TIW5fw063465 for ; Mon, 29 Sep 2003 11:32:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TIW1H5042066; Mon, 29 Sep 2003 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TIW1wG001717; Mon, 29 Sep 2003 11:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TIVMwG001690 for ; Mon, 29 Sep 2003 11:31:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TIVMH5042059 for ; Mon, 29 Sep 2003 11:31:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TIVMsd062493 for ; Mon, 29 Sep 2003 11:31:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8TIVMt4062492; Mon, 29 Sep 2003 11:31:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309291831.h8TIVMt4062492@xorpc.icir.org> Date: Mon, 29 Sep 2003 11:31:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: atanu@xorpc.icir.org. 03/09/29 11:31:22 Modified files: xorp/mibs/tests/: Makefile.am Makefile.in Log message: The test test_bgpmib.sh has been consistently failing since we made the configure script for snmp deterministic. Temporarily removed from the regression tests until I fix the problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 12:33:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 12:34:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TJY6fw081116 for ; Mon, 29 Sep 2003 12:34:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TJY1H5042626; Mon, 29 Sep 2003 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TJY1wG003174; Mon, 29 Sep 2003 12:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TJXbwG003147 for ; Mon, 29 Sep 2003 12:33:37 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TJXbH5042623; Mon, 29 Sep 2003 12:33:37 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TJXbIK058445; Mon, 29 Sep 2003 12:33:37 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200309291933.h8TJXbIK058445@possum.icir.org> To: hodson@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc In-Reply-To: Message from Orion Hodson of "Mon, 29 Sep 2003 10:58:16." <200309291758.h8THwG11060605@xorpc.icir.org> Date: Mon, 29 Sep 2003 12:33:37 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Repository: xorp/libxorp/ > Changes by: hodson@xorpc.icir.org. 03/09/29 10:58:16 > > Modified files: > xorp/libxorp/: selector.cc > > Log message: > Remove EINTR handling around select call. We'll see EINTR after a > signal handler has been invoked. Say we want the signal handler to > clean up and exit, then the existing code gave a non-deterministic > opportunity to do so. In an idle eventloop we'd typically be calling > select with a timeout of zero, get an EINTR, and because of the goto > do select again with a timeout of zero. Unless the signal handler > calls exit() we're potentially blocked forever here. Are you sure we want to completely ignore EINTR? I appreciate that you found and fixed the select() restarting problem, but now when I press Ctrl-C, there is a "select failed" error message that is not needed: pavlin@possum[532] ./xorp_finder ^CSIGINT received. Exiting. [ 2003/09/29 12:25:56 ERROR xorp_finder:58186 LIBXORP +228 selector.cc select ] SelectorList::select failed: Interrupted system call The solution for this is just not to print XLOG_ERROR() in case of EINTR (see patch below). Pavlin Index: selector.cc =================================================================== RCS file: /usr/local/share/doc/apache/cvs/xorp/libxorp/selector.cc,v retrieving revision 1.19 diff -c -u -r1.19 selector.cc --- selector.cc 29 Sep 2003 17:58:15 -0000 1.19 +++ selector.cc 29 Sep 2003 19:23:20 -0000 @@ -224,6 +224,10 @@ case EINVAL: XLOG_FATAL("Bad select argument (probably timeval)"); break; + case EINTR: + // The system call was interrupted by a signal, hence return + // immediately and enter again the event loop. + break; default: XLOG_ERROR("SelectorList::select failed: %s", strerror(errno)); break; _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 13:31:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 13:32:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TKW8fw091780 for ; Mon, 29 Sep 2003 13:32:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TKW1H5043271; Mon, 29 Sep 2003 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TKW1wG004312; Mon, 29 Sep 2003 13:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TKV4wG004281 for ; Mon, 29 Sep 2003 13:31:04 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TKV4H5043264; Mon, 29 Sep 2003 13:31:04 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TKV4Cu090555; Mon, 29 Sep 2003 13:31:04 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309292031.h8TKV4Cu090555@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc In-Reply-To: Your message of "Mon, 29 Sep 2003 12:33:37 PDT." <200309291933.h8TJXbIK058445@possum.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 29 Sep 2003 13:31:04 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | > CVSROOT: /usr/local/www/data/cvs | > Module name: xorp | > Repository: xorp/libxorp/ | > Changes by: hodson@xorpc.icir.org. 03/09/29 10:58:16 | > | > Modified files: | > xorp/libxorp/: selector.cc | > | > Log message: | > Remove EINTR handling around select call. We'll see EINTR after a | > signal handler has been invoked. Say we want the signal handler to | > clean up and exit, then the existing code gave a non-deterministic | > opportunity to do so. In an idle eventloop we'd typically be calling | > select with a timeout of zero, get an EINTR, and because of the goto | > do select again with a timeout of zero. Unless the signal handler | > calls exit() we're potentially blocked forever here. | | Are you sure we want to completely ignore EINTR? IMHO, there are no errors we want to ignore arising from the SelectorList's select(2) invocation. Apparent annoyance stems from the fact that comments were made at the time about the special case EINTR handling and the code remained untouched. | I appreciate that you found and fixed the select() restarting | problem, | but now when I press Ctrl-C, there is a "select failed" | error message that is not needed: | | pavlin@possum[532] ./xorp_finder | ^CSIGINT received. Exiting. | [ 2003/09/29 12:25:56 ERROR xorp_finder:58186 LIBXORP +228 selector.cc selec | t ] SelectorList::select failed: Interrupted system call | | The solution for this is just not to print XLOG_ERROR() in case of | EINTR (see patch below). The error message tells signal generator that the process was blocked before the interrupt was received, ie they can see the process was wedged somewhere. For the rare occasions this information might be useful I'd be inclined to leave things as they are. Kind Regards - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 16:05:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 16:06:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TN65fw020368 for ; Mon, 29 Sep 2003 16:06:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TN61H5044630; Mon, 29 Sep 2003 16:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TN61wG007572; Mon, 29 Sep 2003 16:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TN59wG007536 for ; Mon, 29 Sep 2003 16:05:09 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TN58H5044622; Mon, 29 Sep 2003 16:05:08 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TN58IK072251; Mon, 29 Sep 2003 16:05:08 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200309292305.h8TN58IK072251@possum.icir.org> To: Orion Hodson cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc In-Reply-To: Message from Orion Hodson of "Mon, 29 Sep 2003 13:31:04 PDT." <200309292031.h8TKV4Cu090555@puma.icir.org> Date: Mon, 29 Sep 2003 16:05:08 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > | I appreciate that you found and fixed the select() restarting > | problem, > | but now when I press Ctrl-C, there is a "select failed" > | error message that is not needed: > | > | pavlin@possum[532] ./xorp_finder > | ^CSIGINT received. Exiting. > | [ 2003/09/29 12:25:56 ERROR xorp_finder:58186 LIBXORP +228 selector.cc selec > | t ] SelectorList::select failed: Interrupted system call > | > | The solution for this is just not to print XLOG_ERROR() in case of > | EINTR (see patch below). > > The error message tells signal generator that the process was blocked before the interrupt was received, ie they can see the process was wedged somewhere. For the rare occasions this information might be useful I'd be inclined to leave things as they are. EINTR is a special case. It is normal for a program to receive interrupts. If the program handles those interrupts, and then returns to select(), you don't want the program to print an error message simply because there is no error here. If you are debugging a problem and you want to track the case when select() is interrupted, then just add debug_msg() there. Using XLOG_ERROR() in case of EINTR is very misleading. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 16:27:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 16:28:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNS5fw024400 for ; Mon, 29 Sep 2003 16:28:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNS1H5044820; Mon, 29 Sep 2003 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TNS1wG008047; Mon, 29 Sep 2003 16:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TNRvwG008036 for ; Mon, 29 Sep 2003 16:27:57 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNRvH5044818; Mon, 29 Sep 2003 16:27:57 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNRvCu038669; Mon, 29 Sep 2003 16:27:57 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309292327.h8TNRvCu038669@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc In-Reply-To: Your message of "Mon, 29 Sep 2003 16:05:08 PDT." <200309292305.h8TN58IK072251@possum.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 29 Sep 2003 16:27:57 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | | EINTR is a special case. It is normal for a program to receive | interrupts. If the program handles those interrupts, and then | returns to select(), you don't want the program to print | an error message simply because there is no error here. | If you are debugging a problem and you want to track the case when | select() is interrupted, then just add debug_msg() there. | Using XLOG_ERROR() in case of EINTR is very misleading. If you want to change this, go ahead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 16:37:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 16:38:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNc8fw026268 for ; Mon, 29 Sep 2003 16:38:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNc1H5044945; Mon, 29 Sep 2003 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TNc1wG008300; Mon, 29 Sep 2003 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TNb5wG008279 for ; Mon, 29 Sep 2003 16:37:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNb5H5044939 for ; Mon, 29 Sep 2003 16:37:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNb5sd025420 for ; Mon, 29 Sep 2003 16:37:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8TNb5am025419; Mon, 29 Sep 2003 16:37:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309292337.h8TNb5am025419@xorpc.icir.org> Date: Mon, 29 Sep 2003 16:37:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ selector.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/09/29 16:37:04 Modified files: xorp/libxorp/: selector.cc Log message: If select(2) is interrupted by an error (errno = EINTR), then return immediately to the event loop without printing an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 16:59:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 17:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U005fw030405 for ; Mon, 29 Sep 2003 17:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U001H5045114; Mon, 29 Sep 2003 17:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U001wG008738; Mon, 29 Sep 2003 17:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8TNxhwG008722 for ; Mon, 29 Sep 2003 16:59:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNxgH5045106 for ; Mon, 29 Sep 2003 16:59:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8TNxgsd025862 for ; Mon, 29 Sep 2003 16:59:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8TNxg04025861; Mon, 29 Sep 2003 16:59:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200309292359.h8TNxg04025861@xorpc.icir.org> Date: Mon, 29 Sep 2003 16:59:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ draft-ietf-idr-bgp4-21.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/09/29 16:59:42 Added files: xorp/bgp/docs/: draft-ietf-idr-bgp4-21.txt Log message: New BGP draft. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 17:05:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 17:06:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U066fw031594 for ; Mon, 29 Sep 2003 17:06:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U061H5045202; Mon, 29 Sep 2003 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U061wG008853; Mon, 29 Sep 2003 17:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U05MwG008836 for ; Mon, 29 Sep 2003 17:05:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U05MH5045194 for ; Mon, 29 Sep 2003 17:05:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U05Msd025986 for ; Mon, 29 Sep 2003 17:05:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8U05Mna025985; Mon, 29 Sep 2003 17:05:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309300005.h8U05Mna025985@xorpc.icir.org> Date: Mon, 29 Sep 2003 17:05:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipvxnet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/09/29 17:05:22 Modified files: xorp/libxorp/: ipvxnet.hh Log message: Corrent the example about the usage of IPvXNet::ip_multicast_base_prefix() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 17:06:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 17:07:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U074fw031787 for ; Mon, 29 Sep 2003 17:07:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U071H5045220; Mon, 29 Sep 2003 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U070wG008883; Mon, 29 Sep 2003 17:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U068wG008862 for ; Mon, 29 Sep 2003 17:06:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U068H5045204 for ; Mon, 29 Sep 2003 17:06:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U068sd026024 for ; Mon, 29 Sep 2003 17:06:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8U0684p026023; Mon, 29 Sep 2003 17:06:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309300006.h8U0684p026023@xorpc.icir.org> Date: Mon, 29 Sep 2003 17:06:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests/ test_bgpmib.sh.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/tests/ Changes by: hodson@xorpc.icir.org. 03/09/29 17:06:08 Modified files: xorp/mibs/tests/: test_bgpmib.sh.in Log message: Remove broken test4. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 17:22:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 17:23:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U0N5fw034885 for ; Mon, 29 Sep 2003 17:23:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U0N1H5045335; Mon, 29 Sep 2003 17:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U0N1wG009190; Mon, 29 Sep 2003 17:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U0MPwG009176 for ; Mon, 29 Sep 2003 17:22:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U0MPH5045330 for ; Mon, 29 Sep 2003 17:22:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U0MPsd026267 for ; Mon, 29 Sep 2003 17:22:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8U0MP1d026266; Mon, 29 Sep 2003 17:22:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309300022.h8U0MP1d026266@xorpc.icir.org> Date: Mon, 29 Sep 2003 17:22:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/09/29 17:22:25 Modified files: xorp/mrt/: mrib_table.cc Log message: Logical nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:58 2005 Subject: No subject Mon Sep 29 20:08:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 20:09:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U396fw062678 for ; Mon, 29 Sep 2003 20:09:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U391H5046661; Mon, 29 Sep 2003 20:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U391wG011773; Mon, 29 Sep 2003 20:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U386wG011760 for ; Mon, 29 Sep 2003 20:08:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U385H5046659 for ; Mon, 29 Sep 2003 20:08:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U385sd027510 for ; Mon, 29 Sep 2003 20:08:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8U385hR027509; Mon, 29 Sep 2003 20:08:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309300308.h8U385hR027509@xorpc.icir.org> Date: Mon, 29 Sep 2003 20:08:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc update_attrib.hh xorp/bgp/harness/ real_trie.hh xorp/etc/templates/ fea.tp xorp/fea/ ifconfig_click.cc ifconfig_click.hh ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc ...ifmanager_transaction.hh ...iftree.cc ...iftree.hh ...routing_socket_utils.cc ...test_ifmanager.cc ...xrl_shell_funcs.sh ...xrl_target.cc ...xrl_target.hh xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/mld6igmp/ Makefile.am Makefile.in! xorp/ospf! d/xorp/ system.C xorp/rib/ rt_tab_base.hh rt_tab_extint.cc rt_tab_merged.cc test_register_xrls.cc xrl_target.cc xrl_target.hh xorp/rip/ packets.hh xorp/rtrmgr/ config.template xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh rib.xif rib_xif.cc ...rib_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc ...rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/09/29 20:08:05 Modified files: xorp/bgp/: bgp.cc next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc update_attrib.hh xorp/bgp/harness/: real_trie.hh xorp/etc/templates/: fea.tp xorp/fea/: ifconfig_click.cc ifconfig_click.hh ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc ifmanager_transaction.hh iftree.cc iftree.hh routing_socket_utils.cc test_ifmanager.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/mld6igmp/: Makefile.am Makefile.in xorp/ospfd/xorp/: system.C xorp/rib/: rt_tab_base.hh rt_tab_extint.cc rt_tab_merged.cc test_register_xrls.cc xrl_target.cc xrl_target.hh xorp/rip/: packets.hh xorp/rtrmgr/: config.template xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc rib_base.hh Log message: Methods and variables renaming (for consistency and clarity): * prefix -> prefix_len The renaming is for class methods and variable names when we refer to prefix length of integer type; those are the majority of the changes. * preflen -> prefix_len * IPv{4,6,X}::mask_by_prefix() -> mask_by_prefix_len() * IPv{4,6,X}::prefix_length() -> masklen() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Mon Sep 29 20:17:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 20:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U3I5fw064011 for ; Mon, 29 Sep 2003 20:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U3I1H5046753; Mon, 29 Sep 2003 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U3I1wG011878; Mon, 29 Sep 2003 20:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U3H4wG011861 for ; Mon, 29 Sep 2003 20:17:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U3H4H5046746 for ; Mon, 29 Sep 2003 20:17:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U3H3sd027646 for ; Mon, 29 Sep 2003 20:17:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8U3H3Ex027645; Mon, 29 Sep 2003 20:17:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309300317.h8U3H3Ex027645@xorpc.icir.org> Date: Mon, 29 Sep 2003 20:17:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.cc ipv6.cc ipvx.cc ipvx.hh ipvxnet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/09/29 20:17:03 Modified files: xorp/libxorp/: ipv4.cc ipv6.cc ipvx.cc ipvx.hh ipvxnet.hh Log message: Change the type of prefix_len and masklen arguments from int to size_t. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Mon Sep 29 21:06:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 21:07:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U477fw071233 for ; Mon, 29 Sep 2003 21:07:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U471H5047105; Mon, 29 Sep 2003 21:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U471wG012542; Mon, 29 Sep 2003 21:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U46ewG012532 for ; Mon, 29 Sep 2003 21:06:40 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U46eH5047100; Mon, 29 Sep 2003 21:06:40 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U46dCu041280; Mon, 29 Sep 2003 21:06:39 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200309300406.h8U46dCu041280@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc update_attrib.hh xorp/bgp/harness/ real_trie.hh xorp/etc/templates/ fea.tp xorp/fea/ ifconfig_click.cc ifconfig_click.hh ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc ...ifmanager_transaction.hh ...iftree.cc ...iftree.hh ...routing_socket_utils.cc ...test_ifmanager.cc ...xrl_shell_funcs.sh ...xrl_target.cc ...xrl_target.hh xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/mld6igmp/ Makefile.am Makefile.in! xorp/ospf! rt_tab_merged.cc test_register_xrls.cc xrl_target.cc xrl_target.hh xorp/rip/ packets.hh xorp/rtrmgr/ config.template xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.ccfea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh rib.xif rib_xif.cc ...rib_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc ...rib_base.hh In-Reply-To: Your message of "Mon, 29 Sep 2003 20:08:05." <200309300308.h8U385hR027509@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 29 Sep 2003 21:06:39 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/xrl/targets/ | Changes by: pavlin@xorpc.icir.org. 03/09/29 20:08:05 | | Modified files: | xorp/bgp/: bgp.cc next_hop_resolver.cc next_hop_resolver.hh | test_next_hop_resolver.cc update_attrib.hh | xorp/bgp/harness/: real_trie.hh | xorp/etc/templates/: fea.tp | xorp/fea/: ifconfig_click.cc ifconfig_click.hh | ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc | ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc | ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc | ifmanager_transaction.hh iftree.cc iftree.hh | routing_socket_utils.cc test_ifmanager.cc | xrl_shell_funcs.sh xrl_target.cc xrl_target.hh | xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh | ifmgr_cmd_queue.cc ifmgr_cmds.cc | ifmgr_cmds.hh ifmgr_xrl_mirror.cc | xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc | ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc | test_ipv4.cc test_ipv6.cc test_ipvx.cc | xorp/mld6igmp/: Makefile.am Makefile.in | xorp/ospfd/xorp/: system.C | xorp/rib/: rt_tab_base.hh rt_tab_extint.cc rt_tab_merged.cc | test_register_xrls.cc xrl_target.cc xrl_target.hh | xorp/rip/: packets.hh | xorp/rtrmgr/: config.template | xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_mirror.xif | fea_ifmgr_mirror_xif.cc | fea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc | fea_ifmgr_xif.hh rib.xif rib_xif.cc | rib_xif.hh | xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh | fea_ifmgr_mirror.xrls | fea_ifmgr_mirror_base.cc | fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc | rib_base.hh | | Log message: | Methods and variables renaming (for consistency and clarity): | | * prefix -> prefix_len | The renaming is for class methods and variable names when we | refer to prefix length of integer type; those are the majority | of the changes. | * preflen -> prefix_len | * IPv{4,6,X}::mask_by_prefix() -> mask_by_prefix_len() | * IPv{4,6,X}::prefix_length() -> masklen() By the same rationale that replaced preflen with prefix_len, shouldn't masklen be replaced by mask_len? _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Mon Sep 29 21:20:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Sep 2003 21:21:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U4L5fw073292 for ; Mon, 29 Sep 2003 21:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U4L1H5047216; Mon, 29 Sep 2003 21:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U4L0wG012737; Mon, 29 Sep 2003 21:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8U4KAwG012722 for ; Mon, 29 Sep 2003 21:20:10 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U4K9H5047208; Mon, 29 Sep 2003 21:20:09 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.3) with ESMTP id h8U4K9IK019532; Mon, 29 Sep 2003 21:20:09 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200309300420.h8U4K9IK019532@possum.icir.org> To: Orion Hodson cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc next_hop_resolver.cc next_hop_resolver.hh test_next_hop_resolver.cc update_attrib.hh xorp/bgp/harness/ real_trie.hh xorp/etc/templates/ fea.tp xorp/fea/ ifconfig_click.cc ifconfig_click.hh ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc ...ifmanager_transaction.hh ...iftree.cc ...iftree.hh ...routing_socket_utils.cc ...test_ifmanager.cc ...xrl_shell_funcs.sh ...xrl_target.cc ...xrl_target.hh xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/mld6igmp/ Makefile.am Makefile.in! xorp/ospf! rt_tab_merged.cc test_register_xrls.cc xrl_target.cc xrl_target.hh xorp/rip/ packets.hh xorp/rtrmgr/ config.template xorp/xrl/i! nterfaces/ fea_ifmgr.xif fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.ccfea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh rib.xif rib_xif.cc ...rib_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc ...rib_base.hh In-Reply-To: Message from Orion Hodson of "Mon, 29 Sep 2003 21:06:39 PDT." <200309300406.h8U46dCu041280@puma.icir.org> Date: Mon, 29 Sep 2003 21:20:09 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > /-- Pavlin Radoslavov wrote: > | CVSROOT: /usr/local/share/doc/apache/cvs > | Module name: xorp > | Repository: xorp/xrl/targets/ > | Changes by: pavlin@xorpc.icir.org. 03/09/29 20:08:05 > | > | Modified files: > | xorp/bgp/: bgp.cc next_hop_resolver.cc next_hop_resolver.hh > | test_next_hop_resolver.cc update_attrib.hh > | xorp/bgp/harness/: real_trie.hh > | xorp/etc/templates/: fea.tp > | xorp/fea/: ifconfig_click.cc ifconfig_click.hh > | ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc > | ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc > | ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc > | ifmanager_transaction.hh iftree.cc iftree.hh > | routing_socket_utils.cc test_ifmanager.cc > | xrl_shell_funcs.sh xrl_target.cc xrl_target.hh > | xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh > | ifmgr_cmd_queue.cc ifmgr_cmds.cc > | ifmgr_cmds.hh ifmgr_xrl_mirror.cc > | xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc > | ipvx.hh ipvxnet.hh old_trie.hh test_ipnet.cc > | test_ipv4.cc test_ipv6.cc test_ipvx.cc > | xorp/mld6igmp/: Makefile.am Makefile.in > | xorp/ospfd/xorp/: system.C > | xorp/rib/: rt_tab_base.hh rt_tab_extint.cc rt_tab_merged.cc > | test_register_xrls.cc xrl_target.cc xrl_target.hh > | xorp/rip/: packets.hh > | xorp/rtrmgr/: config.template > | xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_mirror.xif > | fea_ifmgr_mirror_xif.cc > | fea_ifmgr_mirror_xif.hh fea_ifmgr_xif.cc > | fea_ifmgr_xif.hh rib.xif rib_xif.cc > | rib_xif.hh > | xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh > | fea_ifmgr_mirror.xrls > | fea_ifmgr_mirror_base.cc > | fea_ifmgr_mirror_base.hh rib.xrls rib_base.cc > | rib_base.hh > | > | Log message: > | Methods and variables renaming (for consistency and clarity): > | > | * prefix -> prefix_len > | The renaming is for class methods and variable names when we > | refer to prefix length of integer type; those are the majority > | of the changes. > | * preflen -> prefix_len > | * IPv{4,6,X}::mask_by_prefix() -> mask_by_prefix_len() > | * IPv{4,6,X}::prefix_length() -> masklen() > > By the same rationale that replaced preflen with prefix_len, shouldn't masklen > be replaced by mask_len? I thought about that, but "masklen" itself didn't sound that bad as a single word :) Either way is fine for me, so for the sake of consistency I will rename masklen to mask_len, unless other people have objections to that. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 7:59:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 08:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UF05fw074992 for ; Tue, 30 Sep 2003 08:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UF01H5052573; Tue, 30 Sep 2003 08:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UF01wG023875; Tue, 30 Sep 2003 08:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UExXwG023862 for ; Tue, 30 Sep 2003 07:59:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UExXH5052561 for ; Tue, 30 Sep 2003 07:59:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UExXsd061009 for ; Tue, 30 Sep 2003 07:59:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UExXdZ061008; Tue, 30 Sep 2003 07:59:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309301459.h8UExXdZ061008@xorpc.icir.org> Date: Tue, 30 Sep 2003 7:59:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: hodson@xorpc.icir.org. 03/09/30 07:59:33 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Fix build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 9:12:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 09:13:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UGD5fw087117 for ; Tue, 30 Sep 2003 09:13:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UGD1H5054690; Tue, 30 Sep 2003 09:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UGD1wG025092; Tue, 30 Sep 2003 09:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UGC7wG025068 for ; Tue, 30 Sep 2003 09:12:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UGC7H5054684 for ; Tue, 30 Sep 2003 09:12:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UGC6sd062925 for ; Tue, 30 Sep 2003 09:12:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UGC6QD062924; Tue, 30 Sep 2003 09:12:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309301612.h8UGC6QD062924@xorpc.icir.org> Date: Tue, 30 Sep 2003 9:12:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xorp_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/09/30 09:12:06 Added files: xorp/mld6igmp/: xorp_mld6igmp.cc Log message: Added pre-mature version of xorp_mld6igmp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 11:24:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 11:25:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIPAfw007416 for ; Tue, 30 Sep 2003 11:25:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIP2H5056037; Tue, 30 Sep 2003 11:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIP1wG028045; Tue, 30 Sep 2003 11:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIO4wG027998 for ; Tue, 30 Sep 2003 11:24:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIO3H5056022 for ; Tue, 30 Sep 2003 11:24:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIO3sd064174 for ; Tue, 30 Sep 2003 11:24:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UIO3JT064173; Tue, 30 Sep 2003 11:24:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309301824.h8UIO3JT064173@xorpc.icir.org> Date: Tue, 30 Sep 2003 11:24:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy conf_tree.cc master_conf_tree.cc module_command.cc op_commands.cc parse_error.hh slave_conf_tree.cc template_commands.cc template_tree.cc template_tree_node.cc ...y.boot_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/30 11:24:03 Modified files: xorp/rtrmgr/: boot.yy conf_tree.cc master_conf_tree.cc module_command.cc op_commands.cc parse_error.hh slave_conf_tree.cc template_commands.cc template_tree.cc template_tree_node.cc y.boot_tab.cc Log message: Change ParseError exception to be derived from XorpReasonedException so it can be caught by the common exception handling routines. The latter allow us to see where it came from. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 11:27:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 11:28:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UISBfw007913 for ; Tue, 30 Sep 2003 11:28:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIS1H5056089; Tue, 30 Sep 2003 11:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIS1wG028115; Tue, 30 Sep 2003 11:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIR9wG028100 for ; Tue, 30 Sep 2003 11:27:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIR9H5056083 for ; Tue, 30 Sep 2003 11:27:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIR9sd064300 for ; Tue, 30 Sep 2003 11:27:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UIR93o064299; Tue, 30 Sep 2003 11:27:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309301827.h8UIR93o064299@xorpc.icir.org> Date: Tue, 30 Sep 2003 11:27:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ urib-interface.tex xorp/fea/ ifconfig_click.cc ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc netlink_socket_utils.cc routing_socket_utils.cc ...routing_socket_utils.hh xorp/libxipc/ test_leaks.sh xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/ospfd/xorp/ system.C xorp/pim/ pim_bsr.cc pim_bsr.hh pim_config.cc pim_mre_join_prune.cc pim_mre_rpf.cc pim_nbr.cc pim_nbr.hh pim_node.hh pim_proto.h pim_proto_assert.cc pim_proto_bootstrap.cc ...pim_proto_cand_rp_adv.cc ...pim_proto_join_prune.cc ...pim_proto_join_prune_message.cc ...pim_proto_join_prune_message.hh ...pim_proto_register_stop.cc ...pim_rp.cc ...pim_rp.hh ...pim_vif.hh ...xrl_pim_node.cc ...xr! l_pim_node.! hh ...xrl_pim_shell_funcs.sh xorp/rip/ packets.hh xorp/rtrmgr/ show_interfaces xorp/xrl/interfaces/ finder_event_observer.xif pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/09/30 11:27:09 Modified files: xorp/devnotes/: urib-interface.tex xorp/fea/: ifconfig_click.cc ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc netlink_socket_utils.cc routing_socket_utils.cc routing_socket_utils.hh xorp/libxipc/: test_leaks.sh xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc xorp/ospfd/xorp/: system.C xorp/pim/: pim_bsr.cc pim_bsr.hh pim_config.cc pim_mre_join_prune.cc pim_mre_rpf.cc pim_nbr.cc pim_nbr.hh pim_node.hh pim_proto.h pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_proto_register_stop.cc pim_rp.cc pim_rp.hh pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xorp/rip/: packets.hh xorp/rtrmgr/: show_interfaces xorp/xrl/interfaces/: finder_event_observer.xif pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Replace masklen with mask_len (for variables and class methods). [Patch courtesy of Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 11:42:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 11:43:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIhBfw010506 for ; Tue, 30 Sep 2003 11:43:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIh1H5056271; Tue, 30 Sep 2003 11:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIh1wG028507; Tue, 30 Sep 2003 11:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIgfwG028491 for ; Tue, 30 Sep 2003 11:42:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIgeH5056269 for ; Tue, 30 Sep 2003 11:42:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIgesd064455 for ; Tue, 30 Sep 2003 11:42:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UIgeBv064454; Tue, 30 Sep 2003 11:42:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309301842.h8UIgeBv064454@xorpc.icir.org> Date: Tue, 30 Sep 2003 11:42:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh xorp/pim/ pim_bsr.cc pim_config.cc pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/30 11:42:40 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh xorp/pim/: pim_bsr.cc pim_config.cc pim_proto.h Log message: MASKLEN -> MASK_LEN _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 11:47:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 11:48:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIm7fw017474 for ; Tue, 30 Sep 2003 11:48:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIm0H5056315; Tue, 30 Sep 2003 11:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIm0wG028622; Tue, 30 Sep 2003 11:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIlRwG028605 for ; Tue, 30 Sep 2003 11:47:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIlRH5056309 for ; Tue, 30 Sep 2003 11:47:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIlRsd064536 for ; Tue, 30 Sep 2003 11:47:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UIlR7U064535; Tue, 30 Sep 2003 11:47:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309301847.h8UIlR7U064535@xorpc.icir.org> Date: Tue, 30 Sep 2003 11:47:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/09/30 11:47:27 Modified files: xorp/xrl/interfaces/: pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.hh Log message: regenerate auto-generated files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 11:52:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 11:53:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIrBfw019412 for ; Tue, 30 Sep 2003 11:53:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIr1H5056353; Tue, 30 Sep 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIr0wG028732; Tue, 30 Sep 2003 11:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UIqLwG028710 for ; Tue, 30 Sep 2003 11:52:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIqLH5056346 for ; Tue, 30 Sep 2003 11:52:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UIqLsd064618 for ; Tue, 30 Sep 2003 11:52:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UIqLiI064617; Tue, 30 Sep 2003 11:52:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309301852.h8UIqLiI064617@xorpc.icir.org> Date: Tue, 30 Sep 2003 11:52:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/09/30 11:52:21 Modified files: xorp/pim/: xrl_pim_node.hh Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 13:28:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 13:29:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKTAfw036109 for ; Tue, 30 Sep 2003 13:29:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKT1H5057228; Tue, 30 Sep 2003 13:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKT1wG000518; Tue, 30 Sep 2003 13:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKStwG000505 for ; Tue, 30 Sep 2003 13:28:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKStH5057226 for ; Tue, 30 Sep 2003 13:28:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKStsd091010 for ; Tue, 30 Sep 2003 13:28:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UKStPI091009; Tue, 30 Sep 2003 13:28:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309302028.h8UKStPI091009@xorpc.icir.org> Date: Tue, 30 Sep 2003 13:28:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/etc/ Makefile.in xorp/etc/templates/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libfeaclient/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mibs/ Makefile.in xorp/mibs/snmpdscripts/ Makefile.in xorp/mibs/tests/ Makefile.in xorp/mld6igmp/ Makefile.in x! orp/mrt/ Ma! kefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/utils/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: pavlin@xorpc.icir.org. 03/09/30 13:28:54 Modified files: ./: Makefile.in configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/etc/: Makefile.in xorp/etc/templates/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libfeaclient/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mibs/: Makefile.in xorp/mibs/snmpdscripts/: Makefile.in xorp/mibs/tests/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/utils/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: * Added to configure.in a check for CLI-required curses library, and set CLI_CURSES_LIB Makefile variable to that value. * Regenerate all Makefile.in files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 13:41:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 13:42:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKgCfw038070 for ; Tue, 30 Sep 2003 13:42:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKg1H5057381; Tue, 30 Sep 2003 13:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKg1wG000908; Tue, 30 Sep 2003 13:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKfMwG000885 for ; Tue, 30 Sep 2003 13:41:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKfMH5057373 for ; Tue, 30 Sep 2003 13:41:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKfMsd001698 for ; Tue, 30 Sep 2003 13:41:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UKfMb5001697; Tue, 30 Sep 2003 13:41:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309302041.h8UKfMb5001697@xorpc.icir.org> Date: Tue, 30 Sep 2003 13:41:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/mld6igmp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xorp/rtrmgr/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/09/30 13:41:22 Modified files: xorp/cli/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in xorp/mld6igmp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xorp/rtrmgr/: Makefile.am Makefile.in Log message: Replace -lcurses with CLI_CURSES_LIB variable in Makefile.am files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 13:50:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 13:51:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKp9fw044817 for ; Tue, 30 Sep 2003 13:51:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKp1H5057465; Tue, 30 Sep 2003 13:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKp0wG001102; Tue, 30 Sep 2003 13:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKopwG001092 for ; Tue, 30 Sep 2003 13:50:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKopH5057463 for ; Tue, 30 Sep 2003 13:50:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKopsd004330 for ; Tue, 30 Sep 2003 13:50:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UKop8l004329; Tue, 30 Sep 2003 13:50:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309302050.h8UKop8l004329@xorpc.icir.org> Date: Tue, 30 Sep 2003 13:50:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/30 13:50:51 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: Install unexpected exception handler. Remove a hard coded buffer size. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 13:53:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 13:54:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKs9fw050635 for ; Tue, 30 Sep 2003 13:54:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKs1H5057494; Tue, 30 Sep 2003 13:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKs1wG001160; Tue, 30 Sep 2003 13:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKrNwG001143 for ; Tue, 30 Sep 2003 13:53:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKrNH5057489 for ; Tue, 30 Sep 2003 13:53:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKrMsd004841 for ; Tue, 30 Sep 2003 13:53:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UKrMxt004840; Tue, 30 Sep 2003 13:53:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309302053.h8UKrMxt004840@xorpc.icir.org> Date: Tue, 30 Sep 2003 13:53:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/30 13:53:22 Modified files: xorp/rtrmgr/: cli.cc Log message: Minor style tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 13:55:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 13:56:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKuAfw050958 for ; Tue, 30 Sep 2003 13:56:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKu1H5057529; Tue, 30 Sep 2003 13:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKu1wG001191; Tue, 30 Sep 2003 13:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UKt0wG001174 for ; Tue, 30 Sep 2003 13:55:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKt0H5057508 for ; Tue, 30 Sep 2003 13:55:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UKt0sd005211 for ; Tue, 30 Sep 2003 13:55:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UKt0UV005210; Tue, 30 Sep 2003 13:55:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309302055.h8UKt0UV005210@xorpc.icir.org> Date: Tue, 30 Sep 2003 13:55:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/30 13:55:00 Modified files: ./: configure configure.in Log message: Allow the curses library to be NULL, because the CLI does not mandate its existence. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 14:55:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 14:56:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ULu6fw067762 for ; Tue, 30 Sep 2003 14:56:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ULu2H5058100; Tue, 30 Sep 2003 14:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ULu1wG002586; Tue, 30 Sep 2003 14:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8ULtKwG002558 for ; Tue, 30 Sep 2003 14:55:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ULtKH5058097 for ; Tue, 30 Sep 2003 14:55:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8ULtKsd021101 for ; Tue, 30 Sep 2003 14:55:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8ULtKVB021100; Tue, 30 Sep 2003 14:55:20 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309302155.h8ULtKVB021100@xorpc.icir.org> Date: Tue, 30 Sep 2003 14:55:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/30 14:55:20 Modified files: xorp/rtrmgr/: cli.cc Log message: Fix an out-by-one error in an input path. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:11:59 2005 Subject: No subject Tue Sep 30 15:27:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 15:28:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMS5fw073920 for ; Tue, 30 Sep 2003 15:28:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMS1H5058338; Tue, 30 Sep 2003 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UMS1wG003281; Tue, 30 Sep 2003 15:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UMRcwG003269 for ; Tue, 30 Sep 2003 15:27:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMRcH5058335 for ; Tue, 30 Sep 2003 15:27:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMRcsd021484 for ; Tue, 30 Sep 2003 15:27:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UMRcOK021483; Tue, 30 Sep 2003 15:27:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200309302227.h8UMRcOK021483@xorpc.icir.org> Date: Tue, 30 Sep 2003 15:27:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ patched_container.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/09/30 15:27:38 Modified files: xorp/mibs/: patched_container.h Log message: Compilation fix for Linux RedHat-9.0: change #ifdef NETSNMP_NO_INLINE to #if defined(NETSNMP_NO_INLINE) || !defined(NETSNMP_INLINE) because on Linux RedHat-9.0 file net-snmp-config.h doesn't define either one, and in that case the compilation fails. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Tue Sep 30 15:56:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 15:57:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMv5fw079494 for ; Tue, 30 Sep 2003 15:57:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMv1H5058582; Tue, 30 Sep 2003 15:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UMv1wG003816; Tue, 30 Sep 2003 15:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h8UMu8wG003783 for ; Tue, 30 Sep 2003 15:56:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMu8H5058574 for ; Tue, 30 Sep 2003 15:56:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8UMu8sd021710 for ; Tue, 30 Sep 2003 15:56:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8UMu8Xs021709; Tue, 30 Sep 2003 15:56:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200309302256.h8UMu8Xs021709@xorpc.icir.org> Date: Tue, 30 Sep 2003 15:56:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ show_interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/09/30 15:56:08 Removed files: xorp/rtrmgr/: show_interfaces Log message: Remove dummy file. Real version implemented in tools. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Tue Sep 30 19:23:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 19:24:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h912O5fw019566 for ; Tue, 30 Sep 2003 19:24:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912O1H5060188; Tue, 30 Sep 2003 19:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912O1wG007604; Tue, 30 Sep 2003 19:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912NRwG007593 for ; Tue, 30 Sep 2003 19:23:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912NRH5060186 for ; Tue, 30 Sep 2003 19:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h912NRsd023260 for ; Tue, 30 Sep 2003 19:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h912NRH6023259; Tue, 30 Sep 2003 19:23:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310010223.h912NRH6023259@xorpc.icir.org> Date: Tue, 30 Sep 2003 19:23:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html index.html license.html news.html people.html quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/09/30 19:23:27 Modified files: ./: contributing.html cvs.html downloads.html index.html license.html news.html people.html quotes.html Log message: Validate the HTML with an HTML validator (http://www.htmlhelp.com/tools/validator/), and clean-up the errors. The HTML gurus please audit the changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Tue Sep 30 19:29:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 19:30:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h912U4fw020801 for ; Tue, 30 Sep 2003 19:30:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912U0H5060233; Tue, 30 Sep 2003 19:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912U0wG007692; Tue, 30 Sep 2003 19:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912TCwG007674 for ; Tue, 30 Sep 2003 19:29:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912TCH5060226 for ; Tue, 30 Sep 2003 19:29:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h912TCsd023332 for ; Tue, 30 Sep 2003 19:29:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h912TCxF023331; Tue, 30 Sep 2003 19:29:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310010229.h912TCxF023331@xorpc.icir.org> Date: Tue, 30 Sep 2003 19:29:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc print_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: atanu@xorpc.icir.org. 03/09/30 19:29:12 Modified files: xorp/bgp/tools/: print_peer.cc print_routes.cc Log message: Wait for the process to connect to the finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Tue Sep 30 19:48:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 19:49:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h912n5fw024490 for ; Tue, 30 Sep 2003 19:49:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912n1H5060388; Tue, 30 Sep 2003 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912n1wG007965; Tue, 30 Sep 2003 19:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h912m8wG007950 for ; Tue, 30 Sep 2003 19:48:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h912m8H5060385 for ; Tue, 30 Sep 2003 19:48:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h912m8sd023507 for ; Tue, 30 Sep 2003 19:48:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h912m8Sq023506; Tue, 30 Sep 2003 19:48:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310010248.h912m8Sq023506@xorpc.icir.org> Date: Tue, 30 Sep 2003 19:48:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/30 19:48:08 Modified files: xorp/bgp/: bgp.cc Log message: Be more forgiving about the number of outstanding timers there can be. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Tue Sep 30 20:55:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Sep 2003 20:56:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h913u5fw037716 for ; Tue, 30 Sep 2003 20:56:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h913u1H5060861; Tue, 30 Sep 2003 20:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h913u1wG008837; Tue, 30 Sep 2003 20:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h913towG008827 for ; Tue, 30 Sep 2003 20:55:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h913toH5060859 for ; Tue, 30 Sep 2003 20:55:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h913tosd024105 for ; Tue, 30 Sep 2003 20:55:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h913toQL024104; Tue, 30 Sep 2003 20:55:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310010355.h913toQL024104@xorpc.icir.org> Date: Tue, 30 Sep 2003 20:55:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/09/30 20:55:50 Modified files: xorp/bgp/: bgp.cc Log message: Revert to previous version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 9:11:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 09:12:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91GC6fw083651 for ; Wed, 1 Oct 2003 09:12:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91GC2H5068564; Wed, 1 Oct 2003 09:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91GC1wG021148; Wed, 1 Oct 2003 09:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91GBQwG021130 for ; Wed, 1 Oct 2003 09:11:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91GBQH5068562 for ; Wed, 1 Oct 2003 09:11:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91GBPsd002361 for ; Wed, 1 Oct 2003 09:11:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91GBPcn002360; Wed, 1 Oct 2003 09:11:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310011611.h91GBPcn002360@xorpc.icir.org> Date: Wed, 1 Oct 2003 9:11:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.template fea.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 09:11:25 Removed files: xorp/rtrmgr/: config.template fea.boot Log message: R.I.P. October 1, 2003. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 11:33:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 11:34:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91IY6fw012840 for ; Wed, 1 Oct 2003 11:34:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91IY2H5070006; Wed, 1 Oct 2003 11:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91IY1wG024376; Wed, 1 Oct 2003 11:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91IXcwG024352 for ; Wed, 1 Oct 2003 11:33:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91IXcH5070004 for ; Wed, 1 Oct 2003 11:33:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91IXcsd003491 for ; Wed, 1 Oct 2003 11:33:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91IXcfF003490; Wed, 1 Oct 2003 11:33:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310011833.h91IXcfF003490@xorpc.icir.org> Date: Wed, 1 Oct 2003 11:33:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 11:33:38 Modified files: xorp/rtrmgr/: template_commands.hh template_commands.cc Log message: Change list argument in XrlAction::check_xrl_is_valid() to a const reference to avoid a gratuituous copy. Use a string rather than a dynamically character array for cleaned_xrl in XrlAction::check_xrl_is_valid(). It's generally safer and makes more sense in the context (ie the methods that are supplied with the cleaned_xrl take a const string reference so this avoids creating a temporary). s/u_int/uint32_t/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 12:10:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 12:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91JB5fw020095 for ; Wed, 1 Oct 2003 12:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91JB1H5070379; Wed, 1 Oct 2003 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91JB1wG025095; Wed, 1 Oct 2003 12:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91JAWwG025080 for ; Wed, 1 Oct 2003 12:10:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91JAVH5070377 for ; Wed, 1 Oct 2003 12:10:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91JAUsd012571 for ; Wed, 1 Oct 2003 12:10:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91JAUJW012569; Wed, 1 Oct 2003 12:10:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310011910.h91JAUJW012569@xorpc.icir.org> Date: Wed, 1 Oct 2003 12:10:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/10/01 12:10:30 Modified files: ./: config.h.in configure xorp/config/: acipv6.m4 Log message: Refactor the code for testing whether the system supports IPv6 multicast routing. Now we conditionally include and , because those files may not be available (e.g., NetBSD doesn't have , and Linux doesn't have both). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 13:36:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 13:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Kb5fw036577 for ; Wed, 1 Oct 2003 13:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Kb1H5071197; Wed, 1 Oct 2003 13:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91Kb0wG026912; Wed, 1 Oct 2003 13:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91Ka8wG026891 for ; Wed, 1 Oct 2003 13:36:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Ka7H5071185 for ; Wed, 1 Oct 2003 13:36:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Ka7sd038268 for ; Wed, 1 Oct 2003 13:36:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91Ka75F038255; Wed, 1 Oct 2003 13:36:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310012036.h91Ka75F038255@xorpc.icir.org> Date: Wed, 1 Oct 2003 13:36:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ coding-style.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 03/10/01 13:36:07 Modified files: xorp/devnotes/: coding-style.txt Log message: Add suggestion about using temporary references with containers holding pointers. Move kdoc paragraph into new section: "API Documention" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 14:10:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 14:11:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LB4fw043053 for ; Wed, 1 Oct 2003 14:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LB0H5071505; Wed, 1 Oct 2003 14:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LB0wG027727; Wed, 1 Oct 2003 14:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LA5wG027702 for ; Wed, 1 Oct 2003 14:10:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LA5H5071480 for ; Wed, 1 Oct 2003 14:10:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LA5sd051510 for ; Wed, 1 Oct 2003 14:10:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91LA5QJ051509; Wed, 1 Oct 2003 14:10:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310012110.h91LA5QJ051509@xorpc.icir.org> Date: Wed, 1 Oct 2003 14:10:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/01 14:10:05 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Fix the mechanism for setting an Ethernet MAC address to use the appropriate ioctl() in case of NetBSD (not tested yet). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 14:18:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 14:19:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LJ5fw044576 for ; Wed, 1 Oct 2003 14:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LJ1H5071553; Wed, 1 Oct 2003 14:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LJ1wG027892; Wed, 1 Oct 2003 14:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LIpwG027878 for ; Wed, 1 Oct 2003 14:18:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LIoH5071551 for ; Wed, 1 Oct 2003 14:18:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LIosd052048 for ; Wed, 1 Oct 2003 14:18:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91LIos1052047; Wed, 1 Oct 2003 14:18:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310012118.h91LIos1052047@xorpc.icir.org> Date: Wed, 1 Oct 2003 14:18:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 14:18:50 Modified files: xorp/rtrmgr/: module_manager.cc Log message: WS cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:00 2005 Subject: No subject Wed Oct 1 14:20:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 14:21:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LL5fw044989 for ; Wed, 1 Oct 2003 14:21:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LL1H5071582; Wed, 1 Oct 2003 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LL1wG027938; Wed, 1 Oct 2003 14:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91LK3wG027912 for ; Wed, 1 Oct 2003 14:20:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LK3H5071562 for ; Wed, 1 Oct 2003 14:20:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91LK3sd052340 for ; Wed, 1 Oct 2003 14:20:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91LK3SG052339; Wed, 1 Oct 2003 14:20:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310012120.h91LK3SG052339@xorpc.icir.org> Date: Wed, 1 Oct 2003 14:20:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 14:20:03 Modified files: xorp/rtrmgr/: task.cc Log message: Consistency nits. Place some divisions between class implementations to make navigation a little easier. static_cast rather than C cast. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Wed Oct 1 15:46:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 15:47:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Ml5fw074595 for ; Wed, 1 Oct 2003 15:47:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Ml1H5072270; Wed, 1 Oct 2003 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91Ml1wG029836; Wed, 1 Oct 2003 15:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91MkmwG029826 for ; Wed, 1 Oct 2003 15:46:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91MkmH5072268 for ; Wed, 1 Oct 2003 15:46:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Mkmsd059852 for ; Wed, 1 Oct 2003 15:46:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91Mkmpi059851; Wed, 1 Oct 2003 15:46:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310012246.h91Mkmpi059851@xorpc.icir.org> Date: Wed, 1 Oct 2003 15:46:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 15:46:47 Modified files: xorp/rtrmgr/: master_conf_tree.cc Log message: Eliminate an unused variable. Shoot for some internal consistency. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Wed Oct 1 15:49:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 15:50:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Mo5fw075187 for ; Wed, 1 Oct 2003 15:50:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Mo0H5072287; Wed, 1 Oct 2003 15:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91Mo0wG029896; Wed, 1 Oct 2003 15:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h91MnmwG029885 for ; Wed, 1 Oct 2003 15:49:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h91MnmH5072282 for ; Wed, 1 Oct 2003 15:49:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h91Mnlsd059921 for ; Wed, 1 Oct 2003 15:49:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h91Mnldx059920; Wed, 1 Oct 2003 15:49:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310012249.h91Mnldx059920@xorpc.icir.org> Date: Wed, 1 Oct 2003 15:49:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc fticonfig_entry_parse_nlm.cc fticonfig_table_get_netlink.cc fticonfig_table_parse_nlm.cc ifconfig_get_netlink.cc ...ifconfig_parse_nlm.cc ...netlink_socket.cc ...netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/01 15:49:47 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc fticonfig_entry_parse_nlm.cc fticonfig_table_get_netlink.cc fticonfig_table_parse_nlm.cc ifconfig_get_netlink.cc ifconfig_parse_nlm.cc netlink_socket.cc netlink_socket_utils.cc Log message: Add a reference to the netlink(7) manual page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Wed Oct 1 17:14:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 17:15:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h920F5fw091618 for ; Wed, 1 Oct 2003 17:15:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h920F1H5072998; Wed, 1 Oct 2003 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h920F1wG001664; Wed, 1 Oct 2003 17:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h920EpwG001655 for ; Wed, 1 Oct 2003 17:14:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h920EpH5072993 for ; Wed, 1 Oct 2003 17:14:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h920Ensd060809 for ; Wed, 1 Oct 2003 17:14:49 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h920EnwV060808; Wed, 1 Oct 2003 17:14:49 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310020014.h920EnwV060808@xorpc.icir.org> Date: Wed, 1 Oct 2003 17:14:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/01 17:14:49 Modified files: xorp/rtrmgr/: TODO Log message: Add a todo item. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Wed Oct 1 18:12:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 18:13:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h921D4fw009662 for ; Wed, 1 Oct 2003 18:13:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h921D1H5073426; Wed, 1 Oct 2003 18:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h921D0wG002601; Wed, 1 Oct 2003 18:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h921CAwG002583 for ; Wed, 1 Oct 2003 18:12:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h921CAH5073418 for ; Wed, 1 Oct 2003 18:12:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h921CAsd061268 for ; Wed, 1 Oct 2003 18:12:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h921CADP061267; Wed, 1 Oct 2003 18:12:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310020112.h921CADP061267@xorpc.icir.org> Date: Wed, 1 Oct 2003 18:12:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/01 18:12:10 Modified files: xorp/fea/: fticonfig.cc Log message: Change the OS-specific check: #if defined(HOST_OS_FREEBSD) || defined(HOST_OS_NETBSD) || defined(HOST_OS_OPENBSD) to the more generic: #if defined(FOO) && defined(BAR) && defined(...) where FOO, BAR, etc. are the particular values that must be defined. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Wed Oct 1 20:51:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Oct 2003 20:52:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h923q5fw047956 for ; Wed, 1 Oct 2003 20:52:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h923q1H5074570; Wed, 1 Oct 2003 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h923q1wG004707; Wed, 1 Oct 2003 20:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h923pswG004697 for ; Wed, 1 Oct 2003 20:51:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h923psH5074568 for ; Wed, 1 Oct 2003 20:51:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h923pssd062408 for ; Wed, 1 Oct 2003 20:51:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h923ps0c062407; Wed, 1 Oct 2003 20:51:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310020351.h923ps0c062407@xorpc.icir.org> Date: Wed, 1 Oct 2003 20:51:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/10/01 20:51:54 Modified files: xorp/libxorp/: ipnet.hh ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh ipvxnet.hh Log message: Change IPNet::_prefix_len type from size_t to uint32_t. Propagate change such that uint32_t is used for all IP bit related operations. This avoids any size_t <-> uint32_t conversions. NB arguments and return types for operations relating to to byte sizes remain of type size_t. Rationale: size_t can be 64bits on a 64bit platform, which is excessive for an 8bit number. Whilst size_t is defined to be unsigned in C99, there are platforms that still use a signed value. This makes format strings difficult since %z format argument is not widely enough deployed to be useful today. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 8:10:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 08:11:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FB6fw013040 for ; Thu, 2 Oct 2003 08:11:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FB2H5081129; Thu, 2 Oct 2003 08:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92FB1wG015523; Thu, 2 Oct 2003 08:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92FAwwG015514 for ; Thu, 2 Oct 2003 08:10:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FAvH5081126 for ; Thu, 2 Oct 2003 08:10:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FAvsd023149 for ; Thu, 2 Oct 2003 08:10:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92FAvxI023148; Thu, 2 Oct 2003 08:10:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021510.h92FAvxI023148@xorpc.icir.org> Date: Thu, 2 Oct 2003 8:10:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/02 08:10:57 Modified files: ./: config.h.in configure configure.in Log message: Added check for netinet/if_ether.h, because it is needed by OpenBSD-3.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 8:12:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 08:13:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FD5fw014486 for ; Thu, 2 Oct 2003 08:13:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FD1H5081151; Thu, 2 Oct 2003 08:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92FD1wG015560; Thu, 2 Oct 2003 08:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92FCxwG015549 for ; Thu, 2 Oct 2003 08:12:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FCxH5081146 for ; Thu, 2 Oct 2003 08:12:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92FCxsd023181 for ; Thu, 2 Oct 2003 08:12:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92FCxFd023180; Thu, 2 Oct 2003 08:12:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021512.h92FCxFd023180@xorpc.icir.org> Date: Thu, 2 Oct 2003 8:12:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/10/02 08:12:59 Modified files: xorp/libxorp/: ether_compat.h Log message: Conditionally include , because it is needed by OpenBSD-3.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 9:47:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:48:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gm6fw028032 for ; Thu, 2 Oct 2003 09:48:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gm1H5082167; Thu, 2 Oct 2003 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gm1wG017307; Thu, 2 Oct 2003 09:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gl6wG017281 for ; Thu, 2 Oct 2003 09:47:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gl5H5082161 for ; Thu, 2 Oct 2003 09:47:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gl5sd023897 for ; Thu, 2 Oct 2003 09:47:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92Gl5Ol023896; Thu, 2 Oct 2003 09:47:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021647.h92Gl5Ol023896@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:47:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:47:05 Modified files: xorp/rtrmgr/: cli.cc Log message: Adjust the numbers of copied symbols by one in strncpy(), and write '\0' at the end of the array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 9:47:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:48:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gm7fw028047 for ; Thu, 2 Oct 2003 09:48:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gm2H5082169; Thu, 2 Oct 2003 09:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gm2wG017319; Thu, 2 Oct 2003 09:48:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GlwwG017298 for ; Thu, 2 Oct 2003 09:47:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GlwH5082165 for ; Thu, 2 Oct 2003 09:47:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Glwsd023932 for ; Thu, 2 Oct 2003 09:47:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GlwKH023931; Thu, 2 Oct 2003 09:47:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021647.h92GlwKH023931@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:47:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:47:58 Modified files: xorp/cli/: cli_client.cc Log message: Adjust by one the number of copied symbols by strncpy(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 9:49:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:50:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Go5fw028065 for ; Thu, 2 Oct 2003 09:50:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Go1H5082190; Thu, 2 Oct 2003 09:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Go1wG017370; Thu, 2 Oct 2003 09:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GnqwG017361 for ; Thu, 2 Oct 2003 09:49:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GnpH5082185 for ; Thu, 2 Oct 2003 09:49:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gnpsd023965 for ; Thu, 2 Oct 2003 09:49:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92Gnpc0023964; Thu, 2 Oct 2003 09:49:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021649.h92Gnpc0023964@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:49:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:49:51 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:01 2005 Subject: No subject Thu Oct 2 9:51:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:52:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gq5fw028097 for ; Thu, 2 Oct 2003 09:52:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gq1H5082243; Thu, 2 Oct 2003 09:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gq1wG017433; Thu, 2 Oct 2003 09:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GpNwG017398 for ; Thu, 2 Oct 2003 09:51:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GpNH5082239 for ; Thu, 2 Oct 2003 09:51:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GpNsd024046 for ; Thu, 2 Oct 2003 09:51:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GpNb3024045; Thu, 2 Oct 2003 09:51:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021651.h92GpNb3024045@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:51:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorp_if_mib_xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:51:23 Modified files: xorp/mibs/: xorp_if_mib_xrl_target.cc Log message: Write '\0' at the end of the array that a string was copied to by strncpy() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 9:52:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:53:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gr5fw028122 for ; Thu, 2 Oct 2003 09:53:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gr1H5082251; Thu, 2 Oct 2003 09:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gr1wG017467; Thu, 2 Oct 2003 09:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GqbwG017452 for ; Thu, 2 Oct 2003 09:52:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GqbH5082246 for ; Thu, 2 Oct 2003 09:52:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gqbsd024081 for ; Thu, 2 Oct 2003 09:52:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GqbZC024080; Thu, 2 Oct 2003 09:52:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021652.h92GqbZC024080@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:52:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:52:37 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: Adjust the numbers of copied symbols by one in strncpy(), and write '\0' at the end of the array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 9:53:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:54:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gs4fw028137 for ; Thu, 2 Oct 2003 09:54:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gs1H5082268; Thu, 2 Oct 2003 09:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gs0wG017504; Thu, 2 Oct 2003 09:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GrLwG017480 for ; Thu, 2 Oct 2003 09:53:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GrLH5082257 for ; Thu, 2 Oct 2003 09:53:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GrLsd024125 for ; Thu, 2 Oct 2003 09:53:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GrLSQ024124; Thu, 2 Oct 2003 09:53:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021653.h92GrLSQ024124@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:53:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:53:21 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Adjust the numbers of copied symbols by one in strncpy(), and write '\0' at the end of the array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 9:55:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:56:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gu7fw028186 for ; Thu, 2 Oct 2003 09:56:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gu2H5082303; Thu, 2 Oct 2003 09:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gu1wG017575; Thu, 2 Oct 2003 09:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GtGwG017550 for ; Thu, 2 Oct 2003 09:55:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GtGH5082295 for ; Thu, 2 Oct 2003 09:55:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GtGsd024216 for ; Thu, 2 Oct 2003 09:55:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GtGSZ024215; Thu, 2 Oct 2003 09:55:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021655.h92GtGSZ024215@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:55:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:55:16 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Change the type of variable "flags" from int to unsigned int. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 9:55:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:56:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gu8fw028201 for ; Thu, 2 Oct 2003 09:56:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gu2H5082305; Thu, 2 Oct 2003 09:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gu2wG017588; Thu, 2 Oct 2003 09:56:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GtxwG017565 for ; Thu, 2 Oct 2003 09:55:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GtwH5082300 for ; Thu, 2 Oct 2003 09:55:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gtwsd024245 for ; Thu, 2 Oct 2003 09:55:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92Gtw0v024244; Thu, 2 Oct 2003 09:55:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021655.h92Gtw0v024244@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:55:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:55:58 Modified files: xorp/fea/: ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Log message: Adjust the numbers of copied symbols by one in strncpy(), and write '\0' at the end of the array. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 9:58:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 09:59:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gx7fw028231 for ; Thu, 2 Oct 2003 09:59:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Gx1H5082349; Thu, 2 Oct 2003 09:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Gx1wG017670; Thu, 2 Oct 2003 09:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92GwKwG017646 for ; Thu, 2 Oct 2003 09:58:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GwKH5082332 for ; Thu, 2 Oct 2003 09:58:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92GwJsd024296 for ; Thu, 2 Oct 2003 09:58:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92GwJ6I024295; Thu, 2 Oct 2003 09:58:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021658.h92GwJ6I024295@xorpc.icir.org> Date: Thu, 2 Oct 2003 9:58:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 09:58:19 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: * Adjust the numbers of copied symbols by one in strncpy(), and write '\0' at the end of the array. * Change the type of prefix_len from size_t to uint32_t, and fix related debug_msg() formatting problems. * Change the type of mtu from size_t to uint32_t * Nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 16:43:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:04:57 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304QlO000165 for ; Thu, 2 Oct 2003 17:04:57 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Ni1H5086240; Thu, 2 Oct 2003 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Ni1LF026520; Thu, 2 Oct 2003 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92NhILF026506 for ; Thu, 2 Oct 2003 16:43:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92NhIH5086238 for ; Thu, 2 Oct 2003 16:43:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92NhIsd094448 for ; Thu, 2 Oct 2003 16:43:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92NhICN094447; Thu, 2 Oct 2003 16:43:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310022343.h92NhICN094447@xorpc.icir.org> Date: Thu, 2 Oct 2003 16:43:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/02 16:43:18 Modified files: ./: configure.in configure Log message: Minor tweaks to the snmpd_valid variable setup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 15:52:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304Qls000165 for ; Thu, 2 Oct 2003 17:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Mr1H5085738; Thu, 2 Oct 2003 15:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Mr1LF025482; Thu, 2 Oct 2003 15:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92MqVLF025465 for ; Thu, 2 Oct 2003 15:52:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92MqVH5085736 for ; Thu, 2 Oct 2003 15:52:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92MqSsd094060 for ; Thu, 2 Oct 2003 15:52:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92MqSg8094059; Thu, 2 Oct 2003 15:52:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310022252.h92MqSg8094059@xorpc.icir.org> Date: Thu, 2 Oct 2003 15:52:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ work_plan.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/10/02 15:52:28 Modified files: xorp/devnotes/: work_plan.txt Log message: Update workplan. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 12:39:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304Qmi000165 for ; Thu, 2 Oct 2003 17:05:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Je4H5083932; Thu, 2 Oct 2003 12:40:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Je3wG021343; Thu, 2 Oct 2003 12:40:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92JdUwG021330 for ; Thu, 2 Oct 2003 12:39:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92JdUH5083925 for ; Thu, 2 Oct 2003 12:39:30 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92JdTsd043160 for ; Thu, 2 Oct 2003 12:39:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92JdTv7043159; Thu, 2 Oct 2003 12:39:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310021939.h92JdTv7043159@xorpc.icir.org> Date: Thu, 2 Oct 2003 12:39:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_sample_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 03/10/02 12:39:29 Modified files: xorp/rtrmgr/: test_sample_config.cc Log message: Fix path variables to allow cross-directory gmake check to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 11:55:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:18 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304Qmq000165 for ; Thu, 2 Oct 2003 17:05:18 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Iu1H5083525; Thu, 2 Oct 2003 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Iu1wG020442; Thu, 2 Oct 2003 11:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92It6wG020419 for ; Thu, 2 Oct 2003 11:55:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92It6H5083523 for ; Thu, 2 Oct 2003 11:55:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92It6sd025510 for ; Thu, 2 Oct 2003 11:55:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92It6PA025509; Thu, 2 Oct 2003 11:55:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310021855.h92It6PA025509@xorpc.icir.org> Date: Thu, 2 Oct 2003 11:55:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc xrl_pf_stcp.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/02 11:55:06 Modified files: xorp/libxipc/: xrl_pf_stcp.cc xrl_pf_stcp.hh Log message: Add instance id to XrlPFSender and maintain a table of valid instance ids. This allows us to tell if "this" gets deleted during the dispatching of a callback when the sender has died. If so we don't dispatch any further callbacks in the queue on the basis they're not safe. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 10:44:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:20 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304Qn8000165 for ; Thu, 2 Oct 2003 17:05:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Hj1H5082811; Thu, 2 Oct 2003 10:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92Hj1wG018656; Thu, 2 Oct 2003 10:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92HiewG018647 for ; Thu, 2 Oct 2003 10:44:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HieH5082804 for ; Thu, 2 Oct 2003 10:44:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92Hiesd024967 for ; Thu, 2 Oct 2003 10:44:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92Hieio024966; Thu, 2 Oct 2003 10:44:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021744.h92Hieio024966@xorpc.icir.org> Date: Thu, 2 Oct 2003 10:44:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/include/ ip_mroute.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/include/ Changes by: pavlin@xorpc.icir.org. 03/10/02 10:44:40 Modified files: xorp/mrt/include/: ip_mroute.h Log message: Apply the NetBSD hack to see struct igmpmsg to OpenBSD as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 10:18:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:20 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304QnA000165 for ; Thu, 2 Oct 2003 17:05:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HJ1H5082560; Thu, 2 Oct 2003 10:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92HJ1wG018086; Thu, 2 Oct 2003 10:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92HI9wG018061 for ; Thu, 2 Oct 2003 10:18:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HI8H5082547 for ; Thu, 2 Oct 2003 10:18:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HI8sd024512 for ; Thu, 2 Oct 2003 10:18:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92HI8vE024511; Thu, 2 Oct 2003 10:18:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021718.h92HI8vE024511@xorpc.icir.org> Date: Thu, 2 Oct 2003 10:18:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/10/02 10:18:08 Modified files: xorp/libxorp/: ether_compat.h Log message: Include before _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 10:22:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:05:20 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9304QnC000165 for ; Thu, 2 Oct 2003 17:05:20 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HN1H5082609; Thu, 2 Oct 2003 10:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92HN1wG018197; Thu, 2 Oct 2003 10:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h92HMNwG018179 for ; Thu, 2 Oct 2003 10:22:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HMNH5082603 for ; Thu, 2 Oct 2003 10:22:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h92HMNsd024577 for ; Thu, 2 Oct 2003 10:22:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h92HMNxD024576; Thu, 2 Oct 2003 10:22:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310021722.h92HMNxD024576@xorpc.icir.org> Date: Thu, 2 Oct 2003 10:22:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ mac.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/10/02 10:22:23 Modified files: xorp/libxorp/: mac.cc Log message: Work-around nits because of broken ether_aton() declarations that are missing the 'const' in the argument (e.g., OpenBSD-3.3). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:02 2005 Subject: No subject Thu Oct 2 17:10:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h930B5ko001875 for ; Thu, 2 Oct 2003 17:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930B1H5086447; Thu, 2 Oct 2003 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930B0LF026930; Thu, 2 Oct 2003 17:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930ANLF026917 for ; Thu, 2 Oct 2003 17:10:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930ANH5086443 for ; Thu, 2 Oct 2003 17:10:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h930ANsd094695 for ; Thu, 2 Oct 2003 17:10:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h930AN8a094694; Thu, 2 Oct 2003 17:10:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310030010.h930AN8a094694@xorpc.icir.org> Date: Thu, 2 Oct 2003 17:10:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 17:10:23 Modified files: xorp/fea/: ifconfig_get_netlink.cc Log message: Set the value of reserved field ifi_change (in struct ifinfomsg) to 0xffffffff as recommended in the manual page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Thu Oct 2 17:13:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:14:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h930E6ko002332 for ; Thu, 2 Oct 2003 17:14:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930E1H5086461; Thu, 2 Oct 2003 17:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930E1LF026995; Thu, 2 Oct 2003 17:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930DOLF026969 for ; Thu, 2 Oct 2003 17:13:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930DOH5086457 for ; Thu, 2 Oct 2003 17:13:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h930DNsd094767 for ; Thu, 2 Oct 2003 17:13:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h930DNaw094766; Thu, 2 Oct 2003 17:13:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310030013.h930DNaw094766@xorpc.icir.org> Date: Thu, 2 Oct 2003 17:13:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 17:13:23 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Add-back IfTreeInterface::_if_flags (and the appropriate support for it) that is used to store system-specific interface flags (e.g., IFF_UP, etc). Typically, its value is read from the underlying system, and is used only for internal purpose. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Thu Oct 2 17:14:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:15:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h930F5ko002516 for ; Thu, 2 Oct 2003 17:15:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930F1H5086478; Thu, 2 Oct 2003 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930F1LF027031; Thu, 2 Oct 2003 17:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930EeLF027017 for ; Thu, 2 Oct 2003 17:14:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930EeH5086473 for ; Thu, 2 Oct 2003 17:14:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h930Eesd094807 for ; Thu, 2 Oct 2003 17:14:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h930Eesd094806; Thu, 2 Oct 2003 17:14:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310030014.h930Eesd094806@xorpc.icir.org> Date: Thu, 2 Oct 2003 17:14:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 17:14:40 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Log message: * Set the system-specific interface flags to IfTreeInterface as the information is read from the kernel. * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Thu Oct 2 17:27:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:28:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h930S8ko004721 for ; Thu, 2 Oct 2003 17:28:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930S1H5086592; Thu, 2 Oct 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930S1LF027252; Thu, 2 Oct 2003 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930RmLF027230 for ; Thu, 2 Oct 2003 17:27:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930RlH5086588 for ; Thu, 2 Oct 2003 17:27:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h930Rlsd095080 for ; Thu, 2 Oct 2003 17:27:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h930RlmC095079; Thu, 2 Oct 2003 17:27:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310030027.h930RlmC095079@xorpc.icir.org> Date: Thu, 2 Oct 2003 17:27:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/02 17:27:47 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Remove IfGetFlags, the class for getting the interface flags right before we attempt to set the flags. Instead, we use the IfTreeInterface::if_flags() value that was pull-out from the kernel right before we attempt to push the interface-related information into the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Thu Oct 2 17:27:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 17:28:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h930S8ko004722 for ; Thu, 2 Oct 2003 17:28:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930S1H5086590; Thu, 2 Oct 2003 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930S0LF027240; Thu, 2 Oct 2003 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h930R0LF027214 for ; Thu, 2 Oct 2003 17:27:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h930R0H5086581 for ; Thu, 2 Oct 2003 17:27:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h930R0sd095061 for ; Thu, 2 Oct 2003 17:27:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h930R0Bx095060; Thu, 2 Oct 2003 17:27:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310030027.h930R0Bx095060@xorpc.icir.org> Date: Thu, 2 Oct 2003 17:27:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc open_packet.cc packet.cc peer_handler.cc peer_handler_debug.cc rib_ipc_handler.cc route_queue.cc route_table_decision.cc route_table_reader.cc ...route_table_ribin.cc ...route_table_ribout.hh ...test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/02 17:27:00 Modified files: xorp/bgp/: notification_packet.cc open_packet.cc packet.cc peer_handler.cc peer_handler_debug.cc rib_ipc_handler.cc route_queue.cc route_table_decision.cc route_table_reader.cc route_table_ribin.cc route_table_ribout.hh test_packet_coding.cc Log message: #include "libxorp/xlog.h". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Thu Oct 2 22:40:12 2003 Replied: Thu, 02 Oct 2003 23:06:42 -0700 Replied: "pavlin@icir.org xorp-cvs@icir.org" Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Oct 2003 22:41:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h935f5ko067794 for ; Thu, 2 Oct 2003 22:41:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h935f1H5088948; Thu, 2 Oct 2003 22:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h935f1LF001442; Thu, 2 Oct 2003 22:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h935eCLF001406 for ; Thu, 2 Oct 2003 22:40:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h935eCH5088946 for ; Thu, 2 Oct 2003 22:40:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h935eCsd096929 for ; Thu, 2 Oct 2003 22:40:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h935eCuc096928; Thu, 2 Oct 2003 22:40:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310030540.h935eCuc096928@xorpc.icir.org> Date: Thu, 2 Oct 2003 22:40:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/10/02 22:40:12 Modified files: xorp/bgp/: test_plumbing.cc Log message: Replace 0 as the last argument in execlp(3) with NULL. This fixes a compilation error in OpenBSD-3.3 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Fri Oct 03 00:24:14 2003 Return-Path: pavlin@possum.icir.org Delivery-Date: Fri, 03 Oct 2003 00:24:15 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h937OFko084620 for ; Fri, 3 Oct 2003 00:24:15 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h937OFH5089599 for ; Fri, 3 Oct 2003 00:24:15 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h937OFLF002959 for ; Fri, 3 Oct 2003 00:24:15 -0700 (PDT) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.3) with ESMTP id h937OFIK038127; Fri, 3 Oct 2003 00:24:15 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200310030724.h937OFIK038127@possum.icir.org> To: atanu@ICSI.Berkeley.EDU cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_plumbing.cc In-Reply-To: Message from Atanu Ghosh of "Thu, 02 Oct 2003 23:06:42 PDT." <71742.1065161202@tigger.icir.org> Date: Fri, 03 Oct 2003 00:24:14 -0700 From: Pavlin Radoslavov > >>>>> "Pavlin" == Pavlin Radoslavov writes: > > > Pavlin> CVSROOT: /usr/local/share/doc/apache/cvs > Pavlin> Module name: xorp > Pavlin> Repository: xorp/bgp/ > Pavlin> Changes by: pavlin@xorpc.icir.org. 03/10/02 22:40:12 > > Pavlin> Modified files: > Pavlin> xorp/bgp/: test_plumbing.cc > > Pavlin> Log message: > Pavlin> Replace 0 as the last argument in execlp(3) with NULL. > Pavlin> This fixes a compilation error in OpenBSD-3.3 > > What is NULL defined as on OpenBSD-3.3? It is conditionally defined in number of places, so it is unclear which particular value is used, but practically in all cases the definition is something in the lines of (e.g., in ): #ifndef NULL #ifdef __GNUG__ #define NULL __null #else #define NULL 0L #endif #endif I.e., in our case NULL should be defined to __null. I coudn't find the definition of __null, so I guess it must be defined internally in gcc. Pavlin From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Fri Oct 3 11:02:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Oct 2003 11:03:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h93I38ko082181 for ; Fri, 3 Oct 2003 11:03:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h93I32H5097480; Fri, 3 Oct 2003 11:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h93I31LF013816; Fri, 3 Oct 2003 11:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h93I2NLF013798 for ; Fri, 3 Oct 2003 11:02:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h93I2NH5097477 for ; Fri, 3 Oct 2003 11:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h93I2Nsd058706 for ; Fri, 3 Oct 2003 11:02:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h93I2Ng1058705; Fri, 3 Oct 2003 11:02:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310031802.h93I2Ng1058705@xorpc.icir.org> Date: Fri, 3 Oct 2003 11:02:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/10/03 11:02:23 Modified files: xorp/rtrmgr/: module_manager.cc Log message: Compilation fix for OpenBSD with egcc-3.2.2: switch errno -> switch (errno) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Sun Oct 5 12:07:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Oct 2003 12:08:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J87ko059505 for ; Sun, 5 Oct 2003 12:08:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J83H5025598; Sun, 5 Oct 2003 12:08:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h95J81LF022576; Sun, 5 Oct 2003 12:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h95J7GLF022561 for ; Sun, 5 Oct 2003 12:07:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J7GH5025592 for ; Sun, 5 Oct 2003 12:07:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J7Gsd000480 for ; Sun, 5 Oct 2003 12:07:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h95J7Gu7000479; Sun, 5 Oct 2003 12:07:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310051907.h95J7Gu7000479@xorpc.icir.org> Date: Sun, 5 Oct 2003 12:07:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/05 12:07:16 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Added a new field IfTreeInterface::_pif_index (and the corresponding methods to get/set its value) to store the physical interface index for the interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:03 2005 Subject: No subject Sun Oct 5 12:08:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Oct 2003 12:09:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J94ko059652 for ; Sun, 5 Oct 2003 12:09:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J91H5025612; Sun, 5 Oct 2003 12:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h95J90LF022606; Sun, 5 Oct 2003 12:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h95J8vLF022594 for ; Sun, 5 Oct 2003 12:08:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J8vH5025610 for ; Sun, 5 Oct 2003 12:08:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h95J8vsd000818 for ; Sun, 5 Oct 2003 12:08:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h95J8vAb000817; Sun, 5 Oct 2003 12:08:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310051908.h95J8vAb000817@xorpc.icir.org> Date: Sun, 5 Oct 2003 12:08:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/05 12:08:57 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Log message: Set the physical interface index for each interface of type IfTreeInterface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:04 2005 Subject: No subject Mon Oct 6 14:46:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Oct 2003 14:47:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Ll7ko013975 for ; Mon, 6 Oct 2003 14:47:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Ll3H5039889; Mon, 6 Oct 2003 14:47:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Ll1LF015805; Mon, 6 Oct 2003 14:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Lk3LF015784 for ; Mon, 6 Oct 2003 14:46:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Lk3H5039873 for ; Mon, 6 Oct 2003 14:46:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Lk3sd068929 for ; Mon, 6 Oct 2003 14:46:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h96Lk3HJ068928; Mon, 6 Oct 2003 14:46:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310062146.h96Lk3HJ068928@xorpc.icir.org> Date: Mon, 6 Oct 2003 14:46:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_attrib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/06 14:46:02 Modified files: xorp/bgp/: update_attrib.cc Log message: #include "libxorp/xlog.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:04 2005 Subject: No subject Mon Oct 6 15:41:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Oct 2003 15:42:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mg5ko038165 for ; Mon, 6 Oct 2003 15:42:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mg1H5040395; Mon, 6 Oct 2003 15:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Mg1LF017047; Mon, 6 Oct 2003 15:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Mf9LF017027 for ; Mon, 6 Oct 2003 15:41:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mf8H5040391 for ; Mon, 6 Oct 2003 15:41:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mf8sd070451 for ; Mon, 6 Oct 2003 15:41:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h96Mf8ZJ070450; Mon, 6 Oct 2003 15:41:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310062241.h96Mf8ZJ070450@xorpc.icir.org> Date: Mon, 6 Oct 2003 15:41:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc parameter.hh peer_data.cc peer_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/06 15:41:08 Modified files: xorp/bgp/: parameter.cc parameter.hh peer_data.cc peer_data.hh Log message: parameter.{cc,hh} 1) Minor formatting issues. 2) Remove operator== from MultiProtocolCapability and derived classes replaced with a compare method. 3) Create enums to hold AFI and SAFI values. 4) Carry open parameters in ref_ptr's (ParameterNode). peer_data.{cc,hh} 1) Deal with open parameters as lists of ParameterNodes. 2) Add an open_negotiation method that compares the received parameters and the ones that we have sent. From this comparison decide which multiprotocol update packets we should be sending or receiving. 3) Some kdoc'ing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:04 2005 Subject: No subject Mon Oct 6 15:42:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Oct 2003 15:43:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh7ko038700 for ; Mon, 6 Oct 2003 15:43:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh1H5040409; Mon, 6 Oct 2003 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Mh1LF017094; Mon, 6 Oct 2003 15:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96MgLLF017061 for ; Mon, 6 Oct 2003 15:42:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96MgLH5040401 for ; Mon, 6 Oct 2003 15:42:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h96MgLsd070490 for ; Mon, 6 Oct 2003 15:42:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h96MgLOH070489; Mon, 6 Oct 2003 15:42:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310062242.h96MgLOH070489@xorpc.icir.org> Date: Mon, 6 Oct 2003 15:42:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/06 15:42:21 Added files: xorp/bgp/: test_peer_data.cc Log message: Test program to test the open negotiation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:04 2005 Subject: No subject Mon Oct 6 15:42:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Oct 2003 15:43:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh9ko038738 for ; Mon, 6 Oct 2003 15:43:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh2H5040411; Mon, 6 Oct 2003 15:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Mh2LF017106; Mon, 6 Oct 2003 15:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96MgeLF017073 for ; Mon, 6 Oct 2003 15:42:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96MgeH5040403 for ; Mon, 6 Oct 2003 15:42:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mgesd070515 for ; Mon, 6 Oct 2003 15:42:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h96Mge9B070514; Mon, 6 Oct 2003 15:42:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310062242.h96Mge9B070514@xorpc.icir.org> Date: Mon, 6 Oct 2003 15:42:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/06 15:42:40 Modified files: xorp/bgp/: .cvsignore Log message: Test program to test the open negotiation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:04 2005 Subject: No subject Mon Oct 6 15:42:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Oct 2003 15:43:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh9ko038757 for ; Mon, 6 Oct 2003 15:43:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mh3H5040413; Mon, 6 Oct 2003 15:43:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96Mh3LF017118; Mon, 6 Oct 2003 15:43:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h96MgpLF017082 for ; Mon, 6 Oct 2003 15:42:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h96MgoH5040407 for ; Mon, 6 Oct 2003 15:42:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h96Mgosd070533 for ; Mon, 6 Oct 2003 15:42:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h96Mgo9Q070532; Mon, 6 Oct 2003 15:42:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310062242.h96Mgo9Q070532@xorpc.icir.org> Date: Mon, 6 Oct 2003 15:42:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/06 15:42:50 Modified files: xorp/bgp/: Makefile.am Makefile.in Log message: Test program to test the open negotiation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:05 2005 Subject: No subject Tue Oct 7 10:24:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Oct 2003 10:25:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h97HP5ko026503 for ; Tue, 7 Oct 2003 10:25:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h97HP1H5051200; Tue, 7 Oct 2003 10:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h97HP1LF005836; Tue, 7 Oct 2003 10:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h97HOTLF005783 for ; Tue, 7 Oct 2003 10:24:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h97HOTH5051187 for ; Tue, 7 Oct 2003 10:24:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h97HOSsd034697 for ; Tue, 7 Oct 2003 10:24:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h97HOSrm034696; Tue, 7 Oct 2003 10:24:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310071724.h97HOSrm034696@xorpc.icir.org> Date: Tue, 7 Oct 2003 10:24:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/10/07 10:24:28 Modified files: xorp/rip/: update_queue.hh Log message: Substitute an instance of with . _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:05 2005 Subject: No subject Tue Oct 7 12:22:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Oct 2003 12:23:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h97JN5ko044303 for ; Tue, 7 Oct 2003 12:23:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h97JN1H5052496; Tue, 7 Oct 2003 12:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h97JN1LF008510; Tue, 7 Oct 2003 12:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h97JMTLF008487 for ; Tue, 7 Oct 2003 12:22:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h97JMSH5052492 for ; Tue, 7 Oct 2003 12:22:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h97JMSsd046097 for ; Tue, 7 Oct 2003 12:22:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h97JMS4H046093; Tue, 7 Oct 2003 12:22:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310071922.h97JMS4H046093@xorpc.icir.org> Date: Tue, 7 Oct 2003 12:22:27 () To: xorp-cvs@icir.org Reply-To: status@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: status@xorpc.icir.org. 03/10/07 12:22:27 Modified files: ./: configure.in configure config.h.in Log message: If we have netlink sockets, then we unconditionally set HAVE_NETLINK_SOCKETS_SET_MTU_IS_BROKEN and HAVE_NETLINK_SOCKETS_SET_FLAGS_IS_BROKEN to 1. The reason is because if we attempt to set the MTU or the interface flags on a Linux system (e.g., Linux RedHat-7.x with kernel 2.4-x), this is a no-op: nothing happens, but the kernel doesn't return an error. The test whether we can really set the MTU and the interface flags in the kernel is rather complicated, and would require root privileges. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:05 2005 Subject: No subject Wed Oct 8 10:45:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 10:46:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h98HkAko088221 for ; Wed, 8 Oct 2003 10:46:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h98Hk5H5065541; Wed, 8 Oct 2003 10:46:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h98Hk3LF001926; Wed, 8 Oct 2003 10:46:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h98HjxLF001913 for ; Wed, 8 Oct 2003 10:45:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h98HjwH5065539 for ; Wed, 8 Oct 2003 10:45:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h98Hjwsd056463 for ; Wed, 8 Oct 2003 10:45:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h98HjwGM056462; Wed, 8 Oct 2003 10:45:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310081745.h98HjwGM056462@xorpc.icir.org> Date: Wed, 8 Oct 2003 10:45:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/08 10:45:58 Modified files: xorp/fea/: ifconfig.hh ifconfig.cc Log message: Add IfConfigUpdateReplicator - a class to forward ifconfig updates to multiple interested parties. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:06 2005 Subject: No subject Wed Oct 8 15:35:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 15:36:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h98Ma5ko044296 for ; Wed, 8 Oct 2003 15:36:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h98Ma1H5068241; Wed, 8 Oct 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h98Ma1LF008710; Wed, 8 Oct 2003 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h98MZfLF008696 for ; Wed, 8 Oct 2003 15:35:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h98MZeH5068239 for ; Wed, 8 Oct 2003 15:35:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h98MZesd013416 for ; Wed, 8 Oct 2003 15:35:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h98MZe0G013415; Wed, 8 Oct 2003 15:35:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310082235.h98MZe0G013415@xorpc.icir.org> Date: Wed, 8 Oct 2003 15:35:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/08 15:35:40 Modified files: xorp/fea/: ifconfig.hh ifconfig.cc Log message: * Add new method IfConfig::get_ifindex() that returns the interface index mapped to an interface name. * Use the appropriate #ifdef around if_indextoname() and if_nametoindex() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:06 2005 Subject: No subject Wed Oct 8 17:06:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 17:07:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99075ko061910 for ; Wed, 8 Oct 2003 17:07:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99071H5069070; Wed, 8 Oct 2003 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99071LF010858; Wed, 8 Oct 2003 17:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9906WLF010844 for ; Wed, 8 Oct 2003 17:06:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9906VH5069068 for ; Wed, 8 Oct 2003 17:06:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9906Vsd014239 for ; Wed, 8 Oct 2003 17:06:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9906V2c014238; Wed, 8 Oct 2003 17:06:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310090006.h9906V2c014238@xorpc.icir.org> Date: Wed, 8 Oct 2003 17:06:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/08 17:06:31 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: * Add a missing definition of IfConfigSetIoctl::push_config(() if the system doesn't have ioctl(SIOCGIFCONF) * Use the internal ifname->ifindex map to obtain the interface index rather than calling if_nametoindex(3) * If the MAC address doesn't change when we attemt to set it, then the action is no-op. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:07 2005 Subject: No subject Wed Oct 8 17:11:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 17:12:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h990C4ko062888 for ; Wed, 8 Oct 2003 17:12:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h990C0H5069126; Wed, 8 Oct 2003 17:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h990C0LF010971; Wed, 8 Oct 2003 17:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h990B2LF010938 for ; Wed, 8 Oct 2003 17:11:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h990B2H5069115 for ; Wed, 8 Oct 2003 17:11:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h990B2sd014369 for ; Wed, 8 Oct 2003 17:11:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h990B2g9014368; Wed, 8 Oct 2003 17:11:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310090011.h990B2g9014368@xorpc.icir.org> Date: Wed, 8 Oct 2003 17:11:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_set.hh xorp/fea/ ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/08 17:11:02 Modified files: xorp/fea/: Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_set.hh Added files: xorp/fea/: ifconfig_set_netlink.cc Log message: A first-cut support for setting network interfaces using Linux netlink mechanism. The implementation appears to work, but later the code along with the existing ioctl() mechanism for interface setip will be refactored (mostly simplification/unification and cleanup). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:07 2005 Subject: No subject Wed Oct 8 18:00:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 18:01:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99115ko070116 for ; Wed, 8 Oct 2003 18:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99111H5069551; Wed, 8 Oct 2003 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99111LF011937; Wed, 8 Oct 2003 18:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9910jLF011925 for ; Wed, 8 Oct 2003 18:00:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9910jH5069549 for ; Wed, 8 Oct 2003 18:00:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9910jsd014715 for ; Wed, 8 Oct 2003 18:00:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9910jJ3014714; Wed, 8 Oct 2003 18:00:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310090100.h9910jJ3014714@xorpc.icir.org> Date: Wed, 8 Oct 2003 18:00:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/10/08 18:00:45 Modified files: ./: index.html news.html Log message: Add xorp-hackers mailing list references. s/Xorp/XORP/. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:07 2005 Subject: No subject Wed Oct 8 18:01:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 18:02:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99125ko070277 for ; Wed, 8 Oct 2003 18:02:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99121H5069565; Wed, 8 Oct 2003 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99121LF011990; Wed, 8 Oct 2003 18:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99114LF011946 for ; Wed, 8 Oct 2003 18:01:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99113H5069553 for ; Wed, 8 Oct 2003 18:01:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h99113sd014742 for ; Wed, 8 Oct 2003 18:01:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h99113LB014741; Wed, 8 Oct 2003 18:01:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310090101.h99113LB014741@xorpc.icir.org> Date: Wed, 8 Oct 2003 18:01:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/10/08 18:01:03 Modified files: ./: contributing.html quotes.html Log message: s/Xorp/XORP/ in relevant places. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:07 2005 Subject: No subject Wed Oct 8 18:08:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Oct 2003 18:09:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99195ko071306 for ; Wed, 8 Oct 2003 18:09:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99192H5069621; Wed, 8 Oct 2003 18:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99191LF012190; Wed, 8 Oct 2003 18:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9918OLF012168 for ; Wed, 8 Oct 2003 18:08:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9918OH5069619 for ; Wed, 8 Oct 2003 18:08:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9918Osd014836 for ; Wed, 8 Oct 2003 18:08:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9918Okw014835; Wed, 8 Oct 2003 18:08:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310090108.h9918Okw014835@xorpc.icir.org> Date: Wed, 8 Oct 2003 18:08:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp2.png Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/10/08 18:08:24 Modified files: ./: xorp2.png Log message: Try a different logo for a while. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:07 2005 Subject: No subject Thu Oct 9 9:26:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Oct 2003 09:27:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99GR6ko011022 for ; Thu, 9 Oct 2003 09:27:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99GR2H5078599; Thu, 9 Oct 2003 09:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99GR1LF028243; Thu, 9 Oct 2003 09:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99GQdLF028226 for ; Thu, 9 Oct 2003 09:26:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99GQdH5078594 for ; Thu, 9 Oct 2003 09:26:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h99GQdsd077342 for ; Thu, 9 Oct 2003 09:26:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h99GQd4N077341; Thu, 9 Oct 2003 09:26:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310091626.h99GQd4N077341@xorpc.icir.org> Date: Thu, 9 Oct 2003 9:26:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html ./ the-extensible-20.png Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/10/09 09:26:39 Modified files: ./: index.html Added files: ./: the-extensible-20.png Log message: Add "the extensible open router text" as graphic. Fix formatting nit with email address table on konq and netscape. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:08 2005 Subject: No subject Thu Oct 9 12:19:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Oct 2003 12:20:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h99JK6ko041250 for ; Thu, 9 Oct 2003 12:20:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99JK2H5080456; Thu, 9 Oct 2003 12:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99JK0LF002767; Thu, 9 Oct 2003 12:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h99JJbLF002751 for ; Thu, 9 Oct 2003 12:19:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h99JJbH5080446 for ; Thu, 9 Oct 2003 12:19:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h99JJbsd088788 for ; Thu, 9 Oct 2003 12:19:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h99JJbpQ088787; Thu, 9 Oct 2003 12:19:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310091919.h99JJbpQ088787@xorpc.icir.org> Date: Thu, 9 Oct 2003 12:19:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/10/09 12:19:37 Modified files: xorp/rib/: .cvsignore Log message: Added test_deletion to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:08 2005 Subject: No subject Thu Oct 9 20:10:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Oct 2003 20:11:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9A3B6ko027025 for ; Thu, 9 Oct 2003 20:11:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9A3B2H5084944; Thu, 9 Oct 2003 20:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9A3B0LF012940; Thu, 9 Oct 2003 20:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9A3AdLF012921 for ; Thu, 9 Oct 2003 20:10:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9A3AdH5084942 for ; Thu, 9 Oct 2003 20:10:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9A3Acsd036650 for ; Thu, 9 Oct 2003 20:10:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9A3Ac0M036649; Thu, 9 Oct 2003 20:10:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310100310.h9A3Ac0M036649@xorpc.icir.org> Date: Thu, 9 Oct 2003 20:10:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/09 20:10:38 Modified files: ./: news.html Log message: * Correct the date when xorp-hackers was created * Add missing
    ...
around October's events. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:08 2005 Subject: No subject Fri Oct 10 11:50:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 11:51:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIp7ko076599 for ; Fri, 10 Oct 2003 11:51:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIp1H5094605; Fri, 10 Oct 2003 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AIp1LF029604; Fri, 10 Oct 2003 11:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AIoZLF029586 for ; Fri, 10 Oct 2003 11:50:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIoYH5094601 for ; Fri, 10 Oct 2003 11:50:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIoYsd099785 for ; Fri, 10 Oct 2003 11:50:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9AIoYPj099784; Fri, 10 Oct 2003 11:50:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310101850.h9AIoYPj099784@xorpc.icir.org> Date: Fri, 10 Oct 2003 11:50:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in xorp/libxorp/ service.cc service.hh test_service.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/10/10 11:50:34 Modified files: xorp/libxorp/: Makefile.am Makefile.in Added files: xorp/libxorp/: service.cc service.hh test_service.cc Log message: Add service base class and observer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:09 2005 Subject: No subject Fri Oct 10 11:51:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 11:52:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIq4ko076808 for ; Fri, 10 Oct 2003 11:52:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIq1H5094617; Fri, 10 Oct 2003 11:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AIq0LF029639; Fri, 10 Oct 2003 11:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AIpxLF029629 for ; Fri, 10 Oct 2003 11:51:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIpxH5094613 for ; Fri, 10 Oct 2003 11:51:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AIpxsd099832 for ; Fri, 10 Oct 2003 11:51:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9AIpxmg099831; Fri, 10 Oct 2003 11:51:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310101851.h9AIpxmg099831@xorpc.icir.org> Date: Fri, 10 Oct 2003 11:51:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/10/10 11:51:59 Modified files: xorp/libxorp/: .cvsignore Log message: Ignore test_service. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:09 2005 Subject: No subject Fri Oct 10 14:58:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 14:59:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ALx5ko019331 for ; Fri, 10 Oct 2003 14:59:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ALx1H5096457; Fri, 10 Oct 2003 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9ALx1LF004009; Fri, 10 Oct 2003 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9ALwvLF003996 for ; Fri, 10 Oct 2003 14:58:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ALwvH5096455 for ; Fri, 10 Oct 2003 14:58:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ALwvsd056313 for ; Fri, 10 Oct 2003 14:58:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ALwvJd056312; Fri, 10 Oct 2003 14:58:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310102158.h9ALwvJd056312@xorpc.icir.org> Date: Fri, 10 Oct 2003 14:58:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: hodson@xorpc.icir.org. 03/10/10 14:58:56 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc Log message: typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:09 2005 Subject: No subject Fri Oct 10 15:42:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 15:43:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMh5ko028783 for ; Fri, 10 Oct 2003 15:43:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMh1H5096806; Fri, 10 Oct 2003 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AMh1LF004857; Fri, 10 Oct 2003 15:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AMggLF004847 for ; Fri, 10 Oct 2003 15:42:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMggH5096804 for ; Fri, 10 Oct 2003 15:42:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMggsd056738 for ; Fri, 10 Oct 2003 15:42:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9AMggT4056737; Fri, 10 Oct 2003 15:42:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310102242.h9AMggT4056737@xorpc.icir.org> Date: Fri, 10 Oct 2003 15:42:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/10 15:42:42 Modified files: xorp/bgp/: parameter.hh peer_data.cc Log message: Change the enumns for AFI and SAFI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:09 2005 Subject: No subject Fri Oct 10 15:43:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 15:44:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMi5ko029157 for ; Fri, 10 Oct 2003 15:44:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMi1H5096818; Fri, 10 Oct 2003 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AMi1LF004886; Fri, 10 Oct 2003 15:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9AMhHLF004873 for ; Fri, 10 Oct 2003 15:43:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMhGH5096812 for ; Fri, 10 Oct 2003 15:43:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9AMhGsd056768 for ; Fri, 10 Oct 2003 15:43:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9AMhG1v056767; Fri, 10 Oct 2003 15:43:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310102243.h9AMhG1v056767@xorpc.icir.org> Date: Fri, 10 Oct 2003 15:43:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/10 15:43:16 Modified files: xorp/bgp/: parameter.cc Log message: Simplify the extraction of the AFI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:09 2005 Subject: No subject Fri Oct 10 20:17:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 20:18:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3I6ko005907 for ; Fri, 10 Oct 2003 20:18:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3I1H5099037; Fri, 10 Oct 2003 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3I1LF009425; Fri, 10 Oct 2003 20:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3HwLF009416 for ; Fri, 10 Oct 2003 20:17:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3HwH5099035 for ; Fri, 10 Oct 2003 20:17:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3Hwsd076983 for ; Fri, 10 Oct 2003 20:17:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9B3HwGm076982; Fri, 10 Oct 2003 20:17:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310110317.h9B3HwGm076982@xorpc.icir.org> Date: Fri, 10 Oct 2003 20:17:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh peer.cc peer_handler.cc peer_handler.hh peer_handler_debug.cc plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_nhlookup.cc ...test_plumbing.cc ...test_plumbing.hh ...test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/10 20:17:57 Modified files: xorp/bgp/: bgp.cc bgp.hh peer.cc peer_handler.cc peer_handler.hh peer_handler_debug.cc plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_nhlookup.cc test_plumbing.cc test_plumbing.hh test_ribin.cc Log message: Add IPv4 and IPv6 RIBs for multicast put another way SAFI = 2. Not yet working: 1) The XRL routing table lookup code only works for IPv4 unicast. 2) The XRL debugging interface to originate routes only works for IPv4 unicast. 3) There are currently two instances of the next hop resolver. This will need to be changed. This is not currently an issue as there is no way to get a route into the multicast RIBs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Fri Oct 10 20:31:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 20:32:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3W4ko014069 for ; Fri, 10 Oct 2003 20:32:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3W0H5099139; Fri, 10 Oct 2003 20:32:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3W0LF009603; Fri, 10 Oct 2003 20:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3V1LF009575 for ; Fri, 10 Oct 2003 20:31:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3V1H5099137 for ; Fri, 10 Oct 2003 20:31:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3V1sd077109 for ; Fri, 10 Oct 2003 20:31:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9B3V1ft077108; Fri, 10 Oct 2003 20:31:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310110331.h9B3V1ft077108@xorpc.icir.org> Date: Fri, 10 Oct 2003 20:31:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_mac.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/10/10 20:31:01 Modified files: xorp/libxorp/: test_mac.cc Log message: Added a test to convert EtherMac to ether_addr representation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Fri Oct 10 20:34:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Oct 2003 20:35:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3Z4ko014645 for ; Fri, 10 Oct 2003 20:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3Z1H5099158; Fri, 10 Oct 2003 20:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3Z0LF009658; Fri, 10 Oct 2003 20:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9B3YkLF009648 for ; Fri, 10 Oct 2003 20:34:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3YkH5099151 for ; Fri, 10 Oct 2003 20:34:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9B3Yksd077156 for ; Fri, 10 Oct 2003 20:34:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9B3YkdT077155; Fri, 10 Oct 2003 20:34:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310110334.h9B3YkdT077155@xorpc.icir.org> Date: Fri, 10 Oct 2003 20:34:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ mac.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/10/10 20:34:46 Modified files: xorp/libxorp/: mac.hh Log message: Added Equality Operator for EtherMac addresses. This operator uses binary comparison between the real Ethernet addresses rather than string comparison of the Mac address representation (e.g., see the Equality Operator for Mac). Example: "00:04:5A:49:5D:10" and "0:4:5a:49:5d:10" are different strings, but they represent the same Ethernet address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Sat Oct 11 12:47:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 12:48:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BJm5ko079881 for ; Sat, 11 Oct 2003 12:48:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BJm1H5010388; Sat, 11 Oct 2003 12:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BJm0LF022873; Sat, 11 Oct 2003 12:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BJlcLF022862 for ; Sat, 11 Oct 2003 12:47:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BJlcH5010386 for ; Sat, 11 Oct 2003 12:47:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BJlbsd060611 for ; Sat, 11 Oct 2003 12:47:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9BJlban060610; Sat, 11 Oct 2003 12:47:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310111947.h9BJlban060610@xorpc.icir.org> Date: Sat, 11 Oct 2003 12:47:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 12:47:37 Modified files: xorp/fea/: ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: * Refactor the network interface setup machinery * If a network interface is not DOWN, then explicitly fail to setup the MAC address on an interface and return a meaningful error. The reason is because in case of Linux if an interface is not DOWN when attempting to set the MAC address, the system call fails and returns a cryptic error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Sat Oct 11 15:08:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 15:09:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BM95ko000697 for ; Sat, 11 Oct 2003 15:09:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BM91H5011329; Sat, 11 Oct 2003 15:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BM91LF024593; Sat, 11 Oct 2003 15:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BM8JLF024568 for ; Sat, 11 Oct 2003 15:08:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BM8JH5011319 for ; Sat, 11 Oct 2003 15:08:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BM8Jsd006996 for ; Sat, 11 Oct 2003 15:08:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9BM8I0t006995; Sat, 11 Oct 2003 15:08:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310112208.h9BM8I0t006995@xorpc.icir.org> Date: Sat, 11 Oct 2003 15:08:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 15:08:18 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Added a new method IfTree::clear() that removes all interface state from the interface tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Sat Oct 11 15:13:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 15:14:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BME4ko001485 for ; Sat, 11 Oct 2003 15:14:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BME1H5011370; Sat, 11 Oct 2003 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BME1LF024687; Sat, 11 Oct 2003 15:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BMDULF024676 for ; Sat, 11 Oct 2003 15:13:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMDUH5011368 for ; Sat, 11 Oct 2003 15:13:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMDUsd007475 for ; Sat, 11 Oct 2003 15:13:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9BMDU3T007474; Sat, 11 Oct 2003 15:13:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310112213.h9BMDU3T007474@xorpc.icir.org> Date: Sat, 11 Oct 2003 15:13:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 15:13:30 Modified files: xorp/fea/: ifconfig.cc Log message: Clear the old interface tree state when pulling the interface confiuguration from the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:10 2005 Subject: No subject Sat Oct 11 15:14:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 15:15:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMF5ko001651 for ; Sat, 11 Oct 2003 15:15:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMF1H5011387; Sat, 11 Oct 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BMF1LF024715; Sat, 11 Oct 2003 15:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9BMEvLF024705 for ; Sat, 11 Oct 2003 15:14:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMEvH5011382 for ; Sat, 11 Oct 2003 15:14:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9BMEvsd007516 for ; Sat, 11 Oct 2003 15:14:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9BMEvel007515; Sat, 11 Oct 2003 15:14:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310112214.h9BMEvel007515@xorpc.icir.org> Date: Sat, 11 Oct 2003 15:14:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 15:14:57 Modified files: xorp/fea/: ifconfig_set.cc Log message: * Fix the logic for assigning the interface flags * Don't attempt to set the interface flags into the underlying system if nothing has changed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sat Oct 11 19:26:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 19:27:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2R5ko038444 for ; Sat, 11 Oct 2003 19:27:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2R1H5013055; Sat, 11 Oct 2003 19:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2R0LF027354; Sat, 11 Oct 2003 19:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2QpLF027344 for ; Sat, 11 Oct 2003 19:26:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2QpH5013053 for ; Sat, 11 Oct 2003 19:26:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2Qpsd009015 for ; Sat, 11 Oct 2003 19:26:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9C2QpjS009014; Sat, 11 Oct 2003 19:26:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310120226.h9C2QpjS009014@xorpc.icir.org> Date: Sat, 11 Oct 2003 19:26:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 19:26:51 Modified files: xorp/fea/: ifconfig_set.cc Log message: Take the value of the current interface flags from the configuration that was pulled-up from the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sat Oct 11 19:30:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 19:31:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2V5ko039043 for ; Sat, 11 Oct 2003 19:31:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2V1H5013098; Sat, 11 Oct 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2V1LF027408; Sat, 11 Oct 2003 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2UTLF027396 for ; Sat, 11 Oct 2003 19:30:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2UTH5013094 for ; Sat, 11 Oct 2003 19:30:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2UTsd009096 for ; Sat, 11 Oct 2003 19:30:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9C2UTwL009095; Sat, 11 Oct 2003 19:30:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310120230.h9C2UTwL009095@xorpc.icir.org> Date: Sat, 11 Oct 2003 19:30:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.hh ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 19:30:29 Modified files: xorp/fea/: ifconfig_set.hh ifconfig_set_netlink.cc Log message: Implement reliable interface configuration setup: - When writing a a configuration setup request to the netlink socket, set the NLM_F_ACK flag, thus forcing the kernel to return an acknowledge for each request. - After the request is written-down to the kernel, force reading of data from the socket. The data that was read must contain NLMSG_ERROR with the error field set to 0. Otherwise, the request has failed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sat Oct 11 19:43:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Oct 2003 19:44:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2i5ko040934 for ; Sat, 11 Oct 2003 19:44:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2i1H5013183; Sat, 11 Oct 2003 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2i1LF027558; Sat, 11 Oct 2003 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9C2hZLF027548 for ; Sat, 11 Oct 2003 19:43:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2hZH5013181 for ; Sat, 11 Oct 2003 19:43:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9C2hZsd009202 for ; Sat, 11 Oct 2003 19:43:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9C2hZLF009201; Sat, 11 Oct 2003 19:43:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310120243.h9C2hZLF009201@xorpc.icir.org> Date: Sat, 11 Oct 2003 19:43:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.hh ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/11 19:43:35 Modified files: xorp/fea/: ifconfig_set.hh ifconfig_set_netlink.cc Log message: * Kdoc-ification * Rename IfConfigSetNetlink::check_request() to check_netlink_request() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 9:20:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 09:21:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CGL7ko064057 for ; Sun, 12 Oct 2003 09:21:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CGL3H5020354; Sun, 12 Oct 2003 09:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9CGL1LF008117; Sun, 12 Oct 2003 09:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.9/8.12.9) with ESMTP id h9CGKYLF008105 for ; Sun, 12 Oct 2003 09:20:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CGKYH5020352 for ; Sun, 12 Oct 2003 09:20:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CGKYsd070962 for ; Sun, 12 Oct 2003 09:20:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CGKY0D070961; Sun, 12 Oct 2003 09:20:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310121620.h9CGKY0D070961@xorpc.icir.org> Date: Sun, 12 Oct 2003 9:20:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html the-extensible-20.png Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 03/10/12 09:20:33 Modified files: ./: index.html the-extensible-20.png Log message: s/router project/router platform/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 15:05:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 15:06:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM65ko014835 for ; Sun, 12 Oct 2003 15:06:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM61H5022735; Sun, 12 Oct 2003 15:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CM61eb012467; Sun, 12 Oct 2003 15:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CM5seb012456 for ; Sun, 12 Oct 2003 15:05:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM5sH5022733 for ; Sun, 12 Oct 2003 15:05:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM5ssd034661 for ; Sun, 12 Oct 2003 15:05:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CM5swD034660; Sun, 12 Oct 2003 15:05:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310122205.h9CM5swD034660@xorpc.icir.org> Date: Sun, 12 Oct 2003 15:05:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.hh ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 15:05:54 Modified files: xorp/fea/: ifconfig_set.hh ifconfig_set_netlink.cc Log message: Remove unused private variables from class IfConfigSetNetlink _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 15:07:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 15:08:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM85ko015139 for ; Sun, 12 Oct 2003 15:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM81H5022761; Sun, 12 Oct 2003 15:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CM81eb012498; Sun, 12 Oct 2003 15:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CM77eb012486 for ; Sun, 12 Oct 2003 15:07:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM77H5022747 for ; Sun, 12 Oct 2003 15:07:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CM77sd034701 for ; Sun, 12 Oct 2003 15:07:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CM77bC034700; Sun, 12 Oct 2003 15:07:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310122207.h9CM77bC034700@xorpc.icir.org> Date: Sun, 12 Oct 2003 15:07:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 15:07:07 Modified files: xorp/fea/: fticonfig_entry_set_rtsock.cc Log message: Replace #define RTMBUFSIZE with "static const size_t buffer_size" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 15:13:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 15:14:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CME5ko016033 for ; Sun, 12 Oct 2003 15:14:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CME1H5022795; Sun, 12 Oct 2003 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CME1eb012616; Sun, 12 Oct 2003 15:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CMDmeb012605 for ; Sun, 12 Oct 2003 15:13:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMDmH5022791 for ; Sun, 12 Oct 2003 15:13:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMDlsd034802 for ; Sun, 12 Oct 2003 15:13:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CMDlKi034801; Sun, 12 Oct 2003 15:13:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310122213.h9CMDlKi034801@xorpc.icir.org> Date: Sun, 12 Oct 2003 15:13:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 15:13:47 Modified files: xorp/fea/: netlink_socket_utils.hh Log message: Conditionally define RTPROT_XORP to 14 This is the protocol value used by XORP to install routes into Linux kernel. This value must be unuque among all RTPROT_* protocols defined in Note that the particular value of 14 is probably temporary until RTPROT_XORP is added to the list of protocols in Also, this conditional #define probably should go to some more appropriate system-specific header file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 15:15:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 15:16:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMG5ko016349 for ; Sun, 12 Oct 2003 15:16:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMG1H5022833; Sun, 12 Oct 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CMG1eb012655; Sun, 12 Oct 2003 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CMFxeb012643 for ; Sun, 12 Oct 2003 15:15:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMFxH5022831 for ; Sun, 12 Oct 2003 15:15:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMFxsd034888 for ; Sun, 12 Oct 2003 15:15:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CMFxiv034887; Sun, 12 Oct 2003 15:15:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310122215.h9CMFxiv034887@xorpc.icir.org> Date: Sun, 12 Oct 2003 15:15:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 15:15:59 Modified files: xorp/fea/: netlink_socket_utils.cc Log message: * Set the xorp_route flag if the routing entry that was read from the kernel was installed by XORP * When reading routing entry from the kernel, read the route metric and admin distance (if present). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 15:19:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 15:20:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMK5ko016936 for ; Sun, 12 Oct 2003 15:20:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMK1H5022854; Sun, 12 Oct 2003 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CMK1eb012704; Sun, 12 Oct 2003 15:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9CMJCeb012690 for ; Sun, 12 Oct 2003 15:19:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMJCH5022845 for ; Sun, 12 Oct 2003 15:19:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9CMJCsd035011 for ; Sun, 12 Oct 2003 15:19:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9CMJC5s035010; Sun, 12 Oct 2003 15:19:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310122219.h9CMJC5s035010@xorpc.icir.org> Date: Sun, 12 Oct 2003 15:19:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_set.hh fticonfig_table_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 15:19:12 Modified files: xorp/fea/: fticonfig_table_set.hh fticonfig_table_set_rtsock.cc Log message: Remove RoutingSocket as a base class for FtiConfigTableSetRtsock, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 19:05:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 19:07:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D275ko050027 for ; Sun, 12 Oct 2003 19:07:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D271H5024447; Sun, 12 Oct 2003 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D270eb015174; Sun, 12 Oct 2003 19:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D264eb015147 for ; Sun, 12 Oct 2003 19:06:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D25kH5024438 for ; Sun, 12 Oct 2003 19:05:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D25jsd037246 for ; Sun, 12 Oct 2003 19:05:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9D25joi037245; Sun, 12 Oct 2003 19:05:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310130205.h9D25joi037245@xorpc.icir.org> Date: Sun, 12 Oct 2003 19:05:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 19:05:45 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_netlink.cc Log message: * Replace "#define RTMBUFSIZE" with "static const size_t buffer_size" * Rename "rtmbuf" to "buffer" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 19:17:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 19:18:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2I4ko051626 for ; Sun, 12 Oct 2003 19:18:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2I1H5024526; Sun, 12 Oct 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2I1eb015318; Sun, 12 Oct 2003 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2HZeb015307 for ; Sun, 12 Oct 2003 19:17:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2HZH5024520 for ; Sun, 12 Oct 2003 19:17:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2HZsd037385 for ; Sun, 12 Oct 2003 19:17:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9D2HZ9A037384; Sun, 12 Oct 2003 19:17:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310130217.h9D2HZ9A037384@xorpc.icir.org> Date: Sun, 12 Oct 2003 19:17:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 19:17:35 Modified files: xorp/fea/: fticonfig_table_get_netlink.cc Log message: Add missing #ifndef HAVE_IPV6 ... #else ... #endif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 19:23:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 19:24:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2O5ko052505 for ; Sun, 12 Oct 2003 19:24:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2O1H5024564; Sun, 12 Oct 2003 19:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2O1eb015385; Sun, 12 Oct 2003 19:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2NJeb015374 for ; Sun, 12 Oct 2003 19:23:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2NJH5024562 for ; Sun, 12 Oct 2003 19:23:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2NJsd037558 for ; Sun, 12 Oct 2003 19:23:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9D2NJCa037557; Sun, 12 Oct 2003 19:23:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310130223.h9D2NJCa037557@xorpc.icir.org> Date: Sun, 12 Oct 2003 19:23:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_set.hh fticonfig_table_set.hh xorp/fea/ fticonfig_entry_set_netlink.cc fticonfig_table_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 19:23:19 Modified files: xorp/fea/: Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_set.hh fticonfig_table_set.hh Added files: xorp/fea/: fticonfig_entry_set_netlink.cc fticonfig_table_set_netlink.cc Log message: Add support for writing routing entries using Netlink sockets. Initial testings show that the code appears to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Sun Oct 12 19:30:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Oct 2003 19:31:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2V4ko053555 for ; Sun, 12 Oct 2003 19:31:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2V1H5024614; Sun, 12 Oct 2003 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2V0eb015488; Sun, 12 Oct 2003 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9D2UQeb015473 for ; Sun, 12 Oct 2003 19:30:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2UQH5024612 for ; Sun, 12 Oct 2003 19:30:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9D2UQsd043712 for ; Sun, 12 Oct 2003 19:30:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9D2UQLO043711; Sun, 12 Oct 2003 19:30:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310130230.h9D2UQLO043711@xorpc.icir.org> Date: Sun, 12 Oct 2003 19:30:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/12 19:30:26 Modified files: xorp/fea/: fticonfig_entry_set_netlink.cc Log message: Add missing empty definition of FtiConfigEntrySetNetlink::nlsock_data() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 13:43:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 13:44:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DKi6ko037500 for ; Mon, 13 Oct 2003 13:44:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DKi2H5035690; Mon, 13 Oct 2003 13:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DKi1eb003300; Mon, 13 Oct 2003 13:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DKhIeb003285 for ; Mon, 13 Oct 2003 13:43:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DKhIH5035686 for ; Mon, 13 Oct 2003 13:43:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DKhIsd044859 for ; Mon, 13 Oct 2003 13:43:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9DKhIGj044858; Mon, 13 Oct 2003 13:43:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310132043.h9DKhIGj044858@xorpc.icir.org> Date: Mon, 13 Oct 2003 13:43:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO next_hop_resolver.cc next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/13 13:43:18 Modified files: xorp/bgp/: TODO next_hop_resolver.cc next_hop_resolver.hh Log message: The next hop resolver holds a pointer back to the decision table. This pointer is used to signal the decision table when a next hop changes. Previously there was an instance of a decision table for IPv4 and one for IPv6. With the multiprotocol support there will be four decision tables, for each address family there is unicast and multicast table. A single pointer for each address family is insufficient. We know have a list of pointers. When a next hop changes for a particular address family both the unicast and multicast decision tables will be notified. This is not a big deal. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 16:32:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 16:33:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNXAko078523 for ; Mon, 13 Oct 2003 16:33:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNX6H5037494; Mon, 13 Oct 2003 16:33:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DNX1eb006928; Mon, 13 Oct 2003 16:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DNWgeb006912 for ; Mon, 13 Oct 2003 16:32:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNWgH5037492 for ; Mon, 13 Oct 2003 16:32:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNWgsd067072 for ; Mon, 13 Oct 2003 16:32:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9DNWgWo067071; Mon, 13 Oct 2003 16:32:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310132332.h9DNWgWo067071@xorpc.icir.org> Date: Mon, 13 Oct 2003 16:32:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set.hh fticonfig_entry_set_netlink.cc fticonfig_table_get.hh fticonfig_table_get_netlink.cc ifconfig_get.hh ...ifconfig_get_netlink.cc ...ifconfig_set.hh ...ifconfig_set_netlink.cc ...netlink_socket.cc ...netlink_socket.hh ...netlink_socket_utils.cc ...netlink_socket_utils.hh ...routing_socket.cc ...routing_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 16:32:42 Modified files: xorp/fea/: fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set.hh fticonfig_entry_set_netlink.cc fticonfig_table_get.hh fticonfig_table_get_netlink.cc ifconfig_get.hh ifconfig_get_netlink.cc ifconfig_set.hh ifconfig_set_netlink.cc netlink_socket.cc netlink_socket.hh netlink_socket_utils.cc netlink_socket_utils.hh routing_socket.cc routing_socket.hh Log message: Code refactoring, and removing duplicated code: * Add new classes NetlinkSocketReader and RoutingSocketReader, that are used to force synchronous reading from netlink or routing sockets respectively. * Add a new static method NlmUtils::check_netlink_request() that can be used by all ifconfig_* and fticonfig_* code. * Remove all duplicated Foo::nlsock_data() and Foo::rtsock_data() code that was used for syncronous reading from netlink or routing sockets, and use the new NetlinkSocketReader and RoutingSocketReader classes. * Remove all duplicated Foo::check_netlink_request(), and use the new NlmUtils::check_netlink_request() instead. * Added few extra XLOG_UNREACHABLE() * Replace few "#define FOOSIZE" with "static const size_t buffer_size" * Rename few "foobuf" to "buffer" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 16:42:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 16:43:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNh5ko080538 for ; Mon, 13 Oct 2003 16:43:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNh1H5037625; Mon, 13 Oct 2003 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DNh1eb007178; Mon, 13 Oct 2003 16:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9DNgReb007159 for ; Mon, 13 Oct 2003 16:42:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNgRH5037617 for ; Mon, 13 Oct 2003 16:42:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9DNgRsd068245 for ; Mon, 13 Oct 2003 16:42:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9DNgRR6068244; Mon, 13 Oct 2003 16:42:27 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310132342.h9DNgRR6068244@xorpc.icir.org> Date: Mon, 13 Oct 2003 16:42:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc parameter.cc parameter.hh path_attribute.cc peer_data.cc plumbing.cc plumbing.hh test_packet_coding.cc test_peer_data.cc xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/13 16:42:27 Modified files: xorp/bgp/: bgp.cc parameter.cc parameter.hh path_attribute.cc peer_data.cc plumbing.cc plumbing.hh test_packet_coding.cc test_peer_data.cc xorp/bgp/harness/: peer.cc Log message: Renaming: SAFI_NLRI_UNICAST -> SAFI_UNICAST SAFI_NLRI_MULTICAST -> SAFI_MULTICAST _v4_plumbing -> _plumbing_ipv4 _v6_plumbing -> _plumbing_ipv6 plumbing4() -> plumbing_ipv4() plumbing6() -> plumbing_ipv46() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 18:32:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 18:33:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1X7ko009388 for ; Mon, 13 Oct 2003 18:33:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1X1H5038535; Mon, 13 Oct 2003 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1X1eb009190; Mon, 13 Oct 2003 18:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1WJeb009165 for ; Mon, 13 Oct 2003 18:32:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1WJH5038527 for ; Mon, 13 Oct 2003 18:32:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1WJsd075798 for ; Mon, 13 Oct 2003 18:32:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E1WJVu075797; Mon, 13 Oct 2003 18:32:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310140132.h9E1WJVu075797@xorpc.icir.org> Date: Mon, 13 Oct 2003 18:32:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 18:32:19 Modified files: xorp/fea/: routing_socket.hh Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 18:34:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 18:35:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1Z4ko010420 for ; Mon, 13 Oct 2003 18:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1Z1H5038549; Mon, 13 Oct 2003 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1Z0eb009258; Mon, 13 Oct 2003 18:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1Y9eb009234 for ; Mon, 13 Oct 2003 18:34:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1Y9H5038544 for ; Mon, 13 Oct 2003 18:34:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1Y9sd075853 for ; Mon, 13 Oct 2003 18:34:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E1Y9t5075852; Mon, 13 Oct 2003 18:34:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310140134.h9E1Y9t5075852@xorpc.icir.org> Date: Mon, 13 Oct 2003 18:34:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.hh netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 18:34:09 Modified files: xorp/fea/: netlink_socket.hh netlink_socket.cc Log message: Add a new method NetlinkSocket::set_nl_groups() that can be used to set the netlink multicast groups to listen for on a netlink socket. This method must be called before NetlinkSocket::start(), otherwise the set of netlink multicast groups is 0 (i.e., empty). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:11 2005 Subject: No subject Mon Oct 13 18:36:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 18:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1b5ko011275 for ; Mon, 13 Oct 2003 18:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1b1H5038578; Mon, 13 Oct 2003 18:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1b1eb009297; Mon, 13 Oct 2003 18:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1aQeb009284 for ; Mon, 13 Oct 2003 18:36:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1aQH5038574 for ; Mon, 13 Oct 2003 18:36:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1aQsd075916 for ; Mon, 13 Oct 2003 18:36:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E1aQsW075915; Mon, 13 Oct 2003 18:36:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310140136.h9E1aQsW075915@xorpc.icir.org> Date: Mon, 13 Oct 2003 18:36:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_observer.hh xorp/fea/ ifconfig_observer_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 18:36:26 Modified files: xorp/fea/: Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_observer.hh Added files: xorp/fea/: ifconfig_observer_netlink.cc Log message: Implement IfConfigObserverNetlink: netlink-based interface configuration observer, that listens for network interface-related netlink messages from the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Mon Oct 13 18:45:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 18:46:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1k4ko015068 for ; Mon, 13 Oct 2003 18:46:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1k0H5038659; Mon, 13 Oct 2003 18:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1k0eb009439; Mon, 13 Oct 2003 18:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1j2eb009425 for ; Mon, 13 Oct 2003 18:45:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1j2H5038638 for ; Mon, 13 Oct 2003 18:45:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1j2sd076104 for ; Mon, 13 Oct 2003 18:45:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E1j2DT076103; Mon, 13 Oct 2003 18:45:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310140145.h9E1j2DT076103@xorpc.icir.org> Date: Mon, 13 Oct 2003 18:45:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_observer_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 18:45:02 Modified files: xorp/fea/: ifconfig_observer_netlink.cc Log message: Fix a typo in a comment: "to set" -> "to observe" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Mon Oct 13 18:54:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 18:55:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1t5ko018628 for ; Mon, 13 Oct 2003 18:55:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1t1H5038716; Mon, 13 Oct 2003 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1t1eb009641; Mon, 13 Oct 2003 18:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E1saeb009626 for ; Mon, 13 Oct 2003 18:54:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1saH5038706 for ; Mon, 13 Oct 2003 18:54:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E1sasd076377 for ; Mon, 13 Oct 2003 18:54:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E1sa22076376; Mon, 13 Oct 2003 18:54:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310140154.h9E1sa22076376@xorpc.icir.org> Date: Mon, 13 Oct 2003 18:54:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh plumbing.cc plumbing.hh test_plumbing.cc test_plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/13 18:54:36 Modified files: xorp/bgp/: bgp.cc bgp.hh plumbing.cc plumbing.hh test_plumbing.cc test_plumbing.hh Log message: Refactor such that we get one instance of a next hop resolver per address family. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Mon Oct 13 19:17:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 19:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2I5ko022546 for ; Mon, 13 Oct 2003 19:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2I1H5038876; Mon, 13 Oct 2003 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E2I1eb009999; Mon, 13 Oct 2003 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E2HCeb009979 for ; Mon, 13 Oct 2003 19:17:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2HCH5038874 for ; Mon, 13 Oct 2003 19:17:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2HCsd082786 for ; Mon, 13 Oct 2003 19:17:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E2HChc082785; Mon, 13 Oct 2003 19:17:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310140217.h9E2HChc082785@xorpc.icir.org> Date: Mon, 13 Oct 2003 19:17:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_observer.hh fticonfig_table_observer.hh xorp/fea/ fticonfig_entry_observer_netlink.cc fticonfig_table_observer_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/13 19:17:12 Modified files: xorp/fea/: Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_observer.hh fticonfig_table_observer.hh Added files: xorp/fea/: fticonfig_entry_observer_netlink.cc fticonfig_table_observer_netlink.cc Log message: Implement FtiConfigEntryObserverNetlink and FtiConfigTableObserverNetlink: netlink-based routing entry observers that listen for routing entry related netlink messages from the kernel. Currently, those observers similar to the routing socket observers don't propagate the routing entry changes (yet). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Mon Oct 13 19:44:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Oct 2003 19:45:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2j5ko027917 for ; Mon, 13 Oct 2003 19:45:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2j1H5039058; Mon, 13 Oct 2003 19:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E2j1eb010470; Mon, 13 Oct 2003 19:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9E2i7eb010456 for ; Mon, 13 Oct 2003 19:44:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2i7H5039051 for ; Mon, 13 Oct 2003 19:44:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9E2i7sd094417 for ; Mon, 13 Oct 2003 19:44:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9E2i7ne094416; Mon, 13 Oct 2003 19:44:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310140244.h9E2i7ne094416@xorpc.icir.org> Date: Mon, 13 Oct 2003 19:44:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/13 19:44:06 Modified files: xorp/bgp/: parameter.hh Log message: Comment out experimental class that fails on older compilers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 13:22:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 13:23:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EKN7ko087177 for ; Tue, 14 Oct 2003 13:23:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EKN3H5049728; Tue, 14 Oct 2003 13:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EKN1eb029036; Tue, 14 Oct 2003 13:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EKMEeb029013 for ; Tue, 14 Oct 2003 13:22:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EKMEH5049726 for ; Tue, 14 Oct 2003 13:22:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EKMEsd099652 for ; Tue, 14 Oct 2003 13:22:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9EKME1d099651; Tue, 14 Oct 2003 13:22:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310142022.h9EKME1d099651@xorpc.icir.org> Date: Tue, 14 Oct 2003 13:22:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/14 13:22:14 Modified files: xorp/fea/: ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc Log message: Conditionally call stop() in IfConfigObserverRtsock and IfConfigObserverNetlink destructors (i.e., only if the particular mechanism is supported), otherwise we get a coredump if we try to gracefully stop the fea (a problem found by Orion). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 14:47:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 14:48:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELm6ko099719 for ; Tue, 14 Oct 2003 14:48:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELm1H5050736; Tue, 14 Oct 2003 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELm1eb001129; Tue, 14 Oct 2003 14:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELlHeb001116 for ; Tue, 14 Oct 2003 14:47:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELlHH5050732 for ; Tue, 14 Oct 2003 14:47:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELlHsd031068 for ; Tue, 14 Oct 2003 14:47:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ELlHqQ031067; Tue, 14 Oct 2003 14:47:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310142147.h9ELlHqQ031067@xorpc.icir.org> Date: Tue, 14 Oct 2003 14:47:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_replicator.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/14 14:47:17 Modified files: xorp/libfeaclient/: ifmgr_xrl_replicator.hh Log message: Correct a kdoc typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 14:48:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 14:49:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELn5ko099874 for ; Tue, 14 Oct 2003 14:49:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELn1H5050749; Tue, 14 Oct 2003 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELn1eb001159; Tue, 14 Oct 2003 14:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELm2eb001136 for ; Tue, 14 Oct 2003 14:48:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELm2H5050738 for ; Tue, 14 Oct 2003 14:48:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELm2sd031113 for ; Tue, 14 Oct 2003 14:48:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ELm2kT031112; Tue, 14 Oct 2003 14:48:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310142148.h9ELm2kT031112@xorpc.icir.org> Date: Tue, 14 Oct 2003 14:48:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ overview.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/14 14:48:02 Added files: xorp/libfeaclient/: overview.hh Log message: Add kdoc overview text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 14:56:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 14:57:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELv4ko001237 for ; Tue, 14 Oct 2003 14:57:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELv0H5050858; Tue, 14 Oct 2003 14:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELv0eb001389; Tue, 14 Oct 2003 14:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ELuSeb001373 for ; Tue, 14 Oct 2003 14:56:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELuSH5050854 for ; Tue, 14 Oct 2003 14:56:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ELuSsd032165 for ; Tue, 14 Oct 2003 14:56:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ELuSlr032164; Tue, 14 Oct 2003 14:56:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310142156.h9ELuSlr032164@xorpc.icir.org> Date: Tue, 14 Oct 2003 14:56:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fea.cc fea_dummy.cc xorp/fea/ libfeaclient_bridge.cc libfeaclient_bridge.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/14 14:56:28 Modified files: xorp/fea/: Makefile.am Makefile.in fea.cc fea_dummy.cc Added files: xorp/fea/: libfeaclient_bridge.cc libfeaclient_bridge.hh Log message: Add initial attempt at bridging code with libfeaclient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 15:39:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 15:40:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMe4ko007639 for ; Tue, 14 Oct 2003 15:40:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMe1H5051332; Tue, 14 Oct 2003 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EMe1eb002229; Tue, 14 Oct 2003 15:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EMdleb002220 for ; Tue, 14 Oct 2003 15:39:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMdlH5051327 for ; Tue, 14 Oct 2003 15:39:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMdlsd032692 for ; Tue, 14 Oct 2003 15:39:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9EMdlQB032691; Tue, 14 Oct 2003 15:39:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310142239.h9EMdlQB032691@xorpc.icir.org> Date: Tue, 14 Oct 2003 15:39:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh mfea_node.cc xorp/mld6igmp/ mld6igmp_node.hh mld6igmp_node.cc xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/10/14 15:39:47 Modified files: xorp/fea/: mfea_node.hh mfea_node.cc xorp/mld6igmp/: mld6igmp_node.hh mld6igmp_node.cc xorp/pim/: pim_node.hh pim_node.cc Log message: Apply a kdoc nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 15:57:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 15:58:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMw5ko010297 for ; Tue, 14 Oct 2003 15:58:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMw1H5051503; Tue, 14 Oct 2003 15:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EMw1eb002519; Tue, 14 Oct 2003 15:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9EMvjeb002507 for ; Tue, 14 Oct 2003 15:57:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMvjH5051501 for ; Tue, 14 Oct 2003 15:57:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9EMvjsd033022 for ; Tue, 14 Oct 2003 15:57:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9EMvjmR033021; Tue, 14 Oct 2003 15:57:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310142257.h9EMvjmR033021@xorpc.icir.org> Date: Tue, 14 Oct 2003 15:57:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/14 15:57:44 Modified files: xorp/utils/: .cvsignore Log message: Remove pathconf.sh and gen-pathconf.sh from .cvsignore because they are not auto-generated anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 16:22:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 16:23:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ENN7ko013985 for ; Tue, 14 Oct 2003 16:23:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ENN1H5051765; Tue, 14 Oct 2003 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ENN1eb002954; Tue, 14 Oct 2003 16:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ENMEeb002933 for ; Tue, 14 Oct 2003 16:22:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ENMEH5051753 for ; Tue, 14 Oct 2003 16:22:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ENMEsd033304 for ; Tue, 14 Oct 2003 16:22:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ENMEeR033303; Tue, 14 Oct 2003 16:22:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310142322.h9ENMEeR033303@xorpc.icir.org> Date: Tue, 14 Oct 2003 16:22:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/14 16:22:14 Modified files: xorp/utils/: test_flower_malloc.sh Log message: Conditionally set ${srcdir} if it wasn't assigned (e.g., by `gmake check`) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 17:13:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 17:14:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F0E6ko021491 for ; Tue, 14 Oct 2003 17:14:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F0E2H5052212; Tue, 14 Oct 2003 17:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F0E2eb003756; Tue, 14 Oct 2003 17:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F0Dqeb003747 for ; Tue, 14 Oct 2003 17:13:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F0DqH5052208 for ; Tue, 14 Oct 2003 17:13:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F0Dqsd033733 for ; Tue, 14 Oct 2003 17:13:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9F0DqPx033732; Tue, 14 Oct 2003 17:13:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310150013.h9F0DqPx033732@xorpc.icir.org> Date: Tue, 14 Oct 2003 17:13:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/14 17:13:52 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: * Conditionally set ${srcdir} if it wasn't assigned (e.g., by `gmake check`) * Use ${srcdir} to assign properly variables that depend on files located in the source tree. * Modify validate_xrls() such that it searches all *.xrls files in the target directory when trying to validate the XRLs in the shell script. This slows-down the validation process, but allows the flexibility to validate XRLs that were spread across different *.xrls files without explicitly specifying those files. * Modify validate_xrls() to return the number of bad XRLs encountered. * Nits in valiate_xrls() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 21:10:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 21:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4B5ko056158 for ; Tue, 14 Oct 2003 21:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4B1H5054124; Tue, 14 Oct 2003 21:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4B1eb007123; Tue, 14 Oct 2003 21:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4ALeb007107 for ; Tue, 14 Oct 2003 21:10:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4AKH5054120 for ; Tue, 14 Oct 2003 21:10:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4AKsd035347 for ; Tue, 14 Oct 2003 21:10:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9F4AKrK035346; Tue, 14 Oct 2003 21:10:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310150410.h9F4AKrK035346@xorpc.icir.org> Date: Tue, 14 Oct 2003 21:10:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/14 21:10:20 Added files: ./: BUILD_NOTES Log message: Add a new file BUILD_NOTES that contains various notes about how to build XORP, including notes about OS-specific issues. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 21:12:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 21:13:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4D4ko056453 for ; Tue, 14 Oct 2003 21:13:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4D1H5054134; Tue, 14 Oct 2003 21:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4D0eb007162; Tue, 14 Oct 2003 21:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4Cleb007150 for ; Tue, 14 Oct 2003 21:12:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4ClH5054132 for ; Tue, 14 Oct 2003 21:12:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4Clsd035379 for ; Tue, 14 Oct 2003 21:12:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9F4ClKC035378; Tue, 14 Oct 2003 21:12:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310150412.h9F4ClKC035378@xorpc.icir.org> Date: Tue, 14 Oct 2003 21:12:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/14 21:12:47 Modified files: ./: README Log message: * Move the information about building XORP on the non-supported OS platforms to BUILD_NOTES. * Add a reference to file $XORP/BUILD_NOTES * Add information about the new xorp-hackers mailing list. * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Tue Oct 14 21:17:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Oct 2003 21:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4I5ko057200 for ; Tue, 14 Oct 2003 21:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4I1H5054177; Tue, 14 Oct 2003 21:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4I1eb007223; Tue, 14 Oct 2003 21:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9F4HTeb007211 for ; Tue, 14 Oct 2003 21:17:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4HTH5054175 for ; Tue, 14 Oct 2003 21:17:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9F4HTsd035435 for ; Tue, 14 Oct 2003 21:17:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9F4HTRj035434; Tue, 14 Oct 2003 21:17:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310150417.h9F4HTRj035434@xorpc.icir.org> Date: Tue, 14 Oct 2003 21:17:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/14 21:17:29 Modified files: ./: RELEASE_NOTES Log message: Add a release note about the added Linux Netlink support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Wed Oct 15 11:18:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 11:19:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIJ6ko083922 for ; Wed, 15 Oct 2003 11:19:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIJ2H5063153; Wed, 15 Oct 2003 11:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FIJ1eb021849; Wed, 15 Oct 2003 11:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FIIdeb021835 for ; Wed, 15 Oct 2003 11:18:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIIdH5063148 for ; Wed, 15 Oct 2003 11:18:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIIdsd004585 for ; Wed, 15 Oct 2003 11:18:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9FIIdON004584; Wed, 15 Oct 2003 11:18:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310151818.h9FIIdON004584@xorpc.icir.org> Date: Wed, 15 Oct 2003 11:18:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/15 11:18:39 Modified files: xorp/utils/: xrl_shell_lib.sh Log message: Major clean-up: * Return error codes as appropriate: 0 if no error, otherwise return 1 * Explicitly declare all local variables with command "local" at the beginning of each function * Rename all local variables: FOO -> _foo * Print "ERROR: foo" error messages as appropriate * If an XRL succeeds, don't print "OK", because it is annoying. Instead, print the appropriate error message (if error), and then just return the appropriate error code: 0 on success, otherwise 1. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Wed Oct 15 11:54:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 11:55:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIt5ko089193 for ; Wed, 15 Oct 2003 11:55:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIt1H5063443; Wed, 15 Oct 2003 11:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FIt1eb022600; Wed, 15 Oct 2003 11:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FIsTeb022580 for ; Wed, 15 Oct 2003 11:54:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIsTH5063436 for ; Wed, 15 Oct 2003 11:54:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FIsTsd013619 for ; Wed, 15 Oct 2003 11:54:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9FIsT1o013618; Wed, 15 Oct 2003 11:54:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310151854.h9FIsT1o013618@xorpc.icir.org> Date: Wed, 15 Oct 2003 11:54:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh xorp/fea/ command_mfea configure_mfea xrl_mfea_shell_funcs.sh xorp/mld6igmp/ command_mld6igmp configure_mld6igmp xrl_mld6igmp_shell_funcs.sh xorp/pim/ command_pim configure_pim xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/10/15 11:54:29 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh xorp/fea/: command_mfea configure_mfea xrl_mfea_shell_funcs.sh xorp/mld6igmp/: command_mld6igmp configure_mld6igmp xrl_mld6igmp_shell_funcs.sh xorp/pim/: command_pim configure_pim xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh Log message: * Conditionally set ${srcdir} if it wasn't assigned (e.g., by `gmake check`) * Use ${srcdir} as appropriate to refer to other shell scripts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Wed Oct 15 12:02:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 12:03:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ35ko090405 for ; Wed, 15 Oct 2003 12:03:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ31H5063534; Wed, 15 Oct 2003 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJ31eb022814; Wed, 15 Oct 2003 12:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJ28eb022789 for ; Wed, 15 Oct 2003 12:02:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ28H5063532 for ; Wed, 15 Oct 2003 12:02:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ27sd013983 for ; Wed, 15 Oct 2003 12:02:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9FJ27MJ013982; Wed, 15 Oct 2003 12:02:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310151902.h9FJ27MJ013982@xorpc.icir.org> Date: Wed, 15 Oct 2003 12:02:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ command_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/10/15 12:02:07 Modified files: xorp/pim/: command_pim Log message: Remove an extra experimental command that was commited by accident by the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Wed Oct 15 12:07:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 12:08:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ85ko091163 for ; Wed, 15 Oct 2003 12:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ81H5063580; Wed, 15 Oct 2003 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJ80eb022951; Wed, 15 Oct 2003 12:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJ7aeb022933 for ; Wed, 15 Oct 2003 12:07:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ7aH5063578 for ; Wed, 15 Oct 2003 12:07:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJ7Zsd022422 for ; Wed, 15 Oct 2003 12:07:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9FJ7ZQ7022421; Wed, 15 Oct 2003 12:07:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310151907.h9FJ7ZQ7022421@xorpc.icir.org> Date: Wed, 15 Oct 2003 12:07:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ command_mfea xorp/mld6igmp/ command_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/10/15 12:07:35 Modified files: xorp/fea/: command_mfea xorp/mld6igmp/: command_mld6igmp Log message: Update the implementation of fea/command_mfea and mld6igmp/command_mld6igmp with the code in pim/command_pim _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:12 2005 Subject: No subject Wed Oct 15 12:19:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 12:20:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJK5ko092938 for ; Wed, 15 Oct 2003 12:20:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJK1H5063686; Wed, 15 Oct 2003 12:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJK1eb023210; Wed, 15 Oct 2003 12:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9FJJQeb023194 for ; Wed, 15 Oct 2003 12:19:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJJPH5063672 for ; Wed, 15 Oct 2003 12:19:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9FJJPsd024453 for ; Wed, 15 Oct 2003 12:19:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9FJJPTU024452; Wed, 15 Oct 2003 12:19:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310151919.h9FJJPTU024452@xorpc.icir.org> Date: Wed, 15 Oct 2003 12:19:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/15 12:19:25 Modified files: xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_queue.cc ifmgr_cmds.cc Log message: s/IfMgrIfTree::interfaces()/IfMgrIfTree::ifs()/ to be consistent with FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Wed Oct 15 21:33:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Oct 2003 21:34:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9G4Y7ko074451 for ; Wed, 15 Oct 2003 21:34:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9G4Y2H5069021; Wed, 15 Oct 2003 21:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9G4Y2eb009446; Wed, 15 Oct 2003 21:34:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9G4XXeb009407 for ; Wed, 15 Oct 2003 21:33:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9G4X5H5069019 for ; Wed, 15 Oct 2003 21:33:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9G4X4sd065157 for ; Wed, 15 Oct 2003 21:33:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9G4X4Fm065156; Wed, 15 Oct 2003 21:33:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310160433.h9G4X4Fm065156@xorpc.icir.org> Date: Wed, 15 Oct 2003 21:33:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/15 21:33:04 Added files: xorp/fea/: test_add_route.sh Log message: Add a script for testing the interaction between the FEA and the kernel unicast forwarding engine: - add/delete unicast forwarding entries, lookup, etc. Not all scenarios are tested, and more will be added later. For now the script is not part of the TESTS target in Makefile.am, because the FEA must be run as a root. Also, for now the finder and the FEA processes need to be started by hand in advance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 11:23:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 11:24:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIO6ko010233 for ; Thu, 16 Oct 2003 11:24:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIO2H5077838; Thu, 16 Oct 2003 11:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIO1eb020940; Thu, 16 Oct 2003 11:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIN8eb020874 for ; Thu, 16 Oct 2003 11:23:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIN7H5077836 for ; Thu, 16 Oct 2003 11:23:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIN7sd089345 for ; Thu, 16 Oct 2003 11:23:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GIN7IE089344; Thu, 16 Oct 2003 11:23:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310161823.h9GIN7IE089344@xorpc.icir.org> Date: Thu, 16 Oct 2003 11:23:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh xorp/fea/ test_add_route.sh xrl_mfea_shell_funcs.sh xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh xorp/pim/ xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh xorp/utils/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/16 11:23:07 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh xorp/fea/: test_add_route.sh xrl_mfea_shell_funcs.sh xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh xorp/pim/: xrl_pim_shell_funcs.sh xrl_rib_shell_funcs.sh xorp/utils/: xrl_shell_lib.sh Log message: Rename shell function wrapper "call_xrl" defined inside utils/xrl_shell_lib.sh to "call_xrl_wrapper", because it can be easily be confused with binary "libxipc/call_xrl" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 11:46:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 11:47:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIl6ko013688 for ; Thu, 16 Oct 2003 11:47:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIl2H5078060; Thu, 16 Oct 2003 11:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIl2eb022833; Thu, 16 Oct 2003 11:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIkueb022815 for ; Thu, 16 Oct 2003 11:46:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIkuH5078058 for ; Thu, 16 Oct 2003 11:46:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIkusd007426 for ; Thu, 16 Oct 2003 11:46:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GIkuFb007425; Thu, 16 Oct 2003 11:46:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310161846.h9GIkuFb007425@xorpc.icir.org> Date: Thu, 16 Oct 2003 11:46:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ Makefile.am Makefile.in xorp/utils/ xrl_wrappers_generator.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/16 11:46:56 Modified files: xorp/utils/: Makefile.am Makefile.in Added files: xorp/utils/: xrl_wrappers_generator.sh Log message: Add a script for auto-generation of XRL shell wrappers that can be used in shell scripts to call XRLs. Example: If the XRL to wrap is specified in one of the $XORP/xrl/targets/*.xrls files as: finder://fea/ifmgr/0.1/get_configured_mtu?ifname:txt->mtu:u32 then the auto-generated wrapper will look like: fea_ifmgr_get_configured_mtu() { if [ $# -ne 1 ] ; then echo "Usage: fea_ifmgr_get_configured_mtu " exit 1 fi XRL="finder://fea/ifmgr/0.1/get_configured_mtu?ifname:txt=$1" call_xrl_wrapper -p all "${XRL}" } where call_xrl_wrapper is a shell function defined in $XORP/utils/xrl_shell_lib.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 11:52:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 11:53:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIr5ko014547 for ; Thu, 16 Oct 2003 11:53:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIr1H5078121; Thu, 16 Oct 2003 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIr1eb023261; Thu, 16 Oct 2003 11:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GIqceb023229 for ; Thu, 16 Oct 2003 11:52:38 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIqcH5078119; Thu, 16 Oct 2003 11:52:38 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GIqbIK008012; Thu, 16 Oct 2003 11:52:37 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200310161852.h9GIqbIK008012@possum.icir.org> To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/utils/ Makefile.am Makefile.in xorp/utils/ xrl_wrappers_generator.sh In-Reply-To: Message from Pavlin Radoslavov of "Thu, 16 Oct 2003 11:46:56." <200310161846.h9GIkuFb007425@xorpc.icir.org> Date: Thu, 16 Oct 2003 11:52:37 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Repository: xorp/utils/ > Changes by: pavlin@xorpc.icir.org. 03/10/16 11:46:56 > > Modified files: > xorp/utils/: Makefile.am Makefile.in > Added files: > xorp/utils/: xrl_wrappers_generator.sh > > Log message: > Add a script for auto-generation of XRL shell wrappers that > can be used in shell scripts to call XRLs. > > Example: > If the XRL to wrap is specified in one of the $XORP/xrl/targets/*.xrls > files as: > > finder://fea/ifmgr/0.1/get_configured_mtu?ifname:txt->mtu:u32 > > then the auto-generated wrapper will look like: > > fea_ifmgr_get_configured_mtu() > { > if [ $# -ne 1 ] ; then > echo "Usage: fea_ifmgr_get_configured_mtu " > exit 1 > fi > > XRL="finder://fea/ifmgr/0.1/get_configured_mtu?ifname:txt=$1" > call_xrl_wrapper -p all "${XRL}" > } Sigh, the CVS to email handler completely messed-up the indentation in the above example... See the example at beginning of the original file itself regarding what the correct indentation should look like. Pavlin > > where call_xrl_wrapper is a shell function defined in > $XORP/utils/xrl_shell_lib.sh > > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 12:03:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 12:04:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJ44ko016238 for ; Thu, 16 Oct 2003 12:04:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJ41H5078243; Thu, 16 Oct 2003 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GJ40eb023979; Thu, 16 Oct 2003 12:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GJ3neb023956 for ; Thu, 16 Oct 2003 12:03:49 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJ3nH5078239; Thu, 16 Oct 2003 12:03:49 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJ3mOB053030; Thu, 16 Oct 2003 12:03:48 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200310161903.h9GJ3mOB053030@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/utils/ Makefile.am Makefile.in xorp/utils/ xrl_wrappers_generator.sh In-Reply-To: Your message of "Thu, 16 Oct 2003 11:46:56." <200310161846.h9GIkuFb007425@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 16 Oct 2003 12:03:48 -0700 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | Add a script for auto-generation of XRL shell wrappers that | can be used in shell scripts to call XRLs. Wow! Very nice :-) - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 12:37:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 12:38:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJc5ko021241 for ; Thu, 16 Oct 2003 12:38:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJc1H5078625; Thu, 16 Oct 2003 12:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GJc0eb026540; Thu, 16 Oct 2003 12:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GJb8eb026475 for ; Thu, 16 Oct 2003 12:37:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJb7H5078615 for ; Thu, 16 Oct 2003 12:37:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GJb7sd019598 for ; Thu, 16 Oct 2003 12:37:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GJb7qg019597; Thu, 16 Oct 2003 12:37:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310161937.h9GJb7qg019597@xorpc.icir.org> Date: Thu, 16 Oct 2003 12:37:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ xrl_wrappers_generator.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/16 12:37:07 Modified files: xorp/utils/: xrl_wrappers_generator.sh Log message: Add an extra comment that was dropped by the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 14:59:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 15:00:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GM05ko043506 for ; Thu, 16 Oct 2003 15:00:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GM01H5080139; Thu, 16 Oct 2003 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GM01eb006796; Thu, 16 Oct 2003 15:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GLxLeb006749 for ; Thu, 16 Oct 2003 14:59:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GLxLH5080129 for ; Thu, 16 Oct 2003 14:59:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GLxLsd041311 for ; Thu, 16 Oct 2003 14:59:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GLxLK9041310; Thu, 16 Oct 2003 14:59:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310162159.h9GLxLK9041310@xorpc.icir.org> Date: Thu, 16 Oct 2003 14:59:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ xrl_wrappers_generator.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/16 14:59:21 Modified files: xorp/utils/: xrl_wrappers_generator.sh Log message: Code refactoring to speed-up the processing: * Use previous result (e.g., the split arguments list) rather then regenerating it again inside each shell function * Comment-out the computation of the _return_values, because it is not used After the refactoring the processing is twice faster. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 15:13:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 15:14:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GME5ko045601 for ; Thu, 16 Oct 2003 15:14:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GME1H5080292; Thu, 16 Oct 2003 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GME1eb007798; Thu, 16 Oct 2003 15:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GMDweb007788 for ; Thu, 16 Oct 2003 15:13:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMDwH5080290 for ; Thu, 16 Oct 2003 15:13:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMDwsd078317 for ; Thu, 16 Oct 2003 15:13:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GMDw6O078316; Thu, 16 Oct 2003 15:13:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310162213.h9GMDw6O078316@xorpc.icir.org> Date: Thu, 16 Oct 2003 15:13:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/16 15:13:58 Modified files: xorp/fea/: Makefile.am Makefile.in Log message: Add statements to auto-generate fea/xrl_fea_shell_funcs.sh from xrl/targets/fea.xrls _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 15:14:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 15:15:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMF4ko045754 for ; Thu, 16 Oct 2003 15:15:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMF1H5080307; Thu, 16 Oct 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GMF0eb007847; Thu, 16 Oct 2003 15:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GMEReb007825 for ; Thu, 16 Oct 2003 15:14:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMERH5080302 for ; Thu, 16 Oct 2003 15:14:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMERsd078351 for ; Thu, 16 Oct 2003 15:14:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GMERc6078350; Thu, 16 Oct 2003 15:14:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310162214.h9GMERc6078350@xorpc.icir.org> Date: Thu, 16 Oct 2003 15:14:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/16 15:14:27 Modified files: xorp/fea/: .cvsignore Log message: Add xrl_fea_shell_funcs.sh to the list of CVS-ignored files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 15:15:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 15:16:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMG4ko045930 for ; Thu, 16 Oct 2003 15:16:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMG1H5080334; Thu, 16 Oct 2003 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GMG1eb007937; Thu, 16 Oct 2003 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GMFleb007912 for ; Thu, 16 Oct 2003 15:15:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMFlH5080332 for ; Thu, 16 Oct 2003 15:15:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GMFksd078424 for ; Thu, 16 Oct 2003 15:15:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GMFkFd078423; Thu, 16 Oct 2003 15:15:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310162215.h9GMFkFd078423@xorpc.icir.org> Date: Thu, 16 Oct 2003 15:15:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/16 15:15:46 Modified files: xorp/fea/: test_add_route.sh Log message: * Include ./xrl_fea_shell_funcs.sh that contains the XRL wrapper functions * Remove the XRL wrappers that were implemented locally inside test_add_route.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 16:00:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 16:01:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GN16ko052548 for ; Thu, 16 Oct 2003 16:01:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GN11H5080745; Thu, 16 Oct 2003 16:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GN11eb011056; Thu, 16 Oct 2003 16:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9GN0web011044 for ; Thu, 16 Oct 2003 16:00:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GN0wH5080743 for ; Thu, 16 Oct 2003 16:00:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9GN0vsd078736 for ; Thu, 16 Oct 2003 16:00:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9GN0vNW078735; Thu, 16 Oct 2003 16:00:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310162300.h9GN0vNW078735@xorpc.icir.org> Date: Thu, 16 Oct 2003 16:00:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/flower_malloc/ Changes by: hodson@xorpc.icir.org. 03/10/16 16:00:57 xorp/utils/flower_malloc Update of /usr/local/www/data/cvs/xorp/utils/flower_malloc In directory xorpc.icir.org:/tmp/cvs-serv78729/flower_malloc Log Message: Directory /usr/local/www/data/cvs/xorp/utils/flower_malloc added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 17:56:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 17:57:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0v5ko071814 for ; Thu, 16 Oct 2003 17:57:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0v1H5081740; Thu, 16 Oct 2003 17:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H0v0eb018722; Thu, 16 Oct 2003 17:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H0u7eb018662 for ; Thu, 16 Oct 2003 17:56:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0u7H5081735 for ; Thu, 16 Oct 2003 17:56:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0u7sd079521 for ; Thu, 16 Oct 2003 17:56:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H0u7ue079520; Thu, 16 Oct 2003 17:56:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170056.h9H0u7ue079520@xorpc.icir.org> Date: Thu, 16 Oct 2003 17:56:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/16 17:56:07 Modified files: ./: downloads.html index.html Log message: Update the web pages to reflect the internal restructuring of the URLs to the XORP releases: OLD: www/release-0.1 www/release-0.2 www/release-0.3 www/release-0.4 www/current-release
NEW: www/releases/0.1 www/releases/0.2 www/releases/0.3 www/releases/0.4 www/releases/current For the time being, the web server would contain symbolic links from the old locations pointing to the new locations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 17:58:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 17:59:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0x5ko072226 for ; Thu, 16 Oct 2003 17:59:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0x1H5081764; Thu, 16 Oct 2003 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H0x1eb018772; Thu, 16 Oct 2003 17:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H0wSeb018750 for ; Thu, 16 Oct 2003 17:58:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0wSH5081755 for ; Thu, 16 Oct 2003 17:58:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H0wSsd079571 for ; Thu, 16 Oct 2003 17:58:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H0wSaM079570; Thu, 16 Oct 2003 17:58:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170058.h9H0wSaM079570@xorpc.icir.org> Date: Thu, 16 Oct 2003 17:58:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/10/16 17:58:28 Modified files: xorp/devnotes/: release_process.txt Log message: * Add a new task: 1250. TASK: Update xorp/BUILD_NOTES * Update the particular shell commands used in the release process to reflect the internal restructuring of the URLs to the XORP releases: OLD: www/release-0.1 www/release-0.2 www/release-0.3 www/release-0.4 www/current-release NEW: www/releases/0.1 www/releases/0.2 www/releases/0.3 www/releases/0.4 www/releases/current _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:17:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:18:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1I5ko075908 for ; Thu, 16 Oct 2003 18:18:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1I1H5081926; Thu, 16 Oct 2003 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1I1eb019105; Thu, 16 Oct 2003 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1H4eb019087 for ; Thu, 16 Oct 2003 18:17:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1H4H5081916 for ; Thu, 16 Oct 2003 18:17:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1H4sd079771 for ; Thu, 16 Oct 2003 18:17:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1H4Ao079770; Thu, 16 Oct 2003 18:17:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170117.h9H1H4Ao079770@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:17:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/10/16 18:17:04 Modified files: xorp/docs/: index.html Log message: * Fix the link to the XORP logo to reflect the new internal restructuring of the URLs to the XORP releases. * Clean-up the HTML with the help of the "WDG HTML Validator": http://www.htmlhelp.com/tools/validator/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:17:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:18:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1I7ko075927 for ; Thu, 16 Oct 2003 18:18:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1I2H5081928; Thu, 16 Oct 2003 18:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1I2eb019117; Thu, 16 Oct 2003 18:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1HQeb019095 for ; Thu, 16 Oct 2003 18:17:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1HQH5081920 for ; Thu, 16 Oct 2003 18:17:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1HQsd079798 for ; Thu, 16 Oct 2003 18:17:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1HQBr079797; Thu, 16 Oct 2003 18:17:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170117.h9H1HQBr079797@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:17:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/10/16 18:17:26 Modified files: xorp/docs/: status.html Log message: Clean-up the HTML with the help of the "WDG HTML Validator": http://www.htmlhelp.com/tools/validator/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:38:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:39:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1d6ko079802 for ; Thu, 16 Oct 2003 18:39:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1d1H5082088; Thu, 16 Oct 2003 18:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1d1eb019467; Thu, 16 Oct 2003 18:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1c5eb019433 for ; Thu, 16 Oct 2003 18:38:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1c5H5082081 for ; Thu, 16 Oct 2003 18:38:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1c5sd080110 for ; Thu, 16 Oct 2003 18:38:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1c51N080109; Thu, 16 Oct 2003 18:38:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170138.h9H1c51N080109@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:38:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ cvs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/16 18:38:05 Modified files: ./: cvs.html Log message: Remove extra unnecessary elements _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:38:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:39:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1d7ko079817 for ; Thu, 16 Oct 2003 18:39:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1d3H5082090; Thu, 16 Oct 2003 18:39:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1d3eb019480; Thu, 16 Oct 2003 18:39:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1cWeb019448 for ; Thu, 16 Oct 2003 18:38:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1cVH5082084 for ; Thu, 16 Oct 2003 18:38:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1cVsd080145 for ; Thu, 16 Oct 2003 18:38:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1cVoK080144; Thu, 16 Oct 2003 18:38:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310170138.h9H1cVoK080144@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:38:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/10/16 18:38:31 Modified files: xorp/docs/: status.html Log message: Add missing element _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:44:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:45:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1j4ko080742 for ; Thu, 16 Oct 2003 18:45:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1j0H5082156; Thu, 16 Oct 2003 18:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1j0eb019586; Thu, 16 Oct 2003 18:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1iTeb019570 for ; Thu, 16 Oct 2003 18:44:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1iTH5082148 for ; Thu, 16 Oct 2003 18:44:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1iTsd080261 for ; Thu, 16 Oct 2003 18:44:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1iTrd080260; Thu, 16 Oct 2003 18:44:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310170144.h9H1iTrd080260@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:44:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in configure configure.in xorp/utils/ .cvsignore Makefile.am Makefile.in xorp/utils/flower_malloc/ .cvsignore Makefile.am Makefile.in xorp/utils/ FlowerCheck flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/flower_malloc/ Changes by: hodson@xorpc.icir.org. 03/10/16 18:44:29 Modified files: ./: Makefile.in configure configure.in xorp/utils/: .cvsignore Makefile.am Makefile.in Added files: xorp/utils/flower_malloc/: .cvsignore Makefile.am Makefile.in Removed files: xorp/utils/: FlowerCheck flower_malloc.c test_flower_malloc.c test_flower_malloc.sh Log message: Move flower_malloc into separate directory. Makes selectively enabling/disabling it easier. Add a weak test of whether to build flower_malloc to configure, ie on Linux/*BSD do, anywhere else don't. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:13 2005 Subject: No subject Thu Oct 16 18:46:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 18:47:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1l5ko081062 for ; Thu, 16 Oct 2003 18:47:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1l1H5082185; Thu, 16 Oct 2003 18:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1l1eb019626; Thu, 16 Oct 2003 18:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H1kbeb019612 for ; Thu, 16 Oct 2003 18:46:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1kaH5082183 for ; Thu, 16 Oct 2003 18:46:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H1kasd080588 for ; Thu, 16 Oct 2003 18:46:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H1kaSl080587; Thu, 16 Oct 2003 18:46:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310170146.h9H1kaSl080587@xorpc.icir.org> Date: Thu, 16 Oct 2003 18:46:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/etc/ Makefile.in xorp/etc/templates/ Makefile.in xorp/fea/ Makefile.in xorp/libcomm/ Makefile.in xorp/libfeaclient/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.in xorp/mibs/ Makefile.in xorp/mibs/snmpdscripts/ Makefile.in xorp/mibs/tests/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makef! ile.in xor! p/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 03/10/16 18:46:36 Modified files: xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/etc/: Makefile.in xorp/etc/templates/: Makefile.in xorp/fea/: Makefile.in xorp/libcomm/: Makefile.in xorp/libfeaclient/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.in xorp/mibs/: Makefile.in xorp/mibs/snmpdscripts/: Makefile.in xorp/mibs/tests/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Re-generate following configure.in changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Thu Oct 16 20:36:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Oct 2003 20:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H3b5ko097188 for ; Thu, 16 Oct 2003 20:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H3b1H5082986; Thu, 16 Oct 2003 20:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H3b0eb021297; Thu, 16 Oct 2003 20:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9H3apeb021287 for ; Thu, 16 Oct 2003 20:36:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H3apH5082984 for ; Thu, 16 Oct 2003 20:36:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9H3apsd081286 for ; Thu, 16 Oct 2003 20:36:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9H3apQv081285; Thu, 16 Oct 2003 20:36:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310170336.h9H3apQv081285@xorpc.icir.org> Date: Thu, 16 Oct 2003 20:36:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 03/10/16 20:36:51 Modified files: xorp/bgp/: path_attribute.cc xorp/bgp/harness/: test_trie.cc Log message: Cast size_t values to uint32_t in format strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 13:39:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 13:40:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HKe6ko052928 for ; Fri, 17 Oct 2003 13:40:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HKe1H5093678; Fri, 17 Oct 2003 13:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HKe1eb010122; Fri, 17 Oct 2003 13:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HKdXeb010111 for ; Fri, 17 Oct 2003 13:39:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HKdXH5093669 for ; Fri, 17 Oct 2003 13:39:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HKdXsd090615 for ; Fri, 17 Oct 2003 13:39:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HKdXwn090613; Fri, 17 Oct 2003 13:39:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310172039.h9HKdXwn090613@xorpc.icir.org> Date: Fri, 17 Oct 2003 13:39:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/17 13:39:33 Modified files: xorp/utils/: xrl_shell_lib.sh Log message: Fix the implementation of get_xrl_variable_value() to return properly the value of an XRL variable that is a list (e.g., a variable that has type of ":list") _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 14:03:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 14:04:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL45ko056464 for ; Fri, 17 Oct 2003 14:04:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL41H5093904; Fri, 17 Oct 2003 14:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HL41eb010572; Fri, 17 Oct 2003 14:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HL3Reb010554 for ; Fri, 17 Oct 2003 14:03:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL3RH5093902 for ; Fri, 17 Oct 2003 14:03:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL3Rsd000812 for ; Fri, 17 Oct 2003 14:03:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HL3Rnj000811; Fri, 17 Oct 2003 14:03:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310172103.h9HL3Rnj000811@xorpc.icir.org> Date: Fri, 17 Oct 2003 14:03:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.hh libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/17 14:03:27 Modified files: xorp/fea/: libfeaclient_bridge.hh libfeaclient_bridge.cc Log message: Add code to compare state of interface trees in FEA and libfeaclient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 14:04:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 14:05:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL54ko056618 for ; Fri, 17 Oct 2003 14:05:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL50H5093918; Fri, 17 Oct 2003 14:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HL50eb010607; Fri, 17 Oct 2003 14:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HL46eb010583 for ; Fri, 17 Oct 2003 14:04:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL46H5093906 for ; Fri, 17 Oct 2003 14:04:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HL46sd001011 for ; Fri, 17 Oct 2003 14:04:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HL46eD001010; Fri, 17 Oct 2003 14:04:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310172104.h9HL46eD001010@xorpc.icir.org> Date: Fri, 17 Oct 2003 14:04:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh iftree.cc iftree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/17 14:04:06 Modified files: xorp/fea/: ifconfig.hh iftree.cc iftree.hh Log message: Flick trailing whitespaces out of files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 15:10:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 15:11:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMB4ko066400 for ; Fri, 17 Oct 2003 15:11:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMB1H5094618; Fri, 17 Oct 2003 15:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMB0eb012037; Fri, 17 Oct 2003 15:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMAQeb012020 for ; Fri, 17 Oct 2003 15:10:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMAPH5094616 for ; Fri, 17 Oct 2003 15:10:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMAPsd015090 for ; Fri, 17 Oct 2003 15:10:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HMAPOn015089; Fri, 17 Oct 2003 15:10:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310172210.h9HMAPOn015089@xorpc.icir.org> Date: Fri, 17 Oct 2003 15:10:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ xrl_shell_lib.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/17 15:10:25 Modified files: xorp/utils/: xrl_shell_lib.sh Log message: Add a new function split_xrl_list_values() that splits the value of an XRL variable of type ":list" into a list of values separated by space. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 15:14:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 15:15:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMF4ko067002 for ; Fri, 17 Oct 2003 15:15:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMF1H5094649; Fri, 17 Oct 2003 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMF0eb012122; Fri, 17 Oct 2003 15:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMEJeb012104 for ; Fri, 17 Oct 2003 15:14:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMEJH5094644 for ; Fri, 17 Oct 2003 15:14:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMEIsd021963 for ; Fri, 17 Oct 2003 15:14:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HMEIH3021948; Fri, 17 Oct 2003 15:14:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310172214.h9HMEIH3021948@xorpc.icir.org> Date: Fri, 17 Oct 2003 15:14:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/17 15:14:18 Modified files: xorp/fea/: test_add_route.sh Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 15:26:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 15:27:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMR5ko068781 for ; Fri, 17 Oct 2003 15:27:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMR1H5094790; Fri, 17 Oct 2003 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMR1eb012371; Fri, 17 Oct 2003 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HMQDeb012343 for ; Fri, 17 Oct 2003 15:26:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMQDH5094782 for ; Fri, 17 Oct 2003 15:26:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HMQDsd032905 for ; Fri, 17 Oct 2003 15:26:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HMQDKr032904; Fri, 17 Oct 2003 15:26:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310172226.h9HMQDKr032904@xorpc.icir.org> Date: Fri, 17 Oct 2003 15:26:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/17 15:26:13 Modified files: xorp/fea/: Makefile.am Makefile.in Added files: xorp/fea/: test_config_interface.sh Log message: Add a new test script test_config_interface.sh that tests the interaction between the FEA and the kernel network interfaces: - configure network interfaces, retrive network interface status, etc. For the time being it must be run by hand, and requires that the finder and the fea must be started in advance. Later it will be hooked into the "gmake check" test scripts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 16:53:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 16:54:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HNs6ko081573 for ; Fri, 17 Oct 2003 16:54:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HNs2H5095657; Fri, 17 Oct 2003 16:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HNs1eb014231; Fri, 17 Oct 2003 16:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9HNrjeb014221 for ; Fri, 17 Oct 2003 16:53:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HNrjH5095650 for ; Fri, 17 Oct 2003 16:53:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9HNrjsd033731 for ; Fri, 17 Oct 2003 16:53:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9HNrjcm033730; Fri, 17 Oct 2003 16:53:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310172353.h9HNrjcm033730@xorpc.icir.org> Date: Fri, 17 Oct 2003 16:53:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/17 16:53:45 Modified files: xorp/fea/: test_config_interface.sh Log message: Change one of the configured TEST_MAC address from 00:04:5A:49:5D:12 to 0:4:5a:49:5d:12 In reality, both addresses are equvalent, but the string comparison when the value is read back requires the second form... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Fri Oct 17 22:22:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Oct 2003 22:23:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9I5N6ko030896 for ; Fri, 17 Oct 2003 22:23:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9I5N1H5098028; Fri, 17 Oct 2003 22:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9I5N1eb018582; Fri, 17 Oct 2003 22:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9I5Mjeb018573 for ; Fri, 17 Oct 2003 22:22:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9I5MjH5098026 for ; Fri, 17 Oct 2003 22:22:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9I5Mjsd035611 for ; Fri, 17 Oct 2003 22:22:45 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9I5MjrP035610; Fri, 17 Oct 2003 22:22:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310180522.h9I5MjrP035610@xorpc.icir.org> Date: Fri, 17 Oct 2003 22:22:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_args.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/17 22:22:45 Modified files: xorp/libxipc/: xrl_args.hh Log message: Shift inlines to end of file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Sat Oct 18 8:18:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 18 Oct 2003 08:19:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9IFJ5ko024138 for ; Sat, 18 Oct 2003 08:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9IFJ1H5006738; Sat, 18 Oct 2003 08:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9IFJ1eb027380; Sat, 18 Oct 2003 08:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9IFIieb027371 for ; Sat, 18 Oct 2003 08:18:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9IFIiH5006736 for ; Sat, 18 Oct 2003 08:18:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9IFIisd005560 for ; Sat, 18 Oct 2003 08:18:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9IFIie7005559; Sat, 18 Oct 2003 08:18:44 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310181518.h9IFIie7005559@xorpc.icir.org> Date: Sat, 18 Oct 2003 8:18:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc route_table_decision.hh test_decision.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/10/18 08:18:44 Modified files: xorp/bgp/: route_table_decision.cc route_table_decision.hh test_decision.reference Log message: Pretty much a complete re-write of the BGP decision process to fix the previously broken decision semantics. Passes all our acceptance tests, but obviously isn't as thoroughly tested as the old decision process code. Also, new test reference output, as the new code avoids performing a harmless route flap in some circumstances. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 11:34:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 11:35:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KIZ5ko018779 for ; Mon, 20 Oct 2003 11:35:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KIZ1H5033056; Mon, 20 Oct 2003 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KIZ1eb009058; Mon, 20 Oct 2003 11:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KIYCeb009040 for ; Mon, 20 Oct 2003 11:34:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KIYBH5033040 for ; Mon, 20 Oct 2003 11:34:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KIYBsd077510 for ; Mon, 20 Oct 2003 11:34:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9KIYBd3077509; Mon, 20 Oct 2003 11:34:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310201834.h9KIYBd3077509@xorpc.icir.org> Date: Mon, 20 Oct 2003 11:34:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_member_query.cc mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/10/20 11:34:11 Modified files: xorp/mld6igmp/: mld6igmp_member_query.cc mld6igmp_vif.hh Log message: Fix few typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 15:35:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 15:36:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMa5ko064302 for ; Mon, 20 Oct 2003 15:36:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMa1H5035747; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMa1eb014707; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMZ7eb014681 for ; Mon, 20 Oct 2003 15:35:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMZ7H5035744 for ; Mon, 20 Oct 2003 15:35:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMZ7sd041736 for ; Mon, 20 Oct 2003 15:35:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9KMZ7vW041735; Mon, 20 Oct 2003 15:35:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310202235.h9KMZ7vW041735@xorpc.icir.org> Date: Mon, 20 Oct 2003 15:35:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom_list.hh xrl_atom_list.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/20 15:35:07 Modified files: xorp/libxipc/: xrl_atom_list.hh xrl_atom_list.cc Log message: Derive exceptions from those in libxorp/exceptions.hh. Remove unnecessary calls to list<>::size(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 15:36:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 15:37:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMb5ko064513 for ; Mon, 20 Oct 2003 15:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMb1H5035767; Mon, 20 Oct 2003 15:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMb1eb014745; Mon, 20 Oct 2003 15:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMa1eb014714 for ; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMa1H5035746 for ; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMa1sd041782 for ; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9KMa1X6041781; Mon, 20 Oct 2003 15:36:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310202236.h9KMa1X6041781@xorpc.icir.org> Date: Mon, 20 Oct 2003 15:36:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_atom.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/20 15:36:01 Modified files: xorp/libxipc/: xrl_atom.cc Log message: Fix some holes in binary serialization and deserialization. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 15:37:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 15:38:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMc5ko064720 for ; Mon, 20 Oct 2003 15:38:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMc1H5035774; Mon, 20 Oct 2003 15:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMc0eb014787; Mon, 20 Oct 2003 15:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMb1eb014742 for ; Mon, 20 Oct 2003 15:37:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMb1H5035765 for ; Mon, 20 Oct 2003 15:37:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMb0sd041822 for ; Mon, 20 Oct 2003 15:37:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9KMb0c8041821; Mon, 20 Oct 2003 15:37:00 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310202237.h9KMb0c8041821@xorpc.icir.org> Date: Mon, 20 Oct 2003 15:37:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_args.hh xrl_args.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/20 15:37:00 Modified files: xorp/libxipc/: xrl_args.hh xrl_args.cc Log message: Add binary serialization and deserialization methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 15:38:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 15:39:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMd5ko064933 for ; Mon, 20 Oct 2003 15:39:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMd1H5035784; Mon, 20 Oct 2003 15:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMd1eb014825; Mon, 20 Oct 2003 15:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9KMcJeb014805 for ; Mon, 20 Oct 2003 15:38:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMcJH5035780 for ; Mon, 20 Oct 2003 15:38:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9KMcJsd041855 for ; Mon, 20 Oct 2003 15:38:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9KMcJ85041854; Mon, 20 Oct 2003 15:38:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310202238.h9KMcJ85041854@xorpc.icir.org> Date: Mon, 20 Oct 2003 15:38:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_xrl_args.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/10/20 15:38:19 Modified files: xorp/libxipc/: test_xrl_args.cc Log message: Add binary serialization and deserialization tests. Change logging to use verbose_log as other tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 18:29:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 18:30:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L1U6ko018570 for ; Mon, 20 Oct 2003 18:30:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L1U2H5037414; Mon, 20 Oct 2003 18:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L1U1eb018197; Mon, 20 Oct 2003 18:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L1Tfeb018188 for ; Mon, 20 Oct 2003 18:29:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L1TfH5037409 for ; Mon, 20 Oct 2003 18:29:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L1Tesd057505 for ; Mon, 20 Oct 2003 18:29:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L1TeN2057504; Mon, 20 Oct 2003 18:29:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310210129.h9L1TeN2057504@xorpc.icir.org> Date: Mon, 20 Oct 2003 18:29:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/20 18:29:40 Modified files: xorp/bgp/harness/: test_routing1.sh Log message: Configured the BGP process to use the RIB (disabled by accidient). Distinguish between interface addresses and next hops. On enabling RIB support an anomaly with IGP distances and MEDs reared its head. Now using non default MED values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 19:00:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 19:01:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L215ko024585 for ; Mon, 20 Oct 2003 19:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L211H5037637; Mon, 20 Oct 2003 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L211eb018740; Mon, 20 Oct 2003 19:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L20Ceb018718 for ; Mon, 20 Oct 2003 19:00:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L20BH5037630 for ; Mon, 20 Oct 2003 19:00:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L20Bsd063321 for ; Mon, 20 Oct 2003 19:00:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L20BMe063320; Mon, 20 Oct 2003 19:00:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310210200.h9L20BMe063320@xorpc.icir.org> Date: Mon, 20 Oct 2003 19:00:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/20 19:00:11 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc Log message: Don't ignore cloned routing entries in the kernel when looking-up a route to a host destination. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 19:04:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 19:05:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L254ko025378 for ; Mon, 20 Oct 2003 19:05:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L250H5037660; Mon, 20 Oct 2003 19:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L250eb018814; Mon, 20 Oct 2003 19:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L24reb018802 for ; Mon, 20 Oct 2003 19:04:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L24rH5037655 for ; Mon, 20 Oct 2003 19:04:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L24rsd063386 for ; Mon, 20 Oct 2003 19:04:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L24rON063385; Mon, 20 Oct 2003 19:04:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310210204.h9L24rON063385@xorpc.icir.org> Date: Mon, 20 Oct 2003 19:04:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/20 19:04:53 Modified files: xorp/fea/: fticonfig_entry_get.hh fticonfig_entry_get_netlink.cc Log message: * Change the lookup_entry[4,6] implementation when we try to lookup an entry for a network prefix: read the whole forwarding table from the kernel, and then select from the list of all routing entries the particular entry we are looking for. Unfortunately, the Linux Netlink interface doesn't implement lookup for a specific network entry, hence we need to read the whole table at user space. * Remove FtiConfigEntryGetNetlink::lookup_entry(), because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 19:05:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 19:06:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L265ko025606 for ; Mon, 20 Oct 2003 19:06:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L261H5037685; Mon, 20 Oct 2003 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L261eb018845; Mon, 20 Oct 2003 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L25veb018836 for ; Mon, 20 Oct 2003 19:05:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L25vH5037683 for ; Mon, 20 Oct 2003 19:05:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L25vsd063461 for ; Mon, 20 Oct 2003 19:05:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L25vXN063460; Mon, 20 Oct 2003 19:05:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310210205.h9L25vXN063460@xorpc.icir.org> Date: Mon, 20 Oct 2003 19:05:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/20 19:05:57 Modified files: xorp/fea/: test_config_interface.sh Log message: Add checks that the transaction ID obtained by fea_ifmgr_start_transaction is valid. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:14 2005 Subject: No subject Mon Oct 20 19:10:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 19:11:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L2B5ko026569 for ; Mon, 20 Oct 2003 19:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L2B1H5037721; Mon, 20 Oct 2003 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L2B1eb018923; Mon, 20 Oct 2003 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L2Apeb018913 for ; Mon, 20 Oct 2003 19:10:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L2ApH5037719 for ; Mon, 20 Oct 2003 19:10:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L2Apsd063548 for ; Mon, 20 Oct 2003 19:10:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L2Ap5o063547; Mon, 20 Oct 2003 19:10:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310210210.h9L2Ap5o063547@xorpc.icir.org> Date: Mon, 20 Oct 2003 19:10:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/20 19:10:51 Modified files: xorp/fea/: test_add_route.sh Log message: * Add checks that the transaction ID obtained by fea_fti_start_transaction is valid * Add new TEST test_lookup_route4() that is used to test whether there is a route to a specific destination * Add new TEST test_lookup_deleted_route4() that is used to test whether the route to a specific destination is deleted. Note that inside test_lookup_deleted_route4() we have to sleep for two seconds so if there are any obsoleted cloned entries they can timeout. Otherwise, the test will fail because of those bogus cloned entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Mon Oct 20 21:28:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 21:29:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4T6ko056597 for ; Mon, 20 Oct 2003 21:29:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4T2H5038783; Mon, 20 Oct 2003 21:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L4T1eb020858; Mon, 20 Oct 2003 21:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L4S8eb020843 for ; Mon, 20 Oct 2003 21:28:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4S8H5038773 for ; Mon, 20 Oct 2003 21:28:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4S8sd064345 for ; Mon, 20 Oct 2003 21:28:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L4S8XG064344; Mon, 20 Oct 2003 21:28:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310210428.h9L4S8XG064344@xorpc.icir.org> Date: Mon, 20 Oct 2003 21:28:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/10/20 21:28:08 Modified files: xorp/rib/: xrl_shell_funcs.sh Log message: Add: add_igp_table4 delete_igp_table4 lookup_route4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Mon Oct 20 21:30:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 21:31:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4V5ko057012 for ; Mon, 20 Oct 2003 21:31:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4V1H5038819; Mon, 20 Oct 2003 21:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L4V1eb020899; Mon, 20 Oct 2003 21:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L4U6eb020879 for ; Mon, 20 Oct 2003 21:30:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4U6H5038809 for ; Mon, 20 Oct 2003 21:30:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L4U6sd064380 for ; Mon, 20 Oct 2003 21:30:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L4U6Gl064379; Mon, 20 Oct 2003 21:30:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310210430.h9L4U6Gl064379@xorpc.icir.org> Date: Mon, 20 Oct 2003 21:30:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/20 21:30:06 Added files: xorp/bgp/harness/: test_routing2.sh Log message: A routing topology where all three peerings are I-BGP. Testing for deterministic meds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Mon Oct 20 22:21:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Oct 2003 22:22:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L5M5ko068540 for ; Mon, 20 Oct 2003 22:22:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L5M1H5039215; Mon, 20 Oct 2003 22:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L5M1eb021527; Mon, 20 Oct 2003 22:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9L5LZeb021516 for ; Mon, 20 Oct 2003 22:21:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L5LZH5039213 for ; Mon, 20 Oct 2003 22:21:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9L5LZsd065334 for ; Mon, 20 Oct 2003 22:21:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9L5LZ27065333; Mon, 20 Oct 2003 22:21:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310210521.h9L5LZ27065333@xorpc.icir.org> Date: Mon, 20 Oct 2003 22:21:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ collect.sh peer_with_icsi.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/20 22:21:35 Modified files: other/bgp/: collect.sh peer_with_icsi.sh Log message: We now peer with the backup router directly and some bit rot issues. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 11:30:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 11:31:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIV5ko024682 for ; Tue, 21 Oct 2003 11:31:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIV1H5047404; Tue, 21 Oct 2003 11:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LIV1eb005313; Tue, 21 Oct 2003 11:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LIUKeb005275 for ; Tue, 21 Oct 2003 11:30:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIUKH5047400 for ; Tue, 21 Oct 2003 11:30:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIUKsd034557 for ; Tue, 21 Oct 2003 11:30:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LIUKN3034556; Tue, 21 Oct 2003 11:30:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310211830.h9LIUKN3034556@xorpc.icir.org> Date: Tue, 21 Oct 2003 11:30:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ draft-ietf-idr-bgp4-22.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/ Changes by: atanu@xorpc.icir.org. 03/10/21 11:30:20 Added files: xorp/bgp/docs/: draft-ietf-idr-bgp4-22.txt Log message: Latest BGP draft. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 11:59:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 12:00:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LJ05ko030562 for ; Tue, 21 Oct 2003 12:00:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LJ02H5047693; Tue, 21 Oct 2003 12:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LJ01eb006092; Tue, 21 Oct 2003 12:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LIxVeb006075 for ; Tue, 21 Oct 2003 11:59:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIxVH5047685 for ; Tue, 21 Oct 2003 11:59:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LIxVsd034870 for ; Tue, 21 Oct 2003 11:59:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LIxV6Q034869; Tue, 21 Oct 2003 11:59:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310211859.h9LIxV6Q034869@xorpc.icir.org> Date: Tue, 21 Oct 2003 11:59:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/21 11:59:31 Modified files: xorp/fea/: test_add_route.sh Log message: Increase the sleep time waiting to timeout any obsolete cloned entries from 2 to 3 seconds, because a simple experiment shows that it takes on the order of 2 seconds to timeout those entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 13:20:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 13:22:26 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKMPko046574 for ; Tue, 21 Oct 2003 13:22:26 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKL6H5048569; Tue, 21 Oct 2003 13:21:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKL4eb007905; Tue, 21 Oct 2003 13:21:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKKreb007887 for ; Tue, 21 Oct 2003 13:20:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKKrH5048566 for ; Tue, 21 Oct 2003 13:20:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKKrsd062849 for ; Tue, 21 Oct 2003 13:20:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LKKrKW062848; Tue, 21 Oct 2003 13:20:53 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310212020.h9LKKrKW062848@xorpc.icir.org> Date: Tue, 21 Oct 2003 13:20:53 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 03/10/21 13:20:53 Modified files: xorp/bgp/: route_table_decision.cc xorp/bgp/harness/: test_routing2.sh Log message: Fix reversed BGP MED test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 13:39:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 13:40:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKe5ko056906 for ; Tue, 21 Oct 2003 13:40:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKe1H5048788; Tue, 21 Oct 2003 13:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKe1eb008305; Tue, 21 Oct 2003 13:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKdSeb008291 for ; Tue, 21 Oct 2003 13:39:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKdSH5048775 for ; Tue, 21 Oct 2003 13:39:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKdSsd079197 for ; Tue, 21 Oct 2003 13:39:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LKdRMs079182; Tue, 21 Oct 2003 13:39:27 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310212039.h9LKdRMs079182@xorpc.icir.org> Date: Tue, 21 Oct 2003 13:39:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/21 13:39:27 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: Add test4 the same as test3 apart from the order of arrival of the routes. This test currently fails. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 13:56:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 13:57:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKv7ko060142 for ; Tue, 21 Oct 2003 13:57:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKv1H5049012; Tue, 21 Oct 2003 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKv1eb008665; Tue, 21 Oct 2003 13:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LKuteb008655 for ; Tue, 21 Oct 2003 13:56:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKutH5049009 for ; Tue, 21 Oct 2003 13:56:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LKutsd088306 for ; Tue, 21 Oct 2003 13:56:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LKutCD088305; Tue, 21 Oct 2003 13:56:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310212056.h9LKutCD088305@xorpc.icir.org> Date: Tue, 21 Oct 2003 13:56:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 03/10/21 13:56:55 Modified files: xorp/rib/: rt_tab_register.cc Log message: Fix NULL pointer de-reference in RegisterTable - this fixes BGP test_routing2.sh/test2. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 16:06:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 16:07:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LN75ko090555 for ; Tue, 21 Oct 2003 16:07:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LN71H5050382; Tue, 21 Oct 2003 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LN70eb011200; Tue, 21 Oct 2003 16:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LN6Qeb011163 for ; Tue, 21 Oct 2003 16:06:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LN6QH5050377 for ; Tue, 21 Oct 2003 16:06:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LN6Qsd009641 for ; Tue, 21 Oct 2003 16:06:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LN6Qot009640; Tue, 21 Oct 2003 16:06:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310212306.h9LN6Qot009640@xorpc.icir.org> Date: Tue, 21 Oct 2003 16:06:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/21 16:06:26 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: Add test2 back into the set of working tests as it no longer causes the RIB to code dump. Also update the commentary with the test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 16:18:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 16:19:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNJ6ko005167 for ; Tue, 21 Oct 2003 16:19:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNJ1H5050513; Tue, 21 Oct 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNJ0eb011469; Tue, 21 Oct 2003 16:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNIDeb011439 for ; Tue, 21 Oct 2003 16:18:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNIDH5050509 for ; Tue, 21 Oct 2003 16:18:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNIDsd009791 for ; Tue, 21 Oct 2003 16:18:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LNIDpF009790; Tue, 21 Oct 2003 16:18:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310212318.h9LNIDpF009790@xorpc.icir.org> Date: Tue, 21 Oct 2003 16:18:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/21 16:18:13 Modified files: xorp/bgp/harness/: Makefile.am Makefile.in Log message: Add test_routing2.sh to the list of tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 16:18:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 16:19:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNJ7ko005182 for ; Tue, 21 Oct 2003 16:19:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNJ1H5050515; Tue, 21 Oct 2003 16:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNJ1eb011482; Tue, 21 Oct 2003 16:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNIneb011457 for ; Tue, 21 Oct 2003 16:18:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNInH5050511 for ; Tue, 21 Oct 2003 16:18:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNImsd009810 for ; Tue, 21 Oct 2003 16:18:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LNImV9009809; Tue, 21 Oct 2003 16:18:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310212318.h9LNImV9009809@xorpc.icir.org> Date: Tue, 21 Oct 2003 16:18:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/21 16:18:48 Modified files: xorp/fea/: test_add_route.sh Log message: * Add more tests: - a test whether the underlying system has IPv4 support - a set of tests to enable/disable unicast forwarding in the underlying system - A test to delete all IPv4 routing entries installed by XORP * Clean-up the existing tests: - redirect the stderr to the stdout for some of the commands that invoke XRL sending - clean-up the format of some of the printed info _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 16:23:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 16:24:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNO4ko012373 for ; Tue, 21 Oct 2003 16:24:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNO1H5050590; Tue, 21 Oct 2003 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNO0eb011596; Tue, 21 Oct 2003 16:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNN7eb011566 for ; Tue, 21 Oct 2003 16:23:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNN7H5050572 for ; Tue, 21 Oct 2003 16:23:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNN7sd014041 for ; Tue, 21 Oct 2003 16:23:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LNN7RY014040; Tue, 21 Oct 2003 16:23:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310212323.h9LNN7RY014040@xorpc.icir.org> Date: Tue, 21 Oct 2003 16:23:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/21 16:23:07 Modified files: xorp/bgp/: plumbing.cc Log message: Comment out the warning in stop_peering if the parent table pointer is NULL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 16:27:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 16:28:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNS4ko013762 for ; Tue, 21 Oct 2003 16:28:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNS0H5050631; Tue, 21 Oct 2003 16:28:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNS0eb011679; Tue, 21 Oct 2003 16:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9LNRseb011670 for ; Tue, 21 Oct 2003 16:27:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNRrH5050629 for ; Tue, 21 Oct 2003 16:27:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9LNRrsd015689 for ; Tue, 21 Oct 2003 16:27:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9LNRrfg015688; Tue, 21 Oct 2003 16:27:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310212327.h9LNRrfg015688@xorpc.icir.org> Date: Tue, 21 Oct 2003 16:27:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/21 16:27:53 Modified files: xorp/fea/: test_add_route.sh Log message: * Modify test_lookup_deleted_route4() such that it succeeds if there is a route for the tested destination, but that is the default route "0.0.0.0/0" * Look-up -> Lookup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 17:20:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 17:21:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0L6ko027275 for ; Tue, 21 Oct 2003 17:21:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0L2H5051071; Tue, 21 Oct 2003 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9M0L1eb012634; Tue, 21 Oct 2003 17:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9M0KUeb012618 for ; Tue, 21 Oct 2003 17:20:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0KUH5051061 for ; Tue, 21 Oct 2003 17:20:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0KUsd016130 for ; Tue, 21 Oct 2003 17:20:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9M0KUBO016129; Tue, 21 Oct 2003 17:20:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310220020.h9M0KUBO016129@xorpc.icir.org> Date: Tue, 21 Oct 2003 17:20:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/21 17:20:30 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: A new MED test that all six permutations are tried. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Tue Oct 21 17:54:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Oct 2003 17:55:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0t5ko034490 for ; Tue, 21 Oct 2003 17:55:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0t1H5051277; Tue, 21 Oct 2003 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9M0t1eb013246; Tue, 21 Oct 2003 17:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9M0sKeb013232 for ; Tue, 21 Oct 2003 17:54:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0sKH5051270 for ; Tue, 21 Oct 2003 17:54:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9M0sKsd016326 for ; Tue, 21 Oct 2003 17:54:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9M0sKf5016325; Tue, 21 Oct 2003 17:54:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310220054.h9M0sKf5016325@xorpc.icir.org> Date: Tue, 21 Oct 2003 17:54:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/21 17:54:20 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: This is not really a BGP test its a RIB test repeated adding and deleting of igp tables does not seem to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Wed Oct 22 3:58:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 03:59:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MAxCko085830 for ; Wed, 22 Oct 2003 03:59:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MAx7H5056134; Wed, 22 Oct 2003 03:59:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MAx1eb021408; Wed, 22 Oct 2003 03:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MAwReb021393 for ; Wed, 22 Oct 2003 03:58:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MAwRH5056128 for ; Wed, 22 Oct 2003 03:58:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MAwQsd089718 for ; Wed, 22 Oct 2003 03:58:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MAwQh7089717; Wed, 22 Oct 2003 03:58:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310221058.h9MAwQh7089717@xorpc.icir.org> Date: Wed, 22 Oct 2003 3:58:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc route_table_decision.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/10/22 03:58:26 Modified files: xorp/bgp/: route_table_decision.cc route_table_decision.hh Log message: Re-write of DecisionTable::add_route to solve further MED problems. test_routing2.sh/test4 and test_routing2.sh/test5 now succeed. The situation this resolves is: Route 1 comes along, and wins. Route 3 comes along, and loses to route 1 on IGP distance. Route 2 comes along, and beats route 1 at MED, but loses to route 3 on IGP distance. Thus the arrival of route 2 causes a previously losing route to now win. Note: delete_route and replace_route still need re-writing to be correct. We don't have adequate tests for these yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Wed Oct 22 12:27:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 12:28:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJS7ko013747 for ; Wed, 22 Oct 2003 12:28:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJS3H5061846; Wed, 22 Oct 2003 12:28:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MJS1eb002173; Wed, 22 Oct 2003 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MJRNeb002152 for ; Wed, 22 Oct 2003 12:27:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJRNH5061839 for ; Wed, 22 Oct 2003 12:27:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJRNsd009244 for ; Wed, 22 Oct 2003 12:27:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MJRNJP009243; Wed, 22 Oct 2003 12:27:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310221927.h9MJRNJP009243@xorpc.icir.org> Date: Wed, 22 Oct 2003 12:27:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 12:27:23 Modified files: xorp/fea/: ifconfig_set.cc Log message: * When pushing interface configuration to the underlying system, then IfConfigSet::push_interface() itself sets the interface flags on the underlying interface as appropriate (similar to what push_vif() does). Note that this behavior slightly changes the semantics of the mapping between enabled/disabled interface/vif and the underlying UP/DOWN system interface status, but is needed to fix the alignment between a configured IfTree, and the IfTree read from the underlying system. This semantic change should have no practical impact. * Nits in IfConfigSet::push_vif() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Wed Oct 22 12:30:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 12:31:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJVCko014896 for ; Wed, 22 Oct 2003 12:31:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJV8H5061884; Wed, 22 Oct 2003 12:31:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MJV1eb002246; Wed, 22 Oct 2003 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MJUjeb002228 for ; Wed, 22 Oct 2003 12:30:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJUjH5061875 for ; Wed, 22 Oct 2003 12:30:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MJUjsd009620 for ; Wed, 22 Oct 2003 12:30:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MJUj3Y009619; Wed, 22 Oct 2003 12:30:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310221930.h9MJUj3Y009619@xorpc.icir.org> Date: Wed, 22 Oct 2003 12:30:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 12:30:45 Modified files: xorp/fea/: xrl_ifmanager.hh xrl_target.cc Log message: * Minor changes inside XrlInterfaceManager::addr_valid(): - Rename existing argument "addr" to "validate_addr" - Add new argument IPv[4,6] addr that is the address to use in the error log message. * Arguments aligment space nits in xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Wed Oct 22 13:34:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 13:35:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKZ8ko033813 for ; Wed, 22 Oct 2003 13:35:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKZ4H5062467; Wed, 22 Oct 2003 13:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MKZ1eb003473; Wed, 22 Oct 2003 13:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MKYpeb003449 for ; Wed, 22 Oct 2003 13:34:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKYUH5062462 for ; Wed, 22 Oct 2003 13:34:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKYUsd025623 for ; Wed, 22 Oct 2003 13:34:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MKYU6q025622; Wed, 22 Oct 2003 13:34:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222034.h9MKYU6q025622@xorpc.icir.org> Date: Wed, 22 Oct 2003 13:34:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 13:34:30 Modified files: xorp/fea/: test_add_route.sh Log message: * Reverse the ordering of the unicast forwarding tests: on initialization explicitly enable unicast forwarding, then try to disable it, and then try to enable it * Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:15 2005 Subject: No subject Wed Oct 22 13:36:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 13:37:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKb9ko034248 for ; Wed, 22 Oct 2003 13:37:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKb5H5062504; Wed, 22 Oct 2003 13:37:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MKb1eb003522; Wed, 22 Oct 2003 13:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MKaZeb003511 for ; Wed, 22 Oct 2003 13:36:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKaZH5062499 for ; Wed, 22 Oct 2003 13:36:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MKaYsd025790 for ; Wed, 22 Oct 2003 13:36:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MKaYrO025789; Wed, 22 Oct 2003 13:36:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222036.h9MKaYrO025789@xorpc.icir.org> Date: Wed, 22 Oct 2003 13:36:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 13:36:34 Modified files: xorp/fea/: test_config_interface.sh Log message: Add a number of additional tests, and cleanup existing tests. Now all XRLs in fea_ifmgr.xif are tested (except the IPv6-specific XRLs). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 14:09:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 14:10:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLA7ko040630 for ; Wed, 22 Oct 2003 14:10:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLA2H5062841; Wed, 22 Oct 2003 14:10:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MLA1eb004262; Wed, 22 Oct 2003 14:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ML9Xeb004243 for ; Wed, 22 Oct 2003 14:09:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ML9XH5062836 for ; Wed, 22 Oct 2003 14:09:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ML9Xsd049665 for ; Wed, 22 Oct 2003 14:09:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ML9XUE049664; Wed, 22 Oct 2003 14:09:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310222109.h9ML9XUE049664@xorpc.icir.org> Date: Wed, 22 Oct 2003 14:09:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh xorp/xrl/targets/ fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc test_local_copy.cc test_remote_copy.cc xorp/fea/ libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/22 14:09:33 Modified files: xorp/xrl/interfaces/: fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh xorp/xrl/targets/: fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc test_local_copy.cc test_remote_copy.cc xorp/fea/: libfeaclient_bridge.cc Log message: Add interface pif_index to replicated fea interface configuration state covered by libfeaclient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 14:45:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 14:46:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLk7hh002701 for ; Wed, 22 Oct 2003 14:46:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLk3H5063156; Wed, 22 Oct 2003 14:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MLk1eb005120; Wed, 22 Oct 2003 14:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MLjbeb005107 for ; Wed, 22 Oct 2003 14:45:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLjbH5063148 for ; Wed, 22 Oct 2003 14:45:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MLjbsd061091 for ; Wed, 22 Oct 2003 14:45:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MLjbLL061090; Wed, 22 Oct 2003 14:45:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222145.h9MLjbLL061090@xorpc.icir.org> Date: Wed, 22 Oct 2003 14:45:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 14:45:37 Modified files: xorp/fea/: test_config_interface.sh Log message: * IPv4-specific variables renaming: ADDR -> ADDR4 PREFIX_LEN -> PREFIX_LEN4 BROADCAST -> BROADCAST4 ENDPOINT -> ENDPOINT4 * Add IPv6-specific tests as well (conditionally run by the host-specific configurational variable HAVE_IPV6). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 15:15:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 15:16:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MMG5hh008827 for ; Wed, 22 Oct 2003 15:16:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MMG2H5063428; Wed, 22 Oct 2003 15:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MMG0eb005741; Wed, 22 Oct 2003 15:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MMFTeb005728 for ; Wed, 22 Oct 2003 15:15:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MMFTH5063422 for ; Wed, 22 Oct 2003 15:15:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MMFSsd072132 for ; Wed, 22 Oct 2003 15:15:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MMFS6v072131; Wed, 22 Oct 2003 15:15:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222215.h9MMFS6v072131@xorpc.icir.org> Date: Wed, 22 Oct 2003 15:15:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 15:15:28 Modified files: xorp/fea/: test_add_route.sh Log message: * IPv4-specific variables renaming: DEST -> DEST4 DEST2 -> DEST4_2 DEST_HOST -> DEST_HOST4 DEST_HOST2 -> DEST_HOST4_2 * Add IPv6-specific tests (conditionally run by the host-specific configurational variable HAVE_IPV6). For now, the IPv6 tests are disabled for all hosts until the IPv6 configuration and next-hop gateway story is clearer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 16:22:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 16:23:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNNAhh021755 for ; Wed, 22 Oct 2003 16:23:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNN6H5064039; Wed, 22 Oct 2003 16:23:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNN2eb007250; Wed, 22 Oct 2003 16:23:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNMjeb007218 for ; Wed, 22 Oct 2003 16:22:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNMjH5064035 for ; Wed, 22 Oct 2003 16:22:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNMjsd078210 for ; Wed, 22 Oct 2003 16:22:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MNMjFW078209; Wed, 22 Oct 2003 16:22:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222322.h9MNMjFW078209@xorpc.icir.org> Date: Wed, 22 Oct 2003 16:22:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ MakefileRootCheck.am MakefileRootCheck.in xorp/fea/ MakefileRootCheck.am MakefileRootCheck.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 16:22:45 Added files: ./: MakefileRootCheck.am MakefileRootCheck.in xorp/fea/: MakefileRootCheck.am MakefileRootCheck.in Log message: Add MakefileRootCheck.{am,in} makefiles that contain information about tests that must be run as a root. The idea (by Orion) is that we need to run "gmake -f MakefileRootCheck" as a root from the top-level directory to run all tests that require root permission. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 16:23:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 16:24:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNO6hh021962 for ; Wed, 22 Oct 2003 16:24:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNO2H5064049; Wed, 22 Oct 2003 16:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNO0eb007283; Wed, 22 Oct 2003 16:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNNheb007267 for ; Wed, 22 Oct 2003 16:23:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNNhH5064043 for ; Wed, 22 Oct 2003 16:23:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNNhsd078247 for ; Wed, 22 Oct 2003 16:23:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MNNhZA078246; Wed, 22 Oct 2003 16:23:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222323.h9MNNhZA078246@xorpc.icir.org> Date: Wed, 22 Oct 2003 16:23:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/10/22 16:23:43 Modified files: ./: configure.in configure Log message: Add xorp/MakefileRootCheck and xorp/fea/MakefileRootCheck to the list of makefiles to generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 16:24:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 16:25:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNP6hh022172 for ; Wed, 22 Oct 2003 16:25:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNP2H5064075; Wed, 22 Oct 2003 16:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNP1eb007313; Wed, 22 Oct 2003 16:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9MNOFeb007296 for ; Wed, 22 Oct 2003 16:24:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNOEH5064057 for ; Wed, 22 Oct 2003 16:24:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9MNOEsd078277 for ; Wed, 22 Oct 2003 16:24:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9MNOEB8078276; Wed, 22 Oct 2003 16:24:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310222324.h9MNOEB8078276@xorpc.icir.org> Date: Wed, 22 Oct 2003 16:24:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ .cvsignore xorp/fea/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/22 16:24:14 Modified files: ./: .cvsignore xorp/fea/: .cvsignore Log message: Add MakefileRootCheck to the list of CVS-ignored files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 17:13:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 17:14:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0E6hh031590 for ; Wed, 22 Oct 2003 17:14:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0E2H5064645; Wed, 22 Oct 2003 17:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N0E1eb008321; Wed, 22 Oct 2003 17:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N0Dmeb008308 for ; Wed, 22 Oct 2003 17:13:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0DlH5064639 for ; Wed, 22 Oct 2003 17:13:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0Dlsd082848 for ; Wed, 22 Oct 2003 17:13:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N0DlJN082845; Wed, 22 Oct 2003 17:13:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310230013.h9N0DlJN082845@xorpc.icir.org> Date: Wed, 22 Oct 2003 17:13:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ args.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: pavlin@xorpc.icir.org. 03/10/22 17:13:47 Modified files: xorp/bgp/harness/: args.sh Log message: Fix a typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 17:20:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 17:21:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0L6hh032976 for ; Wed, 22 Oct 2003 17:21:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0L2H5064728; Wed, 22 Oct 2003 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N0L0eb008490; Wed, 22 Oct 2003 17:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N0Kheb008481 for ; Wed, 22 Oct 2003 17:20:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0KhH5064726 for ; Wed, 22 Oct 2003 17:20:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N0Khsd085435 for ; Wed, 22 Oct 2003 17:20:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N0Kh9D085434; Wed, 22 Oct 2003 17:20:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310230020.h9N0Kh9D085434@xorpc.icir.org> Date: Wed, 22 Oct 2003 17:20:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ Makefile.am Makefile.in xorp/utils/ args.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/22 17:20:43 Modified files: xorp/utils/: Makefile.am Makefile.in Added files: xorp/utils/: args.sh Log message: Add a copy of file bgp/harness/args.sh to utils/args.sh . The idea is to have one single copy of args.sh in a generic place. For the time being this place is directory "utils". In the future args.sh may be moved to some other test-specific directory that may contain "runit" as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 20:10:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 20:11:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3BHhh068030 for ; Wed, 22 Oct 2003 20:11:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3BDH5066026; Wed, 22 Oct 2003 20:11:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N3B0eb011073; Wed, 22 Oct 2003 20:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N3A6eb011058 for ; Wed, 22 Oct 2003 20:10:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3A6H5066018 for ; Wed, 22 Oct 2003 20:10:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3A6sd086770 for ; Wed, 22 Oct 2003 20:10:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N3A6ne086769; Wed, 22 Oct 2003 20:10:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230310.h9N3A6ne086769@xorpc.icir.org> Date: Wed, 22 Oct 2003 20:10:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc packet.hh peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_ribout.cc ...route_table_ribout.hh ...test_plumbing.cc ...test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/22 20:10:06 Modified files: xorp/bgp/: bgp.cc packet.hh peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_ribout.cc route_table_ribout.hh test_plumbing.cc test_ribout.cc Log message: We have four separate instances of routing tables in BGP: IPv4 (AFI 1) Unicast (SAFI 1) IPv4 (AFI 1) Multicast (SAFI 2) IPv6 (AFI 2) Unicast (SAFI 1) IPv6 (AFI 2) Multicast (SAFI 2) When an update packet is teased apart and each route is injected into the plumbing it is obvious where it should be injected. When the message pops out of the plumbing at the peer handler the AFI information is preserved as its implemented using templates. The SAFI information, however is lost. The simplest way of preserving the SAFI information is to place it in the subnet route message. I tried this but in some methods it became awkward. Therefore the relevant peerhandler methods now take a SAFI argument and each instance of the ribout is passed a SAFI in its constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 20:14:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 20:20:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3K5hh070077 for ; Wed, 22 Oct 2003 20:20:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3K2H5066091; Wed, 22 Oct 2003 20:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N3F1eb011133; Wed, 22 Oct 2003 20:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N3Ekeb011123 for ; Wed, 22 Oct 2003 20:14:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3EkH5066048 for ; Wed, 22 Oct 2003 20:14:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N3Eksd086875 for ; Wed, 22 Oct 2003 20:14:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N3EkID086874; Wed, 22 Oct 2003 20:14:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230314.h9N3EkID086874@xorpc.icir.org> Date: Wed, 22 Oct 2003 20:14:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/docs/ rfc3392.txt xorp/bgp/docs/old/ rfc2842.txt xorp/bgp/docs/ rfc2842.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/docs/old/ Changes by: atanu@xorpc.icir.org. 03/10/22 20:14:46 Added files: xorp/bgp/docs/: rfc3392.txt xorp/bgp/docs/old/: rfc2842.txt Removed files: xorp/bgp/docs/: rfc2842.txt Log message: New "Capabilities Advertisement with BGP-4" rfc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 21:10:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 21:11:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N4B9hh083297 for ; Wed, 22 Oct 2003 21:11:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N4B5H5066459; Wed, 22 Oct 2003 21:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N4B1eb011995; Wed, 22 Oct 2003 21:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N4APeb011981 for ; Wed, 22 Oct 2003 21:10:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N4APH5066457 for ; Wed, 22 Oct 2003 21:10:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N4APsd093884 for ; Wed, 22 Oct 2003 21:10:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N4APMB093883; Wed, 22 Oct 2003 21:10:25 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230410.h9N4APMB093883@xorpc.icir.org> Date: Wed, 22 Oct 2003 21:10:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc path_attribute.cc path_attribute.hh peer_handler.cc route_table_nhlookup.cc test_packet.cc test_packet_coding.cc xorp/bgp/harness/ peer.cc test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/22 21:10:25 Modified files: xorp/bgp/: bgp_trie.cc path_attribute.cc path_attribute.hh peer_handler.cc route_table_nhlookup.cc test_packet.cc test_packet_coding.cc xorp/bgp/harness/: peer.cc test_trie.cc Log message: When I added the IPv6 multiprotocol support I had assumed that we would only support unicast SAFI's. Now we intend to support multicast SAFI's make the SAFI type a constructor argument for multiprotocol path attributes. Also store AFI/SAFI state as enums. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 22:24:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 22:25:40 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N5Pdhh008459 for ; Wed, 22 Oct 2003 22:25:39 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N5PZH5067044; Wed, 22 Oct 2003 22:25:35 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N5P0eb013161; Wed, 22 Oct 2003 22:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N5Oaeb013149 for ; Wed, 22 Oct 2003 22:24:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N5OZH5067017 for ; Wed, 22 Oct 2003 22:24:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N5OZsd005764 for ; Wed, 22 Oct 2003 22:24:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N5OZXP005763; Wed, 22 Oct 2003 22:24:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230524.h9N5OZXP005763@xorpc.icir.org> Date: Wed, 22 Oct 2003 22:24:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/ action.cc from.cc policy_route.cc statement.cc term.cc then.cc to.cc xorp/policy/ policy_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/policy/ Changes by: atanu@xorpc.icir.org. 03/10/22 22:24:35 Modified files: xorp/policy/: action.cc from.cc policy_route.cc statement.cc term.cc then.cc to.cc Added files: xorp/policy/: policy_module.h Log message: This library includes a BGP header file that includes another header file that uses an XLOG_ routine, hence libxorp/xlog.h, which requires a module or library name to be defined. So create policy_module.h and include it in all the incredibly useful source files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Wed Oct 22 23:26:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Oct 2003 23:27:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N6RBhh026442 for ; Wed, 22 Oct 2003 23:27:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N6R7H5067612; Wed, 22 Oct 2003 23:27:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N6R1eb014054; Wed, 22 Oct 2003 23:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N6Qreb014045 for ; Wed, 22 Oct 2003 23:26:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N6QrH5067606 for ; Wed, 22 Oct 2003 23:26:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N6Qrsd013024 for ; Wed, 22 Oct 2003 23:26:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N6Qr4m013023; Wed, 22 Oct 2003 23:26:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230626.h9N6Qr4m013023@xorpc.icir.org> Date: Wed, 22 Oct 2003 23:26:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/22 23:26:53 Modified files: xorp/bgp/: path_attribute.cc test_packet_coding.cc Log message: Multiprotocol IPv4 path attribute handling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Thu Oct 23 2:39:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 02:40:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9e9hh091254 for ; Thu, 23 Oct 2003 02:40:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9e4H5069518; Thu, 23 Oct 2003 02:40:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N9e0eb017070; Thu, 23 Oct 2003 02:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N9dVeb017057 for ; Thu, 23 Oct 2003 02:39:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9dVH5069509 for ; Thu, 23 Oct 2003 02:39:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9dVsd079427 for ; Thu, 23 Oct 2003 02:39:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N9dVk1079426; Thu, 23 Oct 2003 02:39:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230939.h9N9dVk1079426@xorpc.icir.org> Date: Thu, 23 Oct 2003 2:39:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/23 02:39:31 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: Move tests 4 and 5 to the working list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Thu Oct 23 2:41:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 02:42:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9gDhh091782 for ; Thu, 23 Oct 2003 02:42:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9g6H5069545; Thu, 23 Oct 2003 02:42:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N9g1eb017121; Thu, 23 Oct 2003 02:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9N9fveb017111 for ; Thu, 23 Oct 2003 02:41:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9fvH5069543 for ; Thu, 23 Oct 2003 02:41:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9N9fvsd080130 for ; Thu, 23 Oct 2003 02:41:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9N9fvlu080128; Thu, 23 Oct 2003 02:41:57 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310230941.h9N9fvlu080128@xorpc.icir.org> Date: Thu, 23 Oct 2003 2:41:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh path_attribute.hh peer_handler.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/23 02:41:56 Modified files: xorp/bgp/: packet.hh path_attribute.hh peer_handler.cc update_packet.cc Log message: The update packet can now handle all AFIs and SAFIs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Thu Oct 23 3:49:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 03:50:15 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAoFhh009849 for ; Thu, 23 Oct 2003 03:50:15 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAoBH5070134; Thu, 23 Oct 2003 03:50:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NAo0eb017977; Thu, 23 Oct 2003 03:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NAnNeb017960 for ; Thu, 23 Oct 2003 03:49:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAnMH5070109 for ; Thu, 23 Oct 2003 03:49:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAnMsd084156 for ; Thu, 23 Oct 2003 03:49:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NAnMqi084155; Thu, 23 Oct 2003 03:49:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310231049.h9NAnMqi084155@xorpc.icir.org> Date: Thu, 23 Oct 2003 3:49:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/23 03:49:22 Modified files: xorp/bgp/: route_table_fanout.cc Log message: In skip_entire_queue change a fprintf to a XLOG_INFO. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Thu Oct 23 3:54:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 03:55:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAtHhh011116 for ; Thu, 23 Oct 2003 03:55:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAtEH5070171; Thu, 23 Oct 2003 03:55:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NAt1eb018060; Thu, 23 Oct 2003 03:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NAsfeb018047 for ; Thu, 23 Oct 2003 03:54:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAsfH5070143 for ; Thu, 23 Oct 2003 03:54:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NAsesd084250 for ; Thu, 23 Oct 2003 03:54:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NAseGM084249; Thu, 23 Oct 2003 03:54:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310231054.h9NAseGM084249@xorpc.icir.org> Date: Thu, 23 Oct 2003 3:54:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.hh next_hop_resolver.cc process_watch.cc process_watch.hh rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/23 03:54:40 Modified files: xorp/bgp/: bgp.hh next_hop_resolver.cc process_watch.cc process_watch.hh rib_ipc_handler.cc Log message: After about two days the BGP process on xorp12 is exiting because it believes that the finder has died. If an XRL call fails due to NO_FINDER we call finder_death. Pass the filename to finder_death, so we can tell which XRL call failed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:16 2005 Subject: No subject Thu Oct 23 9:24:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 09:25:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGPHhh091656 for ; Thu, 23 Oct 2003 09:25:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGPDH5076044; Thu, 23 Oct 2003 09:25:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGP1eb024958; Thu, 23 Oct 2003 09:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGO3eb024941 for ; Thu, 23 Oct 2003 09:24:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGO3H5076010 for ; Thu, 23 Oct 2003 09:24:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGO3sd089206 for ; Thu, 23 Oct 2003 09:24:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NGO3kC089205; Thu, 23 Oct 2003 09:24:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310231624.h9NGO3kC089205@xorpc.icir.org> Date: Thu, 23 Oct 2003 9:24:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_cmd_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/23 09:24:03 Modified files: xorp/libfeaclient/: ifmgr_cmd_queue.cc Log message: Add pif index to values converted to commands in IfMgrIfAtomToCommands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 9:53:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 09:54:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGs9hh099683 for ; Thu, 23 Oct 2003 09:54:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGs5H5077607; Thu, 23 Oct 2003 09:54:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGs1eb025609; Thu, 23 Oct 2003 09:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGrYeb025591 for ; Thu, 23 Oct 2003 09:53:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGrXH5077598 for ; Thu, 23 Oct 2003 09:53:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGrXsd090812 for ; Thu, 23 Oct 2003 09:53:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NGrXDE090811; Thu, 23 Oct 2003 09:53:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310231653.h9NGrXDE090811@xorpc.icir.org> Date: Thu, 23 Oct 2003 9:53:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/23 09:53:33 Modified files: xorp/libfeaclient/: ifmgr_atoms.cc Log message: Remove resolved question in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 9:54:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 09:55:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGt8hh099939 for ; Thu, 23 Oct 2003 09:55:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGt4H5077618; Thu, 23 Oct 2003 09:55:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGt0eb025642; Thu, 23 Oct 2003 09:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NGs6eb025621 for ; Thu, 23 Oct 2003 09:54:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGs6H5077609 for ; Thu, 23 Oct 2003 09:54:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NGs6sd090840 for ; Thu, 23 Oct 2003 09:54:06 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NGs6A8090839; Thu, 23 Oct 2003 09:54:06 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310231654.h9NGs6A8090839@xorpc.icir.org> Date: Thu, 23 Oct 2003 9:54:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/23 09:54:06 Modified files: xorp/libfeaclient/: ifmgr_atoms.hh Log message: Initialize all fields in constructors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 15:31:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 15:32:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NMW7hh078305 for ; Thu, 23 Oct 2003 15:32:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NMW3H5081293; Thu, 23 Oct 2003 15:32:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NMW1eb002916; Thu, 23 Oct 2003 15:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9NMVNeb002901 for ; Thu, 23 Oct 2003 15:31:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NMVNH5081291 for ; Thu, 23 Oct 2003 15:31:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9NMVNsd057853 for ; Thu, 23 Oct 2003 15:31:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9NMVNXf057852; Thu, 23 Oct 2003 15:31:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310232231.h9NMVNXf057852@xorpc.icir.org> Date: Thu, 23 Oct 2003 15:31:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/10/23 15:31:23 Modified files: xorp/libfeaclient/: ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc Log message: Change IfMgrXrlMirror to support ServiceBase interface rather than doing own version thereof _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 17:02:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 17:03:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O037hh000389 for ; Thu, 23 Oct 2003 17:03:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O033H5082058; Thu, 23 Oct 2003 17:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O030eb004899; Thu, 23 Oct 2003 17:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O02Oeb004881 for ; Thu, 23 Oct 2003 17:02:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O02OH5082054 for ; Thu, 23 Oct 2003 17:02:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O02Osd058648 for ; Thu, 23 Oct 2003 17:02:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O02O4t058647; Thu, 23 Oct 2003 17:02:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200310240002.h9O02O4t058647@xorpc.icir.org> Date: Thu, 23 Oct 2003 17:02:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.hh netlink_socket.hh netlink_socket_utils.hh routing_socket.hh xrl_ifupdate.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/10/23 17:02:24 Modified files: xorp/fea/: ifconfig_set.hh netlink_socket.hh netlink_socket_utils.hh routing_socket.hh xrl_ifupdate.hh Log message: Fix kdoc warnings - using @param to refer to method arguments in other method argument comments and/or @return comment. AFAIT, there's no good way to do this without hacking kdoc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 19:09:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 19:10:14 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2AEhh031435 for ; Thu, 23 Oct 2003 19:10:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2AAH5083117; Thu, 23 Oct 2003 19:10:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2A1eb007094; Thu, 23 Oct 2003 19:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O29meb007083 for ; Thu, 23 Oct 2003 19:09:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O29mH5083094 for ; Thu, 23 Oct 2003 19:09:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O29lsd067616 for ; Thu, 23 Oct 2003 19:09:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O29lFA067615; Thu, 23 Oct 2003 19:09:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310240209.h9O29lFA067615@xorpc.icir.org> Date: Thu, 23 Oct 2003 19:09:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/23 19:09:47 Modified files: xorp/fea/: test_add_route.sh Log message: Reorganize all the tests, such that all small tests that depend on running one after another become subtests in bigger meta-tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 19:10:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 19:11:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2B9hh031670 for ; Thu, 23 Oct 2003 19:11:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2B5H5083123; Thu, 23 Oct 2003 19:11:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2B1eb007116; Thu, 23 Oct 2003 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2ATeb007105 for ; Thu, 23 Oct 2003 19:10:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2ATH5083121 for ; Thu, 23 Oct 2003 19:10:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2ATsd067679 for ; Thu, 23 Oct 2003 19:10:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O2ATFO067678; Thu, 23 Oct 2003 19:10:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310240210.h9O2ATFO067678@xorpc.icir.org> Date: Thu, 23 Oct 2003 19:10:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/23 19:10:29 Modified files: xorp/fea/: test_config_interface.sh Log message: Reorganize all the tests, such that all small tests that depend on running one after another become subtests in bigger meta-tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 19:14:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 19:15:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2FBhh032659 for ; Thu, 23 Oct 2003 19:15:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2F7H5083161; Thu, 23 Oct 2003 19:15:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2F0eb007184; Thu, 23 Oct 2003 19:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2EReb007168 for ; Thu, 23 Oct 2003 19:14:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2ERH5083137 for ; Thu, 23 Oct 2003 19:14:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2ERsd067760 for ; Thu, 23 Oct 2003 19:14:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O2ER3S067759; Thu, 23 Oct 2003 19:14:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310240214.h9O2ER3S067759@xorpc.icir.org> Date: Thu, 23 Oct 2003 19:14:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ args.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/ Changes by: pavlin@xorpc.icir.org. 03/10/23 19:14:27 Modified files: xorp/utils/: args.sh Log message: * Explicitly check the return value from each test, and then exit with that return value if the test failed. * Add emacs-friendly trailer _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 19:20:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 19:21:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2LDhh034151 for ; Thu, 23 Oct 2003 19:21:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2LAH5083218; Thu, 23 Oct 2003 19:21:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2L1eb007296; Thu, 23 Oct 2003 19:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2Kaeb007276 for ; Thu, 23 Oct 2003 19:20:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2KaH5083215 for ; Thu, 23 Oct 2003 19:20:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2Kasd067877 for ; Thu, 23 Oct 2003 19:20:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O2KaF0067876; Thu, 23 Oct 2003 19:20:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310240220.h9O2KaF0067876@xorpc.icir.org> Date: Thu, 23 Oct 2003 19:20:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/23 19:20:36 Modified files: xorp/fea/: test_add_route.sh test_config_interface.sh Log message: Adapt the test scripts to use the "utils/runit" and "utils/args.sh" (similar to the BGP tests). Now each test script can be run stand-alone without the explicit requirement that the finder and the fea processes must be started in advance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Thu Oct 23 19:24:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Oct 2003 19:25:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2PAhh035081 for ; Thu, 23 Oct 2003 19:25:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2P6H5083267; Thu, 23 Oct 2003 19:25:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2P1eb007415; Thu, 23 Oct 2003 19:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9O2O9eb007372 for ; Thu, 23 Oct 2003 19:24:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2O9H5083248 for ; Thu, 23 Oct 2003 19:24:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9O2O9sd073586 for ; Thu, 23 Oct 2003 19:24:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9O2O9Bt073585; Thu, 23 Oct 2003 19:24:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310240224.h9O2O9Bt073585@xorpc.icir.org> Date: Thu, 23 Oct 2003 19:24:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ MakefileRootCheck.am MakefileRootCheck.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/23 19:24:09 Modified files: xorp/fea/: MakefileRootCheck.am MakefileRootCheck.in Log message: Enable test_add_route.sh and test_configure_interface.sh test scripts as TEST targets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 13:48:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 13:49:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKn7hh098583 for ; Fri, 24 Oct 2003 13:49:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKn3H5094374; Fri, 24 Oct 2003 13:49:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OKn1eb027038; Fri, 24 Oct 2003 13:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OKmreb027024 for ; Fri, 24 Oct 2003 13:48:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKmqH5094367 for ; Fri, 24 Oct 2003 13:48:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKmqsd094200 for ; Fri, 24 Oct 2003 13:48:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9OKmqsM094199; Fri, 24 Oct 2003 13:48:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310242048.h9OKmqsM094199@xorpc.icir.org> Date: Fri, 24 Oct 2003 13:48:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: pavlin@xorpc.icir.org. 03/10/24 13:48:52 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc show_interfaces.hh Log message: * Rename InterfaceMonitor::get_all_vifaddr4_done() to InterfaceMonitor::get_vifaddr4_done() for consistency reason, and to avoid confusion with calling the existing get_all_foo XRLs for getting network interface information from the system. * Replace a call _ifmgr_client.send_get_all_address_flags4() with _ifmgr_client.send_get_configured_address_flags4() because it looks like in that specific case the tool should be obtaining information about configured network interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 13:51:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 13:52:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKq7hh099324 for ; Fri, 24 Oct 2003 13:52:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKq2H5094404; Fri, 24 Oct 2003 13:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OKq0eb027127; Fri, 24 Oct 2003 13:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OKp8eb027085 for ; Fri, 24 Oct 2003 13:51:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKp8H5094400 for ; Fri, 24 Oct 2003 13:51:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OKp8sd094746 for ; Fri, 24 Oct 2003 13:51:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9OKp8bc094745; Fri, 24 Oct 2003 13:51:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310242051.h9OKp8bc094745@xorpc.icir.org> Date: Fri, 24 Oct 2003 13:51:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/10/24 13:51:08 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Rename all get_all_foo ifmgr XRLs to get_system_foo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 15:45:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 15:46:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMk7WR014361 for ; Fri, 24 Oct 2003 15:46:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMk3H5095443; Fri, 24 Oct 2003 15:46:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMk1eb029801; Fri, 24 Oct 2003 15:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMjLeb029766 for ; Fri, 24 Oct 2003 15:45:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMjLH5095441 for ; Fri, 24 Oct 2003 15:45:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMjLsd021218 for ; Fri, 24 Oct 2003 15:45:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9OMjLNq021217; Fri, 24 Oct 2003 15:45:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310242245.h9OMjLNq021217@xorpc.icir.org> Date: Fri, 24 Oct 2003 15:45:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/10/24 15:45:21 Modified files: xorp/pim/: configure_pim Log message: If $ENABLE_VIFS shell variable is pre-defined, then use the predefined values for ENABLE_VIFS, CAND_BSR_VIF, CAND_RP_VIF, STATIC_RPS [A patch by jonny@jonny.eng.br (Joao Carlos Mendes Luis)] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 15:47:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 15:48:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMm8WR015038 for ; Fri, 24 Oct 2003 15:48:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMm4H5095458; Fri, 24 Oct 2003 15:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMm1eb029844; Fri, 24 Oct 2003 15:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMlreb029831 for ; Fri, 24 Oct 2003 15:47:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMlrH5095456 for ; Fri, 24 Oct 2003 15:47:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMlrsd021248 for ; Fri, 24 Oct 2003 15:47:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9OMlrB0021247; Fri, 24 Oct 2003 15:47:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310242247.h9OMlrB0021247@xorpc.icir.org> Date: Fri, 24 Oct 2003 15:47:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea xorp/mld6igmp/ configure_mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/10/24 15:47:52 Modified files: xorp/fea/: configure_mfea xorp/mld6igmp/: configure_mld6igmp Log message: If $ENABLE_VIFS shell variable is pre-defined, then use that value. [A patch by jonny@jonny.eng.br (Joao Carlos Mendes Luis)] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 15:51:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 15:52:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMq7WR017195 for ; Fri, 24 Oct 2003 15:52:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMq3H5095492; Fri, 24 Oct 2003 15:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMq1eb029910; Fri, 24 Oct 2003 15:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9OMpdeb029899 for ; Fri, 24 Oct 2003 15:51:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMpdH5095488 for ; Fri, 24 Oct 2003 15:51:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9OMpdsd021310 for ; Fri, 24 Oct 2003 15:51:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9OMpdje021309; Fri, 24 Oct 2003 15:51:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310242251.h9OMpdje021309@xorpc.icir.org> Date: Fri, 24 Oct 2003 15:51:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/10/24 15:51:39 Modified files: xorp/pim/: TODO Log message: Add an implementation TODO item. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 17:28:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 17:29:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0TDWR046012 for ; Fri, 24 Oct 2003 17:29:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0T9H5096241; Fri, 24 Oct 2003 17:29:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0T1eb001879; Fri, 24 Oct 2003 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0S0eb001863 for ; Fri, 24 Oct 2003 17:28:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0S0H5096233 for ; Fri, 24 Oct 2003 17:28:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0S0sd023997 for ; Fri, 24 Oct 2003 17:28:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9P0S0ui023996; Fri, 24 Oct 2003 17:28:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310250028.h9P0S0ui023996@xorpc.icir.org> Date: Fri, 24 Oct 2003 17:28:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/24 17:28:00 Modified files: xorp/bgp/: packet.hh update_packet.cc Log message: Make the update packet accessor methods for multiprotocol NLRI const. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 17:30:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 17:31:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0V6WR046513 for ; Fri, 24 Oct 2003 17:31:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0V2H5096274; Fri, 24 Oct 2003 17:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0V1eb001924; Fri, 24 Oct 2003 17:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0Uceb001913 for ; Fri, 24 Oct 2003 17:30:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0UcH5096268 for ; Fri, 24 Oct 2003 17:30:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0Ucsd028571 for ; Fri, 24 Oct 2003 17:30:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9P0Uc8N028570; Fri, 24 Oct 2003 17:30:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310250030.h9P0Uc8N028570@xorpc.icir.org> Date: Fri, 24 Oct 2003 17:30:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc test_packet_coding.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/24 17:30:38 Modified files: xorp/bgp/: path_attribute.cc test_packet_coding.cc Log message: Multiprotocol NLRIs are not transitive oops. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:17 2005 Subject: No subject Fri Oct 24 17:42:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Oct 2003 17:43:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0h6WR050957 for ; Fri, 24 Oct 2003 17:43:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0h2H5096379; Fri, 24 Oct 2003 17:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0h1eb002142; Fri, 24 Oct 2003 17:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P0g5eb002112 for ; Fri, 24 Oct 2003 17:42:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0g4H5096369 for ; Fri, 24 Oct 2003 17:42:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P0g4sd035619 for ; Fri, 24 Oct 2003 17:42:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9P0g4oI035617; Fri, 24 Oct 2003 17:42:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310250042.h9P0g4oI035617@xorpc.icir.org> Date: Fri, 24 Oct 2003 17:42:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.cc peer_data.hh test_peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/24 17:42:03 Modified files: xorp/bgp/: peer_data.cc peer_data.hh test_peer_data.cc Log message: Distinguish between AFI/SAFI parameters; sent, received and negotiated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 1:13:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 01:14:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8EBWR029173 for ; Sat, 25 Oct 2003 01:14:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8E7H5099364; Sat, 25 Oct 2003 01:14:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P8E0eb008214; Sat, 25 Oct 2003 01:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P8D7eb008197 for ; Sat, 25 Oct 2003 01:13:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8D7H5099362 for ; Sat, 25 Oct 2003 01:13:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8D7sd068639 for ; Sat, 25 Oct 2003 01:13:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9P8D7sL068635; Sat, 25 Oct 2003 01:13:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310250813.h9P8D7sL068635@xorpc.icir.org> Date: Sat, 25 Oct 2003 1:13:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/25 01:13:07 Modified files: xorp/fea/: fticonfig.hh Log message: Change the preference ordering of the methods for reading the unicast forwarding table from the kernel: now Netlink has higher preference than Sysctl. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 1:40:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 01:41:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8f9WR033793 for ; Sat, 25 Oct 2003 01:41:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8f6H5099612; Sat, 25 Oct 2003 01:41:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P8f1eb008492; Sat, 25 Oct 2003 01:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9P8eOeb008477 for ; Sat, 25 Oct 2003 01:40:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8eOH5099610 for ; Sat, 25 Oct 2003 01:40:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9P8eNsd082337 for ; Sat, 25 Oct 2003 01:40:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9P8eNaa082323; Sat, 25 Oct 2003 01:40:23 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310250840.h9P8eNaa082323@xorpc.icir.org> Date: Sat, 25 Oct 2003 1:40:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_data.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/25 01:40:22 Modified files: xorp/bgp/: peer_data.hh Log message: Checked in file with with wrong ARRAY_SIZE setting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 6:23:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 06:24:26 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PDOQWR083427 for ; Sat, 25 Oct 2003 06:24:26 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PDOMH5004751; Sat, 25 Oct 2003 06:24:22 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PDO0eb013535; Sat, 25 Oct 2003 06:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PDN8eb013524 for ; Sat, 25 Oct 2003 06:23:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PDN8H5004747 for ; Sat, 25 Oct 2003 06:23:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PDN8sd012593 for ; Sat, 25 Oct 2003 06:23:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9PDN8KM012592; Sat, 25 Oct 2003 06:23:08 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310251323.h9PDN8KM012592@xorpc.icir.org> Date: Sat, 25 Oct 2003 6:23:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc test_decision.cc test_decision.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/10/25 06:23:08 Modified files: xorp/bgp/: route_table_decision.cc test_decision.cc test_decision.reference Log message: Re-write of DecisionTable::delete_route to handle deterministic MED properly. Added deterministic MED tests to BGP isolation tests, for both adding and deleting routes. Fixed reference output to match new tests. Note: DecisionTable::replace_route still needs re-writing to handle deterministic MED correctly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 9:23:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 09:24:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PGOHWR011166 for ; Sat, 25 Oct 2003 09:24:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PGODH5007230; Sat, 25 Oct 2003 09:24:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PGO1eb015346; Sat, 25 Oct 2003 09:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PGNYeb015329 for ; Sat, 25 Oct 2003 09:23:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PGNXH5007228 for ; Sat, 25 Oct 2003 09:23:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PGNXsd015577 for ; Sat, 25 Oct 2003 09:23:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9PGNXEL015576; Sat, 25 Oct 2003 09:23:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310251623.h9PGNXEL015576@xorpc.icir.org> Date: Sat, 25 Oct 2003 9:23:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/25 09:23:33 Modified files: xorp/fea/: fticonfig.cc Log message: Reorder _ftic_table_get_sysctl and _ftic_table_get_netlink to match the new ordering in fticonfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 13:40:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 13:41:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PKf8WR049469 for ; Sat, 25 Oct 2003 13:41:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PKf4H5009044; Sat, 25 Oct 2003 13:41:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PKf1eb018695; Sat, 25 Oct 2003 13:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9PKeFeb018684 for ; Sat, 25 Oct 2003 13:40:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PKeFH5009039 for ; Sat, 25 Oct 2003 13:40:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9PKeFsd056196 for ; Sat, 25 Oct 2003 13:40:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9PKeESL056194; Sat, 25 Oct 2003 13:40:14 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200310252040.h9PKeESL056194@xorpc.icir.org> Date: Sat, 25 Oct 2003 13:40:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc test_decision.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/10/25 13:40:14 Modified files: xorp/bgp/: route_table_decision.cc test_decision.reference Log message: Re-implement DecisionTable::replace_route to give deterministic MED semantics. This version passes all the existing tests, but could probably do with some isolation tests specifically to test deterministic MED. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 21:17:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 21:18:22 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4IMWR035129 for ; Sat, 25 Oct 2003 21:18:22 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4IGH5012356; Sat, 25 Oct 2003 21:18:16 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9Q4I1eb024114; Sat, 25 Oct 2003 21:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9Q4Hieb024102 for ; Sat, 25 Oct 2003 21:17:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4HhH5012353 for ; Sat, 25 Oct 2003 21:17:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4Hhsd085946 for ; Sat, 25 Oct 2003 21:17:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9Q4Hh4M085945; Sat, 25 Oct 2003 21:17:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310260417.h9Q4Hh4M085945@xorpc.icir.org> Date: Sat, 25 Oct 2003 21:17:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/25 21:17:43 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: Add a method to remove path attributes from the list by pointer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sat Oct 25 21:27:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 25 Oct 2003 21:28:14 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4SEWR037704 for ; Sat, 25 Oct 2003 21:28:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4SBH5012440; Sat, 25 Oct 2003 21:28:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9Q4S1eb024266; Sat, 25 Oct 2003 21:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9Q4Rleb024253 for ; Sat, 25 Oct 2003 21:27:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4RkH5012438 for ; Sat, 25 Oct 2003 21:27:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9Q4Rksd086072 for ; Sat, 25 Oct 2003 21:27:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9Q4RkPG086071; Sat, 25 Oct 2003 21:27:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310260427.h9Q4RkPG086071@xorpc.icir.org> Date: Sat, 25 Oct 2003 21:27:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/25 21:27:46 Modified files: xorp/bgp/: peer.cc Log message: Start of checking multiprotocol nlris on input. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sun Oct 26 10:25:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Oct 2003 10:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QIQ6WR071336 for ; Sun, 26 Oct 2003 10:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QIQ2H5020188; Sun, 26 Oct 2003 10:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QIQ0eb005649; Sun, 26 Oct 2003 10:26:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QIPNeb005632 for ; Sun, 26 Oct 2003 10:25:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QIPNH5020184 for ; Sun, 26 Oct 2003 10:25:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QIPNsd058001 for ; Sun, 26 Oct 2003 10:25:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9QIPNOa058000; Sun, 26 Oct 2003 10:25:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310261825.h9QIPNOa058000@xorpc.icir.org> Date: Sun, 26 Oct 2003 10:25:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/26 10:25:23 Modified files: xorp/fea/: mfea_node.cc Log message: * Use Fte::vifname() to find the interface (and its index) toward the MRIB next hop inside MfeaNode::get_mrib_table(). This simplifies significantly the calculation. * Assign an interface toward the MRIB next hop even if the corresponding MFEA interface is DOWN. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sun Oct 26 13:15:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Oct 2003 13:16:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QLG7WR097747 for ; Sun, 26 Oct 2003 13:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QLG3H5021346; Sun, 26 Oct 2003 13:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QLG1eb007768; Sun, 26 Oct 2003 13:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QLF7eb007750 for ; Sun, 26 Oct 2003 13:15:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QLF6H5021344 for ; Sun, 26 Oct 2003 13:15:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QLF6sd092490 for ; Sun, 26 Oct 2003 13:15:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9QLF6ih092489; Sun, 26 Oct 2003 13:15:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310262115.h9QLF6ih092489@xorpc.icir.org> Date: Sun, 26 Oct 2003 13:15:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/26 13:15:06 Modified files: xorp/fea/: test_add_route.sh Log message: * Add configuration entry for carp.icir.org * Comment-out tests subtest_lookup_deleted_route4 and subtest_lookup_deleted_route6, because in case of Linux a cloned entry (from the default route) may be kept in the kernel for very long time (e.g., tens of seconds). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sun Oct 26 15:57:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Oct 2003 15:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QNw8WR021592 for ; Sun, 26 Oct 2003 15:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QNw4H5022620; Sun, 26 Oct 2003 15:58:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QNw1eb009637; Sun, 26 Oct 2003 15:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9QNvieb009624 for ; Sun, 26 Oct 2003 15:57:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QNviH5022616 for ; Sun, 26 Oct 2003 15:57:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9QNvhsd029976 for ; Sun, 26 Oct 2003 15:57:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9QNvh5Y029975; Sun, 26 Oct 2003 15:57:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310262357.h9QNvh5Y029975@xorpc.icir.org> Date: Sun, 26 Oct 2003 15:57:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/26 15:57:43 Modified files: xorp/fea/: test_config_interface.sh Log message: Add configuration entry for carp.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Sun Oct 26 16:36:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Oct 2003 16:37:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9R0bBWR027295 for ; Sun, 26 Oct 2003 16:37:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9R0b7H5022895; Sun, 26 Oct 2003 16:37:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9R0b1eb010124; Sun, 26 Oct 2003 16:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9R0aYeb010109 for ; Sun, 26 Oct 2003 16:36:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9R0aYH5022888 for ; Sun, 26 Oct 2003 16:36:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9R0aYsd030256 for ; Sun, 26 Oct 2003 16:36:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9R0aYKW030255; Sun, 26 Oct 2003 16:36:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310270036.h9R0aYKW030255@xorpc.icir.org> Date: Sun, 26 Oct 2003 16:36:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/26 16:36:34 Modified files: xorp/fea/: test_add_route.sh test_config_interface.sh Log message: Add OpenBSD-specific configuration setup for carp.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Mon Oct 27 11:29:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Oct 2003 11:30:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJU9WR098836 for ; Mon, 27 Oct 2003 11:30:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJU5H5033718; Mon, 27 Oct 2003 11:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9RJU2eb028048; Mon, 27 Oct 2003 11:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9RJTkeb028036 for ; Mon, 27 Oct 2003 11:29:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJTkH5033711 for ; Mon, 27 Oct 2003 11:29:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJTksd001542 for ; Mon, 27 Oct 2003 11:29:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9RJTkgJ001541; Mon, 27 Oct 2003 11:29:46 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310271929.h9RJTkgJ001541@xorpc.icir.org> Date: Mon, 27 Oct 2003 11:29:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/27 11:29:46 Modified files: xorp/bgp/: update_packet.cc Log message: When asked to return SAFI = 2, multicast. We were returning the unicast pointer, artifact of cut-and-paste programming. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Mon Oct 27 11:49:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Oct 2003 11:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJo6WR008379 for ; Mon, 27 Oct 2003 11:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJo2H5033902; Mon, 27 Oct 2003 11:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9RJo1eb028491; Mon, 27 Oct 2003 11:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9RJnXeb028477 for ; Mon, 27 Oct 2003 11:49:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJnXH5033895 for ; Mon, 27 Oct 2003 11:49:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9RJnXsd001706 for ; Mon, 27 Oct 2003 11:49:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9RJnXEn001705; Mon, 27 Oct 2003 11:49:33 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310271949.h9RJnXEn001705@xorpc.icir.org> Date: Mon, 27 Oct 2003 11:49:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib_fea1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/27 11:49:33 Modified files: xorp/bgp/harness/: test_rib_fea1.sh Log message: In the IPv6 tests the multiprotocol capability is now announced. Our BGP used to accept and process multiprotocol packets without verifying the capability had been offered. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Mon Oct 27 16:48:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Oct 2003 16:49:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S0nLWR082525 for ; Mon, 27 Oct 2003 16:49:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S0nHH5037198; Mon, 27 Oct 2003 16:49:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9S0n1E7004829; Mon, 27 Oct 2003 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9S0mAE7004813 for ; Mon, 27 Oct 2003 16:48:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S0mAH5037194 for ; Mon, 27 Oct 2003 16:48:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S0mAsd067520 for ; Mon, 27 Oct 2003 16:48:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9S0mA6D067519; Mon, 27 Oct 2003 16:48:10 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310280048.h9S0mA6D067519@xorpc.icir.org> Date: Mon, 27 Oct 2003 16:48:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/27 16:48:10 Modified files: xorp/bgp/harness/: test_peering1.sh xorp/bgp/: peer.cc Log message: More stringent update message tests for multiprotocol nlri attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:18 2005 Subject: No subject Mon Oct 27 23:34:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Oct 2003 23:35:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S7ZGWR046533 for ; Mon, 27 Oct 2003 23:35:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S7ZCH5040880; Mon, 27 Oct 2003 23:35:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9S7Z0E7012804; Mon, 27 Oct 2003 23:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9S7YhE7012793 for ; Mon, 27 Oct 2003 23:34:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S7YhH5040850 for ; Mon, 27 Oct 2003 23:34:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9S7Yhsd070392 for ; Mon, 27 Oct 2003 23:34:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9S7YhLt070391; Mon, 27 Oct 2003 23:34:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310280734.h9S7YhLt070391@xorpc.icir.org> Date: Mon, 27 Oct 2003 23:34:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/27 23:34:43 Modified files: xorp/fea/: test_add_route.sh Log message: Add configuration entry for NetBSD on carp.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 11:24:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 11:25:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJPAWR061449 for ; Tue, 28 Oct 2003 11:25:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJP6H5049341; Tue, 28 Oct 2003 11:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJP2E7026123; Tue, 28 Oct 2003 11:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJO5E7026086 for ; Tue, 28 Oct 2003 11:24:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJO5H5049311 for ; Tue, 28 Oct 2003 11:24:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJO5sd027509 for ; Tue, 28 Oct 2003 11:24:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SJO5a3027508; Tue, 28 Oct 2003 11:24:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310281924.h9SJO5a3027508@xorpc.icir.org> Date: Tue, 28 Oct 2003 11:24:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/28 11:24:05 Modified files: xorp/bgp/: update_packet.cc packet.hh Log message: We no longer hold a pointer to each multiprotocol path attribute. The access method searchs through the list each time. As it is possble to remove an entry from the path attribute list, holding a shortcut pointer is no longer safe. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 11:36:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 11:37:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJb8WR064180 for ; Tue, 28 Oct 2003 11:37:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJb3H5049423; Tue, 28 Oct 2003 11:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJb1E7026467; Tue, 28 Oct 2003 11:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJaTE7026442 for ; Tue, 28 Oct 2003 11:36:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJaTH5049419 for ; Tue, 28 Oct 2003 11:36:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJaTsd034742 for ; Tue, 28 Oct 2003 11:36:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SJaTXT034741; Tue, 28 Oct 2003 11:36:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310281936.h9SJaTXT034741@xorpc.icir.org> Date: Tue, 28 Oct 2003 11:36:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/10/28 11:36:29 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: XRL renaming in ifmgr: - register_all_interfaces_client -> register_system_interfaces_client - unregister_all_interfaces_client -> unregister_system_interfaces_client _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 11:38:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 11:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJdBWR064942 for ; Tue, 28 Oct 2003 11:39:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJd7H5049441; Tue, 28 Oct 2003 11:39:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJd0E7026537; Tue, 28 Oct 2003 11:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJcfE7026527 for ; Tue, 28 Oct 2003 11:38:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJcfH5049437 for ; Tue, 28 Oct 2003 11:38:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJcfsd040080 for ; Tue, 28 Oct 2003 11:38:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SJcea1040079; Tue, 28 Oct 2003 11:38:40 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310281938.h9SJcea1040079@xorpc.icir.org> Date: Tue, 28 Oct 2003 11:38:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/28 11:38:40 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Renamed test27 to test8_ipv6 and forgot to remove test27 from the list of tests that should be run. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 11:52:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 11:53:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJrCWR069858 for ; Tue, 28 Oct 2003 11:53:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJr9H5049593; Tue, 28 Oct 2003 11:53:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJr1E7026976; Tue, 28 Oct 2003 11:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJqpE7026963 for ; Tue, 28 Oct 2003 11:52:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJqpH5049583 for ; Tue, 28 Oct 2003 11:52:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJqpsd044269 for ; Tue, 28 Oct 2003 11:52:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SJqpT4044268; Tue, 28 Oct 2003 11:52:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310281952.h9SJqpT4044268@xorpc.icir.org> Date: Tue, 28 Oct 2003 11:52:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.cc ifconfig.hh libfeaclient_bridge.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/28 11:52:50 Modified files: xorp/fea/: ifconfig.cc ifconfig.hh libfeaclient_bridge.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_target.cc Log message: Renaming: FOO_all_interfaces_reportee -> FOO_system_interfaces_reportee _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 11:53:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 11:54:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJs8WR070061 for ; Tue, 28 Oct 2003 11:54:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJs4H5049616; Tue, 28 Oct 2003 11:54:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJs1E7027044; Tue, 28 Oct 2003 11:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SJr3E7026987 for ; Tue, 28 Oct 2003 11:53:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJr3H5049588 for ; Tue, 28 Oct 2003 11:53:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SJr3sd044287 for ; Tue, 28 Oct 2003 11:53:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SJr3wW044286; Tue, 28 Oct 2003 11:53:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310281953.h9SJr3wW044286@xorpc.icir.org> Date: Tue, 28 Oct 2003 11:53:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/28 11:53:03 Modified files: xorp/bgp/harness/: TODO Log message: Add to the list of tests that need to be written. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 12:04:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 12:05:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SK56WR072458 for ; Tue, 28 Oct 2003 12:05:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SK53H5049716; Tue, 28 Oct 2003 12:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SK51E7027315; Tue, 28 Oct 2003 12:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SK4nE7027301 for ; Tue, 28 Oct 2003 12:04:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SK4nH5049711 for ; Tue, 28 Oct 2003 12:04:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SK4nsd052430 for ; Tue, 28 Oct 2003 12:04:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SK4n3U052427; Tue, 28 Oct 2003 12:04:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310282004.h9SK4n3U052427@xorpc.icir.org> Date: Tue, 28 Oct 2003 12:04:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/28 12:04:49 Modified files: xorp/fea/: libfeaclient_bridge.cc Log message: Rename: "bool all" -> "bool system" for consistency with the renaming of "if_all_interfaces_reportee" to "is_system_interfaces_reportee". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 13:01:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 13:02:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SL2BWR085340 for ; Tue, 28 Oct 2003 13:02:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SL27H5050349; Tue, 28 Oct 2003 13:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SL21E7028508; Tue, 28 Oct 2003 13:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SL1dE7028493 for ; Tue, 28 Oct 2003 13:01:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SL1dH5050343 for ; Tue, 28 Oct 2003 13:01:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SL1dsd067323 for ; Tue, 28 Oct 2003 13:01:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SL1dwj067322; Tue, 28 Oct 2003 13:01:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310282101.h9SL1dwj067322@xorpc.icir.org> Date: Tue, 28 Oct 2003 13:01:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh peer.cc peer_handler.cc update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/28 13:01:38 Modified files: xorp/bgp/: packet.hh peer.cc peer_handler.cc update_packet.cc Log message: Change update packet accessor methods for multiprotocol nlri to use templates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 13:25:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 13:26:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLQ6WR095501 for ; Tue, 28 Oct 2003 13:26:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLQ2H5050601; Tue, 28 Oct 2003 13:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SLQ1E7028989; Tue, 28 Oct 2003 13:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SLPiE7028974 for ; Tue, 28 Oct 2003 13:25:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLPhH5050599 for ; Tue, 28 Oct 2003 13:25:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLPhsd078965 for ; Tue, 28 Oct 2003 13:25:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SLPhU8078964; Tue, 28 Oct 2003 13:25:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310282125.h9SLPhU8078964@xorpc.icir.org> Date: Tue, 28 Oct 2003 13:25:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/28 13:25:43 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Bug fix: fix the polarity of the "bool is_deleted" argument when calling nlm_newdeladdr_to_fea_cfg() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 13:53:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 13:54:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLsAWR004585 for ; Tue, 28 Oct 2003 13:54:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLs7H5050890; Tue, 28 Oct 2003 13:54:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SLs1E7029575; Tue, 28 Oct 2003 13:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SLrhE7029559 for ; Tue, 28 Oct 2003 13:53:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLrhH5050888 for ; Tue, 28 Oct 2003 13:53:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SLrgsd093323 for ; Tue, 28 Oct 2003 13:53:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SLrgjh093322; Tue, 28 Oct 2003 13:53:42 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310282153.h9SLrgjh093322@xorpc.icir.org> Date: Tue, 28 Oct 2003 13:53:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/28 13:53:42 Modified files: xorp/bgp/: peer_handler.cc Log message: assert -> XLOG_ASSERT _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 14:44:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 14:45:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SMj8WR023648 for ; Tue, 28 Oct 2003 14:45:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SMj4H5051581; Tue, 28 Oct 2003 14:45:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SMj1E7000853; Tue, 28 Oct 2003 14:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SMiiE7000840 for ; Tue, 28 Oct 2003 14:44:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SMihH5051574 for ; Tue, 28 Oct 2003 14:44:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SMihsd017165 for ; Tue, 28 Oct 2003 14:44:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SMiheT017164; Tue, 28 Oct 2003 14:44:43 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310282244.h9SMiheT017164@xorpc.icir.org> Date: Tue, 28 Oct 2003 14:44:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer_data.cc peer_data.hh test_peer_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/28 14:44:43 Modified files: xorp/bgp/: peer.cc peer_data.cc peer_data.hh test_peer_data.cc Log message: Rationalise the many multiprotocol methods to a single templatised AFI/SAFI method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Tue Oct 28 15:48:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Oct 2003 15:49:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SNnAWR038480 for ; Tue, 28 Oct 2003 15:49:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SNn6H5052271; Tue, 28 Oct 2003 15:49:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SNn3E7002287; Tue, 28 Oct 2003 15:49:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9SNmAE7002269 for ; Tue, 28 Oct 2003 15:48:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SNm9H5052267 for ; Tue, 28 Oct 2003 15:48:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9SNm9sd029571 for ; Tue, 28 Oct 2003 15:48:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9SNm9Ko029570; Tue, 28 Oct 2003 15:48:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310282348.h9SNm9Ko029570@xorpc.icir.org> Date: Tue, 28 Oct 2003 15:48:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/28 15:48:09 Modified files: xorp/fea/: ifconfig.cc Log message: Rename: "bool all" -> "bool system" for consistency with the renaming of "if_all_interfaces_reportee" to "is_system_interfaces_reportee". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 8:22:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 08:23:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9TGNCWR007208 for ; Wed, 29 Oct 2003 08:23:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9TGN8H5062715; Wed, 29 Oct 2003 08:23:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9TGN1E7019735; Wed, 29 Oct 2003 08:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9TGMqE7019726 for ; Wed, 29 Oct 2003 08:22:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9TGMpH5062713 for ; Wed, 29 Oct 2003 08:22:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9TGMpsd002674 for ; Wed, 29 Oct 2003 08:22:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9TGMpvB002673; Wed, 29 Oct 2003 08:22:51 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310291622.h9TGMpvB002673@xorpc.icir.org> Date: Wed, 29 Oct 2003 8:22:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 08:22:51 Modified files: xorp/bgp/: packet.hh Log message: class -> typename. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 18:10:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 18:11:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2BFWR044634 for ; Wed, 29 Oct 2003 18:11:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2BBH5068355; Wed, 29 Oct 2003 18:11:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U2B1E7002248; Wed, 29 Oct 2003 18:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U2ATE7002229 for ; Wed, 29 Oct 2003 18:10:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2ATH5068353 for ; Wed, 29 Oct 2003 18:10:29 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2ATsd077000 for ; Wed, 29 Oct 2003 18:10:29 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U2ASCE076999; Wed, 29 Oct 2003 18:10:29 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300210.h9U2ASCE076999@xorpc.icir.org> Date: Wed, 29 Oct 2003 18:10:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 18:10:28 Modified files: xorp/bgp/: update_packet.cc Log message: Both UpdatePacket::add_pathatt() methods were adding directly to the path attribute list. Thus bypassing the initialising of the mandatory attributes such as the nexthop. Which was causing an assertion in the peer_handler to fail. Now using add_path_attribute() not push_back(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 18:11:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 18:12:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2C9WR044831 for ; Wed, 29 Oct 2003 18:12:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2C5H5068362; Wed, 29 Oct 2003 18:12:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U2C1E7002278; Wed, 29 Oct 2003 18:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U2BSE7002264 for ; Wed, 29 Oct 2003 18:11:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2BSH5068358 for ; Wed, 29 Oct 2003 18:11:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U2BSsd077039 for ; Wed, 29 Oct 2003 18:11:28 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U2BSGv077038; Wed, 29 Oct 2003 18:11:28 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300211.h9U2BSGv077038@xorpc.icir.org> Date: Wed, 29 Oct 2003 18:11:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 18:11:28 Modified files: xorp/bgp/: path_attribute.cc Log message: Minor style changes and loads of debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 20:37:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 20:38:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4c9WR091165 for ; Wed, 29 Oct 2003 20:38:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4c5H5069563; Wed, 29 Oct 2003 20:38:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4c0E7004638; Wed, 29 Oct 2003 20:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4bkE7004627 for ; Wed, 29 Oct 2003 20:37:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4bjH5069559 for ; Wed, 29 Oct 2003 20:37:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4bjsd083787 for ; Wed, 29 Oct 2003 20:37:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U4bjpd083786; Wed, 29 Oct 2003 20:37:45 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300437.h9U4bjpd083786@xorpc.icir.org> Date: Wed, 29 Oct 2003 20:37:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_path_attribute1.sh test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/29 20:37:45 Modified files: xorp/bgp/harness/: test_path_attribute1.sh test_peering1.sh test_peering2.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_routing2.sh Log message: Check the number of PCBs in TIME_WAIT before each test not once per script. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 20:38:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 20:39:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4d9WR091405 for ; Wed, 29 Oct 2003 20:39:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4d5H5069576; Wed, 29 Oct 2003 20:39:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4d1E7004662; Wed, 29 Oct 2003 20:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4cvE7004653 for ; Wed, 29 Oct 2003 20:38:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4cvH5069573 for ; Wed, 29 Oct 2003 20:38:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4cvsd083834 for ; Wed, 29 Oct 2003 20:38:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U4cvxI083833; Wed, 29 Oct 2003 20:38:57 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300438.h9U4cvxI083833@xorpc.icir.org> Date: Wed, 29 Oct 2003 20:38:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 20:38:57 Modified files: xorp/bgp/: parameter.hh Log message: Print SAFI as a string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 20:39:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 20:40:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4eBWR091845 for ; Wed, 29 Oct 2003 20:40:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4e5H5069591; Wed, 29 Oct 2003 20:40:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4e1E7004685; Wed, 29 Oct 2003 20:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4dSE7004673 for ; Wed, 29 Oct 2003 20:39:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4dRH5069581 for ; Wed, 29 Oct 2003 20:39:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4dRsd083859 for ; Wed, 29 Oct 2003 20:39:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U4dR0g083858; Wed, 29 Oct 2003 20:39:27 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300439.h9U4dR0g083858@xorpc.icir.org> Date: Wed, 29 Oct 2003 20:39:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 20:39:27 Modified files: xorp/bgp/: plumbing.cc Log message: Print SAFI as well as AFI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 20:44:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 20:45:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4jOWR093613 for ; Wed, 29 Oct 2003 20:45:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4jKH5069657; Wed, 29 Oct 2003 20:45:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4j0E7004766; Wed, 29 Oct 2003 20:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4i2E7004752 for ; Wed, 29 Oct 2003 20:44:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4i2H5069631 for ; Wed, 29 Oct 2003 20:44:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4i1sd083906 for ; Wed, 29 Oct 2003 20:44:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U4i1sS083905; Wed, 29 Oct 2003 20:44:01 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300444.h9U4i1sS083905@xorpc.icir.org> Date: Wed, 29 Oct 2003 20:44:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc peer_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 20:44:01 Modified files: xorp/bgp/: peer_handler.cc peer_handler.hh Log message: All multiprotocol AFI/SAFI combinations can now be teased apart and fed into the plumbing. Still TODO: 1) Write tests 2) Currently multiprotocol AFI/SAFI NLRIs will be sent to all peers. Should only send them to the peers that asked for them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:19 2005 Subject: No subject Wed Oct 29 20:55:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 20:56:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4uPWR097337 for ; Wed, 29 Oct 2003 20:56:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4uLH5069742; Wed, 29 Oct 2003 20:56:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4u0E7004940; Wed, 29 Oct 2003 20:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U4teE7004925 for ; Wed, 29 Oct 2003 20:55:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4teH5069740 for ; Wed, 29 Oct 2003 20:55:40 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U4tesd084030 for ; Wed, 29 Oct 2003 20:55:40 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U4te7f084029; Wed, 29 Oct 2003 20:55:40 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300455.h9U4te7f084029@xorpc.icir.org> Date: Wed, 29 Oct 2003 20:55:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc xorp/bgp/harness/ test_peering1.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/10/29 20:55:40 Modified files: xorp/bgp/: bgp.cc xorp/bgp/harness/: test_peering1.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_routing2.sh Log message: Change the parameter name "MultiProtocolIPv6" to "MultiProtocol.IPv6.Unicast" and add "MultiProtocol.IPv6.Multicast" and "MultiProtocol.IPv4.Multicast". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Wed Oct 29 21:20:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 21:21:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U5LQWR006334 for ; Wed, 29 Oct 2003 21:21:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U5LMH5070010; Wed, 29 Oct 2003 21:21:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U5L1E7005336; Wed, 29 Oct 2003 21:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U5KME7005321 for ; Wed, 29 Oct 2003 21:20:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U5KMH5070003 for ; Wed, 29 Oct 2003 21:20:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U5KLsd090844 for ; Wed, 29 Oct 2003 21:20:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U5KL5R090843; Wed, 29 Oct 2003 21:20:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300520.h9U5KL5R090843@xorpc.icir.org> Date: Wed, 29 Oct 2003 21:20:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/29 21:20:21 Modified files: xorp/bgp/: main.cc Log message: Remove dead code that used to wait for 1 second so any calls to our terminate XRL would complete without an error. This hack is no longer required and it was commented out anyway. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Wed Oct 29 23:22:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 23:26:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7QoWR028479 for ; Wed, 29 Oct 2003 23:26:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7QkH5070991; Wed, 29 Oct 2003 23:26:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U7N1E7007231; Wed, 29 Oct 2003 23:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U7MpE7007219 for ; Wed, 29 Oct 2003 23:22:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7MoH5070955 for ; Wed, 29 Oct 2003 23:22:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7Mosd095827 for ; Wed, 29 Oct 2003 23:22:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U7MoFQ095826; Wed, 29 Oct 2003 23:22:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310300722.h9U7MoFQ095826@xorpc.icir.org> Date: Wed, 29 Oct 2003 23:22:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/29 23:22:50 Modified files: xorp/fea/: test_add_route.sh Log message: Added configuration setup for FreeBSD on carp.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Wed Oct 29 23:44:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Oct 2003 23:50:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7o5WR032626 for ; Wed, 29 Oct 2003 23:50:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7o2H5071156; Wed, 29 Oct 2003 23:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U7j1E7007643; Wed, 29 Oct 2003 23:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U7ijE7007632 for ; Wed, 29 Oct 2003 23:44:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7iiH5071118 for ; Wed, 29 Oct 2003 23:44:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U7iisd096029 for ; Wed, 29 Oct 2003 23:44:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U7iiwg096028; Wed, 29 Oct 2003 23:44:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310300744.h9U7iiwg096028@xorpc.icir.org> Date: Wed, 29 Oct 2003 23:44:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/29 23:44:44 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc Log message: Fix FtiConfigEntryGetRtsock::lookup_route() and lookup_entry(): Add extra space for sockaddr_dl that corresponds to the RTA_IFP flag. Required if the OS is very strict in the arguments checking (e.g., NetBSD). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 0:06:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 00:12:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U8CGWR042398 for ; Thu, 30 Oct 2003 00:12:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U8CCH5071362; Thu, 30 Oct 2003 00:12:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U871E7008018; Thu, 30 Oct 2003 00:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9U86qE7008006 for ; Thu, 30 Oct 2003 00:06:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U86qH5071316 for ; Thu, 30 Oct 2003 00:06:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9U86qsd004829 for ; Thu, 30 Oct 2003 00:06:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9U86q5Z004828; Thu, 30 Oct 2003 00:06:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310300806.h9U86q5Z004828@xorpc.icir.org> Date: Thu, 30 Oct 2003 0:06:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.hh rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/30 00:06:51 Modified files: xorp/bgp/: rib_ipc_handler.hh rib_ipc_handler.cc Log message: SAFI == multicast. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 10:57:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 10:58:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UIwCWR058562 for ; Thu, 30 Oct 2003 10:58:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UIw8H5079668; Thu, 30 Oct 2003 10:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UIw1E7019827; Thu, 30 Oct 2003 10:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UIvhE7019807 for ; Thu, 30 Oct 2003 10:57:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UIvhH5079660 for ; Thu, 30 Oct 2003 10:57:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UIvhsd067424 for ; Thu, 30 Oct 2003 10:57:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9UIvhS3067423; Thu, 30 Oct 2003 10:57:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310301857.h9UIvhS3067423@xorpc.icir.org> Date: Thu, 30 Oct 2003 10:57:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/30 10:57:43 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Add a comment regarding setting the MAC address on NetBSD and OpenBSD. Basically, currently (NetBSD-1.6.1 and OpenBSD-3.3) do not support setting the MAC address on network interface card. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 11:37:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 11:38:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJc8WR064474 for ; Thu, 30 Oct 2003 11:38:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJc4H5080165; Thu, 30 Oct 2003 11:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UJc1E7020814; Thu, 30 Oct 2003 11:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UJbfE7020792 for ; Thu, 30 Oct 2003 11:37:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJbfH5080161 for ; Thu, 30 Oct 2003 11:37:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJbfsd067773 for ; Thu, 30 Oct 2003 11:37:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9UJbfBT067772; Thu, 30 Oct 2003 11:37:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310301937.h9UJbfBT067772@xorpc.icir.org> Date: Thu, 30 Oct 2003 11:37:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/30 11:37:41 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Modify IfConfigSetIoctl::set_interface_mac_address() - Remove broken code for setting the MAC address (e.g., in case of NetBSD and OpenBSD). This broken code had the side effect of creating a duplicated interface (with exactly same name, but different physical interface index) in case of OpenBSD which is not what we want. - Remove compilation-time #error if there is no mechanism to set the MAC address. In that case allow the code to compile, but return run-time error. The reason for the removal of the compilation-time #error is because currently (NetBSD-1.6.1 and OpenBSD-3.3) do not support setting the MAC address. Further, setting the MAC address is not mandatory for the normal operation of a router. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 11:44:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 11:45:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJj7WR065491 for ; Thu, 30 Oct 2003 11:45:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJj3H5080240; Thu, 30 Oct 2003 11:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UJj1E7020983; Thu, 30 Oct 2003 11:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UJiBE7020947 for ; Thu, 30 Oct 2003 11:44:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJiBH5080232 for ; Thu, 30 Oct 2003 11:44:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UJiBsd067849 for ; Thu, 30 Oct 2003 11:44:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9UJiBBu067848; Thu, 30 Oct 2003 11:44:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310301944.h9UJiBBu067848@xorpc.icir.org> Date: Thu, 30 Oct 2003 11:44:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/30 11:44:11 Modified files: xorp/fea/: test_config_interface.sh Log message: * Add configuration setup for host carp.icir.org and OS FreeBSD, NetBSD, OpenBSD * Don't run test_set_interface_mac() in case of NetBSD and OpenBSD, because currently (NetBSD-1.6.1 and OpenBSD-3.3) those OS don't support the setting of the MAC address. * Formatting nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 12:29:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 12:30:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UKU6WR078328 for ; Thu, 30 Oct 2003 12:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UKU3H5080784; Thu, 30 Oct 2003 12:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UKU0E7022213; Thu, 30 Oct 2003 12:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9UKTSE7022193 for ; Thu, 30 Oct 2003 12:29:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UKTRH5080779 for ; Thu, 30 Oct 2003 12:29:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9UKTRsd082836 for ; Thu, 30 Oct 2003 12:29:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9UKTRvP082835; Thu, 30 Oct 2003 12:29:27 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310302029.h9UKTRvP082835@xorpc.icir.org> Date: Thu, 30 Oct 2003 12:29:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/30 12:29:27 Modified files: xorp/bgp/: test_dump.cc Log message: Fix typo in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 13:38:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 13:39:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULd6WR092042 for ; Thu, 30 Oct 2003 13:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULd2H5081681; Thu, 30 Oct 2003 13:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ULd1E7023583; Thu, 30 Oct 2003 13:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ULcqE7023574 for ; Thu, 30 Oct 2003 13:38:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULcqH5081678 for ; Thu, 30 Oct 2003 13:38:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULcpsd004371 for ; Thu, 30 Oct 2003 13:38:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ULco6S004370; Thu, 30 Oct 2003 13:38:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310302138.h9ULco6S004370@xorpc.icir.org> Date: Thu, 30 Oct 2003 13:38:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/30 13:38:49 Modified files: xorp/fea/: routing_socket.cc Log message: Conditionally call stop() in RoutingSocket destructor (only if routing sockets are supported). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 13:39:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 13:40:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULe8WR092281 for ; Thu, 30 Oct 2003 13:40:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULe2H5081704; Thu, 30 Oct 2003 13:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ULe0E7023612; Thu, 30 Oct 2003 13:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9ULdCE7023594 for ; Thu, 30 Oct 2003 13:39:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULdCH5081683 for ; Thu, 30 Oct 2003 13:39:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9ULdBsd004427 for ; Thu, 30 Oct 2003 13:39:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9ULdBsc004426; Thu, 30 Oct 2003 13:39:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310302139.h9ULdBsc004426@xorpc.icir.org> Date: Thu, 30 Oct 2003 13:39:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/30 13:39:11 Modified files: xorp/fea/: netlink_socket.cc Log message: Conditionally call stop() in NetlinkSocket destructor (only if netlink sockets are supported). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 16:20:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 16:21:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V0LBWR024419 for ; Thu, 30 Oct 2003 16:21:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V0L7H5083615; Thu, 30 Oct 2003 16:21:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V0L1E7027177; Thu, 30 Oct 2003 16:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V0KdE7027160 for ; Thu, 30 Oct 2003 16:20:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V0KcH5083612 for ; Thu, 30 Oct 2003 16:20:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V0Kcsd038955 for ; Thu, 30 Oct 2003 16:20:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9V0Kcs2038954; Thu, 30 Oct 2003 16:20:38 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310310020.h9V0Kcs2038954@xorpc.icir.org> Date: Thu, 30 Oct 2003 16:20:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/30 16:20:38 Modified files: xorp/bgp/: xrl_shell_funcs.sh Log message: Add the "-n" flag to netstat so the netstat doesn't hang forever. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 18:46:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 18:47:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2lAWR059177 for ; Thu, 30 Oct 2003 18:47:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2l6H5085083; Thu, 30 Oct 2003 18:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V2l1E7029788; Thu, 30 Oct 2003 18:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V2k5E7029775 for ; Thu, 30 Oct 2003 18:46:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2k5H5085077 for ; Thu, 30 Oct 2003 18:46:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2k5sd040121 for ; Thu, 30 Oct 2003 18:46:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9V2k5Ux040120; Thu, 30 Oct 2003 18:46:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310310246.h9V2k5Ux040120@xorpc.icir.org> Date: Thu, 30 Oct 2003 18:46:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/30 18:46:03 Modified files: xorp/bgp/: plumbing.cc plumbing.hh Log message: Used before set problem with the SAFI. Hence we were incorrectly generating multicast routes. This was the cause of the tinderbox failing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 18:57:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 18:58:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2w9WR063727 for ; Thu, 30 Oct 2003 18:58:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2w6H5085172; Thu, 30 Oct 2003 18:58:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V2w0E7029961; Thu, 30 Oct 2003 18:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V2vME7029943 for ; Thu, 30 Oct 2003 18:57:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2vLH5085166 for ; Thu, 30 Oct 2003 18:57:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V2vLsd040227 for ; Thu, 30 Oct 2003 18:57:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9V2vLO6040226; Thu, 30 Oct 2003 18:57:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310310257.h9V2vLO6040226@xorpc.icir.org> Date: Thu, 30 Oct 2003 18:57:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/10/30 18:57:21 Modified files: xorp/bgp/: route_table_cache.cc Log message: assert -> XLOG_ASSERT. This is often where we die so make sure the message appears in the correct place in the log. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Thu Oct 30 19:14:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Oct 2003 19:15:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V3F7WR067594 for ; Thu, 30 Oct 2003 19:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V3F3H5085314; Thu, 30 Oct 2003 19:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V3F1E7000212; Thu, 30 Oct 2003 19:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9V3EXE7000196 for ; Thu, 30 Oct 2003 19:14:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V3EXH5085304 for ; Thu, 30 Oct 2003 19:14:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9V3EXsd040355 for ; Thu, 30 Oct 2003 19:14:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9V3EXYw040354; Thu, 30 Oct 2003 19:14:33 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200310310314.h9V3EXYw040354@xorpc.icir.org> Date: Thu, 30 Oct 2003 19:14:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/10/30 19:14:33 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Increase the verbosity of XLOG_WARNING and XLOG_INFO. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Fri Oct 31 10:42:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Oct 2003 10:43:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIhBWR020967 for ; Fri, 31 Oct 2003 10:43:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIh7H5095068; Fri, 31 Oct 2003 10:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIh1E7015753; Fri, 31 Oct 2003 10:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIgHE7015729 for ; Fri, 31 Oct 2003 10:42:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIgDH5095060 for ; Fri, 31 Oct 2003 10:42:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIgCsd012489 for ; Fri, 31 Oct 2003 10:42:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9VIgC91012488; Fri, 31 Oct 2003 10:42:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310311842.h9VIgC91012488@xorpc.icir.org> Date: Fri, 31 Oct 2003 10:42:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/31 10:42:12 Modified files: xorp/fea/: netlink_socket.cc routing_socket.cc Log message: Remove XLOG_UNREACHABLE() from NetlinkSocket::stop() and RoutingSocket::stop() when the system doesn't support netlink and routing sockets respectively. The reason for the removal is because this doesn't serve much of a purpose rather than complicating the code by requiring #ifdef in number of places where one of the above stop() is called. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Fri Oct 31 10:47:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Oct 2003 10:48:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIm9WR021938 for ; Fri, 31 Oct 2003 10:48:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIm5H5095119; Fri, 31 Oct 2003 10:48:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIm1E7015865; Fri, 31 Oct 2003 10:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIlXE7015844 for ; Fri, 31 Oct 2003 10:47:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIlXH5095115 for ; Fri, 31 Oct 2003 10:47:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIlXsd012574 for ; Fri, 31 Oct 2003 10:47:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9VIlXBp012573; Fri, 31 Oct 2003 10:47:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310311847.h9VIlXBp012573@xorpc.icir.org> Date: Fri, 31 Oct 2003 10:47:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_observer_netlink.cc netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/31 10:47:33 Modified files: xorp/fea/: ifconfig_observer_netlink.cc netlink_socket.cc Log message: Remove unnecessary #ifdef HAVE_NETLINK_SOCKET around stop() in NetlinkSocket and IfConfigObserverNetlink destructors, because now it is safe to call stop() even if the system doesn't support netlink sockets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Fri Oct 31 10:51:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Oct 2003 10:52:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIqDWR022738 for ; Fri, 31 Oct 2003 10:52:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIq9H5095185; Fri, 31 Oct 2003 10:52:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIq1E7015987; Fri, 31 Oct 2003 10:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VIpGE7015965 for ; Fri, 31 Oct 2003 10:51:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIpFH5095177 for ; Fri, 31 Oct 2003 10:51:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VIpFsd012641 for ; Fri, 31 Oct 2003 10:51:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9VIpFfL012640; Fri, 31 Oct 2003 10:51:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310311851.h9VIpFfL012640@xorpc.icir.org> Date: Fri, 31 Oct 2003 10:51:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_observer_rtsock.cc routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/10/31 10:51:15 Modified files: xorp/fea/: ifconfig_observer_rtsock.cc routing_socket.cc Log message: Remove unnecessary #ifdef HAVE_ROUTING_SOCKETS around stop() in RoutingSocket and IfConfigObserverRtsock destructors, because now it is safe to call stop() even if the system doesn't support routing sockets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Fri Oct 31 14:11:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Oct 2003 14:12:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VMCBWR061678 for ; Fri, 31 Oct 2003 14:12:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VMC8H5097182; Fri, 31 Oct 2003 14:12:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VMC1E7020538; Fri, 31 Oct 2003 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id h9VMBQE7020506 for ; Fri, 31 Oct 2003 14:11:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VMBPH5097173 for ; Fri, 31 Oct 2003 14:11:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h9VMBPsd064870 for ; Fri, 31 Oct 2003 14:11:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h9VMBPjA064869; Fri, 31 Oct 2003 14:11:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200310312211.h9VMBPjA064869@xorpc.icir.org> Date: Fri, 31 Oct 2003 14:11:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/10/31 14:11:25 Modified files: xorp/cli/: cli_node_net.cc Log message: Bind Ctrl-W to delete the word before the cursor, because the default libtecla behavior is to delete the whole line. This modification in the command-line editing behavior is to match the typical behavior of the CLI of some big router vendors. Hopefully, in the future the CLI behavior will be customizable. [Bug report by jonny@jonny.eng.br (Joao Carlos Mendes Luis)] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:20 2005 Subject: No subject Fri Oct 31 17:38:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 31 Oct 2003 17:39:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA11dAWR099305 for ; Fri, 31 Oct 2003 17:39:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA11d6H5098973; Fri, 31 Oct 2003 17:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA11d1E7024553; Fri, 31 Oct 2003 17:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA11cwE7024542 for ; Fri, 31 Oct 2003 17:38:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA11cwH5098971 for ; Fri, 31 Oct 2003 17:38:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA11cwsd080704 for ; Fri, 31 Oct 2003 17:38:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA11cwcZ080703; Fri, 31 Oct 2003 17:38:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311010138.hA11cwcZ080703@xorpc.icir.org> Date: Fri, 31 Oct 2003 17:38:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/10/31 17:38:58 Modified files: xorp/mld6igmp/: mld6igmp_node.cc Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Sun Nov 2 23:38:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 02 Nov 2003 23:39:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA37dCpt021023 for ; Sun, 2 Nov 2003 23:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA37d8B6015152; Sun, 2 Nov 2003 23:39:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA37d2iK021490; Sun, 2 Nov 2003 23:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA37cmiK021481 for ; Sun, 2 Nov 2003 23:38:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA37cmB6015150 for ; Sun, 2 Nov 2003 23:38:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA37cmFw042586 for ; Sun, 2 Nov 2003 23:38:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA37cm0E042585; Sun, 2 Nov 2003 23:38:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311030738.hA37cm0E042585@xorpc.icir.org> Date: Sun, 2 Nov 2003 23:38:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_netlink.cc ifconfig_get_netlink.cc netlink_socket.hh netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/02 23:38:48 Modified files: xorp/fea/: fticonfig_table_get_netlink.cc ifconfig_get_netlink.cc netlink_socket.hh netlink_socket.cc Log message: * Add new method NetlinkSocket::set_multipart_message_read(bool v) This method is used to set a flag to indicate that we expect to read a multipart message from the kernel terminated with NLMSG_DONE. This flag is needed as a workaround because of a bug in the Linux kernel. E.g., if we try to read the whole unicast forwarding table or all addresses on an interface, the kernel does not set the NLM_F_MULTI flag in the return result to indicate that this is really a multipart message terminated with NLMSG_DONE. * Explicitly set the above multipart message read flag to true right before we read the unicast forwarding table or the network interface information from the kernel. Basically, we set the flag everywhere where we use flag NLM_F_ROOT in the netlink message with the request. The above workaround should fix the problem of missing unicast routes read by the FEA when the kernel has a relatively large number of forwarding entries (e.g. 100-200 entries or more). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Mon Nov 3 11:07:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Nov 2003 11:09:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA3J9Kpt031101 for ; Mon, 3 Nov 2003 11:09:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA3J85B6023841; Mon, 3 Nov 2003 11:08:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA3J81iK003627; Mon, 3 Nov 2003 11:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA3J7jiK003613 for ; Mon, 3 Nov 2003 11:07:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA3J7jB6023831 for ; Mon, 3 Nov 2003 11:07:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA3J7jFw016022 for ; Mon, 3 Nov 2003 11:07:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA3J7jpj016021; Mon, 3 Nov 2003 11:07:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311031907.hA3J7jpj016021@xorpc.icir.org> Date: Mon, 3 Nov 2003 11:07:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ getline.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/11/03 11:07:45 Modified files: xorp/cli/libtecla/: getline.c Log message: If GetLine is in network mode, then unbind the dangerous keys than may affect the remote program: e.g., the keys that may deliver user interrupt (Ctrl-C), abort (Ctrl-\) or suspend (Ctrl-Z). [bug report by jonny@jonny.eng.br (Joao Carlos Mendes Luis)] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Mon Nov 3 17:30:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Nov 2003 17:31:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA41VApt093734 for ; Mon, 3 Nov 2003 17:31:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA41V6B6028202; Mon, 3 Nov 2003 17:31:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA41V1iK011511; Mon, 3 Nov 2003 17:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA41U0iK011491 for ; Mon, 3 Nov 2003 17:30:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA41U0B6028180 for ; Mon, 3 Nov 2003 17:30:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA41U0Fw083107 for ; Mon, 3 Nov 2003 17:30:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA41U0LD083106; Mon, 3 Nov 2003 17:30:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311040130.hA41U0LD083106@xorpc.icir.org> Date: Mon, 3 Nov 2003 17:30:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ test_local_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: pavlin@xorpc.icir.org. 03/11/03 17:30:00 Modified files: xorp/libfeaclient/: test_local_copy.cc Log message: Fix the final result comparison test to consider the result tree. [Approved by: Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Mon Nov 3 18:27:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Nov 2003 18:28:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA42SDpt004956 for ; Mon, 3 Nov 2003 18:28:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA42S9B6028722; Mon, 3 Nov 2003 18:28:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA42S1iK012406; Mon, 3 Nov 2003 18:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA42RLiK012387 for ; Mon, 3 Nov 2003 18:27:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA42RKB6028719 for ; Mon, 3 Nov 2003 18:27:20 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA42RKFw083544 for ; Mon, 3 Nov 2003 18:27:20 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA42RKbi083543; Mon, 3 Nov 2003 18:27:20 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311040227.hA42RKbi083543@xorpc.icir.org> Date: Mon, 3 Nov 2003 18:27:20 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.hh peer_route_pair.hh plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh route_table_dump.cc route_table_fanout.cc route_table_fanout.hh test_dump.cc test_fanout.cc ...test_plumbing.cc xorp/bgp/harness/ test_path_attribute1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 03/11/03 18:27:20 Modified files: xorp/bgp/: peer_handler.hh peer_route_pair.hh plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh route_table_dump.cc route_table_fanout.cc route_table_fanout.hh test_dump.cc test_fanout.cc test_plumbing.cc xorp/bgp/harness/: test_path_attribute1.sh Log message: Changes primarily to FanoutTable, so that it now passes changes to the peers in order of the peers' BGP IDs. Previously the order was that of the pointers to certain object instances, which didn't guarantee repeatable behaviour on different platforms, and had been causing isolation test failures on Linux. Also fix to test_path_attribute - we shouldn't have multiple peers with the same BGP ID. TODO: be more robust if two peers do have the same BGP ID (is this an error?). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Mon Nov 3 19:38:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 Nov 2003 19:39:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA43dDpt030072 for ; Mon, 3 Nov 2003 19:39:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA43d9B6029308; Mon, 3 Nov 2003 19:39:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA43d1iK013425; Mon, 3 Nov 2003 19:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA43cqiK013416 for ; Mon, 3 Nov 2003 19:38:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA43cpB6029306 for ; Mon, 3 Nov 2003 19:38:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA43coFw084110 for ; Mon, 3 Nov 2003 19:38:50 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA43coA8084109; Mon, 3 Nov 2003 19:38:50 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311040338.hA43coA8084109@xorpc.icir.org> Date: Mon, 3 Nov 2003 19:38:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/03 19:38:50 Modified files: xorp/bgp/: route_table_fanout.cc Log message: Remove XLOG_INFO, I thought that we have been going into an infinite loop here, but it seems not. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 1:54:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 01:56:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA49u5pt092389 for ; Tue, 4 Nov 2003 01:56:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA49txB6032361; Tue, 4 Nov 2003 01:55:59 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA49t1iK018670; Tue, 4 Nov 2003 01:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA49sjiK018658 for ; Tue, 4 Nov 2003 01:54:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA49sjB6032333 for ; Tue, 4 Nov 2003 01:54:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA49sjFw032819 for ; Tue, 4 Nov 2003 01:54:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA49sj19032818; Tue, 4 Nov 2003 01:54:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311040954.hA49sj19032818@xorpc.icir.org> Date: Tue, 4 Nov 2003 1:54:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/11/04 01:54:44 Modified files: xorp/bgp/: route_table_dump.cc Log message: Back out minor broken change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 2:08:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 02:09:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4A9Hpt095205 for ; Tue, 4 Nov 2003 02:09:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4A96B6032753; Tue, 4 Nov 2003 02:09:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4A91iK018876; Tue, 4 Nov 2003 02:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4A8jiK018864 for ; Tue, 4 Nov 2003 02:08:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4A8jB6032751 for ; Tue, 4 Nov 2003 02:08:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4A8jFw041694 for ; Tue, 4 Nov 2003 02:08:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4A8jmm041693; Tue, 4 Nov 2003 02:08:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311041008.hA4A8jmm041693@xorpc.icir.org> Date: Tue, 4 Nov 2003 2:08:45 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 03/11/04 02:08:45 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Different peers should have different BGP IDs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 8:30:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 08:31:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4GVGpt058219 for ; Tue, 4 Nov 2003 08:31:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4GVCB6037475; Tue, 4 Nov 2003 08:31:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4GV1iK025759; Tue, 4 Nov 2003 08:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4GUjiK025735 for ; Tue, 4 Nov 2003 08:30:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4GUjB6037464 for ; Tue, 4 Nov 2003 08:30:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4GUjFw054325 for ; Tue, 4 Nov 2003 08:30:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4GUjZN054324; Tue, 4 Nov 2003 08:30:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311041630.hA4GUjZN054324@xorpc.icir.org> Date: Tue, 4 Nov 2003 8:30:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/11/04 08:30:45 Modified files: xorp/libxorp/: xlog.c Log message: * Explicitly check whether malloc() succeeded in x_vasprintf(), and return an error if it failed. * Fix a potential memory leak in x_vasprintf() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 10:20:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 10:21:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4ILApt075324 for ; Tue, 4 Nov 2003 10:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4IL6B6038612; Tue, 4 Nov 2003 10:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4IL1iK028187; Tue, 4 Nov 2003 10:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4IKwiK028177 for ; Tue, 4 Nov 2003 10:20:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4IKwB6038608 for ; Tue, 4 Nov 2003 10:20:58 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4IKwFw055436 for ; Tue, 4 Nov 2003 10:20:58 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4IKwav055435; Tue, 4 Nov 2003 10:20:58 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311041820.hA4IKwav055435@xorpc.icir.org> Date: Tue, 4 Nov 2003 10:20:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc route_table_fanout.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/11/04 10:20:58 Modified files: xorp/bgp/: route_table_fanout.cc route_table_fanout.hh Log message: Switch FanoutTable to index the next tables using a multimap indexed on BGP ID rather than a map. This prevents us aborting when we receive two BGP peers with the same BGP ID (which shouldn't happen, but shouldn't be a fatal error if it does). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 11:19:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 11:20:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JKDpt084463 for ; Tue, 4 Nov 2003 11:20:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JK9B6039276; Tue, 4 Nov 2003 11:20:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4JK1iK029569; Tue, 4 Nov 2003 11:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4JJZiK029547 for ; Tue, 4 Nov 2003 11:19:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JJYB6039248 for ; Tue, 4 Nov 2003 11:19:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JJYFw055936 for ; Tue, 4 Nov 2003 11:19:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4JJY3h055935; Tue, 4 Nov 2003 11:19:34 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311041919.hA4JJY3h055935@xorpc.icir.org> Date: Tue, 4 Nov 2003 11:19:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc route_table_fanout.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/11/04 11:19:34 Modified files: xorp/bgp/: route_table_fanout.cc route_table_fanout.hh Log message: Add missing destructor for NextTableMap. Only called at BGP shutdown though, so not a significant leak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 11:27:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 11:28:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JS6pt085775 for ; Tue, 4 Nov 2003 11:28:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JS3B6039372; Tue, 4 Nov 2003 11:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4JS0iK029780; Tue, 4 Nov 2003 11:28:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4JRkiK029766 for ; Tue, 4 Nov 2003 11:27:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JRkB6039370 for ; Tue, 4 Nov 2003 11:27:46 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4JRkFw056034 for ; Tue, 4 Nov 2003 11:27:46 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4JRk2T056033; Tue, 4 Nov 2003 11:27:46 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200311041927.hA4JRk2T056033@xorpc.icir.org> Date: Tue, 4 Nov 2003 11:27:46 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 03/11/04 11:27:46 Modified files: xorp/bgp/: route_table_decision.cc Log message: Fix space leak in DecisionTable::replace_route. Mea culpa. This one could have been significant. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 15:38:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 15:39:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NdBpt042408 for ; Tue, 4 Nov 2003 15:39:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Nd6B6041974; Tue, 4 Nov 2003 15:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4Nd0iK006140; Tue, 4 Nov 2003 15:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4Nc4iK006117 for ; Tue, 4 Nov 2003 15:38:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Nc4B6041963 for ; Tue, 4 Nov 2003 15:38:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Nc4Fw027079 for ; Tue, 4 Nov 2003 15:38:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4Nc4mi027078; Tue, 4 Nov 2003 15:38:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311042338.hA4Nc4mi027078@xorpc.icir.org> Date: Tue, 4 Nov 2003 15:38:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/11/04 15:38:04 Modified files: xorp/rip/: port.cc port_manager.hh Log message: Includes tweak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 15:38:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 15:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NdCpt042423 for ; Tue, 4 Nov 2003 15:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Nd6B6041973; Tue, 4 Nov 2003 15:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4Nd2iK006152; Tue, 4 Nov 2003 15:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4NcpiK006129 for ; Tue, 4 Nov 2003 15:38:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NcoB6041967 for ; Tue, 4 Nov 2003 15:38:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NcoFw027114 for ; Tue, 4 Nov 2003 15:38:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4Nco1A027113; Tue, 4 Nov 2003 15:38:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311042338.hA4Nco1A027113@xorpc.icir.org> Date: Tue, 4 Nov 2003 15:38:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ rib_notifier_base.hh rib_notifier_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/11/04 15:38:50 Added files: xorp/rip/: rib_notifier_base.hh rib_notifier_base.cc Log message: Add base class for RIB notifier. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 15:39:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 15:40:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Ne6pt042808 for ; Tue, 4 Nov 2003 15:40:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4Ne2B6041996; Tue, 4 Nov 2003 15:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4Ne1iK006180; Tue, 4 Nov 2003 15:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA4NdxiK006171 for ; Tue, 4 Nov 2003 15:39:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NdxB6041987 for ; Tue, 4 Nov 2003 15:39:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA4NdxFw027181 for ; Tue, 4 Nov 2003 15:39:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA4Ndxrk027180; Tue, 4 Nov 2003 15:39:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311042339.hA4Ndxrk027180@xorpc.icir.org> Date: Tue, 4 Nov 2003 15:39:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/rip/ Makefile.am Makefile.in xorp/xrl/interfaces/ rip.xif xorp/xrl/targets/ rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh rip6.tgt rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/ xorp_rip4.cc xorp_rip6.cc xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xrl_target4.cc xrl_target4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/11/04 15:39:59 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in xorp/rip/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: rip.xif xorp/xrl/targets/: rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh rip6.tgt rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/: xorp_rip4.cc xorp_rip6.cc xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xrl_target4.cc xrl_target4.hh Log message: Add some RIP Xrl components. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 16:08:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 16:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5097pt053862 for ; Tue, 4 Nov 2003 16:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5093B6042296; Tue, 4 Nov 2003 16:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5090iK006800; Tue, 4 Nov 2003 16:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA508DiK006772 for ; Tue, 4 Nov 2003 16:08:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA508DB6042288 for ; Tue, 4 Nov 2003 16:08:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA508DFw027591 for ; Tue, 4 Nov 2003 16:08:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA508Dvv027590; Tue, 4 Nov 2003 16:08:13 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311050008.hA508Dvv027590@xorpc.icir.org> Date: Tue, 4 Nov 2003 16:08:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc path_attribute.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/04 16:08:13 Modified files: xorp/bgp/: path_attribute.cc path_attribute.hh Log message: Add a method that doesn't copy the path attribute that is being passed in. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 16:10:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 16:11:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA50B6pt054275 for ; Tue, 4 Nov 2003 16:11:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA50B2B6042328; Tue, 4 Nov 2003 16:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA50B0iK006845; Tue, 4 Nov 2003 16:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA50A6iK006820 for ; Tue, 4 Nov 2003 16:10:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA50A6B6042309 for ; Tue, 4 Nov 2003 16:10:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA50A5Fw027654 for ; Tue, 4 Nov 2003 16:10:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA50A5YG027653; Tue, 4 Nov 2003 16:10:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311050010.hA50A5YG027653@xorpc.icir.org> Date: Tue, 4 Nov 2003 16:10:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ update_packet.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/04 16:10:05 Modified files: xorp/bgp/: update_packet.cc Log message: Don't make a copy of the path attribute if there is no need. This should stop the memory leak that we have been experiencing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 22:32:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 22:33:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56XGpt051505 for ; Tue, 4 Nov 2003 22:33:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56XCB6045573; Tue, 4 Nov 2003 22:33:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA56X1iK012707; Tue, 4 Nov 2003 22:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA56WjiK012694 for ; Tue, 4 Nov 2003 22:32:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56WjB6045569 for ; Tue, 4 Nov 2003 22:32:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56WiFw030379 for ; Tue, 4 Nov 2003 22:32:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA56Wiew030378; Tue, 4 Nov 2003 22:32:44 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311050632.hA56Wiew030378@xorpc.icir.org> Date: Tue, 4 Nov 2003 22:32:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib_fea1.sh test_routing1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/11/04 22:32:44 Modified files: xorp/bgp/harness/: test_rib_fea1.sh test_routing1.sh Log message: Send in the ipv6 multiprotocol parameter in the open to force our BGP to send the multiprotocol path attributes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 22:39:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 22:41:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56f6pt053039 for ; Tue, 4 Nov 2003 22:41:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56f2B6045644; Tue, 4 Nov 2003 22:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA56e1iK012828; Tue, 4 Nov 2003 22:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA56diiK012814 for ; Tue, 4 Nov 2003 22:39:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56diB6045616 for ; Tue, 4 Nov 2003 22:39:44 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA56diFw030555 for ; Tue, 4 Nov 2003 22:39:44 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA56did9030554; Tue, 4 Nov 2003 22:39:44 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311050639.hA56did9030554@xorpc.icir.org> Date: Tue, 4 Nov 2003 22:39:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc peer_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/04 22:39:44 Modified files: xorp/bgp/: peer_handler.cc peer_handler.hh Log message: Only send multiprotocol NLRIs if the peer actually sent the relevant parameter in the open. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 23:25:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 23:26:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57QHpt067572 for ; Tue, 4 Nov 2003 23:26:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57QDB6045961; Tue, 4 Nov 2003 23:26:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA57Q0iK013450; Tue, 4 Nov 2003 23:26:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA57PYiK013415 for ; Tue, 4 Nov 2003 23:25:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57PYB6045959 for ; Tue, 4 Nov 2003 23:25:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57PYFw030992 for ; Tue, 4 Nov 2003 23:25:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA57PYhA030991; Tue, 4 Nov 2003 23:25:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311050725.hA57PYhA030991@xorpc.icir.org> Date: Tue, 4 Nov 2003 23:25:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/11/04 23:25:34 Modified files: xorp/bgp/: bgp.cc Log message: Initialize non-initialized field BGPMain::_exit_loop to false inside the BGPMain constructor. This fixes a xorp_bgp start-up problem on OpenBSD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:21 2005 Subject: No subject Tue Nov 4 23:44:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 Nov 2003 23:45:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57jEpt071507 for ; Tue, 4 Nov 2003 23:45:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57jAB6046113; Tue, 4 Nov 2003 23:45:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA57j2iK013902; Tue, 4 Nov 2003 23:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA57iXiK013876 for ; Tue, 4 Nov 2003 23:44:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57iWB6046090 for ; Tue, 4 Nov 2003 23:44:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA57iWFw031179 for ; Tue, 4 Nov 2003 23:44:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA57iWkv031178; Tue, 4 Nov 2003 23:44:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311050744.hA57iWkv031178@xorpc.icir.org> Date: Tue, 4 Nov 2003 23:44:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 03/11/04 23:44:32 Modified files: xorp/bgp/: xrl_shell_funcs.sh Log message: Modify time_wait_seconds() to use a switch statement for each known OS to compute the TCP MSL (Maximum Segment Lifetime). We need the switch, because in case of OpenBSD running "sysctl" with invalid sysctl variable name does NOT return an error, hence the MSL is miscalculated as "". For all unknown OS-es we use the original default value of 60 seconds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 0:14:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 00:15:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58FYpt077395 for ; Wed, 5 Nov 2003 00:15:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58FUB6046371; Wed, 5 Nov 2003 00:15:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA58F1iK014406; Wed, 5 Nov 2003 00:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA58EIiK014365 for ; Wed, 5 Nov 2003 00:14:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58EHB6046343 for ; Wed, 5 Nov 2003 00:14:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58EHFw041184 for ; Wed, 5 Nov 2003 00:14:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA58EHtB041183; Wed, 5 Nov 2003 00:14:17 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311050814.hA58EHtB041183@xorpc.icir.org> Date: Wed, 5 Nov 2003 0:14:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/11/05 00:14:17 Modified files: xorp/bgp/harness/: command.cc Log message: Remove bogus warning and dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 0:15:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 00:16:30 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58GUpt077591 for ; Wed, 5 Nov 2003 00:16:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58GRB6046385; Wed, 5 Nov 2003 00:16:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA58G0iK014437; Wed, 5 Nov 2003 00:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA58FXiK014424 for ; Wed, 5 Nov 2003 00:15:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58FXB6046373 for ; Wed, 5 Nov 2003 00:15:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA58FXFw041454 for ; Wed, 5 Nov 2003 00:15:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA58FXDd041452; Wed, 5 Nov 2003 00:15:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311050815.hA58FXDd041452@xorpc.icir.org> Date: Wed, 5 Nov 2003 0:15:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/05 00:15:33 Modified files: ./: BUILD_NOTES Log message: Update the build notes for OpenBSD-3.3 to reflect the fact that now the internal tests appear to succeed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 10:02:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 10:03:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I3Lpt069052 for ; Wed, 5 Nov 2003 10:03:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I3HB6053283; Wed, 5 Nov 2003 10:03:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5I31iK024979; Wed, 5 Nov 2003 10:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5I2diK024963 for ; Wed, 5 Nov 2003 10:02:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I2dB6053277 for ; Wed, 5 Nov 2003 10:02:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I2dFw001551 for ; Wed, 5 Nov 2003 10:02:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA5I2d7c001550; Wed, 5 Nov 2003 10:02:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311051802.hA5I2d7c001550@xorpc.icir.org> Date: Wed, 5 Nov 2003 10:02:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/11/05 10:02:39 Modified files: xorp/xrl/interfaces/: rip.xif Log message: Fix kdoc param and xrl argument name mismatch so kdocification works. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 10:03:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 10:04:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I4Cpt069203 for ; Wed, 5 Nov 2003 10:04:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I48B6053293; Wed, 5 Nov 2003 10:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5I41iK025036; Wed, 5 Nov 2003 10:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5I3tiK025026 for ; Wed, 5 Nov 2003 10:03:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I3tB6053289 for ; Wed, 5 Nov 2003 10:03:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5I3tFw001600 for ; Wed, 5 Nov 2003 10:03:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA5I3tZx001599; Wed, 5 Nov 2003 10:03:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311051803.hA5I3tZx001599@xorpc.icir.org> Date: Wed, 5 Nov 2003 10:03:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen xorp/xrl/targets/ bgp.xrls bgp4_mib.xrls cli.xrls coord.xrls demo_fea_ifmgr_client.xrls fea.xrls fea_ifmgr_mirror.xrls finder.xrls finder_client.xrls mfea.xrls mld6igmp.xrls ...ospf.xrls ...pim.xrls ...rib.xrls ...ribclient.xrls ...rip4.xrls ...rip4_base.hh ...rip6.xrls ...rtrmgr.xrls ...test.xrls ...test_fea_ifmgr_mirror.xrls ...test_finder_events.xrls ...test_peer.xrls ...xorp_if_mib.xrls ...xorpsh.xrls Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/11/05 10:03:55 Modified files: xorp/xrl/scripts/: tgt-gen xorp/xrl/targets/: bgp.xrls bgp4_mib.xrls cli.xrls coord.xrls demo_fea_ifmgr_client.xrls fea.xrls fea_ifmgr_mirror.xrls finder.xrls finder_client.xrls mfea.xrls mld6igmp.xrls ospf.xrls pim.xrls rib.xrls ribclient.xrls rip4.xrls rip4_base.hh rip6.xrls rtrmgr.xrls test.xrls test_fea_ifmgr_mirror.xrls test_finder_events.xrls test_peer.xrls xorp_if_mib.xrls xorpsh.xrls Log message: Remove C++ specific pre-amble from Xrl file kdoc comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 12:24:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 12:25:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KP9pt005882 for ; Wed, 5 Nov 2003 12:25:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KP3B6054715; Wed, 5 Nov 2003 12:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5KP1iK028570; Wed, 5 Nov 2003 12:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5KOTiK028555 for ; Wed, 5 Nov 2003 12:24:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KOSB6054708 for ; Wed, 5 Nov 2003 12:24:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KOSFw016889 for ; Wed, 5 Nov 2003 12:24:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA5KOSik016888; Wed, 5 Nov 2003 12:24:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311052024.hA5KOSik016888@xorpc.icir.org> Date: Wed, 5 Nov 2003 12:24:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/11/05 12:24:28 Modified files: xorp/libxorp/: ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh Log message: Change ip_version_str() to return const reference to a string and de-inline. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 12:25:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 12:32:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KWopt007600 for ; Wed, 5 Nov 2003 12:32:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KWkB6054779; Wed, 5 Nov 2003 12:32:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5KQ1iK028607; Wed, 5 Nov 2003 12:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5KPLiK028585 for ; Wed, 5 Nov 2003 12:25:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KPLB6054738 for ; Wed, 5 Nov 2003 12:25:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5KPKFw017025 for ; Wed, 5 Nov 2003 12:25:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA5KPKwI017024; Wed, 5 Nov 2003 12:25:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311052025.hA5KPKwI017024@xorpc.icir.org> Date: Wed, 5 Nov 2003 12:25:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc route_table_filter.cc route_table_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 03/11/05 12:25:20 Modified files: xorp/bgp/: plumbing.cc route_table_filter.cc route_table_ribin.cc Log message: Simplify ip_version related format strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 13:47:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 13:48:44 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5Lmipt028189 for ; Wed, 5 Nov 2003 13:48:44 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5LmbB6055511; Wed, 5 Nov 2003 13:48:37 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5Lm0iK000733; Wed, 5 Nov 2003 13:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA5Ll3iK000711 for ; Wed, 5 Nov 2003 13:47:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5Ll3B6055491 for ; Wed, 5 Nov 2003 13:47:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA5Ll3Fw043342 for ; Wed, 5 Nov 2003 13:47:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA5Ll3tI043341; Wed, 5 Nov 2003 13:47:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311052147.hA5Ll3tI043341@xorpc.icir.org> Date: Wed, 5 Nov 2003 13:47:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node_cli.hh proto_register.cc proto_state.cc proto_unit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/11/05 13:47:03 Modified files: xorp/libproto/: proto_node_cli.hh proto_register.cc proto_state.cc proto_unit.cc Log message: Add missing #include "libxorp/xorp.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 16:23:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 17:24:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61Oppt072269 for ; Wed, 5 Nov 2003 17:24:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61OlB6057775; Wed, 5 Nov 2003 17:24:47 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA60O0iK004278; Wed, 5 Nov 2003 16:24:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA60NhiK004265 for ; Wed, 5 Nov 2003 16:23:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA60NhB6057205 for ; Wed, 5 Nov 2003 16:23:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA60NhFw083900 for ; Wed, 5 Nov 2003 16:23:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA60NhTa083899; Wed, 5 Nov 2003 16:23:43 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311060023.hA60NhTa083899@xorpc.icir.org> Date: Wed, 5 Nov 2003 16:23:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ util.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/11/05 16:23:43 Modified files: xorp/rtrmgr/: util.cc Log message: Add some debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 17:21:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 17:25:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61Popt072488 for ; Wed, 5 Nov 2003 17:25:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61PkB6057801; Wed, 5 Nov 2003 17:25:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA61M1iK005432; Wed, 5 Nov 2003 17:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA61LdiK005420 for ; Wed, 5 Nov 2003 17:21:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61LdB6057760 for ; Wed, 5 Nov 2003 17:21:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61LdFw084323 for ; Wed, 5 Nov 2003 17:21:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA61Ld2l084322; Wed, 5 Nov 2003 17:21:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060121.hA61Ld2l084322@xorpc.icir.org> Date: Wed, 5 Nov 2003 17:21:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ utility.h Makefile.am Makefile.in xorp/libxorp/ utility.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/11/05 17:21:39 Modified files: xorp/libxorp/: utility.h Makefile.am Makefile.in Added files: xorp/libxorp/: utility.c Log message: Add various ctype(3) wrappers that work properly even if the value of the int argument is not representable as an unsigned char and doesn't have the value of EOF: int xorp_isalnum(int c); int xorp_isalpha(int c); int xorp_isblank(int c); int xorp_iscntrl(int c); int xorp_isdigit(int c); int xorp_isgraph(int c); int xorp_islower(int c); int xorp_isprint(int c); int xorp_ispunct(int c); int xorp_isspace(int c); int xorp_isupper(int c); int xorp_isxdigit(int c); int xorp_tolower(int c); int xorp_toupper(int c); _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 17:35:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 17:39:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61dopt075173 for ; Wed, 5 Nov 2003 17:39:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61dkB6057897; Wed, 5 Nov 2003 17:39:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA61a1iK005657; Wed, 5 Nov 2003 17:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA61ZFiK005639 for ; Wed, 5 Nov 2003 17:35:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61ZFB6057882 for ; Wed, 5 Nov 2003 17:35:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA61ZFFw084427 for ; Wed, 5 Nov 2003 17:35:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA61ZFq1084426; Wed, 5 Nov 2003 17:35:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060135.hA61ZFq1084426@xorpc.icir.org> Date: Wed, 5 Nov 2003 17:35:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ utility.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/11/05 17:35:15 Modified files: xorp/libxorp/: utility.h Log message: Add missing ``extern'' in front of function declarations, and missing ``extern "C" { ... }'' around function declarations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 18:31:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 18:33:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62Xupt086280 for ; Wed, 5 Nov 2003 18:33:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62XqB6058373; Wed, 5 Nov 2003 18:33:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62W0iK006492; Wed, 5 Nov 2003 18:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62VgiK006463 for ; Wed, 5 Nov 2003 18:31:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62VgB6058356 for ; Wed, 5 Nov 2003 18:31:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62VfFw084802 for ; Wed, 5 Nov 2003 18:31:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA62VfnL084801; Wed, 5 Nov 2003 18:31:41 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311060231.hA62VfnL084801@xorpc.icir.org> Date: Wed, 5 Nov 2003 18:31:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ notification_packet.cc packet.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/05 18:31:41 Modified files: xorp/bgp/: notification_packet.cc packet.hh Log message: Add Notification error code: Open unsupported capability (7). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 18:33:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 18:35:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62ZEpt086598 for ; Wed, 5 Nov 2003 18:35:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62ZAB6058401; Wed, 5 Nov 2003 18:35:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62Y0iK006559; Wed, 5 Nov 2003 18:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62XXiK006532 for ; Wed, 5 Nov 2003 18:33:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62XWB6058369 for ; Wed, 5 Nov 2003 18:33:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62XWFw084841 for ; Wed, 5 Nov 2003 18:33:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA62XW9v084840; Wed, 5 Nov 2003 18:33:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311060233.hA62XW9v084840@xorpc.icir.org> Date: Wed, 5 Nov 2003 18:33:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 03/11/05 18:33:32 Modified files: xorp/etc/templates/: bgp.tp Log message: Add set parameter, this will allow us to enable the multiprotocol capability. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 18:38:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 18:41:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62fEpt087905 for ; Wed, 5 Nov 2003 18:41:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62fAB6058453; Wed, 5 Nov 2003 18:41:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62d1iK006647; Wed, 5 Nov 2003 18:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62cLiK006631 for ; Wed, 5 Nov 2003 18:38:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62cKB6058414 for ; Wed, 5 Nov 2003 18:38:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62cKFw084898 for ; Wed, 5 Nov 2003 18:38:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA62cK22084897; Wed, 5 Nov 2003 18:38:20 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311060238.hA62cK22084897@xorpc.icir.org> Date: Wed, 5 Nov 2003 18:38:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/11/05 18:38:20 Modified files: xorp/rtrmgr/: config.boot Log message: Enable IPv6 Unicast. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 18:52:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 18:54:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62sXpt090439 for ; Wed, 5 Nov 2003 18:54:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62sUB6058548; Wed, 5 Nov 2003 18:54:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62r0iK006884; Wed, 5 Nov 2003 18:53:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA62qZiK006868 for ; Wed, 5 Nov 2003 18:52:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62qYB6058535 for ; Wed, 5 Nov 2003 18:52:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA62qYFw085065 for ; Wed, 5 Nov 2003 18:52:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA62qYpk085064; Wed, 5 Nov 2003 18:52:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060252.hA62qYpk085064@xorpc.icir.org> Date: Wed, 5 Nov 2003 18:52:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla/ getline.h hash.c pathutil.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/libtecla/ Changes by: pavlin@xorpc.icir.org. 03/11/05 18:52:34 Modified files: xorp/cli/libtecla/: getline.h hash.c pathutil.c Log message: Add missing explicit casting of the "int c" argument in toupper(3), tolower(3) and isspace(3) to "(int)(unsigned char)" (for consistency with the rest of the libtecla code). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 19:00:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 19:06:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA636upt092887 for ; Wed, 5 Nov 2003 19:06:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA636qB6058671; Wed, 5 Nov 2003 19:06:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6311iK007006; Wed, 5 Nov 2003 19:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA630XiK006991 for ; Wed, 5 Nov 2003 19:00:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA630WB6058625 for ; Wed, 5 Nov 2003 19:00:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA630WFw085296 for ; Wed, 5 Nov 2003 19:00:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA630WTp085295; Wed, 5 Nov 2003 19:00:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060300.hA630WTp085295@xorpc.icir.org> Date: Wed, 5 Nov 2003 19:00:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc iptuple.cc xorp/fea/ ifconfig_get_proc_linux.cc xorp/libxipc/ finder_msgs.cc xrl_atom.cc xrl_atom_encoding.cc xrl_parser.cc xrl_parser_input.cc xrl_pf_inproc.cc xrl_pf_sudp.cc xorp/libxorp/ token.cc xorp/rib/ parser.cc parser.hh xorp/rip/ test_auth.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/11/05 19:00:32 Modified files: xorp/bgp/: aspath.cc iptuple.cc xorp/fea/: ifconfig_get_proc_linux.cc xorp/libxipc/: finder_msgs.cc xrl_atom.cc xrl_atom_encoding.cc xrl_parser.cc xrl_parser_input.cc xrl_pf_inproc.cc xrl_pf_sudp.cc xorp/libxorp/: token.cc xorp/rib/: parser.cc parser.hh xorp/rip/: test_auth.cc Log message: Replace ctype(3) function calls such as isdigit(3), isalpha(3), etc. with their corresponding XORP wrapper: xorp_isdigit(), xorp_isalpha(), ... The replacement is triggered by the fact that on some OS (e.g., NetBSD) it may not be safe to call isdigit(3) that is not representable by unsigned char. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 19:55:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 19:58:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63w2pt003622 for ; Wed, 5 Nov 2003 19:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63vwB6059039; Wed, 5 Nov 2003 19:57:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA63u0iK007698; Wed, 5 Nov 2003 19:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA63tkiK007688 for ; Wed, 5 Nov 2003 19:55:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63tkB6059035 for ; Wed, 5 Nov 2003 19:55:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63tkFw085727 for ; Wed, 5 Nov 2003 19:55:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA63tklo085726; Wed, 5 Nov 2003 19:55:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060355.hA63tklo085726@xorpc.icir.org> Date: Wed, 5 Nov 2003 19:55:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ utility.h utility.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/11/05 19:55:46 Modified files: xorp/libxorp/: utility.h utility.c Log message: Temporary comment-out xorp_isblank(), because isblank(3) is introduced with ISO C99, and may not always be available on the system (e.g., in case of Linux it requires special #define to get access to it). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 19:59:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 20:05:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA645Spt005158 for ; Wed, 5 Nov 2003 20:05:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA645OB6059135; Wed, 5 Nov 2003 20:05:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6400iK007771; Wed, 5 Nov 2003 20:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA63xmiK007761 for ; Wed, 5 Nov 2003 19:59:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63xmB6059046 for ; Wed, 5 Nov 2003 19:59:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA63xmFw085795 for ; Wed, 5 Nov 2003 19:59:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA63xmmm085794; Wed, 5 Nov 2003 19:59:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060359.hA63xmmm085794@xorpc.icir.org> Date: Wed, 5 Nov 2003 19:59:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 03/11/05 19:59:48 Modified files: xorp/config/: acipv6.m4 Log message: * Check for IPv6 multicast only if the system supports IPv6 * Check for IPv6 multicast routing only if the system supports IPv6 multicast _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:22 2005 Subject: No subject Wed Nov 5 20:02:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 20:08:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6487pt005661 for ; Wed, 5 Nov 2003 20:08:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6481B6059150; Wed, 5 Nov 2003 20:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6431iK007870; Wed, 5 Nov 2003 20:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA642iiK007856 for ; Wed, 5 Nov 2003 20:02:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA642hB6059105 for ; Wed, 5 Nov 2003 20:02:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA642hFw085852 for ; Wed, 5 Nov 2003 20:02:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA642h86085851; Wed, 5 Nov 2003 20:02:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060402.hA642h86085851@xorpc.icir.org> Date: Wed, 5 Nov 2003 20:02:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/05 20:02:43 Modified files: ./: configure.in configure Log message: * IPv6 check related nits * Regenerate xorp/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Wed Nov 5 21:40:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Nov 2003 21:44:58 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA65iwpt024333 for ; Wed, 5 Nov 2003 21:44:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA65isB6059845; Wed, 5 Nov 2003 21:44:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA65f0iK009290; Wed, 5 Nov 2003 21:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA65eGiK009276 for ; Wed, 5 Nov 2003 21:40:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA65eGB6059838 for ; Wed, 5 Nov 2003 21:40:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA65eGFw096621 for ; Wed, 5 Nov 2003 21:40:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA65eG05096620; Wed, 5 Nov 2003 21:40:16 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311060540.hA65eG05096620@xorpc.icir.org> Date: Wed, 5 Nov 2003 21:40:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/bgp/ peer_with_icsi.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/05 21:40:16 Modified files: other/bgp/: peer_with_icsi.sh Log message: Update the multiprotocol capability string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 0:06:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 00:12:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68CXpt055498 for ; Thu, 6 Nov 2003 00:12:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68CSB6060930; Thu, 6 Nov 2003 00:12:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6871iK011386; Thu, 6 Nov 2003 00:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA686jiK011375 for ; Thu, 6 Nov 2003 00:06:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA686jB6060889 for ; Thu, 6 Nov 2003 00:06:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA686jFw008540 for ; Thu, 6 Nov 2003 00:06:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA686jOd008539; Thu, 6 Nov 2003 00:06:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060806.hA686jOd008539@xorpc.icir.org> Date: Thu, 6 Nov 2003 0:06:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 00:06:45 Modified files: ./: BUILD_NOTES Log message: * Update the status of NetBSD to reflect the fact that now the internal tests appear to succeed. * Add a note about potential compilation problem on NetBSD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 0:40:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 00:41:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68fLpt059735 for ; Thu, 6 Nov 2003 00:41:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68fHB6061140; Thu, 6 Nov 2003 00:41:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA68f0iK011879; Thu, 6 Nov 2003 00:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA68e5iK011861 for ; Thu, 6 Nov 2003 00:40:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68e5B6061112 for ; Thu, 6 Nov 2003 00:40:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA68e5Fw015862 for ; Thu, 6 Nov 2003 00:40:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA68e56R015861; Thu, 6 Nov 2003 00:40:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311060840.hA68e56R015861@xorpc.icir.org> Date: Thu, 6 Nov 2003 0:40:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/11/06 00:40:05 Modified files: ./: configure.in configure Log message: Change XORP_SRC_ROOT directory determination to always give absolute path to source directory. Fixes xrl directory location nit with rtrmgr when build and src dirs are the same. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 1:19:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 01:24:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA69ODpt066058 for ; Thu, 6 Nov 2003 01:24:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA69O9B6061479; Thu, 6 Nov 2003 01:24:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA69K1iK012459; Thu, 6 Nov 2003 01:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA69J7iK012440 for ; Thu, 6 Nov 2003 01:19:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA69J7B6061437 for ; Thu, 6 Nov 2003 01:19:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA69J7Fw027021 for ; Thu, 6 Nov 2003 01:19:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA69J7c1027020; Thu, 6 Nov 2003 01:19:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311060919.hA69J7c1027020@xorpc.icir.org> Date: Thu, 6 Nov 2003 1:19:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 01:19:06 Modified files: ./: BUILD_NOTES Log message: Update the build notes for Linux RedHat-9.2 to reflect the fact that now the internal tests do succeed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 9:12:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 09:13:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HD9pt038541 for ; Thu, 6 Nov 2003 09:13:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HD5B6067257; Thu, 6 Nov 2003 09:13:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6HD0iK020491; Thu, 6 Nov 2003 09:13:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6HCKiK020469 for ; Thu, 6 Nov 2003 09:12:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HCKB6067253 for ; Thu, 6 Nov 2003 09:12:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HCKFw069262 for ; Thu, 6 Nov 2003 09:12:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6HCKA5069261; Thu, 6 Nov 2003 09:12:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061712.hA6HCKA5069261@xorpc.icir.org> Date: Thu, 6 Nov 2003 9:12:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 09:12:20 Modified files: xorp/fea/: Makefile.am Makefile.in Log message: Add few extra comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 9:14:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 09:15:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HF7pt038935 for ; Thu, 6 Nov 2003 09:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HF3B6067279; Thu, 6 Nov 2003 09:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6HF1iK020530; Thu, 6 Nov 2003 09:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6HEliK020517 for ; Thu, 6 Nov 2003 09:14:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HElB6067272 for ; Thu, 6 Nov 2003 09:14:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6HElFw069297 for ; Thu, 6 Nov 2003 09:14:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6HEl6p069296; Thu, 6 Nov 2003 09:14:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061714.hA6HEl6p069296@xorpc.icir.org> Date: Thu, 6 Nov 2003 9:14:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_mirror.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: pavlin@xorpc.icir.org. 03/11/06 09:14:47 Modified files: xorp/libfeaclient/: ifmgr_xrl_mirror.hh Log message: Include "libxorp/ipv4.hh" and "libxorp/timer.hh", because classes IPv4 and XorpTimer are used later in this header file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 10:31:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 10:36:57 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Iavpt075068 for ; Thu, 6 Nov 2003 10:36:57 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IarB6068094; Thu, 6 Nov 2003 10:36:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IV2iK022402; Thu, 6 Nov 2003 10:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IV0iK022393 for ; Thu, 6 Nov 2003 10:31:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IV0B6068055 for ; Thu, 6 Nov 2003 10:31:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IV0Fw069864 for ; Thu, 6 Nov 2003 10:31:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6IV0KG069863; Thu, 6 Nov 2003 10:31:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061831.hA6IV0KG069863@xorpc.icir.org> Date: Thu, 6 Nov 2003 10:31:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 10:31:00 Modified files: xorp/docs/fea/: fea.tex Log message: * Update the FEA status * Bump-up the document version to 0.5 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 10:42:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 10:43:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ih7pt076260 for ; Thu, 6 Nov 2003 10:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ih3B6068153; Thu, 6 Nov 2003 10:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ih1iK022694; Thu, 6 Nov 2003 10:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IgMiK022662 for ; Thu, 6 Nov 2003 10:42:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IgMB6068151 for ; Thu, 6 Nov 2003 10:42:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IgLFw070008 for ; Thu, 6 Nov 2003 10:42:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6IgLPM070007; Thu, 6 Nov 2003 10:42:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311061842.hA6IgLPM070007@xorpc.icir.org> Date: Thu, 6 Nov 2003 10:42:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: atanu@xorpc.icir.org. 03/11/06 10:42:21 Modified files: xorp/docs/rib/: rib.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 10:37:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 10:43:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IhSpt076337 for ; Thu, 6 Nov 2003 10:43:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IhOB6068157; Thu, 6 Nov 2003 10:43:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ic0iK022575; Thu, 6 Nov 2003 10:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IbgiK022565 for ; Thu, 6 Nov 2003 10:37:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IbgB6068100 for ; Thu, 6 Nov 2003 10:37:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IbgFw069926 for ; Thu, 6 Nov 2003 10:37:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6IbgoM069925; Thu, 6 Nov 2003 10:37:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061837.hA6IbgoM069925@xorpc.icir.org> Date: Thu, 6 Nov 2003 10:37:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 10:37:42 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Bump-up the document version to 0.5 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 10:43:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 10:44:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IiBpt076487 for ; Thu, 6 Nov 2003 10:44:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ii7B6068169; Thu, 6 Nov 2003 10:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ii1iK022746; Thu, 6 Nov 2003 10:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IhRiK022716 for ; Thu, 6 Nov 2003 10:43:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IhQB6068159 for ; Thu, 6 Nov 2003 10:43:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IhQFw070035 for ; Thu, 6 Nov 2003 10:43:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6IhQtc070034; Thu, 6 Nov 2003 10:43:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061843.hA6IhQtc070034@xorpc.icir.org> Date: Thu, 6 Nov 2003 10:43:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/11/06 10:43:26 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Bump-up the version to 0.5, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 10:57:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 10:58:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IwCpt079208 for ; Thu, 6 Nov 2003 10:58:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Iw9B6068316; Thu, 6 Nov 2003 10:58:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Iw1iK023165; Thu, 6 Nov 2003 10:58:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6IvoiK023093 for ; Thu, 6 Nov 2003 10:57:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IvoB6068310 for ; Thu, 6 Nov 2003 10:57:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6IvoFw070158 for ; Thu, 6 Nov 2003 10:57:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6IvoKG070157; Thu, 6 Nov 2003 10:57:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061857.hA6IvoKG070157@xorpc.icir.org> Date: Thu, 6 Nov 2003 10:57:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/ Changes by: pavlin@xorpc.icir.org. 03/11/06 10:57:50 Modified files: xorp/docs/multicast/: multicast_arch.tex Log message: Bump-up the version to 0.5, and the date to November 6, 2003 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:02:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:03:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J36pt080204 for ; Thu, 6 Nov 2003 11:03:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J32B6068370; Thu, 6 Nov 2003 11:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6J30iK023306; Thu, 6 Nov 2003 11:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6J25iK023278 for ; Thu, 6 Nov 2003 11:02:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J25B6068368 for ; Thu, 6 Nov 2003 11:02:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J25Fw070230 for ; Thu, 6 Nov 2003 11:02:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6J25Be070229; Thu, 6 Nov 2003 11:02:05 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311061902.hA6J25Be070229@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:02:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 03/11/06 11:02:05 Modified files: xorp/rib/: TODO Log message: 1) Move routes to PIM to DONE. 2) Add trie.hh -> ref_trie.hh 3) Repeated adding and deleting of tables doesn't work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:08:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:09:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J95pt081392 for ; Thu, 6 Nov 2003 11:09:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J92B6068442; Thu, 6 Nov 2003 11:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6J90iK023454; Thu, 6 Nov 2003 11:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6J8qiK023443 for ; Thu, 6 Nov 2003 11:08:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J8qB6068440 for ; Thu, 6 Nov 2003 11:08:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6J8pFw070314 for ; Thu, 6 Nov 2003 11:08:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6J8p6n070313; Thu, 6 Nov 2003 11:08:51 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311061908.hA6J8p6n070313@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:08:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 11:08:51 Modified files: ./: RELEASE_NOTES Log message: Update RIB section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:23:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:29:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JT5pt085414 for ; Thu, 6 Nov 2003 11:29:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JT1B6068687; Thu, 6 Nov 2003 11:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6JO1iK023785; Thu, 6 Nov 2003 11:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6JN4iK023767 for ; Thu, 6 Nov 2003 11:23:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JN4B6068622 for ; Thu, 6 Nov 2003 11:23:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JN4Fw070447 for ; Thu, 6 Nov 2003 11:23:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6JN4MT070446; Thu, 6 Nov 2003 11:23:04 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311061923.hA6JN4MT070446@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:23:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/06 11:23:04 Modified files: xorp/docs/bgp/: bgp.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:35:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:36:45 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jajpt086944 for ; Thu, 6 Nov 2003 11:36:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JafB6068791; Thu, 6 Nov 2003 11:36:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ja1iK024117; Thu, 6 Nov 2003 11:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6JZmiK024102 for ; Thu, 6 Nov 2003 11:35:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JZlB6068774 for ; Thu, 6 Nov 2003 11:35:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JZlFw070567 for ; Thu, 6 Nov 2003 11:35:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6JZlJa070566; Thu, 6 Nov 2003 11:35:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061935.hA6JZlJa070566@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:35:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/figs/ pim_design_overview.eps pim_design_overview.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/figs/ Changes by: pavlin@xorpc.icir.org. 03/11/06 11:35:47 Modified files: xorp/docs/pim/figs/: pim_design_overview.eps pim_design_overview.fig Log message: Add an arrow from PimNode with "Get protocol-related statistics" label. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:37:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:38:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JcLpt087255 for ; Thu, 6 Nov 2003 11:38:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JcHB6068810; Thu, 6 Nov 2003 11:38:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jc1iK024197; Thu, 6 Nov 2003 11:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jb6iK024180 for ; Thu, 6 Nov 2003 11:37:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jb6B6068804 for ; Thu, 6 Nov 2003 11:37:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jb6Fw070607 for ; Thu, 6 Nov 2003 11:37:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6Jb68R070606; Thu, 6 Nov 2003 11:37:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061937.hA6Jb68R070606@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:37:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/06 11:37:06 Modified files: xorp/docs/pim/: pim_arch.tex Log message: * Bump-up the version to 0.5, and the date to November 6, 2003 * Add brief info about retrieving protocol-related statistics * Minor other edits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:47:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:51:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jprpt089906 for ; Thu, 6 Nov 2003 11:51:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JpnB6068952; Thu, 6 Nov 2003 11:51:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jm3iK024446; Thu, 6 Nov 2003 11:48:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6JlgiK024433 for ; Thu, 6 Nov 2003 11:47:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JlfB6068905 for ; Thu, 6 Nov 2003 11:47:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JlfFw070752 for ; Thu, 6 Nov 2003 11:47:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6Jlf8K070751; Thu, 6 Nov 2003 11:47:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311061947.hA6Jlf8K070751@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:47:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/11/06 11:47:41 Modified files: ./: RELEASE_NOTES Log message: Updates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:48:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 11:54:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6JsBpt090352 for ; Thu, 6 Nov 2003 11:54:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Js8B6068980; Thu, 6 Nov 2003 11:54:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jn3iK024473; Thu, 6 Nov 2003 11:49:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jm3iK024443 for ; Thu, 6 Nov 2003 11:48:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jm2B6068909 for ; Thu, 6 Nov 2003 11:48:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Jm2Fw070771 for ; Thu, 6 Nov 2003 11:48:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6Jm2vF070770; Thu, 6 Nov 2003 11:48:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311061948.hA6Jm2vF070770@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:48:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 03/11/06 11:48:02 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: * Bump-up the version to 0.5, and the date to November 6, 2003 * Added ``last page'' _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 11:56:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:00:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6K0Cpt091667 for ; Thu, 6 Nov 2003 12:00:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6K08B6069073; Thu, 6 Nov 2003 12:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Jv1iK024674; Thu, 6 Nov 2003 11:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ju2iK024646 for ; Thu, 6 Nov 2003 11:56:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ju1B6069018 for ; Thu, 6 Nov 2003 11:56:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ju1Fw070853 for ; Thu, 6 Nov 2003 11:56:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6Ju1wg070852; Thu, 6 Nov 2003 11:56:01 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311061956.hA6Ju1wg070852@xorpc.icir.org> Date: Thu, 6 Nov 2003 11:56:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/06 11:56:01 Modified files: xorp/bgp/: TODO Log message: Remove: * We can do capability negotiation. Add: * Reading multicast routing tables. * Removing parameters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:23 2005 Subject: No subject Thu Nov 6 12:20:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:21:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KL6pt095731 for ; Thu, 6 Nov 2003 12:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KL3B6069262; Thu, 6 Nov 2003 12:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KL1iK025253; Thu, 6 Nov 2003 12:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KKbiK025240 for ; Thu, 6 Nov 2003 12:20:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KKbB6069256 for ; Thu, 6 Nov 2003 12:20:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KKbFw081643 for ; Thu, 6 Nov 2003 12:20:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KKbvh081642; Thu, 6 Nov 2003 12:20:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062020.hA6KKbvh081642@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:20:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: hodson@xorpc.icir.org. 03/11/06 12:20:37 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Add service.hh documentation. Bump date and release strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:21:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:22:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KMrpt096107 for ; Thu, 6 Nov 2003 12:22:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KMnB6069270; Thu, 6 Nov 2003 12:22:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KM1iK025280; Thu, 6 Nov 2003 12:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KL1iK025254 for ; Thu, 6 Nov 2003 12:21:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KL1B6069260 for ; Thu, 6 Nov 2003 12:21:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KL1Fw084187 for ; Thu, 6 Nov 2003 12:21:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KL1A8084182; Thu, 6 Nov 2003 12:21:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062021.hA6KL1A8084182@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:21:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 03/11/06 12:21:01 Modified files: xorp/docs/design_arch/: design_arch.tex Log message: * Bump-up the version to 0.5, and the date to November 6, 2003 * Updated the BGP status (now it supports IPv6). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:23:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:24:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KO6pt096356 for ; Thu, 6 Nov 2003 12:24:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KO2B6069278; Thu, 6 Nov 2003 12:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KO0iK025330; Thu, 6 Nov 2003 12:24:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KNuiK025320 for ; Thu, 6 Nov 2003 12:23:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KNuB6069274 for ; Thu, 6 Nov 2003 12:23:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KNuFw085345 for ; Thu, 6 Nov 2003 12:23:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KNuG9085344; Thu, 6 Nov 2003 12:23:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062023.hA6KNuG9085344@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:23:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 12:23:56 Modified files: ./: RELEASE_NOTES Log message: Update BGP section: IPV6, SAFI Multicast and memory leak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:28:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:29:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KT7pt097533 for ; Thu, 6 Nov 2003 12:29:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KT3B6069326; Thu, 6 Nov 2003 12:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KT1iK025500; Thu, 6 Nov 2003 12:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KT0iK025491 for ; Thu, 6 Nov 2003 12:29:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KSxB6069323 for ; Thu, 6 Nov 2003 12:28:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KSxFw085872 for ; Thu, 6 Nov 2003 12:28:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KSxl0085871; Thu, 6 Nov 2003 12:28:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062028.hA6KSxl0085871@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:28:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: hodson@xorpc.icir.org. 03/11/06 12:28:59 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Spelling correction. Spotted by Pavlin. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:29:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:30:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KUJpt097788 for ; Thu, 6 Nov 2003 12:30:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KUFB6069359; Thu, 6 Nov 2003 12:30:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KU1iK025552; Thu, 6 Nov 2003 12:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KT3iK025510 for ; Thu, 6 Nov 2003 12:29:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KT3B6069328 for ; Thu, 6 Nov 2003 12:29:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KT3Fw085892 for ; Thu, 6 Nov 2003 12:29:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KT3XP085891; Thu, 6 Nov 2003 12:29:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062029.hA6KT3XP085891@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:29:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/11/06 12:29:03 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex xorpsh_userguide.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:34:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:35:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KZ7pt098696 for ; Thu, 6 Nov 2003 12:35:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KZ3B6069381; Thu, 6 Nov 2003 12:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KZ0iK025761; Thu, 6 Nov 2003 12:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KYwiK025750 for ; Thu, 6 Nov 2003 12:34:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KYwB6069376 for ; Thu, 6 Nov 2003 12:34:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KYwFw086434 for ; Thu, 6 Nov 2003 12:34:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KYwpa086433; Thu, 6 Nov 2003 12:34:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062034.hA6KYwpa086433@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:34:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: hodson@xorpc.icir.org. 03/11/06 12:34:57 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Update to heap description. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:42:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:43:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Kh8pt000393 for ; Thu, 6 Nov 2003 12:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Kh3B6069462; Thu, 6 Nov 2003 12:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Kh0iK025983; Thu, 6 Nov 2003 12:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KgMiK025968 for ; Thu, 6 Nov 2003 12:42:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KgMB6069458 for ; Thu, 6 Nov 2003 12:42:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KgMFw087254 for ; Thu, 6 Nov 2003 12:42:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KgMfv087253; Thu, 6 Nov 2003 12:42:22 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062042.hA6KgMfv087253@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:42:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 03/11/06 12:42:22 Modified files: xorp/rtrmgr/: TODO Log message: Update comment regarding xorpsh behaviour when the rtrmgr fails. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:49:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:50:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ko6pt001761 for ; Thu, 6 Nov 2003 12:50:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ko2B6069553; Thu, 6 Nov 2003 12:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ko1iK026170; Thu, 6 Nov 2003 12:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KnMiK026155 for ; Thu, 6 Nov 2003 12:49:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KnLB6069546 for ; Thu, 6 Nov 2003 12:49:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KnLFw093609 for ; Thu, 6 Nov 2003 12:49:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KnLip093608; Thu, 6 Nov 2003 12:49:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062049.hA6KnLip093608@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:49:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 12:49:21 Modified files: ./: RELEASE_NOTES Log message: Add to the rtrmgr entry - minor code cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 12:55:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 12:56:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KuWpt003126 for ; Thu, 6 Nov 2003 12:56:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KuPB6069630; Thu, 6 Nov 2003 12:56:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ku0iK026341; Thu, 6 Nov 2003 12:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6KtMiK026326 for ; Thu, 6 Nov 2003 12:55:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KtLB6069624 for ; Thu, 6 Nov 2003 12:55:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6KtLFw093804 for ; Thu, 6 Nov 2003 12:55:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6KtLjF093803; Thu, 6 Nov 2003 12:55:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062055.hA6KtLjF093803@xorpc.icir.org> Date: Thu, 6 Nov 2003 12:55:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/11/06 12:55:21 Modified files: xorp/cli/: TODO Log message: Prune TODO entries that are DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:00:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:01:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6L18pt004076 for ; Thu, 6 Nov 2003 13:01:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6L14B6069692; Thu, 6 Nov 2003 13:01:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6L11iK026476; Thu, 6 Nov 2003 13:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6L0iiK026455 for ; Thu, 6 Nov 2003 13:00:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6L0hB6069684 for ; Thu, 6 Nov 2003 13:00:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6L0hFw094233 for ; Thu, 6 Nov 2003 13:00:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6L0hS6094232; Thu, 6 Nov 2003 13:00:43 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062100.hA6L0hS6094232@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:00:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: atanu@xorpc.icir.org. 03/11/06 13:00:43 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:10:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:11:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LB8pt006045 for ; Thu, 6 Nov 2003 13:11:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LB4B6069772; Thu, 6 Nov 2003 13:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LB0iK026683; Thu, 6 Nov 2003 13:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LApiK026672 for ; Thu, 6 Nov 2003 13:10:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LAoB6069769 for ; Thu, 6 Nov 2003 13:10:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LAoFw096200 for ; Thu, 6 Nov 2003 13:10:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LAorp096199; Thu, 6 Nov 2003 13:10:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062110.hA6LAorp096199@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:10:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 13:10:50 Modified files: xorp/fea/: TODO Log message: Prune TODO entries that are either obsolete or DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:11:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:12:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LC6pt006240 for ; Thu, 6 Nov 2003 13:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LC3B6069785; Thu, 6 Nov 2003 13:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LC1iK026722; Thu, 6 Nov 2003 13:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LBwiK026713 for ; Thu, 6 Nov 2003 13:11:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LBvB6069783 for ; Thu, 6 Nov 2003 13:11:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LBvFw096359 for ; Thu, 6 Nov 2003 13:11:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LBvNv096358; Thu, 6 Nov 2003 13:11:57 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062111.hA6LBvNv096358@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:11:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 13:11:57 Modified files: ./: RELEASE_NOTES Log message: SNMP - No significant change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:22:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:23:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LNLpt008442 for ; Thu, 6 Nov 2003 13:23:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LNGB6069879; Thu, 6 Nov 2003 13:23:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LN1iK026965; Thu, 6 Nov 2003 13:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LMbiK026951 for ; Thu, 6 Nov 2003 13:22:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LMbB6069876 for ; Thu, 6 Nov 2003 13:22:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LMaFw098697 for ; Thu, 6 Nov 2003 13:22:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LMal7098696; Thu, 6 Nov 2003 13:22:36 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062122.hA6LMal7098696@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:22:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 03/11/06 13:22:36 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:27:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:28:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LS8pt009382 for ; Thu, 6 Nov 2003 13:28:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LS4B6069927; Thu, 6 Nov 2003 13:28:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LS1iK027075; Thu, 6 Nov 2003 13:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LRZiK027056 for ; Thu, 6 Nov 2003 13:27:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LRYB6069923 for ; Thu, 6 Nov 2003 13:27:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LRYFw099941 for ; Thu, 6 Nov 2003 13:27:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LRYMv099940; Thu, 6 Nov 2003 13:27:34 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062127.hA6LRYMv099940@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:27:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 03/11/06 13:27:34 Modified files: xorp/bgp/harness/: TODO Log message: The test harness can't deal with SAFI multicast. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:28:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:29:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LT9pt009674 for ; Thu, 6 Nov 2003 13:29:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LT3B6069938; Thu, 6 Nov 2003 13:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LT0iK027107; Thu, 6 Nov 2003 13:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LSMiK027089 for ; Thu, 6 Nov 2003 13:28:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LSMB6069931 for ; Thu, 6 Nov 2003 13:28:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LSMFw000126 for ; Thu, 6 Nov 2003 13:28:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LSMGC000124; Thu, 6 Nov 2003 13:28:22 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062128.hA6LSMGC000124@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:28:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 13:28:22 Modified files: ./: RELEASE_NOTES Log message: BGP deterministic MEDs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:43:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:44:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LiCpt012704 for ; Thu, 6 Nov 2003 13:44:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Li8B6070091; Thu, 6 Nov 2003 13:44:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Li1iK027536; Thu, 6 Nov 2003 13:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LhCiK027505 for ; Thu, 6 Nov 2003 13:43:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LhCB6070084 for ; Thu, 6 Nov 2003 13:43:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LhCFw010219 for ; Thu, 6 Nov 2003 13:43:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LhBUU010218; Thu, 6 Nov 2003 13:43:11 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062143.hA6LhBUU010218@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:43:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: atanu@xorpc.icir.org. 03/11/06 13:43:11 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: * Bump version to 0.5 and date to 2003-11-06. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 13:56:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 13:57:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Lv6pt015221 for ; Thu, 6 Nov 2003 13:57:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Lv3B6070274; Thu, 6 Nov 2003 13:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Lv1iK027868; Thu, 6 Nov 2003 13:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6LuViK027856 for ; Thu, 6 Nov 2003 13:56:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LuVB6070269 for ; Thu, 6 Nov 2003 13:56:31 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6LuUFw018216 for ; Thu, 6 Nov 2003 13:56:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6LuUBD018215; Thu, 6 Nov 2003 13:56:30 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062156.hA6LuUBD018215@xorpc.icir.org> Date: Thu, 6 Nov 2003 13:56:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: atanu@xorpc.icir.org. 03/11/06 13:56:30 Modified files: xorp/docs/: status.html Log message: Update BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 14:10:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:11:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MB6pt017850 for ; Thu, 6 Nov 2003 14:11:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MB2B6070437; Thu, 6 Nov 2003 14:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MB1iK028156; Thu, 6 Nov 2003 14:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MAYiK028139 for ; Thu, 6 Nov 2003 14:10:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MAYB6070432 for ; Thu, 6 Nov 2003 14:10:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MAYFw021806 for ; Thu, 6 Nov 2003 14:10:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MAYQO021805; Thu, 6 Nov 2003 14:10:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062210.hA6MAYQO021805@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:10:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/11/06 14:10:34 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: Fix a signed unsigned comparison that only seems to show up on OS 10.3 / Darwin 7.0. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 14:13:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:14:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6ME8pt018445 for ; Thu, 6 Nov 2003 14:14:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6ME2B6070467; Thu, 6 Nov 2003 14:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6ME1iK028241; Thu, 6 Nov 2003 14:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MD3iK028215 for ; Thu, 6 Nov 2003 14:13:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MD3B6070456 for ; Thu, 6 Nov 2003 14:13:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MD3Fw027752 for ; Thu, 6 Nov 2003 14:13:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MD3k3027751; Thu, 6 Nov 2003 14:13:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062213.hA6MD3k3027751@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:13:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 14:13:03 Modified files: ./: README Log message: Update the RFCs and Internet Drafts that BGP-4 is conformant with. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 14:13:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:14:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6ME8pt018464 for ; Thu, 6 Nov 2003 14:14:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6ME3B6070469; Thu, 6 Nov 2003 14:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6ME2iK028253; Thu, 6 Nov 2003 14:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MDuiK028231 for ; Thu, 6 Nov 2003 14:13:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MDuB6070464 for ; Thu, 6 Nov 2003 14:13:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MDuFw027932 for ; Thu, 6 Nov 2003 14:13:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MDupZ027931; Thu, 6 Nov 2003 14:13:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062213.hA6MDupZ027931@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:13:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/ Changes by: hodson@xorpc.icir.org. 03/11/06 14:13:56 Modified files: xorp/xrl/: TODO Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:24 2005 Subject: No subject Thu Nov 6 14:17:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:18:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MI6pt019293 for ; Thu, 6 Nov 2003 14:18:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MI2B6070512; Thu, 6 Nov 2003 14:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MI0iK028348; Thu, 6 Nov 2003 14:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MHkiK028334 for ; Thu, 6 Nov 2003 14:17:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MHkB6070508 for ; Thu, 6 Nov 2003 14:17:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MHkFw028167 for ; Thu, 6 Nov 2003 14:17:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MHk1L028166; Thu, 6 Nov 2003 14:17:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062217.hA6MHk1L028166@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:17:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/11/06 14:17:46 Modified files: xorp/mld6igmp/: TODO Log message: Remove a bogus TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:19:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:20:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MK8pt019692 for ; Thu, 6 Nov 2003 14:20:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MK2B6070539; Thu, 6 Nov 2003 14:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MK0iK028417; Thu, 6 Nov 2003 14:20:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MJdiK028402 for ; Thu, 6 Nov 2003 14:19:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MJcB6070530 for ; Thu, 6 Nov 2003 14:19:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MJcFw028232 for ; Thu, 6 Nov 2003 14:19:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MJcwn028231; Thu, 6 Nov 2003 14:19:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062219.hA6MJcwn028231@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:19:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ libxipc_overview.tex xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: hodson@xorpc.icir.org. 03/11/06 14:19:38 Modified files: xorp/docs/libxipc/: libxipc_overview.tex xrl_interfaces.tex Log message: Bump revision and date stamps. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:19:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:20:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MK8pt019707 for ; Thu, 6 Nov 2003 14:20:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MK3B6070541; Thu, 6 Nov 2003 14:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MK1iK028429; Thu, 6 Nov 2003 14:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MJiiK028407 for ; Thu, 6 Nov 2003 14:19:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MJiB6070533 for ; Thu, 6 Nov 2003 14:19:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MJiFw028253 for ; Thu, 6 Nov 2003 14:19:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MJijA028252; Thu, 6 Nov 2003 14:19:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062219.hA6MJijA028252@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:19:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 03/11/06 14:19:44 Modified files: xorp/mrt/: TODO Log message: Cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:24:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:25:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MP6pt020709 for ; Thu, 6 Nov 2003 14:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MP2B6070610; Thu, 6 Nov 2003 14:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MP0iK028537; Thu, 6 Nov 2003 14:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MONiK028524 for ; Thu, 6 Nov 2003 14:24:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MONB6070600 for ; Thu, 6 Nov 2003 14:24:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MOMFw028481 for ; Thu, 6 Nov 2003 14:24:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MOMmx028480; Thu, 6 Nov 2003 14:24:22 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062224.hA6MOMmx028480@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:24:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 14:24:22 Modified files: ./: README Log message: Add an entry for MacOS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:31:22 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:32:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MW8pt022109 for ; Thu, 6 Nov 2003 14:32:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MW3B6070697; Thu, 6 Nov 2003 14:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MW1iK028698; Thu, 6 Nov 2003 14:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MVOiK028668 for ; Thu, 6 Nov 2003 14:31:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MVNB6070691 for ; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MVNFw029072 for ; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MVN5J029064; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062231.hA6MVN5J029064@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:31:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 14:31:22 Modified files: ./: README Log message: Take my laptop name out of the uname output:-). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:31:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:32:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MW8pt022124 for ; Thu, 6 Nov 2003 14:32:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MW3B6070699; Thu, 6 Nov 2003 14:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MW1iK028710; Thu, 6 Nov 2003 14:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MVOiK028669 for ; Thu, 6 Nov 2003 14:31:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MVNB6070692 for ; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MVNFw029074 for ; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MVNZV029073; Thu, 6 Nov 2003 14:31:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062231.hA6MVNZV029073@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:31:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/06 14:31:23 Modified files: xorp/pim/: TODO Log message: Remove a TODO entry that is DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:32:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:33:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MXJpt022365 for ; Thu, 6 Nov 2003 14:33:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MXGB6070714; Thu, 6 Nov 2003 14:33:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MX1iK028751; Thu, 6 Nov 2003 14:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MWGiK028723 for ; Thu, 6 Nov 2003 14:32:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MWGB6070701 for ; Thu, 6 Nov 2003 14:32:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MWGFw029191 for ; Thu, 6 Nov 2003 14:32:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MWGQF029190; Thu, 6 Nov 2003 14:32:16 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062232.hA6MWGQF029190@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:32:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 14:32:16 Modified files: ./: BUILD_NOTES Log message: MacOS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:33:48 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:34:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MY6pt022543 for ; Thu, 6 Nov 2003 14:34:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MY2B6070725; Thu, 6 Nov 2003 14:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MY1iK028789; Thu, 6 Nov 2003 14:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MXmiK028764 for ; Thu, 6 Nov 2003 14:33:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MXmB6070718 for ; Thu, 6 Nov 2003 14:33:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MXmFw029540 for ; Thu, 6 Nov 2003 14:33:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MXmTp029539; Thu, 6 Nov 2003 14:33:48 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062233.hA6MXmTp029539@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:33:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 03/11/06 14:33:48 Added files: xorp/rip/: TODO Log message: Created. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:35:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:36:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ma6pt022957 for ; Thu, 6 Nov 2003 14:36:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Ma2B6070759; Thu, 6 Nov 2003 14:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ma1iK028846; Thu, 6 Nov 2003 14:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MZLiK028828 for ; Thu, 6 Nov 2003 14:35:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MZLB6070754 for ; Thu, 6 Nov 2003 14:35:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MZLFw029949 for ; Thu, 6 Nov 2003 14:35:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MZLNF029948; Thu, 6 Nov 2003 14:35:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311062235.hA6MZLNF029948@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:35:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 03/11/06 14:35:21 Modified files: ./: README Log message: Take reference to MacOS X out, as its in the BUILD_NOTES. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:36:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:37:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Mb6pt023164 for ; Thu, 6 Nov 2003 14:37:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Mb2B6070783; Thu, 6 Nov 2003 14:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Mb0iK028890; Thu, 6 Nov 2003 14:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MaciK028880 for ; Thu, 6 Nov 2003 14:36:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MacB6070775 for ; Thu, 6 Nov 2003 14:36:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MabFw030098 for ; Thu, 6 Nov 2003 14:36:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MabnP030097; Thu, 6 Nov 2003 14:36:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062236.hA6MabnP030097@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:36:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/11/06 14:36:37 Modified files: xorp/libxipc/: TODO Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:46:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:47:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MlEpt025166 for ; Thu, 6 Nov 2003 14:47:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MlAB6070974; Thu, 6 Nov 2003 14:47:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ml0iK029147; Thu, 6 Nov 2003 14:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MkZiK029131 for ; Thu, 6 Nov 2003 14:46:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MkZB6070962 for ; Thu, 6 Nov 2003 14:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MkZFw032306 for ; Thu, 6 Nov 2003 14:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MkZll032305; Thu, 6 Nov 2003 14:46:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062246.hA6MkZll032305@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:46:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/11/06 14:46:35 Modified files: xorp/cli/: README Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 14:58:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 14:59:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Mx6pt027489 for ; Thu, 6 Nov 2003 14:59:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Mx2B6071142; Thu, 6 Nov 2003 14:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Mx1iK029434; Thu, 6 Nov 2003 14:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6MwciK029401 for ; Thu, 6 Nov 2003 14:58:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MwbB6071137 for ; Thu, 6 Nov 2003 14:58:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6MwbFw035089 for ; Thu, 6 Nov 2003 14:58:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6MwbQw035088; Thu, 6 Nov 2003 14:58:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062258.hA6MwbQw035088@xorpc.icir.org> Date: Thu, 6 Nov 2003 14:58:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 14:58:37 Modified files: xorp/fea/: README Log message: * Update FEA status * Replace file names xorp/foo -> $XORP/foo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:08:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6N97pt029452 for ; Thu, 6 Nov 2003 15:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6N93B6071272; Thu, 6 Nov 2003 15:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6N92iK029742; Thu, 6 Nov 2003 15:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6N82iK029710 for ; Thu, 6 Nov 2003 15:08:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6N82B6071259 for ; Thu, 6 Nov 2003 15:08:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6N82Fw037202 for ; Thu, 6 Nov 2003 15:08:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6N82Oq037201; Thu, 6 Nov 2003 15:08:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062308.hA6N82Oq037201@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:08:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:08:01 Modified files: xorp/fea/: README.mfea Log message: * Update * Editing nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:18:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:19:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NJ6pt031332 for ; Thu, 6 Nov 2003 15:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NJ2B6071398; Thu, 6 Nov 2003 15:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NJ1iK000009; Thu, 6 Nov 2003 15:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NI6iK029968 for ; Thu, 6 Nov 2003 15:18:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NI6B6071385 for ; Thu, 6 Nov 2003 15:18:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NI6Fw037354 for ; Thu, 6 Nov 2003 15:18:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NI6Dv037353; Thu, 6 Nov 2003 15:18:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062318.hA6NI6Dv037353@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:18:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:18:06 Modified files: xorp/mld6igmp/: README Log message: * Update * Editing nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:19:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:20:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NK6pt031514 for ; Thu, 6 Nov 2003 15:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NK3B6071415; Thu, 6 Nov 2003 15:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NK1iK000068; Thu, 6 Nov 2003 15:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NJZiK000024 for ; Thu, 6 Nov 2003 15:19:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NJZB6071405 for ; Thu, 6 Nov 2003 15:19:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NJZFw037381 for ; Thu, 6 Nov 2003 15:19:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NJZX0037380; Thu, 6 Nov 2003 15:19:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062319.hA6NJZX0037380@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:19:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/ospfd/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:19:35 Modified files: xorp/ospfd/: README Log message: Minor edits: - xorp -> XORP - nuke empty lines at the end _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:23:21 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:24:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NO8pt032117 for ; Thu, 6 Nov 2003 15:24:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NO5B6071477; Thu, 6 Nov 2003 15:24:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NO1iK000227; Thu, 6 Nov 2003 15:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NNLiK000180 for ; Thu, 6 Nov 2003 15:23:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NNLB6071473 for ; Thu, 6 Nov 2003 15:23:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NNLFw037448 for ; Thu, 6 Nov 2003 15:23:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NNLF5037447; Thu, 6 Nov 2003 15:23:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062323.hA6NNLF5037447@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:23:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:23:21 Modified files: xorp/mibs/: README Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:23:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:24:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NOSpt032186 for ; Thu, 6 Nov 2003 15:24:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NOOB6071479; Thu, 6 Nov 2003 15:24:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NO5iK000244; Thu, 6 Nov 2003 15:24:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NNeiK000201 for ; Thu, 6 Nov 2003 15:23:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NNeB6071475 for ; Thu, 6 Nov 2003 15:23:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NNdFw037475 for ; Thu, 6 Nov 2003 15:23:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NNdEM037474; Thu, 6 Nov 2003 15:23:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062323.hA6NNdEM037474@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:23:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/snmpdscripts/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/snmpdscripts/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:23:39 Modified files: xorp/mibs/snmpdscripts/: README Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:31:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:32:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NWKpt033498 for ; Thu, 6 Nov 2003 15:32:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NWEB6071582; Thu, 6 Nov 2003 15:32:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NW0iK000496; Thu, 6 Nov 2003 15:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NVeiK000477 for ; Thu, 6 Nov 2003 15:31:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NVeB6071575 for ; Thu, 6 Nov 2003 15:31:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NVeFw037549 for ; Thu, 6 Nov 2003 15:31:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NVesg037548; Thu, 6 Nov 2003 15:31:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062331.hA6NVesg037548@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:31:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:31:40 Modified files: xorp/pim/: README Log message: * Update status * Editing nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:25 2005 Subject: No subject Thu Nov 6 15:34:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:35:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NZNpt033979 for ; Thu, 6 Nov 2003 15:35:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NZJB6071622; Thu, 6 Nov 2003 15:35:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NZ1iK000614; Thu, 6 Nov 2003 15:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NYEiK000578 for ; Thu, 6 Nov 2003 15:34:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NYEB6071592 for ; Thu, 6 Nov 2003 15:34:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NYEFw037590 for ; Thu, 6 Nov 2003 15:34:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NYEZu037589; Thu, 6 Nov 2003 15:34:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062334.hA6NYEZu037589@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:34:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README xorp/fea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:34:14 Modified files: xorp/mld6igmp/: README xorp/fea/: README Log message: $XORP -> $(XORP) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 15:38:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:39:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Nd6pt034535 for ; Thu, 6 Nov 2003 15:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6Nd2B6071645; Thu, 6 Nov 2003 15:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Nd1iK000720; Thu, 6 Nov 2003 15:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NcBiK000687 for ; Thu, 6 Nov 2003 15:38:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NcBB6071643 for ; Thu, 6 Nov 2003 15:38:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NcAFw037706 for ; Thu, 6 Nov 2003 15:38:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6NcABg037705; Thu, 6 Nov 2003 15:38:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311062338.hA6NcABg037705@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:38:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/fea/ Changes by: hodson@xorpc.icir.org. 03/11/06 15:38:10 Modified files: xorp/docs/fea/: fea.tex Log message: Intro edit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 15:41:40 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 15:42:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NgIpt035032 for ; Thu, 6 Nov 2003 15:42:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NgFB6071685; Thu, 6 Nov 2003 15:42:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6Ng0iK000800; Thu, 6 Nov 2003 15:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA6NfeiK000784 for ; Thu, 6 Nov 2003 15:41:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NfeB6071681 for ; Thu, 6 Nov 2003 15:41:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA6NfeFw037783 for ; Thu, 6 Nov 2003 15:41:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA6Nferr037782; Thu, 6 Nov 2003 15:41:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311062341.hA6Nferr037782@xorpc.icir.org> Date: Thu, 6 Nov 2003 15:41:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/11/06 15:41:40 Modified files: xorp/docs/: status.html Log message: Update the FEA status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 16:00:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 16:01:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7016pt037838 for ; Thu, 6 Nov 2003 16:01:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7012B6071869; Thu, 6 Nov 2003 16:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7011iK001310; Thu, 6 Nov 2003 16:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA700DiK001283 for ; Thu, 6 Nov 2003 16:00:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA700CB6071858 for ; Thu, 6 Nov 2003 16:00:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA700CFw037982 for ; Thu, 6 Nov 2003 16:00:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA700C0p037981; Thu, 6 Nov 2003 16:00:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070000.hA700C0p037981@xorpc.icir.org> Date: Thu, 6 Nov 2003 16:00:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README xorp/bgp/ README xorp/cli/ README xorp/fea/ README README.mfea xorp/libxipc/ README xorp/libxorp/ README xorp/mibs/ README xorp/mld6igmp/ README xorp/pim/ README xorp/rib/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 03/11/06 16:00:12 Modified files: ./: README xorp/bgp/: README xorp/cli/: README xorp/fea/: README README.mfea xorp/libxipc/: README xorp/libxorp/: README xorp/mibs/: README xorp/mld6igmp/: README xorp/pim/: README xorp/rib/: README Log message: Make consistent the specification of files and directory names inside READMEs: $XORP/foo -> ${XORP}/foo $(XORP)/foo -> ${XORP}/foo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 16:12:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 16:13:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70D9pt039635 for ; Thu, 6 Nov 2003 16:13:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70D5B6071982; Thu, 6 Nov 2003 16:13:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70D2iK001708; Thu, 6 Nov 2003 16:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70C3iK001651 for ; Thu, 6 Nov 2003 16:12:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70C3B6071980 for ; Thu, 6 Nov 2003 16:12:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70C2Fw038080 for ; Thu, 6 Nov 2003 16:12:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA70C2kx038079; Thu, 6 Nov 2003 16:12:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070012.hA70C2kx038079@xorpc.icir.org> Date: Thu, 6 Nov 2003 16:12:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 16:12:02 Modified files: ./: downloads.html Log message: Add an entry for release-0.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 16:30:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 16:31:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70V9pt042320 for ; Thu, 6 Nov 2003 16:31:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70V4B6072140; Thu, 6 Nov 2003 16:31:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70V0iK002143; Thu, 6 Nov 2003 16:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70U4iK002118 for ; Thu, 6 Nov 2003 16:30:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70U3B6072117 for ; Thu, 6 Nov 2003 16:30:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70U2Fw038274 for ; Thu, 6 Nov 2003 16:30:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA70U2DT038273; Thu, 6 Nov 2003 16:30:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311070030.hA70U2DT038273@xorpc.icir.org> Date: Thu, 6 Nov 2003 16:30:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/11/06 16:30:02 Modified files: ./: configure configure.in Log message: Add check that "net-snmp-config --cflags" gives sane flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 16:49:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 16:50:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70o7pt045183 for ; Thu, 6 Nov 2003 16:50:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70o3B6072313; Thu, 6 Nov 2003 16:50:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70o1iK002527; Thu, 6 Nov 2003 16:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA70njiK002512 for ; Thu, 6 Nov 2003 16:49:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70njB6072307 for ; Thu, 6 Nov 2003 16:49:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA70njFw038494 for ; Thu, 6 Nov 2003 16:49:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA70njWX038493; Thu, 6 Nov 2003 16:49:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070049.hA70njWX038493@xorpc.icir.org> Date: Thu, 6 Nov 2003 16:49:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 16:49:45 Modified files: ./: RELEASE_NOTES Log message: Update the release notes for the following sections: ALL, XORPSH, FEA/MFEA, MLD/IGMP, PIM, CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:02:00 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:03:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7138pt047186 for ; Thu, 6 Nov 2003 17:03:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7134B6072490; Thu, 6 Nov 2003 17:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7131iK002978; Thu, 6 Nov 2003 17:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7121iK002937 for ; Thu, 6 Nov 2003 17:02:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7121B6072482 for ; Thu, 6 Nov 2003 17:02:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7120Fw038651 for ; Thu, 6 Nov 2003 17:02:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA7120b0038650; Thu, 6 Nov 2003 17:02:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070102.hA7120b0038650@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:02:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:02:00 Modified files: ./: news.html Log message: Add a news item for release-0.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:03:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:04:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7147pt047345 for ; Thu, 6 Nov 2003 17:04:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7143B6072499; Thu, 6 Nov 2003 17:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7141iK003019; Thu, 6 Nov 2003 17:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA713GiK002995 for ; Thu, 6 Nov 2003 17:03:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA713GB6072492 for ; Thu, 6 Nov 2003 17:03:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA713GFw038686 for ; Thu, 6 Nov 2003 17:03:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA713GWW038685; Thu, 6 Nov 2003 17:03:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070103.hA713GWW038685@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:03:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:03:16 Modified files: ./: index.html Log message: * Add a short-cut for the news item for release-0.5 * Update the rest of the page with the 0.5 release version and date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:04:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:05:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7158pt047495 for ; Thu, 6 Nov 2003 17:05:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7154B6072511; Thu, 6 Nov 2003 17:05:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7151iK003055; Thu, 6 Nov 2003 17:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA714ZiK003040 for ; Thu, 6 Nov 2003 17:04:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA714ZB6072506 for ; Thu, 6 Nov 2003 17:04:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA714ZFw038718 for ; Thu, 6 Nov 2003 17:04:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA714ZbD038717; Thu, 6 Nov 2003 17:04:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070104.hA714ZbD038717@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:04:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:04:35 Modified files: xorp/devnotes/: release_process.txt Log message: Editorials in step 1000. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:09:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71A7pt048226 for ; Thu, 6 Nov 2003 17:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71A3B6072568; Thu, 6 Nov 2003 17:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71A0iK003170; Thu, 6 Nov 2003 17:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA719NiK003156 for ; Thu, 6 Nov 2003 17:09:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA719NB6072558 for ; Thu, 6 Nov 2003 17:09:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA719NFw038791 for ; Thu, 6 Nov 2003 17:09:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA719NT1038790; Thu, 6 Nov 2003 17:09:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070109.hA719NT1038790@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:09:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:09:23 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Add a modification history item for release 0.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:12:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:13:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71DBpt048704 for ; Thu, 6 Nov 2003 17:13:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71D7B6072605; Thu, 6 Nov 2003 17:13:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71D1iK003240; Thu, 6 Nov 2003 17:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71C4iK003213 for ; Thu, 6 Nov 2003 17:12:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71C4B6072601 for ; Thu, 6 Nov 2003 17:12:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71C3Fw038844 for ; Thu, 6 Nov 2003 17:12:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA71C3f4038843; Thu, 6 Nov 2003 17:12:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311070112.hA71C3f4038843@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:12:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/06 17:12:03 Modified files: xorp/bgp/: README Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:13:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:14:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71EApt048883 for ; Thu, 6 Nov 2003 17:14:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71E6B6072616; Thu, 6 Nov 2003 17:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71E1iK003277; Thu, 6 Nov 2003 17:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71DciK003265 for ; Thu, 6 Nov 2003 17:13:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71DbB6072611 for ; Thu, 6 Nov 2003 17:13:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71DbFw038871 for ; Thu, 6 Nov 2003 17:13:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA71DbJD038870; Thu, 6 Nov 2003 17:13:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070113.hA71DbJD038870@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:13:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:13:37 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Add \texttt{} around a file name, and use ${XORP} instead of xorp as the XORP top-level directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:18:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:19:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71J6pt049620 for ; Thu, 6 Nov 2003 17:19:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71J2B6072650; Thu, 6 Nov 2003 17:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71J0iK003358; Thu, 6 Nov 2003 17:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71IciK003344 for ; Thu, 6 Nov 2003 17:18:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71IcB6072646 for ; Thu, 6 Nov 2003 17:18:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71IcFw038972 for ; Thu, 6 Nov 2003 17:18:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA71Ichl038971; Thu, 6 Nov 2003 17:18:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070118.hA71Ichl038971@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:18:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:18:38 Modified files: xorp/docs/: index.html Log message: Change all document version to 0.5 and the date to 2003-11-06 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 17:21:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 17:22:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71M8pt050106 for ; Thu, 6 Nov 2003 17:22:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71M5B6072686; Thu, 6 Nov 2003 17:22:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71M1iK003460; Thu, 6 Nov 2003 17:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA71LPiK003433 for ; Thu, 6 Nov 2003 17:21:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71LPB6072678 for ; Thu, 6 Nov 2003 17:21:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA71LPFw039026 for ; Thu, 6 Nov 2003 17:21:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA71LPd7039025; Thu, 6 Nov 2003 17:21:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070121.hA71LPd7039025@xorpc.icir.org> Date: Thu, 6 Nov 2003 17:21:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 03/11/06 17:21:25 Modified files: xorp/docs/: status.html Log message: Change the "Last modified:" label to use the $DOLLAR XORP $DOLLAR CVS commit ID. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 23:05:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 23:06:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776Fpt002588 for ; Thu, 6 Nov 2003 23:06:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776AB6075534; Thu, 6 Nov 2003 23:06:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7762iK008957; Thu, 6 Nov 2003 23:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA775tiK008934 for ; Thu, 6 Nov 2003 23:05:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA775tB6075526 for ; Thu, 6 Nov 2003 23:05:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA775sFw040967 for ; Thu, 6 Nov 2003 23:05:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA775scL040966; Thu, 6 Nov 2003 23:05:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070705.hA775scL040966@xorpc.icir.org> Date: Thu, 6 Nov 2003 23:05:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/06 23:05:54 Modified files: ./: VERSION configure configure.in Log message: Prepare XORP for release: bump-up version number _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:26 2005 Subject: No subject Thu Nov 6 23:04:10 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 23:06:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776Gpt002603 for ; Thu, 6 Nov 2003 23:06:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776BB6075536; Thu, 6 Nov 2003 23:06:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7751iK008916; Thu, 6 Nov 2003 23:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA774BiK008897 for ; Thu, 6 Nov 2003 23:04:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA774AB6075493 for ; Thu, 6 Nov 2003 23:04:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA774AFw040893 for ; Thu, 6 Nov 2003 23:04:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA774Avn040892; Thu, 6 Nov 2003 23:04:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070704.hA774Avn040892@xorpc.icir.org> Date: Thu, 6 Nov 2003 23:04:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/11/06 23:04:10 Modified files: xorp/rip/: .cvsignore Log message: Added xorp_rip4 and xorp_rip6 to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Thu Nov 6 23:05:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 23:06:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776Lpt002632 for ; Thu, 6 Nov 2003 23:06:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA776HB6075542; Thu, 6 Nov 2003 23:06:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7761iK008945; Thu, 6 Nov 2003 23:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA775BiK008925 for ; Thu, 6 Nov 2003 23:05:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA775BB6075517 for ; Thu, 6 Nov 2003 23:05:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA775BFw040940 for ; Thu, 6 Nov 2003 23:05:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA775BZe040939; Thu, 6 Nov 2003 23:05:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070705.hA775BZe040939@xorpc.icir.org> Date: Thu, 6 Nov 2003 23:05:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/11/06 23:05:11 Modified files: xorp/rip/: Makefile.in Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Thu Nov 6 23:42:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 23:43:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77h6pt009226 for ; Thu, 6 Nov 2003 23:43:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77h3B6075814; Thu, 6 Nov 2003 23:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA77h0iK009566; Thu, 6 Nov 2003 23:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA77gqiK009554 for ; Thu, 6 Nov 2003 23:42:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77gqB6075810 for ; Thu, 6 Nov 2003 23:42:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77gqFw041253 for ; Thu, 6 Nov 2003 23:42:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA77gqhc041252; Thu, 6 Nov 2003 23:42:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070742.hA77gqhc041252@xorpc.icir.org> Date: Thu, 6 Nov 2003 23:42:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 03/11/06 23:42:52 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Correct HTML_LOGO URL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Thu Nov 6 23:54:16 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Nov 2003 23:55:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77t8pt011493 for ; Thu, 6 Nov 2003 23:55:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77t4B6075890; Thu, 6 Nov 2003 23:55:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA77t0iK009797; Thu, 6 Nov 2003 23:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA77sHiK009776 for ; Thu, 6 Nov 2003 23:54:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77sHB6075881 for ; Thu, 6 Nov 2003 23:54:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA77sHFw041373 for ; Thu, 6 Nov 2003 23:54:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA77sGv1041372; Thu, 6 Nov 2003 23:54:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311070754.hA77sGv1041372@xorpc.icir.org> Date: Thu, 6 Nov 2003 23:54:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 03/11/06 23:54:16 Modified files: xorp/devnotes/: release_process.txt Log message: Add a comment to step 2300. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Fri Nov 7 15:07:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Nov 2003 15:08:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7N8Cpt062809 for ; Fri, 7 Nov 2003 15:08:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7N88B6085479; Fri, 7 Nov 2003 15:08:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7N81iK027045; Fri, 7 Nov 2003 15:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA7N7ViK027018 for ; Fri, 7 Nov 2003 15:07:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7N7VB6085471 for ; Fri, 7 Nov 2003 15:07:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA7N7VFw076691 for ; Fri, 7 Nov 2003 15:07:31 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA7N7Vdd076690; Fri, 7 Nov 2003 15:07:31 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311072307.hA7N7Vdd076690@xorpc.icir.org> Date: Fri, 7 Nov 2003 15:07:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ socket4.xif socket4_locator.xif socket4_locator_xif.cc socket4_locator_xif.hh socket4_user.xif socket4_user_xif.cc socket4_user_xif.hh ...socket4_xif.cc ...socket4_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/11/07 15:07:31 Added files: xorp/xrl/interfaces/: socket4.xif socket4_locator.xif socket4_locator_xif.cc socket4_locator_xif.hh socket4_user.xif socket4_user_xif.cc socket4_user_xif.hh socket4_xif.cc socket4_xif.hh Log message: Add IPv4 socket interfaces. These are for sockets that bound to FEA managed addresses. The interfaces are: socket4_locator/0.1 . . Interface to find Xrl target for instantiating a socket on a . particular address. This is a method interface whose presence allows . the other interfaces to work on multi-box FEA's. socket4.xif - the . interface. socket4/0.1 . . Interface for creating, binding, configuring, and sending data on sockets. socket4_user/0.1 . . Interface paired with socket4/0.1 for receiving data, connection requests, . socket error notifications, and forced socket close notifications. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Fri Nov 7 16:56:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Nov 2003 16:57:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA80v7pt083020 for ; Fri, 7 Nov 2003 16:57:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA80v3B6086389; Fri, 7 Nov 2003 16:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA80v0iK029295; Fri, 7 Nov 2003 16:57:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA80uIiK029271 for ; Fri, 7 Nov 2003 16:56:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA80uHB6086387 for ; Fri, 7 Nov 2003 16:56:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA80uHFw077399 for ; Fri, 7 Nov 2003 16:56:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA80uHc2077398; Fri, 7 Nov 2003 16:56:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311080056.hA80uHc2077398@xorpc.icir.org> Date: Fri, 7 Nov 2003 16:56:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 03/11/07 16:56:17 Modified files: ./: BUILD_NOTES Log message: Add note for OS X 10.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Fri Nov 7 23:20:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 Nov 2003 23:21:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hA87LIpt039382 for ; Fri, 7 Nov 2003 23:21:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA87LEB6089210; Fri, 7 Nov 2003 23:21:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA87L1iK004100; Fri, 7 Nov 2003 23:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hA87KwiK004091 for ; Fri, 7 Nov 2003 23:20:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hA87KwB6089208 for ; Fri, 7 Nov 2003 23:20:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hA87KwFw079623 for ; Fri, 7 Nov 2003 23:20:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hA87KwXX079622; Fri, 7 Nov 2003 23:20:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311080720.hA87KwXX079622@xorpc.icir.org> Date: Fri, 7 Nov 2003 23:20:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/07 23:20:58 Modified files: xorp/fea/: fticonfig.cc Log message: Add missing UNUSED(enable) in case of Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Mon Nov 10 10:42:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Nov 2003 10:43:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAIh9pt085547 for ; Mon, 10 Nov 2003 10:43:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAIh4B6023591; Mon, 10 Nov 2003 10:43:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAAIh1iK022481; Mon, 10 Nov 2003 10:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAAIgliK022468 for ; Mon, 10 Nov 2003 10:42:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAIglB6023580 for ; Mon, 10 Nov 2003 10:42:47 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAIglFw028494 for ; Mon, 10 Nov 2003 10:42:47 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAAIgl0u028493; Mon, 10 Nov 2003 10:42:47 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311101842.hAAIgl0u028493@xorpc.icir.org> Date: Mon, 10 Nov 2003 10:42:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/11/10 10:42:47 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Log message: Add entries for socket xifs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Mon Nov 10 14:25:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Nov 2003 14:26:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAMQFpt038134 for ; Mon, 10 Nov 2003 14:26:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAMQANs026432; Mon, 10 Nov 2003 14:26:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAAMQ1iK027421; Mon, 10 Nov 2003 14:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAAMPpiK027409 for ; Mon, 10 Nov 2003 14:25:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAMPoNs026424 for ; Mon, 10 Nov 2003 14:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAAMPoFw086295 for ; Mon, 10 Nov 2003 14:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAAMPou0086294; Mon, 10 Nov 2003 14:25:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311102225.hAAMPou0086294@xorpc.icir.org> Date: Mon, 10 Nov 2003 14:25:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get_proc_linux.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/10 14:25:49 Modified files: xorp/fea/: ifconfig_get_proc_linux.cc Log message: Compilation bug fix for Linux if IPv6 is enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Mon Nov 10 16:01:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Nov 2003 16:02:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB027pt057278 for ; Mon, 10 Nov 2003 16:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB023Ns027531; Mon, 10 Nov 2003 16:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAB020iK029570; Mon, 10 Nov 2003 16:02:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAB01ZiK029554 for ; Mon, 10 Nov 2003 16:01:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB01ZNs027525 for ; Mon, 10 Nov 2003 16:01:35 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB01YFw094878 for ; Mon, 10 Nov 2003 16:01:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAB01Yhg094877; Mon, 10 Nov 2003 16:01:34 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311110001.hAB01Yhg094877@xorpc.icir.org> Date: Mon, 10 Nov 2003 16:01:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in xorp/bgp/ test_leaks.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/10 16:01:34 Modified files: xorp/bgp/: Makefile.am Makefile.in Added files: xorp/bgp/: test_leaks.sh Log message: Add a script to run all the tests programs again, but this time looking for memory leaks. Copied from libxipc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Mon Nov 10 18:03:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 Nov 2003 18:04:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB24Mpt086562 for ; Mon, 10 Nov 2003 18:04:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB24INs028539; Mon, 10 Nov 2003 18:04:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAB240iK002066; Mon, 10 Nov 2003 18:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAB23viK002057 for ; Mon, 10 Nov 2003 18:03:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB23uNs028535 for ; Mon, 10 Nov 2003 18:03:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAB23uFw095574 for ; Mon, 10 Nov 2003 18:03:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAB23uJc095573; Mon, 10 Nov 2003 18:03:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311110203.hAB23uJc095573@xorpc.icir.org> Date: Mon, 10 Nov 2003 18:03:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/10 18:03:56 Modified files: xorp/bgp/: bgp.cc Log message: If we reject a connection attempt then close the file descriptor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Tue Nov 11 14:09:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Nov 2003 14:10:45 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMAjpt082934 for ; Tue, 11 Nov 2003 14:10:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMAfNs040506; Tue, 11 Nov 2003 14:10:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABMA2iK022497; Tue, 11 Nov 2003 14:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABM9aiK022480 for ; Tue, 11 Nov 2003 14:09:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABM9aNs040478 for ; Tue, 11 Nov 2003 14:09:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hABM9aFw019274 for ; Tue, 11 Nov 2003 14:09:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hABM9aPc019255; Tue, 11 Nov 2003 14:09:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311112209.hABM9aPc019255@xorpc.icir.org> Date: Tue, 11 Nov 2003 14:09:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_osdep.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/11 14:09:36 Modified files: xorp/fea/: mfea_osdep.hh Log message: IPv6-related tweaks: * include "libxorp/xorp.h" instead of "config.h" * conditionally include * conditionally define IP6OPT_RTALERT, IP6OPT_RTALERT_LEN, IP6OPT_RTALERT_MLD _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Tue Nov 11 14:12:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Nov 2003 14:13:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMDApt083306 for ; Tue, 11 Nov 2003 14:13:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMD2Ns040530; Tue, 11 Nov 2003 14:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABMD0iK022553; Tue, 11 Nov 2003 14:13:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABMC6iK022539 for ; Tue, 11 Nov 2003 14:12:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMC6Ns040520 for ; Tue, 11 Nov 2003 14:12:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMC6Fw025485 for ; Tue, 11 Nov 2003 14:12:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hABMC6mM025484; Tue, 11 Nov 2003 14:12:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311112212.hABMC6mM025484@xorpc.icir.org> Date: Tue, 11 Nov 2003 14:12:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/11 14:12:06 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: IPv6 related tweaks: * If IPv6 multicast routing is not supported, then use sizeof(struct icmp6_hdr) instead of sizeof(struct mld_hdr) as the smallest size an ICMPv6 message should have * Use #ifdef HAVE_IPV6_MULTICAST_ROUTING ... #endif around MLD-related to filter only the MLD related messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Tue Nov 11 14:21:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Nov 2003 14:22:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMMApt084655 for ; Tue, 11 Nov 2003 14:22:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMM3Ns040651; Tue, 11 Nov 2003 14:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABMM0iK022742; Tue, 11 Nov 2003 14:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hABMLhiK022729 for ; Tue, 11 Nov 2003 14:21:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMLhNs040643 for ; Tue, 11 Nov 2003 14:21:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hABMLhFw026044 for ; Tue, 11 Nov 2003 14:21:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hABMLhnX026043; Tue, 11 Nov 2003 14:21:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311112221.hABMLhnX026043@xorpc.icir.org> Date: Tue, 11 Nov 2003 14:21:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/11 14:21:43 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: IPv6 Linux compilation fixes: * Explicitly define "struct in6_ifreq" in case of Linux with IPv6 support. The reason for this is as follows: In case of Linux, we have "struct in6_ifreq" defined in . However, we cannot include that file along with because of replicated structure definitions in and where the latter one is included by . Hence, we cannot include , and we have no choice, but to define the missing "struct in6_ifreq". BTW, please note that the Linux struct in6_ifreq has nothing in common with the original KAME's "struct in6_ifreq". * Replace ifreq with in6_ifreq as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:27 2005 Subject: No subject Wed Nov 12 11:03:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Nov 2003 11:04:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ4Cpt004581 for ; Wed, 12 Nov 2003 11:04:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ47Ns052397; Wed, 12 Nov 2003 11:04:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJ41iK014059; Wed, 12 Nov 2003 11:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJ3qiK014041 for ; Wed, 12 Nov 2003 11:03:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ3pNs052395 for ; Wed, 12 Nov 2003 11:03:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ3pFw008317 for ; Wed, 12 Nov 2003 11:03:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hACJ3ppA008316; Wed, 12 Nov 2003 11:03:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311121903.hACJ3ppA008316@xorpc.icir.org> Date: Wed, 12 Nov 2003 11:03:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/11/12 11:03:51 Modified files: xorp/rip/: .cvsignore Log message: Fix a typo introduced with the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Wed Nov 12 11:07:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Nov 2003 11:08:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ86pt005420 for ; Wed, 12 Nov 2003 11:08:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ82Ns052445; Wed, 12 Nov 2003 11:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJ81iK014202; Wed, 12 Nov 2003 11:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJ7fiK014182 for ; Wed, 12 Nov 2003 11:07:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ7fNs052443 for ; Wed, 12 Nov 2003 11:07:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJ7fFw008418 for ; Wed, 12 Nov 2003 11:07:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hACJ7fWf008417; Wed, 12 Nov 2003 11:07:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311121907.hACJ7fWf008417@xorpc.icir.org> Date: Wed, 12 Nov 2003 11:07:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/12 11:07:41 Modified files: xorp/pim/: pim_proto_register.cc Log message: Conditionally define IPv6 header related values: IPV6_VERSION and IPV6_VERSION_MASK _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Wed Nov 12 11:10:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Nov 2003 11:11:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJB8pt006038 for ; Wed, 12 Nov 2003 11:11:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJB4Ns052479; Wed, 12 Nov 2003 11:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJB1iK014289; Wed, 12 Nov 2003 11:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACJA8iK014263 for ; Wed, 12 Nov 2003 11:10:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJA8Ns052472 for ; Wed, 12 Nov 2003 11:10:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hACJA8Fw008496 for ; Wed, 12 Nov 2003 11:10:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hACJA7XK008495; Wed, 12 Nov 2003 11:10:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311121910.hACJA7XK008495@xorpc.icir.org> Date: Wed, 12 Nov 2003 11:10:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6_proto.h mld6igmp_member_query.cc mld6igmp_proto.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/11/12 11:10:07 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6_proto.h mld6igmp_member_query.cc mld6igmp_proto.cc mld6igmp_vif.cc Log message: Replace most of #ifdef HAVE_IPV6 with #ifdef HAVE_IPV6_MULTICAST_ROUTING _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Wed Nov 12 12:25:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Nov 2003 12:26:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hACKQ8pt021153 for ; Wed, 12 Nov 2003 12:26:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACKQ3Ns053430; Wed, 12 Nov 2003 12:26:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACKQ1iK016231; Wed, 12 Nov 2003 12:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hACKPRiK016213 for ; Wed, 12 Nov 2003 12:25:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hACKPQNs053424 for ; Wed, 12 Nov 2003 12:25:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hACKPQFw023609 for ; Wed, 12 Nov 2003 12:25:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hACKPQwN023608; Wed, 12 Nov 2003 12:25:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311122025.hACKPQwN023608@xorpc.icir.org> Date: Wed, 12 Nov 2003 12:25:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ clnt-gen Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/scripts/ Changes by: pavlin@xorpc.icir.org. 03/11/12 12:25:26 Modified files: xorp/xrl/scripts/: clnt-gen Log message: Fix a problem to the foo_xif.cc generation when there is more than one "interface foo/0.1 { }" inside a *.xif file. [reviewed by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Thu Nov 13 11:05:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Nov 2003 11:06:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hADJ6Cpt036929 for ; Thu, 13 Nov 2003 11:06:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hADJ65Ns066866; Thu, 13 Nov 2003 11:06:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hADJ61iK010569; Thu, 13 Nov 2003 11:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hADJ5oiK010555 for ; Thu, 13 Nov 2003 11:05:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hADJ5oNs066862 for ; Thu, 13 Nov 2003 11:05:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hADJ5nFw048565 for ; Thu, 13 Nov 2003 11:05:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hADJ5nxd048564; Thu, 13 Nov 2003 11:05:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311131905.hADJ5nxd048564@xorpc.icir.org> Date: Thu, 13 Nov 2003 11:05:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.cc finder.hh finder_xrl_target.cc finder_xrl_target.hh xorp/xrl/interfaces/ finder_event_notifier.xif finder_event_notifier_xif.cc finder_event_notifier_xif.hh xorp/xrl/targets/ finder.xrls finder_base.cc finder_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/11/13 11:05:49 Modified files: xorp/libxipc/: finder.cc finder.hh finder_xrl_target.cc finder_xrl_target.hh xorp/xrl/interfaces/: finder_event_notifier.xif finder_event_notifier_xif.cc finder_event_notifier_xif.hh xorp/xrl/targets/: finder.xrls finder_base.cc finder_base.hh Log message: Add methods to watch birth and death events of single Xrl Target instances. This is intended as a helper for tracking resource ownership across multiple distributed processes, ie one Xrl Target can watch another to see when it fails/exits and clean up any associated resources accordingly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Fri Nov 14 10:15:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Nov 2003 10:16:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIGFpt089737 for ; Fri, 14 Nov 2003 10:16:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIG9Ns080512; Fri, 14 Nov 2003 10:16:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAEIG1iK004793; Fri, 14 Nov 2003 10:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAEIFXiK004778 for ; Fri, 14 Nov 2003 10:15:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIFXNs080508 for ; Fri, 14 Nov 2003 10:15:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIFXFw088115 for ; Fri, 14 Nov 2003 10:15:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAEIFXoe088114; Fri, 14 Nov 2003 10:15:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311141815.hAEIFXoe088114@xorpc.icir.org> Date: Fri, 14 Nov 2003 10:15:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/14 10:15:33 Modified files: xorp/rtrmgr/: cli.cc Log message: Don't print "OK" after a command in operational mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Fri Nov 14 10:19:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Nov 2003 10:20:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIKGpt090571 for ; Fri, 14 Nov 2003 10:20:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIKCNs080554; Fri, 14 Nov 2003 10:20:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAEIK1iK004927; Fri, 14 Nov 2003 10:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAEIJ2iK004897 for ; Fri, 14 Nov 2003 10:19:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIJ2Ns080530 for ; Fri, 14 Nov 2003 10:19:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAEIJ2Fw088157 for ; Fri, 14 Nov 2003 10:19:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAEIJ1pO088156; Fri, 14 Nov 2003 10:19:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311141819.hAEIJ1pO088156@xorpc.icir.org> Date: Fri, 14 Nov 2003 10:19:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: pavlin@xorpc.icir.org. 03/11/14 10:19:01 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc show_interfaces.hh Log message: Clean-up a bit the "show_interfaces" command: * On start-up, don't explicitly unregister with the FEA. * On shutdown, do explicitly unregister with the FEA. This should eliminate a bogus WARNING from the FEA when we try the "show vif foo" command inside xorpsh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Fri Nov 14 15:42:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 Nov 2003 15:43:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAENhLpt052505 for ; Fri, 14 Nov 2003 15:43:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAENhHNs083785; Fri, 14 Nov 2003 15:43:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAENh1iK012010; Fri, 14 Nov 2003 15:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAENgMiK011984 for ; Fri, 14 Nov 2003 15:42:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAENgKNs083779 for ; Fri, 14 Nov 2003 15:42:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAENgKFw055837 for ; Fri, 14 Nov 2003 15:42:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAENgKts055836; Fri, 14 Nov 2003 15:42:20 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311142342.hAENgKts055836@xorpc.icir.org> Date: Fri, 14 Nov 2003 15:42:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_list.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/14 15:42:20 Modified files: xorp/bgp/: peer_list.cc Log message: Change an assert(false) => XLOG_UNREACHABLE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Sun Nov 16 16:21:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Nov 2003 16:22:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0M9pt009084 for ; Sun, 16 Nov 2003 16:22:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0M5Ns009959; Sun, 16 Nov 2003 16:22:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH0M1iK021621; Sun, 16 Nov 2003 16:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH0LpiK021605 for ; Sun, 16 Nov 2003 16:21:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0LpNs009955 for ; Sun, 16 Nov 2003 16:21:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0LpFw037429 for ; Sun, 16 Nov 2003 16:21:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAH0LpGb037428; Sun, 16 Nov 2003 16:21:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311170021.hAH0LpGb037428@xorpc.icir.org> Date: Sun, 16 Nov 2003 16:21:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp ospf.tp rib.tp snmp.tp xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh module_command.cc module_command.hh template_commands.cc template_commands.hh template_tree.cc template_tree_node.cc ...template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/16 16:21:51 Modified files: xorp/etc/templates/: bgp.tp fea.tp ospf.tp rib.tp snmp.tp xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh module_command.cc module_command.hh template_commands.cc template_commands.hh template_tree.cc template_tree_node.cc template_tree_node.hh Log message: Add support for optional configuration of the the XRL target name rather than always using a hardcoded value. At high-level, the modification is: * Added new variable "targetname: text" to each template in etc/templates/*.tp, and set its default value as appropriate. * All XRL specifications in the template files are modified to use the above variable. E.g.: OLD: %get: xrl "bgp/bgp/0.2/get_bgp_id->id:ipv4"; NEW: %get: xrl "$(bgp.targetname)/bgp/0.2/get_bgp_id->id:ipv4"; The new specification of a target name is not mandatory, hence the old specification is also acceptable. * Added a new %modinfo subcommand. E.g.: %modinfo: default_targetname "bgp"; This subcommand is used to specify the value of the XRL target name that should be used by default when validating an XRL specification (e.g., if that specification uses a variable inside that module to specify the XRL target name). The syntax of the router manager configuration file is not affected, hence they don't need modification. Only if the default target name of a module needs to be overwritten, then a configuration file should contain variable "targetname" with the appropriate new value. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Sun Nov 16 16:34:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Nov 2003 16:35:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0Zrpt011138 for ; Sun, 16 Nov 2003 16:35:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0ZnNs010056; Sun, 16 Nov 2003 16:35:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH0Z1iK021810; Sun, 16 Nov 2003 16:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH0YciK021799 for ; Sun, 16 Nov 2003 16:34:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0YcNs010028 for ; Sun, 16 Nov 2003 16:34:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH0YbFw037529 for ; Sun, 16 Nov 2003 16:34:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAH0YbqY037528; Sun, 16 Nov 2003 16:34:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311170034.hAH0YbqY037528@xorpc.icir.org> Date: Sun, 16 Nov 2003 16:34:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/16 16:34:37 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the rtrmgr document to include information about the optional configuration of the XRL target name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Sun Nov 16 23:02:41 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Nov 2003 23:03:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH73Hpt068265 for ; Sun, 16 Nov 2003 23:03:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH73DNs012873; Sun, 16 Nov 2003 23:03:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH731iK026571; Sun, 16 Nov 2003 23:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH72fiK026557 for ; Sun, 16 Nov 2003 23:02:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH72fNs012865 for ; Sun, 16 Nov 2003 23:02:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH72fFw040179 for ; Sun, 16 Nov 2003 23:02:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAH72fCE040178; Sun, 16 Nov 2003 23:02:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311170702.hAH72fCE040178@xorpc.icir.org> Date: Sun, 16 Nov 2003 23:02:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/16 23:02:41 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in Log message: * Add the *.hh files to the lists of source files * Add the *.ll and *.yy files to EXTRA_DIST * Reorder all source files in alphabetical order _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:28 2005 Subject: No subject Sun Nov 16 23:04:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 Nov 2003 23:05:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH757pt068556 for ; Sun, 16 Nov 2003 23:05:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH753Ns012890; Sun, 16 Nov 2003 23:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH750iK026615; Sun, 16 Nov 2003 23:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAH74ViK026600 for ; Sun, 16 Nov 2003 23:04:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH74VNs012883 for ; Sun, 16 Nov 2003 23:04:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAH74UFw040227 for ; Sun, 16 Nov 2003 23:04:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAH74UWg040226; Sun, 16 Nov 2003 23:04:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311170704.hAH74UWg040226@xorpc.icir.org> Date: Sun, 16 Nov 2003 23:04:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll op_commands.ll template.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/16 23:04:30 Modified files: xorp/rtrmgr/: boot.ll op_commands.ll template.ll Log message: Replace #include "string.h" with #include _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 11:34:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 11:35:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHJZApt089512 for ; Mon, 17 Nov 2003 11:35:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHJZ6Ns021791; Mon, 17 Nov 2003 11:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHJZ0iK009625; Mon, 17 Nov 2003 11:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHJYXiK009609 for ; Mon, 17 Nov 2003 11:34:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHJYXNs021769 for ; Mon, 17 Nov 2003 11:34:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHJYWFw013421 for ; Mon, 17 Nov 2003 11:34:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAHJYW06013420; Mon, 17 Nov 2003 11:34:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311171934.hAHJYW06013420@xorpc.icir.org> Date: Mon, 17 Nov 2003 11:34:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc master_conf_tree.cc module_command.cc slave_conf_tree.cc template_commands.cc template_tree.cc template_tree_node.cc util.cc xorp_client.cc ...xrl_rtrmgr_interface.cc ...xrl_xorpsh_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/17 11:34:32 Modified files: xorp/rtrmgr/: conf_tree_node.cc master_conf_tree.cc module_command.cc slave_conf_tree.cc template_commands.cc template_tree.cc template_tree_node.cc util.cc xorp_client.cc xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc Log message: Comment-out "#define DEBUG_FOO" statements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 14:10:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 14:11:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMB8pt025096 for ; Mon, 17 Nov 2003 14:11:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMB4Ns023457; Mon, 17 Nov 2003 14:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHMB1iK013177; Mon, 17 Nov 2003 14:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHMAkiK013167 for ; Mon, 17 Nov 2003 14:10:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMAjNs023455 for ; Mon, 17 Nov 2003 14:10:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMAjFw063898 for ; Mon, 17 Nov 2003 14:10:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAHMAjVu063897; Mon, 17 Nov 2003 14:10:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311172210.hAHMAjVu063897@xorpc.icir.org> Date: Mon, 17 Nov 2003 14:10:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds bgp.tp fea.cmds fea.tp ospf.tp rib.tp snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/11/17 14:10:45 Modified files: xorp/etc/templates/: bgp.cmds bgp.tp fea.cmds fea.tp ospf.tp rib.tp snmp.tp Log message: Minor cleanup: spacing, adding the XORP CVS identifier, etc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 14:11:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 14:12:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMC8pt025310 for ; Mon, 17 Nov 2003 14:12:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMC4Ns023472; Mon, 17 Nov 2003 14:12:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHMC1iK013205; Mon, 17 Nov 2003 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAHMBpiK013196 for ; Mon, 17 Nov 2003 14:11:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMBpNs023466 for ; Mon, 17 Nov 2003 14:11:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAHMBpFw064656 for ; Mon, 17 Nov 2003 14:11:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAHMBpfi064655; Mon, 17 Nov 2003 14:11:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311172211.hAHMBpfi064655@xorpc.icir.org> Date: Mon, 17 Nov 2003 14:11:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot config.boot.sample config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/17 14:11:51 Modified files: xorp/rtrmgr/: config.boot config.boot.sample config.boot.xorp0 Log message: Minor cleanup: spacing, adding the XORP CVS identifier, etc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 17:46:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 17:47:57 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1lvpt072184 for ; Mon, 17 Nov 2003 17:47:57 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1lrNs025466; Mon, 17 Nov 2003 17:47:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1l1iK018074; Mon, 17 Nov 2003 17:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1kaiK018063 for ; Mon, 17 Nov 2003 17:46:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1kaNs025454 for ; Mon, 17 Nov 2003 17:46:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1kaFw080750 for ; Mon, 17 Nov 2003 17:46:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAI1kaca080749; Mon, 17 Nov 2003 17:46:36 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311180146.hAI1kaca080749@xorpc.icir.org> Date: Mon, 17 Nov 2003 17:46:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/ Changes by: hodson@xorpc.icir.org. 03/11/17 17:46:35 Modified files: xorp/xrl/scripts/: tgt-gen Log message: Make XrlCmdMap argument in target constructors optional and add command to add it later. This makes things a bit more flexible, ie a class owning an XrlRouter can trivially be an XrlTarget. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 17:47:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 17:48:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1mBpt072231 for ; Mon, 17 Nov 2003 17:48:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1m7Ns025468; Mon, 17 Nov 2003 17:48:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1m0iK018109; Mon, 17 Nov 2003 17:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1lCiK018087 for ; Mon, 17 Nov 2003 17:47:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1lBNs025460 for ; Mon, 17 Nov 2003 17:47:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1lBFw080769 for ; Mon, 17 Nov 2003 17:47:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAI1lBhx080768; Mon, 17 Nov 2003 17:47:11 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311180147.hAI1lBhx080768@xorpc.icir.org> Date: Mon, 17 Nov 2003 17:47:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/Xif/ util.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/Xif/ Changes by: hodson@xorpc.icir.org. 03/11/17 17:47:11 Modified files: xorp/xrl/scripts/Xif/: util.py Log message: Removing trailing whitespace in Xif.util.file_{write,append}_string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Mon Nov 17 17:47:44 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Nov 2003 17:48:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1mIpt072279 for ; Mon, 17 Nov 2003 17:48:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1mENs025470; Mon, 17 Nov 2003 17:48:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1m1iK018122; Mon, 17 Nov 2003 17:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAI1ljiK018097 for ; Mon, 17 Nov 2003 17:47:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1ljNs025464 for ; Mon, 17 Nov 2003 17:47:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAI1ljFw080802 for ; Mon, 17 Nov 2003 17:47:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAI1liJv080801; Mon, 17 Nov 2003 17:47:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311180147.hAI1liJv080801@xorpc.icir.org> Date: Mon, 17 Nov 2003 17:47:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc ...common_xif.hh ...coord_xif.cc ...coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_ifmgr_client_xif.cc ...fea_ifmgr_client_xif.hh ...fea_ifmgr_mirror_xif.cc ...fea_ifmgr_mirror_xif.hh ...fea_ifmgr_replicator_xif.cc ...fea_ifmgr_replicator_xif.hh ...fea_ifmgr_xif.cc ...fea_ifmgr_xif.hh ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...finder_client_xif.cc ...finder_client_xif.hh ...finder_event_notifier_xif.cc ...finder_event_notifier_xif.hh ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh ...finder_xif.cc ...finder_xif.hh ...fti_xif.cc ...fti_xif.hh ...mfea_client_xif.cc ...mfea_client_xif.hh! ...mfea_x! if.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...pim_xif.hh ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rib_xif.hh ...rtrmgr_client_xif.cc ...rtrmgr_client_xif.hh ...rtrmgr_xif.cc ...rtrmgr_xif.hh ...socket4_locator_xif.cc ...socket4_locator_xif.hh ...socket4_user_xif.cc ...socket4_user_xif.hh ...socket4_xif.cc ...socket4_xif.hh ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh ...xorp_if_mib_xif.cc ...xorp_if_mib_xif.hh xorp/xrl/targets/ bgp.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_base.hh ...fea.xrls ...fea_base.cc ...fea_base.hh ...fea_ifmgr_mirror_base.cc ...fea_ifmgr_mirror_base.hh .! ..finder.xrls ...finder_base.cc ...finder_base.hh ...finder! _client_ Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/11/17 17:47:44 Modified files: xorp/xrl/interfaces/: bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator_xif.cc fea_ifmgr_replicator_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh socket4_locator_xif.cc socket4_locator_xif.hh socket4_user_xif.cc socket4_user_xif.hh socket4_xif.cc socket4_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp_if_mib_xif.cc xorp_if_mib_xif.hh xorp/xrl/targets/: bgp.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh finder.xrls finder_base.cc finder_base.hh finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh rip4.xrls rip4_base.cc rip4_base.hh rip6_base.cc rip6_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh test.xrls test_base.cc test_base.hh test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh test_finder_events_base.cc test_finder_events_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh_base.cc xorpsh_base.hh Log message: Re-generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 15:03:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 15:04:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN4Gpt097833 for ; Tue, 18 Nov 2003 15:04:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN4CNs037814; Tue, 18 Nov 2003 15:04:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAIN42iK011128; Tue, 18 Nov 2003 15:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAIN3wiK011110 for ; Tue, 18 Nov 2003 15:03:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN3wNs037808 for ; Tue, 18 Nov 2003 15:03:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN3wFw019151 for ; Tue, 18 Nov 2003 15:03:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAIN3wVo019150; Tue, 18 Nov 2003 15:03:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311182303.hAIN3wVo019150@xorpc.icir.org> Date: Tue, 18 Nov 2003 15:03:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc ...task.hh ...test_sample_config.cc xorp/etc/templates/ bgp.tp fea.tp ospf.tp rib.tp snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 03/11/18 15:03:58 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh task.cc task.hh test_sample_config.cc xorp/etc/templates/: bgp.tp fea.tp ospf.tp rib.tp snmp.tp Log message: Change the "%modinfo statusmethod" and "%modinfo: shutdownmethod" format: OLD: "%modinfo statusmethod " NEW: "%modinfo statusmethod " E.g., if now is the keyword "xrl", then is the specification of the XRL to perform the action. Thus, the particular XRL to perform the action is not hardcoded anymore to the rtrmgr source code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 15:06:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 15:07:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN7Lpt098468 for ; Tue, 18 Nov 2003 15:07:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN7INs037865; Tue, 18 Nov 2003 15:07:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAIN71iK011234; Tue, 18 Nov 2003 15:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAIN6WiK011220 for ; Tue, 18 Nov 2003 15:06:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN6WNs037857 for ; Tue, 18 Nov 2003 15:06:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAIN6VFw019241 for ; Tue, 18 Nov 2003 15:06:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAIN6VVi019240; Tue, 18 Nov 2003 15:06:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311182306.hAIN6VVi019240@xorpc.icir.org> Date: Tue, 18 Nov 2003 15:06:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/18 15:06:31 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the description for the following four subcommands: "%modinfo: startcommit" "%modinfo: endcommit" "%modinfo: statusmethod" "%modinfo: shutdownmethod" The update of the last two commands also reflect the new syntax that accepts an XRL specification. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 16:28:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 16:29:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0TApt014569 for ; Tue, 18 Nov 2003 16:29:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0T5Ns038560; Tue, 18 Nov 2003 16:29:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0T1iK012875; Tue, 18 Nov 2003 16:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0S8iK012862 for ; Tue, 18 Nov 2003 16:28:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0S8Ns038558 for ; Tue, 18 Nov 2003 16:28:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0S8Fw019819 for ; Tue, 18 Nov 2003 16:28:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ0S8a6019818; Tue, 18 Nov 2003 16:28:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190028.hAJ0S8a6019818@xorpc.icir.org> Date: Tue, 18 Nov 2003 16:28:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/18 16:28:07 Modified files: xorp/rtrmgr/: Makefile.am Log message: Clean-up some of the comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 16:31:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 16:32:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0WVpt015239 for ; Tue, 18 Nov 2003 16:32:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0WSNs038603; Tue, 18 Nov 2003 16:32:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0W0iK012965; Tue, 18 Nov 2003 16:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0VsiK012956 for ; Tue, 18 Nov 2003 16:31:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0VsNs038588 for ; Tue, 18 Nov 2003 16:31:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0VsFw019881 for ; Tue, 18 Nov 2003 16:31:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ0Vsgq019880; Tue, 18 Nov 2003 16:31:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190031.hAJ0Vsgq019880@xorpc.icir.org> Date: Tue, 18 Nov 2003 16:31:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/18 16:31:54 Modified files: xorp/rtrmgr/: TODO Log message: Move a TODO item to DONE section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 16:35:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 16:36:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0a9pt021604 for ; Tue, 18 Nov 2003 16:36:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0a5Ns038650; Tue, 18 Nov 2003 16:36:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0a1iK013079; Tue, 18 Nov 2003 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0ZPiK013061 for ; Tue, 18 Nov 2003 16:35:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0ZPNs038645 for ; Tue, 18 Nov 2003 16:35:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0ZPFw019957 for ; Tue, 18 Nov 2003 16:35:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ0ZPaN019956; Tue, 18 Nov 2003 16:35:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190035.hAJ0ZPaN019956@xorpc.icir.org> Date: Tue, 18 Nov 2003 16:35:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/11/18 16:35:25 Modified files: ./: RELEASE_NOTES Log message: * Add a template for the release notes for the next release * Add a release note for RTRMGR _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 16:48:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 16:50:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0oupt024590 for ; Tue, 18 Nov 2003 16:50:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0oqNs038827; Tue, 18 Nov 2003 16:50:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0n1iK013371; Tue, 18 Nov 2003 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ0mWiK013358 for ; Tue, 18 Nov 2003 16:48:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0mWNs038785 for ; Tue, 18 Nov 2003 16:48:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ0mVFw020077 for ; Tue, 18 Nov 2003 16:48:31 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ0mV7m020076; Tue, 18 Nov 2003 16:48:31 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311190048.hAJ0mV7m020076@xorpc.icir.org> Date: Tue, 18 Nov 2003 16:48:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/18 16:48:31 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: The BGP process often get a NO_FINDER response after sending an XRL to the RIB. Add an XLOG_FATAL call in order to try and figure out what went wrong. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 17:05:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 17:06:38 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ16cpt027884 for ; Tue, 18 Nov 2003 17:06:38 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ16YNs039000; Tue, 18 Nov 2003 17:06:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ161iK013748; Tue, 18 Nov 2003 17:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ15YiK013734 for ; Tue, 18 Nov 2003 17:05:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ15YNs038992 for ; Tue, 18 Nov 2003 17:05:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ15YFw020413 for ; Tue, 18 Nov 2003 17:05:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ15YOq020412; Tue, 18 Nov 2003 17:05:34 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311190105.hAJ15YOq020412@xorpc.icir.org> Date: Tue, 18 Nov 2003 17:05:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/18 17:05:34 Modified files: xorp/bgp/: bgp.cc rib_ipc_handler.hh Log message: Add a busy method to the rip_ipc_handler so that the destructor in BGP can use this as an indicator that all routes have been removed from the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 17:03:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 17:07:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ17opt028133 for ; Tue, 18 Nov 2003 17:07:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ17kNs039010; Tue, 18 Nov 2003 17:07:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ141iK013690; Tue, 18 Nov 2003 17:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ13diK013677 for ; Tue, 18 Nov 2003 17:03:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ13dNs038962 for ; Tue, 18 Nov 2003 17:03:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ13dFw020257 for ; Tue, 18 Nov 2003 17:03:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ13d6Z020256; Tue, 18 Nov 2003 17:03:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190103.hAJ13d6Z020256@xorpc.icir.org> Date: Tue, 18 Nov 2003 17:03:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.cc xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/18 17:03:39 Modified files: xorp/fea/: xrl_mfea_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.cc xorp/pim/: xrl_pim_node.cc Log message: Simplify the address family verification _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 17:32:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 17:38:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ1cTpt034152 for ; Tue, 18 Nov 2003 17:38:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ1cPNs039296; Tue, 18 Nov 2003 17:38:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ1X1iK014266; Tue, 18 Nov 2003 17:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ1WliK014254 for ; Tue, 18 Nov 2003 17:32:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ1WkNs039256 for ; Tue, 18 Nov 2003 17:32:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ1WkFw021147 for ; Tue, 18 Nov 2003 17:32:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ1WkZe021146; Tue, 18 Nov 2003 17:32:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190132.hAJ1WkZe021146@xorpc.icir.org> Date: Tue, 18 Nov 2003 17:32:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/11/18 17:32:46 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: Remove "#ifdef HAVE_IPV6" and replace "switch(family())" with calls to "is_ipv4()" and "is_ipv6()". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 22:46:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 22:49:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6n4pt091327 for ; Tue, 18 Nov 2003 22:49:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6n1Ns041604; Tue, 18 Nov 2003 22:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ6l1iK018825; Tue, 18 Nov 2003 22:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ6l0iK018816 for ; Tue, 18 Nov 2003 22:47:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6kxNs041600 for ; Tue, 18 Nov 2003 22:46:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6kxFw023188 for ; Tue, 18 Nov 2003 22:46:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ6kxdG023187; Tue, 18 Nov 2003 22:46:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190646.hAJ6kxdG023187@xorpc.icir.org> Date: Tue, 18 Nov 2003 22:46:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy y.boot_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/18 22:46:59 Modified files: xorp/rtrmgr/: boot.yy y.boot_tab.cc Log message: * Add strncpy() NUL termination * Formatting nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Tue Nov 18 22:45:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Nov 2003 23:48:52 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ7mqpt002733 for ; Tue, 18 Nov 2003 23:48:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ7mmNs042030; Tue, 18 Nov 2003 23:48:48 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ6k1iK018803; Tue, 18 Nov 2003 22:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJ6j4iK018783 for ; Tue, 18 Nov 2003 22:45:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6j4Ns041568 for ; Tue, 18 Nov 2003 22:45:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJ6j4Fw023107 for ; Tue, 18 Nov 2003 22:45:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJ6j3sK023106; Tue, 18 Nov 2003 22:45:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311190645.hAJ6j3sK023106@xorpc.icir.org> Date: Tue, 18 Nov 2003 22:45:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/18 22:45:03 Modified files: xorp/rtrmgr/: boot.ll Log message: Formatting nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:29 2005 Subject: No subject Wed Nov 19 15:02:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 15:05:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN5Mpt096103 for ; Wed, 19 Nov 2003 15:05:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN5INs051641; Wed, 19 Nov 2003 15:05:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN31iK008013; Wed, 19 Nov 2003 15:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN2DiK007929 for ; Wed, 19 Nov 2003 15:02:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN2DNs051615 for ; Wed, 19 Nov 2003 15:02:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN2DFw059629 for ; Wed, 19 Nov 2003 15:02:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJN2DoC059628; Wed, 19 Nov 2003 15:02:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311192302.hAJN2DoC059628@xorpc.icir.org> Date: Wed, 19 Nov 2003 15:02:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.hh template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 15:02:12 Modified files: xorp/rtrmgr/: template_tree_node.hh template_tree_node.cc Log message: Add two new methods to TemplateTreeNode: expand_variable() and expand_expression() which try to expand a variable using the default template values. Those methods are similar to the corresponding methods in the ConfigTreeNode class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 15:04:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 15:05:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN5Opt096118 for ; Wed, 19 Nov 2003 15:05:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN5KNs051644; Wed, 19 Nov 2003 15:05:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN51iK008099; Wed, 19 Nov 2003 15:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN4qiK008088 for ; Wed, 19 Nov 2003 15:04:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN4qNs051619 for ; Wed, 19 Nov 2003 15:04:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN4qFw059703 for ; Wed, 19 Nov 2003 15:04:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJN4qOR059702; Wed, 19 Nov 2003 15:04:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311192304.hAJN4qOR059702@xorpc.icir.org> Date: Wed, 19 Nov 2003 15:04:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 15:04:52 Modified files: xorp/rtrmgr/: template_commands.hh template_commands.cc Log message: Change method XrlAction::expand_xrl_variables(const ConfigTreeNode& ctn) to a template that can work with ConfigTreeNode or TemplateTreeNode as an argument. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 15:08:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 15:09:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN9Xpt097157 for ; Wed, 19 Nov 2003 15:09:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN9UNs051666; Wed, 19 Nov 2003 15:09:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN91iK008169; Wed, 19 Nov 2003 15:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJN8PiK008155 for ; Wed, 19 Nov 2003 15:08:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN8PNs051659 for ; Wed, 19 Nov 2003 15:08:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJN8PFw059796 for ; Wed, 19 Nov 2003 15:08:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJN8PAb059795; Wed, 19 Nov 2003 15:08:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311192308.hAJN8PAb059795@xorpc.icir.org> Date: Wed, 19 Nov 2003 15:08:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 15:08:25 Modified files: xorp/rtrmgr/: task.cc Log message: Change XrlStatusValidation::validate() and and XrlShutdown::shutdown() such that if they fail to expand the XRL by using the configuration tree, then they try to expand it by using the template tree. This fixes the problem of starting modules that are not explicitly in the configuration file (e.g., the rib which the bgp module depends on). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 15:56:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 15:57:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJNvKpt008820 for ; Wed, 19 Nov 2003 15:57:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJNvGNs052100; Wed, 19 Nov 2003 15:57:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJNv1iK009087; Wed, 19 Nov 2003 15:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAJNu3iK009069 for ; Wed, 19 Nov 2003 15:56:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJNu3Ns052092 for ; Wed, 19 Nov 2003 15:56:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAJNu2Fw060315 for ; Wed, 19 Nov 2003 15:56:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAJNu21O060314; Wed, 19 Nov 2003 15:56:02 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200311192356.hAJNu21O060314@xorpc.icir.org> Date: Wed, 19 Nov 2003 15:56:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/11/19 15:56:02 Modified files: xorp/bgp/: bgp.cc Log message: When BGP is shutting down in the destructor in two places it waits for there to be no more activity on the XrlRouter. Only print one message if we get stuck in an infinite loop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 16:39:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 16:45:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0j5pt019969 for ; Wed, 19 Nov 2003 16:45:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0j2Ns052526; Wed, 19 Nov 2003 16:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK0e1iK009930; Wed, 19 Nov 2003 16:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK0driK009921 for ; Wed, 19 Nov 2003 16:39:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0drNs052478 for ; Wed, 19 Nov 2003 16:39:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0drFw060817 for ; Wed, 19 Nov 2003 16:39:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK0drbR060816; Wed, 19 Nov 2003 16:39:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200039.hAK0drbR060816@xorpc.icir.org> Date: Wed, 19 Nov 2003 16:39:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.hh cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 16:39:52 Modified files: xorp/rtrmgr/: cli.hh cli.cc Log message: Editorials: - replace assert() with XLOG_ASSERT() - replace printf() with cli_print() or debug_msg() - cli_print() string arguments simplification - XORP coding style adjustments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 16:46:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 16:47:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0lDpt020490 for ; Wed, 19 Nov 2003 16:47:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0l9Ns052556; Wed, 19 Nov 2003 16:47:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK0l1iK010075; Wed, 19 Nov 2003 16:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK0kZiK010059 for ; Wed, 19 Nov 2003 16:46:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0kZNs052549 for ; Wed, 19 Nov 2003 16:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK0kZFw060930 for ; Wed, 19 Nov 2003 16:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK0kZTD060929; Wed, 19 Nov 2003 16:46:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200046.hAK0kZTD060929@xorpc.icir.org> Date: Wed, 19 Nov 2003 16:46:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.hh cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/11/19 16:46:35 Modified files: xorp/cli/: cli_node.hh cli_node.cc Log message: Rename CliNode::enable_stdio_access() to add_stdio_client() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 17:06:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 17:07:59 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK17xpt025491 for ; Wed, 19 Nov 2003 17:07:59 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK17uNs052745; Wed, 19 Nov 2003 17:07:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK171iK010534; Wed, 19 Nov 2003 17:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK16JiK010515 for ; Wed, 19 Nov 2003 17:06:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK16JNs052737 for ; Wed, 19 Nov 2003 17:06:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK16JFw061091 for ; Wed, 19 Nov 2003 17:06:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK16Ju1061090; Wed, 19 Nov 2003 17:06:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200106.hAK16Ju1061090@xorpc.icir.org> Date: Wed, 19 Nov 2003 17:06:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/11/19 17:06:19 Modified files: xorp/cli/: cli_node.cc cli_node.hh Log message: Add new method CliNode::delete_stdio_client() that deletes a stdio CliClient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 18:24:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 18:25:45 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK2Pjpt044016 for ; Wed, 19 Nov 2003 18:25:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK2PfNs053399; Wed, 19 Nov 2003 18:25:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK2P1iK011831; Wed, 19 Nov 2003 18:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK2OUiK011821 for ; Wed, 19 Nov 2003 18:24:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK2OUNs053373 for ; Wed, 19 Nov 2003 18:24:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK2OUFw061555 for ; Wed, 19 Nov 2003 18:24:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK2OU4A061554; Wed, 19 Nov 2003 18:24:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200224.hAK2OU4A061554@xorpc.icir.org> Date: Wed, 19 Nov 2003 18:24:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 18:24:30 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 21:45:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 21:46:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5kDpt087591 for ; Wed, 19 Nov 2003 21:46:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5k9Ns054884; Wed, 19 Nov 2003 21:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK5k0iK014836; Wed, 19 Nov 2003 21:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK5jiiK014825 for ; Wed, 19 Nov 2003 21:45:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5jiNs054882 for ; Wed, 19 Nov 2003 21:45:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5jhFw062781 for ; Wed, 19 Nov 2003 21:45:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK5jh35062780; Wed, 19 Nov 2003 21:45:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200545.hAK5jh35062780@xorpc.icir.org> Date: Wed, 19 Nov 2003 21:45:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.hh cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 21:45:43 Modified files: xorp/rtrmgr/: cli.hh cli.cc Log message: * Add RouterCLI destructor * Some variables renaming (for clarity) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 21:52:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 21:58:55 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5wtpt090587 for ; Wed, 19 Nov 2003 21:58:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5wqNs054958; Wed, 19 Nov 2003 21:58:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK5r1iK014939; Wed, 19 Nov 2003 21:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK5q1iK014906 for ; Wed, 19 Nov 2003 21:52:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5q1Ns054932 for ; Wed, 19 Nov 2003 21:52:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK5q1Fw062887 for ; Wed, 19 Nov 2003 21:52:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK5q172062886; Wed, 19 Nov 2003 21:52:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200552.hAK5q172062886@xorpc.icir.org> Date: Wed, 19 Nov 2003 21:52:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ command_tree.hh command_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 21:52:01 Modified files: xorp/rtrmgr/: command_tree.hh command_tree.cc Log message: Editorials: * Few methods renaming in CommandTreeNode (for clarity): configtreenode() -> config_tree_node() templatetreenode() -> template_tree_node() * Replace assert() with XORP_ASSERT() * XORP coding style adjustments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 22:05:06 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 22:06:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK669pt092290 for ; Wed, 19 Nov 2003 22:06:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK665Ns055025; Wed, 19 Nov 2003 22:06:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK661iK015119; Wed, 19 Nov 2003 22:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK656iK015103 for ; Wed, 19 Nov 2003 22:05:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK656Ns055021 for ; Wed, 19 Nov 2003 22:05:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK656Fw063074 for ; Wed, 19 Nov 2003 22:05:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK656Mp063073; Wed, 19 Nov 2003 22:05:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200605.hAK656Mp063073@xorpc.icir.org> Date: Wed, 19 Nov 2003 22:05:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in conf_tree.cc conf_tree.hh conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh op_commands.cc op_commands.hh slave_conf_tree.cc slave_conf_tree.hh ...template_tree.cc ...template_tree.hh xorp/rtrmgr/ master_conf_tree_node.cc master_conf_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 22:05:06 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in conf_tree.cc conf_tree.hh conf_tree_node.cc master_conf_tree.cc master_conf_tree.hh op_commands.cc op_commands.hh slave_conf_tree.cc slave_conf_tree.hh template_tree.cc template_tree.hh Removed files: xorp/rtrmgr/: master_conf_tree_node.cc master_conf_tree_node.hh Log message: * Remove MasterConfigTreeNode, because it is not really needed * Few variables and methods renaming (for clarity and consistency): conffile -> config_file pathsegs -> path_segments path_segs -> path_segments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 22:37:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 22:41:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6fopt011830 for ; Wed, 19 Nov 2003 22:41:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6fkNs055262; Wed, 19 Nov 2003 22:41:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK6c1iK015498; Wed, 19 Nov 2003 22:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK6bdiK015484 for ; Wed, 19 Nov 2003 22:37:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6bdNs055219 for ; Wed, 19 Nov 2003 22:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6bdFw063487 for ; Wed, 19 Nov 2003 22:37:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK6bd0I063486; Wed, 19 Nov 2003 22:37:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200637.hAK6bd0I063486@xorpc.icir.org> Date: Wed, 19 Nov 2003 22:37:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh master_conf_tree.cc slave_conf_tree.cc slave_conf_tree.hh template_tree.cc template_tree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 22:37:39 Modified files: xorp/rtrmgr/: cli.cc command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh master_conf_tree.cc slave_conf_tree.cc slave_conf_tree.hh template_tree.cc template_tree.hh Log message: Rename (for consistency) methods root() to root_node() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Wed Nov 19 22:49:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Nov 2003 22:50:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6oVpt013838 for ; Wed, 19 Nov 2003 22:50:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6oRNs055323; Wed, 19 Nov 2003 22:50:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK6o0iK015631; Wed, 19 Nov 2003 22:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAK6nviK015621 for ; Wed, 19 Nov 2003 22:49:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6nuNs055299 for ; Wed, 19 Nov 2003 22:49:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAK6nuFw063576 for ; Wed, 19 Nov 2003 22:49:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAK6nuvv063575; Wed, 19 Nov 2003 22:49:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311200649.hAK6nuvv063575@xorpc.icir.org> Date: Wed, 19 Nov 2003 22:49:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.cc conf_tree.hh template_tree.cc template_tree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/19 22:49:56 Modified files: xorp/rtrmgr/: conf_tree.cc conf_tree.hh template_tree.cc template_tree.hh Log message: change _segment_lengths type from "list" to "list" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Thu Nov 20 11:33:35 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Nov 2003 11:34:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKJY8pt078997 for ; Thu, 20 Nov 2003 11:34:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKJY5Ns063274; Thu, 20 Nov 2003 11:34:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAKJY1iK028919; Thu, 20 Nov 2003 11:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAKJXZiK028890 for ; Thu, 20 Nov 2003 11:33:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKJXZNs063271 for ; Thu, 20 Nov 2003 11:33:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKJXZFw027459 for ; Thu, 20 Nov 2003 11:33:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAKJXZI0027458; Thu, 20 Nov 2003 11:33:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311201933.hAKJXZI0027458@xorpc.icir.org> Date: Thu, 20 Nov 2003 11:33:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/20 11:33:35 Modified files: xorp/rtrmgr/: template_commands.cc Log message: Add missing "const" in the explicit template instantiation of XrlAction::expand_xrl_variables() for classes ConfigTreeNode and TemplateTreeNode. gcc-3.3.1 didn't spot the problem, but gcc-2.95.x found it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Thu Nov 20 12:31:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Nov 2003 12:33:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKKXLpt092996 for ; Thu, 20 Nov 2003 12:33:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKKXINs063910; Thu, 20 Nov 2003 12:33:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAKKW1iK000480; Thu, 20 Nov 2003 12:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAKKVdiK000471 for ; Thu, 20 Nov 2003 12:31:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKKVcNs063898 for ; Thu, 20 Nov 2003 12:31:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAKKVcFw042778 for ; Thu, 20 Nov 2003 12:31:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAKKVcxu042777; Thu, 20 Nov 2003 12:31:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311202031.hAKKVcxu042777@xorpc.icir.org> Date: Thu, 20 Nov 2003 12:31:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ command_tree.cc conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/20 12:31:38 Modified files: xorp/rtrmgr/: command_tree.cc conf_tree.cc Log message: Stylistic nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Thu Nov 20 18:05:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Nov 2003 18:07:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL275pt070842 for ; Thu, 20 Nov 2003 18:07:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL271Ns067297; Thu, 20 Nov 2003 18:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL261iK007625; Thu, 20 Nov 2003 18:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL25QiK007610 for ; Thu, 20 Nov 2003 18:05:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL25PNs067291 for ; Thu, 20 Nov 2003 18:05:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL25PFw095158 for ; Thu, 20 Nov 2003 18:05:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAL25PFn095157; Thu, 20 Nov 2003 18:05:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311210205.hAL25PFn095157@xorpc.icir.org> Date: Thu, 20 Nov 2003 18:05:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.hh conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/20 18:05:25 Modified files: xorp/rtrmgr/: conf_tree_node.hh conf_tree_node.cc Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Thu Nov 20 18:06:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Nov 2003 18:12:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2C8pt072069 for ; Thu, 20 Nov 2003 18:12:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2C5Ns067352; Thu, 20 Nov 2003 18:12:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL271iK007668; Thu, 20 Nov 2003 18:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL264iK007636 for ; Thu, 20 Nov 2003 18:06:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL264Ns067293 for ; Thu, 20 Nov 2003 18:06:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL263Fw095193 for ; Thu, 20 Nov 2003 18:06:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAL263b2095192; Thu, 20 Nov 2003 18:06:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311210206.hAL263b2095192@xorpc.icir.org> Date: Thu, 20 Nov 2003 18:06:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/20 18:06:03 Modified files: xorp/rtrmgr/: config.boot config.boot.sample Log message: Small editorial nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Thu Nov 20 18:14:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Nov 2003 18:20:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2K4pt074059 for ; Thu, 20 Nov 2003 18:20:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2K1Ns067400; Thu, 20 Nov 2003 18:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL2F0iK007792; Thu, 20 Nov 2003 18:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAL2ETiK007781 for ; Thu, 20 Nov 2003 18:14:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2ETNs067359 for ; Thu, 20 Nov 2003 18:14:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAL2ETFw095282 for ; Thu, 20 Nov 2003 18:14:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAL2ETsh095281; Thu, 20 Nov 2003 18:14:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311210214.hAL2ETsh095281@xorpc.icir.org> Date: Thu, 20 Nov 2003 18:14:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/20 18:14:29 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Minor editorials. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Fri Nov 21 11:35:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 11:36:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJaLpt010538 for ; Fri, 21 Nov 2003 11:36:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJaINs077512; Fri, 21 Nov 2003 11:36:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALJa1iK025266; Fri, 21 Nov 2003 11:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALJZuiK025256 for ; Fri, 21 Nov 2003 11:35:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJZuNs077510 for ; Fri, 21 Nov 2003 11:35:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJZtFw053868 for ; Fri, 21 Nov 2003 11:35:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hALJZtTZ053867; Fri, 21 Nov 2003 11:35:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311211935.hALJZtTZ053867@xorpc.icir.org> Date: Fri, 21 Nov 2003 11:35:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.hh master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 11:35:55 Modified files: xorp/rtrmgr/: master_conf_tree.hh master_conf_tree.cc Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Fri Nov 21 11:37:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 11:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJd1pt011075 for ; Fri, 21 Nov 2003 11:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJcvNs077526; Fri, 21 Nov 2003 11:38:57 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALJc0iK025327; Fri, 21 Nov 2003 11:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALJbtiK025315 for ; Fri, 21 Nov 2003 11:37:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJbsNs077520 for ; Fri, 21 Nov 2003 11:37:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hALJbsFw053908 for ; Fri, 21 Nov 2003 11:37:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hALJbsNi053907; Fri, 21 Nov 2003 11:37:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311211937.hALJbsNi053907@xorpc.icir.org> Date: Fri, 21 Nov 2003 11:37:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 11:37:54 Modified files: xorp/rtrmgr/: TODO Log message: Add two TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Fri Nov 21 12:11:33 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 12:12:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hALKCGpt019074 for ; Fri, 21 Nov 2003 12:12:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALKCDNs077888; Fri, 21 Nov 2003 12:12:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALKC1iK026183; Fri, 21 Nov 2003 12:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hALKBYiK026160 for ; Fri, 21 Nov 2003 12:11:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hALKBYNs077884 for ; Fri, 21 Nov 2003 12:11:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hALKBXFw063214 for ; Fri, 21 Nov 2003 12:11:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hALKBXYj063212; Fri, 21 Nov 2003 12:11:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311212011.hALKBXYj063212@xorpc.icir.org> Date: Fri, 21 Nov 2003 12:11:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 12:11:33 Modified files: xorp/rtrmgr/: conf_tree_node.cc module_command.cc module_command.hh task.cc task.hh Log message: * Renaming: - modname -> module_name - ModuleCommand::name() -> module_name() - ModuleCommand::path() -> module_exec_path() * Editorial nitlets to module_command.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:30 2005 Subject: No subject Fri Nov 21 16:15:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 16:16:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0GApt078844 for ; Fri, 21 Nov 2003 16:16:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0G6Ns080101; Fri, 21 Nov 2003 16:16:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0G1iK001109; Fri, 21 Nov 2003 16:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0F8iK001086 for ; Fri, 21 Nov 2003 16:15:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0F8Ns080093 for ; Fri, 21 Nov 2003 16:15:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0F8Fw020150 for ; Fri, 21 Nov 2003 16:15:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAM0F8vr020149; Fri, 21 Nov 2003 16:15:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311220015.hAM0F8vr020149@xorpc.icir.org> Date: Fri, 21 Nov 2003 16:15:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 16:15:08 Modified files: xorp/rtrmgr/: module_command.cc Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Fri Nov 21 16:17:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 16:18:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0ILpt079369 for ; Fri, 21 Nov 2003 16:18:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0IINs080125; Fri, 21 Nov 2003 16:18:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0I1iK001165; Fri, 21 Nov 2003 16:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0HtiK001144 for ; Fri, 21 Nov 2003 16:17:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0HtNs080119 for ; Fri, 21 Nov 2003 16:17:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0HtFw020279 for ; Fri, 21 Nov 2003 16:17:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAM0HtAZ020278; Fri, 21 Nov 2003 16:17:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311220017.hAM0HtAZ020278@xorpc.icir.org> Date: Fri, 21 Nov 2003 16:17:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_module_manager.hh slave_module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 16:17:55 Modified files: xorp/rtrmgr/: slave_module_manager.hh slave_module_manager.cc Log message: * Remove ModuleManager::module_exists(), because it is not used * Editorial nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Fri Nov 21 16:17:15 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 16:23:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0N5pt080476 for ; Fri, 21 Nov 2003 16:23:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0N1Ns080168; Fri, 21 Nov 2003 16:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0I1iK001153; Fri, 21 Nov 2003 16:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM0HFiK001133 for ; Fri, 21 Nov 2003 16:17:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0HFNs080115 for ; Fri, 21 Nov 2003 16:17:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM0HFFw020236 for ; Fri, 21 Nov 2003 16:17:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAM0HFZO020235; Fri, 21 Nov 2003 16:17:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311220017.hAM0HFZO020235@xorpc.icir.org> Date: Fri, 21 Nov 2003 16:17:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.hh module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 16:17:15 Modified files: xorp/rtrmgr/: module_manager.hh module_manager.cc Log message: * Add new enum Module::ModuleStatus and replace all #define MODULE_FOO with enumerated values. * Remove class ExecutionError, because it is not really needed. * Editorial nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Fri Nov 21 17:11:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Nov 2003 17:12:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM1COpt090148 for ; Fri, 21 Nov 2003 17:12:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM1CHNs080584; Fri, 21 Nov 2003 17:12:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM1C1iK002301; Fri, 21 Nov 2003 17:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAM1BViK002286 for ; Fri, 21 Nov 2003 17:11:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM1BVNs080572 for ; Fri, 21 Nov 2003 17:11:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAM1BVFw020726 for ; Fri, 21 Nov 2003 17:11:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAM1BVRZ020725; Fri, 21 Nov 2003 17:11:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200311220111.hAM1BVRZ020725@xorpc.icir.org> Date: Fri, 21 Nov 2003 17:11:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll boot.yy op_commands.ll op_commands.yy template.ll template.yy y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/11/21 17:11:31 Modified files: xorp/rtrmgr/: boot.ll boot.yy op_commands.ll op_commands.yy template.ll template.yy y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Mon Nov 24 10:13:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Nov 2003 10:17:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hAOIHoqI095154 for ; Mon, 24 Nov 2003 10:17:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAOIHkl8021717; Mon, 24 Nov 2003 10:17:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAOIE1qi003759; Mon, 24 Nov 2003 10:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hAOIDYqi003741 for ; Mon, 24 Nov 2003 10:13:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hAOIDYl8021661 for ; Mon, 24 Nov 2003 10:13:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAOIDY2e012031 for ; Mon, 24 Nov 2003 10:13:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAOIDYdc012030; Mon, 24 Nov 2003 10:13:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200311241813.hAOIDYdc012030@xorpc.icir.org> Date: Mon, 24 Nov 2003 10:13:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/11/24 10:13:34 Modified files: xorp/libxorp/: callback-gen.py callback.hh Log message: Fix typo in example. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Sun Nov 30 20:45:56 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Nov 2003 20:46:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB14k9qI038348 for ; Sun, 30 Nov 2003 20:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB14k5l8002824; Sun, 30 Nov 2003 20:46:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB14k1qi025150; Sun, 30 Nov 2003 20:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB14jvqi025141 for ; Sun, 30 Nov 2003 20:45:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB14jvl8002822 for ; Sun, 30 Nov 2003 20:45:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB14jv2e019607 for ; Sun, 30 Nov 2003 20:45:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB14jvfh019606; Sun, 30 Nov 2003 20:45:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312010445.hB14jvfh019606@xorpc.icir.org> Date: Sun, 30 Nov 2003 20:45:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/11/30 20:45:56 Modified files: xorp/pim/: TODO Log message: * Remove few TODO SPEC-related entries that are already done * Add a PMBR-related TODO entry * A bit of cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Tue Dec 2 0:15:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Dec 2003 00:16:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28G7qI090977 for ; Tue, 2 Dec 2003 00:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28G3l8017845; Tue, 2 Dec 2003 00:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB28G1qi024114; Tue, 2 Dec 2003 00:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB28Foqi024090 for ; Tue, 2 Dec 2003 00:15:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28Fol8017843 for ; Tue, 2 Dec 2003 00:15:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28Fo2e070042 for ; Tue, 2 Dec 2003 00:15:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB28Fox9070041; Tue, 2 Dec 2003 00:15:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312020815.hB28Fox9070041@xorpc.icir.org> Date: Tue, 2 Dec 2003 0:15:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/02 00:15:50 Modified files: xorp/pim/: TODO Log message: * Remove PIM spec-related TODO entries that were classified and sent to the PIM working group mailing list right before the I-D last-call. * Add few more TODO entries. * Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Tue Dec 2 0:38:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Dec 2003 00:39:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28d7qI094381 for ; Tue, 2 Dec 2003 00:39:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28d3l8018007; Tue, 2 Dec 2003 00:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB28d1qi024528; Tue, 2 Dec 2003 00:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB28c5qi024510 for ; Tue, 2 Dec 2003 00:38:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28c5l8018005 for ; Tue, 2 Dec 2003 00:38:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB28c52e075637 for ; Tue, 2 Dec 2003 00:38:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB28c5wG075636; Tue, 2 Dec 2003 00:38:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312020838.hB28c5wG075636@xorpc.icir.org> Date: Tue, 2 Dec 2003 0:38:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/tools/ show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: pavlin@xorpc.icir.org. 03/12/02 00:38:04 Modified files: xorp/rtrmgr/tools/: show_interfaces.cc show_interfaces.hh Log message: Editorial cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Tue Dec 2 1:39:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Dec 2003 01:40:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB29eCqI003650 for ; Tue, 2 Dec 2003 01:40:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB29e7l8018477; Tue, 2 Dec 2003 01:40:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB29e1qi025503; Tue, 2 Dec 2003 01:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB29d2qi025487 for ; Tue, 2 Dec 2003 01:39:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB29d2l8018453 for ; Tue, 2 Dec 2003 01:39:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB29d12e091049 for ; Tue, 2 Dec 2003 01:39:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB29d1je091048; Tue, 2 Dec 2003 01:39:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312020939.hB29d1je091048@xorpc.icir.org> Date: Tue, 2 Dec 2003 1:39:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc module_command.cc module_command.hh op_commands.cc op_commands.hh path_segment.hh popen.cc popen.hh ...randomness.cc ...randomness.hh ...slave_conf_tree.cc ...slave_conf_tree.hh ...slave_conf_tree_node.cc ...slave_conf_tree_node.hh ...slave_module_manager.cc ...slave_module_manager.hh ...task.cc ...task.hh ...template.yy ...template_commands.cc ...template_commands.hh ...template_tree.cc ...template_tree.hh ...template_tree_node.cc ...template_tree_node.hh ...test_module_manager.cc ...test_sample_config.cc ...test_templates.cc ...unexpanded_xrl.cc ...unexpanded_xrl.hh ...userdb.cc ...userdb.hh ...util.cc ...util.hh ...xorp_client.cc ...xorp_client.hh ...xorpsh_main.cc ...xorpsh_main.hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh ...xrl_xorpsh_interface.cc ...! xrl_xorpsh_! interface.hh ...xrldb.cc ...xrldb.hh ...y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/02 01:39:01 Modified files: xorp/rtrmgr/: cli.cc conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc module_command.cc module_command.hh op_commands.cc op_commands.hh path_segment.hh popen.cc popen.hh randomness.cc randomness.hh slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh template.yy template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_module_manager.cc test_sample_config.cc test_templates.cc unexpanded_xrl.cc unexpanded_xrl.hh userdb.cc userdb.hh util.cc util.hh xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh y.tplt_tab.cc Log message: Editorial cleanup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Tue Dec 2 14:05:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Dec 2003 14:06:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB2M69qI020372 for ; Tue, 2 Dec 2003 14:06:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB2M65l8027017; Tue, 2 Dec 2003 14:06:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB2M61qi009989; Tue, 2 Dec 2003 14:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB2M5Dqi009970 for ; Tue, 2 Dec 2003 14:05:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB2M5Dl8027010 for ; Tue, 2 Dec 2003 14:05:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB2M5D2e080597 for ; Tue, 2 Dec 2003 14:05:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB2M5DVM080584; Tue, 2 Dec 2003 14:05:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312022205.hB2M5DVM080584@xorpc.icir.org> Date: Tue, 2 Dec 2003 14:05:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/12/02 14:05:12 Modified files: ./: TODO Log message: Add a TODO entry: add "-ansi" and "-pedantic" flags to the gcc/g++ compilation flags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Tue Dec 2 16:17:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Dec 2003 16:18:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB30I9qI046416 for ; Tue, 2 Dec 2003 16:18:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB30I5l8028403; Tue, 2 Dec 2003 16:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB30I1qi012762; Tue, 2 Dec 2003 16:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB30HDqi012738 for ; Tue, 2 Dec 2003 16:17:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB30HDl8028391 for ; Tue, 2 Dec 2003 16:17:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB30HD2e003405 for ; Tue, 2 Dec 2003 16:17:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB30HDhq003404; Tue, 2 Dec 2003 16:17:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312030017.hB30HDhq003404@xorpc.icir.org> Date: Tue, 2 Dec 2003 16:17:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ randomness.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/02 16:17:13 Modified files: xorp/rtrmgr/: randomness.cc Log message: Add #include that got (indirectly) lost after some refactoring of header include files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Wed Dec 3 12:13:54 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Dec 2003 12:14:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KEEqI043245 for ; Wed, 3 Dec 2003 12:14:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KE7l8039823; Wed, 3 Dec 2003 12:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KE1qi003163; Wed, 3 Dec 2003 12:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KDuqi003147 for ; Wed, 3 Dec 2003 12:13:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KDtl8039821 for ; Wed, 3 Dec 2003 12:13:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KDt2e092062 for ; Wed, 3 Dec 2003 12:13:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB3KDtIu092061; Wed, 3 Dec 2003 12:13:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312032013.hB3KDtIu092061@xorpc.icir.org> Date: Wed, 3 Dec 2003 12:13:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/03 12:13:54 Modified files: xorp/rtrmgr/: TODO Log message: Add a non-urgent TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Wed Dec 3 12:27:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Dec 2003 12:28:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KS9qI045579 for ; Wed, 3 Dec 2003 12:28:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KS5l8039964; Wed, 3 Dec 2003 12:28:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KS1qi003435; Wed, 3 Dec 2003 12:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KRwqi003426 for ; Wed, 3 Dec 2003 12:27:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KRwl8039960 for ; Wed, 3 Dec 2003 12:27:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KRv2e097169 for ; Wed, 3 Dec 2003 12:27:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB3KRv7E097168; Wed, 3 Dec 2003 12:27:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312032027.hB3KRv7E097168@xorpc.icir.org> Date: Wed, 3 Dec 2003 12:27:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/03 12:27:57 Modified files: xorp/rtrmgr/: main_rtrmgr.cc xorpsh_main.cc Log message: Display the default config values right after printing the usage. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Wed Dec 3 12:29:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Dec 2003 12:30:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KU8qI046007 for ; Wed, 3 Dec 2003 12:30:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KU5l8039982; Wed, 3 Dec 2003 12:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KU1qi003476; Wed, 3 Dec 2003 12:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KTDqi003460 for ; Wed, 3 Dec 2003 12:29:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KTDl8039970 for ; Wed, 3 Dec 2003 12:29:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KTD2e097300 for ; Wed, 3 Dec 2003 12:29:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB3KTD9q097299; Wed, 3 Dec 2003 12:29:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312032029.hB3KTD9q097299@xorpc.icir.org> Date: Wed, 3 Dec 2003 12:29:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/03 12:29:13 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry to change the behavior of command-line option "-d" from "Display defaults" to "Enable debug output" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Wed Dec 3 12:44:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Dec 2003 12:45:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3Kj8qI048976 for ; Wed, 3 Dec 2003 12:45:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3Kj4l8040135; Wed, 3 Dec 2003 12:45:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3Kj0qi003763; Wed, 3 Dec 2003 12:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB3KiSqi003747 for ; Wed, 3 Dec 2003 12:44:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KiSl8040130 for ; Wed, 3 Dec 2003 12:44:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB3KiS2e099152 for ; Wed, 3 Dec 2003 12:44:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB3KiSZA099151; Wed, 3 Dec 2003 12:44:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312032044.hB3KiSZA099151@xorpc.icir.org> Date: Wed, 3 Dec 2003 12:44:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 03/12/03 12:44:28 Modified files: ./: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Wed Dec 3 23:20:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Dec 2003 23:21:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB47LGqI059862 for ; Wed, 3 Dec 2003 23:21:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB47LCl8045526; Wed, 3 Dec 2003 23:21:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB47L0qi014611; Wed, 3 Dec 2003 23:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB47K5qi014593 for ; Wed, 3 Dec 2003 23:20:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB47K5l8045501 for ; Wed, 3 Dec 2003 23:20:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB47K52e056841 for ; Wed, 3 Dec 2003 23:20:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB47K5uQ056840; Wed, 3 Dec 2003 23:20:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312040720.hB47K5uQ056840@xorpc.icir.org> Date: Wed, 3 Dec 2003 23:20:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in xorp/rip/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 03/12/03 23:20:04 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in xorp/rip/: Makefile.am Makefile.in Log message: Redefine the bin installation directory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Thu Dec 4 12:21:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Dec 2003 12:22:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KMBqI081775 for ; Thu, 4 Dec 2003 12:22:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KM6l8054040; Thu, 4 Dec 2003 12:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB4KM1qi029356; Thu, 4 Dec 2003 12:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB4KLcqi029344 for ; Thu, 4 Dec 2003 12:21:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KLcl8054035 for ; Thu, 4 Dec 2003 12:21:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KLc2e039773 for ; Thu, 4 Dec 2003 12:21:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB4KLcJp039772; Thu, 4 Dec 2003 12:21:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312042021.hB4KLcJp039772@xorpc.icir.org> Date: Thu, 4 Dec 2003 12:21:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/04 12:21:38 Modified files: xorp/rtrmgr/: xrl_rtrmgr_interface.cc Log message: Fix a typo: XRI -> XRL _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Thu Dec 4 12:27:12 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Dec 2003 12:28:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KS7qI082670 for ; Thu, 4 Dec 2003 12:28:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KS3l8054087; Thu, 4 Dec 2003 12:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB4KS1qi029460; Thu, 4 Dec 2003 12:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB4KRDqi029443 for ; Thu, 4 Dec 2003 12:27:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KRCl8054084 for ; Thu, 4 Dec 2003 12:27:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB4KRC2e043578 for ; Thu, 4 Dec 2003 12:27:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB4KRC7k043577; Thu, 4 Dec 2003 12:27:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312042027.hB4KRC7k043577@xorpc.icir.org> Date: Thu, 4 Dec 2003 12:27:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/04 12:27:12 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: If the _existence_commited flag for a module is not true, then add the module to the list of changed modules even if it may not have %create or %activate or %set commands anywhere in its template. This should fix the assert problem when we try to start a module, but its template doesn't contain XRLs for any of the above commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Thu Dec 4 19:17:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Dec 2003 19:18:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB53I7qI043548 for ; Thu, 4 Dec 2003 19:18:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB53I3l8058163; Thu, 4 Dec 2003 19:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB53I0qi007417; Thu, 4 Dec 2003 19:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB53Hkqi007408 for ; Thu, 4 Dec 2003 19:17:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB53Hkl8058161 for ; Thu, 4 Dec 2003 19:17:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB53Hk2e096822 for ; Thu, 4 Dec 2003 19:17:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB53Hkbc096821; Thu, 4 Dec 2003 19:17:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312050317.hB53Hkbc096821@xorpc.icir.org> Date: Thu, 4 Dec 2003 19:17:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/04 19:17:46 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: * Bugfix in delete_subtree_silently(): Call "delete this" for this object only if it is not the root node, because the root node is not allocated by "new". * Set commited_modification_time to TimeVal::ZERO() in ConfigTreeNode() constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Thu Dec 4 22:25:26 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Dec 2003 22:26:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56QCqI071252 for ; Thu, 4 Dec 2003 22:26:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56Q8l8059573; Thu, 4 Dec 2003 22:26:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB56Q6qi010090; Thu, 4 Dec 2003 22:26:06 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB56PQqi010066 for ; Thu, 4 Dec 2003 22:25:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56PQl8059571 for ; Thu, 4 Dec 2003 22:25:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56PQ2e097906 for ; Thu, 4 Dec 2003 22:25:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB56PQtm097905; Thu, 4 Dec 2003 22:25:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312050625.hB56PQtm097905@xorpc.icir.org> Date: Thu, 4 Dec 2003 22:25:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/04 22:25:26 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:31 2005 Subject: No subject Thu Dec 4 22:25:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Dec 2003 22:26:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56QXqI071331 for ; Thu, 4 Dec 2003 22:26:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56QTl8059583; Thu, 4 Dec 2003 22:26:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB56Q0qi010077; Thu, 4 Dec 2003 22:26:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB56P5qi010060 for ; Thu, 4 Dec 2003 22:25:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56P4l8059548 for ; Thu, 4 Dec 2003 22:25:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB56P42e097854 for ; Thu, 4 Dec 2003 22:25:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB56P4RO097853; Thu, 4 Dec 2003 22:25:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312050625.hB56P4RO097853@xorpc.icir.org> Date: Thu, 4 Dec 2003 22:25:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/04 22:25:04 Modified files: xorp/rtrmgr/: module_manager.cc Log message: * Add support for starting more than one module within the same binary (e.g., if more than one modules have same "%modinfo: path" value). The basic idea is to create a multimap with all modules that have the same binary execution path, and then start/stop the binary depending on whether another module with the same binary is already running. * Improve the management of starting/stopping a binary by properly deleting the corresponding mapping entries if a child process is terminated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Fri Dec 5 16:10:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Dec 2003 16:11:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60BBqI031838 for ; Fri, 5 Dec 2003 16:11:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60B7l8070766; Fri, 5 Dec 2003 16:11:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60B1qi028116; Fri, 5 Dec 2003 16:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60A2qi028094 for ; Fri, 5 Dec 2003 16:10:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60A2l8070736 for ; Fri, 5 Dec 2003 16:10:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60A22e026664 for ; Fri, 5 Dec 2003 16:10:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB60A2uQ026663; Fri, 5 Dec 2003 16:10:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312060010.hB60A2uQ026663@xorpc.icir.org> Date: Fri, 5 Dec 2003 16:10:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/05 16:10:02 Modified files: xorp/fea/: mfea_node.hh mfea_node.cc Log message: * Add two new methods: - MfeaNode::has_pending_down_units() which tests whether the MfeaNode has units that are in pending-down stage. Currently, for all practical purposes it returns false. - MfeaNode::node_status() that returns the node status. * If we call MfeaNode::stop(), then set the node status to PROC_SHUTDOWN. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Fri Dec 5 16:11:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Dec 2003 16:12:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60C7qI031987 for ; Fri, 5 Dec 2003 16:12:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60C3l8070772; Fri, 5 Dec 2003 16:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60C1qi028148; Fri, 5 Dec 2003 16:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60BIqi028129 for ; Fri, 5 Dec 2003 16:11:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60BHl8070768 for ; Fri, 5 Dec 2003 16:11:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60BH2e026718 for ; Fri, 5 Dec 2003 16:11:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB60BHhG026717; Fri, 5 Dec 2003 16:11:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312060011.hB60BHhG026717@xorpc.icir.org> Date: Fri, 5 Dec 2003 16:11:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/05 16:11:17 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: Use MfeaNode::node_status() to return the status when we receive common/0.1/get_status XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Fri Dec 5 16:19:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Dec 2003 16:20:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60K6qI033171 for ; Fri, 5 Dec 2003 16:20:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60K3l8070828; Fri, 5 Dec 2003 16:20:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60K1qi028282; Fri, 5 Dec 2003 16:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB60JDqi028270 for ; Fri, 5 Dec 2003 16:19:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60JDl8070821 for ; Fri, 5 Dec 2003 16:19:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB60JD2e026783 for ; Fri, 5 Dec 2003 16:19:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB60JDci026782; Fri, 5 Dec 2003 16:19:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312060019.hB60JDci026782@xorpc.icir.org> Date: Fri, 5 Dec 2003 16:19:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_parser.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/12/05 16:19:13 Modified files: xorp/libxipc/: xrl_parser.cc Log message: Fix buffer overflow. Spotted by and fix proposed by: Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Mon Dec 8 12:20:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Dec 2003 12:21:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KLEqI048362 for ; Mon, 8 Dec 2003 12:21:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KLAl8008891; Mon, 8 Dec 2003 12:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB8KL1qi024318; Mon, 8 Dec 2003 12:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB8KKbqi024301 for ; Mon, 8 Dec 2003 12:20:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KKbl8008881 for ; Mon, 8 Dec 2003 12:20:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KKa2e084550 for ; Mon, 8 Dec 2003 12:20:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB8KKan4084549; Mon, 8 Dec 2003 12:20:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312082020.hB8KKan4084549@xorpc.icir.org> Date: Mon, 8 Dec 2003 12:20:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/08 12:20:36 Modified files: xorp/mld6igmp/: mld6igmp_node.cc Log message: Set the Mld6igmpNode status to PROC_SHUTDOWN if we call stop() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Mon Dec 8 12:21:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Dec 2003 12:22:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KM7qI048511 for ; Mon, 8 Dec 2003 12:22:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KM3l8008903; Mon, 8 Dec 2003 12:22:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB8KM1qi024350; Mon, 8 Dec 2003 12:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB8KL4qi024319 for ; Mon, 8 Dec 2003 12:21:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KL3l8008889 for ; Mon, 8 Dec 2003 12:21:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB8KL32e084610 for ; Mon, 8 Dec 2003 12:21:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB8KL3N9084609; Mon, 8 Dec 2003 12:21:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312082021.hB8KL3N9084609@xorpc.icir.org> Date: Mon, 8 Dec 2003 12:21:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/08 12:21:03 Modified files: xorp/pim/: pim_node.cc Log message: Set the PimNode status to PROC_SHUTDOWN if we call stop() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Tue Dec 9 11:38:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Dec 2003 11:39:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9JdAqI066616 for ; Tue, 9 Dec 2003 11:39:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jd5l8022518; Tue, 9 Dec 2003 11:39:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB9Jd1qi018303; Tue, 9 Dec 2003 11:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB9Jc2qi018272 for ; Tue, 9 Dec 2003 11:38:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jc2l8022495 for ; Tue, 9 Dec 2003 11:38:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jc22e013239 for ; Tue, 9 Dec 2003 11:38:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB9Jc2Kr013238; Tue, 9 Dec 2003 11:38:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312091938.hB9Jc2Kr013238@xorpc.icir.org> Date: Tue, 9 Dec 2003 11:38:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ socket4.xif socket4_xif.cc socket4_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/12/09 11:38:02 Modified files: xorp/xrl/interfaces/: socket4.xif socket4_xif.cc socket4_xif.hh Log message: Add ttl argument to multicast socket creation method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Tue Dec 9 11:38:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Dec 2003 11:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9JdCqI066631 for ; Tue, 9 Dec 2003 11:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jd7l8022520; Tue, 9 Dec 2003 11:39:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB9Jd5qi018320; Tue, 9 Dec 2003 11:39:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hB9Jcdqi018285 for ; Tue, 9 Dec 2003 11:38:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jcdl8022501 for ; Tue, 9 Dec 2003 11:38:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hB9Jcd2e013279 for ; Tue, 9 Dec 2003 11:38:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hB9Jcd3R013278; Tue, 9 Dec 2003 11:38:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312091938.hB9Jcd3R013278@xorpc.icir.org> Date: Tue, 9 Dec 2003 11:38:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ socket4_user.xif socket4_user_xif.cc socket4_user_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 03/12/09 11:38:39 Modified files: xorp/xrl/interfaces/: socket4_user.xif socket4_user_xif.cc socket4_user_xif.hh Log message: Remove unused field from error_event (last_send_data_id). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 11:03:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 11:09:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAJ9WqI028471 for ; Wed, 10 Dec 2003 11:09:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAJ9Sl8036258; Wed, 10 Dec 2003 11:09:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAJ41qi013023; Wed, 10 Dec 2003 11:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAJ3Wqi013010 for ; Wed, 10 Dec 2003 11:03:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAJ3Wl8036181 for ; Wed, 10 Dec 2003 11:03:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAJ3W2e053709 for ; Wed, 10 Dec 2003 11:03:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAJ3WtY053708; Wed, 10 Dec 2003 11:03:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312101903.hBAJ3WtY053708@xorpc.icir.org> Date: Wed, 10 Dec 2003 11:03:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/10 11:03:32 Modified files: xorp/bgp/: socket.cc Log message: Minor reformatting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 13:57:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:03:39 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM3dqI062428 for ; Wed, 10 Dec 2003 14:03:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM3Xl8038057; Wed, 10 Dec 2003 14:03:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBALw1qi016680; Wed, 10 Dec 2003 13:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBALvpqi016669 for ; Wed, 10 Dec 2003 13:57:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBALvpl8037964 for ; Wed, 10 Dec 2003 13:57:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBALvp2e097487 for ; Wed, 10 Dec 2003 13:57:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBALvpdK097486; Wed, 10 Dec 2003 13:57:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102157.hBALvpdK097486@xorpc.icir.org> Date: Wed, 10 Dec 2003 13:57:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc cli_node.hh cli_node_net.cc xrl_cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/12/10 13:57:50 Modified files: xorp/cli/: cli_node.cc cli_node.hh cli_node_net.cc xrl_cli_node.cc Log message: * Add new method CliNode::sock_serv_close() that closes the socket we are listening for connections * Refactor CliNode::stop() to use sock_serv_close() * Few nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:01:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:09:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM9oqI063712 for ; Wed, 10 Dec 2003 14:09:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM9kl8038153; Wed, 10 Dec 2003 14:09:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAM21qi016782; Wed, 10 Dec 2003 14:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAM14qi016765 for ; Wed, 10 Dec 2003 14:01:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM14l8038029 for ; Wed, 10 Dec 2003 14:01:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM132e001630 for ; Wed, 10 Dec 2003 14:01:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAM120P001506; Wed, 10 Dec 2003 14:01:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102201.hBAM120P001506@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:01:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:01:02 Modified files: xorp/libxorp/: status_codes.h Log message: Add a new state PROC_DONE which is entered right after the shutdown procedure has completed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:06:28 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:12:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMC6qI064201 for ; Wed, 10 Dec 2003 14:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMC1l8038200; Wed, 10 Dec 2003 14:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAM70qi016920; Wed, 10 Dec 2003 14:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAM6Sqi016905 for ; Wed, 10 Dec 2003 14:06:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM6Sl8038104 for ; Wed, 10 Dec 2003 14:06:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAM6S2e003077 for ; Wed, 10 Dec 2003 14:06:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAM6SUA003076; Wed, 10 Dec 2003 14:06:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102206.hBAM6SUA003076@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:06:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:06:28 Modified files: xorp/fea/: mfea_node.cc Log message: * Refactor MfeaNode::stop() behavior: - If the node is down, then set its status to PROC_DONE, and return XORP_OK instead of XORP_ERROR. - After the shutdown process is completed, set the node status to PROC_DONE instead of PROC_SHUTDOWN. * Add an entry for PROC_DONE in MfeaNode::node_status() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:11:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:18:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMIpqI065581 for ; Wed, 10 Dec 2003 14:18:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMIkl8038295; Wed, 10 Dec 2003 14:18:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMC1qi017061; Wed, 10 Dec 2003 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMBTqi017046 for ; Wed, 10 Dec 2003 14:11:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMBTl8038186 for ; Wed, 10 Dec 2003 14:11:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMBT2e004177 for ; Wed, 10 Dec 2003 14:11:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMBTUS004176; Wed, 10 Dec 2003 14:11:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102211.hBAMBTUS004176@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:11:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:11:29 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Change the semantics of XrlMfeaVifManager::stop() : return XORP_OK if the node is already down. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:13:30 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:19:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMJ5qI065640 for ; Wed, 10 Dec 2003 14:19:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMJ1l8038297; Wed, 10 Dec 2003 14:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAME1qi017122; Wed, 10 Dec 2003 14:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMDUqi017102 for ; Wed, 10 Dec 2003 14:13:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMDUl8038223 for ; Wed, 10 Dec 2003 14:13:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMDU2e004731 for ; Wed, 10 Dec 2003 14:13:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMDUxV004730; Wed, 10 Dec 2003 14:13:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102213.hBAMDUxV004730@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:13:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:13:30 Modified files: xorp/fea/: mfea_node.cc Log message: Replace check for "if (! is_up())" with the more appropriate "if (is_down())" inside MfeaNode::stop() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:14:08 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:21:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMLpqI066229 for ; Wed, 10 Dec 2003 14:21:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMLkl8038356; Wed, 10 Dec 2003 14:21:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMF1qi017175; Wed, 10 Dec 2003 14:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAME8qi017136 for ; Wed, 10 Dec 2003 14:14:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAME8l8038233 for ; Wed, 10 Dec 2003 14:14:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAME82e004934 for ; Wed, 10 Dec 2003 14:14:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAME83V004933; Wed, 10 Dec 2003 14:14:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102214.hBAME83V004933@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:14:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:14:08 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: Implement XrlMfeaNode::common_0_1_shutdown() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:17:31 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:23:59 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMNxqI066705 for ; Wed, 10 Dec 2003 14:23:59 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMNtl8038372; Wed, 10 Dec 2003 14:23:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMI0qi017255; Wed, 10 Dec 2003 14:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMHWqi017229 for ; Wed, 10 Dec 2003 14:17:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMHVl8038285 for ; Wed, 10 Dec 2003 14:17:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMHV2e011702 for ; Wed, 10 Dec 2003 14:17:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMHVTf011701; Wed, 10 Dec 2003 14:17:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102217.hBAMHVTf011701@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:17:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:17:31 Modified files: xorp/fea/: xrl_target.cc Log message: * Add case for process status of PROC_DONE * If the FEA is "_done", then set the process status to PROC_DONE (unless it is still busy communicating config changes to other processes). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:21:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:25:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMPoqI067102 for ; Wed, 10 Dec 2003 14:25:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMPkl8038408; Wed, 10 Dec 2003 14:25:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMM1qi017341; Wed, 10 Dec 2003 14:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMLWqi017322 for ; Wed, 10 Dec 2003 14:21:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMLWl8038352 for ; Wed, 10 Dec 2003 14:21:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMLW2e012126 for ; Wed, 10 Dec 2003 14:21:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMLWxv012125; Wed, 10 Dec 2003 14:21:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102221.hBAMLWxv012125@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:21:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:21:32 Modified files: xorp/mld6igmp/: mld6igmp_node.cc Log message: * Change the semantics of Mld6igmpNode::stop() : - if the node is down, then set the node status to PROC_NODE, and return XORP_OK. - If the node shutdown is completed, then set the node status to PROC_NODE instead of PROC_SHUTDOWN. * Add case for PROC_DONE inside Mld6igmpNode::node_status() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:24:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:26:49 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMQnqI067315 for ; Wed, 10 Dec 2003 14:26:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMQjl8038423; Wed, 10 Dec 2003 14:26:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMP2qi017425; Wed, 10 Dec 2003 14:25:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMOnqi017402 for ; Wed, 10 Dec 2003 14:24:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMOnl8038378 for ; Wed, 10 Dec 2003 14:24:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMOn2e012262 for ; Wed, 10 Dec 2003 14:24:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMOn0Y012261; Wed, 10 Dec 2003 14:24:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102224.hBAMOn0Y012261@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:24:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:24:49 Modified files: xorp/pim/: TODO Log message: Remove obsolete reference to CLI2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:25:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:29:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMToqI067908 for ; Wed, 10 Dec 2003 14:29:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMTll8038443; Wed, 10 Dec 2003 14:29:47 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMQ2qi017471; Wed, 10 Dec 2003 14:26:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMPqqi017461 for ; Wed, 10 Dec 2003 14:25:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMPql8038412 for ; Wed, 10 Dec 2003 14:25:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMPq2e012347 for ; Wed, 10 Dec 2003 14:25:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMPqxO012346; Wed, 10 Dec 2003 14:25:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102225.hBAMPqxO012346@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:25:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:25:52 Modified files: xorp/libproto/: proto_node.hh Log message: Add case for PROC_DONE _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:24:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:30:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMU8qI067984 for ; Wed, 10 Dec 2003 14:30:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMU5l8038450; Wed, 10 Dec 2003 14:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMP1qi017412; Wed, 10 Dec 2003 14:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMOQqi017393 for ; Wed, 10 Dec 2003 14:24:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMOQl8038376 for ; Wed, 10 Dec 2003 14:24:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMOP2e012223 for ; Wed, 10 Dec 2003 14:24:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMOPQ1012222; Wed, 10 Dec 2003 14:24:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102224.hBAMOPQ1012222@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:24:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:24:25 Modified files: xorp/pim/: pim_node.cc Log message: * Change the semantics of PimNode::stop(): if the node is down, then set the node status to PROC_DONE, and return XORP_OK * When the shutdown process is completed, set the node status to PROC_DONE * Add case for PROC_DONE inside PimNode::node_status() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:32 2005 Subject: No subject Wed Dec 10 14:36:37 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:37:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMbCqI069434 for ; Wed, 10 Dec 2003 14:37:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMb8l8038544; Wed, 10 Dec 2003 14:37:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMb1qi017799; Wed, 10 Dec 2003 14:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMacqi017786 for ; Wed, 10 Dec 2003 14:36:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMabl8038540 for ; Wed, 10 Dec 2003 14:36:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMab2e013584 for ; Wed, 10 Dec 2003 14:36:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMabED013583; Wed, 10 Dec 2003 14:36:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102236.hBAMabED013583@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:36:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.hh task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:36:37 Modified files: xorp/rtrmgr/: task.hh task.cc Log message: * A bugfix: add new method Task::null_callback() that is used as a dummy callback when calling ModuleManager::kill_module() instead of using a local "null_cb" that appears to go out of scope and results in coredump when called. * Add cases for PROC_DONE when processing the status of a process. * If we succeed in shutting-down a module, then call ModuleManager::module_shutdown_completed() to update that module's status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Wed Dec 10 14:31:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:38:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMc0qI069597 for ; Wed, 10 Dec 2003 14:38:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMbul8038548; Wed, 10 Dec 2003 14:37:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMW1qi017645; Wed, 10 Dec 2003 14:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMVTqi017628 for ; Wed, 10 Dec 2003 14:31:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMVTl8038473 for ; Wed, 10 Dec 2003 14:31:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMVT2e012814 for ; Wed, 10 Dec 2003 14:31:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMVT3O012813; Wed, 10 Dec 2003 14:31:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102231.hBAMVT3O012813@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:31:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.hh module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:31:29 Modified files: xorp/rtrmgr/: module_manager.hh module_manager.cc Log message: * Add new methods ModuleManager::module_shutdown_completed() and Module::module_shutdown_completed() that should be called whenever a module has been completely shutdown, and we need to update its state. * Few renamings (e.g., name -> module_name, module_shutdown_done -> module_shutdown_cb, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Wed Dec 10 14:32:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:38:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMcGqI069658 for ; Wed, 10 Dec 2003 14:38:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMcCl8038556; Wed, 10 Dec 2003 14:38:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMX2qi017687; Wed, 10 Dec 2003 14:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMWJqi017660 for ; Wed, 10 Dec 2003 14:32:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMWJl8038478 for ; Wed, 10 Dec 2003 14:32:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMWJ2e012893 for ; Wed, 10 Dec 2003 14:32:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMWJP1012892; Wed, 10 Dec 2003 14:32:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102232.hBAMWJP1012892@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:32:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_module_manager.hh slave_module_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:32:19 Modified files: xorp/rtrmgr/: slave_module_manager.hh slave_module_manager.cc Log message: * Add dummy ModuleManager::module_shutdown_completed() * Few renamings (e.g., name -> module_name, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Wed Dec 10 14:37:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:44:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMioqI071000 for ; Wed, 10 Dec 2003 14:44:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMikl8038622; Wed, 10 Dec 2003 14:44:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMc1qi017834; Wed, 10 Dec 2003 14:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMbwqi017824 for ; Wed, 10 Dec 2003 14:37:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMbwl8038550 for ; Wed, 10 Dec 2003 14:37:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMbw2e013912 for ; Wed, 10 Dec 2003 14:37:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMbwlX013911; Wed, 10 Dec 2003 14:37:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102237.hBAMbwlX013911@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:37:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:37:58 Modified files: xorp/fea/: fea.cc Log message: Change the main FEA loop to consider the MFEA state as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Wed Dec 10 14:53:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 14:57:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMvpqI073736 for ; Wed, 10 Dec 2003 14:57:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMvkl8038797; Wed, 10 Dec 2003 14:57:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMs1qi018175; Wed, 10 Dec 2003 14:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBAMr8qi018157 for ; Wed, 10 Dec 2003 14:53:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMr7l8038726 for ; Wed, 10 Dec 2003 14:53:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBAMr72e017369 for ; Wed, 10 Dec 2003 14:53:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBAMr787017368; Wed, 10 Dec 2003 14:53:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312102253.hBAMr787017368@xorpc.icir.org> Date: Wed, 10 Dec 2003 14:53:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/12/10 14:53:07 Modified files: xorp/cli/: cli_node.cc Log message: Change the CliNode::stop() semantics: if the node is down, then return XORP_OK. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Wed Dec 10 19:04:36 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Dec 2003 19:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB3A7qI036154 for ; Wed, 10 Dec 2003 19:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB3A2l8041075; Wed, 10 Dec 2003 19:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBB351qi022986; Wed, 10 Dec 2003 19:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBB34bqi022961 for ; Wed, 10 Dec 2003 19:04:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB34al8041018 for ; Wed, 10 Dec 2003 19:04:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB34a2e023206 for ; Wed, 10 Dec 2003 19:04:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBB34aH5023205; Wed, 10 Dec 2003 19:04:36 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312110304.hBB34aH5023205@xorpc.icir.org> Date: Wed, 10 Dec 2003 19:04:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh socket.cc socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/10 19:04:36 Modified files: xorp/bgp/: peer.cc peer.hh socket.cc socket.hh Log message: TCP connects are now asynchronous. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Thu Dec 11 0:40:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Dec 2003 00:43:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB8h2qI095224 for ; Thu, 11 Dec 2003 00:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB8gul8043429; Thu, 11 Dec 2003 00:42:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBB8g0qi027389; Thu, 11 Dec 2003 00:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBB8f0qi027373 for ; Thu, 11 Dec 2003 00:41:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB8exl8043412 for ; Thu, 11 Dec 2003 00:40:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBB8ex2e040908 for ; Thu, 11 Dec 2003 00:40:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBB8exHF040907; Thu, 11 Dec 2003 00:40:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312110840.hBB8exHF040907@xorpc.icir.org> Date: Thu, 11 Dec 2003 0:40:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/11 00:40:59 Modified files: xorp/fea/: fea_dummy.cc Log message: Syncronyze fea_dummy.cc with fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Fri Dec 12 15:16:45 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Dec 2003 15:17:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNHLqI002480 for ; Fri, 12 Dec 2003 15:17:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNHGl8066662; Fri, 12 Dec 2003 15:17:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBCNH1qi006658; Fri, 12 Dec 2003 15:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBCNGjqi006645 for ; Fri, 12 Dec 2003 15:16:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNGjl8066657 for ; Fri, 12 Dec 2003 15:16:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNGj2e004756 for ; Fri, 12 Dec 2003 15:16:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBCNGj7E004755; Fri, 12 Dec 2003 15:16:45 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312122316.hBCNGj7E004755@xorpc.icir.org> Date: Fri, 12 Dec 2003 15:16:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc socket.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/12 15:16:45 Modified files: xorp/bgp/: socket.cc socket.hh Log message: * Kdoc public interface. * Remove dead code. * Provide a method to stop an asynchronous connect. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:33 2005 Subject: No subject Fri Dec 12 15:18:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Dec 2003 15:19:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNJBqI002873 for ; Fri, 12 Dec 2003 15:19:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNJ5l8066677; Fri, 12 Dec 2003 15:19:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBCNJ1qi006704; Fri, 12 Dec 2003 15:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBCNI4qi006688 for ; Fri, 12 Dec 2003 15:18:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNI3l8066671 for ; Fri, 12 Dec 2003 15:18:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBCNI32e004791 for ; Fri, 12 Dec 2003 15:18:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBCNI3Rc004790; Fri, 12 Dec 2003 15:18:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312122318.hBCNI3Rc004790@xorpc.icir.org> Date: Fri, 12 Dec 2003 15:18:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/12 15:18:03 Modified files: xorp/bgp/: peer.cc Log message: If we are attempting to make a connection and the peer connects to us. Terminate our connection attempt, before accepting the connection. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Fri Dec 12 16:09:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Dec 2003 16:10:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0A9qI018643 for ; Fri, 12 Dec 2003 16:10:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0A4l8067082; Fri, 12 Dec 2003 16:10:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD0A0qi007694; Fri, 12 Dec 2003 16:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD09hqi007682 for ; Fri, 12 Dec 2003 16:09:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD09gl8067077 for ; Fri, 12 Dec 2003 16:09:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD09g2e005156 for ; Fri, 12 Dec 2003 16:09:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBD09gkX005155; Fri, 12 Dec 2003 16:09:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312130009.hBD09gkX005155@xorpc.icir.org> Date: Fri, 12 Dec 2003 16:09:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_stcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 03/12/12 16:09:42 Modified files: xorp/libxipc/: xrl_pf_stcp.cc Log message: Change the XrlPFSTCPListener::response_pending() implementation so now it considers whether there are receiving-in-progress XRLs or outstanding responses to received XRLs. [reviewed by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Fri Dec 12 16:16:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Dec 2003 16:17:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0HBqI020007 for ; Fri, 12 Dec 2003 16:17:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0H7l8067140; Fri, 12 Dec 2003 16:17:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD0H1qi007827; Fri, 12 Dec 2003 16:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD0Gdqi007817 for ; Fri, 12 Dec 2003 16:16:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0Gdl8067137 for ; Fri, 12 Dec 2003 16:16:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0Gd2e005253 for ; Fri, 12 Dec 2003 16:16:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBD0Gdj0005252; Fri, 12 Dec 2003 16:16:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312130016.hBD0Gdj0005252@xorpc.icir.org> Date: Fri, 12 Dec 2003 16:16:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/12 16:16:39 Modified files: xorp/rtrmgr/: module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Log message: * Rename Task::step7_report() to step8_report() * Insert new steps in the process shutdown sequence: Task::step7_wait() and Task::step7_kill(). Those two steps are used to explicitly kill a module: either immediately, or after 1 second delay. * If we have received XRL-based verification that a module has shutdown, then schedule a one-second timer (step7_wait()) to wait and kill the process (just in case it hasn't terminated by then). Otherwise, if the process has failed to shutdown, then kill it immediately. * Remove ModuleManager::module_shutdown_completed() and Module::module_shutdown_completed(), because they are not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Fri Dec 12 16:43:34 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Dec 2003 16:44:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0i8qI024333 for ; Fri, 12 Dec 2003 16:44:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0i4l8067362; Fri, 12 Dec 2003 16:44:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD0i1qi008274; Fri, 12 Dec 2003 16:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBD0hYqi008262 for ; Fri, 12 Dec 2003 16:43:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0hYl8067360 for ; Fri, 12 Dec 2003 16:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBD0hY2e005428 for ; Fri, 12 Dec 2003 16:43:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBD0hYtM005427; Fri, 12 Dec 2003 16:43:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312130043.hBD0hYtM005427@xorpc.icir.org> Date: Fri, 12 Dec 2003 16:43:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/12 16:43:34 Modified files: xorp/rtrmgr/: task.cc Log message: Add XrlError::SEND_FAILED() to the list of XRL errors that indicate that the process shutdown was probably OK. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 11:45:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 11:46:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFJkOqI050717 for ; Mon, 15 Dec 2003 11:46:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFJkIl8003593; Mon, 15 Dec 2003 11:46:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFJk1qi002889; Mon, 15 Dec 2003 11:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFJjnqi002875 for ; Mon, 15 Dec 2003 11:45:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFJjnl8003582 for ; Mon, 15 Dec 2003 11:45:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFJjn2e045219 for ; Mon, 15 Dec 2003 11:45:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFJjnJm045218; Mon, 15 Dec 2003 11:45:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312151945.hBFJjnJm045218@xorpc.icir.org> Date: Mon, 15 Dec 2003 11:45:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 03/12/15 11:45:49 Modified files: xorp/libxipc/: xrl_router.cc xrl_router.hh Log message: Move Xrl registration from XrlRouter::add_handler() to XrlRouter::finalize(). Log a warning if XrlRouter::add_handler() is called anytime after XrlRouter::finalize(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 12:12:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 12:13:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKDAqI055911 for ; Mon, 15 Dec 2003 12:13:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKD5l8003868; Mon, 15 Dec 2003 12:13:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFKD1qi003577; Mon, 15 Dec 2003 12:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFKCEqi003549 for ; Mon, 15 Dec 2003 12:12:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKCDl8003856 for ; Mon, 15 Dec 2003 12:12:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKCD2e054851 for ; Mon, 15 Dec 2003 12:12:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFKCDg1054850; Mon, 15 Dec 2003 12:12:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312152012.hBFKCDg1054850@xorpc.icir.org> Date: Mon, 15 Dec 2003 12:12:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/scripts/ tgt-gen Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/scripts/ Changes by: hodson@xorpc.icir.org. 03/12/15 12:12:13 Modified files: xorp/xrl/scripts/: tgt-gen Log message: Change target set_command_map() method so that a call with a null argument removes handlers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 12:12:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 12:13:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKDVqI056018 for ; Mon, 15 Dec 2003 12:13:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKDRl8003874; Mon, 15 Dec 2003 12:13:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFKD2qi003589; Mon, 15 Dec 2003 12:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFKCwqi003568 for ; Mon, 15 Dec 2003 12:12:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKCwl8003863 for ; Mon, 15 Dec 2003 12:12:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFKCw2e054914 for ; Mon, 15 Dec 2003 12:12:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFKCwZg054913; Mon, 15 Dec 2003 12:12:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312152012.hBFKCwZg054913@xorpc.icir.org> Date: Mon, 15 Dec 2003 12:12:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ bgp4_mib_base.cc bgp_base.cc cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc fea_ifmgr_mirror_base.cc finder_base.cc finder_client_base.cc ...mfea_base.cc ...mld6igmp_base.cc ...ospf_base.cc ...pim_base.cc ...rib_base.cc ...ribclient_base.cc ...rip4_base.cc ...rip6_base.cc ...rtrmgr_base.cc ...test_base.cc ...test_fea_ifmgr_mirror_base.cc ...test_finder_events_base.cc ...test_peer_base.cc ...xorp_if_mib_base.cc ...xorpsh_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/12/15 12:12:58 Modified files: xorp/xrl/targets/: bgp4_mib_base.cc bgp_base.cc cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc fea_ifmgr_mirror_base.cc finder_base.cc finder_client_base.cc mfea_base.cc mld6igmp_base.cc ospf_base.cc pim_base.cc rib_base.cc ribclient_base.cc rip4_base.cc rip6_base.cc rtrmgr_base.cc test_base.cc test_fea_ifmgr_mirror_base.cc test_finder_events_base.cc test_peer_base.cc xorp_if_mib_base.cc xorpsh_base.cc Log message: Regenerate with tgt-gen revision 1.13. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 14:31:55 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 14:32:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMWCqI081523 for ; Mon, 15 Dec 2003 14:32:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMW5l8005376; Mon, 15 Dec 2003 14:32:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMW2qi006456; Mon, 15 Dec 2003 14:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMVtqi006435 for ; Mon, 15 Dec 2003 14:31:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMVtl8005372 for ; Mon, 15 Dec 2003 14:31:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMVt2e004036 for ; Mon, 15 Dec 2003 14:31:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFMVtMJ004035; Mon, 15 Dec 2003 14:31:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312152231.hBFMVtMJ004035@xorpc.icir.org> Date: Mon, 15 Dec 2003 14:31:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/15 14:31:55 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: If the configuration fails, then jump out of the main loop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 14:31:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 14:32:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMWCqI081522 for ; Mon, 15 Dec 2003 14:32:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMW5l8005374; Mon, 15 Dec 2003 14:32:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMW1qi006444; Mon, 15 Dec 2003 14:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMVPqi006423 for ; Mon, 15 Dec 2003 14:31:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMVPl8005365 for ; Mon, 15 Dec 2003 14:31:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMVP2e003852 for ; Mon, 15 Dec 2003 14:31:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFMVPJ5003851; Mon, 15 Dec 2003 14:31:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312152231.hBFMVPJ5003851@xorpc.icir.org> Date: Mon, 15 Dec 2003 14:31:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.hh master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/15 14:31:25 Modified files: xorp/rtrmgr/: master_conf_tree.hh master_conf_tree.cc Log message: If the configuration commit fails, then set a flag inside MasterConfigTree::config_done() rather than throwing an exception. The new flag is MasterConfigTree::config_failed(), and the corresponding error message is MasterConfigTree::config_failed_msg() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Mon Dec 15 14:35:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Dec 2003 14:36:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMaJqI082176 for ; Mon, 15 Dec 2003 14:36:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMaFl8005430; Mon, 15 Dec 2003 14:36:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMa1qi006561; Mon, 15 Dec 2003 14:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBFMZAqi006537 for ; Mon, 15 Dec 2003 14:35:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMZAl8005424 for ; Mon, 15 Dec 2003 14:35:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBFMZ92e004928 for ; Mon, 15 Dec 2003 14:35:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBFMZ993004927; Mon, 15 Dec 2003 14:35:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312152235.hBFMZ993004927@xorpc.icir.org> Date: Mon, 15 Dec 2003 14:35:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/15 14:35:09 Modified files: xorp/rtrmgr/: xrl_rtrmgr_interface.cc Log message: * If there is a rtrmgr configuration error after a configuration-related XRL is received (e.g., rtrmgr/0.1/load_config or rtrmgr/0.1/apply_config_change), then return COMMAND_FAILED XRL error. * Replace all XrlCmdError::XrlCmdError::COMMAND_FAILED with XrlCmdError::COMMAND_FAILED _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 15:35:18 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 15:36:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNa9qI058897 for ; Tue, 16 Dec 2003 15:36:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNa4nZ002247; Tue, 16 Dec 2003 15:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNa1qi004505; Tue, 16 Dec 2003 15:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNZIqi004485 for ; Tue, 16 Dec 2003 15:35:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNZInZ002234 for ; Tue, 16 Dec 2003 15:35:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNZISN001187 for ; Tue, 16 Dec 2003 15:35:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBGNZInj001186; Tue, 16 Dec 2003 15:35:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312162335.hBGNZInj001186@xorpc.icir.org> Date: Tue, 16 Dec 2003 15:35:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ mfea.xif mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/12/16 15:35:18 Modified files: xorp/xrl/interfaces/: mfea.xif mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: * Replace XRLs enable_log_trace and disable_log_trace (for interfaces mfea/0.1, mld6igmp/0.1 and pim/0.1) with XRL log_trace_all? enable:bool * Regenerate the auto-generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 15:38:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 15:39:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNd6qI065056 for ; Tue, 16 Dec 2003 15:39:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNd2nZ002279; Tue, 16 Dec 2003 15:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNd0qi004574; Tue, 16 Dec 2003 15:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNc5qi004552 for ; Tue, 16 Dec 2003 15:38:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNc4nZ002267 for ; Tue, 16 Dec 2003 15:38:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNc4SN001308 for ; Tue, 16 Dec 2003 15:38:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBGNc4Bh001307; Tue, 16 Dec 2003 15:38:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312162338.hBGNc4Bh001307@xorpc.icir.org> Date: Tue, 16 Dec 2003 15:38:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea xrl_mfea_node.hh xrl_mfea_node.cc xrl_mfea_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/16 15:38:04 Modified files: xorp/fea/: configure_mfea xrl_mfea_node.hh xrl_mfea_node.cc xrl_mfea_shell_funcs.sh Log message: * Replace XRLs enable_log_trace and disable_log_trace (for interfaces mfea/0.1, mld6igmp/0.1 and pim/0.1) with XRL log_trace_all? enable:bool * Replace configuration variable MFEA_ENABLE_LOG_TRACE (inside configure_mfea) with MFEA_LOG_TRACE_ALL_ENABLE _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 15:39:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 15:40:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNe9qI065350 for ; Tue, 16 Dec 2003 15:40:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNe4nZ002298; Tue, 16 Dec 2003 15:40:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNe1qi004601; Tue, 16 Dec 2003 15:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNdeqi004587 for ; Tue, 16 Dec 2003 15:39:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNddnZ002289 for ; Tue, 16 Dec 2003 15:39:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNddSN001361 for ; Tue, 16 Dec 2003 15:39:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBGNddtO001360; Tue, 16 Dec 2003 15:39:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312162339.hBGNddtO001360@xorpc.icir.org> Date: Tue, 16 Dec 2003 15:39:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp xrl_mld6igmp_node.hh xrl_mld6igmp_node.cc xrl_mld6igmp_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/16 15:39:39 Modified files: xorp/mld6igmp/: configure_mld6igmp xrl_mld6igmp_node.hh xrl_mld6igmp_node.cc xrl_mld6igmp_shell_funcs.sh Log message: * Replace XRLs enable_log_trace and disable_log_trace (for interface mld6igmp/0.1) with XRL log_trace_all? enable:bool * Replace configuration variable MFEA_ENABLE_LOG_TRACE (inside configure_mld6igmp) with MFEA_LOG_TRACE_ALL_ENABLE * Replace configuration variable MLD6IGMP_ENABLE_LOG_TRACE (inside configure_mld6igmp) with MLD6IGMP_LOG_TRACE_ALL_ENABLE _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 15:40:47 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 15:41:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNf8qI065610 for ; Tue, 16 Dec 2003 15:41:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNf3nZ002331; Tue, 16 Dec 2003 15:41:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNf1qi004649; Tue, 16 Dec 2003 15:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNelqi004629 for ; Tue, 16 Dec 2003 15:40:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNelnZ002323 for ; Tue, 16 Dec 2003 15:40:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNelSN001438 for ; Tue, 16 Dec 2003 15:40:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBGNelWt001437; Tue, 16 Dec 2003 15:40:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312162340.hBGNelWt001437@xorpc.icir.org> Date: Tue, 16 Dec 2003 15:40:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/16 15:40:47 Modified files: xorp/pim/: configure_pim xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Log message: * Replace XRLs enable_log_trace and disable_log_trace (for interface pim/0.1) with XRL log_trace_all? enable:bool * Replace configuration variable MFEA_ENABLE_LOG_TRACE (inside configure_mld6igmp) with MFEA_LOG_TRACE_ALL_ENABLE * Replace configuration variable MLD6IGMP_ENABLE_LOG_TRACE (inside configure_mld6igmp) with MLD6IGMP_LOG_TRACE_ALL_ENABLE * Replace configuration variable PIM_ENABLE_LOG_TRACE (inside configure_mld6igmp) with PIM_LOG_TRACE_ALL_ENABLE _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 15:58:32 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 15:59:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNx7qI074654 for ; Tue, 16 Dec 2003 15:59:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNx4nZ002521; Tue, 16 Dec 2003 15:59:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNx1qi005114; Tue, 16 Dec 2003 15:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBGNwXqi005087 for ; Tue, 16 Dec 2003 15:58:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNwXnZ002513 for ; Tue, 16 Dec 2003 15:58:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBGNwWSN001606 for ; Tue, 16 Dec 2003 15:58:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBGNwWZf001605; Tue, 16 Dec 2003 15:58:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312162358.hBGNwWZf001605@xorpc.icir.org> Date: Tue, 16 Dec 2003 15:58:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/16 15:58:32 Modified files: xorp/bgp/: socket.cc Log message: Remove bogus assert. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 16:00:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:01:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH018qI075125 for ; Tue, 16 Dec 2003 16:01:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH012nZ002583; Tue, 16 Dec 2003 16:01:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH010qi005168; Tue, 16 Dec 2003 16:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH00Uqi005153 for ; Tue, 16 Dec 2003 16:00:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH00TnZ002575 for ; Tue, 16 Dec 2003 16:00:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH00TSN001668 for ; Tue, 16 Dec 2003 16:00:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH00TRc001667; Tue, 16 Dec 2003 16:00:29 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170000.hBH00TRc001667@xorpc.icir.org> Date: Tue, 16 Dec 2003 16:00:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/12/16 16:00:29 Modified files: xorp/libxorp/: callback.hh Log message: Re-generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 16:02:29 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:03:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH03AqI080926 for ; Tue, 16 Dec 2003 16:03:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH035nZ002610; Tue, 16 Dec 2003 16:03:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH031qi005228; Tue, 16 Dec 2003 16:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH02Tqi005211 for ; Tue, 16 Dec 2003 16:02:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH02TnZ002600 for ; Tue, 16 Dec 2003 16:02:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH02TSN001796 for ; Tue, 16 Dec 2003 16:02:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH02To2001795; Tue, 16 Dec 2003 16:02:29 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170002.hBH02To2001795@xorpc.icir.org> Date: Tue, 16 Dec 2003 16:02:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ fea.tgt fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/12/16 16:02:29 Modified files: xorp/xrl/targets/: fea.tgt fea.xrls fea_base.cc fea_base.hh Log message: Add socket4_locator/0.1 to interfaces supported by fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 16:04:04 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:05:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH059qI081789 for ; Tue, 16 Dec 2003 16:05:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH053nZ002627; Tue, 16 Dec 2003 16:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH051qi005286; Tue, 16 Dec 2003 16:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH044qi005252 for ; Tue, 16 Dec 2003 16:04:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH044nZ002616 for ; Tue, 16 Dec 2003 16:04:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH044SN001830 for ; Tue, 16 Dec 2003 16:04:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH044pj001829; Tue, 16 Dec 2003 16:04:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170004.hBH044pj001829@xorpc.icir.org> Date: Tue, 16 Dec 2003 16:04:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/targets/ socket_server.tgt socket_server.xrls socket_server_base.cc socket_server_base.hh test_socket4.tgt test_socket4.xrls test_socket4_base.cc test_socket4_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 03/12/16 16:04:04 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/targets/: socket_server.tgt socket_server.xrls socket_server_base.cc socket_server_base.hh test_socket4.tgt test_socket4.xrls test_socket4_base.cc test_socket4_base.hh Log message: Add socket_server.tgt that provides the FEA remote UDP/TCP socket capability and test_socket4.tgt which is a testing target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 16:04:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:05:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH05AqI081814 for ; Tue, 16 Dec 2003 16:05:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH053nZ002629; Tue, 16 Dec 2003 16:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH052qi005298; Tue, 16 Dec 2003 16:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH04oqi005276 for ; Tue, 16 Dec 2003 16:04:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH04nnZ002622 for ; Tue, 16 Dec 2003 16:04:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH04nSN001857 for ; Tue, 16 Dec 2003 16:04:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH04n30001856; Tue, 16 Dec 2003 16:04:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170004.hBH04n30001856@xorpc.icir.org> Date: Tue, 16 Dec 2003 16:04:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xrl_target.cc xrl_target.hh xorp/fea/ addr_table.cc addr_table.hh ifconfig_addr_table.cc ifconfig_addr_table.hh test_xrl_sockets4_udp.cc test_xrl_sockets4_udp.sh xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc ...xrl_socket_server.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/12/16 16:04:49 Modified files: xorp/fea/: Makefile.am Makefile.in xrl_target.cc xrl_target.hh Added files: xorp/fea/: addr_table.cc addr_table.hh ifconfig_addr_table.cc ifconfig_addr_table.hh test_xrl_sockets4_udp.cc test_xrl_sockets4_udp.sh xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh Log message: Add first cut at socket server code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:34 2005 Subject: No subject Tue Dec 16 16:40:59 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:41:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0f7qI021713 for ; Tue, 16 Dec 2003 16:41:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0f2nZ002976; Tue, 16 Dec 2003 16:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH0f1qi006084; Tue, 16 Dec 2003 16:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH0exqi006075 for ; Tue, 16 Dec 2003 16:40:59 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0exnZ002974 for ; Tue, 16 Dec 2003 16:40:59 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0exNc058637 for ; Tue, 16 Dec 2003 16:40:59 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200312170040.hBH0exNc058637@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xrl_target.cc xrl_target.hh xorp/fea/ addr_table.cc addr_table.hh ifconfig_addr_table.cc ifconfig_addr_table.hh test_xrl_sockets4_udp.cc test_xrl_sockets4_udp.sh xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc ...xrl_socket_server.hh In-Reply-To: Your message of "Tue, 16 Dec 2003 16:04:49." <200312170004.hBH04n30001856@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 16 Dec 2003 16:40:59 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/fea/ | Changes by: hodson@xorpc.icir.org. 03/12/16 16:04:49 | | Modified files: | xorp/fea/: Makefile.am Makefile.in xrl_target.cc xrl_target.hh | Added files: | xorp/fea/: addr_table.cc addr_table.hh ifconfig_addr_table.cc | ifconfig_addr_table.hh test_xrl_sockets4_udp.cc | test_xrl_sockets4_udp.sh xrl_socket_cmds.cc | xrl_socket_cmds.hh xrl_socket_server.cc | xrl_socket_server.hh test_xrl_sockets4_udp.cc breaks the build. If you want to fix it, be my guest, but I have to be somewhere else in the immediate future. Otherwise, I'll sort it in a couple of hours... how bloody irritating. apologies. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Tue Dec 16 16:56:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 16:57:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0v9qI031137 for ; Tue, 16 Dec 2003 16:57:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0v4nZ003096; Tue, 16 Dec 2003 16:57:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH0v0qi006441; Tue, 16 Dec 2003 16:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH0uHqi006421 for ; Tue, 16 Dec 2003 16:56:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0uHnZ003094 for ; Tue, 16 Dec 2003 16:56:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH0uHSN002328 for ; Tue, 16 Dec 2003 16:56:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH0uHED002327; Tue, 16 Dec 2003 16:56:17 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312170056.hBH0uHED002327@xorpc.icir.org> Date: Tue, 16 Dec 2003 16:56:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrl_sockets4_udp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 03/12/16 16:56:17 Modified files: xorp/fea/: test_xrl_sockets4_udp.cc Log message: Changed close_socket -> local_close_socket - temporary fix to get file to compile. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Tue Dec 16 23:58:23 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Dec 2003 23:59:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7xCqI007692 for ; Tue, 16 Dec 2003 23:59:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7x5nZ006559; Tue, 16 Dec 2003 23:59:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH7x1qi013042; Tue, 16 Dec 2003 23:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH7wNqi013029 for ; Tue, 16 Dec 2003 23:58:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7wNnZ006557 for ; Tue, 16 Dec 2003 23:58:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7wNSN004880 for ; Tue, 16 Dec 2003 23:58:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH7wN4K004879; Tue, 16 Dec 2003 23:58:23 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170758.hBH7wN4K004879@xorpc.icir.org> Date: Tue, 16 Dec 2003 23:58:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrl_sockets4_udp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/12/16 23:58:23 Modified files: xorp/fea/: test_xrl_sockets4_udp.sh Log message: Pass finder port consistently to processes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Tue Dec 16 23:59:57 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Dec 2003 00:00:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH808qI007884 for ; Wed, 17 Dec 2003 00:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH804nZ006579; Wed, 17 Dec 2003 00:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH801qi013071; Wed, 17 Dec 2003 00:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBH7xwqi013062 for ; Tue, 16 Dec 2003 23:59:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7xvnZ006569 for ; Tue, 16 Dec 2003 23:59:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBH7xvSN004925 for ; Tue, 16 Dec 2003 23:59:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBH7xvM3004924; Tue, 16 Dec 2003 23:59:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312170759.hBH7xvM3004924@xorpc.icir.org> Date: Tue, 16 Dec 2003 23:59:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrl_sockets4_udp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/12/16 23:59:57 Modified files: xorp/fea/: test_xrl_sockets4_udp.cc Log message: Pass finder host and port to TestSocket4UDP constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Wed Dec 17 9:47:42 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Dec 2003 09:48:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBHHmXqI002432 for ; Wed, 17 Dec 2003 09:48:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBHHmRnZ013389; Wed, 17 Dec 2003 09:48:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBHHm1qi023993; Wed, 17 Dec 2003 09:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBHHlgqi023976 for ; Wed, 17 Dec 2003 09:47:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBHHlgnZ013377 for ; Wed, 17 Dec 2003 09:47:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBHHlgSN061806 for ; Wed, 17 Dec 2003 09:47:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBHHlgbh061805; Wed, 17 Dec 2003 09:47:42 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312171747.hBHHlgbh061805@xorpc.icir.org> Date: Wed, 17 Dec 2003 9:47:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 03/12/17 09:47:42 Modified files: xorp/fea/: xrl_socket_server.cc Log message: Fix Linux compilation - send()/sendto() flag variations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 9:56:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 09:57:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBIHv7qI052630 for ; Thu, 18 Dec 2003 09:57:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBIHv3nZ027775; Thu, 18 Dec 2003 09:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBIHv1qi022892; Thu, 18 Dec 2003 09:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBIHupqi022874 for ; Thu, 18 Dec 2003 09:56:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBIHupnZ027769 for ; Thu, 18 Dec 2003 09:56:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBIHupSN003331 for ; Thu, 18 Dec 2003 09:56:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBIHupLm003330; Thu, 18 Dec 2003 09:56:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312181756.hBIHupLm003330@xorpc.icir.org> Date: Thu, 18 Dec 2003 9:56:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ minitraits.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/12/18 09:56:51 Modified files: xorp/libxorp/: minitraits.hh Log message: Add BaseAndDerived class to provide a basic test if two types are based and derived. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 17:08:02 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 17:09:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ198qI031836 for ; Thu, 18 Dec 2003 17:09:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ194nZ032647; Thu, 18 Dec 2003 17:09:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ191qi002556; Thu, 18 Dec 2003 17:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ182qi002536 for ; Thu, 18 Dec 2003 17:08:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ182nZ032643 for ; Thu, 18 Dec 2003 17:08:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ182SN070864 for ; Thu, 18 Dec 2003 17:08:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ182CP070863; Thu, 18 Dec 2003 17:08:02 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190108.hBJ182CP070863@xorpc.icir.org> Date: Thu, 18 Dec 2003 17:08:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 17:08:02 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Unconditionally do FLOW_CONTROL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 17:19:03 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 17:20:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1KOqI034313 for ; Thu, 18 Dec 2003 17:20:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1KKnZ032776; Thu, 18 Dec 2003 17:20:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1K1qi002777; Thu, 18 Dec 2003 17:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1J4qi002753 for ; Thu, 18 Dec 2003 17:19:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1J4nZ032748 for ; Thu, 18 Dec 2003 17:19:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1J4SN070962 for ; Thu, 18 Dec 2003 17:19:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ1J3mP070960; Thu, 18 Dec 2003 17:19:03 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190119.hBJ1J3mP070960@xorpc.icir.org> Date: Thu, 18 Dec 2003 17:19:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 17:19:03 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Remove retry clutter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 17:31:09 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 17:32:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1WCqI037256 for ; Thu, 18 Dec 2003 17:32:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1W7nZ032870; Thu, 18 Dec 2003 17:32:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1W0qi002973; Thu, 18 Dec 2003 17:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1VAqi002955 for ; Thu, 18 Dec 2003 17:31:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1V9nZ032862 for ; Thu, 18 Dec 2003 17:31:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1V9SN071102 for ; Thu, 18 Dec 2003 17:31:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ1V9hK071101; Thu, 18 Dec 2003 17:31:09 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190131.hBJ1V9hK071101@xorpc.icir.org> Date: Thu, 18 Dec 2003 17:31:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 17:31:09 Modified files: xorp/bgp/: bgp.cc rib_ipc_handler.cc rib_ipc_handler.hh Log message: Remove eventloop reference. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 17:50:19 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 17:51:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1pAqI041225 for ; Thu, 18 Dec 2003 17:51:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1p5nZ033046; Thu, 18 Dec 2003 17:51:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1p1qi003247; Thu, 18 Dec 2003 17:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1oKqi003236 for ; Thu, 18 Dec 2003 17:50:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1oKnZ033043 for ; Thu, 18 Dec 2003 17:50:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1oJSN071242 for ; Thu, 18 Dec 2003 17:50:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ1oJh0071241; Thu, 18 Dec 2003 17:50:19 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190150.hBJ1oJh0071241@xorpc.icir.org> Date: Thu, 18 Dec 2003 17:50:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 17:50:19 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Pass all the debugging information we can to the callback when adding/deleting a route. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 17:54:49 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 17:55:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1t7qI042091 for ; Thu, 18 Dec 2003 17:55:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1t3nZ033061; Thu, 18 Dec 2003 17:55:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1t1qi003319; Thu, 18 Dec 2003 17:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ1soqi003310 for ; Thu, 18 Dec 2003 17:54:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1sonZ033056 for ; Thu, 18 Dec 2003 17:54:50 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ1snSN071286 for ; Thu, 18 Dec 2003 17:54:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ1snDg071285; Thu, 18 Dec 2003 17:54:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190154.hBJ1snDg071285@xorpc.icir.org> Date: Thu, 18 Dec 2003 17:54:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 17:54:49 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Remove unused define. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 23:03:17 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 23:04:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ749qI092516 for ; Thu, 18 Dec 2003 23:04:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ744nZ035286; Thu, 18 Dec 2003 23:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ741qi007757; Thu, 18 Dec 2003 23:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ73Hqi007743 for ; Thu, 18 Dec 2003 23:03:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ73HnZ035283 for ; Thu, 18 Dec 2003 23:03:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ73HSN072979 for ; Thu, 18 Dec 2003 23:03:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ73HAR072978; Thu, 18 Dec 2003 23:03:17 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190703.hBJ73HAR072978@xorpc.icir.org> Date: Thu, 18 Dec 2003 23:03:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 23:03:17 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Remove sequence ID. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Thu Dec 18 23:39:11 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Dec 2003 23:40:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ7e9qI099653 for ; Thu, 18 Dec 2003 23:40:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ7e5nZ035519; Thu, 18 Dec 2003 23:40:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ7e1qi008421; Thu, 18 Dec 2003 23:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ7dBqi008396 for ; Thu, 18 Dec 2003 23:39:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ7dBnZ035512 for ; Thu, 18 Dec 2003 23:39:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ7dBSN073220 for ; Thu, 18 Dec 2003 23:39:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ7dBdX073219; Thu, 18 Dec 2003 23:39:11 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312190739.hBJ7dBdX073219@xorpc.icir.org> Date: Thu, 18 Dec 2003 23:39:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/18 23:39:11 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Send as many XRLs as possible from BGP to the RIB. Use the socket buffer full as the indicator that sending should stop. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 1:22:52 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 01:23:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9NSqI019885 for ; Fri, 19 Dec 2003 01:23:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9NOnZ036239; Fri, 19 Dec 2003 01:23:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9N1qi010091; Fri, 19 Dec 2003 01:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9Mqqi010082 for ; Fri, 19 Dec 2003 01:22:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9MqnZ036235 for ; Fri, 19 Dec 2003 01:22:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9MqSN001030 for ; Fri, 19 Dec 2003 01:22:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ9Mqd9001029; Fri, 19 Dec 2003 01:22:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312190922.hBJ9Mqd9001029@xorpc.icir.org> Date: Fri, 19 Dec 2003 1:22:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/19 01:22:52 Modified files: xorp/rtrmgr/: boot.ll Log message: Nuke an empty space. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 1:30:46 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 01:31:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9VCqI021443 for ; Fri, 19 Dec 2003 01:31:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9V8nZ036318; Fri, 19 Dec 2003 01:31:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9V0qi010205; Fri, 19 Dec 2003 01:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9Ulqi010190 for ; Fri, 19 Dec 2003 01:30:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9UknZ036311 for ; Fri, 19 Dec 2003 01:30:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9UkSN002757 for ; Fri, 19 Dec 2003 01:30:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ9Ukkk002756; Fri, 19 Dec 2003 01:30:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312190930.hBJ9Ukkk002756@xorpc.icir.org> Date: Fri, 19 Dec 2003 1:30:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.ll template.yy y.tplt_tab.cc y.tplt_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/19 01:30:46 Modified files: xorp/rtrmgr/: template.ll template.yy y.tplt_tab.cc y.tplt_tab.h Log message: * Add regulal-expression representations for IPv4 and IPv6 addresses and address prefixes, and for MAC address. * Add grammar to assign default values to variables of type ipv4, ipv4_prefix, ipv6, ipv6_prefix, macaddr (in addition to the existing grammar for assignment of variables of type bool and integer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 1:33:13 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 01:34:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9YGqI022041 for ; Fri, 19 Dec 2003 01:34:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9YCnZ036348; Fri, 19 Dec 2003 01:34:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9Y1qi010273; Fri, 19 Dec 2003 01:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJ9XDqi010246 for ; Fri, 19 Dec 2003 01:33:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9XDnZ036342 for ; Fri, 19 Dec 2003 01:33:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJ9XDSN003582 for ; Fri, 19 Dec 2003 01:33:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJ9XDVs003581; Fri, 19 Dec 2003 01:33:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312190933.hBJ9XDVs003581@xorpc.icir.org> Date: Fri, 19 Dec 2003 1:33:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/19 01:33:13 Modified files: xorp/rtrmgr/: task.cc Log message: Print the expanded XRL right before execution inside TaskXrlItem::execute() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 12:16:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 12:17:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKHAqI033296 for ; Fri, 19 Dec 2003 12:17:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKH3nZ043572; Fri, 19 Dec 2003 12:17:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKH1qi023319; Fri, 19 Dec 2003 12:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKGpqi023309 for ; Fri, 19 Dec 2003 12:16:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKGpnZ043568 for ; Fri, 19 Dec 2003 12:16:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKGpSN069283 for ; Fri, 19 Dec 2003 12:16:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJKGord069275; Fri, 19 Dec 2003 12:16:50 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312192016.hBJKGord069275@xorpc.icir.org> Date: Fri, 19 Dec 2003 12:16:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/19 12:16:50 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Change type of comment from char * to string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 12:30:20 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 12:31:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKV8qI038370 for ; Fri, 19 Dec 2003 12:31:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKV3nZ043706; Fri, 19 Dec 2003 12:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKV1qi023624; Fri, 19 Dec 2003 12:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKULqi023602 for ; Fri, 19 Dec 2003 12:30:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKUKnZ043704 for ; Fri, 19 Dec 2003 12:30:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKUKSN074084 for ; Fri, 19 Dec 2003 12:30:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJKUKUE074083; Fri, 19 Dec 2003 12:30:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312192030.hBJKUKUE074083@xorpc.icir.org> Date: Fri, 19 Dec 2003 12:30:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc template_commands.cc template_tree_node.cc template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/19 12:30:20 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc template_commands.cc template_tree_node.cc template_tree_node.hh Log message: * Implement template keyword %mandatory that takes as arguments a list of child nodes that must be present in the configuration (e.g., they must either have a default value, or the user configuration file must specify them). * Add new method ConfigTreeNode::verify_configuration() that verifies whether the configuration is valid. For the time being it checks only whether the %mandatory child nodes are in place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 12:52:51 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 12:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKr7qI046642 for ; Fri, 19 Dec 2003 12:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKr2nZ043902; Fri, 19 Dec 2003 12:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKr0qi024027; Fri, 19 Dec 2003 12:53:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJKqpqi024015 for ; Fri, 19 Dec 2003 12:52:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKqpnZ043900 for ; Fri, 19 Dec 2003 12:52:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJKqpSN081727 for ; Fri, 19 Dec 2003 12:52:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJKqpMw081726; Fri, 19 Dec 2003 12:52:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312192052.hBJKqpMw081726@xorpc.icir.org> Date: Fri, 19 Dec 2003 12:52:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 03/12/19 12:52:51 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the rtrmgr documentation with information about the new %mandatory template command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 14:12:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 14:13:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJMD9qI067289 for ; Fri, 19 Dec 2003 14:13:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJMD4nZ044790; Fri, 19 Dec 2003 14:13:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJMD1qi025939; Fri, 19 Dec 2003 14:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJMCFqi025921 for ; Fri, 19 Dec 2003 14:12:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJMCFnZ044786 for ; Fri, 19 Dec 2003 14:12:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJMCFSN011728 for ; Fri, 19 Dec 2003 14:12:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJMCFMu011664; Fri, 19 Dec 2003 14:12:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312192212.hBJMCFMu011664@xorpc.icir.org> Date: Fri, 19 Dec 2003 14:12:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/19 14:12:14 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Only attempt to send a route add or delete if we are not busy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:35 2005 Subject: No subject Fri Dec 19 15:57:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 15:58:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNwHqI091141 for ; Fri, 19 Dec 2003 15:58:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNwDnZ045757; Fri, 19 Dec 2003 15:58:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJNw1qi028142; Fri, 19 Dec 2003 15:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJNvQqi028127 for ; Fri, 19 Dec 2003 15:57:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNvQnZ045753 for ; Fri, 19 Dec 2003 15:57:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNvQSN024365 for ; Fri, 19 Dec 2003 15:57:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJNvQmm024364; Fri, 19 Dec 2003 15:57:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312192357.hBJNvQmm024364@xorpc.icir.org> Date: Fri, 19 Dec 2003 15:57:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc fea_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/19 15:57:25 Modified files: xorp/fea/: fea.cc fea_dummy.cc Log message: Minor nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 15:58:43 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 15:59:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNxCqI091342 for ; Fri, 19 Dec 2003 15:59:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNx8nZ045774; Fri, 19 Dec 2003 15:59:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJNx1qi028182; Fri, 19 Dec 2003 15:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBJNwiqi028164 for ; Fri, 19 Dec 2003 15:58:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNwhnZ045763 for ; Fri, 19 Dec 2003 15:58:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBJNwhSN024413 for ; Fri, 19 Dec 2003 15:58:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBJNwhHX024412; Fri, 19 Dec 2003 15:58:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312192358.hBJNwhHX024412@xorpc.icir.org> Date: Fri, 19 Dec 2003 15:58:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_mfea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/19 15:58:43 Modified files: xorp/fea/: test_mfea.cc Log message: Replace hard-coded buffer size of 1024 with MAXHOSTNAMELEN + 1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:00:24 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:01:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK01AqI091758 for ; Fri, 19 Dec 2003 16:01:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK015nZ045824; Fri, 19 Dec 2003 16:01:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK011qi028250; Fri, 19 Dec 2003 16:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK00Oqi028228 for ; Fri, 19 Dec 2003 16:00:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK00OnZ045822 for ; Fri, 19 Dec 2003 16:00:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK00OSN024478 for ; Fri, 19 Dec 2003 16:00:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK00OBt024477; Fri, 19 Dec 2003 16:00:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200000.hBK00OBt024477@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:00:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:00:24 Modified files: xorp/fea/: .cvsignore Log message: Added test_xrl_sockets4_udp to the list of files to ignore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:01:53 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:02:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK027qI091959 for ; Fri, 19 Dec 2003 16:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK023nZ045842; Fri, 19 Dec 2003 16:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK021qi028298; Fri, 19 Dec 2003 16:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK01rqi028284 for ; Fri, 19 Dec 2003 16:01:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK01rnZ045834 for ; Fri, 19 Dec 2003 16:01:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK01rSN024526 for ; Fri, 19 Dec 2003 16:01:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK01r18024525; Fri, 19 Dec 2003 16:01:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200001.hBK01r18024525@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:01:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:01:53 Modified files: xorp/mld6igmp/: test_mld6igmp.cc Log message: Replace hard-coded buffer size of 1024 with MAXHOSTNAMELEN + 1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:02:27 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:03:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK03AqI092214 for ; Fri, 19 Dec 2003 16:03:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK034nZ045859; Fri, 19 Dec 2003 16:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK031qi028343; Fri, 19 Dec 2003 16:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK02Rqi028315 for ; Fri, 19 Dec 2003 16:02:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK02RnZ045853 for ; Fri, 19 Dec 2003 16:02:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK02RSN024571 for ; Fri, 19 Dec 2003 16:02:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK02R6a024570; Fri, 19 Dec 2003 16:02:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200002.hBK02R6a024570@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:02:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xorp_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:02:27 Modified files: xorp/mld6igmp/: xorp_mld6igmp.cc Log message: Cleanup and refactoring. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:03:07 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:04:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK048qI092447 for ; Fri, 19 Dec 2003 16:04:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK042nZ045877; Fri, 19 Dec 2003 16:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK040qi028387; Fri, 19 Dec 2003 16:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK037qi028358 for ; Fri, 19 Dec 2003 16:03:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK037nZ045861 for ; Fri, 19 Dec 2003 16:03:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK037SN024609 for ; Fri, 19 Dec 2003 16:03:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK037u4024608; Fri, 19 Dec 2003 16:03:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200003.hBK037u4024608@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:03:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:03:07 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Enable the compilation of xorp_mld6igmp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:03:25 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:04:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK049qI092464 for ; Fri, 19 Dec 2003 16:04:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK043nZ045879; Fri, 19 Dec 2003 16:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK041qi028400; Fri, 19 Dec 2003 16:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK03Qqi028369 for ; Fri, 19 Dec 2003 16:03:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK03QnZ045872 for ; Fri, 19 Dec 2003 16:03:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK03PSN024654 for ; Fri, 19 Dec 2003 16:03:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK03PKu024653; Fri, 19 Dec 2003 16:03:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200003.hBK03PKu024653@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:03:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:03:25 Modified files: xorp/mld6igmp/: .cvsignore Log message: Added xorp_mld6igmp to the list of files to ignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:04:05 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:05:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK058qI092681 for ; Fri, 19 Dec 2003 16:05:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK053nZ045898; Fri, 19 Dec 2003 16:05:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK050qi028441; Fri, 19 Dec 2003 16:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK045qi028409 for ; Fri, 19 Dec 2003 16:04:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK045nZ045881 for ; Fri, 19 Dec 2003 16:04:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK045SN024681 for ; Fri, 19 Dec 2003 16:04:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK0457w024680; Fri, 19 Dec 2003 16:04:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200004.hBK0457w024680@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:04:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:04:05 Modified files: xorp/pim/: test_pim.cc Log message: Replace hard-coded buffer size of 1024 with MAXHOSTNAMELEN + 1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:04:39 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:05:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK05BqI092708 for ; Fri, 19 Dec 2003 16:05:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK054nZ045900; Fri, 19 Dec 2003 16:05:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK051qi028453; Fri, 19 Dec 2003 16:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK04eqi028423 for ; Fri, 19 Dec 2003 16:04:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK04enZ045893 for ; Fri, 19 Dec 2003 16:04:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK04dSN024718 for ; Fri, 19 Dec 2003 16:04:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK04dD8024717; Fri, 19 Dec 2003 16:04:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200004.hBK04dD8024717@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:04:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 03/12/19 16:04:39 Modified files: xorp/cli/: test_cli.cc Log message: Replace hard-coded buffer size of 1024 with MAXHOSTNAMELEN + 1 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:26:01 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:27:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0RBqI097105 for ; Fri, 19 Dec 2003 16:27:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0R5nZ046128; Fri, 19 Dec 2003 16:27:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK0R1qi029048; Fri, 19 Dec 2003 16:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK0Q1qi029012 for ; Fri, 19 Dec 2003 16:26:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0Q1nZ046117 for ; Fri, 19 Dec 2003 16:26:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0Q1SN024990 for ; Fri, 19 Dec 2003 16:26:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK0Q17C024989; Fri, 19 Dec 2003 16:26:01 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312200026.hBK0Q17C024989@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:26:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in callback-gen.py callback.hh xorp/libxorp/ safe_callback_obj.cc safe_callback_obj.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/12/19 16:26:01 Modified files: xorp/libxorp/: Makefile.am Makefile.in callback-gen.py callback.hh Added files: xorp/libxorp/: safe_callback_obj.cc safe_callback_obj.hh Log message: Add safe_callback_back_obj.{hh,cc} which provide basis for safe callback objects. These are objects that track the callbacks that reference them and invalidate those callbacks if they exist when the object is deleted. To get this functionality a class need only derive from CallbackSafeObject. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 16:26:58 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 16:27:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0RBqI097106 for ; Fri, 19 Dec 2003 16:27:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0R5nZ046130; Fri, 19 Dec 2003 16:27:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK0R2qi029060; Fri, 19 Dec 2003 16:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK0Qwqi029037 for ; Fri, 19 Dec 2003 16:26:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0QwnZ046122 for ; Fri, 19 Dec 2003 16:26:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK0QwSN025025 for ; Fri, 19 Dec 2003 16:26:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK0QwF8025024; Fri, 19 Dec 2003 16:26:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312200026.hBK0QwF8025024@xorpc.icir.org> Date: Fri, 19 Dec 2003 16:26:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_callback.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 03/12/19 16:26:58 Modified files: xorp/libxorp/: test_callback.cc Log message: Add an example that uses a safe callback object. Minor clean-up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 17:43:38 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 17:44:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK1i9qI018077 for ; Fri, 19 Dec 2003 17:44:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK1i3nZ046708; Fri, 19 Dec 2003 17:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK1i0qi000746; Fri, 19 Dec 2003 17:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK1hcqi000734 for ; Fri, 19 Dec 2003 17:43:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK1hcnZ046703 for ; Fri, 19 Dec 2003 17:43:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK1hcSN025562 for ; Fri, 19 Dec 2003 17:43:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK1hc1t025561; Fri, 19 Dec 2003 17:43:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200312200143.hBK1hc1t025561@xorpc.icir.org> Date: Fri, 19 Dec 2003 17:43:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh xrl_cli_shell_funcs.sh xorp/fea/ configure_mfea xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/mld6igmp/ configure_mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/pim/ configure_pim xorp/xrl/interfaces/ cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh mfea.xif mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xorp/xrl/targets/ cli.xrls cli_base.cc cli_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 03/12/19 17:43:38 Modified files: xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh xrl_cli_shell_funcs.sh xorp/fea/: configure_mfea xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh xorp/mld6igmp/: configure_mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xorp/pim/: configure_pim xorp/xrl/interfaces/: cli_manager.xif cli_manager_xif.cc cli_manager_xif.hh mfea.xif mfea_xif.cc mfea_xif.hh mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xorp/xrl/targets/: cli.xrls cli_base.cc cli_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Log message: Replace XRLs "enable_foo" and "disable_foo" with a single XRL "enable_xrl? enable:bool". The renamed XRLs are: cli_manager/0.1/enable_cli cli_manager/0.1/disable_cli mfea/0.1/enable_vif mfea/0.1/disable_vif mfea/0.1/enable_all_vifs mfea/0.1/disable_all_vifs mfea/0.1/enable_mfea mfea/0.1/disable_mfea mfea/0.1/enable_cli mfea/0.1/disable_cli mld6igmp/0.1/enable_vif mld6igmp/0.1/disable_vif mld6igmp/0.1/enable_all_vifs mld6igmp/0.1/disable_all_vifs mld6igmp/0.1/enable_mld6igmp mld6igmp/0.1/disable_mld6igmp mld6igmp/0.1/enable_cli mld6igmp/0.1/disable_cli _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Fri Dec 19 18:09:14 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Dec 2003 18:10:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK2AAqI026331 for ; Fri, 19 Dec 2003 18:10:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK2A4nZ046919; Fri, 19 Dec 2003 18:10:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK2A1qi001135; Fri, 19 Dec 2003 18:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBK29Eqi001116 for ; Fri, 19 Dec 2003 18:09:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK29EnZ046909 for ; Fri, 19 Dec 2003 18:09:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBK29ESN025850 for ; Fri, 19 Dec 2003 18:09:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBK29EO4025849; Fri, 19 Dec 2003 18:09:14 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200312200209.hBK29EO4025849@xorpc.icir.org> Date: Fri, 19 Dec 2003 18:09:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 03/12/19 18:09:14 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Temporary HACK to allow tinderbox to run. Only one XRL is allowed in flight at a time from BGP to the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Dec 29 18:39:50 2003 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Dec 2003 18:40:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.3) with ESMTP id hBU2eAqI080896 for ; Mon, 29 Dec 2003 18:40:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBU2e4nZ074342; Mon, 29 Dec 2003 18:40:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBU2e1qi015295; Mon, 29 Dec 2003 18:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id hBU2doqi015285 for ; Mon, 29 Dec 2003 18:39:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.3) with ESMTP id hBU2donZ074335 for ; Mon, 29 Dec 2003 18:39:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hBU2doSN000577 for ; Mon, 29 Dec 2003 18:39:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hBU2doir000576; Mon, 29 Dec 2003 18:39:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200312300239.hBU2doir000576@xorpc.icir.org> Date: Mon, 29 Dec 2003 18:39:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.cc ifmgr_atoms.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 03/12/29 18:39:50 Modified files: xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh Log message: Add IfMgrIfAtom::find_vif and IfMgrVifAtom::find_addr methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 11:19:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 11:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05JL1lA013892 for ; Mon, 5 Jan 2004 11:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05JKsOd057269; Mon, 5 Jan 2004 11:20:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05JK1qi021332; Mon, 5 Jan 2004 11:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05JJ4qi021303 for ; Mon, 5 Jan 2004 11:19:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05JJ3Od057237 for ; Mon, 5 Jan 2004 11:19:03 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05JJ3Zv021641 for ; Mon, 5 Jan 2004 11:19:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05JJ31R021640; Mon, 5 Jan 2004 11:19:03 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401051919.i05JJ31R021640@xorpc.icir.org> Date: Mon, 5 Jan 2004 11:19:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_atoms.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/01/05 11:19:03 Modified files: xorp/libfeaclient/: ifmgr_atoms.hh Log message: Remove a couple of incorrect uses 'inline'. Add specialized type resolver struct IfMgrIP that yields the appropriate IfMgrIPv{4,6}Atom when provided with {IPv4,IPv6} as a template argument. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 12:40:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 12:41:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05KfBlA025638 for ; Mon, 5 Jan 2004 12:41:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Kf2Od058143; Mon, 5 Jan 2004 12:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Kf0qi022896; Mon, 5 Jan 2004 12:41:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Keqqi022884 for ; Mon, 5 Jan 2004 12:40:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05KepOd058141 for ; Mon, 5 Jan 2004 12:40:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05KepZv037846 for ; Mon, 5 Jan 2004 12:40:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05KepWJ037845; Mon, 5 Jan 2004 12:40:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052040.i05KepWJ037845@xorpc.icir.org> Date: Mon, 5 Jan 2004 12:40:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.hh pim_base.cc xorp/pim/ configure_pim xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/01/05 12:40:51 Modified files: xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.hh pim_base.cc xorp/pim/: configure_pim xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh Log message: Replace XRLs "enable_foo" and "disable_foo" with a single XRL "enable_foo? enable:bool". The replaced XRLs are: pim/0.1/enable_vif pim/0.1/disable_vif pim/0.1/enable_all_vifs pim/0.1/disable_all_vifs pim/0.1/enable_pim pim/0.1/disable_pim pim/0.1/enable_cli pim/0.1/disable_cli pim/0.1/enable_bsr pim/0.1/disable_bsr _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 15:24:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:26:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NQ0lA050055 for ; Mon, 5 Jan 2004 15:26:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NPsOd059879; Mon, 5 Jan 2004 15:25:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NP1qi026334; Mon, 5 Jan 2004 15:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NOqqi026320 for ; Mon, 5 Jan 2004 15:24:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NOqOd059847 for ; Mon, 5 Jan 2004 15:24:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NOqZv088444 for ; Mon, 5 Jan 2004 15:24:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05NOqhD088443; Mon, 5 Jan 2004 15:24:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052324.i05NOqhD088443@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:24:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:24:52 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 15:34:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:35:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NZElA051441 for ; Mon, 5 Jan 2004 15:35:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NZ6Od059955; Mon, 5 Jan 2004 15:35:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NZ1qi026632; Mon, 5 Jan 2004 15:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NY9qi026606 for ; Mon, 5 Jan 2004 15:34:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NY9Od059940 for ; Mon, 5 Jan 2004 15:34:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NY9Zv088660 for ; Mon, 5 Jan 2004 15:34:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05NY900088659; Mon, 5 Jan 2004 15:34:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052334.i05NY900088659@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:34:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy y.boot_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:34:09 Modified files: xorp/rtrmgr/: boot.yy y.boot_tab.cc Log message: Specify the set of exceptions thrown by booterror() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 15:37:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:38:30 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NcUlA051916 for ; Mon, 5 Jan 2004 15:38:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NcNOd060000; Mon, 5 Jan 2004 15:38:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nc0qi026703; Mon, 5 Jan 2004 15:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NbFqi026683 for ; Mon, 5 Jan 2004 15:37:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NbFOd059993 for ; Mon, 5 Jan 2004 15:37:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NbFZv088806 for ; Mon, 5 Jan 2004 15:37:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05NbFCt088805; Mon, 5 Jan 2004 15:37:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052337.i05NbFCt088805@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:37:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.cc conf_tree.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:37:15 Modified files: xorp/rtrmgr/: conf_tree.cc conf_tree.hh Log message: Specify the set of exceptions thrown by ConfigTree::find_template() and ConfigTree::add_node() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 15:40:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:42:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Ng9lA052457 for ; Mon, 5 Jan 2004 15:42:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Ng2Od060077; Mon, 5 Jan 2004 15:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nf1qi026818; Mon, 5 Jan 2004 15:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Ne7qi026787 for ; Mon, 5 Jan 2004 15:40:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Ne7Od060048 for ; Mon, 5 Jan 2004 15:40:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Ne7Zv088907 for ; Mon, 5 Jan 2004 15:40:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Ne7eQ088906; Mon, 5 Jan 2004 15:40:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052340.i05Ne7eQ088906@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:40:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.hh master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:40:07 Modified files: xorp/rtrmgr/: master_conf_tree.hh master_conf_tree.cc Log message: * Specify the set of exceptions thrown by the MasterConfTree constructor. * Remove an unnecessary debug_msg(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:36 2005 Subject: No subject Mon Jan 5 15:43:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:45:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj5lA052905 for ; Mon, 5 Jan 2004 15:45:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj0Od060103; Mon, 5 Jan 2004 15:45:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Ni1qi026897; Mon, 5 Jan 2004 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nh4qi026876 for ; Mon, 5 Jan 2004 15:43:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nh4Od060089 for ; Mon, 5 Jan 2004 15:43:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nh4Zv089015 for ; Mon, 5 Jan 2004 15:43:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Nh4Xe089014; Mon, 5 Jan 2004 15:43:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052343.i05Nh4Xe089014@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:43:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:43:04 Modified files: xorp/rtrmgr/: template_commands.hh template_commands.cc Log message: Specify the set of exceptions thrown by Action::Action() and XrlAction::expand_xrl_variables() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:40:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:46:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nk7lA053097 for ; Mon, 5 Jan 2004 15:46:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nk2Od060137; Mon, 5 Jan 2004 15:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nf1qi026830; Mon, 5 Jan 2004 15:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nemqi026805 for ; Mon, 5 Jan 2004 15:40:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NemOd060058 for ; Mon, 5 Jan 2004 15:40:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NemZv088953 for ; Mon, 5 Jan 2004 15:40:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Nemfd088952; Mon, 5 Jan 2004 15:40:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052340.i05Nemfd088952@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:40:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:40:48 Modified files: xorp/rtrmgr/: slave_conf_tree.cc Log message: Specify the set of exceptions thrown by booterror() in this function declaration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:45:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:46:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NkSlA053162 for ; Mon, 5 Jan 2004 15:46:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NkMOd060151; Mon, 5 Jan 2004 15:46:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nk2qi026977; Mon, 5 Jan 2004 15:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nj5qi026937 for ; Mon, 5 Jan 2004 15:45:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj5Od060110 for ; Mon, 5 Jan 2004 15:45:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj5Zv089082 for ; Mon, 5 Jan 2004 15:45:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Nj55q089081; Mon, 5 Jan 2004 15:45:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052345.i05Nj55q089081@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:45:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree.hh template_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:45:05 Modified files: xorp/rtrmgr/: template_tree.hh template_tree.cc Log message: * Specify the set of exceptions thrown by TemplateTree::pop_path() and TemplateTree::add_untyped_node() * If TemplateTree::find_node() fails, do not thrown an exceptions, but return NULL instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:38:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:46:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NkrlA053251 for ; Mon, 5 Jan 2004 15:46:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NkkOd060159; Mon, 5 Jan 2004 15:46:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nd1qi026743; Mon, 5 Jan 2004 15:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nc6qi026718 for ; Mon, 5 Jan 2004 15:38:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nc6Od059996 for ; Mon, 5 Jan 2004 15:38:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nc6Zv088840 for ; Mon, 5 Jan 2004 15:38:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Nc6nP088839; Mon, 5 Jan 2004 15:38:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052338.i05Nc6nP088839@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:38:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:38:06 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: Modify the booterror() declaration to match its definition. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:45:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:47:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NlNlA053316 for ; Mon, 5 Jan 2004 15:47:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NlFOd060164; Mon, 5 Jan 2004 15:47:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nk2qi026989; Mon, 5 Jan 2004 15:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Njhqi026949 for ; Mon, 5 Jan 2004 15:45:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NjgOd060135 for ; Mon, 5 Jan 2004 15:45:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NjgZv089136 for ; Mon, 5 Jan 2004 15:45:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Njg6Q089135; Mon, 5 Jan 2004 15:45:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401052345.i05Njg6Q089135@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:45:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.hh template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 15:45:42 Modified files: xorp/rtrmgr/: template_tree_node.hh template_tree_node.cc Log message: Specify the set of exceptions thrown by TemplateTreeNode::add_cmd() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:45:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:51:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NpYlA053988 for ; Mon, 5 Jan 2004 15:51:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NpPOd060220; Mon, 5 Jan 2004 15:51:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nk1qi026965; Mon, 5 Jan 2004 15:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Nj4qi026933 for ; Mon, 5 Jan 2004 15:45:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj4Od060108 for ; Mon, 5 Jan 2004 15:45:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05Nj4Zv089070 for ; Mon, 5 Jan 2004 15:45:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05Nj4en089069; Mon, 5 Jan 2004 15:45:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401052345.i05Nj4en089069@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:45:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ c_format.hh callback-gen.py callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/01/05 15:45:04 Modified files: xorp/libxorp/: c_format.hh callback-gen.py callback.hh Log message: Change indented preprocessor directives to stop kdoc complaints. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 15:50:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 15:51:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NpYlA053987 for ; Mon, 5 Jan 2004 15:51:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NpPOd060222; Mon, 5 Jan 2004 15:51:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05Np1qi027075; Mon, 5 Jan 2004 15:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i05NoMqi027064 for ; Mon, 5 Jan 2004 15:50:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NoLOd060210 for ; Mon, 5 Jan 2004 15:50:21 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i05NoLZv089230 for ; Mon, 5 Jan 2004 15:50:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i05NoLD2089229; Mon, 5 Jan 2004 15:50:21 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401052350.i05NoLD2089229@xorpc.icir.org> Date: Mon, 5 Jan 2004 15:50:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 04/01/05 15:50:21 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Add xrl interfaces and xrl targets. They have kdoc comments if the interface and target files are appropriately commented. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 17:54:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 17:55:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i061t8lA072393 for ; Mon, 5 Jan 2004 17:55:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i061t2Z9061495; Mon, 5 Jan 2004 17:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i061t0qi029221; Mon, 5 Jan 2004 17:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i061s2qi029208 for ; Mon, 5 Jan 2004 17:54:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i061s2Z9061485 for ; Mon, 5 Jan 2004 17:54:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i061s1Zv090478 for ; Mon, 5 Jan 2004 17:54:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i061s13I090477; Mon, 5 Jan 2004 17:54:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401060154.i061s13I090477@xorpc.icir.org> Date: Mon, 5 Jan 2004 17:54:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/01/05 17:54:01 Modified files: xorp/libxorp/: test_test_main.cc Log message: Spacing nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 18:56:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 18:57:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i062vAlA081853 for ; Mon, 5 Jan 2004 18:57:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i062v31h000529; Mon, 5 Jan 2004 18:57:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i062v1qi000082; Mon, 5 Jan 2004 18:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i062uPqi000068 for ; Mon, 5 Jan 2004 18:56:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i062uP1h000523 for ; Mon, 5 Jan 2004 18:56:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i062uPZv091059 for ; Mon, 5 Jan 2004 18:56:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i062uPsP091058; Mon, 5 Jan 2004 18:56:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401060256.i062uPsP091058@xorpc.icir.org> Date: Mon, 5 Jan 2004 18:56:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.hh conf_tree_node.cc master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 18:56:25 Modified files: xorp/rtrmgr/: conf_tree_node.hh conf_tree_node.cc master_conf_tree.cc Log message: Rename ConfigTreeNode::verify_configuration() to check_config_tree() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Mon Jan 5 18:55:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jan 2004 18:57:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i062vrlA081966 for ; Mon, 5 Jan 2004 18:57:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i062vl1h000537; Mon, 5 Jan 2004 18:57:47 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i062u1qi000055; Mon, 5 Jan 2004 18:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i062tTqi000044 for ; Mon, 5 Jan 2004 18:55:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i062tT1h000515 for ; Mon, 5 Jan 2004 18:55:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i062tSZv091019 for ; Mon, 5 Jan 2004 18:55:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i062tSpL091018; Mon, 5 Jan 2004 18:55:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401060255.i062tSpL091018@xorpc.icir.org> Date: Mon, 5 Jan 2004 18:55:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/05 18:55:28 Modified files: xorp/rtrmgr/: template_tree_node.cc Log message: Remove unnecessary function declaration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Tue Jan 6 12:20:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jan 2004 12:21:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KLBlA037666 for ; Tue, 6 Jan 2004 12:21:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KL4MI011076; Tue, 6 Jan 2004 12:21:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i06KL1qi017605; Tue, 6 Jan 2004 12:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i06KKMqi017584 for ; Tue, 6 Jan 2004 12:20:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KKMMI011072 for ; Tue, 6 Jan 2004 12:20:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KKMAF075481 for ; Tue, 6 Jan 2004 12:20:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i06KKMsk075480; Tue, 6 Jan 2004 12:20:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401062020.i06KKMsk075480@xorpc.icir.org> Date: Tue, 6 Jan 2004 12:20:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/kdoc/src/ kdocParseCxx.pm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/kdoc/src/ Changes by: hodson@xorpc.icir.org. 04/01/06 12:20:22 Modified files: other/kdoc/src/: kdocParseCxx.pm Log message: C89 and C99 both have rationale for white spaces before the # indicating preprocessor line and between the # and directive. Update parser accordingly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Tue Jan 6 12:22:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jan 2004 12:24:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KO9lA038091 for ; Tue, 6 Jan 2004 12:24:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KO3MI011104; Tue, 6 Jan 2004 12:24:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i06KO1qi017669; Tue, 6 Jan 2004 12:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i06KN0qi017637 for ; Tue, 6 Jan 2004 12:23:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KN0MI011088 for ; Tue, 6 Jan 2004 12:23:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i06KMxAF075784 for ; Tue, 6 Jan 2004 12:22:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i06KMx1o075783; Tue, 6 Jan 2004 12:22:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401062022.i06KMx1o075783@xorpc.icir.org> Date: Tue, 6 Jan 2004 12:22:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 04/01/06 12:22:59 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: If set use KDOC_CMD as the kdoc command to execute. Useful for debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Wed Jan 7 2:26:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 Jan 2004 02:27:40 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i07ARelA062775 for ; Wed, 7 Jan 2004 02:27:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i07ARYKU018755; Wed, 7 Jan 2004 02:27:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i07AR1qi000805; Wed, 7 Jan 2004 02:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i07AQJqi000794 for ; Wed, 7 Jan 2004 02:26:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i07AQJKU018749 for ; Wed, 7 Jan 2004 02:26:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i07AQJAF087348 for ; Wed, 7 Jan 2004 02:26:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i07AQJ1x087347; Wed, 7 Jan 2004 02:26:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401071026.i07AQJ1x087347@xorpc.icir.org> Date: Wed, 7 Jan 2004 2:26:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/01/07 02:26:19 Modified files: xorp/etc/templates/: snmp.tp Log message: Fix a syntax error _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:13:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:14:39 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090EdlA000291 for ; Thu, 8 Jan 2004 16:14:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090EVKU042937; Thu, 8 Jan 2004 16:14:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090E1CM012009; Thu, 8 Jan 2004 16:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090DqCM011998 for ; Thu, 8 Jan 2004 16:13:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090DqKU042933 for ; Thu, 8 Jan 2004 16:13:52 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090DqAF017608 for ; Thu, 8 Jan 2004 16:13:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090DqAK017607; Thu, 8 Jan 2004 16:13:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090013.i090DqAK017607@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:13:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_io.hh test_outputs.cc test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:13:52 Modified files: xorp/rip/: port_io.hh test_outputs.cc test_request.cc Log message: Change PortIO::send to take a vector for data rather than pointer and size argument. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:14:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:15:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090F9lA000383 for ; Thu, 8 Jan 2004 16:15:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090F3KU042952; Thu, 8 Jan 2004 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090F1CM012040; Thu, 8 Jan 2004 16:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090EbCM012022 for ; Thu, 8 Jan 2004 16:14:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090EbKU042939 for ; Thu, 8 Jan 2004 16:14:37 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090EbAF017666 for ; Thu, 8 Jan 2004 16:14:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090Eb1H017665; Thu, 8 Jan 2004 16:14:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090014.i090Eb1H017665@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:14:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:14:37 Modified files: xorp/rip/: constants.hh Log message: Add RIP_TTL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:15:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:16:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090GFlA000561 for ; Thu, 8 Jan 2004 16:16:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090G5KU042989; Thu, 8 Jan 2004 16:16:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090G2CM012084; Thu, 8 Jan 2004 16:16:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090FuCM012063 for ; Thu, 8 Jan 2004 16:15:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090FuKU042983 for ; Thu, 8 Jan 2004 16:15:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090FuAF017789 for ; Thu, 8 Jan 2004 16:15:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090Fuw8017788; Thu, 8 Jan 2004 16:15:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090015.i090Fuw8017788@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:15:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:15:56 Modified files: xorp/rip/: port.hh port.cc Log message: Sync with PortIOUser. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:15:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:16:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090GGlA000602 for ; Thu, 8 Jan 2004 16:16:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090G5KU042991; Thu, 8 Jan 2004 16:16:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090G1CM012072; Thu, 8 Jan 2004 16:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090FECM012054 for ; Thu, 8 Jan 2004 16:15:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090FEKU042971 for ; Thu, 8 Jan 2004 16:15:14 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090FEAF017741 for ; Thu, 8 Jan 2004 16:15:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090FEf7017740; Thu, 8 Jan 2004 16:15:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090015.i090FEf7017740@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:15:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:15:14 Modified files: xorp/rip/: port_manager.hh Log message: Add non-const ports() accessor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:17:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:18:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090I8lA000859 for ; Thu, 8 Jan 2004 16:18:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090I2KU043024; Thu, 8 Jan 2004 16:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090I0CM012161; Thu, 8 Jan 2004 16:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090H6CM012126 for ; Thu, 8 Jan 2004 16:17:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090H6KU043012 for ; Thu, 8 Jan 2004 16:17:06 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090H6AF017842 for ; Thu, 8 Jan 2004 16:17:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090H6qM017841; Thu, 8 Jan 2004 16:17:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090017.i090H6qM017841@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:17:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:17:06 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh Log message: Add socket4_user/0.1 to interfaces supported by RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:28:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:29:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090THlA002579 for ; Thu, 8 Jan 2004 16:29:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090TAKU043156; Thu, 8 Jan 2004 16:29:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090T0CM012370; Thu, 8 Jan 2004 16:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090SECM012351 for ; Thu, 8 Jan 2004 16:28:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090SEKU043146 for ; Thu, 8 Jan 2004 16:28:14 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090SDAF017946 for ; Thu, 8 Jan 2004 16:28:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090SD3S017945; Thu, 8 Jan 2004 16:28:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090028.i090SD3S017945@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:28:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.hh xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:28:13 Added files: xorp/rip/: xrl_port_io.hh xrl_port_io.cc Log message: First pass at Xrl based packet send code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Thu Jan 8 16:29:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jan 2004 16:30:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i090U8lA002719 for ; Thu, 8 Jan 2004 16:30:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090U2KU043165; Thu, 8 Jan 2004 16:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090U1CM012419; Thu, 8 Jan 2004 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i090T4CM012381 for ; Thu, 8 Jan 2004 16:29:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i090T4KU043152 for ; Thu, 8 Jan 2004 16:29:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i090T3AF017976 for ; Thu, 8 Jan 2004 16:29:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i090T354017975; Thu, 8 Jan 2004 16:29:03 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401090029.i090T354017975@xorpc.icir.org> Date: Thu, 8 Jan 2004 16:29:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in xorp_rip4.cc xrl_port_manager.cc xrl_port_manager.hh xrl_target4.cc xrl_target4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/08 16:29:03 Modified files: xorp/rip/: Makefile.am Makefile.in xorp_rip4.cc xrl_port_manager.cc xrl_port_manager.hh xrl_target4.cc xrl_target4.hh Log message: Assorted steps towards functional RIPv2. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:37 2005 Subject: No subject Fri Jan 9 15:18:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 Jan 2004 15:19:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i09NJPYE000649 for ; Fri, 9 Jan 2004 15:19:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i09NJKKU057078; Fri, 9 Jan 2004 15:19:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i09NJ0CM006392; Fri, 9 Jan 2004 15:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i09NIQCM006370 for ; Fri, 9 Jan 2004 15:18:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i09NIQKU057062 for ; Fri, 9 Jan 2004 15:18:26 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i09NIPAF058483 for ; Fri, 9 Jan 2004 15:18:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i09NIPbo058482; Fri, 9 Jan 2004 15:18:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401092318.i09NIPbo058482@xorpc.icir.org> Date: Fri, 9 Jan 2004 15:18:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ service.hh service.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/01/09 15:18:25 Modified files: xorp/libxorp/: service.hh service.cc Log message: Add name argument to ServiceBase to constructor and service_name accessor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 14:11:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 14:12:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0CMCYYE040949 for ; Mon, 12 Jan 2004 14:12:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0CMCSKU097530; Mon, 12 Jan 2004 14:12:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0CMC1CM007789; Mon, 12 Jan 2004 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0CMBRCM007776 for ; Mon, 12 Jan 2004 14:11:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0CMBRKU097523 for ; Mon, 12 Jan 2004 14:11:27 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0CMBRAF069675 for ; Mon, 12 Jan 2004 14:11:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0CMBR41069667; Mon, 12 Jan 2004 14:11:27 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401122211.i0CMBR41069667@xorpc.icir.org> Date: Mon, 12 Jan 2004 14:11:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc xorp/libfeaclient/ ifmgr_xrl_mirror.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/01/12 14:11:26 Modified files: xorp/fea/: xrl_socket_server.cc xorp/libfeaclient/: ifmgr_xrl_mirror.cc Log message: Add service name argument to ServiceBase constructors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:06:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:07:39 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D07dYE041995 for ; Mon, 12 Jan 2004 16:07:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D07MKU098645; Mon, 12 Jan 2004 16:07:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D070CM010332; Mon, 12 Jan 2004 16:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D06jCM010322 for ; Mon, 12 Jan 2004 16:06:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D06jKU098640 for ; Mon, 12 Jan 2004 16:06:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D06jAF088821 for ; Mon, 12 Jan 2004 16:06:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D06jJQ088820; Mon, 12 Jan 2004 16:06:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130006.i0D06jJQ088820@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:06:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:06:44 Modified files: xorp/rtrmgr/: boot.ll Log message: * Add support for parsing IPv6 addresses and prefixes, and for Ethernet MAC addresses. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:07:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:08:38 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D08cYE042012 for ; Mon, 12 Jan 2004 16:08:38 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D08WKU098674; Mon, 12 Jan 2004 16:08:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D081CM010371; Mon, 12 Jan 2004 16:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D07wCM010362 for ; Mon, 12 Jan 2004 16:07:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D07wKU098663 for ; Mon, 12 Jan 2004 16:07:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D07wAF088877 for ; Mon, 12 Jan 2004 16:07:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D07w6e088876; Mon, 12 Jan 2004 16:07:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130007.i0D07w6e088876@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:07:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.ll op_commands.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:07:58 Modified files: xorp/rtrmgr/: template.ll op_commands.ll Log message: Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:11:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:15:52 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0FqYE042069 for ; Mon, 12 Jan 2004 16:15:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0FkKU098790; Mon, 12 Jan 2004 16:15:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0C1CM010465; Mon, 12 Jan 2004 16:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0BXCM010448 for ; Mon, 12 Jan 2004 16:11:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0BWKU098717 for ; Mon, 12 Jan 2004 16:11:32 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0BWAF089006 for ; Mon, 12 Jan 2004 16:11:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0BWaV089005; Mon, 12 Jan 2004 16:11:32 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401130011.i0D0BWaV089005@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:11:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ c++refs.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: hodson@xorpc.icir.org. 04/01/12 16:11:32 Modified files: xorp/devnotes/: c++refs.txt Log message: Add "Technical Report on C++ performance". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:10:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:16:30 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0GUYE042086 for ; Mon, 12 Jan 2004 16:16:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0GPKU098793; Mon, 12 Jan 2004 16:16:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0B1CM010427; Mon, 12 Jan 2004 16:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0A5CM010404 for ; Mon, 12 Jan 2004 16:10:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0A5KU098695 for ; Mon, 12 Jan 2004 16:10:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0A5AF088942 for ; Mon, 12 Jan 2004 16:10:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0A5T0088941; Mon, 12 Jan 2004 16:10:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130010.i0D0A5T0088941@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:10:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:10:05 Modified files: xorp/rtrmgr/: boot.yy Log message: * Add support for parsing IPv6 addresses and prefixes, and for Ethernet MAC addresses. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:12:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:18:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0ICYE042103 for ; Mon, 12 Jan 2004 16:18:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0I5KU098810; Mon, 12 Jan 2004 16:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0D1CM010504; Mon, 12 Jan 2004 16:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0C9CM010488 for ; Mon, 12 Jan 2004 16:12:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0C9KU098732 for ; Mon, 12 Jan 2004 16:12:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0C9AF089053 for ; Mon, 12 Jan 2004 16:12:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0C9FF089052; Mon, 12 Jan 2004 16:12:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130012.i0D0C9FF089052@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:12:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.yy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:12:08 Modified files: xorp/rtrmgr/: op_commands.yy Log message: Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:17:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:18:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0IXYE042120 for ; Mon, 12 Jan 2004 16:18:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0ISKU098815; Mon, 12 Jan 2004 16:18:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0I1CM010638; Mon, 12 Jan 2004 16:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0HACM010614 for ; Mon, 12 Jan 2004 16:17:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0H9KU098800 for ; Mon, 12 Jan 2004 16:17:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0H9AF089197 for ; Mon, 12 Jan 2004 16:17:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0H9cr089196; Mon, 12 Jan 2004 16:17:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130017.i0D0H9cr089196@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:17:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in xorp/rtrmgr/ rtrmgr_error.hh xorp/rtrmgr/ main_rtrmgr.hh parse_error.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:17:09 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in Added files: xorp/rtrmgr/: rtrmgr_error.hh Removed files: xorp/rtrmgr/: main_rtrmgr.hh parse_error.hh Log message: Remove files main_rtrmgr.hh and parse_rtrmgr.hh, and move the definition of classes InitError and ParseError to the new file rtrmgr_error.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:13:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:19:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JGYE042137 for ; Mon, 12 Jan 2004 16:19:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JBKU098823; Mon, 12 Jan 2004 16:19:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0E0CM010540; Mon, 12 Jan 2004 16:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0DbCM010524 for ; Mon, 12 Jan 2004 16:13:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0DbKU098753 for ; Mon, 12 Jan 2004 16:13:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0DbAF089103 for ; Mon, 12 Jan 2004 16:13:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0DbhQ089102; Mon, 12 Jan 2004 16:13:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130013.i0D0DbhQ089102@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:13:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ y.boot_tab.cc y.boot_tab.h y.opcmd_tab.cc y.opcmd_tab.h y.tplt_tab.cc y.tplt_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:13:37 Modified files: xorp/rtrmgr/: y.boot_tab.cc y.boot_tab.h y.opcmd_tab.cc y.opcmd_tab.h y.tplt_tab.cc y.tplt_tab.h Log message: Regenerate auto-generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:18:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:19:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JTYE042154 for ; Mon, 12 Jan 2004 16:19:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JOKU098825; Mon, 12 Jan 2004 16:19:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0J1CM010677; Mon, 12 Jan 2004 16:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0I3CM010648 for ; Mon, 12 Jan 2004 16:18:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0I3KU098803 for ; Mon, 12 Jan 2004 16:18:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0I3AF089240 for ; Mon, 12 Jan 2004 16:18:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0I3sV089239; Mon, 12 Jan 2004 16:18:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130018.i0D0I3sV089239@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:18:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ popen.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:18:03 Modified files: xorp/rtrmgr/: popen.cc Log message: Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:11:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:19:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JrYE042171 for ; Mon, 12 Jan 2004 16:19:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JlKU098829; Mon, 12 Jan 2004 16:19:47 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0C2CM010477; Mon, 12 Jan 2004 16:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0BiCM010454 for ; Mon, 12 Jan 2004 16:11:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0BhKU098719 for ; Mon, 12 Jan 2004 16:11:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0BhAF089018 for ; Mon, 12 Jan 2004 16:11:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0Bhrr089017; Mon, 12 Jan 2004 16:11:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130011.i0D0Bhrr089017@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:11:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.yy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:11:43 Modified files: xorp/rtrmgr/: template.yy Log message: * Fix a memory leak * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:19:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:21:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0LFYE042208 for ; Mon, 12 Jan 2004 16:21:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0LAKU098862; Mon, 12 Jan 2004 16:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0K1CM010705; Mon, 12 Jan 2004 16:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0JqCM010696 for ; Mon, 12 Jan 2004 16:19:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JpKU098831 for ; Mon, 12 Jan 2004 16:19:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0JpAF089285 for ; Mon, 12 Jan 2004 16:19:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0JoJQ089284; Mon, 12 Jan 2004 16:19:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130019.i0D0JoJQ089284@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:19:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ unexpanded_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:19:50 Modified files: xorp/rtrmgr/: unexpanded_xrl.cc Log message: Modify method UnexpandedXrl::expand() such that it always deletes the previously cached result from expanding the XRL. This is needed so we don't cache stale XRL (e.g., if the values of some of the XRL expanded variables is changed after reconfiguration). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:20:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:21:35 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0LZYE042225 for ; Mon, 12 Jan 2004 16:21:35 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0LTKU098864; Mon, 12 Jan 2004 16:21:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0L1CM010738; Mon, 12 Jan 2004 16:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0KrCM010727 for ; Mon, 12 Jan 2004 16:20:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0KqKU098858 for ; Mon, 12 Jan 2004 16:20:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0KqAF089362 for ; Mon, 12 Jan 2004 16:20:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0KqeD089361; Mon, 12 Jan 2004 16:20:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130020.i0D0KqeD089361@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:20:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ randomness.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:20:52 Modified files: xorp/rtrmgr/: randomness.cc Log message: Nitlet _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:22:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:28:58 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0SwYE042297 for ; Mon, 12 Jan 2004 16:28:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0SqKU098931; Mon, 12 Jan 2004 16:28:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0N1CM010782; Mon, 12 Jan 2004 16:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0MiCM010772 for ; Mon, 12 Jan 2004 16:22:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0MiKU098876 for ; Mon, 12 Jan 2004 16:22:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0MiAF089410 for ; Mon, 12 Jan 2004 16:22:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0MiDl089409; Mon, 12 Jan 2004 16:22:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130022.i0D0MiDl089409@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:22:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:22:44 Modified files: xorp/rtrmgr/: op_commands.hh op_commands.cc Log message: * Include "rtrmgr_error.hh" instead of "parse_error.hh" * Update the declaration of extern function parse_opcmd() * If the OpCommandList constructor fails, then throw InitError instead of exit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:24:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:30:57 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0UvYE042367 for ; Mon, 12 Jan 2004 16:30:57 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0UpKU098967; Mon, 12 Jan 2004 16:30:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0P0CM010825; Mon, 12 Jan 2004 16:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0OaCM010805 for ; Mon, 12 Jan 2004 16:24:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0OaKU098892 for ; Mon, 12 Jan 2004 16:24:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0OaAF089532 for ; Mon, 12 Jan 2004 16:24:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0OaaM089531; Mon, 12 Jan 2004 16:24:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130024.i0D0OaaM089531@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:24:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:24:36 Modified files: xorp/rtrmgr/: cli.cc Log message: Rename ConfigTreeNode::template_node() to template_tree_node() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:37:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:42:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0gBYE042525 for ; Mon, 12 Jan 2004 16:42:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0g5KU099084; Mon, 12 Jan 2004 16:42:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0b1CM011115; Mon, 12 Jan 2004 16:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0b0CM011106 for ; Mon, 12 Jan 2004 16:37:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0b0KU099031 for ; Mon, 12 Jan 2004 16:37:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0b0AF089671 for ; Mon, 12 Jan 2004 16:37:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0b0qg089670; Mon, 12 Jan 2004 16:37:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130037.i0D0b0qg089670@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:37:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.hh conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:37:00 Modified files: xorp/rtrmgr/: conf_tree_node.hh conf_tree_node.cc Log message: * Rename ConfigTreeNode::template_node() to template_tree_node() * Move ConfigTreeNode::get_module_name_by_variable() to class TemplateTreeNode * Remove unnecessary call to allow_cmd->execute(*this) with a call allow_cmd->verify_variable_value() that verifies the variable values. * If the return variable type of ConfigTreeNode::find_varname_node() is TEMPLATE_DEFAULT, then the return ConfigTreeNode may be NULL. In that case, the caller should call TemplateTreeNode::find_varname_node() to get the template tree node that contains the default template value. * Add support for keyword "DEFAULT" to specify the default template value of a variable. E.g., variable "$(foo.DEFAULT)" or "$(DEFAULT)" or "$(@.DEFAULT)" * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:40:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:46:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0k7YE042596 for ; Mon, 12 Jan 2004 16:46:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0k1KU099135; Mon, 12 Jan 2004 16:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0f1CM011224; Mon, 12 Jan 2004 16:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0e7CM011200 for ; Mon, 12 Jan 2004 16:40:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0e7KU099071 for ; Mon, 12 Jan 2004 16:40:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0e7AF089716 for ; Mon, 12 Jan 2004 16:40:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0e7fN089715; Mon, 12 Jan 2004 16:40:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130040.i0D0e7fN089715@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:40:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.hh conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:40:07 Modified files: xorp/rtrmgr/: conf_tree.hh conf_tree.cc Log message: * Modify ConfigTree::parse() to return-by-reference the error message (if there is an error). * Don't call exit() if there is a parsing error, but throw an exception instead. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:44:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:48:52 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0mpYE042630 for ; Mon, 12 Jan 2004 16:48:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0mkKU099164; Mon, 12 Jan 2004 16:48:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0j1CM011313; Mon, 12 Jan 2004 16:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0iACM011284 for ; Mon, 12 Jan 2004 16:44:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0iAKU099101 for ; Mon, 12 Jan 2004 16:44:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0iAAF089780 for ; Mon, 12 Jan 2004 16:44:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0iA3T089779; Mon, 12 Jan 2004 16:44:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130044.i0D0iA3T089779@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:44:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.hh master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:44:10 Modified files: xorp/rtrmgr/: master_conf_tree.hh master_conf_tree.cc Log message: * Include "rtrmgr_error.hh" instead of "main_rtrmgr.hh" and "parse_error.hh" * Modify MasterConfTree::parse() to return-by-reference the error message (if there is an error). * If there is an error inside the MasterConfTree constructor, then always throw an InitError exception * Get rid of catching UnexpandedVariable, because this exception is replaced with ParseError exception in an earlier stage when the template and configuration trees are scanned for errors. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:45:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:51:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0pWYE042667 for ; Mon, 12 Jan 2004 16:51:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0pPKU099202; Mon, 12 Jan 2004 16:51:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0k1CM011336; Mon, 12 Jan 2004 16:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0jnCM011327 for ; Mon, 12 Jan 2004 16:45:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0jmKU099130 for ; Mon, 12 Jan 2004 16:45:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0jmAF089871 for ; Mon, 12 Jan 2004 16:45:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0jm0a089870; Mon, 12 Jan 2004 16:45:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130045.i0D0jm0a089870@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:45:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:45:48 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: * Catch InitError exception when creating a new TemplateTree instead of XorpException * Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:38 2005 Subject: No subject Mon Jan 12 16:46:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:52:59 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0qwYE042684 for ; Mon, 12 Jan 2004 16:52:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0qpKU099212; Mon, 12 Jan 2004 16:52:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0l0CM011373; Mon, 12 Jan 2004 16:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0kwCM011364 for ; Mon, 12 Jan 2004 16:46:58 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0kwKU099141; Mon, 12 Jan 2004 16:46:58 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0kwZL088251; Mon, 12 Jan 2004 16:46:58 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200401130046.i0D0kwZL088251@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc In-Reply-To: Your message of "Mon, 12 Jan 2004 16:22:44." <200401130022.i0D0MiDl089409@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Jan 2004 16:46:58 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Could you please commit parse_error.hh? - Orion /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/rtrmgr/ | Changes by: pavlin@xorpc.icir.org. 04/01/12 16:22:44 | | Modified files: | xorp/rtrmgr/: op_commands.hh op_commands.cc | | Log message: | * Include "rtrmgr_error.hh" instead of "parse_error.hh" | * Update the declaration of extern function parse_opcmd() | * If the OpCommandList constructor fails, then throw InitError | instead of exit. | | _______________________________________________ | Xorp-cvs mailing list | Xorp-cvs@icir.org | http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 16:47:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:53:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0r6YE042701 for ; Mon, 12 Jan 2004 16:53:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0r1KU099214; Mon, 12 Jan 2004 16:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0m1CM011416; Mon, 12 Jan 2004 16:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0l8CM011384 for ; Mon, 12 Jan 2004 16:47:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0l8KU099144 for ; Mon, 12 Jan 2004 16:47:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0l8AF089935 for ; Mon, 12 Jan 2004 16:47:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0l8k5089934; Mon, 12 Jan 2004 16:47:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130047.i0D0l8k5089934@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:47:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.hh module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:47:08 Modified files: xorp/rtrmgr/: module_command.hh module_command.cc Log message: Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 16:49:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:53:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0rpYE042718 for ; Mon, 12 Jan 2004 16:53:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0rjKU099222; Mon, 12 Jan 2004 16:53:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0o1CM011512; Mon, 12 Jan 2004 16:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0nICM011472 for ; Mon, 12 Jan 2004 16:49:18 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0nIKU099167; Mon, 12 Jan 2004 16:49:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0nIAw050989; Mon, 12 Jan 2004 16:49:18 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200401130049.i0D0nIAw050989@possum.icir.org> To: Orion Hodson cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc In-Reply-To: Message from Orion Hodson of "Mon, 12 Jan 2004 16:46:58 PST." <200401130046.i0D0kwZL088251@puma.icir.org> Date: Mon, 12 Jan 2004 16:49:18 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > Could you please commit parse_error.hh? I think I already commited it. Though, I have several more commits, so you may want to postpone any "cvs update" until I am done. I will send an explicit email to the list. Pavlin > - Orion > > /-- Pavlin Radoslavov wrote: > | CVSROOT: /usr/local/share/doc/apache/cvs > | Module name: xorp > | Repository: xorp/rtrmgr/ > | Changes by: pavlin@xorpc.icir.org. 04/01/12 16:22:44 > | > | Modified files: > | xorp/rtrmgr/: op_commands.hh op_commands.cc > | > | Log message: > | * Include "rtrmgr_error.hh" instead of "parse_error.hh" > | * Update the declaration of extern function parse_opcmd() > | * If the OpCommandList constructor fails, then throw InitError > | instead of exit. > | > | _______________________________________________ > | Xorp-cvs mailing list > | Xorp-cvs@icir.org > | http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs > > _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 16:52:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:54:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0sQYE042735 for ; Mon, 12 Jan 2004 16:54:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0sJKU099226; Mon, 12 Jan 2004 16:54:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0r1CM011571; Mon, 12 Jan 2004 16:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0qVCM011560 for ; Mon, 12 Jan 2004 16:52:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0qVKU099210 for ; Mon, 12 Jan 2004 16:52:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0qVAF090045 for ; Mon, 12 Jan 2004 16:52:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0qV2u090044; Mon, 12 Jan 2004 16:52:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130052.i0D0qV2u090044@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:52:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_conf_tree.hh slave_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:52:31 Modified files: xorp/rtrmgr/: slave_conf_tree.hh slave_conf_tree.cc Log message: * Include "rtrmgr_error.hh" instead of "parse_error.hh" * Modify SlaveConfigTree constructor to throw InitError if there is an error. * Add a return-by-reference errmsg argument to SlaveConfigTree::parse() that contains the error message if there is an error. * Get rid of catching the obsolete UnexpandedVariable exception. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 16:57:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 16:58:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0wSYE042772 for ; Mon, 12 Jan 2004 16:58:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0wNKU099282; Mon, 12 Jan 2004 16:58:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0w0CM011726; Mon, 12 Jan 2004 16:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0vsCM011716 for ; Mon, 12 Jan 2004 16:57:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0vsKU099278 for ; Mon, 12 Jan 2004 16:57:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0vrAF090163 for ; Mon, 12 Jan 2004 16:57:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0vrFF090162; Mon, 12 Jan 2004 16:57:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130057.i0D0vrFF090162@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:57:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:57:53 Modified files: xorp/rtrmgr/: task.cc Log message: * Explicitly check whether XrlAction::expand_xrl_variables() succeeded, and print the appropriate error message. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 16:55:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:01:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D11IYE042847 for ; Mon, 12 Jan 2004 17:01:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D11BKU099321; Mon, 12 Jan 2004 17:01:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0u1CM011674; Mon, 12 Jan 2004 16:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D0t1CM011635 for ; Mon, 12 Jan 2004 16:55:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0t0KU099233 for ; Mon, 12 Jan 2004 16:55:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D0t0AF090088 for ; Mon, 12 Jan 2004 16:55:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D0t0J6090087; Mon, 12 Jan 2004 16:55:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130055.i0D0t0J6090087@xorpc.icir.org> Date: Mon, 12 Jan 2004 16:55:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 16:55:00 Modified files: xorp/rtrmgr/: slave_conf_tree_node.cc Log message: * Renaming: - replace template_node() with template_tree_node() - replace _template with _template_tree_node * Get rid of inline verification of allowed values, and use AllowCommand::verify_variable_value() instead _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:06:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:12:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1CHYE042974 for ; Mon, 12 Jan 2004 17:12:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1CBKU099427; Mon, 12 Jan 2004 17:12:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D170CM011940; Mon, 12 Jan 2004 17:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D16jCM011931 for ; Mon, 12 Jan 2004 17:06:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D16iKU099372 for ; Mon, 12 Jan 2004 17:06:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D16iAF090264 for ; Mon, 12 Jan 2004 17:06:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D16igQ090263; Mon, 12 Jan 2004 17:06:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130106.i0D16igQ090263@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:06:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.hh template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:06:44 Modified files: xorp/rtrmgr/: template_commands.hh template_commands.cc Log message: * Include "rtrmgr_error.hh" instead of "parse_error.hh" * Get rid of exception UnexpandedVariable and use ParseError instead. * Implement new method Action::check_referred_variables() that verifies that all referred variables in an action have valid name in the template tree. Add a method with the same name to class Command that verifies all actions in a command. * Modify expand_xrl_variables() to return-by-reference the error message (if there is an error). * Remove argument ConfigTreeNode& from methods action_complete() and affected_xrl_modules(), because it is not needed anymore. * Implement new method AllowCommand::verify_variable_value() that verifies the allowed valies of a variable, and get rid of method execute() * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:12:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:13:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1DCYE043010 for ; Mon, 12 Jan 2004 17:13:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1D5KU099440; Mon, 12 Jan 2004 17:13:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1D2CM012082; Mon, 12 Jan 2004 17:13:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1CgCM012062 for ; Mon, 12 Jan 2004 17:12:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1CgKU099431 for ; Mon, 12 Jan 2004 17:12:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1CgAF090351 for ; Mon, 12 Jan 2004 17:12:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D1Cg0O090350; Mon, 12 Jan 2004 17:12:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130112.i0D1Cg0O090350@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:12:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.hh template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:12:42 Modified files: xorp/rtrmgr/: template_tree_node.hh template_tree_node.cc Log message: * Include "rtrmgr_error.hh" instead of "parse_error.hh" * Add new method TemplateTreeNode::check_template_tree() that checks the template subtree rooted in a node for syntax errors. For now, we check that all referred variable names in the template tree are valid. * Move method ConfigTreeNode::get_module_name_by_variable() to class TemplateTreeNode * Modify TemplateTreeNode::find_varname_node() to support the new keyword DEFAULT when refererring the default value of a template variable. E.g.: "$(foo.DEFAULT)", "$(DEFAULT)", "$(@.DEFAULT)" * Misc cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:15:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:19:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1JpYE043130 for ; Mon, 12 Jan 2004 17:19:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1JkKU099520; Mon, 12 Jan 2004 17:19:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1G1CM012151; Mon, 12 Jan 2004 17:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1F9CM012133 for ; Mon, 12 Jan 2004 17:15:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1F9KU099479 for ; Mon, 12 Jan 2004 17:15:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1F9AF090428 for ; Mon, 12 Jan 2004 17:15:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D1F9JU090427; Mon, 12 Jan 2004 17:15:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130115.i0D1F9JU090427@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:15:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree.hh template_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:15:09 Modified files: xorp/rtrmgr/: template_tree.hh template_tree.cc Log message: * Include "rtrmgr_error.hh" instead of "parse_error.hh" * If there is an error inside the TemplateTree constructor, then throw InitError instead of calling exit(). * Call TemplateTreeNode::check_template_tree() inside the TemplateTree constructor to verify the template tree, and throw InitError if there is an error. * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:17:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:23:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1NWYE043167 for ; Mon, 12 Jan 2004 17:23:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1NPKU099562; Mon, 12 Jan 2004 17:23:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1I1CM012194; Mon, 12 Jan 2004 17:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1HXCM012182 for ; Mon, 12 Jan 2004 17:17:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1HXKU099502 for ; Mon, 12 Jan 2004 17:17:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1HWAF090476 for ; Mon, 12 Jan 2004 17:17:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D1HW4O090475; Mon, 12 Jan 2004 17:17:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130117.i0D1HW4O090475@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:17:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.hh xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:17:32 Modified files: xorp/rtrmgr/: xorpsh_main.hh xorpsh_main.cc Log message: * Catch InitError as appropriate * Initialize uninitialized pointers inside XorpShell constructor * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:18:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:24:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1OHYE043184 for ; Mon, 12 Jan 2004 17:24:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1OBKU099568; Mon, 12 Jan 2004 17:24:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1J1CM012239; Mon, 12 Jan 2004 17:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1IQCM012209 for ; Mon, 12 Jan 2004 17:18:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1IQKU099510 for ; Mon, 12 Jan 2004 17:18:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1IPAF090514 for ; Mon, 12 Jan 2004 17:18:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D1IPrQ090513; Mon, 12 Jan 2004 17:18:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130118.i0D1IPrQ090513@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:18:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ test_sample_config.cc test_templates.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:18:25 Modified files: xorp/rtrmgr/: test_sample_config.cc test_templates.cc Log message: * Catch InitError as appropriate * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:20:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:24:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1OpYE043218 for ; Mon, 12 Jan 2004 17:24:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1OjKU099573; Mon, 12 Jan 2004 17:24:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1L1CM012288; Mon, 12 Jan 2004 17:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1K7CM012266 for ; Mon, 12 Jan 2004 17:20:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1K7KU099542 for ; Mon, 12 Jan 2004 17:20:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1K6AF090572 for ; Mon, 12 Jan 2004 17:20:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D1K6Qg090571; Mon, 12 Jan 2004 17:20:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130120.i0D1K6Qg090571@xorpc.icir.org> Date: Mon, 12 Jan 2004 17:20:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/01/12 17:20:06 Modified files: xorp/etc/templates/: fea.tp Log message: Add node TID to the FEA template tree. This node is required, because now all variable names inside the template tree must refer to a valid template tree node (for verification purpose). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 17:26:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 17:30:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1UpYE043362 for ; Mon, 12 Jan 2004 17:30:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1UjKU099641; Mon, 12 Jan 2004 17:30:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1R0CM012424; Mon, 12 Jan 2004 17:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D1QOCM012406 for ; Mon, 12 Jan 2004 17:26:24 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1QOKU099603; Mon, 12 Jan 2004 17:26:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D1QOAw052002; Mon, 12 Jan 2004 17:26:24 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200401130126.i0D1QOAw052002@possum.icir.org> To: Pavlin Radoslavov cc: Orion Hodson , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc In-Reply-To: Message from Pavlin Radoslavov of "Mon, 12 Jan 2004 16:49:18 PST." <200401130049.i0D0nIAw050989@possum.icir.org> Date: Mon, 12 Jan 2004 17:26:24 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , OK, I am done with the bulk of CVS commits inside xorp/rtrmgr, so now it should be safe to do "cvs update" in that directory. Pavlin > > Could you please commit parse_error.hh? > > I think I already commited it. Though, I have several more commits, > so you may want to postpone any "cvs update" until I am done. I will > send an explicit email to the list. > > Pavlin > > > > - Orion > > > > /-- Pavlin Radoslavov wrote: > > | CVSROOT: /usr/local/share/doc/apache/cvs > > | Module name: xorp > > | Repository: xorp/rtrmgr/ > > | Changes by: pavlin@xorpc.icir.org. 04/01/12 16:22:44 > > | > > | Modified files: > > | xorp/rtrmgr/: op_commands.hh op_commands.cc > > | > > | Log message: > > | * Include "rtrmgr_error.hh" instead of "parse_error.hh" > > | * Update the declaration of extern function parse_opcmd() > > | * If the OpCommandList constructor fails, then throw InitError > > | instead of exit. > > | > > | _______________________________________________ > > | Xorp-cvs mailing list > > | Xorp-cvs@icir.org > > | http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs > > > > > > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 18:02:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 18:03:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D23YYE043593 for ; Mon, 12 Jan 2004 18:03:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D23QKU099949; Mon, 12 Jan 2004 18:03:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D230CM013128; Mon, 12 Jan 2004 18:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D22bCM013117 for ; Mon, 12 Jan 2004 18:02:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D22bKU099938 for ; Mon, 12 Jan 2004 18:02:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D22bAF003791 for ; Mon, 12 Jan 2004 18:02:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D22bQk003790; Mon, 12 Jan 2004 18:02:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130202.i0D22bQk003790@xorpc.icir.org> Date: Mon, 12 Jan 2004 18:02:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 18:02:37 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: * Update the rtrmgr documentation: - Add text to mention that the template tree is verified on startup - Add text and an example about referrencing the default template value of a variable. E.g.: $(DEFAULT) or (@.DEFAULT) or $(foo.bar.DEFAULT) - Add text and an example that all variable names in the template tree must refer to valid nodes in the template tree. * Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 18:05:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 18:09:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D29pYE043630 for ; Mon, 12 Jan 2004 18:09:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D29kKU000113; Mon, 12 Jan 2004 18:09:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D261CM013200; Mon, 12 Jan 2004 18:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D25mCM013191 for ; Mon, 12 Jan 2004 18:05:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D25mKU099992 for ; Mon, 12 Jan 2004 18:05:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D25mAF003843 for ; Mon, 12 Jan 2004 18:05:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D25mq1003842; Mon, 12 Jan 2004 18:05:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401130205.i0D25mq1003842@xorpc.icir.org> Date: Mon, 12 Jan 2004 18:05:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/12 18:05:48 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 22:09:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 22:11:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6BAYE045102 for ; Mon, 12 Jan 2004 22:11:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6B4KU001811; Mon, 12 Jan 2004 22:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D6A0CM016514; Mon, 12 Jan 2004 22:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D69XCM016501 for ; Mon, 12 Jan 2004 22:09:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D69XKU001781 for ; Mon, 12 Jan 2004 22:09:33 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D69XAF005247 for ; Mon, 12 Jan 2004 22:09:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D69XMg005246; Mon, 12 Jan 2004 22:09:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401130609.i0D69XMg005246@xorpc.icir.org> Date: Mon, 12 Jan 2004 22:09:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ service.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/01/12 22:09:33 Modified files: xorp/libxorp/: service.hh Log message: Change default service name from empty string to "Unknown". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Mon Jan 12 22:12:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jan 2004 22:13:38 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6DcYE045135 for ; Mon, 12 Jan 2004 22:13:38 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6DWKU001826; Mon, 12 Jan 2004 22:13:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D6D0CM016561; Mon, 12 Jan 2004 22:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0D6CCCM016546 for ; Mon, 12 Jan 2004 22:12:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6CCKU001820 for ; Mon, 12 Jan 2004 22:12:12 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0D6CCAF005296 for ; Mon, 12 Jan 2004 22:12:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0D6CC04005295; Mon, 12 Jan 2004 22:12:12 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401130612.i0D6CC04005295@xorpc.icir.org> Date: Mon, 12 Jan 2004 22:12:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ status_codes.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/01/12 22:12:12 Modified files: xorp/libxorp/: status_codes.h Log message: Refer to process states by enumeration value for the benefit of skim readers, ie NULL -> PROC_NULL, READY -> PROC_READY, and so on. Change comment to a kdoc string and wrapper contents as pre-formatted text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Tue Jan 13 12:37:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 12:38:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKc9jq005439 for ; Tue, 13 Jan 2004 12:38:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKc3KU011953; Tue, 13 Jan 2004 12:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKc1gS002264; Tue, 13 Jan 2004 12:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKbAgS002230 for ; Tue, 13 Jan 2004 12:37:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKb9KU011941 for ; Tue, 13 Jan 2004 12:37:09 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKb9AF093284 for ; Tue, 13 Jan 2004 12:37:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0DKb9i8093283; Tue, 13 Jan 2004 12:37:09 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401132037.i0DKb9i8093283@xorpc.icir.org> Date: Tue, 13 Jan 2004 12:37:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/13 12:37:09 Modified files: xorp/rip/: xrl_port_io.hh Log message: Set service name in constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Tue Jan 13 12:38:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 12:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKdCjq005639 for ; Tue, 13 Jan 2004 12:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKd3KU011963; Tue, 13 Jan 2004 12:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKd1gS002293; Tue, 13 Jan 2004 12:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKc7gS002274 for ; Tue, 13 Jan 2004 12:38:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKc7KU011955 for ; Tue, 13 Jan 2004 12:38:07 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKc7AF093414 for ; Tue, 13 Jan 2004 12:38:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0DKc7RB093413; Tue, 13 Jan 2004 12:38:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401132038.i0DKc7RB093413@xorpc.icir.org> Date: Tue, 13 Jan 2004 12:38:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_process_spy.cc xrl_port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/13 12:38:07 Modified files: xorp/rip/: xrl_process_spy.cc xrl_port_manager.hh Log message: Set service name in ServiceBase constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:39 2005 Subject: No subject Tue Jan 13 12:38:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 12:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKdCjq005656 for ; Tue, 13 Jan 2004 12:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKd3KU011965; Tue, 13 Jan 2004 12:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKd1gS002305; Tue, 13 Jan 2004 12:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKcXgS002280 for ; Tue, 13 Jan 2004 12:38:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKcXKU011957 for ; Tue, 13 Jan 2004 12:38:33 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKcXAF093493 for ; Tue, 13 Jan 2004 12:38:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0DKcXCJ093492; Tue, 13 Jan 2004 12:38:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401132038.i0DKcXCJ093492@xorpc.icir.org> Date: Tue, 13 Jan 2004 12:38:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_rib_notifier.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/13 12:38:33 Modified files: xorp/rip/: xrl_rib_notifier.cc Log message: Set service name in ServiceBase constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Tue Jan 13 12:39:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 12:40:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKe8jq005989 for ; Tue, 13 Jan 2004 12:40:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKe2KU011982; Tue, 13 Jan 2004 12:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKe1gS002348; Tue, 13 Jan 2004 12:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKdFgS002317 for ; Tue, 13 Jan 2004 12:39:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKdFKU011967 for ; Tue, 13 Jan 2004 12:39:15 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKdEAF093590 for ; Tue, 13 Jan 2004 12:39:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0DKdESu093589; Tue, 13 Jan 2004 12:39:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401132039.i0DKdESu093589@xorpc.icir.org> Date: Tue, 13 Jan 2004 12:39:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/13 12:39:14 Modified files: xorp/rip/: xrl_target4.cc Log message: Additional debug messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Tue Jan 13 12:43:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 12:44:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKi8jq006646 for ; Tue, 13 Jan 2004 12:44:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKi2KU012034; Tue, 13 Jan 2004 12:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKi0gS002444; Tue, 13 Jan 2004 12:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0DKhAgS002426 for ; Tue, 13 Jan 2004 12:43:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKh9KU012026 for ; Tue, 13 Jan 2004 12:43:09 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0DKh9AF094068 for ; Tue, 13 Jan 2004 12:43:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0DKh9vT094067; Tue, 13 Jan 2004 12:43:09 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401132043.i0DKh9vT094067@xorpc.icir.org> Date: Tue, 13 Jan 2004 12:43:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/13 12:43:09 Modified files: xorp/rip/: xorp_rip4.cc Log message: Add code to watch status of assorted RIP entities and update the info for the Xrl get_status. Change main eventloop to run while no RIP entities have failed. Shutdown RIP entities in case of failure. Run until they all transition into SHUTDOWN or FAILED or until an arbitrary time has elapsed. Fix port range check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Tue Jan 13 17:14:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 17:15:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1FBjq059108 for ; Tue, 13 Jan 2004 17:15:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1F5KU014655; Tue, 13 Jan 2004 17:15:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E1F2gS008447; Tue, 13 Jan 2004 17:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E1EBgS008424 for ; Tue, 13 Jan 2004 17:14:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1EBKU014646 for ; Tue, 13 Jan 2004 17:14:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1EBAF065738 for ; Tue, 13 Jan 2004 17:14:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0E1EBHI065737; Tue, 13 Jan 2004 17:14:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401140114.i0E1EBHI065737@xorpc.icir.org> Date: Tue, 13 Jan 2004 17:14:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/13 17:14:10 Modified files: xorp/rtrmgr/: module_command.cc Log message: Allow the arguments to template commands "%modinfo provides" and "%modinfo depends" to be inside quotes. The quotes are stripped-away internally so they are not mandatory. [Problem spotted by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Tue Jan 13 17:42:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 17:43:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1h8jq069047 for ; Tue, 13 Jan 2004 17:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1h3KU014873; Tue, 13 Jan 2004 17:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E1h1gS008927; Tue, 13 Jan 2004 17:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E1gYgS008912 for ; Tue, 13 Jan 2004 17:42:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1gXKU014866 for ; Tue, 13 Jan 2004 17:42:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E1gXAF065997 for ; Tue, 13 Jan 2004 17:42:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0E1gXD2065996; Tue, 13 Jan 2004 17:42:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401140142.i0E1gXD2065996@xorpc.icir.org> Date: Tue, 13 Jan 2004 17:42:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/13 17:42:33 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: Move most of the rtrmgr-specific stuff (components initialization, main loop, etc) to a separate function rtrmgr_main() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Tue Jan 13 19:00:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jan 2004 19:01:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E31Djq080872 for ; Tue, 13 Jan 2004 19:01:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E316KU015449; Tue, 13 Jan 2004 19:01:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E311gS009997; Tue, 13 Jan 2004 19:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E30agS009987 for ; Tue, 13 Jan 2004 19:00:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E30aKU015447 for ; Tue, 13 Jan 2004 19:00:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E30aAF066756 for ; Tue, 13 Jan 2004 19:00:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0E30agn066755; Tue, 13 Jan 2004 19:00:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401140300.i0E30agn066755@xorpc.icir.org> Date: Tue, 13 Jan 2004 19:00:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_manager.cc op_commands.cc op_commands.hh template_tree.cc test_templates.cc xrl_xorpsh_interface.cc xrldb.cc xrldb.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/13 19:00:36 Modified files: xorp/rtrmgr/: module_manager.cc op_commands.cc op_commands.hh template_tree.cc test_templates.cc xrl_xorpsh_interface.cc xrldb.cc xrldb.hh Log message: Get rid of most calls to exit() and throw exceptions instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 0:25:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 00:26:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8QCjq034700 for ; Wed, 14 Jan 2004 00:26:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8Q5KU017842; Wed, 14 Jan 2004 00:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E8Q1gS014377; Wed, 14 Jan 2004 00:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E8PXgS014366 for ; Wed, 14 Jan 2004 00:25:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8PXKU017840 for ; Wed, 14 Jan 2004 00:25:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8PWAF082872 for ; Wed, 14 Jan 2004 00:25:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0E8PWJ6082871; Wed, 14 Jan 2004 00:25:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401140825.i0E8PWJ6082871@xorpc.icir.org> Date: Wed, 14 Jan 2004 0:25:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 00:25:32 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Log message: * Move upfront the installation of the handler for unexpected exceptions * Nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 0:26:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 00:27:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8R8jq034893 for ; Wed, 14 Jan 2004 00:27:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8R3KU017854; Wed, 14 Jan 2004 00:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E8R0gS014399; Wed, 14 Jan 2004 00:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0E8QvgS014390 for ; Wed, 14 Jan 2004 00:26:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8QvKU017850 for ; Wed, 14 Jan 2004 00:26:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0E8QvAF083040 for ; Wed, 14 Jan 2004 00:26:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0E8Qvt4083039; Wed, 14 Jan 2004 00:26:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401140826.i0E8Qvt4083039@xorpc.icir.org> Date: Wed, 14 Jan 2004 0:26:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 00:26:57 Modified files: xorp/rtrmgr/: xorpsh_main.cc Log message: Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 13:36:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 13:37:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ELb9jq066596 for ; Wed, 14 Jan 2004 13:37:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ELb3KU026413; Wed, 14 Jan 2004 13:37:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ELb1gS028905; Wed, 14 Jan 2004 13:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ELa9gS028881 for ; Wed, 14 Jan 2004 13:36:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ELa9KU026408 for ; Wed, 14 Jan 2004 13:36:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ELa9AF004089 for ; Wed, 14 Jan 2004 13:36:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0ELa8Zv004088; Wed, 14 Jan 2004 13:36:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401142136.i0ELa8Zv004088@xorpc.icir.org> Date: Wed, 14 Jan 2004 13:36:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc task.cc template_commands.cc unexpanded_xrl.cc unexpanded_xrl.hh xorp_client.cc xorp_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 13:36:08 Modified files: xorp/rtrmgr/: conf_tree_node.cc task.cc template_commands.cc unexpanded_xrl.cc unexpanded_xrl.hh xorp_client.cc xorp_client.hh Log message: If there is an error in expanding an expression or a variable, then propagate the error message up to the original caller. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 14:50:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 14:51:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0EMp8jq089066 for ; Wed, 14 Jan 2004 14:51:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0EMp2KU027227; Wed, 14 Jan 2004 14:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0EMp0gS000368; Wed, 14 Jan 2004 14:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0EMo7gS000343 for ; Wed, 14 Jan 2004 14:50:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0EMo6KU027198 for ; Wed, 14 Jan 2004 14:50:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0EMo6AF019415 for ; Wed, 14 Jan 2004 14:50:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0EMo6qY019414; Wed, 14 Jan 2004 14:50:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401142250.i0EMo6qY019414@xorpc.icir.org> Date: Wed, 14 Jan 2004 14:50:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh template_tree_node.cc template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 14:50:06 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh template_tree_node.cc template_tree_node.hh Log message: * Fix the implementation of ConfigTreeNode::expand_expression() such that now we can expand any boolean variable "`~$(foo.bar)`" instead of only "`~$(@)`". * Implement TemplateTreeNode::expand_expression() as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 16:29:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 16:30:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F0U9jq014660 for ; Wed, 14 Jan 2004 16:30:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F0U3KU028067; Wed, 14 Jan 2004 16:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F0U1gS002120; Wed, 14 Jan 2004 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F0T5gS002097 for ; Wed, 14 Jan 2004 16:29:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F0T5KU028059 for ; Wed, 14 Jan 2004 16:29:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F0T5AF020066 for ; Wed, 14 Jan 2004 16:29:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0F0T5S5020065; Wed, 14 Jan 2004 16:29:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401150029.i0F0T5S5020065@xorpc.icir.org> Date: Wed, 14 Jan 2004 16:29:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 16:29:05 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Document the fact that when configuring a boolean value (e.g., of type bool or toggle), typing the variable name itself in a configuration file is equivalent to assigning it value of "true". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Wed Jan 14 17:25:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jan 2004 17:26:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F1QDjq029635 for ; Wed, 14 Jan 2004 17:26:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F1Q5KU028567; Wed, 14 Jan 2004 17:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F1Q1gS003487; Wed, 14 Jan 2004 17:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F1PfgS003477 for ; Wed, 14 Jan 2004 17:25:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F1PeKU028561 for ; Wed, 14 Jan 2004 17:25:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F1PeAF020634 for ; Wed, 14 Jan 2004 17:25:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0F1PeHj020633; Wed, 14 Jan 2004 17:25:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401150125.i0F1PeHj020633@xorpc.icir.org> Date: Wed, 14 Jan 2004 17:25:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/14 17:25:40 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the documentation to mention that when a new instance of a node in the configuration tree is created, if that node has no %create command, then the %set command (if exists) for that node is used instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 0:49:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 00:50:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8oEjq099427 for ; Thu, 15 Jan 2004 00:50:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8o7KU031904; Thu, 15 Jan 2004 00:50:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F8o1gS009574; Thu, 15 Jan 2004 00:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F8nMgS009564 for ; Thu, 15 Jan 2004 00:49:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8nMKU031882 for ; Thu, 15 Jan 2004 00:49:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8nMAF082451 for ; Thu, 15 Jan 2004 00:49:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0F8nMZ2082450; Thu, 15 Jan 2004 00:49:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401150849.i0F8nMZ2082450@xorpc.icir.org> Date: Thu, 15 Jan 2004 0:49:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/15 00:49:22 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: Add a clarification comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 0:51:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 00:53:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8rAjq099883 for ; Thu, 15 Jan 2004 00:53:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8r3KU031929; Thu, 15 Jan 2004 00:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F8r1gS009624; Thu, 15 Jan 2004 00:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0F8q0gS009604 for ; Thu, 15 Jan 2004 00:52:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8q0KU031924 for ; Thu, 15 Jan 2004 00:52:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0F8q0AF083055 for ; Thu, 15 Jan 2004 00:52:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0F8q0S3083054; Thu, 15 Jan 2004 00:52:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401150852.i0F8q0S3083054@xorpc.icir.org> Date: Thu, 15 Jan 2004 0:51:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.hh op_commands.cc slave_conf_tree.cc slave_conf_tree.hh template_commands.hh template_tree_node.cc xorp_client.cc xorp_client.hh xrl_xorpsh_interface.cc xrldb.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/15 00:51:59 Modified files: xorp/rtrmgr/: conf_tree_node.hh op_commands.cc slave_conf_tree.cc slave_conf_tree.hh template_commands.hh template_tree_node.cc xorp_client.cc xorp_client.hh xrl_xorpsh_interface.cc xrldb.cc Log message: Space nitlets: "( &foo)" -> "(& foo)" in methods declaration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 6:52:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 06:53:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FErGjq054956 for ; Thu, 15 Jan 2004 06:53:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FEr8KU035251; Thu, 15 Jan 2004 06:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FEr1gS016057; Thu, 15 Jan 2004 06:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FEqAgS016042 for ; Thu, 15 Jan 2004 06:52:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FEqAKU035249 for ; Thu, 15 Jan 2004 06:52:10 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FEqAAF034957 for ; Thu, 15 Jan 2004 06:52:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0FEqApQ034956; Thu, 15 Jan 2004 06:52:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401151452.i0FEqApQ034956@xorpc.icir.org> Date: Thu, 15 Jan 2004 6:52:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/01/15 06:52:10 Modified files: other/tinderbox/scripts/: config Log message: Change FreeBSD tinderbox host to panther.icir.org. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 11:12:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 11:13:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJDAjq002196 for ; Thu, 15 Jan 2004 11:13:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJD3KU039049; Thu, 15 Jan 2004 11:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJD0gS021114; Thu, 15 Jan 2004 11:13:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJCOgS021082 for ; Thu, 15 Jan 2004 11:12:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJCNKU039033 for ; Thu, 15 Jan 2004 11:12:23 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJCNAF008198 for ; Thu, 15 Jan 2004 11:12:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0FJCNAD008197; Thu, 15 Jan 2004 11:12:23 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401151912.i0FJCNAD008197@xorpc.icir.org> Date: Thu, 15 Jan 2004 11:12:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fea.cc xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/15 11:12:23 Modified files: xorp/fea/: Makefile.am Makefile.in fea.cc xrl_target.cc xrl_target.hh Log message: Hook up libfeaclient support to FEA's xrl interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 11:14:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 11:15:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJFCjq002550 for ; Thu, 15 Jan 2004 11:15:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJF3KU039070; Thu, 15 Jan 2004 11:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJF1gS021212; Thu, 15 Jan 2004 11:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJEGgS021173 for ; Thu, 15 Jan 2004 11:14:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJEGKU039059 for ; Thu, 15 Jan 2004 11:14:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJEGAF008270 for ; Thu, 15 Jan 2004 11:14:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0FJEGUw008269; Thu, 15 Jan 2004 11:14:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401151914.i0FJEGUw008269@xorpc.icir.org> Date: Thu, 15 Jan 2004 11:14:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 04/01/15 11:14:16 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in xorp/pim/: Makefile.am Makefile.in Log message: Update library dependencies of test programs that link against libfea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 11:15:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 11:16:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJG9jq002704 for ; Thu, 15 Jan 2004 11:16:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJG3KU039103; Thu, 15 Jan 2004 11:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJG1gS021242; Thu, 15 Jan 2004 11:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJFGgS021228 for ; Thu, 15 Jan 2004 11:15:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJFFKU039095 for ; Thu, 15 Jan 2004 11:15:15 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJFFAF008354 for ; Thu, 15 Jan 2004 11:15:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0FJFFgw008353; Thu, 15 Jan 2004 11:15:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401151915.i0FJFFgw008353@xorpc.icir.org> Date: Thu, 15 Jan 2004 11:15:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/01/15 11:15:15 Modified files: xorp/libfeaclient/: ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc Log message: Change contructor argument order of IfMgrXrlMirror. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Thu Jan 15 11:31:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jan 2004 11:32:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJWBjq005142 for ; Thu, 15 Jan 2004 11:32:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJW3KU039264; Thu, 15 Jan 2004 11:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJW0gS021654; Thu, 15 Jan 2004 11:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0FJVrgS021644 for ; Thu, 15 Jan 2004 11:31:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJVrKU039260 for ; Thu, 15 Jan 2004 11:31:53 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0FJVqAF008974 for ; Thu, 15 Jan 2004 11:31:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0FJVqPE008973; Thu, 15 Jan 2004 11:31:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401151931.i0FJVqPE008973@xorpc.icir.org> Date: Thu, 15 Jan 2004 11:31:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/15 11:31:52 Modified files: xorp/rip/: xorp_rip4.cc Log message: Use "fea" as source for IfMgrXrlMirror instance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:40 2005 Subject: No subject Fri Jan 16 10:36:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 10:37:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GIb9jq024696 for ; Fri, 16 Jan 2004 10:37:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GIb3KU052820; Fri, 16 Jan 2004 10:37:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GIb1gS015821; Fri, 16 Jan 2004 10:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GIajgS015789 for ; Fri, 16 Jan 2004 10:36:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GIajKU052818 for ; Fri, 16 Jan 2004 10:36:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GIajAF020900 for ; Fri, 16 Jan 2004 10:36:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GIajo9020899; Fri, 16 Jan 2004 10:36:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161836.i0GIajo9020899@xorpc.icir.org> Date: Fri, 16 Jan 2004 10:36:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_addr_table.hh ifconfig_addr_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/16 10:36:44 Modified files: xorp/fea/: ifconfig_addr_table.hh ifconfig_addr_table.cc Log message: const'ify IfTree refs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 11:05:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 11:06:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ67jq029063 for ; Fri, 16 Jan 2004 11:06:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ62KU053245; Fri, 16 Jan 2004 11:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJ60gS016478; Fri, 16 Jan 2004 11:06:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJ5igS016469 for ; Fri, 16 Jan 2004 11:05:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ5hKU053243 for ; Fri, 16 Jan 2004 11:05:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ5hAF021434 for ; Fri, 16 Jan 2004 11:05:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GJ5h5t021433; Fri, 16 Jan 2004 11:05:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161905.i0GJ5h5t021433@xorpc.icir.org> Date: Fri, 16 Jan 2004 11:05:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/16 11:05:43 Modified files: xorp/fea/: xrl_socket_server.cc Log message: Correct argument ordering to comm_bind_join_udp4(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 11:06:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 11:07:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ78jq029224 for ; Fri, 16 Jan 2004 11:07:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ72KU053270; Fri, 16 Jan 2004 11:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJ71gS016506; Fri, 16 Jan 2004 11:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJ6XgS016494 for ; Fri, 16 Jan 2004 11:06:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ6WKU053255 for ; Fri, 16 Jan 2004 11:06:32 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJ6WAF021483 for ; Fri, 16 Jan 2004 11:06:32 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GJ6WNJ021482; Fri, 16 Jan 2004 11:06:32 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161906.i0GJ6WNJ021482@xorpc.icir.org> Date: Fri, 16 Jan 2004 11:06:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/16 11:06:32 Modified files: xorp/fea/: fea.cc xrl_target.cc xrl_target.hh Log message: Plumb in udp/tcp socket server. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 11:24:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 11:25:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJPAjq031997 for ; Fri, 16 Jan 2004 11:25:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJP2KU053460; Fri, 16 Jan 2004 11:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJP0gS016857; Fri, 16 Jan 2004 11:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJORgS016823 for ; Fri, 16 Jan 2004 11:24:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJORKU053451 for ; Fri, 16 Jan 2004 11:24:27 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJORAF033637 for ; Fri, 16 Jan 2004 11:24:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GJORI3033636; Fri, 16 Jan 2004 11:24:27 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161924.i0GJORI3033636@xorpc.icir.org> Date: Fri, 16 Jan 2004 11:24:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: hodson@xorpc.icir.org. 04/01/16 11:24:26 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Update test_mld6igmp_LDADD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 11:24:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 11:25:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJPCjq032027 for ; Fri, 16 Jan 2004 11:25:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJP3KU053462; Fri, 16 Jan 2004 11:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJP1gS016870; Fri, 16 Jan 2004 11:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJOfgS016836 for ; Fri, 16 Jan 2004 11:24:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJOfKU053453 for ; Fri, 16 Jan 2004 11:24:41 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJOfAF033662 for ; Fri, 16 Jan 2004 11:24:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GJOfXo033661; Fri, 16 Jan 2004 11:24:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161924.i0GJOfXo033661@xorpc.icir.org> Date: Fri, 16 Jan 2004 11:24:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 04/01/16 11:24:41 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Update test_pim_LDADD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 11:57:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 11:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJw8jq036910 for ; Fri, 16 Jan 2004 11:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJw2KU053766; Fri, 16 Jan 2004 11:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJw0gS017617; Fri, 16 Jan 2004 11:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0GJvQgS017586 for ; Fri, 16 Jan 2004 11:57:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJvPKU053760 for ; Fri, 16 Jan 2004 11:57:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0GJvPAF034179 for ; Fri, 16 Jan 2004 11:57:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0GJvPH9034178; Fri, 16 Jan 2004 11:57:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401161957.i0GJvPH9034178@xorpc.icir.org> Date: Fri, 16 Jan 2004 11:57:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ Makefile.am Makefile.in README comm_api.h comm_sock.c comm_user.c test_comm.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: hodson@xorpc.icir.org. 04/01/16 11:57:25 Modified files: xorp/libcomm/: Makefile.am Makefile.in README comm_api.h comm_sock.c comm_user.c test_comm.c Log message: s/[ ]+$// _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 17:59:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 18:00:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H20Cjq091804 for ; Fri, 16 Jan 2004 18:00:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H205KU057178; Fri, 16 Jan 2004 18:00:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0H201gS025359; Fri, 16 Jan 2004 18:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0H1x1gS025335 for ; Fri, 16 Jan 2004 17:59:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H1x1KU057160 for ; Fri, 16 Jan 2004 17:59:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H1x1AF037886 for ; Fri, 16 Jan 2004 17:59:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0H1x1Fr037885; Fri, 16 Jan 2004 17:59:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401170159.i0H1x1Fr037885@xorpc.icir.org> Date: Fri, 16 Jan 2004 17:59:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.yy y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/16 17:59:01 Modified files: xorp/rtrmgr/: template.yy y.tplt_tab.cc Log message: Stylistic nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 16 17:59:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jan 2004 18:00:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H20Fjq091831 for ; Fri, 16 Jan 2004 18:00:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H208KU057197; Fri, 16 Jan 2004 18:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0H206gS025372; Fri, 16 Jan 2004 18:00:06 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0H1xcgS025343 for ; Fri, 16 Jan 2004 17:59:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H1xcKU057166 for ; Fri, 16 Jan 2004 17:59:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0H1xcAF037934 for ; Fri, 16 Jan 2004 17:59:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0H1xcRr037933; Fri, 16 Jan 2004 17:59:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401170159.i0H1xcRr037933@xorpc.icir.org> Date: Fri, 16 Jan 2004 17:59:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll boot.yy y.boot_tab.cc y.boot_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/16 17:59:38 Modified files: xorp/rtrmgr/: boot.ll boot.yy y.boot_tab.cc y.boot_tab.h Log message: Remove token LISTNEXT, because it is not used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Tue Jan 20 13:49:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jan 2004 13:50:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0KLoEjq027990 for ; Tue, 20 Jan 2004 13:50:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0KLo5KU010191; Tue, 20 Jan 2004 13:50:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0KLo1gS020490; Tue, 20 Jan 2004 13:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0KLnhgS020477 for ; Tue, 20 Jan 2004 13:49:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0KLnhKU010186 for ; Tue, 20 Jan 2004 13:49:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0KLngAF090499 for ; Tue, 20 Jan 2004 13:49:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0KLngVv090498; Tue, 20 Jan 2004 13:49:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401202149.i0KLngVv090498@xorpc.icir.org> Date: Tue, 20 Jan 2004 13:49:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy y.boot_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/20 13:49:42 Modified files: xorp/rtrmgr/: boot.yy y.boot_tab.cc Log message: * Fix a shift/reduce conflict in boot.yy that was confusing a terminal boolean statement like "enable" (with implied value of "true") with a short nodename like "vif" that omits the "{...}" statements. Now a nodename that omits the "{...}" statements must have a long name with at least two tokens (e.g., "vif vif0"). * Fix the "literals" grammar for composing a long nodename such that any bool/IPv4 address/IPv6 address/etc value must be preceded by a literal. E.g., now it is invalid to have a nodename like: "address 10.10.10.10 50". Instead, the nodename must be like: "address 10.10.10.10 timeout 50". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Wed Jan 21 17:22:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Jan 2004 17:23:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0M1N9jq094993 for ; Wed, 21 Jan 2004 17:23:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0M1N3KU026272; Wed, 21 Jan 2004 17:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0M1N1PB023413; Wed, 21 Jan 2004 17:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0M1MkPB023403 for ; Wed, 21 Jan 2004 17:22:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0M1MkKU026268 for ; Wed, 21 Jan 2004 17:22:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0M1MjAF006765 for ; Wed, 21 Jan 2004 17:22:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0M1Mjc4006764; Wed, 21 Jan 2004 17:22:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401220122.i0M1Mjc4006764@xorpc.icir.org> Date: Wed, 21 Jan 2004 17:22:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/21 17:22:45 Modified files: xorp/rtrmgr/: TODO Log message: * Add three TODO items (by Orion) * Remove TODO items that are DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Thu Jan 22 15:15:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jan 2004 15:16:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0MNG9jq014670 for ; Thu, 22 Jan 2004 15:16:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0MNG3KU039075; Thu, 22 Jan 2004 15:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0MNG1Qj017674; Thu, 22 Jan 2004 15:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0MNF9Qj017618 for ; Thu, 22 Jan 2004 15:15:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0MNF9KU039071 for ; Thu, 22 Jan 2004 15:15:09 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0MNF9AF029602 for ; Thu, 22 Jan 2004 15:15:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0MNF9Br029586; Thu, 22 Jan 2004 15:15:09 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401222315.i0MNF9Br029586@xorpc.icir.org> Date: Thu, 22 Jan 2004 15:15:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.yy y.opcmd_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/01/22 15:15:08 Modified files: xorp/rtrmgr/: op_commands.yy y.opcmd_tab.cc Log message: Treat VARIABLE and LITERAL in exactly the same way. Add some intermediate definitions. (This fixes re-ordering of successive variable declarations in command files). Discussed w/ Pavlin. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Thu Jan 22 16:29:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jan 2004 16:30:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N0UHjq025855 for ; Thu, 22 Jan 2004 16:30:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N0U5KU039784; Thu, 22 Jan 2004 16:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N0U1Qj019245; Thu, 22 Jan 2004 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N0TtQj019233 for ; Thu, 22 Jan 2004 16:29:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N0TtKU039779 for ; Thu, 22 Jan 2004 16:29:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N0TtAF030229 for ; Thu, 22 Jan 2004 16:29:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0N0TtJE030228; Thu, 22 Jan 2004 16:29:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401230029.i0N0TtJE030228@xorpc.icir.org> Date: Thu, 22 Jan 2004 16:29:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/22 16:29:55 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Thu Jan 22 19:03:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jan 2004 19:04:41 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N34fjq050572 for ; Thu, 22 Jan 2004 19:04:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N343KU041069; Thu, 22 Jan 2004 19:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N341Qj021755; Thu, 22 Jan 2004 19:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N33uQj021744 for ; Thu, 22 Jan 2004 19:03:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N33uKU041067 for ; Thu, 22 Jan 2004 19:03:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N33tAF031638 for ; Thu, 22 Jan 2004 19:03:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0N33t8D031637; Thu, 22 Jan 2004 19:03:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401230303.i0N33t8D031637@xorpc.icir.org> Date: Thu, 22 Jan 2004 19:03:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/22 19:03:55 Modified files: xorp/rtrmgr/: template.ll Log message: Fix the regular expression syntax for VARIABLE and STRING by excaping meta-character . and replacing it with \. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Thu Jan 22 19:09:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jan 2004 19:10:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N3AAjq051405 for ; Thu, 22 Jan 2004 19:10:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N3A3KU041131; Thu, 22 Jan 2004 19:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N3A0Qj021846; Thu, 22 Jan 2004 19:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0N39KQj021836 for ; Thu, 22 Jan 2004 19:09:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N39KKU041124 for ; Thu, 22 Jan 2004 19:09:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0N39KAF031715 for ; Thu, 22 Jan 2004 19:09:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0N39K3R031714; Thu, 22 Jan 2004 19:09:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401230309.i0N39K3R031714@xorpc.icir.org> Date: Thu, 22 Jan 2004 19:09:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/22 19:09:20 Modified files: xorp/rtrmgr/: op_commands.ll Log message: * Fix the regular expression syntax for VARIABLE and LITERAL by excaping meta-character . and replacing it with \. * Change the regulal expression syntax for LITERAL by allowing it to start with not only by a letter and '/', but a digit, '_' or '.' . Also, allow '.' to be part of the literal elsewhere. Thus, we can specify more liberally a filename (e.g., now a filename can start with a digit, it can contain dots, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 23 12:39:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 12:40:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NKeCjq019858 for ; Fri, 23 Jan 2004 12:40:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NKe4KU051360; Fri, 23 Jan 2004 12:40:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NKe1Qj010628; Fri, 23 Jan 2004 12:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NKdcQj010615 for ; Fri, 23 Jan 2004 12:39:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NKdcKU051355 for ; Fri, 23 Jan 2004 12:39:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NKdbAF055041 for ; Fri, 23 Jan 2004 12:39:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NKdbGp055040; Fri, 23 Jan 2004 12:39:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401232039.i0NKdbGp055040@xorpc.icir.org> Date: Fri, 23 Jan 2004 12:39:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.yy y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/23 12:39:37 Modified files: xorp/rtrmgr/: template.yy y.tplt_tab.cc Log message: Tweak the "list_of_cmd_strings" grammar so the strings are substituted in the left-to-right order instead of the right-to-left order. Hence, now we can use append_cmd() instead of prepend_cmd() to order them properly. Note that the old and the new grammar are logically equvalent. However, previously if there was an error, the "Last symbol parsed" to report will be the one _after_ the error which could be confusing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 23 15:47:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 15:48:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNm9jq056549 for ; Fri, 23 Jan 2004 15:48:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNm2KU053247; Fri, 23 Jan 2004 15:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNm0Qj014573; Fri, 23 Jan 2004 15:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNlSQj014529 for ; Fri, 23 Jan 2004 15:47:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNlSKU053245 for ; Fri, 23 Jan 2004 15:47:28 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNlRAF057178 for ; Fri, 23 Jan 2004 15:47:27 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NNlRiX057177; Fri, 23 Jan 2004 15:47:27 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401232347.i0NNlRiX057177@xorpc.icir.org> Date: Fri, 23 Jan 2004 15:47:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 15:47:27 Modified files: xorp/rip/: constants.hh Log message: Add default table request period. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:41 2005 Subject: No subject Fri Jan 23 15:49:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 15:50:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNoAjq056979 for ; Fri, 23 Jan 2004 15:50:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNo5KU053272; Fri, 23 Jan 2004 15:50:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNo0Qj014619; Fri, 23 Jan 2004 15:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNnZQj014602 for ; Fri, 23 Jan 2004 15:49:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNnZKU053255 for ; Fri, 23 Jan 2004 15:49:35 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNnZAF057218 for ; Fri, 23 Jan 2004 15:49:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NNnZlg057217; Fri, 23 Jan 2004 15:49:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401232349.i0NNnZlg057217@xorpc.icir.org> Date: Fri, 23 Jan 2004 15:49:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 15:49:35 Modified files: xorp/rip/: port.hh port.cc Log message: Add table request timer to send periodic table request messages when there are no peers associated with port. Add garbage collector for peers. The peers are periodically polled and swepted when they have no routes associated with them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 15:51:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 15:52:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNqCjq057411 for ; Fri, 23 Jan 2004 15:52:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNq3KU053309; Fri, 23 Jan 2004 15:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNq1Qj014688; Fri, 23 Jan 2004 15:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNp3Qj014658 for ; Fri, 23 Jan 2004 15:51:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNp2KU053305 for ; Fri, 23 Jan 2004 15:51:02 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNp2AF057312 for ; Fri, 23 Jan 2004 15:51:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NNp2lW057311; Fri, 23 Jan 2004 15:51:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401232351.i0NNp2lW057311@xorpc.icir.org> Date: Fri, 23 Jan 2004 15:51:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 15:51:02 Modified files: xorp/rip/: xrl_port_io.cc Log message: Additional debug messages. Call set_enabled when socket instantiated with socket server which kicks off port processing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 15:52:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 15:53:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNr8jq057612 for ; Fri, 23 Jan 2004 15:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNr2KU053325; Fri, 23 Jan 2004 15:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNr0Qj014719; Fri, 23 Jan 2004 15:53:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNq4Qj014698 for ; Fri, 23 Jan 2004 15:52:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNq4KU053311 for ; Fri, 23 Jan 2004 15:52:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNq4AF057349 for ; Fri, 23 Jan 2004 15:52:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NNq4HT057348; Fri, 23 Jan 2004 15:52:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401232352.i0NNq4HT057348@xorpc.icir.org> Date: Fri, 23 Jan 2004 15:52:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 15:52:04 Modified files: xorp/rip/: test_outputs.cc test_request.cc Log message: IPv4 Port changed to have default NullAuthHandler. No longer instantiate and clean up own NullAuthHandlers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 15:53:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 15:54:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNs6jq057829 for ; Fri, 23 Jan 2004 15:54:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNs2KU053344; Fri, 23 Jan 2004 15:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNs1Qj014749; Fri, 23 Jan 2004 15:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0NNrFQj014732 for ; Fri, 23 Jan 2004 15:53:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNrEKU053327 for ; Fri, 23 Jan 2004 15:53:14 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0NNrEAF057428 for ; Fri, 23 Jan 2004 15:53:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0NNrE6V057427; Fri, 23 Jan 2004 15:53:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401232353.i0NNrE6V057427@xorpc.icir.org> Date: Fri, 23 Jan 2004 15:53:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip4.cc xrl_port_manager.cc xrl_target4.cc xrl_target4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 15:53:14 Modified files: xorp/rip/: xorp_rip4.cc xrl_port_manager.cc xrl_target4.cc xrl_target4.hh Log message: Plumb in XrlPortManager. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 17:37:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 17:38:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1c8jq078138 for ; Fri, 23 Jan 2004 17:38:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1c4KU054173; Fri, 23 Jan 2004 17:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1c0Qj016605; Fri, 23 Jan 2004 17:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1bFQj016588 for ; Fri, 23 Jan 2004 17:37:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1bFKU054171 for ; Fri, 23 Jan 2004 17:37:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1bFAF058901 for ; Fri, 23 Jan 2004 17:37:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0O1bFuP058900; Fri, 23 Jan 2004 17:37:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401240137.i0O1bFuP058900@xorpc.icir.org> Date: Fri, 23 Jan 2004 17:37:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/01/23 17:37:15 Modified files: xorp/pim/: pim_mfc.cc Log message: If the iif/olist of a PimMfc entry is recomputed because of some event, and if the new olist is NULL, then remove this entry. Previously, this entry was left to time-out (if the sender is idle). However, there is no reason to keep this entry around, especially because this open the possibility for some hidden side effects. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 17:45:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 17:46:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1k9jq080046 for ; Fri, 23 Jan 2004 17:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1k3KU054239; Fri, 23 Jan 2004 17:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1k0Qj016723; Fri, 23 Jan 2004 17:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1jdQj016711 for ; Fri, 23 Jan 2004 17:45:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1jdKU054237 for ; Fri, 23 Jan 2004 17:45:39 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1jdAF059431 for ; Fri, 23 Jan 2004 17:45:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0O1jdjN059430; Fri, 23 Jan 2004 17:45:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200401240145.i0O1jdjN059430@xorpc.icir.org> Date: Fri, 23 Jan 2004 17:45:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_routing2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/01/23 17:45:39 Modified files: xorp/bgp/harness/: test_routing2.sh Log message: Add a delay to allow the route change to propagate to the coordinating process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 17:48:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 17:49:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1n7jq081099 for ; Fri, 23 Jan 2004 17:49:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1n3KU054253; Fri, 23 Jan 2004 17:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1n1Qj016801; Fri, 23 Jan 2004 17:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O1mhQj016786 for ; Fri, 23 Jan 2004 17:48:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1mhKU054249 for ; Fri, 23 Jan 2004 17:48:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O1mgAF060027 for ; Fri, 23 Jan 2004 17:48:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0O1mg24060026; Fri, 23 Jan 2004 17:48:42 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401240148.i0O1mg24060026@xorpc.icir.org> Date: Fri, 23 Jan 2004 17:48:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 17:48:42 Modified files: xorp/rip/: port.cc Log message: Add a missing typename qualification for gcc33. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 18:11:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 18:12:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O2C8jq087327 for ; Fri, 23 Jan 2004 18:12:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O2C3KU054468; Fri, 23 Jan 2004 18:12:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O2C1Qj017141; Fri, 23 Jan 2004 18:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O2BxQj017132 for ; Fri, 23 Jan 2004 18:11:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O2BwKU054466 for ; Fri, 23 Jan 2004 18:11:58 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O2BwAF060955 for ; Fri, 23 Jan 2004 18:11:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0O2Bw8k060954; Fri, 23 Jan 2004 18:11:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401240211.i0O2Bw8k060954@xorpc.icir.org> Date: Fri, 23 Jan 2004 18:11:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packets.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/23 18:11:58 Modified files: xorp/rip/: packets.hh Log message: Sync version constants with comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Fri Jan 23 19:09:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jan 2004 19:10:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O3A8jq002369 for ; Fri, 23 Jan 2004 19:10:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O3A3KU054854; Fri, 23 Jan 2004 19:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O3A1Qj018011; Fri, 23 Jan 2004 19:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0O39SQj017987 for ; Fri, 23 Jan 2004 19:09:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O39SKU054849 for ; Fri, 23 Jan 2004 19:09:28 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0O39SAF061454 for ; Fri, 23 Jan 2004 19:09:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0O39S3x061453; Fri, 23 Jan 2004 19:09:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401240309.i0O39S3x061453@xorpc.icir.org> Date: Fri, 23 Jan 2004 19:09:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc xrl_socket_server.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/23 19:09:28 Modified files: xorp/fea/: xrl_socket_server.cc xrl_socket_server.hh Log message: o Turn off loopback on multicast sockets. o Drop packets received that have one of our interface addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Sat Jan 24 5:33:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 24 Jan 2004 05:34:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ODY9jq099591 for ; Sat, 24 Jan 2004 05:34:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ODY3KU062147; Sat, 24 Jan 2004 05:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ODY0Qj027855; Sat, 24 Jan 2004 05:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ODXnQj027830 for ; Sat, 24 Jan 2004 05:33:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ODXmKU062143 for ; Sat, 24 Jan 2004 05:33:48 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ODXmAF068287 for ; Sat, 24 Jan 2004 05:33:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0ODXmtW068286; Sat, 24 Jan 2004 05:33:48 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401241333.i0ODXmtW068286@xorpc.icir.org> Date: Sat, 24 Jan 2004 5:33:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_request.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/01/24 05:33:48 Modified files: xorp/rip/: test_request.cc Log message: Build version 2 request packet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Sat Jan 24 16:48:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 24 Jan 2004 16:49:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0P0n9jq003901 for ; Sat, 24 Jan 2004 16:49:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0P0n3KU068626; Sat, 24 Jan 2004 16:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0P0n1Qj006724; Sat, 24 Jan 2004 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0P0mlQj006715 for ; Sat, 24 Jan 2004 16:48:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0P0mlKU068624 for ; Sat, 24 Jan 2004 16:48:47 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0P0mlAF074199 for ; Sat, 24 Jan 2004 16:48:47 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0P0mlMY074198; Sat, 24 Jan 2004 16:48:47 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401250048.i0P0mlMY074198@xorpc.icir.org> Date: Sat, 24 Jan 2004 16:48:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/01/24 16:48:47 Modified files: xorp/fea/: xrl_socket_server.cc Log message: o Remove filter on packets received that from one of our interfaces otherwise we can't send packets to self (breaks tinderbox). o Remove printf that crept in with last commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Mon Jan 26 10:30:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jan 2004 10:31:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0QIVBjq088313 for ; Mon, 26 Jan 2004 10:31:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0QIV4KU091029; Mon, 26 Jan 2004 10:31:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0QIV1Qj013608; Mon, 26 Jan 2004 10:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0QIUPQj013590 for ; Mon, 26 Jan 2004 10:30:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0QIUPKU091021 for ; Mon, 26 Jan 2004 10:30:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0QIUPAF095742 for ; Mon, 26 Jan 2004 10:30:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0QIUP2e095741; Mon, 26 Jan 2004 10:30:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401261830.i0QIUP2e095741@xorpc.icir.org> Date: Mon, 26 Jan 2004 10:30:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 04/01/26 10:30:25 Modified files: ./: configure.in Log message: Remove stray '<' on first line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Mon Jan 26 17:13:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jan 2004 17:14:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0R1EBjq059610 for ; Mon, 26 Jan 2004 17:14:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0R1E5KU095395; Mon, 26 Jan 2004 17:14:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0R1E1Qj022625; Mon, 26 Jan 2004 17:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0R1D7Qj022477 for ; Mon, 26 Jan 2004 17:13:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0R1D6KU095383 for ; Mon, 26 Jan 2004 17:13:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0R1D6AF007284 for ; Mon, 26 Jan 2004 17:13:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0R1D6EU007283; Mon, 26 Jan 2004 17:13:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401270113.i0R1D6EU007283@xorpc.icir.org> Date: Mon, 26 Jan 2004 17:13:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h comm_user.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 04/01/26 17:13:06 Modified files: xorp/libcomm/: comm_api.h comm_user.c Log message: * Change the behavior of comm_bind_join_udp4 and comm_bind_join_udp6: Now we bind the socket to ANY address instead of the multicast address only. If we bind to the multicast address instead, then using the same socket for sending multicast packets will trigger a bug in the FreeBSD kernel: the source IP address will be set to the multicast address. Hence, the application itself may want to filter the UDP unicast packets that may have arrived with a destination address one of the local interface addresses and the same port number. [A problem found by Orion] * Adjust the kdoc comments to reflect the above change. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Tue Jan 27 16:34:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jan 2004 16:35:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0ZFjq096947 for ; Tue, 27 Jan 2004 16:35:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0Z4KU012305; Tue, 27 Jan 2004 16:35:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S0Z1NC020152; Tue, 27 Jan 2004 16:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S0YFNC020119 for ; Tue, 27 Jan 2004 16:34:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0YFKU012296 for ; Tue, 27 Jan 2004 16:34:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0YEAF027236 for ; Tue, 27 Jan 2004 16:34:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0S0YEwJ027235; Tue, 27 Jan 2004 16:34:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401280034.i0S0YEwJ027235@xorpc.icir.org> Date: Tue, 27 Jan 2004 16:34:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_command_pipe.cc cli_command_pipe.hh cli_node.cc cli_node.hh cli_node_internal_commands.cc cli_node_net.cc ...test_cli.cc ...xrl_cli_node.cc ...xrl_cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/01/27 16:34:14 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_command_pipe.cc cli_command_pipe.hh cli_node.cc cli_node.hh cli_node_internal_commands.cc cli_node_net.cc test_cli.cc xrl_cli_node.cc xrl_cli_node.hh Log message: Replace C-style strings with C++ "string" (where appropriate). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Tue Jan 27 16:35:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jan 2004 16:36:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0a7jq097140 for ; Tue, 27 Jan 2004 16:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0a3KU012337; Tue, 27 Jan 2004 16:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S0a1NC020207; Tue, 27 Jan 2004 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S0ZjNC020182 for ; Tue, 27 Jan 2004 16:35:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0ZjKU012332 for ; Tue, 27 Jan 2004 16:35:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S0ZiAF027304 for ; Tue, 27 Jan 2004 16:35:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0S0ZieW027303; Tue, 27 Jan 2004 16:35:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401280035.i0S0ZieW027303@xorpc.icir.org> Date: Tue, 27 Jan 2004 16:35:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.hh cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/27 16:35:44 Modified files: xorp/rtrmgr/: cli.hh cli.cc Log message: Replace C-style strings with C++ "string" (where appropriate). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Tue Jan 27 17:06:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jan 2004 17:07:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S179jq003511 for ; Tue, 27 Jan 2004 17:07:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S173KU012687; Tue, 27 Jan 2004 17:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S171NC020946; Tue, 27 Jan 2004 17:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S16UNC020928 for ; Tue, 27 Jan 2004 17:06:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S16UKU012678 for ; Tue, 27 Jan 2004 17:06:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S16UAF028726 for ; Tue, 27 Jan 2004 17:06:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0S16Ue9028725; Tue, 27 Jan 2004 17:06:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401280106.i0S16Ue9028725@xorpc.icir.org> Date: Tue, 27 Jan 2004 17:06:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/01/27 17:06:30 Modified files: xorp/cli/: cli_client.cc cli_client.hh Log message: * Rename: *page_buffer_last_line -> *page_buffer_last_line_n * Add new method CliClient::page_buffer_line(size_t line_number) and use it as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Tue Jan 27 17:34:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jan 2004 17:35:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S1ZAjq009158 for ; Tue, 27 Jan 2004 17:35:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S1Z3KU012967; Tue, 27 Jan 2004 17:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S1Z1NC021430; Tue, 27 Jan 2004 17:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0S1YKNC021417 for ; Tue, 27 Jan 2004 17:34:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S1YKKU012962 for ; Tue, 27 Jan 2004 17:34:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0S1YKAF029160 for ; Tue, 27 Jan 2004 17:34:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0S1YKHX029159; Tue, 27 Jan 2004 17:34:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401280134.i0S1YKHX029159@xorpc.icir.org> Date: Tue, 27 Jan 2004 17:34:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_command.cc cli_command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/01/27 17:34:20 Modified files: xorp/cli/: cli_client.cc cli_command.cc cli_command.hh Log message: Reverse-back CliCommand::find_command_help() to use C-string argument instead of "string", because of some internal implementation reasons. This fixes a problem that was introduced with the previous commit: typing '?' in the beginning of the line to find the help for all commands didn't work anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Wed Jan 28 17:53:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Jan 2004 17:54:58 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1swjq068301 for ; Wed, 28 Jan 2004 17:54:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1smKU030376; Wed, 28 Jan 2004 17:54:48 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T1s0NC017946; Wed, 28 Jan 2004 17:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T1rsNC017936 for ; Wed, 28 Jan 2004 17:53:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1rsKU030364 for ; Wed, 28 Jan 2004 17:53:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1rsAF053150 for ; Wed, 28 Jan 2004 17:53:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0T1rsv3053149; Wed, 28 Jan 2004 17:53:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401290153.i0T1rsv3053149@xorpc.icir.org> Date: Wed, 28 Jan 2004 17:53:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_command.cc cli_command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/01/28 17:53:54 Modified files: xorp/cli/: cli_command.cc cli_command.hh Log message: * Change the type of the DYNAMIC_CHILDREN_CALLBACK callback function to return map with the command names and CLI help for each command instead of set with the command names only. * Rename CliCommand::set_dynamic_children() to set_dynamic_children_callback() * Add missing kdoc comments * Move the implementation of few methods from cli_command.hh to cli_command.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Wed Jan 28 17:55:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Jan 2004 17:56:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1uIjq068532 for ; Wed, 28 Jan 2004 17:56:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1uDKU030404; Wed, 28 Jan 2004 17:56:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T1u1NC017999; Wed, 28 Jan 2004 17:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T1tZNC017982 for ; Wed, 28 Jan 2004 17:55:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1tZKU030400 for ; Wed, 28 Jan 2004 17:55:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T1tZAF053220 for ; Wed, 28 Jan 2004 17:55:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0T1tZSI053219; Wed, 28 Jan 2004 17:55:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401290155.i0T1tZSI053219@xorpc.icir.org> Date: Wed, 28 Jan 2004 17:55:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/28 17:55:35 Modified files: xorp/rtrmgr/: cli.cc Log message: Rename set_dynamic_children to set_dynamic_children_callback _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Wed Jan 28 18:00:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Jan 2004 18:02:49 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T22njq069494 for ; Wed, 28 Jan 2004 18:02:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T22hKU030476; Wed, 28 Jan 2004 18:02:43 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T211NC018072; Wed, 28 Jan 2004 18:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0T20UNC018059 for ; Wed, 28 Jan 2004 18:00:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T20UKU030454 for ; Wed, 28 Jan 2004 18:00:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0T20UAF053362 for ; Wed, 28 Jan 2004 18:00:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0T20U09053361; Wed, 28 Jan 2004 18:00:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401290200.i0T20U09053361@xorpc.icir.org> Date: Wed, 28 Jan 2004 18:00:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/28 18:00:30 Modified files: xorp/rtrmgr/: op_commands.hh op_commands.cc Log message: * Add support for specifying the CLI help string for each CLI command or for a command's optional arguments. * Const-ify few methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:42 2005 Subject: No subject Thu Jan 29 11:08:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Jan 2004 11:09:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0TJ9Cjq045670 for ; Thu, 29 Jan 2004 11:09:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0TJ93KU043119; Thu, 29 Jan 2004 11:09:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0TJ91K5004680; Thu, 29 Jan 2004 11:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0TJ8xK5004671 for ; Thu, 29 Jan 2004 11:08:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0TJ8wKU043117 for ; Thu, 29 Jan 2004 11:08:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0TJ8wAF070384 for ; Thu, 29 Jan 2004 11:08:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0TJ8wso070383; Thu, 29 Jan 2004 11:08:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200401291908.i0TJ8wso070383@xorpc.icir.org> Date: Thu, 29 Jan 2004 11:08:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc op_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/29 11:08:58 Modified files: xorp/rtrmgr/: op_commands.cc op_commands.hh Log message: Refactor method OpCommand::get_matches() to return-by-reference the necessary information. After the refactoring we don't need to add special matching values like "" that have internal meaning only. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Fri Jan 30 11:07:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Jan 2004 11:08:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0UJ8Ejq076569 for ; Fri, 30 Jan 2004 11:08:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0UJ84KU060774; Fri, 30 Jan 2004 11:08:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0UJ81S7002284; Fri, 30 Jan 2004 11:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0UJ7AS7002261 for ; Fri, 30 Jan 2004 11:07:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0UJ7AKU060770 for ; Fri, 30 Jan 2004 11:07:10 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0UJ7AAF008743 for ; Fri, 30 Jan 2004 11:07:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0UJ7AAw008742; Fri, 30 Jan 2004 11:07:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401301907.i0UJ7AAw008742@xorpc.icir.org> Date: Fri, 30 Jan 2004 11:07:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in rt_tab_base.hh xorp/rib/ rt_tab_expect.cc rt_tab_expect.hh rt_tab_log.cc rt_tab_log.hh xorp/rib/ rt_tab_debug.cc rt_tab_debug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/01/30 11:07:10 Modified files: xorp/rib/: Makefile.am Makefile.in rt_tab_base.hh Added files: xorp/rib/: rt_tab_expect.cc rt_tab_expect.hh rt_tab_log.cc rt_tab_log.hh Removed files: xorp/rib/: rt_tab_debug.cc rt_tab_debug.hh Log message: Move rt_tab_debug.{hh,cc} to rt_tab_expect.{hh,cc} and rename DebugTable to ExpectTable. Minor revisions to code to avoid explicit new and delete calls. Add rt_tab_log.{hh,cc} that contain route update logger classes for ostream, xlog_trace, and debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Fri Jan 30 13:30:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Jan 2004 13:31:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ULVAjq003985 for ; Fri, 30 Jan 2004 13:31:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ULV3KU062412; Fri, 30 Jan 2004 13:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ULV0S7005621; Fri, 30 Jan 2004 13:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i0ULUmS7005609 for ; Fri, 30 Jan 2004 13:30:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ULUmKU062409 for ; Fri, 30 Jan 2004 13:30:48 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i0ULUmAF012784 for ; Fri, 30 Jan 2004 13:30:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i0ULUmYs012783; Fri, 30 Jan 2004 13:30:48 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200401302130.i0ULUmYs012783@xorpc.icir.org> Date: Fri, 30 Jan 2004 13:30:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/01/30 13:30:48 Modified files: xorp/rib/: test_deletion.cc Log message: ExpectTable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Sat Jan 31 18:08:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jan 2004 18:09:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1129Njq072690 for ; Sat, 31 Jan 2004 18:09:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1129ISi083023; Sat, 31 Jan 2004 18:09:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i112908K028261; Sat, 31 Jan 2004 18:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1128E8K028243 for ; Sat, 31 Jan 2004 18:08:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1128DSi083008 for ; Sat, 31 Jan 2004 18:08:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1128DAF077650 for ; Sat, 31 Jan 2004 18:08:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1128Diw077649; Sat, 31 Jan 2004 18:08:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402010208.i1128Diw077649@xorpc.icir.org> Date: Sat, 31 Jan 2004 18:08:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc op_commands.hh op_commands.ll op_commands.yy xorpsh_main.cc y.opcmd_tab.cc y.opcmd_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/31 18:08:13 Modified files: xorp/rtrmgr/: op_commands.cc op_commands.hh op_commands.ll op_commands.yy xorpsh_main.cc y.opcmd_tab.cc y.opcmd_tab.h Log message: Refactor the parsing of the operational commands templates: * Move all parsing machinary to op_commands.yy * Add support for specifying the CLI help string (by either a string, or a tag that refers to a string). [New format courtesy of Orion and Atanu] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Sat Jan 31 18:09:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jan 2004 18:10:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i112ALjq072861 for ; Sat, 31 Jan 2004 18:10:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i112ABSi083062; Sat, 31 Jan 2004 18:10:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i112A08K028288; Sat, 31 Jan 2004 18:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1129b8K028276 for ; Sat, 31 Jan 2004 18:09:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1129bSi083032 for ; Sat, 31 Jan 2004 18:09:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1129bAF077708 for ; Sat, 31 Jan 2004 18:09:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1129blE077707; Sat, 31 Jan 2004 18:09:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402010209.i1129blE077707@xorpc.icir.org> Date: Sat, 31 Jan 2004 18:09:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds fea.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/01/31 18:09:37 Modified files: xorp/etc/templates/: bgp.cmds fea.cmds Log message: Update the operational commands templates according to the new format. Now each CLI command must have a help string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Sat Jan 31 19:23:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jan 2004 19:24:37 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i113Objq083821 for ; Sat, 31 Jan 2004 19:24:37 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i113OUSi083785; Sat, 31 Jan 2004 19:24:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i113O18K029203; Sat, 31 Jan 2004 19:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i113Nj8K029190 for ; Sat, 31 Jan 2004 19:23:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i113NiSi083770 for ; Sat, 31 Jan 2004 19:23:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i113NiAF078976 for ; Sat, 31 Jan 2004 19:23:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i113NixM078975; Sat, 31 Jan 2004 19:23:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402010323.i113NixM078975@xorpc.icir.org> Date: Sat, 31 Jan 2004 19:23:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/01/31 19:23:44 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the text with information about the new format of the operational command templates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Tue Feb 3 22:38:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Feb 2004 22:39:42 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i146dgmu090549 for ; Tue, 3 Feb 2004 22:39:42 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i146daSi037513; Tue, 3 Feb 2004 22:39:36 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i146d18K016118; Tue, 3 Feb 2004 22:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i146ca8K016105 for ; Tue, 3 Feb 2004 22:38:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i146caSi037502 for ; Tue, 3 Feb 2004 22:38:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i146caAF057372 for ; Tue, 3 Feb 2004 22:38:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i146caCP057371; Tue, 3 Feb 2004 22:38:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402040638.i146caCP057371@xorpc.icir.org> Date: Tue, 3 Feb 2004 22:38:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/02/03 22:38:36 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Wed Feb 4 21:47:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Feb 2004 21:48:54 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i155msmu099859 for ; Wed, 4 Feb 2004 21:48:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i155mnSi055012; Wed, 4 Feb 2004 21:48:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i155m041013491; Wed, 4 Feb 2004 21:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i155lV41013475 for ; Wed, 4 Feb 2004 21:47:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i155lVSi054997 for ; Wed, 4 Feb 2004 21:47:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i155lVAF031039 for ; Wed, 4 Feb 2004 21:47:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i155lVRX031038; Wed, 4 Feb 2004 21:47:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402050547.i155lVRX031038@xorpc.icir.org> Date: Wed, 4 Feb 2004 21:47:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_rib_manager.cc dummy_rib_manager.hh parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh routemap.cc ...rt_tab_deletion.cc ...rt_tab_deletion.hh ...rt_tab_expect.cc ...rt_tab_export.cc ...rt_tab_export.hh ...rt_tab_extint.cc ...rt_tab_extint.hh ...rt_tab_log.cc ...rt_tab_merged.cc ...rt_tab_merged.hh ...rt_tab_origin.cc ...rt_tab_origin.hh ...rt_tab_redist.cc ...rt_tab_register.cc ...rt_tab_register.hh ...test_register.cc ...test_register_xrls.cc ...test_rib_client.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...vifmanager.cc ...xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/04 21:47:31 Modified files: xorp/rib/: dummy_rib_manager.cc dummy_rib_manager.hh parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh routemap.cc rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_expect.cc rt_tab_export.cc rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_log.cc rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_register.cc rt_tab_register.hh test_register.cc test_register_xrls.cc test_rib_client.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc xrl_target.cc Log message: * Replace "return 0" and "return -1" with "return XORP_OK" and "return XORP_ERROR" respectively. * Fix the XRL handing for deregister_interest[4,6] to return an error if the router deregistration fails. * Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Wed Feb 4 23:12:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Feb 2004 23:13:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i157DGmu021660 for ; Wed, 4 Feb 2004 23:13:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i157DBSi055966; Wed, 4 Feb 2004 23:13:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i157D141014641; Wed, 4 Feb 2004 23:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i157C141014627 for ; Wed, 4 Feb 2004 23:12:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i157C1Si055957 for ; Wed, 4 Feb 2004 23:12:01 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i157C1AF035802 for ; Wed, 4 Feb 2004 23:12:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i157C1Xj035801; Wed, 4 Feb 2004 23:12:01 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402050712.i157C1Xj035801@xorpc.icir.org> Date: Wed, 4 Feb 2004 23:12:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh plumbing.cc rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/04 23:12:01 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh plumbing.cc rib_ipc_handler.cc Log message: Remove retry and status code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 1:22:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 01:23:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i159NPmu050915 for ; Thu, 5 Feb 2004 01:23:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i159NJSi057369; Thu, 5 Feb 2004 01:23:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i159N141016770; Thu, 5 Feb 2004 01:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i159MO41016758 for ; Thu, 5 Feb 2004 01:22:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i159MOSi057356 for ; Thu, 5 Feb 2004 01:22:24 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i159MOAF042405 for ; Thu, 5 Feb 2004 01:22:24 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i159MODW042404; Thu, 5 Feb 2004 01:22:24 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402050922.i159MODW042404@xorpc.icir.org> Date: Thu, 5 Feb 2004 1:22:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/05 01:22:24 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh Log message: 1) The BGP process registers interest in a nexthop. 2) The route which resolves this nexthop is deleted, causing an invalid route being sent to BGP. The BGP process should see the register response followed by the invalidate. Unfortunately sometimes the invalid may arrive at the BGP process before the register interest response. This behaviour is an artifact of the XRL implementation. In the case were we see the invalidate before the register response: We save the invalidate and when the register response arrives we verify they match then rerequest the register response. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 1:31:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 01:32:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i159WBmu054527 for ; Thu, 5 Feb 2004 01:32:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i159W4Si057466; Thu, 5 Feb 2004 01:32:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i159W041016918; Thu, 5 Feb 2004 01:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i159Vs41016909 for ; Thu, 5 Feb 2004 01:31:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i159VsSi057464 for ; Thu, 5 Feb 2004 01:31:54 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i159VrAF042915 for ; Thu, 5 Feb 2004 01:31:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i159Vrgw042914; Thu, 5 Feb 2004 01:31:53 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402050931.i159Vrgw042914@xorpc.icir.org> Date: Thu, 5 Feb 2004 1:31:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/05 01:31:53 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Remove the hack that allowed one route command to be in flight between BGP and the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 10:55:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 10:56:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i15IuHmu047711 for ; Thu, 5 Feb 2004 10:56:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15Iu9Si065308; Thu, 5 Feb 2004 10:56:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15Iu041028147; Thu, 5 Feb 2004 10:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15It541028110 for ; Thu, 5 Feb 2004 10:55:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15It5Si065276 for ; Thu, 5 Feb 2004 10:55:05 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i15It5AF075074 for ; Thu, 5 Feb 2004 10:55:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i15It5FN075073; Thu, 5 Feb 2004 10:55:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402051855.i15It5FN075073@xorpc.icir.org> Date: Thu, 5 Feb 2004 10:55:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ system.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 10:55:05 Modified files: xorp/rip/: system.hh Log message: Place redistribution tables in top-level data structure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 10:55:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 10:56:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i15IuMmu047738 for ; Thu, 5 Feb 2004 10:56:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15IuFSi065312; Thu, 5 Feb 2004 10:56:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15Iu241028160; Thu, 5 Feb 2004 10:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15Itr41028137 for ; Thu, 5 Feb 2004 10:55:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15ItrSi065304 for ; Thu, 5 Feb 2004 10:55:53 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i15ItqAF075162 for ; Thu, 5 Feb 2004 10:55:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i15Itqu8075161; Thu, 5 Feb 2004 10:55:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402051855.i15Itqu8075161@xorpc.icir.org> Date: Thu, 5 Feb 2004 10:55:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 10:55:52 Modified files: xorp/rip/: route_db.cc Log message: Extra assertion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 12:01:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 12:02:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i15K27mu074739 for ; Thu, 5 Feb 2004 12:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15K22Si066145; Thu, 5 Feb 2004 12:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15K2041029914; Thu, 5 Feb 2004 12:02:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i15K1Z41029892 for ; Thu, 5 Feb 2004 12:01:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i15K1YSi066135 for ; Thu, 5 Feb 2004 12:01:34 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i15K1YAF095880 for ; Thu, 5 Feb 2004 12:01:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i15K1Ydn095879; Thu, 5 Feb 2004 12:01:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402052001.i15K1Ydn095879@xorpc.icir.org> Date: Thu, 5 Feb 2004 12:01:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.hh update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 12:01:34 Modified files: xorp/rip/: update_queue.hh update_queue.cc Log message: Add validity check for read iterators. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 16:23:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:24:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160OCmu022683 for ; Thu, 5 Feb 2004 16:24:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160O7Si069406; Thu, 5 Feb 2004 16:24:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160O141005606; Thu, 5 Feb 2004 16:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160NP41005587 for ; Thu, 5 Feb 2004 16:23:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160NPSi069404 for ; Thu, 5 Feb 2004 16:23:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160NPAF011126 for ; Thu, 5 Feb 2004 16:23:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160NOOw011125; Thu, 5 Feb 2004 16:23:24 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060023.i160NOOw011125@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:23:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:23:24 Modified files: xorp/rip/: TODO Log message: Bring up to do. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 16:24:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:25:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160PBmu022912 for ; Thu, 5 Feb 2004 16:25:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160P6Si069440; Thu, 5 Feb 2004 16:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160P141005648; Thu, 5 Feb 2004 16:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160Ov41005635 for ; Thu, 5 Feb 2004 16:24:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160OvSi069418 for ; Thu, 5 Feb 2004 16:24:57 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160OvAF011289 for ; Thu, 5 Feb 2004 16:24:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160OvtD011288; Thu, 5 Feb 2004 16:24:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060024.i160OvtD011288@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:24:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in xorp/rip/ port_vars.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:24:57 Modified files: xorp/rip/: Makefile.am Makefile.in Added files: xorp/rip/: port_vars.hh Log message: Move Port timer and counter structures into their own file - port_vars.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:43 2005 Subject: No subject Thu Feb 5 16:27:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:28:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160SDmu023548 for ; Thu, 5 Feb 2004 16:28:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160S9Si069466; Thu, 5 Feb 2004 16:28:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160S141005734; Thu, 5 Feb 2004 16:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160RR41005719 for ; Thu, 5 Feb 2004 16:27:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160RRSi069458 for ; Thu, 5 Feb 2004 16:27:27 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160RQAF011613 for ; Thu, 5 Feb 2004 16:27:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160RQSY011612; Thu, 5 Feb 2004 16:27:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060027.i160RQSY011612@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:27:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output.hh output_table.hh output_table.cc output_updates.cc test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:27:26 Modified files: xorp/rip/: output.hh output_table.hh output_table.cc output_updates.cc test_outputs.cc Log message: Add start() and stop() methods to output processes. Previously output processing was started by constructor, but finer grained control is desirable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 16:31:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:32:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160W9mu024343 for ; Thu, 5 Feb 2004 16:32:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160W5Si069507; Thu, 5 Feb 2004 16:32:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160W141005794; Thu, 5 Feb 2004 16:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160Vj41005784 for ; Thu, 5 Feb 2004 16:31:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160VjSi069503 for ; Thu, 5 Feb 2004 16:31:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160VjAF012040 for ; Thu, 5 Feb 2004 16:31:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160VjIn012039; Thu, 5 Feb 2004 16:31:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060031.i160VjIn012039@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:31:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_updates.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:31:45 Modified files: xorp/rip/: output_updates.hh Log message: Add start() and stop() methods to output processes. Previously output processing was started by constructor, but finer grained control is desirable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 16:32:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:33:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160XKmu024609 for ; Thu, 5 Feb 2004 16:33:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160XESi069531; Thu, 5 Feb 2004 16:33:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160X041005843; Thu, 5 Feb 2004 16:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160WP41005816 for ; Thu, 5 Feb 2004 16:32:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160WPSi069513 for ; Thu, 5 Feb 2004 16:32:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160WPAF012113 for ; Thu, 5 Feb 2004 16:32:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160WPpp012112; Thu, 5 Feb 2004 16:32:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060032.i160WPpp012112@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:32:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:32:25 Modified files: xorp/rip/: port.hh port.cc Log message: Break out port timer and counter structures. Connect output processing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 16:34:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 16:35:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i160ZKmu025036 for ; Thu, 5 Feb 2004 16:35:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160ZFSi069576; Thu, 5 Feb 2004 16:35:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160Z141005918; Thu, 5 Feb 2004 16:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i160YI41005892 for ; Thu, 5 Feb 2004 16:34:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i160YISi069546 for ; Thu, 5 Feb 2004 16:34:18 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i160YIAF012388 for ; Thu, 5 Feb 2004 16:34:18 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i160YIlp012387; Thu, 5 Feb 2004 16:34:18 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402060034.i160YIlp012387@xorpc.icir.org> Date: Thu, 5 Feb 2004 16:34:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif xorp/xrl/targets/ rip4.xrls rip4_base.cc rip4_base.hh rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/ xrl_target4.cc xrl_target4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/05 16:34:18 Modified files: xorp/xrl/interfaces/: rip.xif xorp/xrl/targets/: rip4.xrls rip4_base.cc rip4_base.hh rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/: xrl_target4.cc xrl_target4.hh Log message: Add xrls for add and removing static routes to RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:31:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:32:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WKmu041880 for ; Thu, 5 Feb 2004 17:32:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WDSi070260; Thu, 5 Feb 2004 17:32:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161W141007051; Thu, 5 Feb 2004 17:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161Vv41007028 for ; Thu, 5 Feb 2004 17:31:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161VvSi070249 for ; Thu, 5 Feb 2004 17:31:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161VuAF017701 for ; Thu, 5 Feb 2004 17:31:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161VuXZ017700; Thu, 5 Feb 2004 17:31:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060131.i161VuXZ017700@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:31:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:31:56 Modified files: xorp/rib/: rt_tab_base.hh Log message: * Replace abort() with XLOG_UNREACHABLE() * Minor editorial nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:31:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:32:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WOmu041895 for ; Thu, 5 Feb 2004 17:32:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WFSi070262; Thu, 5 Feb 2004 17:32:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161W041007039; Thu, 5 Feb 2004 17:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161VD41007014 for ; Thu, 5 Feb 2004 17:31:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161VCSi070240 for ; Thu, 5 Feb 2004 17:31:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161VCAF017594 for ; Thu, 5 Feb 2004 17:31:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161VCOb017593; Thu, 5 Feb 2004 17:31:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060131.i161VCOb017593@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:31:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:31:12 Modified files: xorp/rib/: rib.hh Log message: Remove no_rib_clients() method, because it is not used anywhere. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:33:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:34:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161YDmu042302 for ; Thu, 5 Feb 2004 17:34:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161Y7Si070299; Thu, 5 Feb 2004 17:34:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161Y041007164; Thu, 5 Feb 2004 17:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161XN41007137 for ; Thu, 5 Feb 2004 17:33:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161XNSi070288 for ; Thu, 5 Feb 2004 17:33:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161XMAF017955 for ; Thu, 5 Feb 2004 17:33:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161XMEC017954; Thu, 5 Feb 2004 17:33:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060133.i161XMEC017954@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:33:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:33:22 Modified files: xorp/rib/: rt_tab_register.cc Log message: Replace conditional abort() with XLOG_ASSERT() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:35:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:36:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161aGmu042717 for ; Thu, 5 Feb 2004 17:36:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161aCSi070340; Thu, 5 Feb 2004 17:36:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161a141007210; Thu, 5 Feb 2004 17:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161ZJ41007191 for ; Thu, 5 Feb 2004 17:35:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161ZJSi070332 for ; Thu, 5 Feb 2004 17:35:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161ZJAF018218 for ; Thu, 5 Feb 2004 17:35:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161ZJPo018217; Thu, 5 Feb 2004 17:35:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060135.i161ZJPo018217@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:35:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc xorp/rib/ version.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:35:19 Modified files: xorp/rib/: xrl_target.cc Removed files: xorp/rib/: version.h Log message: Remove version.h which defines string RIB_VERSION, and use XrlRibTargetBase::version() instead in a response to common/0.1/get_version XRL _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:36:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:37:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161bpmu043038 for ; Thu, 5 Feb 2004 17:37:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161bjSi070354; Thu, 5 Feb 2004 17:37:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161b141007245; Thu, 5 Feb 2004 17:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161a041007203 for ; Thu, 5 Feb 2004 17:36:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161a0Si070336 for ; Thu, 5 Feb 2004 17:36:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161a0AF018296 for ; Thu, 5 Feb 2004 17:36:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161a0b8018294; Thu, 5 Feb 2004 17:36:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060136.i161a0b8018294@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:36:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:36:00 Modified files: xorp/rib/: Makefile.am Makefile.in Log message: * Remove version.h, because it is not needed anymore * Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:32:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:38:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161c6mu043114 for ; Thu, 5 Feb 2004 17:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161c1Si070362; Thu, 5 Feb 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161X041007113; Thu, 5 Feb 2004 17:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161WO41007067 for ; Thu, 5 Feb 2004 17:32:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WOSi070266 for ; Thu, 5 Feb 2004 17:32:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WOAF017778 for ; Thu, 5 Feb 2004 17:32:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161WO5m017777; Thu, 5 Feb 2004 17:32:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060132.i161WO5m017777@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:32:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_expect.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:32:24 Modified files: xorp/rib/: rt_tab_expect.cc Log message: Replace abort() with XLOG_FATAL() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 17:32:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 17:38:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i161c7mu043137 for ; Thu, 5 Feb 2004 17:38:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161c1Si070365; Thu, 5 Feb 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161X141007125; Thu, 5 Feb 2004 17:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i161Wl41007088 for ; Thu, 5 Feb 2004 17:32:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WlSi070275 for ; Thu, 5 Feb 2004 17:32:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i161WlAF017855 for ; Thu, 5 Feb 2004 17:32:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i161WlRi017854; Thu, 5 Feb 2004 17:32:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060132.i161WlRi017854@xorpc.icir.org> Date: Thu, 5 Feb 2004 17:32:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_origin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 17:32:47 Modified files: xorp/rib/: rt_tab_origin.hh Log message: Replace abort() with XLOG_UNREACHABLE() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 18:02:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 18:06:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1626omu048782 for ; Thu, 5 Feb 2004 18:06:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1626kSi070736; Thu, 5 Feb 2004 18:06:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1623141007720; Thu, 5 Feb 2004 18:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1622D41007705 for ; Thu, 5 Feb 2004 18:02:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1622CSi070671 for ; Thu, 5 Feb 2004 18:02:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1622CAF020435 for ; Thu, 5 Feb 2004 18:02:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1622CwH020434; Thu, 5 Feb 2004 18:02:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060202.i1622CwH020434@xorpc.icir.org> Date: Thu, 5 Feb 2004 18:02:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh parser_direct_cmds.hh register_server.cc register_server.hh rib_manager.cc rib_manager.hh ...test_deletion.cc ...test_register_xrls.cc ...xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/05 18:02:12 Modified files: xorp/rib/: dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh parser_direct_cmds.hh register_server.cc register_server.hh rib_manager.cc rib_manager.hh test_deletion.cc test_register_xrls.cc xrl_target.cc Log message: Replace IPNet and IPNet with IPv4Net and IPv6Net respectively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 18:11:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 18:12:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i162CQmu049873 for ; Thu, 5 Feb 2004 18:12:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i162CKSi070787; Thu, 5 Feb 2004 18:12:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i162C141007904; Thu, 5 Feb 2004 18:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i162BJ41007891 for ; Thu, 5 Feb 2004 18:11:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i162BISi070778 for ; Thu, 5 Feb 2004 18:11:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i162BIAF021039 for ; Thu, 5 Feb 2004 18:11:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i162BITL021038; Thu, 5 Feb 2004 18:11:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060211.i162BITL021038@xorpc.icir.org> Date: Thu, 5 Feb 2004 18:11:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc xorp/rtrmgr/ version.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/02/05 18:11:18 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in xrl_rtrmgr_interface.cc xrl_xorpsh_interface.cc Removed files: xorp/rtrmgr/: version.h Log message: Remove version.h which defines strings RTRMGR_VERSION and XORPSH_VERSION, and use XrlRtrmgrTargetBase::version() and XrlXorpshTargetBase::version() instead in a response to common/0.1/get_version XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Thu Feb 5 19:31:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Feb 2004 19:32:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i163WCmu062618 for ; Thu, 5 Feb 2004 19:32:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i163W7Si071712; Thu, 5 Feb 2004 19:32:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i163W141009280; Thu, 5 Feb 2004 19:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i163Vu41009271 for ; Thu, 5 Feb 2004 19:31:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i163VuSi071706 for ; Thu, 5 Feb 2004 19:31:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i163VuAF024862 for ; Thu, 5 Feb 2004 19:31:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i163VuvY024861; Thu, 5 Feb 2004 19:31:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402060331.i163VuvY024861@xorpc.icir.org> Date: Thu, 5 Feb 2004 19:31:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/05 19:31:56 Modified files: ./: config Log message: Set keyword "XORP" as an alias for "CVSHeader" using the recently implemented "LocalKeyword" CVS configuration options. Previously, this was done inside CVSROOT/options, but this was FreeBSD-specific setup which stopped working after the FreeBSD-patched cvs version was upgraded to the generic 1.12.5 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 14:37:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 14:38:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i16McCmu041270 for ; Fri, 6 Feb 2004 14:38:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mc4Si086912; Fri, 6 Feb 2004 14:38:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16Mc141000573; Fri, 6 Feb 2004 14:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16MbH41000545 for ; Fri, 6 Feb 2004 14:37:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MbHSi086907 for ; Fri, 6 Feb 2004 14:37:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MbHAF073337 for ; Fri, 6 Feb 2004 14:37:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i16MbHhr073336; Fri, 6 Feb 2004 14:37:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402062237.i16MbHhr073336@xorpc.icir.org> Date: Fri, 6 Feb 2004 14:37:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 04/02/06 14:37:17 Modified files: xorp/libcomm/: Makefile.in Log message: Regenerated _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 14:43:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 14:44:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mi8mu042156 for ; Fri, 6 Feb 2004 14:44:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mi3Si087002; Fri, 6 Feb 2004 14:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16Mi041000707; Fri, 6 Feb 2004 14:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16MhS41000695 for ; Fri, 6 Feb 2004 14:43:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MhSSi086996 for ; Fri, 6 Feb 2004 14:43:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MhSAF073815 for ; Fri, 6 Feb 2004 14:43:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i16MhSQ1073814; Fri, 6 Feb 2004 14:43:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402062243.i16MhSQ1073814@xorpc.icir.org> Date: Fri, 6 Feb 2004 14:43:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib.xif rib_xif.hh rib_xif.cc xorp/xrl/targets/ rib.xrls rib_base.hh rib_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/02/06 14:43:28 Modified files: xorp/xrl/interfaces/: rib.xif rib_xif.hh rib_xif.cc xorp/xrl/targets/: rib.xrls rib_base.hh rib_base.cc Log message: Rename tgt_class and tgt_instance XRL arguments to target_class and target_instance respectively (for consistency). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 14:44:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 14:45:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mj8mu042328 for ; Fri, 6 Feb 2004 14:45:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mj3Si087020; Fri, 6 Feb 2004 14:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16Mj141000761; Fri, 6 Feb 2004 14:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16MiE41000722 for ; Fri, 6 Feb 2004 14:44:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MiDSi087006 for ; Fri, 6 Feb 2004 14:44:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MiDAF073853 for ; Fri, 6 Feb 2004 14:44:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i16MiDEa073852; Fri, 6 Feb 2004 14:44:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402062244.i16MiDEa073852@xorpc.icir.org> Date: Fri, 6 Feb 2004 14:44:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh parser.cc parser.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh ...routemap.cc ...routemap.hh ...rt_tab_deletion.hh ...rt_tab_expect.cc ...rt_tab_expect.hh ...rt_tab_export.hh ...rt_tab_extint.cc ...rt_tab_extint.hh ...rt_tab_merged.hh ...rt_tab_origin.hh ...rt_tab_register.cc ...rt_tab_register.hh ...test_deletion.cc ...test_register.cc ...test_register_xrls.cc ...test_rib_xrls.cc ...xrl_shell_funcs.sh ...xrl_target.cc ...xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/06 14:44:13 Modified files: xorp/rib/: dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh parser.cc parser.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh routemap.cc routemap.hh rt_tab_deletion.hh rt_tab_expect.cc rt_tab_expect.hh rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_merged.hh rt_tab_origin.hh rt_tab_register.cc rt_tab_register.hh test_deletion.cc test_register.cc test_register_xrls.cc test_rib_xrls.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh Log message: * Rename tgt_class and tgt_instance XRL arguments to target_class and target_instance respectively (for consistency). * Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 14:58:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 14:59:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mx9mu049855 for ; Fri, 6 Feb 2004 14:59:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16Mx3Si087191; Fri, 6 Feb 2004 14:59:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16Mx141001079; Fri, 6 Feb 2004 14:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i16Mwj41001067 for ; Fri, 6 Feb 2004 14:58:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MwiSi087185 for ; Fri, 6 Feb 2004 14:58:44 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i16MwiAF075045 for ; Fri, 6 Feb 2004 14:58:44 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i16MwiHA075044; Fri, 6 Feb 2004 14:58:44 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402062258.i16MwiHA075044@xorpc.icir.org> Date: Fri, 6 Feb 2004 14:58:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 04/02/06 14:58:44 Modified files: xorp/rib/: TODO Log message: Add a TODO entry to augment the rib_client interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 16:54:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 16:55:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i170tBmu076285 for ; Fri, 6 Feb 2004 16:55:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i170t5Si088615; Fri, 6 Feb 2004 16:55:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i170t141003396; Fri, 6 Feb 2004 16:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i170sZ41003371 for ; Fri, 6 Feb 2004 16:54:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i170sYSi088608 for ; Fri, 6 Feb 2004 16:54:34 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i170sYAF084463 for ; Fri, 6 Feb 2004 16:54:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i170sYjG084462; Fri, 6 Feb 2004 16:54:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402070054.i170sYjG084462@xorpc.icir.org> Date: Fri, 6 Feb 2004 16:54:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/06 16:54:34 Modified files: xorp/rip/: xrl_port_io.cc Log message: Set enabled state to "disabled" when shutting down. This informs associated port that io mechanism is no longer running and stops its output processes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:44 2005 Subject: No subject Fri Feb 6 16:59:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Feb 2004 17:00:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i17108mu077011 for ; Fri, 6 Feb 2004 17:00:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i17103Si088678; Fri, 6 Feb 2004 17:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1710141003510; Fri, 6 Feb 2004 17:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i170xT41003490 for ; Fri, 6 Feb 2004 16:59:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i170xSSi088662 for ; Fri, 6 Feb 2004 16:59:28 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i170xSAF084886 for ; Fri, 6 Feb 2004 16:59:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i170xSbn084885; Fri, 6 Feb 2004 16:59:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402070059.i170xSbn084885@xorpc.icir.org> Date: Fri, 6 Feb 2004 16:59:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/06 16:59:28 Modified files: xorp/rip/: route_db.cc Log message: Flush update_queue when flushing routes. This releases any references that may be held by the queue and allows all routes to be immediately removed by flush. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 0:48:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 00:55:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1B8tumu059572 for ; Wed, 11 Feb 2004 00:55:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1B8tpSi062990; Wed, 11 Feb 2004 00:55:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1B8n17g012516; Wed, 11 Feb 2004 00:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1B8mr7g012490 for ; Wed, 11 Feb 2004 00:48:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1B8mqSi062908 for ; Wed, 11 Feb 2004 00:48:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1B8mpAF064761 for ; Wed, 11 Feb 2004 00:48:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1B8mpbv064760; Wed, 11 Feb 2004 00:48:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402110848.i1B8mpbv064760@xorpc.icir.org> Date: Wed, 11 Feb 2004 0:48:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc main_routemap.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh protocol.cc ...protocol.hh ...register_server.cc ...register_server.hh ...rib.cc ...rib.hh ...rib_client.cc ...rib_client.hh ...rib_manager.cc ...rib_manager.hh ...route.cc ...route.hh ...routemap.cc ...routemap.hh ...rt_tab_base.cc ...rt_tab_base.hh ...rt_tab_deletion.cc ...rt_tab_deletion.hh ...rt_tab_expect.cc ...rt_tab_expect.hh ...rt_tab_export.cc ...rt_tab_export.hh ...rt_tab_extint.cc ...rt_tab_extint.hh ...rt_tab_log.cc ...rt_tab_log.hh ...rt_tab_merged.cc ...rt_tab_merged.hh ...rt_tab_origin.cc ...rt_tab_origin.hh ...rt_tab_redist.cc ...rt_tab_redist.hh ...rt_tab_register.cc ...rt_tab_register.hh ...test_deletion.cc ...test_register.cc ...test_register_xrls.cc ...tes! t_rib_clien! t.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...vifmanager.cc ...vifmanager.hh ...xrl_target.cc ...xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/11 00:48:51 Modified files: xorp/rib/: dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc main_routemap.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh protocol.cc protocol.hh register_server.cc register_server.hh rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh route.cc route.hh routemap.cc routemap.hh rt_tab_base.cc rt_tab_base.hh rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_expect.cc rt_tab_expect.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_log.cc rt_tab_log.hh rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_redist.hh rt_tab_register.cc rt_tab_register.hh test_deletion.cc test_register.cc test_register_xrls.cc test_rib_client.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc xrl_target.hh Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 12:18:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 12:19:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKJ7mu069256 for ; Wed, 11 Feb 2004 12:19:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKJ3Si072134; Wed, 11 Feb 2004 12:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1BKJ17g024925; Wed, 11 Feb 2004 12:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1BKIS7g024905 for ; Wed, 11 Feb 2004 12:18:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKISSi072126 for ; Wed, 11 Feb 2004 12:18:28 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKISAF001852 for ; Wed, 11 Feb 2004 12:18:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1BKISFu001851; Wed, 11 Feb 2004 12:18:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402112018.i1BKISFu001851@xorpc.icir.org> Date: Wed, 11 Feb 2004 12:18:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/11 12:18:28 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh Log message: Add ADDR_BITLEN constant. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 12:18:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 12:19:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKJBmu069283 for ; Wed, 11 Feb 2004 12:19:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKJ5Si072136; Wed, 11 Feb 2004 12:19:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1BKJ37g024937; Wed, 11 Feb 2004 12:19:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1BKIn7g024914 for ; Wed, 11 Feb 2004 12:18:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKImSi072132 for ; Wed, 11 Feb 2004 12:18:48 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1BKImAF001891 for ; Wed, 11 Feb 2004 12:18:48 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1BKIm8h001890; Wed, 11 Feb 2004 12:18:48 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402112018.i1BKIm8h001890@xorpc.icir.org> Date: Wed, 11 Feb 2004 12:18:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_callback.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/11 12:18:48 Modified files: xorp/libxorp/: test_callback.cc Log message: Add an additional check. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 18:35:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 18:37:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C2bGmu050786 for ; Wed, 11 Feb 2004 18:37:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C2bASi077048; Wed, 11 Feb 2004 18:37:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C2a07g002591; Wed, 11 Feb 2004 18:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C2Z87g002574 for ; Wed, 11 Feb 2004 18:35:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C2Z8Si077021 for ; Wed, 11 Feb 2004 18:35:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C2Z8AF029326 for ; Wed, 11 Feb 2004 18:35:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1C2Z8Dg029323; Wed, 11 Feb 2004 18:35:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402120235.i1C2Z8Dg029323@xorpc.icir.org> Date: Wed, 11 Feb 2004 18:35:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.cc ipv4.hh utility.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/11 18:35:08 Modified files: xorp/libxorp/: ipv4.cc ipv4.hh utility.h Log message: * Change the implementation of IPv4::ZERO(), IPv4::ALL_ONES(), and all other IPv4 addresses with constant value to return a reference to static const IPv4 value (similar to IPv6) instead of a copy of IPv4 address. * Move the implementation of htonl_literal(x) to utility.h [Approved by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 19:17:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 19:18:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3ITmu056922 for ; Wed, 11 Feb 2004 19:18:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3IPSi077530; Wed, 11 Feb 2004 19:18:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3I17g003308; Wed, 11 Feb 2004 19:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3H47g003290 for ; Wed, 11 Feb 2004 19:17:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3H4Si077520 for ; Wed, 11 Feb 2004 19:17:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3H4AF030750 for ; Wed, 11 Feb 2004 19:17:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1C3H4Km030749; Wed, 11 Feb 2004 19:17:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402120317.i1C3H4Km030749@xorpc.icir.org> Date: Wed, 11 Feb 2004 19:17:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/11 19:17:04 Modified files: xorp/rib/: route.hh Log message: Add a new method nexthop_addr() to return the hext-hop router address (or A::ZERO() if no next-hop). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 19:18:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 19:19:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3JMmu057060 for ; Wed, 11 Feb 2004 19:19:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3JISi077548; Wed, 11 Feb 2004 19:19:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3J07g003332; Wed, 11 Feb 2004 19:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3If7g003320 for ; Wed, 11 Feb 2004 19:18:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3IeSi077532 for ; Wed, 11 Feb 2004 19:18:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3IeAF030800 for ; Wed, 11 Feb 2004 19:18:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1C3IeDd030799; Wed, 11 Feb 2004 19:18:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402120318.i1C3IeDd030799@xorpc.icir.org> Date: Wed, 11 Feb 2004 19:18:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/11 19:18:40 Modified files: xorp/rib/: rib_client.cc Log message: * Remove local utilities to extract destination, gateway, and vifname from a route entry, and get those values directly from the route entry itself. * Add XLOG_ASSERT() statements that verify that the outgoing vif for a routing entry is not NULL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 19:22:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 19:24:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3OGmu057793 for ; Wed, 11 Feb 2004 19:24:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3OBSi077618; Wed, 11 Feb 2004 19:24:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3N17g003408; Wed, 11 Feb 2004 19:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C3Mp7g003399 for ; Wed, 11 Feb 2004 19:22:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3MpSi077601 for ; Wed, 11 Feb 2004 19:22:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C3MpAF030894 for ; Wed, 11 Feb 2004 19:22:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1C3MpM1030893; Wed, 11 Feb 2004 19:22:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402120322.i1C3MpM1030893@xorpc.icir.org> Date: Wed, 11 Feb 2004 19:22:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/11 19:22:51 Modified files: xorp/rib/: rib.cc Log message: * If a route is installed from an IGP, then we must have a directly-connected network interface toward the next-hop router. If there is no such interface, then add_route() will return an error. Note that this is an intermediate solution of the problem of associating a routing entry with an outgoing network interface. * Remove addr_zero() local utility that returns a reference to IPv4::ZERO(), because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Wed Feb 11 23:00:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Feb 2004 23:01:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C71Wmu098117 for ; Wed, 11 Feb 2004 23:01:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C71RSi079835; Wed, 11 Feb 2004 23:01:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C7117g006562; Wed, 11 Feb 2004 23:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1C70o7g006552 for ; Wed, 11 Feb 2004 23:00:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C70oSi079824 for ; Wed, 11 Feb 2004 23:00:50 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1C70oAF034554 for ; Wed, 11 Feb 2004 23:00:50 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1C70ocg034553; Wed, 11 Feb 2004 23:00:50 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402120700.i1C70ocg034553@xorpc.icir.org> Date: Wed, 11 Feb 2004 23:00:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh plumbing.cc plumbing.hh route_table_deletion.hh route_table_dump.cc route_table_dump.hh xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/02/11 23:00:50 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh plumbing.cc plumbing.hh route_table_deletion.hh route_table_dump.cc route_table_dump.hh xorp/bgp/harness/: test_peering2.sh Log message: BGP processes update messages by passing them through a series of route tables. The route tables are mostly statically plumbed together. There are however two dynamic tables the "dump table" and the "deletion table". When a session is established the "dump table" is responsible for passing all currently winning routes to this new peer. Once all the routes have been sent to the peer the "dump table" removes itself from the plumbing. The "deletion table" is used to remove routes when a session goes down. The "deletion table" also removes itself when all the routes sent by this peer have been removed. There are a number of issues with the interactions between the two tables. The specific problem we are trying to address is the case of a "deletion table" existing and hence sending deletes when a new peering is established. Previously when a new peering was established the "dump table" would be made aware of all live sessions, but not of any of the sessions which were down but still sending deletes. If a session goes down (causing a "deletion table" to be installed) while another another session is being brought up (by a "dump table"). Then the "dump table" has to deal specially with the deletes being sent by the "delete table". The "dump table" has to either supress or pass through the deletes, but most importantly it has to stay around until the "deletion table" has finished sending deletes. It is important to note that any unneccesary deletes that make it to the downstream cache will cause an XLOG_ASSERT. As deletes must have corresponding state in the cache. Previously a new session being brought up while a deletion was in progress would fail. As the new peer was unaware of the downed peer any deletes that came from this peer would appear to be from a new peer. So the "dump table" would pass them through and the cache would signal an inconsistency by calling XLOG_ASSERT. The fix is to tell the "dump table" about any "delete tables" that are running when the "dump table" is instantiated. This fixes all but one of the regression tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 9:58:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 09:59:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CHxVmu020402 for ; Thu, 12 Feb 2004 09:59:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CHxQFq088244; Thu, 12 Feb 2004 09:59:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CHx17g019808; Thu, 12 Feb 2004 09:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CHwC7g019784 for ; Thu, 12 Feb 2004 09:58:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CHwCFq088232 for ; Thu, 12 Feb 2004 09:58:12 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CHwBAF048315 for ; Thu, 12 Feb 2004 09:58:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CHwBdJ048314; Thu, 12 Feb 2004 09:58:11 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402121758.i1CHwBdJ048314@xorpc.icir.org> Date: Thu, 12 Feb 2004 9:58:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/12 09:58:11 Modified files: xorp/rip/: route_db.cc Log message: Fix a scoping bug. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 10:42:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 10:43:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIhVmu028837 for ; Thu, 12 Feb 2004 10:43:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIhOFq088724; Thu, 12 Feb 2004 10:43:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CIh07g020847; Thu, 12 Feb 2004 10:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CIga7g020835 for ; Thu, 12 Feb 2004 10:42:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIgZFq088718 for ; Thu, 12 Feb 2004 10:42:35 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIgZAF049214 for ; Thu, 12 Feb 2004 10:42:35 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CIgZH0049213; Thu, 12 Feb 2004 10:42:35 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402121842.i1CIgZH0049213@xorpc.icir.org> Date: Thu, 12 Feb 2004 10:42:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/12 10:42:35 Modified files: xorp/bgp/: plumbing.cc plumbing.hh Log message: Once a peering has been established even if the peering subsequently goes down the plumbing is left intact. Obviously the peering is marked as down. There are therefore two code paths for bringing a peering up. A dump_entire_table method that can be placed in both code paths. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 10:50:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 10:51:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIpJmu030319 for ; Thu, 12 Feb 2004 10:51:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIpCFq088820; Thu, 12 Feb 2004 10:51:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CIp07g021037; Thu, 12 Feb 2004 10:51:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CIoJ7g021015 for ; Thu, 12 Feb 2004 10:50:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIoJFq088815 for ; Thu, 12 Feb 2004 10:50:19 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CIoJAF049384 for ; Thu, 12 Feb 2004 10:50:19 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CIoJvC049383; Thu, 12 Feb 2004 10:50:19 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402121850.i1CIoJvC049383@xorpc.icir.org> Date: Thu, 12 Feb 2004 10:50:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/02/12 10:50:19 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Add a delay so if the BGP process core dumps we detect it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 11:08:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 11:09:40 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJ9emu033796 for ; Thu, 12 Feb 2004 11:09:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJ9ZFq089034; Thu, 12 Feb 2004 11:09:35 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJ917g021524; Thu, 12 Feb 2004 11:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJ8u7g021513 for ; Thu, 12 Feb 2004 11:08:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJ8uFq089030 for ; Thu, 12 Feb 2004 11:08:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJ8tAF049851 for ; Thu, 12 Feb 2004 11:08:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CJ8tv2049850; Thu, 12 Feb 2004 11:08:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402121908.i1CJ8tv2049850@xorpc.icir.org> Date: Thu, 12 Feb 2004 11:08:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/12 11:08:55 Modified files: xorp/rip/: port.cc Log message: Hook in solicited update output process. This answer route table requests from non-RIP IP ports. Tested against with rtquery. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 11:10:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 11:11:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJBDmu034121 for ; Thu, 12 Feb 2004 11:11:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJB5Fq089075; Thu, 12 Feb 2004 11:11:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJB17g021612; Thu, 12 Feb 2004 11:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJAg7g021589 for ; Thu, 12 Feb 2004 11:10:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJAgFq089072 for ; Thu, 12 Feb 2004 11:10:42 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJAfAF050011 for ; Thu, 12 Feb 2004 11:10:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CJAfTs050010; Thu, 12 Feb 2004 11:10:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402121910.i1CJAfTs050010@xorpc.icir.org> Date: Thu, 12 Feb 2004 11:10:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.hh xrl_port_manager.cc xrl_target4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/12 11:10:41 Modified files: xorp/rip/: xrl_port_manager.hh xrl_port_manager.cc xrl_target4.cc Log message: Enable XRL path packet reception. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 11:28:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 11:29:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJTEmu043330 for ; Thu, 12 Feb 2004 11:29:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJTAFq089291; Thu, 12 Feb 2004 11:29:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJT17g021973; Thu, 12 Feb 2004 11:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJS97g021950 for ; Thu, 12 Feb 2004 11:28:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJS9Fq089280 for ; Thu, 12 Feb 2004 11:28:09 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJS8AF050432 for ; Thu, 12 Feb 2004 11:28:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CJS8Nl050431; Thu, 12 Feb 2004 11:28:08 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402121928.i1CJS8Nl050431@xorpc.icir.org> Date: Thu, 12 Feb 2004 11:28:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/12 11:28:08 Modified files: xorp/bgp/: plumbing.hh Log message: Make the dump_entire_table a private method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 11:34:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 11:35:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJZJmu044920 for ; Thu, 12 Feb 2004 11:35:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJZDFq089388; Thu, 12 Feb 2004 11:35:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJZ07g022112; Thu, 12 Feb 2004 11:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CJYX7g022098 for ; Thu, 12 Feb 2004 11:34:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJYXFq089357 for ; Thu, 12 Feb 2004 11:34:33 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CJYXAF050653 for ; Thu, 12 Feb 2004 11:34:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CJYXwU050652; Thu, 12 Feb 2004 11:34:33 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402121934.i1CJYXwU050652@xorpc.icir.org> Date: Thu, 12 Feb 2004 11:34:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/02/12 11:34:33 Modified files: xorp/bgp/: plumbing.cc xorp/bgp/harness/: test_peering2.sh Log message: Multiple deletion tables can appear on the same peering if it is being continuously toggled. Look for multiple deletion tables. This seems to fix our last outstanding peering bug. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 12:02:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:03:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK3Jmu054935 for ; Thu, 12 Feb 2004 12:03:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK39Fq089729; Thu, 12 Feb 2004 12:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CK317g022717; Thu, 12 Feb 2004 12:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CK2j7g022698 for ; Thu, 12 Feb 2004 12:02:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK2iFq089725 for ; Thu, 12 Feb 2004 12:02:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK2iAF052884 for ; Thu, 12 Feb 2004 12:02:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CK2irH052883; Thu, 12 Feb 2004 12:02:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122002.i1CK2irH052883@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:02:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/interfaces/ static_routes.xif static_routes_xif.cc static_routes_xif.hh xorp/xrl/targets/ static_routes.tgt static_routes.xrls static_routes_base.cc static_routes_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:02:44 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: static_routes.xif static_routes_xif.cc static_routes_xif.hh xorp/xrl/targets/: static_routes.tgt static_routes.xrls static_routes_base.cc static_routes_base.hh Log message: Add Static Routes XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 12:06:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:07:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK7Cmu055586 for ; Thu, 12 Feb 2004 12:07:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK75Fq089787; Thu, 12 Feb 2004 12:07:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CK717g022801; Thu, 12 Feb 2004 12:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CK6o7g022789 for ; Thu, 12 Feb 2004 12:06:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK6oFq089785 for ; Thu, 12 Feb 2004 12:06:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CK6oAF053764 for ; Thu, 12 Feb 2004 12:06:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CK6ogn053763; Thu, 12 Feb 2004 12:06:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122006.i1CK6ogn053763@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:06:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:06:50 xorp/static_routes Update of /usr/local/share/doc/apache/cvs/xorp/static_routes In directory xorpc.icir.org:/tmp/cvs-serv53757/static_routes Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/static_routes added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 12:11:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:12:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKCHmu056596 for ; Thu, 12 Feb 2004 12:12:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKCAFq089848; Thu, 12 Feb 2004 12:12:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKC17g022909; Thu, 12 Feb 2004 12:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKBS7g022891 for ; Thu, 12 Feb 2004 12:11:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKBRFq089833 for ; Thu, 12 Feb 2004 12:11:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKBRAF054835 for ; Thu, 12 Feb 2004 12:11:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKBRq1054834; Thu, 12 Feb 2004 12:11:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122011.i1CKBRq1054834@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:11:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ .cvsignore Makefile.am Makefile.in static_routes_module.h static_routes_node.cc static_routes_node.hh xorp_static_routes.cc ...xrl_static_routes_node.cc ...xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:11:27 Added files: xorp/static_routes/: .cvsignore Makefile.am Makefile.in static_routes_module.h static_routes_node.cc static_routes_node.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: Add a furst-cut implementation of the StaticRoutes module. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 12:14:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:15:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKFGmu062739 for ; Thu, 12 Feb 2004 12:15:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKFAFq089889; Thu, 12 Feb 2004 12:15:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKF07g022983; Thu, 12 Feb 2004 12:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKEE7g022966 for ; Thu, 12 Feb 2004 12:14:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKEDFq089867 for ; Thu, 12 Feb 2004 12:14:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKEDAF055243 for ; Thu, 12 Feb 2004 12:14:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKEDXA055242; Thu, 12 Feb 2004 12:14:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122014.i1CKEDXA055242@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:14:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc proto_unit.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:14:13 Modified files: xorp/libproto/: proto_unit.cc proto_unit.hh Log message: * Add entries for StaticRoutes (currently not used). * Change the RIB module name from "RIB" to "rib". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:45 2005 Subject: No subject Thu Feb 12 12:18:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:19:39 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKJdmu063624 for ; Thu, 12 Feb 2004 12:19:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKJYFq089953; Thu, 12 Feb 2004 12:19:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKJ17g023078; Thu, 12 Feb 2004 12:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKIC7g023049 for ; Thu, 12 Feb 2004 12:18:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKICFq089937 for ; Thu, 12 Feb 2004 12:18:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKICAF055784 for ; Thu, 12 Feb 2004 12:18:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKICtT055783; Thu, 12 Feb 2004 12:18:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122018.i1CKICtT055783@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:18:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:18:12 Modified files: ./: configure.in configure Log message: * Add python2.2 to the list of binary programs to check for Python The reason is because python2.2 is the default program name if "ports/lang/python22" is installed on a recent FreeBSD (e.g.FreeBSD-4.9). * Add static_routes/Makefile to the list of files to generate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 12:20:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:21:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKLAmu063956 for ; Thu, 12 Feb 2004 12:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKL6Fq089989; Thu, 12 Feb 2004 12:21:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKL17g023147; Thu, 12 Feb 2004 12:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKKj7g023138 for ; Thu, 12 Feb 2004 12:20:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKKiFq089982 for ; Thu, 12 Feb 2004 12:20:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKKiAF056180 for ; Thu, 12 Feb 2004 12:20:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKKiWe056179; Thu, 12 Feb 2004 12:20:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122020.i1CKKiWe056179@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:20:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:20:44 Modified files: ./: Makefile.am Makefile.in Log message: Add static_routes to the list of directories to compile. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 12:24:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:25:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKPFmu064757 for ; Thu, 12 Feb 2004 12:25:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKP6Fq090035; Thu, 12 Feb 2004 12:25:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKP07g023251; Thu, 12 Feb 2004 12:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKOL7g023231 for ; Thu, 12 Feb 2004 12:24:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKOLFq090018 for ; Thu, 12 Feb 2004 12:24:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKOLAF056832 for ; Thu, 12 Feb 2004 12:24:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKOLoH056831; Thu, 12 Feb 2004 12:24:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402122024.i1CKOLoH056831@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:24:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/12 12:24:21 Modified files: xorp/pim/: configure_pim Log message: * Change the default configuration for hostname possum.icir.org * Move "pim_enable_bsr true" right before "pim_start_bsr" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 12:29:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:30:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKUCmu065736 for ; Thu, 12 Feb 2004 12:30:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKU7Fq090087; Thu, 12 Feb 2004 12:30:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKU07g023330; Thu, 12 Feb 2004 12:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKTP7g023314 for ; Thu, 12 Feb 2004 12:29:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKTPFq090065 for ; Thu, 12 Feb 2004 12:29:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKTPAF063364 for ; Thu, 12 Feb 2004 12:29:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1CKTPjV063363; Thu, 12 Feb 2004 12:29:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402122029.i1CKTPjV063363@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:29:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: hodson@xorpc.icir.org. 04/02/12 12:29:25 Modified files: xorp/static_routes/: xrl_static_routes_node.cc Log message: Check IPv6 table registered variable rather than IPv4 before registering IPv6 table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 12:32:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 12:33:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKXFmu066328 for ; Thu, 12 Feb 2004 12:33:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKX8Fq090129; Thu, 12 Feb 2004 12:33:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKX17g023392; Thu, 12 Feb 2004 12:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1CKWJ7g023378 for ; Thu, 12 Feb 2004 12:32:19 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKWJFq090121; Thu, 12 Feb 2004 12:32:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i1CKWJ8N032664; Thu, 12 Feb 2004 12:32:19 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200402122032.i1CKWJ8N032664@possum.icir.org> To: hodson@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc In-Reply-To: Message from Orion Hodson of "Thu, 12 Feb 2004 12:29:25." <200402122029.i1CKTPjV063363@xorpc.icir.org> Date: Thu, 12 Feb 2004 12:32:19 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Wow! You get the award for fastest bug discovery! :) Pavlin > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Repository: xorp/static_routes/ > Changes by: hodson@xorpc.icir.org. 04/02/12 12:29:25 > > Modified files: > xorp/static_routes/: xrl_static_routes_node.cc > > Log message: > Check IPv6 table registered variable rather than IPv4 before > registering IPv6 table. > > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 22:05:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 22:06:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D66Fmu094400 for ; Thu, 12 Feb 2004 22:06:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D669Fq095807; Thu, 12 Feb 2004 22:06:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D6617g004123; Thu, 12 Feb 2004 22:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D65P7g004113 for ; Thu, 12 Feb 2004 22:05:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D65PFq095805 for ; Thu, 12 Feb 2004 22:05:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D65OAF082806 for ; Thu, 12 Feb 2004 22:05:24 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1D65OH4082805; Thu, 12 Feb 2004 22:05:24 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402130605.i1D65OH4082805@xorpc.icir.org> Date: Thu, 12 Feb 2004 22:05:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_callback.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/12 22:05:24 Modified files: xorp/libxorp/: test_callback.cc Log message: Add a test case that causes abstract method to be called and process to exit unpleasantly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 22:06:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 22:07:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D67Jmu094561 for ; Thu, 12 Feb 2004 22:07:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D679Fq095825; Thu, 12 Feb 2004 22:07:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D6717g004146; Thu, 12 Feb 2004 22:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D66v7g004136 for ; Thu, 12 Feb 2004 22:06:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D66uFq095814 for ; Thu, 12 Feb 2004 22:06:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D66uAF082855 for ; Thu, 12 Feb 2004 22:06:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1D66uIS082854; Thu, 12 Feb 2004 22:06:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402130606.i1D66uIS082854@xorpc.icir.org> Date: Thu, 12 Feb 2004 22:06:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.hh safe_callback_obj.cc safe_callback_obj.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/12 22:06:56 Modified files: xorp/libxorp/: callback-gen.py callback.hh safe_callback_obj.cc safe_callback_obj.hh Log message: Change safe callback object to not invoke virtual methods in destructor. There's an added space overhead of 1 pointer, but it's safe(r). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Thu Feb 12 22:12:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Feb 2004 22:13:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D6D8mu095422 for ; Thu, 12 Feb 2004 22:13:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D6D4Fq095874; Thu, 12 Feb 2004 22:13:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D6D17g004285; Thu, 12 Feb 2004 22:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1D6Ck7g004275 for ; Thu, 12 Feb 2004 22:12:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D6CkFq095869 for ; Thu, 12 Feb 2004 22:12:46 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1D6CkAF083604 for ; Thu, 12 Feb 2004 22:12:46 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1D6Ckjl083603; Thu, 12 Feb 2004 22:12:46 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402130612.i1D6Ckjl083603@xorpc.icir.org> Date: Thu, 12 Feb 2004 22:12:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ safe_callback_obj.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/12 22:12:46 Modified files: xorp/libxorp/: safe_callback_obj.cc Log message: Nitlet for gcc3.3.1 on fbsd. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 14:00:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 14:01:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1DM1Bmu089881 for ; Fri, 13 Feb 2004 14:01:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1DM14Fq006799; Fri, 13 Feb 2004 14:01:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1DM117g021978; Fri, 13 Feb 2004 14:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1DM0F7g021966 for ; Fri, 13 Feb 2004 14:00:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1DM0FFq006790 for ; Fri, 13 Feb 2004 14:00:15 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1DM0FAF007333 for ; Fri, 13 Feb 2004 14:00:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1DM0FOR007332; Fri, 13 Feb 2004 14:00:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402132200.i1DM0FOR007332@xorpc.icir.org> Date: Fri, 13 Feb 2004 14:00:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/13 14:00:15 Modified files: xorp/bgp/: Makefile.am Makefile.in Log message: Temporarily remove test_plumbing from the regression tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:05:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:06:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E06Kmu032044 for ; Fri, 13 Feb 2004 16:06:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E063Fq008115; Fri, 13 Feb 2004 16:06:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0617g024471; Fri, 13 Feb 2004 16:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0547g024451 for ; Fri, 13 Feb 2004 16:05:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E053Fq008079 for ; Fri, 13 Feb 2004 16:05:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E053AF009591 for ; Fri, 13 Feb 2004 16:05:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E053BY009590; Fri, 13 Feb 2004 16:05:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140005.i1E053BY009590@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:05:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:05:03 Modified files: xorp/static_routes/: static_routes_node.hh Log message: Add a new method is_done() that returns true if the node processing is done (i.e., if the shutdown is completed). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:06:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:07:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E077mu032228 for ; Fri, 13 Feb 2004 16:07:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E072Fq008127; Fri, 13 Feb 2004 16:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0717g024492; Fri, 13 Feb 2004 16:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E06m7g024483 for ; Fri, 13 Feb 2004 16:06:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E06lFq008123 for ; Fri, 13 Feb 2004 16:06:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E06lAF009795 for ; Fri, 13 Feb 2004 16:06:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E06lR1009794; Fri, 13 Feb 2004 16:06:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140006.i1E06lR1009794@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:06:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xorp_static_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:06:47 Modified files: xorp/static_routes/: xorp_static_routes.cc Log message: * Execute XrlStaticRoutesNode::startup() on startup * Run the main loop until the node processing is done * Don't call explicitly shutdown() after the node processing is done _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:08:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:09:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E097mu032738 for ; Fri, 13 Feb 2004 16:09:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E092Fq008172; Fri, 13 Feb 2004 16:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0917g024550; Fri, 13 Feb 2004 16:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0807g024515 for ; Fri, 13 Feb 2004 16:08:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E080Fq008146 for ; Fri, 13 Feb 2004 16:08:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E080AF009865 for ; Fri, 13 Feb 2004 16:08:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E080dt009864; Fri, 13 Feb 2004 16:08:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140008.i1E080dt009864@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:08:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:08:00 Modified files: xorp/static_routes/: xrl_static_routes_node.cc Log message: * Misc bug fixes * Implement various small missing pieces _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:09:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:10:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0A7mu033017 for ; Fri, 13 Feb 2004 16:10:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0A3Fq008194; Fri, 13 Feb 2004 16:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0A17g024581; Fri, 13 Feb 2004 16:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E09L7g024567 for ; Fri, 13 Feb 2004 16:09:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E09LFq008184 for ; Fri, 13 Feb 2004 16:09:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E09KAF009973 for ; Fri, 13 Feb 2004 16:09:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E09K56009972; Fri, 13 Feb 2004 16:09:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140009.i1E09K56009972@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:09:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:09:20 Modified files: xorp/static_routes/: static_routes_node.cc Log message: * Misc bug fixes * Implement various small missing pieces _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:14:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:15:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0F8mu034126 for ; Fri, 13 Feb 2004 16:15:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0F3Fq008250; Fri, 13 Feb 2004 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0F17g024699; Fri, 13 Feb 2004 16:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0Ex7g024689 for ; Fri, 13 Feb 2004 16:14:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0ExFq008245 for ; Fri, 13 Feb 2004 16:14:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0ExAF010154 for ; Fri, 13 Feb 2004 16:14:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E0ExLx010153; Fri, 13 Feb 2004 16:14:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140014.i1E0ExLx010153@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:14:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/etc/templates/ static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:14:59 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Added files: xorp/etc/templates/: static_routes.tp Log message: Added a StaticRoutes template file _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:18:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:19:40 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0Jemu035132 for ; Fri, 13 Feb 2004 16:19:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0J3Fq008291; Fri, 13 Feb 2004 16:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0J17g024811; Fri, 13 Feb 2004 16:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0I27g024778 for ; Fri, 13 Feb 2004 16:18:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0I2Fq008287 for ; Fri, 13 Feb 2004 16:18:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0I1AF010259 for ; Fri, 13 Feb 2004 16:18:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E0I1AJ010258; Fri, 13 Feb 2004 16:18:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402140018.i1E0I1AJ010258@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:18:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/02/13 16:18:01 Modified files: xorp/rtrmgr/: config.boot Log message: Added a sample configuration section for static routes (commented-out) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:28:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:29:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0T7mu037212 for ; Fri, 13 Feb 2004 16:29:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0T3Fq008385; Fri, 13 Feb 2004 16:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0T07g025014; Fri, 13 Feb 2004 16:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0SN7g025003 for ; Fri, 13 Feb 2004 16:28:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0SNFq008383 for ; Fri, 13 Feb 2004 16:28:23 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0SMAF010752 for ; Fri, 13 Feb 2004 16:28:23 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E0SMwT010751; Fri, 13 Feb 2004 16:28:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402140028.i1E0SMwT010751@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:28:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif xorp/xrl/targets/ rip4.xrls rip4_base.cc rip4_base.hh rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/ constants.hh port.cc port_io.hh port_vars.hh xrl_port_io.cc xrl_port_manager.cc xrl_port_manager.hh xrl_target4.cc xrl_target4.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/13 16:28:22 Modified files: xorp/xrl/interfaces/: rip.xif xorp/xrl/targets/: rip4.xrls rip4_base.cc rip4_base.hh rip6.xrls rip6_base.cc rip6_base.hh xorp/rip/: constants.hh port.cc port_io.hh port_vars.hh xrl_port_io.cc xrl_port_manager.cc xrl_port_manager.hh xrl_target4.cc xrl_target4.hh Log message: Add RIPv2 xrls for setting horizon, cost, and timer values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Fri Feb 13 16:42:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Feb 2004 16:43:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0h7mu041304 for ; Fri, 13 Feb 2004 16:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0h3Fq008537; Fri, 13 Feb 2004 16:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0h17g025278; Fri, 13 Feb 2004 16:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1E0gq7g025268 for ; Fri, 13 Feb 2004 16:42:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0gqFq008535 for ; Fri, 13 Feb 2004 16:42:52 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1E0goAF016823 for ; Fri, 13 Feb 2004 16:42:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1E0goGc016822; Fri, 13 Feb 2004 16:42:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402140042.i1E0goGc016822@xorpc.icir.org> Date: Fri, 13 Feb 2004 16:42:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/etc/templates/ rip4.tp rip6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/02/13 16:42:50 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Added files: xorp/etc/templates/: rip4.tp rip6.tp Log message: Add templates for RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Sun Feb 15 9:01:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Feb 2004 09:02:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FH2Fmu013969 for ; Sun, 15 Feb 2004 09:02:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FH27iQ033646; Sun, 15 Feb 2004 09:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1FH217g026169; Sun, 15 Feb 2004 09:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1FH1o7g026160 for ; Sun, 15 Feb 2004 09:01:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FH1niQ033644 for ; Sun, 15 Feb 2004 09:01:49 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FH1nAF058495 for ; Sun, 15 Feb 2004 09:01:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1FH1nof058494; Sun, 15 Feb 2004 09:01:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402151701.i1FH1nof058494@xorpc.icir.org> Date: Sun, 15 Feb 2004 9:01:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target4.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/15 09:01:49 Modified files: xorp/rip/: xrl_target4.cc Log message: Remove paste operation for PORT_TIMER_GET_HANDLER as it isn't needed and pastes text to a period. The latter generates warnings on some platforms. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Sun Feb 15 14:10:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Feb 2004 14:11:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FMB9mu082562 for ; Sun, 15 Feb 2004 14:11:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FMB4iQ036176; Sun, 15 Feb 2004 14:11:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1FMB17g029834; Sun, 15 Feb 2004 14:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1FMA37g029817 for ; Sun, 15 Feb 2004 14:10:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FMA3iQ036146 for ; Sun, 15 Feb 2004 14:10:03 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1FMA3AF061759 for ; Sun, 15 Feb 2004 14:10:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1FMA3wi061758; Sun, 15 Feb 2004 14:10:03 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402152210.i1FMA3wi061758@xorpc.icir.org> Date: Sun, 15 Feb 2004 14:10:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/02/15 14:10:03 Modified files: other/tinderbox/scripts/: build_xorp.sh Log message: Reap processes in same process group before exiting. This should clean-up proceses left behind by failed regression tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Mon Feb 16 9:44:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Feb 2004 09:45:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1GHjEmu043016 for ; Mon, 16 Feb 2004 09:45:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1GHj5iQ047859; Mon, 16 Feb 2004 09:45:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1GHj17g017088; Mon, 16 Feb 2004 09:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1GHi07g017063 for ; Mon, 16 Feb 2004 09:44:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1GHi0iQ047848 for ; Mon, 16 Feb 2004 09:44:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1GHi0AF077793 for ; Mon, 16 Feb 2004 09:44:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1GHi0uP077792; Mon, 16 Feb 2004 09:44:00 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402161744.i1GHi0uP077792@xorpc.icir.org> Date: Mon, 16 Feb 2004 9:44:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ build_xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/02/16 09:44:00 Modified files: other/tinderbox/scripts/: build_xorp.sh Log message: Remove code that tries to send signals to reap processes as this also terminates the ssh process that we're running in. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:46 2005 Subject: No subject Tue Feb 17 10:04:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 10:05:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HI5Gmu070060 for ; Tue, 17 Feb 2004 10:05:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HI55iQ063705; Tue, 17 Feb 2004 10:05:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HI527g011165; Tue, 17 Feb 2004 10:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HI4t7g011154 for ; Tue, 17 Feb 2004 10:04:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HI4tiQ063700 for ; Tue, 17 Feb 2004 10:04:55 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HI4sAF096812 for ; Tue, 17 Feb 2004 10:04:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HI4sxf096811; Tue, 17 Feb 2004 10:04:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402171804.i1HI4sxf096811@xorpc.icir.org> Date: Tue, 17 Feb 2004 10:04:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip4.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/02/17 10:04:54 Modified files: xorp/etc/templates/: rip4.tp Log message: Add %allow values for horizon. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 11:47:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 11:48:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HJm8mu092777 for ; Tue, 17 Feb 2004 11:48:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HJm3iQ064797; Tue, 17 Feb 2004 11:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HJm17g013739; Tue, 17 Feb 2004 11:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HJlC7g013701 for ; Tue, 17 Feb 2004 11:47:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HJlCiQ064791 for ; Tue, 17 Feb 2004 11:47:12 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HJlCAF010768 for ; Tue, 17 Feb 2004 11:47:12 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HJlCxL010767; Tue, 17 Feb 2004 11:47:12 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402171947.i1HJlCxL010767@xorpc.icir.org> Date: Tue, 17 Feb 2004 11:47:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/rip/ .cvsignore Makefile.am Makefile.in xorp/xrl/interfaces/ rip.xif xorp/xrl/targets/ Makefile.am Makefile.in xorp/etc/templates/ rip.tp ripng.tp xorp/rip/ xorp_rip.cc xorp_ripng.cc xrl_target_rip.cc xrl_target_rip.hh xorp/xrl/interfaces/ ripng.xif xorp/xrl/targets/ rip.tgt rip.xrls rip_base.cc rip_base.hh ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh xorp/etc/templates/ rip4.tp rip6.tp xorp/rip/ xorp_rip4.cc xorp_rip6.cc xrl_target4.cc xrl_target4.hh xorp/xrl/targets/ rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh rip6.tgt rip6.xrls rip6_base.cc rip6_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/02/17 11:47:12 Modified files: xorp/etc/templates/: Makefile.am Makefile.in xorp/rip/: .cvsignore Makefile.am Makefile.in xorp/xrl/interfaces/: rip.xif xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/etc/templates/: rip.tp ripng.tp xorp/rip/: xorp_rip.cc xorp_ripng.cc xrl_target_rip.cc xrl_target_rip.hh xorp/xrl/interfaces/: ripng.xif xorp/xrl/targets/: rip.tgt rip.xrls rip_base.cc rip_base.hh ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh Removed files: xorp/etc/templates/: rip4.tp rip6.tp xorp/rip/: xorp_rip4.cc xorp_rip6.cc xrl_target4.cc xrl_target4.hh xorp/xrl/targets/: rip4.tgt rip4.xrls rip4_base.cc rip4_base.hh rip6.tgt rip6.xrls rip6_base.cc rip6_base.hh Log message: Consistency: rename rip4 -> rip and rip6 -> ripng. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 14:51:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 14:52:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMq8mu041268 for ; Tue, 17 Feb 2004 14:52:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMq4iQ067092; Tue, 17 Feb 2004 14:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMq17g018232; Tue, 17 Feb 2004 14:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMpa7g018203 for ; Tue, 17 Feb 2004 14:51:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMpaiQ067088 for ; Tue, 17 Feb 2004 14:51:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMpaAF019408 for ; Tue, 17 Feb 2004 14:51:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HMpatA019407; Tue, 17 Feb 2004 14:51:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172251.i1HMpatA019407@xorpc.icir.org> Date: Tue, 17 Feb 2004 14:51:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_unit.cc proto_unit.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/02/17 14:51:36 Modified files: xorp/libproto/: proto_unit.cc proto_unit.hh Log message: Add an entry for the Fib2mrib module (the module that will fetch all unicast routes from the kernel via the FEA and put it in the MRIB for multicast RPF purpose). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 14:53:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 14:54:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMs9mu041814 for ; Tue, 17 Feb 2004 14:54:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMs3iQ067107; Tue, 17 Feb 2004 14:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMs17g018294; Tue, 17 Feb 2004 14:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMs07g018285 for ; Tue, 17 Feb 2004 14:54:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMrxiQ067105 for ; Tue, 17 Feb 2004 14:54:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMrxAF019486 for ; Tue, 17 Feb 2004 14:53:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HMrxnf019485; Tue, 17 Feb 2004 14:53:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172253.i1HMrxnf019485@xorpc.icir.org> Date: Tue, 17 Feb 2004 14:53:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xorp_static_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/17 14:53:59 Modified files: xorp/static_routes/: xorp_static_routes.cc Log message: Remove unnecessary include files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 14:57:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 14:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMw8mu042874 for ; Tue, 17 Feb 2004 14:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMw4iQ067152; Tue, 17 Feb 2004 14:58:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMw17g018380; Tue, 17 Feb 2004 14:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HMvC7g018345 for ; Tue, 17 Feb 2004 14:57:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMvCiQ067143 for ; Tue, 17 Feb 2004 14:57:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HMvCAF019615 for ; Tue, 17 Feb 2004 14:57:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HMvC1o019614; Tue, 17 Feb 2004 14:57:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172257.i1HMvC1o019614@xorpc.icir.org> Date: Tue, 17 Feb 2004 14:57:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/17 14:57:12 Modified files: xorp/static_routes/: xrl_static_routes_node.hh Log message: Nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 15:01:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 15:02:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HN2Imu044015 for ; Tue, 17 Feb 2004 15:02:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HN2EiQ067224; Tue, 17 Feb 2004 15:02:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HN217g018497; Tue, 17 Feb 2004 15:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HN1H7g018461 for ; Tue, 17 Feb 2004 15:01:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HN1HiQ067214 for ; Tue, 17 Feb 2004 15:01:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HN1HAF020009 for ; Tue, 17 Feb 2004 15:01:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HN1HAB020008; Tue, 17 Feb 2004 15:01:17 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172301.i1HN1HAB020008@xorpc.icir.org> Date: Tue, 17 Feb 2004 15:01:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/17 15:01:17 Modified files: xorp/static_routes/: Makefile.am Makefile.in Log message: Remove libxipc/libfinder.a from the list of libraries to link with, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 15:25:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 15:26:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNQCmu050384 for ; Tue, 17 Feb 2004 15:26:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNQ5iQ067509; Tue, 17 Feb 2004 15:26:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNQ17g019092; Tue, 17 Feb 2004 15:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNPC7g019075 for ; Tue, 17 Feb 2004 15:25:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNPCiQ067506 for ; Tue, 17 Feb 2004 15:25:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNPBAF020443 for ; Tue, 17 Feb 2004 15:25:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HNPBqu020442; Tue, 17 Feb 2004 15:25:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172325.i1HNPBqu020442@xorpc.icir.org> Date: Tue, 17 Feb 2004 15:25:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/interfaces/ fib2mrib.xif fib2mrib_xif.cc fib2mrib_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/02/17 15:25:11 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: fib2mrib.xif fib2mrib_xif.cc fib2mrib_xif.hh Log message: * Add fib2mrib XRL interface * Remove libfeaxif.a, because it is not used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 15:26:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 15:27:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNR8mu050635 for ; Tue, 17 Feb 2004 15:27:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNR4iQ067522; Tue, 17 Feb 2004 15:27:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNR17g019141; Tue, 17 Feb 2004 15:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNQT7g019118 for ; Tue, 17 Feb 2004 15:26:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNQTiQ067515 for ; Tue, 17 Feb 2004 15:26:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNQTAF020499 for ; Tue, 17 Feb 2004 15:26:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HNQTjt020498; Tue, 17 Feb 2004 15:26:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172326.i1HNQTjt020498@xorpc.icir.org> Date: Tue, 17 Feb 2004 15:26:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_xif.cc fea_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/02/17 15:26:29 Removed files: xorp/xrl/interfaces/: fea_xif.cc fea_xif.hh Log message: Remove leftover files fea_xif.hh and fea_xif.cc because they are not used/needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 15:33:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 15:34:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNY8mu052516 for ; Tue, 17 Feb 2004 15:34:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNY4iQ067587; Tue, 17 Feb 2004 15:34:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNY17g019295; Tue, 17 Feb 2004 15:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1HNXw7g019273 for ; Tue, 17 Feb 2004 15:33:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNXwiQ067585 for ; Tue, 17 Feb 2004 15:33:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1HNXvAF020723 for ; Tue, 17 Feb 2004 15:33:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1HNXvjN020722; Tue, 17 Feb 2004 15:33:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402172333.i1HNXvjN020722@xorpc.icir.org> Date: Tue, 17 Feb 2004 15:33:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in xorp/xrl/targets/ fib2mrib.tgt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/02/17 15:33:57 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/xrl/targets/: fib2mrib.tgt Log message: * Added fib2mrib.tgt target base * Added $(INTERFACES_DIR)/finder_event_observer.xif file to the list of files that rip.tgt and ripng.tgt depend on. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:03:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:04:36 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I04amu060608 for ; Tue, 17 Feb 2004 16:04:36 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I043iQ067889; Tue, 17 Feb 2004 16:04:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0407g019918; Tue, 17 Feb 2004 16:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I03G7g019904 for ; Tue, 17 Feb 2004 16:03:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I03GiQ067883 for ; Tue, 17 Feb 2004 16:03:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I03FAF021257 for ; Tue, 17 Feb 2004 16:03:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I03F5a021256; Tue, 17 Feb 2004 16:03:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180003.i1I03F5a021256@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:03:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:03:15 xorp/fib2mrib Update of /usr/local/share/doc/apache/cvs/xorp/fib2mrib In directory xorpc.icir.org:/tmp/cvs-serv21250/fib2mrib Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/fib2mrib added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:10:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:11:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0B8mu062371 for ; Tue, 17 Feb 2004 16:11:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0B3iQ067955; Tue, 17 Feb 2004 16:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0B17g020093; Tue, 17 Feb 2004 16:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0Av7g020084 for ; Tue, 17 Feb 2004 16:10:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0AviQ067953 for ; Tue, 17 Feb 2004 16:10:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0AvAF021530 for ; Tue, 17 Feb 2004 16:10:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0AvDt021529; Tue, 17 Feb 2004 16:10:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180010.i1I0AvDt021529@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:10:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ .cvsignore Makefile.am Makefile.in fib2mrib_module.h fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:10:57 Added files: xorp/fib2mrib/: .cvsignore Makefile.am Makefile.in fib2mrib_module.h fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: Add a first-cut (incomplete) implementation of the Fib2mrib module. Currently, the code is almost a copycat of the StaticRoutes module. The purpose of the Fib2mrib module is to get the unicast forwarding routes from the kernel (via the FEA) and add them to the MRIB so they can be used for multicast RPF purpose. We need this in case we are not running any uncast routing protocols and/or if the router is running non-XORP unicast routing protocols. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:11:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:12:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0C8mu062657 for ; Tue, 17 Feb 2004 16:12:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0C2iQ067969; Tue, 17 Feb 2004 16:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0C07g020122; Tue, 17 Feb 2004 16:12:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0Bv7g020113 for ; Tue, 17 Feb 2004 16:11:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0BviQ067965 for ; Tue, 17 Feb 2004 16:11:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0BvAF021580 for ; Tue, 17 Feb 2004 16:11:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0BvCU021579; Tue, 17 Feb 2004 16:11:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180011.i1I0BvCU021579@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:11:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:11:57 Modified files: xorp/static_routes/: Makefile.am Log message: A nitlet _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:13:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:14:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0E7mu063187 for ; Tue, 17 Feb 2004 16:14:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0E3iQ067990; Tue, 17 Feb 2004 16:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0E17g020184; Tue, 17 Feb 2004 16:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0Da7g020166 for ; Tue, 17 Feb 2004 16:13:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0DZiQ067986 for ; Tue, 17 Feb 2004 16:13:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0DZAF021635 for ; Tue, 17 Feb 2004 16:13:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0DZFF021634; Tue, 17 Feb 2004 16:13:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180013.i1I0DZFF021634@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:13:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:13:35 Modified files: ./: configure.in configure Log message: Added fib2mrib/Makefile to the list of files to generate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:14:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:15:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0FBmu063512 for ; Tue, 17 Feb 2004 16:15:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0F3iQ068008; Tue, 17 Feb 2004 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0F27g020233; Tue, 17 Feb 2004 16:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0Ed7g020210 for ; Tue, 17 Feb 2004 16:14:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0EdiQ068001 for ; Tue, 17 Feb 2004 16:14:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0EcAF021726 for ; Tue, 17 Feb 2004 16:14:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0EcVg021725; Tue, 17 Feb 2004 16:14:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180014.i1I0EcVg021725@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:14:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:14:38 Added files: xorp/xrl/targets/: fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Log message: Added auto-generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:14:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:15:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0FBmu063503 for ; Tue, 17 Feb 2004 16:15:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0F3iQ068006; Tue, 17 Feb 2004 16:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0F17g020221; Tue, 17 Feb 2004 16:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0E27g020193 for ; Tue, 17 Feb 2004 16:14:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0E2iQ067988 for ; Tue, 17 Feb 2004 16:14:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0E2AF021660 for ; Tue, 17 Feb 2004 16:14:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0E226021659; Tue, 17 Feb 2004 16:14:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180014.i1I0E226021659@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:14:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:14:02 Modified files: ./: Makefile.am Makefile.in Log message: Added fib2mrib to the list of directories to compile _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 16:15:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 16:16:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0G7mu063788 for ; Tue, 17 Feb 2004 16:16:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0G3iQ068044; Tue, 17 Feb 2004 16:16:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0G17g020262; Tue, 17 Feb 2004 16:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I0FK7g020245 for ; Tue, 17 Feb 2004 16:15:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0FKiQ068033 for ; Tue, 17 Feb 2004 16:15:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I0FJAF021824 for ; Tue, 17 Feb 2004 16:15:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I0FJUv021823; Tue, 17 Feb 2004 16:15:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180015.i1I0FJUv021823@xorpc.icir.org> Date: Tue, 17 Feb 2004 16:15:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_extint.cc rt_tab_merged.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/02/17 16:15:19 Modified files: xorp/rib/: rt_tab_extint.cc rt_tab_merged.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 17:53:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 17:54:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I1sAmu089570 for ; Tue, 17 Feb 2004 17:54:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I1s4iQ068924; Tue, 17 Feb 2004 17:54:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I1s17g022250; Tue, 17 Feb 2004 17:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I1r37g022232 for ; Tue, 17 Feb 2004 17:53:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I1r3iQ068920 for ; Tue, 17 Feb 2004 17:53:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I1r3AF023194 for ; Tue, 17 Feb 2004 17:53:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I1r3dS023193; Tue, 17 Feb 2004 17:53:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180153.i1I1r3dS023193@xorpc.icir.org> Date: Tue, 17 Feb 2004 17:53:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/17 17:53:03 Modified files: xorp/fea/: routing_socket_utils.cc Log message: If the sockaddr sa_len is 0 for IPv6 netmask, then the masklen must be 0 (i.e., this is the default route). Hence, remove the XLOG_ERROR() statement if sa_len is zero. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 18:46:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 18:47:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2l8mu003725 for ; Tue, 17 Feb 2004 18:47:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2l3iQ069443; Tue, 17 Feb 2004 18:47:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2l07g023188; Tue, 17 Feb 2004 18:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2kM7g023166 for ; Tue, 17 Feb 2004 18:46:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2kMiQ069436 for ; Tue, 17 Feb 2004 18:46:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2kLAF024152 for ; Tue, 17 Feb 2004 18:46:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I2kLxF024151; Tue, 17 Feb 2004 18:46:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180246.i1I2kLxF024151@xorpc.icir.org> Date: Tue, 17 Feb 2004 18:46:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/17 18:46:21 Modified files: xorp/fea/: mfea_node_cli.cc Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 18:46:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 18:47:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2l9mu003740 for ; Tue, 17 Feb 2004 18:47:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2l4iQ069445; Tue, 17 Feb 2004 18:47:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2l17g023201; Tue, 17 Feb 2004 18:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2kb7g023171 for ; Tue, 17 Feb 2004 18:46:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2kaiQ069439 for ; Tue, 17 Feb 2004 18:46:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2kaAF024187 for ; Tue, 17 Feb 2004 18:46:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I2kaWF024186; Tue, 17 Feb 2004 18:46:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180246.i1I2kaWF024186@xorpc.icir.org> Date: Tue, 17 Feb 2004 18:46:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/17 18:46:36 Modified files: xorp/mld6igmp/: mld6igmp_node_cli.cc Log message: Nitlet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 18:48:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 18:49:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2nLmu004323 for ; Tue, 17 Feb 2004 18:49:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2nHiQ069464; Tue, 17 Feb 2004 18:49:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2n17g023264; Tue, 17 Feb 2004 18:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I2mR7g023236 for ; Tue, 17 Feb 2004 18:48:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2mRiQ069460 for ; Tue, 17 Feb 2004 18:48:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I2mRAF024237 for ; Tue, 17 Feb 2004 18:48:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I2mRCc024236; Tue, 17 Feb 2004 18:48:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180248.i1I2mRCc024236@xorpc.icir.org> Date: Tue, 17 Feb 2004 18:48:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/17 18:48:27 Modified files: xorp/pim/: pim_node_cli.cc Log message: * The state of a PIM vif as printed by the CLI output should be only "DR" or "NotDR" (i.e., don't print "P2P" if a point-to-point interface). * Formatting nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 21:01:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 21:02:46 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I52jmu051806 for ; Tue, 17 Feb 2004 21:02:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I52diQ070772; Tue, 17 Feb 2004 21:02:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I5217g025284; Tue, 17 Feb 2004 21:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I51R7g025269 for ; Tue, 17 Feb 2004 21:01:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I51RiQ070748 for ; Tue, 17 Feb 2004 21:01:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I51RAF025631 for ; Tue, 17 Feb 2004 21:01:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I51RG5025630; Tue, 17 Feb 2004 21:01:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180501.i1I51RG5025630@xorpc.icir.org> Date: Tue, 17 Feb 2004 21:01:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/17 21:01:27 Modified files: xorp/mld6igmp/: mld6_proto.cc Log message: Temporary enable receiving MLD messages from IPv6 addresses that are not link-local. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:47 2005 Subject: No subject Tue Feb 17 21:08:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 Feb 2004 21:09:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I59Fmu053582 for ; Tue, 17 Feb 2004 21:09:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I59AiQ070812; Tue, 17 Feb 2004 21:09:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I5917g025412; Tue, 17 Feb 2004 21:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1I58q7g025403 for ; Tue, 17 Feb 2004 21:08:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I58qiQ070810 for ; Tue, 17 Feb 2004 21:08:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1I58qAF025745 for ; Tue, 17 Feb 2004 21:08:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1I58qA3025744; Tue, 17 Feb 2004 21:08:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402180508.i1I58qA3025744@xorpc.icir.org> Date: Tue, 17 Feb 2004 21:08:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_vif.cc vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/17 21:08:52 Modified files: xorp/libxorp/: test_vif.cc vif.cc Log message: Modify the Vif::is_same_subnet() logic such that if the vif is a point-to-point, then still check whether the destination belongs belongs to the same subnet as this vif. This change is needed to cover the case of FreeBSD gif(4) tunnels (IPv6 over IPv4): the IPv4 addresses are point-to-point, but the IPv6 addreses are subnet-based. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 16:28:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 16:29:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0TCmu024886 for ; Wed, 18 Feb 2004 16:29:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0T7iQ085085; Wed, 18 Feb 2004 16:29:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J0T17g019963; Wed, 18 Feb 2004 16:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J0Sk7g019947 for ; Wed, 18 Feb 2004 16:28:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0SjiQ085075 for ; Wed, 18 Feb 2004 16:28:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0SjAF090429 for ; Wed, 18 Feb 2004 16:28:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J0SjI2090428; Wed, 18 Feb 2004 16:28:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402190028.i1J0SjI2090428@xorpc.icir.org> Date: Wed, 18 Feb 2004 16:28:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ addr_table.hh ifconfig_addr_table.hh ifconfig_addr_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/02/18 16:28:45 Modified files: xorp/fea/: addr_table.hh ifconfig_addr_table.hh ifconfig_addr_table.cc Log message: Add address to pif_index resolution. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 16:29:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 16:30:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0UGmu025137 for ; Wed, 18 Feb 2004 16:30:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0UBiQ085115; Wed, 18 Feb 2004 16:30:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J0U17g020002; Wed, 18 Feb 2004 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J0Tu7g019993 for ; Wed, 18 Feb 2004 16:29:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0TuiQ085093 for ; Wed, 18 Feb 2004 16:29:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J0TtAF090478 for ; Wed, 18 Feb 2004 16:29:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J0Tt05090477; Wed, 18 Feb 2004 16:29:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402190029.i1J0Tt05090477@xorpc.icir.org> Date: Wed, 18 Feb 2004 16:29:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrl_sockets4_udp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/02/18 16:29:55 Modified files: xorp/fea/: test_xrl_sockets4_udp.cc Log message: Sync with AddressTableBase. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 20:22:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 20:23:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4NImu076219 for ; Wed, 18 Feb 2004 20:23:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4NDiQ087289; Wed, 18 Feb 2004 20:23:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4N0Bu023741; Wed, 18 Feb 2004 20:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4M9Bu023727 for ; Wed, 18 Feb 2004 20:22:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4M9iQ087281 for ; Wed, 18 Feb 2004 20:22:09 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4M9AF012022 for ; Wed, 18 Feb 2004 20:22:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J4M9Vp012021; Wed, 18 Feb 2004 20:22:09 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190422.i1J4M9Vp012021@xorpc.icir.org> Date: Wed, 18 Feb 2004 20:22:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/18 20:22:08 Modified files: xorp/bgp/: path_attribute.cc Log message: Remove over aggressive assert its legal to construct an IPv6 Multicast NLRI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 20:33:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 20:35:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4Zrmu081614 for ; Wed, 18 Feb 2004 20:35:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4ZmiQ087380; Wed, 18 Feb 2004 20:35:48 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4Y1Bu023921; Wed, 18 Feb 2004 20:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4XGBu023894 for ; Wed, 18 Feb 2004 20:33:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4XGiQ087340 for ; Wed, 18 Feb 2004 20:33:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4XGAF012232 for ; Wed, 18 Feb 2004 20:33:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J4XGkN012231; Wed, 18 Feb 2004 20:33:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402190433.i1J4XGkN012231@xorpc.icir.org> Date: Wed, 18 Feb 2004 20:33:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh socket_server.tgt socket_server.xrls socket_server_base.cc socket_server_base.hh xorp/xrl/interfaces/ socket6.xif socket6_locator.xif socket6_locator_xif.cc socket6_locator_xif.hh socket6_user.xif socket6_user_xif.cc socket6_user_xif.hh ...socket6_xif.cc ...socket6_xif.hh xorp/xrl/targets/ test_socket6.tgt test_socket6.xrls test_socket6_base.cc test_socket6_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/02/18 20:33:16 Modified files: xorp/fea/: Makefile.am Makefile.in xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: Makefile.am Makefile.in xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh socket_server.tgt socket_server.xrls socket_server_base.cc socket_server_base.hh Added files: xorp/xrl/interfaces/: socket6.xif socket6_locator.xif socket6_locator_xif.cc socket6_locator_xif.hh socket6_user.xif socket6_user_xif.cc socket6_user_xif.hh socket6_xif.cc socket6_xif.hh xorp/xrl/targets/: test_socket6.tgt test_socket6.xrls test_socket6_base.cc test_socket6_base.hh Log message: Add IPv6 UDP and TCP xrl interfaces and fea support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 20:46:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 20:47:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4lKmu084116 for ; Wed, 18 Feb 2004 20:47:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4lGiQ087507; Wed, 18 Feb 2004 20:47:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4l1Bu024148; Wed, 18 Feb 2004 20:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J4ksBu024138 for ; Wed, 18 Feb 2004 20:46:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4ksiQ087503 for ; Wed, 18 Feb 2004 20:46:54 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J4ksAF012386 for ; Wed, 18 Feb 2004 20:46:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J4ks9X012385; Wed, 18 Feb 2004 20:46:54 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190446.i1J4ks9X012385@xorpc.icir.org> Date: Wed, 18 Feb 2004 20:46:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/18 20:46:53 Modified files: xorp/bgp/: path_attribute.cc Log message: Remove over aggressive assert its legal to construct an IPv6 Multicast withdraw. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:18:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:19:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5JQmu010684 for ; Wed, 18 Feb 2004 21:19:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5JLiQ087764; Wed, 18 Feb 2004 21:19:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5J1Bu024647; Wed, 18 Feb 2004 21:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5IbBu024634 for ; Wed, 18 Feb 2004 21:18:37 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5IbiQ087756 for ; Wed, 18 Feb 2004 21:18:37 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5IbE9097840 for ; Wed, 18 Feb 2004 21:18:37 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200402190518.i1J5IbE9097840@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh socket_server.tgt socket_server.xrls socket_server_base.cc socket_server_base.hh xorp/xrl/interfaces/ socket6.xif socket6_locator.xif socket6_locator_xif.cc socket6_locator_xif.hh socket6_user.xif socket6_user_xif.cc socket6_user_xif.hh ...socket6_xif.cc ...socket6_xif.hh xorp/xrl/targets/ test_socket6.tgt test_socket6.xrls test_socket6_base.cc test_socket6_base.hh In-Reply-To: Your message of "Wed, 18 Feb 2004 20:33:16." <200402190433.i1J4XGkN012231@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 18 Feb 2004 21:18:37 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , After updating to get this commit, you'll need to run configure and run make clean in the fea directory before it'll built correctly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:48:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:49:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5nSmu041327 for ; Wed, 18 Feb 2004 21:49:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5nMiQ087972; Wed, 18 Feb 2004 21:49:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5n0Bu025065; Wed, 18 Feb 2004 21:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5m8Bu025052 for ; Wed, 18 Feb 2004 21:48:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5m7iQ087966 for ; Wed, 18 Feb 2004 21:48:07 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5m7AF054664 for ; Wed, 18 Feb 2004 21:48:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5m7ci054663; Wed, 18 Feb 2004 21:48:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402190548.i1J5m7ci054663@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:48:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: hodson@xorpc.icir.org. 04/02/18 21:48:07 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Sync linkage with fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:54:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:55:27 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5tRmu042641 for ; Wed, 18 Feb 2004 21:55:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5tKiQ088038; Wed, 18 Feb 2004 21:55:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5t0Bu025213; Wed, 18 Feb 2004 21:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5snBu025202 for ; Wed, 18 Feb 2004 21:54:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5sniQ088009 for ; Wed, 18 Feb 2004 21:54:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5snAF061020 for ; Wed, 18 Feb 2004 21:54:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5sn7W061019; Wed, 18 Feb 2004 21:54:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190554.i1J5sn7W061019@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:54:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/18 21:54:49 xorp/docs/slides Update of /usr/local/www/data/cvs/xorp/docs/slides In directory xorpc.icir.org:/tmp/cvs-serv61011/slides Log Message: Directory /usr/local/www/data/cvs/xorp/docs/slides added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:55:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:56:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5uAmu042796 for ; Wed, 18 Feb 2004 21:56:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5u5iQ088042; Wed, 18 Feb 2004 21:56:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5u1Bu025241; Wed, 18 Feb 2004 21:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5t5Bu025222 for ; Wed, 18 Feb 2004 21:55:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5t5iQ088014 for ; Wed, 18 Feb 2004 21:55:05 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5t5AF061048 for ; Wed, 18 Feb 2004 21:55:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5t54F061047; Wed, 18 Feb 2004 21:55:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402190555.i1J5t54F061047@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:55:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 04/02/18 21:55:05 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Sync linkage with fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:56:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:57:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5v9mu043020 for ; Wed, 18 Feb 2004 21:57:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5v4iQ088054; Wed, 18 Feb 2004 21:57:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5v2Bu025292; Wed, 18 Feb 2004 21:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5urBu025267 for ; Wed, 18 Feb 2004 21:56:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5uriQ088052 for ; Wed, 18 Feb 2004 21:56:53 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5urAF061446 for ; Wed, 18 Feb 2004 21:56:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5ur4J061445; Wed, 18 Feb 2004 21:56:53 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190556.i1J5ur4J061445@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:56:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: atanu@xorpc.icir.org. 04/02/18 21:56:53 Modified files: xorp/docs/: Makefile.am Makefile.in Log message: Slides. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:56:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:57:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5vAmu043036 for ; Wed, 18 Feb 2004 21:57:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5v5iQ088056; Wed, 18 Feb 2004 21:57:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5v1Bu025280; Wed, 18 Feb 2004 21:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5uZBu025258 for ; Wed, 18 Feb 2004 21:56:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5uYiQ088048 for ; Wed, 18 Feb 2004 21:56:34 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5uYAF061376 for ; Wed, 18 Feb 2004 21:56:34 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5uYTg061375; Wed, 18 Feb 2004 21:56:34 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190556.i1J5uYTg061375@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:56:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ Makefile.am Makefile.in xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/18 21:56:34 Added files: xorp/docs/slides/: Makefile.am Makefile.in xorp.tex Log message: Slides. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Wed Feb 18 21:57:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Feb 2004 21:58:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5wSmu043493 for ; Wed, 18 Feb 2004 21:58:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5wOiQ088079; Wed, 18 Feb 2004 21:58:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5w1Bu025319; Wed, 18 Feb 2004 21:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1J5vrBu025308 for ; Wed, 18 Feb 2004 21:57:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5vriQ088072 for ; Wed, 18 Feb 2004 21:57:53 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1J5vrAF061559 for ; Wed, 18 Feb 2004 21:57:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1J5vr49061558; Wed, 18 Feb 2004 21:57:53 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402190557.i1J5vr49061558@xorpc.icir.org> Date: Wed, 18 Feb 2004 21:57:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/02/18 21:57:53 Modified files: ./: configure configure.in Log message: Slides. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 8:12:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 08:13:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JGD8mu074681 for ; Thu, 19 Feb 2004 08:13:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JGD4iQ095294; Thu, 19 Feb 2004 08:13:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JGD1Bu006995; Thu, 19 Feb 2004 08:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JGCUBu006978 for ; Thu, 19 Feb 2004 08:12:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JGCTiQ095290 for ; Thu, 19 Feb 2004 08:12:29 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JGCTAF091158 for ; Thu, 19 Feb 2004 08:12:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JGCTM2091157; Thu, 19 Feb 2004 08:12:29 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402191612.i1JGCTM2091157@xorpc.icir.org> Date: Thu, 19 Feb 2004 8:12:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/02/19 08:12:29 Modified files: xorp/fea/: xrl_socket_server.cc Log message: Fix compilation for HAVE_IPV6 and don't HAVE_IPV6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 10:29:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 10:30:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JIUDmu003724 for ; Thu, 19 Feb 2004 10:30:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JIU3iQ096785; Thu, 19 Feb 2004 10:30:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JIU1Bu010265; Thu, 19 Feb 2004 10:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JITNBu010241 for ; Thu, 19 Feb 2004 10:29:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JITMiQ096774 for ; Thu, 19 Feb 2004 10:29:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JITMAF093171 for ; Thu, 19 Feb 2004 10:29:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JITMVm093170; Thu, 19 Feb 2004 10:29:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402191829.i1JITMVm093170@xorpc.icir.org> Date: Thu, 19 Feb 2004 10:29:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ ripng.xif xorp/xrl/targets/ Makefile.am Makefile.in ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/02/19 10:29:22 Modified files: xorp/xrl/interfaces/: ripng.xif xorp/xrl/targets/: Makefile.am Makefile.in ripng.xrls ripng_base.cc ripng_base.hh Log message: Sync ripng with current rip.xif and rip.tgt. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 11:13:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 11:14:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJELmu014553 for ; Thu, 19 Feb 2004 11:14:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJECiQ097242; Thu, 19 Feb 2004 11:14:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JJE0Bu011557; Thu, 19 Feb 2004 11:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JJD7Bu011518 for ; Thu, 19 Feb 2004 11:13:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJD7iQ097232 for ; Thu, 19 Feb 2004 11:13:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJD6AF093747 for ; Thu, 19 Feb 2004 11:13:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JJD662093746; Thu, 19 Feb 2004 11:13:06 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402191913.i1JJD662093746@xorpc.icir.org> Date: Thu, 19 Feb 2004 11:13:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/19 11:13:06 Modified files: xorp/docs/slides/: xorp.tex Log message: Move the architecture diagram before the design slides. Suggested by Mark. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 11:32:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 11:33:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJXAmu019421 for ; Thu, 19 Feb 2004 11:33:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJX2iQ097492; Thu, 19 Feb 2004 11:33:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JJX0Bu012038; Thu, 19 Feb 2004 11:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JJWuBu012029 for ; Thu, 19 Feb 2004 11:32:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJWuiQ097490 for ; Thu, 19 Feb 2004 11:32:56 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JJWuAF094052 for ; Thu, 19 Feb 2004 11:32:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JJWutI094051; Thu, 19 Feb 2004 11:32:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402191932.i1JJWutI094051@xorpc.icir.org> Date: Thu, 19 Feb 2004 11:32:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/19 11:32:56 Modified files: xorp/docs/slides/: xorp.tex Log message: Remove the word "possible". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 12:12:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 12:13:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKDCmu029511 for ; Thu, 19 Feb 2004 12:13:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKD3iQ097927; Thu, 19 Feb 2004 12:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JKD1Bu013348; Thu, 19 Feb 2004 12:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JKCeBu013331 for ; Thu, 19 Feb 2004 12:12:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKCdiQ097918 for ; Thu, 19 Feb 2004 12:12:39 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKCdAF094806 for ; Thu, 19 Feb 2004 12:12:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JKCduN094805; Thu, 19 Feb 2004 12:12:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402192012.i1JKCduN094805@xorpc.icir.org> Date: Thu, 19 Feb 2004 12:12:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/19 12:12:39 Modified files: xorp/docs/slides/: xorp.tex Log message: Use \begin{slide} \end{slide} rather then \newpage. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 12:15:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 12:16:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKGAmu030276 for ; Thu, 19 Feb 2004 12:16:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKG4iQ097968; Thu, 19 Feb 2004 12:16:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JKG1Bu013425; Thu, 19 Feb 2004 12:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JKFhBu013413 for ; Thu, 19 Feb 2004 12:15:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKFhiQ097965 for ; Thu, 19 Feb 2004 12:15:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JKFhAF094942 for ; Thu, 19 Feb 2004 12:15:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JKFhkF094941; Thu, 19 Feb 2004 12:15:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402192015.i1JKFhkF094941@xorpc.icir.org> Date: Thu, 19 Feb 2004 12:15:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_rip.cc xrl_target_rip.hh xorp/rip/ xrl_target_common.hh xrl_target_ripng.cc xrl_target_ripng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 12:15:43 Modified files: xorp/rip/: xrl_target_rip.cc xrl_target_rip.hh Added files: xorp/rip/: xrl_target_common.hh xrl_target_ripng.cc xrl_target_ripng.hh Log message: Move common Xrl Target handling code for RIP and RIPng into xrl_target_common.hh. Refactor XrlRipTarget accordingly and add xrl_target_ripng.{hh,cc}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:48 2005 Subject: No subject Thu Feb 19 13:38:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 13:39:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JLd8mu050184 for ; Thu, 19 Feb 2004 13:39:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JLd3iQ098819; Thu, 19 Feb 2004 13:39:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JLd0Bu015272; Thu, 19 Feb 2004 13:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JLcXBu015257 for ; Thu, 19 Feb 2004 13:38:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JLcXiQ098817 for ; Thu, 19 Feb 2004 13:38:33 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JLcXAF095937 for ; Thu, 19 Feb 2004 13:38:33 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JLcX3h095936; Thu, 19 Feb 2004 13:38:33 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402192138.i1JLcX3h095936@xorpc.icir.org> Date: Thu, 19 Feb 2004 13:38:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_ripng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 13:38:33 Modified files: xorp/rip/: xrl_target_ripng.hh Log message: Correct destructor name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 14:01:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 14:02:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JM2Qmu055727 for ; Thu, 19 Feb 2004 14:02:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JM24iQ099125; Thu, 19 Feb 2004 14:02:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JM21Bu015742; Thu, 19 Feb 2004 14:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JM10Bu015717 for ; Thu, 19 Feb 2004 14:01:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JM10iQ099112 for ; Thu, 19 Feb 2004 14:01:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JM10AF096354 for ; Thu, 19 Feb 2004 14:01:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JM10Om096353; Thu, 19 Feb 2004 14:01:00 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402192201.i1JM10Om096353@xorpc.icir.org> Date: Thu, 19 Feb 2004 14:01:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_ripng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 14:01:00 Modified files: xorp/rip/: xrl_target_ripng.hh Log message: Correct a cut and paste bogey. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 15:33:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 15:34:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JNYJmu076982 for ; Thu, 19 Feb 2004 15:34:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JNYAiQ000100; Thu, 19 Feb 2004 15:34:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JNY1Bu017690; Thu, 19 Feb 2004 15:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1JNXEBu017664 for ; Thu, 19 Feb 2004 15:33:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JNXEiQ099980 for ; Thu, 19 Feb 2004 15:33:14 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1JNXEAF022431 for ; Thu, 19 Feb 2004 15:33:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1JNXEA5022430; Thu, 19 Feb 2004 15:33:14 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402192333.i1JNXEA5022430@xorpc.icir.org> Date: Thu, 19 Feb 2004 15:33:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/19 15:33:14 Modified files: xorp/docs/slides/: xorp.tex Log message: Baseline stretch to fit all points on a single slide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 17:22:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 17:23:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K1NPmu003457 for ; Thu, 19 Feb 2004 17:23:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K1NGiQ001068; Thu, 19 Feb 2004 17:23:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K1N1Bu019824; Thu, 19 Feb 2004 17:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K1M7Bu019802 for ; Thu, 19 Feb 2004 17:22:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K1M6iQ001058 for ; Thu, 19 Feb 2004 17:22:06 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K1M5AF088354 for ; Thu, 19 Feb 2004 17:22:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K1M5Qv088353; Thu, 19 Feb 2004 17:22:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200122.i1K1M5Qv088353@xorpc.icir.org> Date: Thu, 19 Feb 2004 17:22:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in output_table.cc output_updates.cc packet_queue.cc peer.cc port.cc redist.cc rib_notifier_base.cc route_db.cc route_entry.cc update_queue.cc xorp_rip.cc ...xorp_ripng.cc ...xrl_port_io.cc ...xrl_port_manager.cc ...xrl_rib_notifier.cc ...xrl_target_ripng.cc xorp/rip/ xorp_rip_common.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 17:22:05 Modified files: xorp/rip/: Makefile.am Makefile.in output_table.cc output_updates.cc packet_queue.cc peer.cc port.cc redist.cc rib_notifier_base.cc route_db.cc route_entry.cc update_queue.cc xorp_rip.cc xorp_ripng.cc xrl_port_io.cc xrl_port_manager.cc xrl_rib_notifier.cc xrl_target_ripng.cc Added files: xorp/rip/: xorp_rip_common.hh Log message: Move code from xorp_rip.cc to xorp_rip_common.hh and templatize. Add xorp_ripng target. Build separate librip.a and libripng.a using macro's INSTANTIATE_IPV4 and INSTANTIATE_IPV6 to select instantiations. Not convinced there's any practical advantage to this. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 19:18:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 19:19:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K3JDmu043137 for ; Thu, 19 Feb 2004 19:19:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K3J7iQ002187; Thu, 19 Feb 2004 19:19:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K3J0Bu021687; Thu, 19 Feb 2004 19:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K3IcBu021676 for ; Thu, 19 Feb 2004 19:18:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K3IbiQ002182 for ; Thu, 19 Feb 2004 19:18:37 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K3IbAF096775 for ; Thu, 19 Feb 2004 19:18:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K3Ib36096774; Thu, 19 Feb 2004 19:18:37 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200318.i1K3Ib36096774@xorpc.icir.org> Date: Thu, 19 Feb 2004 19:18:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: atanu@xorpc.icir.org. 04/02/19 19:18:37 Modified files: xorp/docs/slides/: xorp.tex Log message: Add a slide on extensibility. Split future work onto a research slide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 20:03:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 20:04:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K44Vmu055535 for ; Thu, 19 Feb 2004 20:04:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K44RiQ002641; Thu, 19 Feb 2004 20:04:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K440Bu022410; Thu, 19 Feb 2004 20:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K43pBu022399 for ; Thu, 19 Feb 2004 20:03:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K43piQ002634 for ; Thu, 19 Feb 2004 20:03:51 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K43pAF097400 for ; Thu, 19 Feb 2004 20:03:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K43pg9097399; Thu, 19 Feb 2004 20:03:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200403.i1K43pg9097399@xorpc.icir.org> Date: Thu, 19 Feb 2004 20:03:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_rib_notifier.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 20:03:50 Modified files: xorp/rip/: xrl_rib_notifier.cc Log message: Comment out text trailing #endif. Spotted by gcc33. Not spotted by gcc295 or me. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 20:08:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 20:09:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K49Omu057793 for ; Thu, 19 Feb 2004 20:09:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K49GiQ002693; Thu, 19 Feb 2004 20:09:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K491Bu022518; Thu, 19 Feb 2004 20:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K48uBu022500 for ; Thu, 19 Feb 2004 20:08:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K48uiQ002684 for ; Thu, 19 Feb 2004 20:08:56 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K48uAF097521 for ; Thu, 19 Feb 2004 20:08:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K48u5g097520; Thu, 19 Feb 2004 20:08:56 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200408.i1K48u5g097520@xorpc.icir.org> Date: Thu, 19 Feb 2004 20:08:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.cc xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/02/19 20:08:56 Modified files: xorp/bgp/: peer_handler.cc xorp/bgp/harness/: test_peering1.sh Log message: There was a missing push for IPv6 update packets. This was driving us into the unreachable code in the RIB OUT. Added a simple test that sends the same packet twice to trigger the bug. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 20:38:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 20:39:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K4dBmu072850 for ; Thu, 19 Feb 2004 20:39:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K4d5iQ002944; Thu, 19 Feb 2004 20:39:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K4d1Bu022943; Thu, 19 Feb 2004 20:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K4cJBu022926 for ; Thu, 19 Feb 2004 20:38:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K4cIiQ002940 for ; Thu, 19 Feb 2004 20:38:18 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K4cIAF097917 for ; Thu, 19 Feb 2004 20:38:18 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K4cIqW097916; Thu, 19 Feb 2004 20:38:18 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200438.i1K4cIqW097916@xorpc.icir.org> Date: Thu, 19 Feb 2004 20:38:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/02/19 20:38:18 Modified files: xorp/bgp/: peer.cc xorp/bgp/harness/: test_peering1.sh Log message: Traditionally update packets carried information such as aspath in the path attribute list. If path attributes are present in an update packet it used to safe to assume that a route was being added. Multiprotocol attributes are carried as path attributes. A multiprotocol withdraw has no associated aspath oops. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 21:17:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 21:18:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5IOmu082548 for ; Thu, 19 Feb 2004 21:18:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5IGiQ003283; Thu, 19 Feb 2004 21:18:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K5I1Bu023581; Thu, 19 Feb 2004 21:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K5HfBu023563 for ; Thu, 19 Feb 2004 21:17:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5HeiQ003267 for ; Thu, 19 Feb 2004 21:17:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5HeAF098537 for ; Thu, 19 Feb 2004 21:17:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K5HefC098536; Thu, 19 Feb 2004 21:17:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402200517.i1K5HefC098536@xorpc.icir.org> Date: Thu, 19 Feb 2004 21:17:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/02/19 21:17:40 Modified files: xorp/static_routes/: static_routes_node.cc Log message: Compilation fix for MacOS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 21:17:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 21:18:54 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5Ismu082687 for ; Thu, 19 Feb 2004 21:18:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5IoiQ003295; Thu, 19 Feb 2004 21:18:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K5I1Bu023593; Thu, 19 Feb 2004 21:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K5HrBu023572 for ; Thu, 19 Feb 2004 21:17:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5HriQ003269 for ; Thu, 19 Feb 2004 21:17:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K5HqAF098572 for ; Thu, 19 Feb 2004 21:17:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K5Hqv2098571; Thu, 19 Feb 2004 21:17:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402200517.i1K5Hqv2098571@xorpc.icir.org> Date: Thu, 19 Feb 2004 21:17:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/02/19 21:17:52 Modified files: xorp/fib2mrib/: fib2mrib_node.cc Log message: Compilation fix for MacOS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:23:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:29:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6T9mu099664 for ; Thu, 19 Feb 2004 22:29:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6T1iQ004029; Thu, 19 Feb 2004 22:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6O1Bu024708; Thu, 19 Feb 2004 22:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6NwBu024698 for ; Thu, 19 Feb 2004 22:23:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6NviQ003978 for ; Thu, 19 Feb 2004 22:23:57 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6NvAF099418 for ; Thu, 19 Feb 2004 22:23:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6Nvep099417; Thu, 19 Feb 2004 22:23:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200623.i1K6Nvep099417@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:23:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 22:23:57 Modified files: xorp/rip/: port.cc Log message: Make range_random static so it doesn't appear in both librip and libripng. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:29:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:30:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6Urmu000274 for ; Thu, 19 Feb 2004 22:30:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6UniQ004057; Thu, 19 Feb 2004 22:30:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6U1Bu024811; Thu, 19 Feb 2004 22:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6TvBu024802 for ; Thu, 19 Feb 2004 22:29:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6TviQ004031 for ; Thu, 19 Feb 2004 22:29:57 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6TvAF099500 for ; Thu, 19 Feb 2004 22:29:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6TvPs099499; Thu, 19 Feb 2004 22:29:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200629.i1K6TvPs099499@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:29:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 22:29:57 Modified files: xorp/rip/: Makefile.am Makefile.in test_outputs.cc Log message: Tweaks to test_outputs.cc to allow IPv6 test to run. It currently fails. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:33:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:34:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6YGmu001098 for ; Thu, 19 Feb 2004 22:34:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6YCiQ004080; Thu, 19 Feb 2004 22:34:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6Y1Bu024886; Thu, 19 Feb 2004 22:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6XABu024857 for ; Thu, 19 Feb 2004 22:33:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6XAiQ004074 for ; Thu, 19 Feb 2004 22:33:10 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6XAAF099653 for ; Thu, 19 Feb 2004 22:33:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6XAPj099652; Thu, 19 Feb 2004 22:33:10 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200633.i1K6XAPj099652@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:33:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/02/19 22:33:10 Modified files: xorp/etc/templates/: bgp.tp Log message: A different way of enabling multiprotocol. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:35:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:36:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6aKmu001630 for ; Thu, 19 Feb 2004 22:36:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6aFiQ004122; Thu, 19 Feb 2004 22:36:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6a1Bu024941; Thu, 19 Feb 2004 22:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6ZdBu024916 for ; Thu, 19 Feb 2004 22:35:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6ZdiQ004116 for ; Thu, 19 Feb 2004 22:35:39 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6ZdAF099737 for ; Thu, 19 Feb 2004 22:35:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6ZdEE099736; Thu, 19 Feb 2004 22:35:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200635.i1K6ZdEE099736@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:35:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/02/19 22:35:39 Modified files: xorp/rtrmgr/: config.boot Log message: Better example for BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:36:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:37:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6bGmu001855 for ; Thu, 19 Feb 2004 22:37:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6bBiQ004135; Thu, 19 Feb 2004 22:37:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6b1Bu025004; Thu, 19 Feb 2004 22:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6aFBu024950 for ; Thu, 19 Feb 2004 22:36:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6aFiQ004120 for ; Thu, 19 Feb 2004 22:36:15 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6aFAF099764 for ; Thu, 19 Feb 2004 22:36:15 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6aFoT099763; Thu, 19 Feb 2004 22:36:15 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200636.i1K6aFoT099763@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:36:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 22:36:15 Modified files: xorp/rip/: xrl_port_manager.cc Log message: Fix compilation on OS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:46:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:47:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6lAmu004257 for ; Thu, 19 Feb 2004 22:47:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6l5iQ004214; Thu, 19 Feb 2004 22:47:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6l1Bu025165; Thu, 19 Feb 2004 22:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6kOBu025146 for ; Thu, 19 Feb 2004 22:46:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6kNiQ004210 for ; Thu, 19 Feb 2004 22:46:23 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6kNAF099938 for ; Thu, 19 Feb 2004 22:46:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6kNxC099937; Thu, 19 Feb 2004 22:46:23 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200646.i1K6kNxC099937@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:46:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: atanu@xorpc.icir.org. 04/02/19 22:46:23 Modified files: xorp/static_routes/: static_routes_node.cc Log message: Really fixing the Mac OS X compilation problem:-). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 22:48:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 22:49:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6nOmu004821 for ; Thu, 19 Feb 2004 22:49:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6nFiQ004233; Thu, 19 Feb 2004 22:49:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6n1Bu025199; Thu, 19 Feb 2004 22:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K6m0Bu025187 for ; Thu, 19 Feb 2004 22:48:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6m0iQ004224 for ; Thu, 19 Feb 2004 22:48:00 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K6m0AF099964 for ; Thu, 19 Feb 2004 22:48:00 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K6m0HP099963; Thu, 19 Feb 2004 22:48:00 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402200648.i1K6m0HP099963@xorpc.icir.org> Date: Thu, 19 Feb 2004 22:48:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: atanu@xorpc.icir.org. 04/02/19 22:48:00 Modified files: xorp/fib2mrib/: fib2mrib_node.cc Log message: Really fixing the Mac OS X compilation problem:-). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Thu Feb 19 23:28:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 19 Feb 2004 23:29:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K7TAmu013247 for ; Thu, 19 Feb 2004 23:29:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K7T6iQ004581; Thu, 19 Feb 2004 23:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K7T1Bu025758; Thu, 19 Feb 2004 23:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1K7SfBu025749 for ; Thu, 19 Feb 2004 23:28:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K7SeiQ004578 for ; Thu, 19 Feb 2004 23:28:40 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1K7SeAF000648 for ; Thu, 19 Feb 2004 23:28:40 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1K7SemQ000647; Thu, 19 Feb 2004 23:28:40 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402200728.i1K7SemQ000647@xorpc.icir.org> Date: Thu, 19 Feb 2004 23:28:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in test_route_walk.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/19 23:28:40 Modified files: xorp/rip/: Makefile.am Makefile.in test_route_walk.cc Log message: Instantiate and run IPv6 tests. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Fri Feb 20 11:02:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 11:03:27 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJ3Rmu056544 for ; Fri, 20 Feb 2004 11:03:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJ3JiQ012796; Fri, 20 Feb 2004 11:03:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KJ30Bu009506; Fri, 20 Feb 2004 11:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KJ2JBu009496 for ; Fri, 20 Feb 2004 11:02:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJ2JiQ012793 for ; Fri, 20 Feb 2004 11:02:19 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJ2JAF012091 for ; Fri, 20 Feb 2004 11:02:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KJ2Jn8012090; Fri, 20 Feb 2004 11:02:19 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402201902.i1KJ2Jn8012090@xorpc.icir.org> Date: Fri, 20 Feb 2004 11:02:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ eventloop.hh eventloop.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/20 11:02:19 Modified files: xorp/libxorp/: eventloop.hh eventloop.cc Log message: Move EventLoop constructor to eventloop.cc and implement destructor. Constructor and destructor now XLOG_ASSERT singleton property. Constructor resets value used to check gaps between EventLoop run so destructing EventLoop, doing something expensive, and then reinstantiating EventLoop doesn't cause spurious warnings. [There are some templatized tests that end up doing this]. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Fri Feb 20 11:29:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 11:30:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJUBmu061825 for ; Fri, 20 Feb 2004 11:30:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJU4iQ013055; Fri, 20 Feb 2004 11:30:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KJU1Bu010076; Fri, 20 Feb 2004 11:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KJTGBu010055 for ; Fri, 20 Feb 2004 11:29:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJTGiQ013050 for ; Fri, 20 Feb 2004 11:29:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KJTGAF012439 for ; Fri, 20 Feb 2004 11:29:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KJTGLW012438; Fri, 20 Feb 2004 11:29:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402201929.i1KJTGLW012438@xorpc.icir.org> Date: Fri, 20 Feb 2004 11:29:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.in Makefile.am test_timers.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/20 11:29:16 Modified files: xorp/rip/: Makefile.in Makefile.am test_timers.cc Log message: Re-jig to run tests for IPv6 in addition to IPv4. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:49 2005 Subject: No subject Fri Feb 20 12:13:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 12:14:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KKEQmu077015 for ; Fri, 20 Feb 2004 12:14:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KKEHiQ013548; Fri, 20 Feb 2004 12:14:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KKE0Bu011078; Fri, 20 Feb 2004 12:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KKDQBu011060 for ; Fri, 20 Feb 2004 12:13:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KKDQiQ013537 for ; Fri, 20 Feb 2004 12:13:26 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KKDQAF013126 for ; Fri, 20 Feb 2004 12:13:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KKDQBq013125; Fri, 20 Feb 2004 12:13:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402202013.i1KKDQBq013125@xorpc.icir.org> Date: Fri, 20 Feb 2004 12:13:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_timers.cc test_route_walk.cc Makefile.am Makefile.in xorp/rip/ test_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/20 12:13:26 Modified files: xorp/rip/: test_timers.cc test_route_walk.cc Makefile.am Makefile.in Added files: xorp/rip/: test_utils.hh Log message: Move some common code in test_utils.hh. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 13:19:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 13:20:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KLKCmu090698 for ; Fri, 20 Feb 2004 13:20:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KLK4iQ014437; Fri, 20 Feb 2004 13:20:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KLK1Bu012536; Fri, 20 Feb 2004 13:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KLJBBu012516 for ; Fri, 20 Feb 2004 13:19:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KLJBiQ014420 for ; Fri, 20 Feb 2004 13:19:11 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KLJBAF013913 for ; Fri, 20 Feb 2004 13:19:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KLJBEC013912; Fri, 20 Feb 2004 13:19:11 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402202119.i1KLJBEC013912@xorpc.icir.org> Date: Fri, 20 Feb 2004 13:19:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in test_auth.cc test_outputs.cc test_packets.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc test_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/20 13:19:11 Modified files: xorp/rip/: Makefile.am Makefile.in test_auth.cc test_outputs.cc test_packets.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc test_utils.hh Log message: Further rationalization of common pieces between tests. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 15:26:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 15:27:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNRTmu022039 for ; Fri, 20 Feb 2004 15:27:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNRNiQ015899; Fri, 20 Feb 2004 15:27:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KNR1UJ015475; Fri, 20 Feb 2004 15:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KNQYUJ015456 for ; Fri, 20 Feb 2004 15:26:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNQYiQ015895 for ; Fri, 20 Feb 2004 15:26:34 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNQYAF025985 for ; Fri, 20 Feb 2004 15:26:34 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KNQYPQ025984; Fri, 20 Feb 2004 15:26:34 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402202326.i1KNQYPQ025984@xorpc.icir.org> Date: Fri, 20 Feb 2004 15:26:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_next_hop_resolver.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 04/02/20 15:26:34 Modified files: xorp/bgp/: test_next_hop_resolver.cc Log message: Use BGP instance's eventloop rather than instantiating another a separate one. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 15:50:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 15:51:49 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNpnmu026884 for ; Fri, 20 Feb 2004 15:51:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNpeiQ016255; Fri, 20 Feb 2004 15:51:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KNp1UJ016022; Fri, 20 Feb 2004 15:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1KNoOUJ016006 for ; Fri, 20 Feb 2004 15:50:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNoOiQ016234 for ; Fri, 20 Feb 2004 15:50:24 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1KNoOAF026300 for ; Fri, 20 Feb 2004 15:50:24 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1KNoO7o026299; Fri, 20 Feb 2004 15:50:24 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402202350.i1KNoO7o026299@xorpc.icir.org> Date: Fri, 20 Feb 2004 15:50:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/20 15:50:24 Modified files: xorp/libxorp/: test_timer.cc Log message: Instantiate one eventloop only. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 16:34:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 16:35:58 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0Zwmu035582 for ; Fri, 20 Feb 2004 16:35:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0ZpiQ016773; Fri, 20 Feb 2004 16:35:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L0Z0UJ016954; Fri, 20 Feb 2004 16:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L0Y6UJ016922 for ; Fri, 20 Feb 2004 16:34:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0Y6iQ016741 for ; Fri, 20 Feb 2004 16:34:06 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0Y6AF026915 for ; Fri, 20 Feb 2004 16:34:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L0Y6ck026914; Fri, 20 Feb 2004 16:34:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402210034.i1L0Y6ck026914@xorpc.icir.org> Date: Fri, 20 Feb 2004 16:34:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.in packet_assembly.hh test_outputs.cc test_packets.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/20 16:34:06 Modified files: xorp/rip/: Makefile.in packet_assembly.hh test_outputs.cc test_packets.cc Log message: Fix ResponsePacketAssembler::packet_full(). _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 16:36:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 16:37:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0bKmu035867 for ; Fri, 20 Feb 2004 16:37:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0bGiQ016796; Fri, 20 Feb 2004 16:37:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L0b0UJ016997; Fri, 20 Feb 2004 16:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L0aAUJ016976 for ; Fri, 20 Feb 2004 16:36:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0aAiQ016780 for ; Fri, 20 Feb 2004 16:36:10 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L0aAAF027001 for ; Fri, 20 Feb 2004 16:36:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L0aAbO027000; Fri, 20 Feb 2004 16:36:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402210036.i1L0aAbO027000@xorpc.icir.org> Date: Fri, 20 Feb 2004 16:36:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/20 16:36:10 Modified files: xorp/rip/: test_outputs.cc Log message: Back out unintentional commit. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 21:59:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 22:00:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L60Hmu002269 for ; Fri, 20 Feb 2004 22:00:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L60CiQ019377; Fri, 20 Feb 2004 22:00:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L609UJ021884; Fri, 20 Feb 2004 22:00:09 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L5xZUJ021863 for ; Fri, 20 Feb 2004 21:59:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L5xZiQ019348 for ; Fri, 20 Feb 2004 21:59:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L5xZAF030851 for ; Fri, 20 Feb 2004 21:59:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L5xZIq030850; Fri, 20 Feb 2004 21:59:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402210559.i1L5xZIq030850@xorpc.icir.org> Date: Fri, 20 Feb 2004 21:59:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_ipv4.cc test_ipv6.cc test_ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/20 21:59:35 Modified files: xorp/libxorp/: test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: Added tests for is_linklocal_unicast() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 21:59:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 22:00:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L60Pmu002316 for ; Fri, 20 Feb 2004 22:00:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L60LiQ019381; Fri, 20 Feb 2004 22:00:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L601UJ021872; Fri, 20 Feb 2004 22:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L5xMUJ021857 for ; Fri, 20 Feb 2004 21:59:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L5xMiQ019346 for ; Fri, 20 Feb 2004 21:59:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L5xLAF030819 for ; Fri, 20 Feb 2004 21:59:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L5xL5L030818; Fri, 20 Feb 2004 21:59:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402210559.i1L5xL5L030818@xorpc.icir.org> Date: Fri, 20 Feb 2004 21:59:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv4.cc ipv6.hh ipv6.cc ipvx.hh ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/20 21:59:21 Modified files: xorp/libxorp/: ipv4.hh ipv4.cc ipv6.hh ipv6.cc ipvx.hh ipvx.cc Log message: Added new method is_linklocal_unicast() which tests if the address is a valid link-local unicast address. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 22:21:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 22:22:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6MAmu006576 for ; Fri, 20 Feb 2004 22:22:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6M6iQ019538; Fri, 20 Feb 2004 22:22:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L6M1UJ022170; Fri, 20 Feb 2004 22:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L6LaUJ022160 for ; Fri, 20 Feb 2004 22:21:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6LaiQ019533 for ; Fri, 20 Feb 2004 22:21:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6LaAF040413 for ; Fri, 20 Feb 2004 22:21:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L6LacD040412; Fri, 20 Feb 2004 22:21:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402210621.i1L6LacD040412@xorpc.icir.org> Date: Fri, 20 Feb 2004 22:21:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/20 22:21:36 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Replace IN6_IS_ADDR_LINKLOCAL() test with IPvX::is_linklocal_multicast() This replacement also fixes a bug, because the verified address is eventually a multicast address, and IN6_IS_ADDR_LINKLOCAL() can be true only for unicast addresses. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Fri Feb 20 22:24:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Feb 2004 22:25:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6P8mu007158 for ; Fri, 20 Feb 2004 22:25:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6P4iQ019565; Fri, 20 Feb 2004 22:25:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L6P0UJ022239; Fri, 20 Feb 2004 22:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1L6OPUJ022227 for ; Fri, 20 Feb 2004 22:24:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6OPiQ019558 for ; Fri, 20 Feb 2004 22:24:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1L6OPAF040950 for ; Fri, 20 Feb 2004 22:24:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1L6OPcW040949; Fri, 20 Feb 2004 22:24:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402210624.i1L6OPcW040949@xorpc.icir.org> Date: Fri, 20 Feb 2004 22:24:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/20 22:24:25 Modified files: xorp/mld6igmp/: mld6_proto.cc Log message: * Replace IN6_IS_ADDR_LINKLOCAL() with IPvX::is_linklocal_unicast() * Replace IN6_IS_ADDR_MC_NODELOCAL() with IPvX::is_nodelocal_multicast() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 7:18:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 07:19:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1LFJTmu016475 for ; Sat, 21 Feb 2004 07:19:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1LFJJiQ026783; Sat, 21 Feb 2004 07:19:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1LFJ1UJ001219; Sat, 21 Feb 2004 07:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1LFIMUJ001204 for ; Sat, 21 Feb 2004 07:18:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1LFIMiQ026778 for ; Sat, 21 Feb 2004 07:18:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1LFIMAF053789 for ; Sat, 21 Feb 2004 07:18:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1LFIMq5053786; Sat, 21 Feb 2004 07:18:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402211518.i1LFIMq5053786@xorpc.icir.org> Date: Sat, 21 Feb 2004 7:18:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_outputs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/21 07:18:21 Modified files: xorp/rip/: test_outputs.cc Log message: Add ResponseReader class that handles differences between IPv4 and IPv6 packets. The test could not pass before for IPv6 as it was reading route entries blindly from the packet itself and IPv6 uses a overloads route entries to store nexthop information. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:02:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:03:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M339mu055185 for ; Sat, 21 Feb 2004 19:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M334iQ034060; Sat, 21 Feb 2004 19:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M330UJ011599; Sat, 21 Feb 2004 19:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M32bUJ011588 for ; Sat, 21 Feb 2004 19:02:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M32aiQ034056 for ; Sat, 21 Feb 2004 19:02:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M32aAF063619 for ; Sat, 21 Feb 2004 19:02:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M32arN063618; Sat, 21 Feb 2004 19:02:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220302.i1M32arN063618@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:02:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:02:36 Modified files: ./: README Log message: PIM-SM spec updated from draft-ietf-pim-sm-v2-new-05 to 09 _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:03:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:04:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M34Gmu055417 for ; Sat, 21 Feb 2004 19:04:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M34BiQ034082; Sat, 21 Feb 2004 19:04:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M341UJ011636; Sat, 21 Feb 2004 19:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M33DUJ011609 for ; Sat, 21 Feb 2004 19:03:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M33DiQ034063 for ; Sat, 21 Feb 2004 19:03:13 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M33DAF063631 for ; Sat, 21 Feb 2004 19:03:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M33D7j063630; Sat, 21 Feb 2004 19:03:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402220303.i1M33D7j063630@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:03:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in test_update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/21 19:03:13 Modified files: xorp/rip/: Makefile.am Makefile.in test_update_queue.cc Log message: Instantiate IPv6 version of the update queue test. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:03:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:04:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M34Gmu055421 for ; Sat, 21 Feb 2004 19:04:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M34BiQ034083; Sat, 21 Feb 2004 19:04:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M341UJ011648; Sat, 21 Feb 2004 19:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M33hUJ011616 for ; Sat, 21 Feb 2004 19:03:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M33hiQ034072 for ; Sat, 21 Feb 2004 19:03:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M33hAF063668 for ; Sat, 21 Feb 2004 19:03:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M33hxB063667; Sat, 21 Feb 2004 19:03:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220303.i1M33hxB063667@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:03:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:03:43 Modified files: xorp/docs/pim/: pim_arch.tex Log message: PIM-SM spec updated from draft-ietf-pim-sm-v2-new-05 to 09 _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:10:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:11:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3BSmu056843 for ; Sat, 21 Feb 2004 19:11:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3BOiQ034180; Sat, 21 Feb 2004 19:11:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3B1UJ011788; Sat, 21 Feb 2004 19:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3AgUJ011759 for ; Sat, 21 Feb 2004 19:10:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3AgiQ034167 for ; Sat, 21 Feb 2004 19:10:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3AgAF063834 for ; Sat, 21 Feb 2004 19:10:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3Agws063833; Sat, 21 Feb 2004 19:10:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220310.i1M3Agws063833@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:10:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:10:42 Modified files: xorp/docs/tex/: xorp.bib Log message: PIM-SM spec updated from draft-ietf-pim-sm-v2-new-05 to 09 _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:12:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:13:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3DPmu057230 for ; Sat, 21 Feb 2004 19:13:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3DKiQ034198; Sat, 21 Feb 2004 19:13:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3D1UJ011835; Sat, 21 Feb 2004 19:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3C3UJ011817 for ; Sat, 21 Feb 2004 19:12:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3C3iQ034186 for ; Sat, 21 Feb 2004 19:12:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3C3AF063903 for ; Sat, 21 Feb 2004 19:12:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3C3IG063902; Sat, 21 Feb 2004 19:12:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220312.i1M3C3IG063902@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:12:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:12:02 Modified files: xorp/mld6igmp/: mld6igmp_vif.hh Log message: Added new methods primary_addr() and set_primary_addr() to get and set the primary address of this vif. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:13:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:14:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3EKmu057421 for ; Sat, 21 Feb 2004 19:14:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3EFiQ034211; Sat, 21 Feb 2004 19:14:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3E1UJ011857; Sat, 21 Feb 2004 19:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3DKUJ011844 for ; Sat, 21 Feb 2004 19:13:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3DKiQ034200 for ; Sat, 21 Feb 2004 19:13:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3DKAF063967 for ; Sat, 21 Feb 2004 19:13:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3DKM8063966; Sat, 21 Feb 2004 19:13:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220313.i1M3DKM8063966@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:13:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:13:20 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_proto.cc Log message: Use the pre-set Mld6igmpVif::primary_addr() instead of Vif::addr_ptr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:10:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:16:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3G8mu057788 for ; Sat, 21 Feb 2004 19:16:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3G1iQ034244; Sat, 21 Feb 2004 19:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3B0UJ011776; Sat, 21 Feb 2004 19:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3AFUJ011751 for ; Sat, 21 Feb 2004 19:10:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3AFiQ034163 for ; Sat, 21 Feb 2004 19:10:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3AEAF063799 for ; Sat, 21 Feb 2004 19:10:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3AE9U063798; Sat, 21 Feb 2004 19:10:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220310.i1M3AE9U063798@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:10:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:10:14 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: * PIM-SM spec updated from draft-ietf-pim-sm-v2-new-05 to 09 * Various nitlets to update the document with the 09 language: - "sec" -> "secs" - "Register Stop" -> "Register-Stop" - "Register Stop timer" -> "Register-Stop Timer" - "RegisterStop" -> "Register-Stop" - "PrunePending" -> "Prune-Pending" - "PrunePending timer" -> "Prune-Pending Timer" - "assert timer" -> "Assert Timer" * CLI output change: - "RptNotJoined" -> "RPTNotJoined" _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:15:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:16:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3GYmu057895 for ; Sat, 21 Feb 2004 19:16:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3GUiQ034252; Sat, 21 Feb 2004 19:16:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3G1UJ011905; Sat, 21 Feb 2004 19:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3FkUJ011896 for ; Sat, 21 Feb 2004 19:15:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3FkiQ034240 for ; Sat, 21 Feb 2004 19:15:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3FkAF064045 for ; Sat, 21 Feb 2004 19:15:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3FkxD064044; Sat, 21 Feb 2004 19:15:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220315.i1M3FkxD064044@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:15:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:15:46 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: * Set the primary address on a vif to the link-local unicast address (e.g., in case of IPv6) on the corresponding network interface. If there is no link-local unicast address (e.g., in case of IPv4), then the primary address is set to the domain-wide reachable address. * Use Mld6igmpVif::primary_addr() instead of Vif::addr_ptr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:16:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:17:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3H8mu058010 for ; Sat, 21 Feb 2004 19:17:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3H4iQ034257; Sat, 21 Feb 2004 19:17:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3H1UJ011932; Sat, 21 Feb 2004 19:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3GeUJ011919 for ; Sat, 21 Feb 2004 19:16:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3GeiQ034255 for ; Sat, 21 Feb 2004 19:16:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3GdAF064103 for ; Sat, 21 Feb 2004 19:16:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3GdQb064102; Sat, 21 Feb 2004 19:16:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220316.i1M3GdQb064102@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:16:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs/ draft-ietf-pim-sm-v2-new-09.ps draft-ietf-pim-sm-v2-new-09.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:16:39 Added files: xorp/pim/docs/: draft-ietf-pim-sm-v2-new-09.ps draft-ietf-pim-sm-v2-new-09.txt Log message: Added the lastest 09 PIM-SM spec. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:18:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:19:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3JQmu058477 for ; Sat, 21 Feb 2004 19:19:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3JMiQ034285; Sat, 21 Feb 2004 19:19:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3J2UJ011997; Sat, 21 Feb 2004 19:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3IkUJ011972 for ; Sat, 21 Feb 2004 19:18:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3IjiQ034274 for ; Sat, 21 Feb 2004 19:18:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3IjAF064196 for ; Sat, 21 Feb 2004 19:18:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3Ijf4064195; Sat, 21 Feb 2004 19:18:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220318.i1M3Ijf4064195@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:18:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:18:45 Modified files: xorp/pim/: README Log message: PIM-SM spec updated from draft-ietf-pim-sm-v2-new-05 to 09 _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:50 2005 Subject: No subject Sat Feb 21 19:18:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:19:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3JVmu058504 for ; Sat, 21 Feb 2004 19:19:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3JRiQ034289; Sat, 21 Feb 2004 19:19:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3J1UJ011985; Sat, 21 Feb 2004 19:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3I6UJ011956 for ; Sat, 21 Feb 2004 19:18:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3I5iQ034271 for ; Sat, 21 Feb 2004 19:18:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3I5AF064161 for ; Sat, 21 Feb 2004 19:18:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3I5Bw064160; Sat, 21 Feb 2004 19:18:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220318.i1M3I5Bw064160@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:18:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:18:05 Modified files: xorp/pim/: TODO Log message: Add TODO entries. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:20:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:21:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3LNmu058899 for ; Sat, 21 Feb 2004 19:21:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3LEiQ034318; Sat, 21 Feb 2004 19:21:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3L0UJ012048; Sat, 21 Feb 2004 19:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3K8UJ012025 for ; Sat, 21 Feb 2004 19:20:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3K7iQ034314 for ; Sat, 21 Feb 2004 19:20:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3K7AF064253 for ; Sat, 21 Feb 2004 19:20:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3K7ce064252; Sat, 21 Feb 2004 19:20:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220320.i1M3K7ce064252@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:20:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:20:07 Modified files: xorp/pim/: pim_bsr.cc Log message: Nitlet (language synchronization with the lastest 09 spec): "No Info state" -> "NoInfo state" _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:22:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:23:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3NVmu059306 for ; Sat, 21 Feb 2004 19:23:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3NRiQ034337; Sat, 21 Feb 2004 19:23:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3N1UJ012080; Sat, 21 Feb 2004 19:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3MjUJ012070 for ; Sat, 21 Feb 2004 19:22:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3MjiQ034327 for ; Sat, 21 Feb 2004 19:22:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3MjAF064368 for ; Sat, 21 Feb 2004 19:22:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3Mj6p064367; Sat, 21 Feb 2004 19:22:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220322.i1M3Mj6p064367@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:22:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:22:45 Modified files: xorp/pim/: pim_config.cc Log message: Replace Vif::addr_ptr() with PimVif::domain_wide_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:27:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:28:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3SQmu060277 for ; Sat, 21 Feb 2004 19:28:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3SMiQ034378; Sat, 21 Feb 2004 19:28:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3S1UJ012134; Sat, 21 Feb 2004 19:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3RPUJ012123 for ; Sat, 21 Feb 2004 19:27:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3RPiQ034373 for ; Sat, 21 Feb 2004 19:27:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3ROAF064475 for ; Sat, 21 Feb 2004 19:27:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3ROsf064474; Sat, 21 Feb 2004 19:27:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220327.i1M3ROsf064474@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:27:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:27:24 Modified files: xorp/pim/: pim_mre_data.cc Log message: * Update the PimMre::update_sptbit_sg() implementation according to the lastest specification in the 09 I-D. * Change few variable names. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:32:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:33:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3XKmu061246 for ; Sat, 21 Feb 2004 19:33:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3XCiQ034424; Sat, 21 Feb 2004 19:33:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3X0UJ012228; Sat, 21 Feb 2004 19:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3WWUJ012213 for ; Sat, 21 Feb 2004 19:32:32 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3WViQ034418; Sat, 21 Feb 2004 19:32:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3WV8N016083; Sat, 21 Feb 2004 19:32:31 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200402220332.i1M3WV8N016083@possum.icir.org> To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_data.cc In-Reply-To: Message from Pavlin Radoslavov of "Sat, 21 Feb 2004 19:27:24." <200402220327.i1M3ROsf064474@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:32:31 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , FYI, I am in process of committing a number of files, so in the mean time the compilation in the pim directory may fail. I will send an explicit email once I am done. Pavlin _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:32:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:33:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3XSmu061288 for ; Sat, 21 Feb 2004 19:33:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3XMiQ034434; Sat, 21 Feb 2004 19:33:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3X1UJ012240; Sat, 21 Feb 2004 19:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3WwUJ012219 for ; Sat, 21 Feb 2004 19:32:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3WwiQ034420 for ; Sat, 21 Feb 2004 19:32:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3WwAF064593 for ; Sat, 21 Feb 2004 19:32:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3WwwJ064592; Sat, 21 Feb 2004 19:32:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220332.i1M3WwwJ064592@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:32:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:32:58 Modified files: xorp/pim/: pim_mre.hh Log message: * Replace methods recompute_mrib_next_hop_rp_g_changed() and recompute_rpfp_nbr_wc_changed() with recompute_rpfp_nbr_wc_assert_changed() and recompute_rpfp_nbr_wc_not_assert_changed() Fix the new methods implementation according to the 09 I-D spec * Replace methods recompute_mrib_next_hop_s_changed() and recompute_rpfp_nbr_sg_changed() with recompute_rpfp_nbr_sg_assert_changed() and recompute_rpfp_nbr_sg_not_assert_changed() Fix the new methods implementation according to the 09 I-D spec * Add new methods recompute_assert_winner_nbr_sg_nlt_expired() and recompute_assert_winner_nbr_wc_nlt_expired() * Nitlet: "PrunePending" -> "Prune-Pending" * Rename few variables _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:34:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:35:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3ZHmu061682 for ; Sat, 21 Feb 2004 19:35:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3ZDiQ034472; Sat, 21 Feb 2004 19:35:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3Z1UJ012297; Sat, 21 Feb 2004 19:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3YsUJ012288 for ; Sat, 21 Feb 2004 19:34:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3YsiQ034448 for ; Sat, 21 Feb 2004 19:34:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3YsAF064658 for ; Sat, 21 Feb 2004 19:34:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3YsZL064657; Sat, 21 Feb 2004 19:34:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220334.i1M3YsZL064657@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:34:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:34:54 Modified files: xorp/pim/: pim_mre_assert.cc Log message: * Replace PimVif::addr() with PimVif::primary_addr() * Add new methods recompute_assert_winner_nbr_sg_nlt_expired() and recompute_assert_winner_nbr_wc_nlt_expired() which implement some of the recent additions to the 09 spec _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:45:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:46:58 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3kwmu063963 for ; Sat, 21 Feb 2004 19:46:58 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3koiQ034582; Sat, 21 Feb 2004 19:46:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3k1UJ012500; Sat, 21 Feb 2004 19:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3jZUJ012475 for ; Sat, 21 Feb 2004 19:45:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3jZiQ034573 for ; Sat, 21 Feb 2004 19:45:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3jZAF064879 for ; Sat, 21 Feb 2004 19:45:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3jYin064878; Sat, 21 Feb 2004 19:45:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220345.i1M3jYin064878@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:45:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:45:34 Modified files: xorp/pim/: pim_mre_register.cc Log message: * Remove register tunnel only if the state is "Register Join" state (sync with the lastest 09 spec). * Nitlet: "RegisterStopTimer" -> "Register-Stop Timer" _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:49:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:50:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3o9mu064583 for ; Sat, 21 Feb 2004 19:50:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3o4iQ034596; Sat, 21 Feb 2004 19:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3o0UJ012597; Sat, 21 Feb 2004 19:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3naUJ012587 for ; Sat, 21 Feb 2004 19:49:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3naiQ034588 for ; Sat, 21 Feb 2004 19:49:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3naAF064949 for ; Sat, 21 Feb 2004 19:49:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3naVB064948; Sat, 21 Feb 2004 19:49:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220349.i1M3naVB064948@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:49:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:49:36 Modified files: xorp/pim/: pim_mre_rpf.cc Log message: Syncronize with the lastest 09 spec: * If the MRIB.next_hop(RP) changes, then send first Join(*,*,RP) and then Prune(*,*,RP) * Replace methods recompute_mrib_next_hop_rp_g_changed() and recompute_rpfp_nbr_wc_changed() with recompute_rpfp_nbr_wc_assert_changed() and recompute_rpfp_nbr_wc_not_assert_changed() Fix the new methods implementation according to the 09 I-D spec * Replace methods recompute_mrib_next_hop_s_changed() and recompute_rpfp_nbr_sg_changed() with recompute_rpfp_nbr_sg_assert_changed() and recompute_rpfp_nbr_sg_not_assert_changed() Fix the new methods implementation according to the 09 I-D spec _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:43:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:50:51 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3opmu064743 for ; Sat, 21 Feb 2004 19:50:51 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3okiQ034622; Sat, 21 Feb 2004 19:50:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3i1UJ012421; Sat, 21 Feb 2004 19:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3hoUJ012410 for ; Sat, 21 Feb 2004 19:43:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3hniQ034529 for ; Sat, 21 Feb 2004 19:43:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3hnAF064809 for ; Sat, 21 Feb 2004 19:43:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3hn6D064808; Sat, 21 Feb 2004 19:43:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220343.i1M3hn6D064808@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:43:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:43:49 Modified files: xorp/pim/: pim_mre_join_prune.cc Log message: * Nitlets (sync with the 09 spec language): - "PrunePending" -> "Prune-Pending" - "PrunePendingTmp" -> "Prune-Pending-Tmp" * Remove unscheduling (on few occasions) of a Prune-Pending timer, and of a Expiry Timer, because it is not in the spec anymore * Implement checks against all IP addresses of a neighbor E.g., use NBR(RPF_interface(RP), MRIB.next_hop(RP)) instead of MRIB.next_hop(RP). * Implement checks against all my own IP addresses. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:54:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:55:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3tJmu065624 for ; Sat, 21 Feb 2004 19:55:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3tCiQ034660; Sat, 21 Feb 2004 19:55:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3t1UJ012668; Sat, 21 Feb 2004 19:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3sDUJ012656 for ; Sat, 21 Feb 2004 19:54:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3sDiQ034632 for ; Sat, 21 Feb 2004 19:54:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3sDAF065046 for ; Sat, 21 Feb 2004 19:54:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3sDD3065045; Sat, 21 Feb 2004 19:54:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220354.i1M3sDD3065045@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:54:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.hh pim_mre_track_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:54:13 Modified files: xorp/pim/: pim_mre_track_state.hh pim_mre_track_state.cc Log message: * Added new input states: INPUT_STATE_ASSERT_WINNER_NBR_WC_NLT_EXPIRED INPUT_STATE_ASSERT_WINNER_NBR_SG_NLT_EXPIRED * Added new output states: OUTPUT_STATE_RPFP_NBR_WC_NOT_ASSERT OUTPUT_STATE_RPFP_NBR_SG_NOT_ASSERT OUTPUT_STATE_RPFP_NBR_WC_ASSERT OUTPUT_STATE_RPFP_NBR_SG_ASSERT OUTPUT_STATE_ASSERT_WINNER_NBR_WC_NLT OUTPUT_STATE_ASSERT_WINNER_NBR_SG_NLT * Removed old output states: OUTPUT_STATE_MRIB_NEXT_HOP_RP_G OUTPUT_STATE_MRIB_NEXT_HOP_S OUTPUT_STATE_RPFP_NBR_WC OUTPUT_STATE_RPFP_NBR_SG * Nitlets _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:55:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:56:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3uWmu065867 for ; Sat, 21 Feb 2004 19:56:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3uRiQ034675; Sat, 21 Feb 2004 19:56:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3u1UJ012696; Sat, 21 Feb 2004 19:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3t3UJ012677 for ; Sat, 21 Feb 2004 19:55:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3t3iQ034639 for ; Sat, 21 Feb 2004 19:55:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3t2AF065089 for ; Sat, 21 Feb 2004 19:55:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3t2Dx065088; Sat, 21 Feb 2004 19:55:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220355.i1M3t2Dx065088@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:55:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:55:02 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Update some of the comments that were copied from the PIM-SM spec. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 19:58:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 19:59:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3xFmu066398 for ; Sat, 21 Feb 2004 19:59:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3x9iQ034686; Sat, 21 Feb 2004 19:59:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3x1UJ012736; Sat, 21 Feb 2004 19:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M3wJUJ012720 for ; Sat, 21 Feb 2004 19:58:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3wJiQ034680 for ; Sat, 21 Feb 2004 19:58:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M3wJAF065173 for ; Sat, 21 Feb 2004 19:58:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M3wJlZ065172; Sat, 21 Feb 2004 19:58:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220358.i1M3wJlZ065172@xorpc.icir.org> Date: Sat, 21 Feb 2004 19:58:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_nbr.hh pim_nbr.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 19:58:19 Modified files: xorp/pim/: pim_nbr.hh pim_nbr.cc Log message: * Implement the new "Address List" PIM Hello option: Now each PIM neighbor has a primary address, and a list of secondary addresses * Rename PIM_HELLO_DR_ELECTION_PRIORITY_DEFAULT to PIM_HELLO_DR_PRIORITY_DEFAULT _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:00:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:01:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M41Bmu066822 for ; Sat, 21 Feb 2004 20:01:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M414iQ034731; Sat, 21 Feb 2004 20:01:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M411UJ012769; Sat, 21 Feb 2004 20:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M404UJ012754 for ; Sat, 21 Feb 2004 20:00:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M403iQ034704 for ; Sat, 21 Feb 2004 20:00:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M403AF065228 for ; Sat, 21 Feb 2004 20:00:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4038F065227; Sat, 21 Feb 2004 20:00:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220400.i1M4038F065227@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:00:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:00:03 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: * Fix a bug in PimNode::pim_nbr_rpf_find() * Use PimNbr::primary_addr() instead of PimNbr::addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:01:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:02:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M429mu067013 for ; Sat, 21 Feb 2004 20:02:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M424iQ034750; Sat, 21 Feb 2004 20:02:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M421UJ012792; Sat, 21 Feb 2004 20:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M41QUJ012779 for ; Sat, 21 Feb 2004 20:01:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M41QiQ034744 for ; Sat, 21 Feb 2004 20:01:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M41PAF065300 for ; Sat, 21 Feb 2004 20:01:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M41Pvo065299; Sat, 21 Feb 2004 20:01:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220401.i1M41Pvo065299@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:01:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:01:25 Modified files: xorp/pim/: pim_node_cli.cc Log message: * Nit in the "show pim join" CLI output: Replace "RptNotJoined" with "RPTNotJoined" * Replace PimNbr::addr() with PimNbr::primary_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:03:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:04:41 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M44fmu067496 for ; Sat, 21 Feb 2004 20:04:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M44ZiQ034772; Sat, 21 Feb 2004 20:04:35 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M441UJ012827; Sat, 21 Feb 2004 20:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M43hUJ012818 for ; Sat, 21 Feb 2004 20:03:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M43hiQ034763 for ; Sat, 21 Feb 2004 20:03:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M43hAF065351 for ; Sat, 21 Feb 2004 20:03:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M43hBR065350; Sat, 21 Feb 2004 20:03:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220403.i1M43hBR065350@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:03:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:03:43 Modified files: xorp/pim/: pim_proto.h Log message: * Rename PIM_HELLO_DR_ELECTION_PRIORITY_* to PIM_HELLO_DR_PRIORITY_* * Add new PIM Hello option definition: PIM_HELLO_ADDRESS_LIST_OPTION * Temporary add a definition for the same Address List option from the private address space: #define PIM_HELLO_ADDRESS_LIST_PRIVATE_OPTION 65001 * Add new definition for the size of the PIM Register Header: #define PIM_REGISTER_HEADER_LENGTH 8 _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:07:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:08:48 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M48mmu068315 for ; Sat, 21 Feb 2004 20:08:48 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M48diQ034832; Sat, 21 Feb 2004 20:08:39 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M481UJ012906; Sat, 21 Feb 2004 20:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M470UJ012876 for ; Sat, 21 Feb 2004 20:07:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M470iQ034812 for ; Sat, 21 Feb 2004 20:07:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M470AF065442 for ; Sat, 21 Feb 2004 20:07:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M470fW065441; Sat, 21 Feb 2004 20:07:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220407.i1M470fW065441@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:07:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:07:00 Modified files: xorp/pim/: pim_proto_assert.cc Log message: * Replace PimVif::addr() with PimVif::primary_addr() * Check whether the assert source is not zero (according to the lastest 09 spec). _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:08:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:09:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M49Omu068446 for ; Sat, 21 Feb 2004 20:09:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M49KiQ034842; Sat, 21 Feb 2004 20:09:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M491UJ012943; Sat, 21 Feb 2004 20:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M48LUJ012931 for ; Sat, 21 Feb 2004 20:08:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M48KiQ034828 for ; Sat, 21 Feb 2004 20:08:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M48KAF065554 for ; Sat, 21 Feb 2004 20:08:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M48KBL065553; Sat, 21 Feb 2004 20:08:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220408.i1M48KBL065553@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:08:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_cand_rp_adv.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:08:20 Modified files: xorp/pim/: pim_proto_cand_rp_adv.cc Log message: * Replace PimVif::addr() with PimVif::domain_wide_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:09:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:10:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4AOmu068687 for ; Sat, 21 Feb 2004 20:10:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4AKiQ034872; Sat, 21 Feb 2004 20:10:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4A1UJ012992; Sat, 21 Feb 2004 20:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M49CUJ012954 for ; Sat, 21 Feb 2004 20:09:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M49CiQ034838 for ; Sat, 21 Feb 2004 20:09:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M49CAF065599 for ; Sat, 21 Feb 2004 20:09:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M49C2p065598; Sat, 21 Feb 2004 20:09:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220409.i1M49C2p065598@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:09:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_graft.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:09:12 Modified files: xorp/pim/: pim_proto_graft.cc Log message: * Replace PimVif::addr() with PimVif::primary_addr() or PimVif::domain_wide_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:51 2005 Subject: No subject Sat Feb 21 20:07:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:11:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4B0mu068813 for ; Sat, 21 Feb 2004 20:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4AuiQ034879; Sat, 21 Feb 2004 20:10:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M481UJ012918; Sat, 21 Feb 2004 20:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M47jUJ012897 for ; Sat, 21 Feb 2004 20:07:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M47jiQ034818 for ; Sat, 21 Feb 2004 20:07:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M47iAF065492 for ; Sat, 21 Feb 2004 20:07:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M47iQn065491; Sat, 21 Feb 2004 20:07:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220407.i1M47iQn065491@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:07:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:07:44 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: * Replace PimVif::addr() with PimVif::primary_addr() or PimVif::domain_wide_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:12:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:13:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4DFmu069254 for ; Sat, 21 Feb 2004 20:13:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4DBiQ034887; Sat, 21 Feb 2004 20:13:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4D1UJ013054; Sat, 21 Feb 2004 20:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4CLUJ013037 for ; Sat, 21 Feb 2004 20:12:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4CLiQ034883 for ; Sat, 21 Feb 2004 20:12:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4CLAF065660 for ; Sat, 21 Feb 2004 20:12:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4CLo5065659; Sat, 21 Feb 2004 20:12:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220412.i1M4CLo5065659@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:12:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_hello.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:12:21 Modified files: xorp/pim/: pim_proto_hello.cc Log message: * Replace PIM_HELLO_DR_ELECTION_PRIORITY_* with PIM_HELLO_DR_PRIORITY_* * Implement the new "Address List" PIM Hello option. Note that on receiving we accept option value of either 24 or the (temporary) 65001, but when originating it we set the option value to 24 * Use PimNbr::primary_addr() instead of PimNbr::addr() * Use PimVif::primary_addr() instead of PimVif::addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:13:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:14:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4EFmu069471 for ; Sat, 21 Feb 2004 20:14:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4E6iQ034907; Sat, 21 Feb 2004 20:14:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4E0UJ013081; Sat, 21 Feb 2004 20:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4DBUJ013063 for ; Sat, 21 Feb 2004 20:13:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4DBiQ034886 for ; Sat, 21 Feb 2004 20:13:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4DAAF065695 for ; Sat, 21 Feb 2004 20:13:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4DATo065694; Sat, 21 Feb 2004 20:13:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220413.i1M4DATo065694@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:13:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:13:10 Modified files: xorp/pim/: pim_proto_join_prune.cc Log message: * Use PimNbr::primary_addr() instead of PimNbr::addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:14:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:15:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4F8mu069669 for ; Sat, 21 Feb 2004 20:15:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4F3iQ034927; Sat, 21 Feb 2004 20:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4F1UJ013115; Sat, 21 Feb 2004 20:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4EXUJ013096 for ; Sat, 21 Feb 2004 20:14:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4EWiQ034916 for ; Sat, 21 Feb 2004 20:14:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4EWAF065750 for ; Sat, 21 Feb 2004 20:14:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4EWXR065749; Sat, 21 Feb 2004 20:14:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220414.i1M4EWXR065749@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:14:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:14:31 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Remove old setup of "max_packet_size" of 500 (used for debugging) that has been commited by accident. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:18:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:20:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4K5mu070645 for ; Sat, 21 Feb 2004 20:20:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4K0iQ034972; Sat, 21 Feb 2004 20:20:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4J1UJ013173; Sat, 21 Feb 2004 20:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4IIUJ013161 for ; Sat, 21 Feb 2004 20:18:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4IIiQ034959 for ; Sat, 21 Feb 2004 20:18:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4IIAF065847 for ; Sat, 21 Feb 2004 20:18:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4II0j065846; Sat, 21 Feb 2004 20:18:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220418.i1M4II0j065846@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:18:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:18:18 Modified files: xorp/pim/: pim_proto_register.cc Log message: * Implement the PIM Null Register inner IP header checksums according to the lastest 09 spec. * Implement the new specification of packet_arrives_on_rp_tunnel() from the lastest 09 spec. * Replace PimVif::addr() with PimVif::domain_wide_addr() * Nitlet: "RegisterStop" -> "Register-Stop" _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:20:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:21:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4L8mu070875 for ; Sat, 21 Feb 2004 20:21:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4L3iQ034998; Sat, 21 Feb 2004 20:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4L1UJ013211; Sat, 21 Feb 2004 20:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4K3UJ013195 for ; Sat, 21 Feb 2004 20:20:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4K3iQ034977 for ; Sat, 21 Feb 2004 20:20:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4K3AF065901 for ; Sat, 21 Feb 2004 20:20:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4K3Ut065900; Sat, 21 Feb 2004 20:20:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220420.i1M4K3Ut065900@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:20:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_register_stop.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:20:03 Modified files: xorp/pim/: pim_proto_register_stop.cc Log message: * Update the implementation of handling (*,G) Register-Stop according to the lastest 09 spec. * Replace PimVif::addr() with PimVif::domain_wide_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:24:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:25:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4PGmu071691 for ; Sat, 21 Feb 2004 20:25:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4PAiQ035046; Sat, 21 Feb 2004 20:25:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4P1UJ013313; Sat, 21 Feb 2004 20:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4OgUJ013293 for ; Sat, 21 Feb 2004 20:24:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4OgiQ035022 for ; Sat, 21 Feb 2004 20:24:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4OgAF066001 for ; Sat, 21 Feb 2004 20:24:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4OgUh066000; Sat, 21 Feb 2004 20:24:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220424.i1M4OgUh066000@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:24:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:24:42 Modified files: xorp/pim/: pim_vif.hh pim_vif.cc Log message: * Remove method PimVif::addr() and replace it with methods PimVif::primary_addr() and PimVif::domain_wide_addr() The primary address is the link-local address (in case of IPv6) and is used for originating the multicast control packets on the LAN. The domain-wide address is the domain-wide reachable IP address that is used for originating unicast control packets (e.g., Cand-RP-Adv, PIM-Register, PIM-Register-Stop, etc), and is used as the Cand-RP or Cand-BSR address. * Add new method calculate_ipv6_pseudo_header_checksum() for calculating the checksum of the IPv6 "pseudo-header" as described in RFC 2460. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:26:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:27:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4REmu072078 for ; Sat, 21 Feb 2004 20:27:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4R6iQ035061; Sat, 21 Feb 2004 20:27:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4R0UJ013351; Sat, 21 Feb 2004 20:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4QiUJ013334 for ; Sat, 21 Feb 2004 20:26:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4QhiQ035053 for ; Sat, 21 Feb 2004 20:26:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4QhAF066074 for ; Sat, 21 Feb 2004 20:26:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4Qhcl066073; Sat, 21 Feb 2004 20:26:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220426.i1M4Qhcl066073@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:26:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:26:43 Modified files: xorp/pim/: xrl_pim_node.cc Log message: * Replace Vif::addr_ptr() with PimVif::primary_addr() _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:27:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:28:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4SKmu072301 for ; Sat, 21 Feb 2004 20:28:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4SFiQ035075; Sat, 21 Feb 2004 20:28:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4S1UJ013378; Sat, 21 Feb 2004 20:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4R5UJ013360 for ; Sat, 21 Feb 2004 20:27:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4R5iQ035059 for ; Sat, 21 Feb 2004 20:27:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4R5AF066108 for ; Sat, 21 Feb 2004 20:27:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1M4R5xk066107; Sat, 21 Feb 2004 20:27:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402220427.i1M4R5xk066107@xorpc.icir.org> Date: Sat, 21 Feb 2004 20:27:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/02/21 20:27:05 Modified files: xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Update the state machine output. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Sat Feb 21 20:32:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Feb 2004 20:33:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4XQmu073310 for ; Sat, 21 Feb 2004 20:33:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4XLiQ035125; Sat, 21 Feb 2004 20:33:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4X1UJ013479; Sat, 21 Feb 2004 20:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1M4WpUJ013470 for ; Sat, 21 Feb 2004 20:32:51 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4WpiQ035117; Sat, 21 Feb 2004 20:32:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i1M4Wp8N022828; Sat, 21 Feb 2004 20:32:51 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200402220432.i1M4Wp8N022828@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_data.cc In-Reply-To: Message from Pavlin Radoslavov of "Sat, 21 Feb 2004 19:32:31 PST." <200402220332.i1M3WV8N016083@possum.icir.org> Date: Sat, 21 Feb 2004 20:32:51 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > FYI, I am in process of committing a number of files, so in the mean > time the compilation in the pim directory may fail. I will send > an explicit email once I am done. Done. Pavlin _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 2:21:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 02:22:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NAMVmu060117 for ; Mon, 23 Feb 2004 02:22:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NAMOiQ050981; Mon, 23 Feb 2004 02:22:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NAM0UJ010449; Mon, 23 Feb 2004 02:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NALfUJ010436 for ; Mon, 23 Feb 2004 02:21:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NALfiQ050973 for ; Mon, 23 Feb 2004 02:21:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NALfAF005228 for ; Mon, 23 Feb 2004 02:21:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NALfVM005227; Mon, 23 Feb 2004 02:21:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402231021.i1NALfVM005227@xorpc.icir.org> Date: Mon, 23 Feb 2004 2:21:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/23 02:21:41 Modified files: xorp/pim/: pim_mre_register.cc Log message: Bugfix: remove the register tunnel by considering the register state-machine before it was set to NoInfo. _______________________________________________ xorp-cvs mailing list xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 15:10:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 15:11:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNBGmu029091 for ; Mon, 23 Feb 2004 15:11:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNB5d1060438; Mon, 23 Feb 2004 15:11:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNB1K3028614; Mon, 23 Feb 2004 15:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNAqK3028604 for ; Mon, 23 Feb 2004 15:10:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNApd1060432 for ; Mon, 23 Feb 2004 15:10:51 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNApAF018477 for ; Mon, 23 Feb 2004 15:10:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NNAp4L018476; Mon, 23 Feb 2004 15:10:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402232310.i1NNAp4L018476@xorpc.icir.org> Date: Mon, 23 Feb 2004 15:10:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/images/ Changes by: hodson@xorpc.icir.org. 04/02/23 15:10:51 www/images Update of /usr/local/www/data/cvs/www/images In directory xorpc.icir.org:/tmp/cvs-serv18470/images Log Message: Directory /usr/local/www/data/cvs/www/images added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 15:11:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 15:12:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNCBmu029329 for ; Mon, 23 Feb 2004 15:12:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNC5d1060453; Mon, 23 Feb 2004 15:12:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNC1K3028670; Mon, 23 Feb 2004 15:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNB4K3028623 for ; Mon, 23 Feb 2004 15:11:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNB4d1060436 for ; Mon, 23 Feb 2004 15:11:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNB4AF018498 for ; Mon, 23 Feb 2004 15:11:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NNB4TY018497; Mon, 23 Feb 2004 15:11:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402232311.i1NNB4TY018497@xorpc.icir.org> Date: Mon, 23 Feb 2004 15:11:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/images/sponsors/ Changes by: hodson@xorpc.icir.org. 04/02/23 15:11:04 www/images/sponsors Update of /usr/local/www/data/cvs/www/images/sponsors In directory xorpc.icir.org:/tmp/cvs-serv18491/sponsors Log Message: Directory /usr/local/www/data/cvs/www/images/sponsors added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 15:11:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 15:12:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNCBmu029327 for ; Mon, 23 Feb 2004 15:12:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNC5d1060452; Mon, 23 Feb 2004 15:12:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNC2K3028682; Mon, 23 Feb 2004 15:12:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNBQK3028641 for ; Mon, 23 Feb 2004 15:11:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNBPd1060446 for ; Mon, 23 Feb 2004 15:11:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNBPAF018532 for ; Mon, 23 Feb 2004 15:11:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NNBPNT018531; Mon, 23 Feb 2004 15:11:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402232311.i1NNBPNT018531@xorpc.icir.org> Date: Mon, 23 Feb 2004 15:11:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/images/sponsors/ intel_header_logo.gif nsf.gif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/images/sponsors/ Changes by: hodson@xorpc.icir.org. 04/02/23 15:11:25 Added files: www/images/sponsors/: intel_header_logo.gif nsf.gif Log message: Add logos for sponsors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 15:22:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 15:23:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNNPmu032078 for ; Mon, 23 Feb 2004 15:23:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNNGd1060574; Mon, 23 Feb 2004 15:23:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNN1K3028905; Mon, 23 Feb 2004 15:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNMKK3028883 for ; Mon, 23 Feb 2004 15:22:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNMKd1060559 for ; Mon, 23 Feb 2004 15:22:20 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNMKAF018742 for ; Mon, 23 Feb 2004 15:22:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NNMK1H018741; Mon, 23 Feb 2004 15:22:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402232322.i1NNMK1H018741@xorpc.icir.org> Date: Mon, 23 Feb 2004 15:22:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/02/23 15:22:20 Modified files: ./: index.html Log message: Add release announcement with sign-up link. Add graphical logos for sponsors. Add links for archives. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 15:38:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 15:39:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNdPmu036148 for ; Mon, 23 Feb 2004 15:39:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNdGd1060767; Mon, 23 Feb 2004 15:39:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNd1K3029252; Mon, 23 Feb 2004 15:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1NNcNK3029229 for ; Mon, 23 Feb 2004 15:38:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNcMd1060761 for ; Mon, 23 Feb 2004 15:38:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1NNcMAF019093 for ; Mon, 23 Feb 2004 15:38:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1NNcMHX019092; Mon, 23 Feb 2004 15:38:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402232338.i1NNcMHX019092@xorpc.icir.org> Date: Mon, 23 Feb 2004 15:38:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/23 15:38:22 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 17:35:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 17:36:30 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O1aUmu065545 for ; Mon, 23 Feb 2004 17:36:30 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O1aPd1061922; Mon, 23 Feb 2004 17:36:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O1a1ok002123; Mon, 23 Feb 2004 17:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O1Z7ok002083 for ; Mon, 23 Feb 2004 17:35:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O1Z7d1061910 for ; Mon, 23 Feb 2004 17:35:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O1Z7AF022989 for ; Mon, 23 Feb 2004 17:35:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1O1Z7CM022988; Mon, 23 Feb 2004 17:35:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402240135.i1O1Z7CM022988@xorpc.icir.org> Date: Mon, 23 Feb 2004 17:35:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/23 17:35:07 Modified files: ./: index.html Log message: Fix the URL to the NSF. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 19:16:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 19:17:34 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3HYmu099648 for ; Mon, 23 Feb 2004 19:17:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3HSd1062819; Mon, 23 Feb 2004 19:17:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3H0ok004051; Mon, 23 Feb 2004 19:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3Gwok004042 for ; Mon, 23 Feb 2004 19:16:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3Gwd1062815 for ; Mon, 23 Feb 2004 19:16:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3GwAF025922 for ; Mon, 23 Feb 2004 19:16:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1O3GwxE025921; Mon, 23 Feb 2004 19:16:58 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402240316.i1O3GwxE025921@xorpc.icir.org> Date: Mon, 23 Feb 2004 19:16:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_decision.cc route_table_decision.hh route_table_deletion.cc ...route_table_deletion.hh ...route_table_dump.cc ...route_table_dump.hh ...route_table_fanout.cc ...route_table_fanout.hh ...route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_next_hop_resolver.cc ...test_nhlookup.cc ...test_ribin.cc ...test_ribout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/23 19:16:58 Modified files: xorp/bgp/: plumbing.cc route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_next_hop_resolver.cc test_nhlookup.cc test_ribin.cc test_ribout.cc Log message: Pass the safi to the base route table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:52 2005 Subject: No subject Mon Feb 23 19:35:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 19:36:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3aCmu004792 for ; Mon, 23 Feb 2004 19:36:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3a7d1063015; Mon, 23 Feb 2004 19:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3a1ok004355; Mon, 23 Feb 2004 19:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3Zrok004346 for ; Mon, 23 Feb 2004 19:35:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3Zqd1063013 for ; Mon, 23 Feb 2004 19:35:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3ZqAF026450 for ; Mon, 23 Feb 2004 19:35:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from root@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1O3Zqrv026449; Mon, 23 Feb 2004 19:35:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402240335.i1O3Zqrv026449@xorpc.icir.org> Date: Mon, 23 Feb 2004 19:35:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /home/xorpc/u0/xorpcvs/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/23 19:35:52 Modified files: ./: config Log message: Setup LockDir to /cvs/cvslock _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Mon Feb 23 19:37:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 19:38:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3cMmu005355 for ; Mon, 23 Feb 2004 19:38:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3cHd1063031; Mon, 23 Feb 2004 19:38:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3c1ok004402; Mon, 23 Feb 2004 19:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3bIok004387 for ; Mon, 23 Feb 2004 19:37:18 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3bHd1063025; Mon, 23 Feb 2004 19:37:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3bH8N040778; Mon, 23 Feb 2004 19:37:17 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200402240337.i1O3bH8N040778@possum.icir.org> To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ config In-Reply-To: Message from Pavlin Radoslavov of "Mon, 23 Feb 2004 19:35:52." <200402240335.i1O3Zqrv026449@xorpc.icir.org> Date: Mon, 23 Feb 2004 19:37:17 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /home/xorpc/u0/xorpcvs/cvs > Module name: CVSROOT > Repository: ./ > Changes by: pavlin@xorpc.icir.org. 04/02/23 19:35:52 > > Modified files: > ./: config > > Log message: > Setup LockDir to /cvs/cvslock FYI, this is in the anon. CVS repository which I am playing with right now. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Mon Feb 23 19:40:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Feb 2004 19:43:54 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3hsmu007104 for ; Mon, 23 Feb 2004 19:43:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3hod1063097; Mon, 23 Feb 2004 19:43:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3f1ok004458; Mon, 23 Feb 2004 19:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1O3e8ok004432 for ; Mon, 23 Feb 2004 19:40:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3e8d1063069 for ; Mon, 23 Feb 2004 19:40:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1O3e8AF026561 for ; Mon, 23 Feb 2004 19:40:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from root@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1O3e8Xa026560; Mon, 23 Feb 2004 19:40:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402240340.i1O3e8Xa026560@xorpc.icir.org> Date: Mon, 23 Feb 2004 19:40:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /home/xorpc/u0/xorpcvs/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/23 19:40:08 Modified files: ./: config Log message: Change LockDir from /cvs/cvslocks to /cvslocks _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 9:01:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 09:02:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH2Gmu059275 for ; Tue, 24 Feb 2004 09:02:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH29M7001603; Tue, 24 Feb 2004 09:02:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OH21cS005244; Tue, 24 Feb 2004 09:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OH1McS005214 for ; Tue, 24 Feb 2004 09:01:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH1MM7001591 for ; Tue, 24 Feb 2004 09:01:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH1M9Q006307 for ; Tue, 24 Feb 2004 09:01:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OH1MLS006306; Tue, 24 Feb 2004 09:01:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402241701.i1OH1MLS006306@xorpc.icir.org> Date: Tue, 24 Feb 2004 9:01:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/24 09:01:22 Modified files: xorp/libxorp/: timeval.hh Log message: Trim trailing whitespaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 9:02:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 09:03:27 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH3Rmu059547 for ; Tue, 24 Feb 2004 09:03:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH3LM7001619; Tue, 24 Feb 2004 09:03:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OH30cS005317; Tue, 24 Feb 2004 09:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OH2fcS005286 for ; Tue, 24 Feb 2004 09:02:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH2fM7001609 for ; Tue, 24 Feb 2004 09:02:41 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OH2f9Q006617 for ; Tue, 24 Feb 2004 09:02:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OH2fHr006616; Tue, 24 Feb 2004 09:02:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402241702.i1OH2fHr006616@xorpc.icir.org> Date: Tue, 24 Feb 2004 9:02:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/24 09:02:41 Modified files: xorp/libxorp/: timer.cc Log message: Add some code to throw a wobbly if a timer expires more than N seconds late presumeably because a timer or selector callback has taken a lot longer than expected. N is currently 15 seconds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 9:26:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 09:27:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHRCmu076730 for ; Tue, 24 Feb 2004 09:27:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHR3M7002246; Tue, 24 Feb 2004 09:27:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OHR1s2006101; Tue, 24 Feb 2004 09:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OHQ4s2006074 for ; Tue, 24 Feb 2004 09:26:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHQ4M7002236 for ; Tue, 24 Feb 2004 09:26:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHQ49Q013074 for ; Tue, 24 Feb 2004 09:26:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OHQ4Y4013073; Tue, 24 Feb 2004 09:26:04 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402241726.i1OHQ4Y4013073@xorpc.icir.org> Date: Tue, 24 Feb 2004 9:26:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ parameter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/24 09:26:04 Modified files: xorp/bgp/: parameter.hh Log message: Change the way we print the SAFI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 9:33:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 09:34:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHYCmu084156 for ; Tue, 24 Feb 2004 09:34:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHY6M7002343; Tue, 24 Feb 2004 09:34:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OHY1s2006350; Tue, 24 Feb 2004 09:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OHXHs2006320 for ; Tue, 24 Feb 2004 09:33:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHXHM7002341 for ; Tue, 24 Feb 2004 09:33:17 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OHXG9Q013288 for ; Tue, 24 Feb 2004 09:33:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OHXGhE013287; Tue, 24 Feb 2004 09:33:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402241733.i1OHXGhE013287@xorpc.icir.org> Date: Tue, 24 Feb 2004 9:33:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html xorp2.png www/images/ Xorp Logo On White.cdr xorp-logo-large.jpg xorp-logo-medium.jpg xorp-logo-small.jpg xorp-logo-small.png Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/images/ Changes by: hodson@xorpc.icir.org. 04/02/24 09:33:16 Modified files: ./: index.html xorp2.png Added files: www/images/: Xorp Logo On White.cdr xorp-logo-large.jpg xorp-logo-medium.jpg xorp-logo-small.jpg xorp-logo-small.png Log message: Make release 1.0 signup more prominent. Change logo to be the same as the bootable ISO that we seemed to agree was better. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:39:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 11:40:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJeDmu011726 for ; Tue, 24 Feb 2004 11:40:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJe3M7003765; Tue, 24 Feb 2004 11:40:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJe1s2010353; Tue, 24 Feb 2004 11:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJdUs2010335 for ; Tue, 24 Feb 2004 11:39:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJdTM7003760 for ; Tue, 24 Feb 2004 11:39:29 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJdT9Q021571 for ; Tue, 24 Feb 2004 11:39:29 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJdTer021570; Tue, 24 Feb 2004 11:39:29 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402241939.i1OJdTer021570@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:39:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh packets.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 11:39:29 Modified files: xorp/rip/: constants.hh packets.hh Log message: Add PACKET_VERSION to specialized constants. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:41:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 11:42:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJg9mu012126 for ; Tue, 24 Feb 2004 11:42:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJg3M7003826; Tue, 24 Feb 2004 11:42:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJg1s2010415; Tue, 24 Feb 2004 11:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJfWs2010387 for ; Tue, 24 Feb 2004 11:41:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJfWM7003806 for ; Tue, 24 Feb 2004 11:41:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJfW9Q021753 for ; Tue, 24 Feb 2004 11:41:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJfWKR021752; Tue, 24 Feb 2004 11:41:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402241941.i1OJfWKR021752@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:41:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 11:41:32 Modified files: xorp/libxorp/: timer.cc Log message: "%u" -> "%s" in fprintf() for a C-string argument. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:41:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 11:42:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJgDmu012141 for ; Tue, 24 Feb 2004 11:42:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJg6M7003828; Tue, 24 Feb 2004 11:42:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJg2s2010427; Tue, 24 Feb 2004 11:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJfds2010396 for ; Tue, 24 Feb 2004 11:41:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJfdM7003815 for ; Tue, 24 Feb 2004 11:41:39 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJfd9Q021804 for ; Tue, 24 Feb 2004 11:41:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJfdhb021803; Tue, 24 Feb 2004 11:41:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402241941.i1OJfdhb021803@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:41:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 11:41:39 Modified files: xorp/rip/: port.cc Log message: Initial IPv6 data reception handling. Add in additional checks in common code for valid prefix_lengths in packets we receive to avoid any risk of InvalidPrefixLength being thrown by IPNet constructors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:51:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 11:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJq7mu014151 for ; Tue, 24 Feb 2004 11:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJq2M7003964; Tue, 24 Feb 2004 11:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJq0s2010701; Tue, 24 Feb 2004 11:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJp7s2010677 for ; Tue, 24 Feb 2004 11:51:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJp7M7003962 for ; Tue, 24 Feb 2004 11:51:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJp79Q024422 for ; Tue, 24 Feb 2004 11:51:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJp7L6024421; Tue, 24 Feb 2004 11:51:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402241951.i1OJp7L6024421@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:51:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 11:51:06 Modified files: xorp/pim/: pim_mfc.cc Log message: Back-up an earlier changes that removes the PimMfe entry if there are no outgoing interfaces. Removing immediately the PimMfe entry creates a problem in case of DR with directly-connected source that has been surpressed by PIM Register-Stop messages. In that case, we want to have the corresponding MFC entry in the kernel to block all the multicast traffic. Otherwise, the PimMfe entry is removed, then immediately installed, then immediately removed, and so on. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:57:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 11:58:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJwDmu015439 for ; Tue, 24 Feb 2004 11:58:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJw8M7004030; Tue, 24 Feb 2004 11:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJw1s2010861; Tue, 24 Feb 2004 11:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJv5s2010831 for ; Tue, 24 Feb 2004 11:57:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJv4M7004020 for ; Tue, 24 Feb 2004 11:57:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJv49Q025903 for ; Tue, 24 Feb 2004 11:57:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJv4xw025902; Tue, 24 Feb 2004 11:57:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402241957.i1OJv4xw025902@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:57:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_data.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 11:57:04 Modified files: xorp/pim/: pim_mre.hh pim_mre_data.cc Log message: * Add new PimMre inner flag PIM_MRE_SWITCH_TO_SPT_DESIRED which is set for an (S,G) state if SwitchToSptDesired(S,G) has been found to be true. * Add new method PimMre::set_switch_to_spt_desired_sg() that is used to set or reset the above flag. * Modify PimMre::is_monitoring_switch_to_spt_desired_sg() to ignore the inherited_olist_sg() in case of RP-based SPT switch. Now the RP-based SPT switch matches the current spec (09) behavior at the RP. * Modify PimMre::is_monitoring_switch_to_spt_desired_sg() to return true if the PIM_MRE_SWITCH_TO_SPT_DESIRED has been set already. * Modify PimMre::check_switch_to_spt_sg() such that if CheckSwitchToSpt(S,G) evaluates to true, then set the PIM_MRE_SWITCH_TO_SPT_DESIRED flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 11:59:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 12:00:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OK0Dmu015889 for ; Tue, 24 Feb 2004 12:00:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OK04M7004056; Tue, 24 Feb 2004 12:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OK01s2010942; Tue, 24 Feb 2004 12:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OJxqs2010928 for ; Tue, 24 Feb 2004 11:59:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJxqM7004046 for ; Tue, 24 Feb 2004 11:59:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OJxq9Q026438 for ; Tue, 24 Feb 2004 11:59:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OJxqwK026437; Tue, 24 Feb 2004 11:59:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402241959.i1OJxqwK026437@xorpc.icir.org> Date: Tue, 24 Feb 2004 11:59:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/02/24 11:59:52 Modified files: xorp/pim/: pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: * Modify the state-dependency tracking inside track_state_monitoring_switch_to_spt_desired_sg() : remove the inherited_olist_sg() dependency in case of RP-based SPT switch to match the lastest (draft-09) spec. * Update the state-dependency tracking description files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 12:17:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 12:18:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OKI9mu020487 for ; Tue, 24 Feb 2004 12:18:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OKI5M7004229; Tue, 24 Feb 2004 12:18:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OKI1s2011428; Tue, 24 Feb 2004 12:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OKH4s2011396 for ; Tue, 24 Feb 2004 12:17:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OKH4M7004225 for ; Tue, 24 Feb 2004 12:17:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OKH49Q030016 for ; Tue, 24 Feb 2004 12:17:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OKH46B030015; Tue, 24 Feb 2004 12:17:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242017.i1OKH46B030015@xorpc.icir.org> Date: Tue, 24 Feb 2004 12:17:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 12:17:03 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Bugfix: OLD: pim_mre_sg_rpt->sg_rpt_entry() NEW: pim_mre_sg_rpt->sg_entry() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 13:02:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:03:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL39mu031184 for ; Tue, 24 Feb 2004 13:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL34M7004709; Tue, 24 Feb 2004 13:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OL31s2012551; Tue, 24 Feb 2004 13:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OL21s2012516 for ; Tue, 24 Feb 2004 13:02:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL21M7004691 for ; Tue, 24 Feb 2004 13:02:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL219Q041443 for ; Tue, 24 Feb 2004 13:02:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OL21mD041442; Tue, 24 Feb 2004 13:02:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242102.i1OL21mD041442@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:02:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 13:02:01 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc mld6igmp_member_query.cc mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh Log message: Add the source address to the Mld6igmpVif::mld6igmp_send() arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 13:04:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:05:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL59mu031662 for ; Tue, 24 Feb 2004 13:05:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL55M7004734; Tue, 24 Feb 2004 13:05:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OL51s2012619; Tue, 24 Feb 2004 13:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OL4ts2012595 for ; Tue, 24 Feb 2004 13:04:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL4tM7004727 for ; Tue, 24 Feb 2004 13:04:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OL4t9Q041509 for ; Tue, 24 Feb 2004 13:04:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OL4t1b041508; Tue, 24 Feb 2004 13:04:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242104.i1OL4t1b041508@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:04:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_hello.cc pim_proto_join_prune_message.cc pim_proto_register.cc pim_proto_register_stop.cc ...pim_vif.cc ...pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 13:04:55 Modified files: xorp/pim/: pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_hello.cc pim_proto_join_prune_message.cc pim_proto_register.cc pim_proto_register_stop.cc pim_vif.cc pim_vif.hh Log message: Add the source address to the PimVif::pim_send() arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:53 2005 Subject: No subject Tue Feb 24 13:11:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:12:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLCAmu033364 for ; Tue, 24 Feb 2004 13:12:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLC6M7004806; Tue, 24 Feb 2004 13:12:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLC1s2012777; Tue, 24 Feb 2004 13:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLBis2012748 for ; Tue, 24 Feb 2004 13:11:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLBiM7004795 for ; Tue, 24 Feb 2004 13:11:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLBi9Q041706 for ; Tue, 24 Feb 2004 13:11:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OLBiEX041705; Tue, 24 Feb 2004 13:11:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242111.i1OLBiEX041705@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:11:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_graft.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 13:11:44 Modified files: xorp/pim/: pim_proto_graft.cc Log message: Fix a bug in dead code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 13:11:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:12:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLCFmu033391 for ; Tue, 24 Feb 2004 13:12:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLCBM7004812; Tue, 24 Feb 2004 13:12:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLC1s2012765; Tue, 24 Feb 2004 13:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLB8s2012735 for ; Tue, 24 Feb 2004 13:11:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLB8M7004791 for ; Tue, 24 Feb 2004 13:11:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLB89Q041666 for ; Tue, 24 Feb 2004 13:11:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OLB85C041665; Tue, 24 Feb 2004 13:11:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242111.i1OLB85C041665@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:11:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 13:11:08 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 13:56:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:57:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLvAmu044413 for ; Tue, 24 Feb 2004 13:57:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLv4M7005282; Tue, 24 Feb 2004 13:57:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLv1s2013719; Tue, 24 Feb 2004 13:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLuhs2013705 for ; Tue, 24 Feb 2004 13:56:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLugM7005279 for ; Tue, 24 Feb 2004 13:56:42 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLug9Q042626 for ; Tue, 24 Feb 2004 13:56:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OLugnp042625; Tue, 24 Feb 2004 13:56:42 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402242156.i1OLugnp042625@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:56:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip_common.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 13:56:42 Modified files: xorp/rip/: xorp_rip_common.hh Log message: Add templatized lookup to yield correct XrlTarget name for given IP address family type. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 13:57:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 13:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLw8mu044644 for ; Tue, 24 Feb 2004 13:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLw4M7005301; Tue, 24 Feb 2004 13:58:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLw1s2013744; Tue, 24 Feb 2004 13:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OLvGs2013730 for ; Tue, 24 Feb 2004 13:57:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLvGM7005294 for ; Tue, 24 Feb 2004 13:57:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OLvG9Q042670 for ; Tue, 24 Feb 2004 13:57:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OLvGNN042669; Tue, 24 Feb 2004 13:57:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402242157.i1OLvGNN042669@xorpc.icir.org> Date: Tue, 24 Feb 2004 13:57:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/02/24 13:57:16 Modified files: xorp/etc/templates/: ripng.tp Log message: Sync with RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 14:46:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 14:47:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OMl8mu057030 for ; Tue, 24 Feb 2004 14:47:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OMl4M7005865; Tue, 24 Feb 2004 14:47:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OMl1s2014973; Tue, 24 Feb 2004 14:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1OMk8s2014938 for ; Tue, 24 Feb 2004 14:46:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OMk8M7005859 for ; Tue, 24 Feb 2004 14:46:08 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1OMk89Q043378 for ; Tue, 24 Feb 2004 14:46:08 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1OMk8fX043377; Tue, 24 Feb 2004 14:46:08 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402242246.i1OMk8fX043377@xorpc.icir.org> Date: Tue, 24 Feb 2004 14:46:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 14:46:08 Modified files: xorp/rip/: xrl_port_manager.cc Log message: Add some additional debug_msg calls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:06:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:07:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ON7Amu062243 for ; Tue, 24 Feb 2004 15:07:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ON74M7006086; Tue, 24 Feb 2004 15:07:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ON71s2015446; Tue, 24 Feb 2004 15:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ON6Ss2015420 for ; Tue, 24 Feb 2004 15:06:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ON6SM7006075 for ; Tue, 24 Feb 2004 15:06:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ON6S9Q044172 for ; Tue, 24 Feb 2004 15:06:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ON6S5U044171; Tue, 24 Feb 2004 15:06:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242306.i1ON6S5U044171@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:06:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:06:28 Modified files: ./: RELEASE_NOTES Log message: Added PIM-SM release note. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:49:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:50:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONoAmu073233 for ; Tue, 24 Feb 2004 15:50:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONo4M7006503; Tue, 24 Feb 2004 15:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONo2s2016505; Tue, 24 Feb 2004 15:50:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONnhs2016484 for ; Tue, 24 Feb 2004 15:49:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONngM7006490 for ; Tue, 24 Feb 2004 15:49:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONng9Q046197 for ; Tue, 24 Feb 2004 15:49:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONng7D046196; Tue, 24 Feb 2004 15:49:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242349.i1ONng7D046196@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:49:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:49:42 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: Reset the primary address on a vif at the beginning of start-up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:50:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:51:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONp9mu073518 for ; Tue, 24 Feb 2004 15:51:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONp3M7006536; Tue, 24 Feb 2004 15:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONp1s2016557; Tue, 24 Feb 2004 15:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONo4s2016512 for ; Tue, 24 Feb 2004 15:50:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONo3M7006501 for ; Tue, 24 Feb 2004 15:50:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONo39Q046271 for ; Tue, 24 Feb 2004 15:50:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONo3sr046270; Tue, 24 Feb 2004 15:50:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242350.i1ONo3sr046270@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:50:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:50:03 Modified files: xorp/mld6igmp/: mld6igmp_node.cc Log message: Stop a vif if some of its addresses will change _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:50:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:51:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONpAmu073533 for ; Tue, 24 Feb 2004 15:51:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONp3M7006538; Tue, 24 Feb 2004 15:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONp1s2016569; Tue, 24 Feb 2004 15:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONoJs2016533 for ; Tue, 24 Feb 2004 15:50:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONoJM7006526 for ; Tue, 24 Feb 2004 15:50:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONoJ9Q046348 for ; Tue, 24 Feb 2004 15:50:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONoJYf046347; Tue, 24 Feb 2004 15:50:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242350.i1ONoJYf046347@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:50:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:50:19 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:50:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:51:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONpAmu073548 for ; Tue, 24 Feb 2004 15:51:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONp4M7006540; Tue, 24 Feb 2004 15:51:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONp2s2016581; Tue, 24 Feb 2004 15:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONors2016548 for ; Tue, 24 Feb 2004 15:50:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONorM7006532 for ; Tue, 24 Feb 2004 15:50:53 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONor9Q046407 for ; Tue, 24 Feb 2004 15:50:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONorMb046405; Tue, 24 Feb 2004 15:50:53 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402242350.i1ONorMb046405@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:50:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/02/24 15:50:53 Modified files: xorp/libxorp/: ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: Add IPv{4,6,X}::is_loopback(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:51:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:52:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONq7mu073800 for ; Tue, 24 Feb 2004 15:52:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONq2M7006570; Tue, 24 Feb 2004 15:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONq0s2016620; Tue, 24 Feb 2004 15:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONpvs2016611 for ; Tue, 24 Feb 2004 15:51:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONpvM7006565 for ; Tue, 24 Feb 2004 15:51:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONpv9Q046463 for ; Tue, 24 Feb 2004 15:51:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONpved046462; Tue, 24 Feb 2004 15:51:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242351.i1ONpved046462@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:51:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:51:57 Modified files: xorp/pim/: pim_vif.cc Log message: * Reset the primary and the domain-wide addresses of a vif during start-up * If we start or stop a vif, then add tasks to take care of changed vif addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:52:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:53:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONr7mu074037 for ; Tue, 24 Feb 2004 15:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONr2M7006586; Tue, 24 Feb 2004 15:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONr1s2016659; Tue, 24 Feb 2004 15:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONqWs2016637 for ; Tue, 24 Feb 2004 15:52:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONqVM7006577 for ; Tue, 24 Feb 2004 15:52:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONqV9Q046533 for ; Tue, 24 Feb 2004 15:52:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONqVO5046532; Tue, 24 Feb 2004 15:52:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242352.i1ONqVO5046532@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:52:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:52:31 Modified files: xorp/pim/: pim_node.cc Log message: Stop a vif if some of its addresses will change _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 15:57:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 15:58:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONw7mu075263 for ; Tue, 24 Feb 2004 15:58:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONw2M7006632; Tue, 24 Feb 2004 15:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONw0s2016781; Tue, 24 Feb 2004 15:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1ONvbs2016770 for ; Tue, 24 Feb 2004 15:57:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONvbM7006630 for ; Tue, 24 Feb 2004 15:57:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1ONva9Q046959 for ; Tue, 24 Feb 2004 15:57:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1ONvaBQ046956; Tue, 24 Feb 2004 15:57:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402242357.i1ONvaBQ046956@xorpc.icir.org> Date: Tue, 24 Feb 2004 15:57:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_ipv4.cc test_ipv6.cc test_ipvx.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 15:57:36 Modified files: xorp/libxorp/: test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: Nitlet in a comment: "loopback multicast address" -> "loopback address" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 16:08:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 16:09:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P09Smu077983 for ; Tue, 24 Feb 2004 16:09:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P09LM7006781; Tue, 24 Feb 2004 16:09:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P091s2017039; Tue, 24 Feb 2004 16:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P08ps2017029 for ; Tue, 24 Feb 2004 16:08:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P08pM7006773 for ; Tue, 24 Feb 2004 16:08:51 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P08o9Q048616 for ; Tue, 24 Feb 2004 16:08:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P08ofj048615; Tue, 24 Feb 2004 16:08:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402250008.i1P08ofj048615@xorpc.icir.org> Date: Tue, 24 Feb 2004 16:08:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 16:08:50 Modified files: xorp/rip/: port.cc Log message: Check RIPng routes are not for loopback and change RIP to use is_loopback(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 16:27:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 16:28:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0SAmu083511 for ; Tue, 24 Feb 2004 16:28:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0S4M7007085; Tue, 24 Feb 2004 16:28:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0S1s2017571; Tue, 24 Feb 2004 16:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0RZs2017546 for ; Tue, 24 Feb 2004 16:27:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0RZM7007080 for ; Tue, 24 Feb 2004 16:27:35 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0RZ9Q053278 for ; Tue, 24 Feb 2004 16:27:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P0RZen053277; Tue, 24 Feb 2004 16:27:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402250027.i1P0RZen053277@xorpc.icir.org> Date: Tue, 24 Feb 2004 16:27:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ constants.hh xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/24 16:27:34 Modified files: xorp/rip/: constants.hh xrl_port_io.cc Log message: Configure RIPng multicast packets to be sent with a hop-count value of 255 as described in RFC2080. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 16:35:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 16:36:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0a7mu085619 for ; Tue, 24 Feb 2004 16:36:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0a3M7007197; Tue, 24 Feb 2004 16:36:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0a1s2017788; Tue, 24 Feb 2004 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0Zos2017778 for ; Tue, 24 Feb 2004 16:35:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0ZnM7007195 for ; Tue, 24 Feb 2004 16:35:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0Zn9Q054840 for ; Tue, 24 Feb 2004 16:35:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P0ZnMD054839; Tue, 24 Feb 2004 16:35:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250035.i1P0ZnMD054839@xorpc.icir.org> Date: Tue, 24 Feb 2004 16:35:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO pim_mre.cc pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.cc pim_mrt.hh pim_mrt_task.cc pim_node_cli.cc xorp/pim/docs/ pim_track_state_name.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/02/24 16:35:49 Modified files: xorp/pim/: TODO pim_mre.cc pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc pim_mre_track_state.cc pim_mre_track_state.hh pim_mrt.cc pim_mrt.hh pim_mrt_task.cc pim_node_cli.cc xorp/pim/docs/: pim_track_state_name.txt Log message: Rename *mrib_next_hop* and *MRIB_NEXT_HOP* to *nbr_mrib_next_hop* and *NBR_MRIB_NEXT_HOP* respectively. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 16:41:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 16:42:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0g9mu087081 for ; Tue, 24 Feb 2004 16:42:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0g4M7007253; Tue, 24 Feb 2004 16:42:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0g0s2017897; Tue, 24 Feb 2004 16:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P0fPs2017880 for ; Tue, 24 Feb 2004 16:41:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0fPM7007246 for ; Tue, 24 Feb 2004 16:41:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P0fO9Q055970 for ; Tue, 24 Feb 2004 16:41:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P0fOsn055969; Tue, 24 Feb 2004 16:41:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250041.i1P0fOsn055969@xorpc.icir.org> Date: Tue, 24 Feb 2004 16:41:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_join_prune.cc pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 16:41:24 Modified files: xorp/pim/: pim_mre_join_prune.cc pim_mre_rpf.cc Log message: Replace MRIB.next_hop(RP) with NBR(RPF_interface(RP), MRIB.next_hop(RP)) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 17:29:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 17:52:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P1qIZS006914 for ; Tue, 24 Feb 2004 17:52:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P1UFM7007844; Tue, 24 Feb 2004 17:30:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P1U1IW018961; Tue, 24 Feb 2004 17:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P1TXIW018942 for ; Tue, 24 Feb 2004 17:29:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P1TXM7007815 for ; Tue, 24 Feb 2004 17:29:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P1TX9Q058072 for ; Tue, 24 Feb 2004 17:29:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P1TXDi058071; Tue, 24 Feb 2004 17:29:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250129.i1P1TXDi058071@xorpc.icir.org> Date: Tue, 24 Feb 2004 17:29:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 17:29:33 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 18:38:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 18:40:27 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2eRZK026354 for ; Tue, 24 Feb 2004 18:40:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2eKM7008470; Tue, 24 Feb 2004 18:40:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2e0IW020186; Tue, 24 Feb 2004 18:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2d6IW020159 for ; Tue, 24 Feb 2004 18:39:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2ceM7008440 for ; Tue, 24 Feb 2004 18:38:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2ce9Q060085 for ; Tue, 24 Feb 2004 18:38:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P2cePt060084; Tue, 24 Feb 2004 18:38:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250238.i1P2cePt060084@xorpc.icir.org> Date: Tue, 24 Feb 2004 18:38:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.hh mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 18:38:40 Modified files: xorp/mld6igmp/: mld6igmp_vif.hh mld6igmp_vif.cc Log message: Move the code for computing the primary address on an interface to a separate method Mld6igmpVif::update_primary_address() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 18:42:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 18:43:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2h7ZK027406 for ; Tue, 24 Feb 2004 18:43:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2h3M7008489; Tue, 24 Feb 2004 18:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2h1IW020274; Tue, 24 Feb 2004 18:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2glIW020265 for ; Tue, 24 Feb 2004 18:42:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2glM7008487 for ; Tue, 24 Feb 2004 18:42:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2gl9Q060200 for ; Tue, 24 Feb 2004 18:42:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P2glgS060199; Tue, 24 Feb 2004 18:42:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250242.i1P2glgS060199@xorpc.icir.org> Date: Tue, 24 Feb 2004 18:42:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 18:42:47 Modified files: xorp/mld6igmp/: mld6igmp_node.cc Log message: * Back-off a previous commit that unconditionally stops a vif if an address is added or deleted * If an address is deleted from a vif, then stop that vif if it was up and if it has no primary address anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:54 2005 Subject: No subject Tue Feb 24 18:43:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 18:44:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2iEZK027828 for ; Tue, 24 Feb 2004 18:44:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2i7M7008500; Tue, 24 Feb 2004 18:44:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2i1IW020298; Tue, 24 Feb 2004 18:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2hvIW020289 for ; Tue, 24 Feb 2004 18:43:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2hvM7008498 for ; Tue, 24 Feb 2004 18:43:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2hv9Q060279 for ; Tue, 24 Feb 2004 18:43:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P2hvGn060278; Tue, 24 Feb 2004 18:43:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250243.i1P2hvGn060278@xorpc.icir.org> Date: Tue, 24 Feb 2004 18:43:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.hh pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 18:43:57 Modified files: xorp/pim/: pim_vif.hh pim_vif.cc Log message: Move the code for computing the primary and domain-wide addresses on an interface to a separate method PimVif::update_primary_and_domain_wide_address() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 18:48:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 18:49:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2nWZK029193 for ; Tue, 24 Feb 2004 18:49:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2nRM7008542; Tue, 24 Feb 2004 18:49:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2n1IW020387; Tue, 24 Feb 2004 18:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P2mDIW020372 for ; Tue, 24 Feb 2004 18:48:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2mDM7008534 for ; Tue, 24 Feb 2004 18:48:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P2mD9Q060434 for ; Tue, 24 Feb 2004 18:48:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P2mDmO060433; Tue, 24 Feb 2004 18:48:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250248.i1P2mDmO060433@xorpc.icir.org> Date: Tue, 24 Feb 2004 18:48:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 18:48:13 Modified files: xorp/pim/: pim_node.cc Log message: * Back-off a previous commit that unconditionally stops a vif if an address is added or deleted * If an interface changes one of its secondary IP addresses, then send immediately a Hello message with an updated Address_List option and a non-zero HoldTime. * If an interface changes its primary IP address, then send immediately a Hello message with a zero HoldTime (with the old IP address). * If a vif address is deleted, then update the primary and domain-wide addresses. If the vif has no more primary or a domain-wide address, then stop it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 21:03:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 21:09:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P59AZK064505 for ; Tue, 24 Feb 2004 21:09:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P595M7009620; Tue, 24 Feb 2004 21:09:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P541IW022897; Tue, 24 Feb 2004 21:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P537IW022875 for ; Tue, 24 Feb 2004 21:03:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P536M7009586 for ; Tue, 24 Feb 2004 21:03:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5369Q064112 for ; Tue, 24 Feb 2004 21:03:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P536T0064111; Tue, 24 Feb 2004 21:03:06 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402250503.i1P536T0064111@xorpc.icir.org> Date: Tue, 24 Feb 2004 21:03:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc path_attribute.cc plumbing.cc plumbing.hh route_table_base.cc route_table_cache.cc route_table_dump.cc route_table_fanout.cc route_table_fanout.hh route_table_filter.cc ...route_table_ribin.cc ...route_table_ribout.cc ...subnet_route.cc ...test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/24 21:03:06 Modified files: xorp/bgp/: dump_iterators.cc path_attribute.cc plumbing.cc plumbing.hh route_table_base.cc route_table_cache.cc route_table_dump.cc route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_ribin.cc route_table_ribout.cc subnet_route.cc test_dump.cc Log message: Rationalised some of the debugging. We typically have four sets of plumbing IPv4/IPv6 Unicast and Multicast. Try and get this state into the tablename. Therefore we no longer need to try and figure out if we are IPv4 or IPv6. assert -> XLOG_ASSERT Random formatting nits. In the dump table code output_state the parent (fanout table) was called with a pointer to the filter table not the dump table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 21:30:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 21:31:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5V9ZK069885 for ; Tue, 24 Feb 2004 21:31:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5V4M7009803; Tue, 24 Feb 2004 21:31:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5V1IW023389; Tue, 24 Feb 2004 21:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5UCIW023334 for ; Tue, 24 Feb 2004 21:30:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5UCM7009801 for ; Tue, 24 Feb 2004 21:30:12 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5UC9Q064553 for ; Tue, 24 Feb 2004 21:30:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P5UChP064552; Tue, 24 Feb 2004 21:30:12 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402250530.i1P5UChP064552@xorpc.icir.org> Date: Tue, 24 Feb 2004 21:30:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/24 21:30:11 Modified files: xorp/bgp/: route_table_fanout.cc Log message: Random formatting nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 21:54:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 21:55:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5tNZK077280 for ; Tue, 24 Feb 2004 21:55:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5tHM7010020; Tue, 24 Feb 2004 21:55:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5t0IW023790; Tue, 24 Feb 2004 21:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5suIW023781 for ; Tue, 24 Feb 2004 21:54:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5stM7009985 for ; Tue, 24 Feb 2004 21:54:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5st9Q064915 for ; Tue, 24 Feb 2004 21:54:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P5st7V064914; Tue, 24 Feb 2004 21:54:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250554.i1P5st7V064914@xorpc.icir.org> Date: Tue, 24 Feb 2004 21:54:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node_cli.cc mld6igmp_node_cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/24 21:54:55 Modified files: xorp/mld6igmp/: mld6igmp_node_cli.cc mld6igmp_node_cli.hh Log message: Added new CLI commands "show igmp interface address" and "show mld interface address" to display information about addresses of MLD/IGMP interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 21:55:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 21:56:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5uAZK077516 for ; Tue, 24 Feb 2004 21:56:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5u5M7010038; Tue, 24 Feb 2004 21:56:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5u1IW023817; Tue, 24 Feb 2004 21:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P5tqIW023807 for ; Tue, 24 Feb 2004 21:55:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5tqM7010029 for ; Tue, 24 Feb 2004 21:55:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P5tq9Q064979 for ; Tue, 24 Feb 2004 21:55:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P5tq5o064978; Tue, 24 Feb 2004 21:55:52 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250555.i1P5tq5o064978@xorpc.icir.org> Date: Tue, 24 Feb 2004 21:55:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc pim_node_cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 21:55:52 Modified files: xorp/pim/: pim_node_cli.cc pim_node_cli.hh Log message: Added new CLI command "show pim interface address" to display information about addresses of PIM interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 22:04:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 22:05:33 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P65XZK080624 for ; Tue, 24 Feb 2004 22:05:33 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P657M7010132; Tue, 24 Feb 2004 22:05:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P651IW023972; Tue, 24 Feb 2004 22:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P64OIW023957 for ; Tue, 24 Feb 2004 22:04:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P64OM7010107 for ; Tue, 24 Feb 2004 22:04:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P64O9Q065227 for ; Tue, 24 Feb 2004 22:04:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P64OXY065226; Tue, 24 Feb 2004 22:04:24 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250604.i1P64OXY065226@xorpc.icir.org> Date: Tue, 24 Feb 2004 22:04:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_nbr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 22:04:24 Modified files: xorp/pim/: pim_nbr.hh Log message: Added new method PimNbr::secondary_addr_list() to get the list of secondary addresses per PIM neighbor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Tue Feb 24 22:10:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Feb 2004 22:11:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P6BDZK082387 for ; Tue, 24 Feb 2004 22:11:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P6B9M7010191; Tue, 24 Feb 2004 22:11:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P6B1IW024050; Tue, 24 Feb 2004 22:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P6AkIW024041 for ; Tue, 24 Feb 2004 22:10:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P6AkM7010186 for ; Tue, 24 Feb 2004 22:10:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P6Ak9Q065364 for ; Tue, 24 Feb 2004 22:10:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P6AkFM065363; Tue, 24 Feb 2004 22:10:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250610.i1P6AkFM065363@xorpc.icir.org> Date: Tue, 24 Feb 2004 22:10:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/24 22:10:46 Modified files: xorp/pim/: pim_node_cli.cc Log message: Modify the "show pim neighbors" CLI command to print the secondary addresses (if any) for each PIM neighbor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 1:45:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 01:46:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P9k9ZK065571 for ; Wed, 25 Feb 2004 01:46:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P9k5M7011976; Wed, 25 Feb 2004 01:46:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P9k1IW027889; Wed, 25 Feb 2004 01:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1P9jnIW027876 for ; Wed, 25 Feb 2004 01:45:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P9jnM7011974 for ; Wed, 25 Feb 2004 01:45:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1P9jn9Q069458 for ; Wed, 25 Feb 2004 01:45:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1P9jn74069457; Wed, 25 Feb 2004 01:45:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402250945.i1P9jn74069457@xorpc.icir.org> Date: Wed, 25 Feb 2004 1:45:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/25 01:45:49 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: A bugfix: xorp_module_id() -> module_id() Surprisingly, gcc didn't catch the following error: "if (xorp_module_id() == XORP_MODULE_MLD6IGMP)" where xorp_module_id is actually an enumerated type, and XORP_MODULE_MLD6IGMP is one of its values! _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 7:20:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 07:21:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PFLDZK097650 for ; Wed, 25 Feb 2004 07:21:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PFL5M7015332; Wed, 25 Feb 2004 07:21:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PFL1IW004810; Wed, 25 Feb 2004 07:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PFKMIW004793 for ; Wed, 25 Feb 2004 07:20:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PFKLM7015328 for ; Wed, 25 Feb 2004 07:20:21 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PFKL9Q076632 for ; Wed, 25 Feb 2004 07:20:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1PFKLtF076631; Wed, 25 Feb 2004 07:20:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402251520.i1PFKLtF076631@xorpc.icir.org> Date: Wed, 25 Feb 2004 7:20:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ path_attribute.cc route_table_cache.cc route_table_fanout.cc test_cache.reference test_decision.reference test_deletion.reference test_dump.reference test_fanout.reference ...test_filter.reference ...test_nhlookup.reference ...test_ribin.reference ...test_ribout.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/25 07:20:21 Modified files: xorp/bgp/: path_attribute.cc route_table_cache.cc route_table_fanout.cc test_cache.reference test_decision.reference test_deletion.reference test_dump.reference test_fanout.reference test_filter.reference test_nhlookup.reference test_ribin.reference test_ribout.reference Log message: A change in the formatting of printing of the path attributes caused the isolations tests that use reference files to fail. 1) Put a comment in the printing of path attribute lists to stop this happening again. 2) Patch up the reference files. 3) Some of the route tables print the name of the caller. Deal with the caller being "NULL". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 8:43:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 08:44:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGiFZK037916 for ; Wed, 25 Feb 2004 08:44:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGi3M7017493; Wed, 25 Feb 2004 08:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PGi0IW006285; Wed, 25 Feb 2004 08:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PGhaIW006252 for ; Wed, 25 Feb 2004 08:43:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGhaM7017488 for ; Wed, 25 Feb 2004 08:43:36 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGha9Q079446 for ; Wed, 25 Feb 2004 08:43:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1PGha6U079445; Wed, 25 Feb 2004 08:43:36 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402251643.i1PGha6U079445@xorpc.icir.org> Date: Wed, 25 Feb 2004 8:43:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/25 08:43:36 Modified files: xorp/bgp/: route_table_deletion.cc Log message: assert -> XLOG_ASSERT Some debugging message changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 8:44:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 08:45:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGj7ZK038203 for ; Wed, 25 Feb 2004 08:45:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGj3M7017508; Wed, 25 Feb 2004 08:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PGj1IW006312; Wed, 25 Feb 2004 08:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PGinIW006300 for ; Wed, 25 Feb 2004 08:44:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGinM7017503 for ; Wed, 25 Feb 2004 08:44:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PGin9Q079509 for ; Wed, 25 Feb 2004 08:44:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1PGinHs079508; Wed, 25 Feb 2004 08:44:49 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200402251644.i1PGinHs079508@xorpc.icir.org> Date: Wed, 25 Feb 2004 8:44:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/02/25 08:44:49 Modified files: xorp/bgp/: route_table_fanout.cc Log message: Some debugging message changes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 11:14:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 11:15:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PJFBZK079610 for ; Wed, 25 Feb 2004 11:15:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PJF5M7019290; Wed, 25 Feb 2004 11:15:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PJF1IW010609; Wed, 25 Feb 2004 11:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PJEHIW010594 for ; Wed, 25 Feb 2004 11:14:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PJEGM7019279 for ; Wed, 25 Feb 2004 11:14:16 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PJEG9Q002003 for ; Wed, 25 Feb 2004 11:14:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1PJEG4Z002002; Wed, 25 Feb 2004 11:14:16 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402251914.i1PJEG4Z002002@xorpc.icir.org> Date: Wed, 25 Feb 2004 11:14:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUGS Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/02/25 11:14:16 Added files: ./: BUGS Log message: Added toplevel BUGS file, with a few bugs (mostly in xorpsh) I found playing around with Adam's live CD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 12:03:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 12:04:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PK49ZK097243 for ; Wed, 25 Feb 2004 12:04:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PK44M7019857; Wed, 25 Feb 2004 12:04:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PK41IW012003; Wed, 25 Feb 2004 12:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PK3YIW011989 for ; Wed, 25 Feb 2004 12:03:34 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PK3XM7019851; Wed, 25 Feb 2004 12:03:33 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PK3XE9074056; Wed, 25 Feb 2004 12:03:33 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200402252003.i1PK3XE9074056@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ BUGS In-Reply-To: Your message of "Wed, 25 Feb 2004 11:14:16." <200402251914.i1PJEG4Z002002@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 25 Feb 2004 12:03:33 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: ./ | Changes by: mjh@xorpc.icir.org. 04/02/25 11:14:16 | | Added files: | ./: BUGS | | Log message: | Added toplevel BUGS file, with a few bugs (mostly in xorpsh) I found | playing around with Adam's live CD. Oh great, thanks :-) Rather than have 2 different bugs databases can we put these reports into bugzilla and having a script place the open reports into the top-level "BUGS" file. This is a bit more work up front, but it's going to be easier to keep track of in the long run. [ bugzilla should be back up today - it relies on mysql which is hosed because the user account on www has been hosed by the passwd dist out from hef ]. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 21:22:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 13:23:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PLNNZK017068 for ; Wed, 25 Feb 2004 13:23:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1PLNHM7021162; Wed, 25 Feb 2004 13:23:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PLN1IW013874; Wed, 25 Feb 2004 13:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1PLMqIW013856 for ; Wed, 25 Feb 2004 13:22:52 -0800 (PST) Received: from bells.cs.ucl.ac.uk (bells.cs.ucl.ac.uk [128.16.5.31]) by wyvern.icir.org (8.12.9p1/8.12.8) with SMTP id i1PLMnM7021158; Wed, 25 Feb 2004 13:22:50 -0800 (PST) (envelope-from M.Handley@cs.ucl.ac.uk) Received: from host217-44-204-120.range217-44.btcentralplus.com by bells.cs.ucl.ac.uk with Internet SMTP id ; Wed, 25 Feb 2004 21:22:25 +0000 From: Mark Handley To: Orion Hodson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ BUGS In-reply-to: Your message of "Wed, 25 Feb 2004 12:03:33 PST." <200402252003.i1PK3XE9074056@puma.icir.org> Date: Wed, 25 Feb 2004 21:22:21 +0000 Message-ID: <13741.1077744141@cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >Rather than have 2 different bugs databases can we put these reports into >bugzilla and having a script place the open reports into the top-level "BUGS" >file. This is a bit more work up front, but it's going to be easier to keep >track of in the long run. > >[ bugzilla should be back up today - it relies on mysql which is hosed because >the user account on www has been hosed by the passwd dist out from hef ]. I don't really mind how it's done - just that I'm concerned about losing track of bugs like these. I agree a BUGS file isn't ideal because it's only writable by committers. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 16:25:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 16:27:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0RKZK063358 for ; Wed, 25 Feb 2004 16:27:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0Q4M7023073; Wed, 25 Feb 2004 16:26:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0Q1IW018639; Wed, 25 Feb 2004 16:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0PHIW018624 for ; Wed, 25 Feb 2004 16:25:17 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0PHM7023067 for ; Wed, 25 Feb 2004 16:25:17 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0PFE9077121; Wed, 25 Feb 2004 16:25:15 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200402260025.i1Q0PFE9077121@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Mark Handley cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ BUGS In-Reply-To: Your message of "Wed, 25 Feb 2004 21:22:21 GMT." <13741.1077744141@cs.ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 25 Feb 2004 16:25:15 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | | I don't really mind how it's done - just that I'm concerned about | losing track of bugs like these. I agree a BUGS file isn't ideal | because it's only writable by committers. Bugzilla is back up and running. I've spent quite a long time with and as these are your bug reports can you please stick the bug reports in. Thinking about the BUGS file, my preference would be to have it contain a URL to xorp's bugzilla (http://www.xorp.org/bugzilla/) and perhaps be a pointer to a bug reporting guide (e.g http://www.chiark.greenend.org.uk/~sgtatham/bugs.htm l) and leaving it there for now. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 16:47:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 16:49:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0nTZK067610 for ; Wed, 25 Feb 2004 16:49:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0mDM7023253; Wed, 25 Feb 2004 16:48:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0m0IW019215; Wed, 25 Feb 2004 16:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0lCIW019190 for ; Wed, 25 Feb 2004 16:47:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0lCM7023243 for ; Wed, 25 Feb 2004 16:47:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0lC9Q009434 for ; Wed, 25 Feb 2004 16:47:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q0lCLE009433; Wed, 25 Feb 2004 16:47:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260047.i1Q0lCLE009433@xorpc.icir.org> Date: Wed, 25 Feb 2004 16:47:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/25 16:47:12 Modified files: xorp/fea/: mfea_node_cli.cc Log message: Added "show mfea6" CLI commands for IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 16:47:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 16:49:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0nWZK067625 for ; Wed, 25 Feb 2004 16:49:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0mGM7023255; Wed, 25 Feb 2004 16:48:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0m1IW019227; Wed, 25 Feb 2004 16:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q0lkIW019203 for ; Wed, 25 Feb 2004 16:47:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0lkM7023247 for ; Wed, 25 Feb 2004 16:47:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q0lk9Q009487 for ; Wed, 25 Feb 2004 16:47:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q0lkoI009486; Wed, 25 Feb 2004 16:47:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260047.i1Q0lkoI009486@xorpc.icir.org> Date: Wed, 25 Feb 2004 16:47:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/25 16:47:46 Modified files: xorp/pim/: pim_node_cli.cc Log message: Added "show pim6" CLI commands for IPv6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 17:01:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 17:03:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q13MZK070285 for ; Wed, 25 Feb 2004 17:03:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q127M7023415; Wed, 25 Feb 2004 17:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q121IW019564; Wed, 25 Feb 2004 17:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q11iIW019550 for ; Wed, 25 Feb 2004 17:01:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q11iM7023408 for ; Wed, 25 Feb 2004 17:01:44 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q11h9Q010176 for ; Wed, 25 Feb 2004 17:01:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q11h6j010175; Wed, 25 Feb 2004 17:01:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402260101.i1Q11h6j010175@xorpc.icir.org> Date: Wed, 25 Feb 2004 17:01:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packet_assembly.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/25 17:01:43 Modified files: xorp/rip/: packet_assembly.hh Log message: Fix small lIPv6 nexthop packing bug. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:55 2005 Subject: No subject Wed Feb 25 20:20:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 20:22:25 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4MPZK008553 for ; Wed, 25 Feb 2004 20:22:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4LAM7025069; Wed, 25 Feb 2004 20:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4L1IW023314; Wed, 25 Feb 2004 20:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4KEIW023298 for ; Wed, 25 Feb 2004 20:20:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4KEM7025060 for ; Wed, 25 Feb 2004 20:20:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4KE9Q014824 for ; Wed, 25 Feb 2004 20:20:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q4KExL014823; Wed, 25 Feb 2004 20:20:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260420.i1Q4KExL014823@xorpc.icir.org> Date: Wed, 25 Feb 2004 20:20:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/02/25 20:20:14 Modified files: xorp/mrt/: mrt.hh Log message: Bug fix: Handle properly inside Mrt::source_by_prefix_end() and Mrt::group_by_prefix_end() the corner case when the prefix address is same as a network mask. E.g.: 255.0.0.0/8 . The problem is rooted in the fact that INCR(255.0.0.0/8) is (0.0.0.0/8). In that case, the correct result to return is the end of the table rather than the lower-bound for 0.0.0.0/8 (e.g., somewhere in the beginning of the table). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Wed Feb 25 20:22:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 20:24:44 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4OiZK008988 for ; Wed, 25 Feb 2004 20:24:44 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4NSM7025097; Wed, 25 Feb 2004 20:23:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4N0IW023377; Wed, 25 Feb 2004 20:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4M6IW023349 for ; Wed, 25 Feb 2004 20:22:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4M6M7025081 for ; Wed, 25 Feb 2004 20:22:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4M69Q014905 for ; Wed, 25 Feb 2004 20:22:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q4M6G9014904; Wed, 25 Feb 2004 20:22:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260422.i1Q4M6G9014904@xorpc.icir.org> Date: Wed, 25 Feb 2004 20:22:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ test_mrt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/02/25 20:22:06 Modified files: xorp/mrt/: test_mrt.cc Log message: Rewrite the test program to really test the return result from various operations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Wed Feb 25 20:22:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Feb 2004 20:24:44 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4OiZK008989 for ; Wed, 25 Feb 2004 20:24:44 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4NSM7025098; Wed, 25 Feb 2004 20:23:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4N1IW023389; Wed, 25 Feb 2004 20:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q4MfIW023358 for ; Wed, 25 Feb 2004 20:22:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4MfM7025085 for ; Wed, 25 Feb 2004 20:22:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q4Mf9Q014955 for ; Wed, 25 Feb 2004 20:22:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q4Mf6e014954; Wed, 25 Feb 2004 20:22:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260422.i1Q4Mf6e014954@xorpc.icir.org> Date: Wed, 25 Feb 2004 20:22:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/02/25 20:22:41 Modified files: xorp/mrt/: TODO Log message: * Modify an old TODO entry (which is now half-done). * Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 0:12:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 00:25:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8PoZK065768 for ; Thu, 26 Feb 2004 00:25:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8LlM7026644; Thu, 26 Feb 2004 00:21:47 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8DgIW026071; Thu, 26 Feb 2004 00:13:42 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8CtIW026061 for ; Thu, 26 Feb 2004 00:12:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8CAM7026599 for ; Thu, 26 Feb 2004 00:12:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8C09Q019653 for ; Thu, 26 Feb 2004 00:12:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q8C0mD019652; Thu, 26 Feb 2004 00:12:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260812.i1Q8C0mD019652@xorpc.icir.org> Date: Thu, 26 Feb 2004 0:12:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/02/26 00:12:00 Modified files: xorp/cli/: test_cli.cc Log message: * Cleanup * Get rid of #define DO_IPV4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 0:47:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 00:48:36 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8maZK069572 for ; Thu, 26 Feb 2004 00:48:36 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8m4M7026885; Thu, 26 Feb 2004 00:48:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8m1IW026551; Thu, 26 Feb 2004 00:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8lEIW026525 for ; Thu, 26 Feb 2004 00:47:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8lEM7026868 for ; Thu, 26 Feb 2004 00:47:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8lE9Q020176 for ; Thu, 26 Feb 2004 00:47:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q8lESt020175; Thu, 26 Feb 2004 00:47:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260847.i1Q8lESt020175@xorpc.icir.org> Date: Thu, 26 Feb 2004 0:47:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_mfea.cc xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 00:47:14 Modified files: xorp/fea/: test_mfea.cc xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc Log message: * Cleanup * Get rid of #define DO_IPV4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 0:46:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 00:48:36 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8maZK069573 for ; Thu, 26 Feb 2004 00:48:36 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8mFM7026887; Thu, 26 Feb 2004 00:48:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8l1IW026508; Thu, 26 Feb 2004 00:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8kmIW026490 for ; Thu, 26 Feb 2004 00:46:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8kmM7026866 for ; Thu, 26 Feb 2004 00:46:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8km9Q020135 for ; Thu, 26 Feb 2004 00:46:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q8kmcB020134; Thu, 26 Feb 2004 00:46:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260846.i1Q8kmcB020134@xorpc.icir.org> Date: Thu, 26 Feb 2004 0:46:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/02/26 00:46:48 Modified files: xorp/cli/: test_cli.cc Log message: Add #ifdef HAVE_IPV6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 0:49:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 00:50:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8oDZK069912 for ; Thu, 26 Feb 2004 00:50:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8o4M7026902; Thu, 26 Feb 2004 00:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8o1IW026624; Thu, 26 Feb 2004 00:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8n3IW026599 for ; Thu, 26 Feb 2004 00:49:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8n3M7026894 for ; Thu, 26 Feb 2004 00:49:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8n39Q020258 for ; Thu, 26 Feb 2004 00:49:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q8n3vo020257; Thu, 26 Feb 2004 00:49:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260849.i1Q8n3vo020257@xorpc.icir.org> Date: Thu, 26 Feb 2004 0:49:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea xorp/mld6igmp/ configure_mld6igmp xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 00:49:03 Modified files: xorp/fea/: configure_mfea xorp/mld6igmp/: configure_mld6igmp xorp/pim/: configure_pim Log message: * Add optional arguments "-4" or "-6" to specify IPv4 or IPv6 mode. * Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 0:55:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 00:56:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8uEZK071097 for ; Thu, 26 Feb 2004 00:56:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8u4M7026974; Thu, 26 Feb 2004 00:56:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8u1IW026797; Thu, 26 Feb 2004 00:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1Q8tVIW026774 for ; Thu, 26 Feb 2004 00:55:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8tVM7026972 for ; Thu, 26 Feb 2004 00:55:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1Q8tV9Q020818 for ; Thu, 26 Feb 2004 00:55:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1Q8tVUA020817; Thu, 26 Feb 2004 00:55:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402260855.i1Q8tVUA020817@xorpc.icir.org> Date: Thu, 26 Feb 2004 0:55:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 00:55:31 Modified files: xorp/pim/: configure_pim Log message: Add a configuration entry for xorp8.icir.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 2:38:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 02:39:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAdKZK092285 for ; Thu, 26 Feb 2004 02:39:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAd5M7028315; Thu, 26 Feb 2004 02:39:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QAd1IW028788; Thu, 26 Feb 2004 02:39:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QAcGIW028761 for ; Thu, 26 Feb 2004 02:38:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAcGM7028305 for ; Thu, 26 Feb 2004 02:38:16 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAcG9Q025090 for ; Thu, 26 Feb 2004 02:38:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QAcGYY025089; Thu, 26 Feb 2004 02:38:16 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402261038.i1QAcGYY025089@xorpc.icir.org> Date: Thu, 26 Feb 2004 2:38:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUGS Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/02/26 02:38:16 Modified files: ./: BUGS Log message: Nove these bugs into Bugzilla _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 10:39:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 02:40:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAe8ZK092453 for ; Thu, 26 Feb 2004 02:40:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAe2M7028340; Thu, 26 Feb 2004 02:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QAe0IW028910; Thu, 26 Feb 2004 02:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QAdcIW028892 for ; Thu, 26 Feb 2004 02:39:38 -0800 (PST) Received: from aardvark.cs.ucl.ac.uk (aardvark.cs.ucl.ac.uk [128.16.11.150]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QAdbM7028331; Thu, 26 Feb 2004 02:39:38 -0800 (PST) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (localhost [127.0.0.1]) by aardvark.cs.ucl.ac.uk (8.12.9p2/8.12.8) with ESMTP id i1QAdbxo095921; Thu, 26 Feb 2004 10:39:37 GMT (envelope-from mjh@aardvark.cs.ucl.ac.uk) From: Mark Handley X-Organisation: UCL To: Orion Hodson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ BUGS In-reply-to: Your message of "Wed, 25 Feb 2004 16:25:15 PST." <200402260025.i1Q0PFE9077121@puma.icir.org> Date: Thu, 26 Feb 2004 10:39:37 +0000 Message-ID: <95920.1077791977@aardvark.cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >/-- Mark Handley wrote: >| >| I don't really mind how it's done - just that I'm concerned about >| losing track of bugs like these. I agree a BUGS file isn't ideal >| because it's only writable by committers. > >Bugzilla is back up and running. I've spent quite a long time with and as >these are your bug reports can you please stick the bug reports in. Done. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 3:28:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 03:29:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBTIZK002469 for ; Thu, 26 Feb 2004 03:29:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBT3M7028838; Thu, 26 Feb 2004 03:29:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QBT1IW029826; Thu, 26 Feb 2004 03:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QBSTIW029814 for ; Thu, 26 Feb 2004 03:28:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBSTM7028834 for ; Thu, 26 Feb 2004 03:28:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBST9Q026562 for ; Thu, 26 Feb 2004 03:28:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QBSTiI026561; Thu, 26 Feb 2004 03:28:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261128.i1QBSTiI026561@xorpc.icir.org> Date: Thu, 26 Feb 2004 3:28:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/26 03:28:28 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Modify MfeaMrouter::kernel_call_process() behavior such that if the message type is WHOLEPKT, then compute the src and dst addresses from the message's inner source and destination addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 3:30:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 03:31:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBVEZK002877 for ; Thu, 26 Feb 2004 03:31:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBV3M7028888; Thu, 26 Feb 2004 03:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QBV1IW029925; Thu, 26 Feb 2004 03:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QBUKIW029914 for ; Thu, 26 Feb 2004 03:30:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBUKM7028877 for ; Thu, 26 Feb 2004 03:30:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QBUK9Q026656 for ; Thu, 26 Feb 2004 03:30:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QBUKMV026655; Thu, 26 Feb 2004 03:30:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261130.i1QBUKMV026655@xorpc.icir.org> Date: Thu, 26 Feb 2004 3:30:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 03:30:20 Modified files: xorp/pim/: pim_proto_register.cc Log message: Modify PimVif::pim_register_send() not to look anymore in the inner source and destination addresses of the data packet to encapsulate. Instead, assume that the method's arguments (source_addr and group_addr) contain that information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 5:07:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 05:08:32 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QD8WZK021663 for ; Thu, 26 Feb 2004 05:08:32 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QD86M7029769; Thu, 26 Feb 2004 05:08:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QD81IW003692; Thu, 26 Feb 2004 05:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QD7vIW003683 for ; Thu, 26 Feb 2004 05:07:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QD7vM7029767 for ; Thu, 26 Feb 2004 05:07:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QD7v9Q028650 for ; Thu, 26 Feb 2004 05:07:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QD7vmn028649; Thu, 26 Feb 2004 05:07:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261307.i1QD7vmn028649@xorpc.icir.org> Date: Thu, 26 Feb 2004 5:07:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/26 05:07:57 Modified files: xorp/mld6igmp/: mld6_proto.cc Log message: Fix a nasty bug because of a bracket at the wrong place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 5:14:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 05:15:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDFLZK022995 for ; Thu, 26 Feb 2004 05:15:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDF3M7029827; Thu, 26 Feb 2004 05:15:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDF0IW003812; Thu, 26 Feb 2004 05:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDEKIW003794 for ; Thu, 26 Feb 2004 05:14:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDEKM7029822 for ; Thu, 26 Feb 2004 05:14:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDEK9Q028884 for ; Thu, 26 Feb 2004 05:14:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QDEKSI028883; Thu, 26 Feb 2004 05:14:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261314.i1QDEKSI028883@xorpc.icir.org> Date: Thu, 26 Feb 2004 5:14:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/26 05:14:20 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Minor formatting (for clarity). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 5:21:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 05:22:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDM8ZK024284 for ; Thu, 26 Feb 2004 05:22:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDM4M7029914; Thu, 26 Feb 2004 05:22:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDM1IW003984; Thu, 26 Feb 2004 05:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDLeIW003974 for ; Thu, 26 Feb 2004 05:21:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDLeM7029905 for ; Thu, 26 Feb 2004 05:21:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDLd9Q029177 for ; Thu, 26 Feb 2004 05:21:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QDLdob029176; Thu, 26 Feb 2004 05:21:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261321.i1QDLdob029176@xorpc.icir.org> Date: Thu, 26 Feb 2004 5:21:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea xorp/mld6igmp/ README xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 05:21:39 Modified files: xorp/fea/: README.mfea xorp/mld6igmp/: README xorp/pim/: README Log message: Add an instruction how to run each configuration script in IPv6 mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 5:52:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 05:53:22 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDrMZK030336 for ; Thu, 26 Feb 2004 05:53:22 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDrBM7030208; Thu, 26 Feb 2004 05:53:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDr1IW004480; Thu, 26 Feb 2004 05:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QDqGIW004469 for ; Thu, 26 Feb 2004 05:52:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDqGM7030194 for ; Thu, 26 Feb 2004 05:52:16 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QDqG9Q030014 for ; Thu, 26 Feb 2004 05:52:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QDqGh1030013; Thu, 26 Feb 2004 05:52:16 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402261352.i1QDqGh1030013@xorpc.icir.org> Date: Thu, 26 Feb 2004 5:52:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/02/26 05:52:16 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: quit from operational mode now causes xorpsh to deregister and exit cleanly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:56 2005 Subject: No subject Thu Feb 26 7:28:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 07:31:36 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFVaZK049313 for ; Thu, 26 Feb 2004 07:31:36 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFT6M7031155; Thu, 26 Feb 2004 07:29:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFT0IW005994; Thu, 26 Feb 2004 07:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFSNIW005977 for ; Thu, 26 Feb 2004 07:28:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFSNM7031149 for ; Thu, 26 Feb 2004 07:28:23 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFSN9Q032469 for ; Thu, 26 Feb 2004 07:28:23 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QFSNrY032468; Thu, 26 Feb 2004 07:28:23 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402261528.i1QFSNrY032468@xorpc.icir.org> Date: Thu, 26 Feb 2004 7:28:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc main_rtrmgr.cc slave_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/02/26 07:28:23 Modified files: xorp/rtrmgr/: conf_tree_node.cc main_rtrmgr.cc slave_conf_tree.cc Log message: xorpsh no longer crashes when we type "delete protocols". Unfortunately the router manager now crashes when the now valid deletion request is received from xorpsh. I guess that's progress. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 7:38:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 07:39:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFdGZK050738 for ; Thu, 26 Feb 2004 07:39:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFdDM7031258; Thu, 26 Feb 2004 07:39:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFd1IW006172; Thu, 26 Feb 2004 07:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFcmIW006162 for ; Thu, 26 Feb 2004 07:38:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFcmM7031250 for ; Thu, 26 Feb 2004 07:38:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFcm9Q032795 for ; Thu, 26 Feb 2004 07:38:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QFcmak032794; Thu, 26 Feb 2004 07:38:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261538.i1QFcmak032794@xorpc.icir.org> Date: Thu, 26 Feb 2004 7:38:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 07:38:48 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: Change PimNode::is_directly_connected() to ignore the check whether MRIB-based RPF info points toward the same interface. This is because if the address belongs to one of my virtual interfaces, then in some cases the MRIB may point toward the loopback interface (e.g., FreeBSD IPv6 Kame stack). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 7:42:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 07:43:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFh9ZK051500 for ; Thu, 26 Feb 2004 07:43:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFh2M7031312; Thu, 26 Feb 2004 07:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFh1IW006246; Thu, 26 Feb 2004 07:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QFgFIW006225 for ; Thu, 26 Feb 2004 07:42:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFgFM7031305 for ; Thu, 26 Feb 2004 07:42:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QFgF9Q032897 for ; Thu, 26 Feb 2004 07:42:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QFgFfd032896; Thu, 26 Feb 2004 07:42:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402261542.i1QFgFfd032896@xorpc.icir.org> Date: Thu, 26 Feb 2004 7:42:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 07:42:15 Modified files: xorp/pim/: pim_mre_rpf.cc Log message: Change PimMre::rpf_interface_s() such that if the RPF interface toward S is not found based on the MRIB information, then test whether S belongs to one of our virtual interfaces. The reason is because the corresponding MRIB entry may point toward the loopback interface (e.g., in case of FreeBSD IPv6 Kame stack). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 8:02:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 08:03:23 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QG3NZK055376 for ; Thu, 26 Feb 2004 08:03:23 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QG33M7031532; Thu, 26 Feb 2004 08:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QG30IW006691; Thu, 26 Feb 2004 08:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QG2oIW006678 for ; Thu, 26 Feb 2004 08:02:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QG2oM7031528 for ; Thu, 26 Feb 2004 08:02:50 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QG2o9Q033337 for ; Thu, 26 Feb 2004 08:02:50 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QG2oMW033336; Thu, 26 Feb 2004 08:02:50 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402261602.i1QG2oMW033336@xorpc.icir.org> Date: Thu, 26 Feb 2004 8:02:50 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/02/26 08:02:50 Modified files: xorp/rtrmgr/: task.cc template_commands.cc Log message: The list maintaining the order for modules to be shutdown was not being cleared out properly at the end of a commit, which could cause a crash in the next commit. Now fixed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 14:46:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 14:47:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QMlAZK048561 for ; Thu, 26 Feb 2004 14:47:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QMl6M7037080; Thu, 26 Feb 2004 14:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QMl2E5015916; Thu, 26 Feb 2004 14:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1QMkoE5015891 for ; Thu, 26 Feb 2004 14:46:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QMknM7037078 for ; Thu, 26 Feb 2004 14:46:49 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1QMkn9Q044615 for ; Thu, 26 Feb 2004 14:46:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1QMknjt044614; Thu, 26 Feb 2004 14:46:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402262246.i1QMknjt044614@xorpc.icir.org> Date: Thu, 26 Feb 2004 14:46:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/02/26 14:46:49 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: Add missing ripng.tgt to list of tgt files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 16:20:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 16:21:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0LAZK070274 for ; Thu, 26 Feb 2004 16:21:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0L5M7037968; Thu, 26 Feb 2004 16:21:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0L1E5017952; Thu, 26 Feb 2004 16:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0KIE5017932 for ; Thu, 26 Feb 2004 16:20:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0KIM7037964 for ; Thu, 26 Feb 2004 16:20:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0KI9Q059200 for ; Thu, 26 Feb 2004 16:20:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R0KIRu059199; Thu, 26 Feb 2004 16:20:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270020.i1R0KIRu059199@xorpc.icir.org> Date: Thu, 26 Feb 2004 16:20:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ rconfig_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 16:20:18 Modified files: xorp/pim/: rconfig_pim Log message: Added an optional -4 or -6 argument to specify either IPv4 or IPv6 mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 16:28:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 16:29:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0TOZK072237 for ; Thu, 26 Feb 2004 16:29:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0TGM7038064; Thu, 26 Feb 2004 16:29:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0T1E5018150; Thu, 26 Feb 2004 16:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0SnE5018128 for ; Thu, 26 Feb 2004 16:28:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0SmM7038052 for ; Thu, 26 Feb 2004 16:28:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0Sm9Q059894 for ; Thu, 26 Feb 2004 16:28:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from root@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R0Sm4E059893; Thu, 26 Feb 2004 16:28:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270028.i1R0Sm4E059893@xorpc.icir.org> Date: Thu, 26 Feb 2004 16:28:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ commitinfo Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /home/xorpc/u0/xorpcvs/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/26 16:28:48 Modified files: ./: commitinfo Log message: Add a new line at the end of file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 16:29:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 16:30:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0UAZK072455 for ; Thu, 26 Feb 2004 16:30:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0U4M7038082; Thu, 26 Feb 2004 16:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0U1E5018180; Thu, 26 Feb 2004 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0T8E5018160 for ; Thu, 26 Feb 2004 16:29:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0T8M7038058 for ; Thu, 26 Feb 2004 16:29:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0T89Q059919 for ; Thu, 26 Feb 2004 16:29:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from root@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R0T8MR059918; Thu, 26 Feb 2004 16:29:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270029.i1R0T8MR059918@xorpc.icir.org> Date: Thu, 26 Feb 2004 16:29:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ loginfo Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /home/xorpc/u0/xorpcvs/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/26 16:29:08 Modified files: ./: loginfo Log message: Remove extra new lines at the end of file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 16:29:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 16:30:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0UDZK072487 for ; Thu, 26 Feb 2004 16:30:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0U4M7038083; Thu, 26 Feb 2004 16:30:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0U2E5018192; Thu, 26 Feb 2004 16:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R0ToE5018171 for ; Thu, 26 Feb 2004 16:29:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0ToM7038075 for ; Thu, 26 Feb 2004 16:29:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R0To9Q059949 for ; Thu, 26 Feb 2004 16:29:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from root@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R0Tote059948; Thu, 26 Feb 2004 16:29:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270029.i1R0Tote059948@xorpc.icir.org> Date: Thu, 26 Feb 2004 16:29:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /home/xorpc/u0/xorpcvs/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/02/26 16:29:50 Modified files: ./: config Log message: Added XORP as a local keyword in the anonym CVS: LocalKeyword=XORP=CVSHeader _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 23:47:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 23:48:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7mLZK077769 for ; Thu, 26 Feb 2004 23:48:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7mEM7041862; Thu, 26 Feb 2004 23:48:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R7m0E5025781; Thu, 26 Feb 2004 23:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R7lpE5025770 for ; Thu, 26 Feb 2004 23:47:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7lpM7041860 for ; Thu, 26 Feb 2004 23:47:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7lo9Q070924 for ; Thu, 26 Feb 2004 23:47:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R7loHb070923; Thu, 26 Feb 2004 23:47:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270747.i1R7loHb070923@xorpc.icir.org> Date: Thu, 26 Feb 2004 23:47:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 23:47:50 Modified files: xorp/pim/: configure_pim Log message: * Added a new user-configurable variable STATIC_RPS6 to specify the IPv6 static RPs. * Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Thu Feb 26 23:52:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 Feb 2004 23:53:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7rBZK078732 for ; Thu, 26 Feb 2004 23:53:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7r6M7041926; Thu, 26 Feb 2004 23:53:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R7r0E5025857; Thu, 26 Feb 2004 23:53:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1R7qQE5025841 for ; Thu, 26 Feb 2004 23:52:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7qPM7041921 for ; Thu, 26 Feb 2004 23:52:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1R7qP9Q071259 for ; Thu, 26 Feb 2004 23:52:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1R7qPE7071258; Thu, 26 Feb 2004 23:52:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402270752.i1R7qPE7071258@xorpc.icir.org> Date: Thu, 26 Feb 2004 23:52:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/26 23:52:25 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Cleanup some of the XLOG messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 4:10:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 04:11:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCB9ZK029963 for ; Fri, 27 Feb 2004 04:11:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCB5M7044424; Fri, 27 Feb 2004 04:11:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RCB1E5029726; Fri, 27 Feb 2004 04:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RCAQE5029701 for ; Fri, 27 Feb 2004 04:10:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCAPM7044420 for ; Fri, 27 Feb 2004 04:10:25 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCAP9Q078284 for ; Fri, 27 Feb 2004 04:10:25 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RCAPqc078283; Fri, 27 Feb 2004 04:10:25 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402271210.i1RCAPqc078283@xorpc.icir.org> Date: Fri, 27 Feb 2004 4:10:25 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc cli_private.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: mjh@xorpc.icir.org. 04/02/27 04:10:25 Modified files: xorp/cli/: cli_node_net.cc cli_private.hh Log message: Slightly more useful welcome message. Ideally should probably also display the XORP version, but doesn't currently. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 4:12:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 04:13:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCDCZK030358 for ; Fri, 27 Feb 2004 04:13:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCD8M7044434; Fri, 27 Feb 2004 04:13:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RCD1E5029772; Fri, 27 Feb 2004 04:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RCCnE5029750 for ; Fri, 27 Feb 2004 04:12:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCCnM7044432 for ; Fri, 27 Feb 2004 04:12:49 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RCCn9Q078366 for ; Fri, 27 Feb 2004 04:12:49 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RCCnLt078365; Fri, 27 Feb 2004 04:12:49 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402271212.i1RCCnLt078365@xorpc.icir.org> Date: Fri, 27 Feb 2004 4:12:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp xorp/rtrmgr/ cli.cc command_tree.cc command_tree.hh conf_tree_node.cc template_tree_node.cc template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/02/27 04:12:49 Modified files: xorp/etc/templates/: bgp.tp xorp/rtrmgr/: cli.cc command_tree.cc command_tree.hh conf_tree_node.cc template_tree_node.cc template_tree_node.hh Log message: Add %help command to the template file for specifying help information associated with all the nodes in the template_tree. The short help information is displayed during command completion in xorpsh. The long help information should be displayed by the help command but this doesn't work yet. Added short help strings for most of the BGP config. Should be added to all the other template files too. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 10:32:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 10:33:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RIX9ZK006519 for ; Fri, 27 Feb 2004 10:33:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RIX4M7049419; Fri, 27 Feb 2004 10:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RIX1E5008891; Fri, 27 Feb 2004 10:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RIWkE5008878 for ; Fri, 27 Feb 2004 10:32:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RIWjM7049415 for ; Fri, 27 Feb 2004 10:32:45 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RIWj9Q087380 for ; Fri, 27 Feb 2004 10:32:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RIWjsD087379; Fri, 27 Feb 2004 10:32:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402271832.i1RIWjsD087379@xorpc.icir.org> Date: Fri, 27 Feb 2004 10:32:45 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/02/27 10:32:45 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: A start at making the help command in xorpsh do something useful. Part of the command line completion for help now works, but no useful help is returned. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 13:21:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 13:22:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RLMCZK051904 for ; Fri, 27 Feb 2004 13:22:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RLM5M7051473; Fri, 27 Feb 2004 13:22:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RLM1E5012853; Fri, 27 Feb 2004 13:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RLL3E5012827 for ; Fri, 27 Feb 2004 13:21:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RLL3M7051460 for ; Fri, 27 Feb 2004 13:21:03 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RLL39Q090831 for ; Fri, 27 Feb 2004 13:21:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RLL3dG090830; Fri, 27 Feb 2004 13:21:03 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200402272121.i1RLL3dG090830@xorpc.icir.org> Date: Fri, 27 Feb 2004 13:21:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/02/27 13:21:03 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: Some of the basic help provided using the "help" command now works. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 14:05:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 14:06:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM6EZK068682 for ; Fri, 27 Feb 2004 14:06:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM65M7051972; Fri, 27 Feb 2004 14:06:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RM61E5014048; Fri, 27 Feb 2004 14:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RM51E5014021 for ; Fri, 27 Feb 2004 14:05:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM50M7051944 for ; Fri, 27 Feb 2004 14:05:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM509Q093186 for ; Fri, 27 Feb 2004 14:05:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RM50BV093185; Fri, 27 Feb 2004 14:05:00 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402272205.i1RM50BV093185@xorpc.icir.org> Date: Fri, 27 Feb 2004 14:05:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ auth.hh auth.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/27 14:05:00 Modified files: xorp/rip/: auth.hh auth.cc Log message: Add static methods to authentication classes to get algorithm name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 14:07:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 14:08:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM8DZK069165 for ; Fri, 27 Feb 2004 14:08:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM84M7052005; Fri, 27 Feb 2004 14:08:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RM81E5014109; Fri, 27 Feb 2004 14:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RM7rE5014100 for ; Fri, 27 Feb 2004 14:07:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM7rM7052003 for ; Fri, 27 Feb 2004 14:07:53 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RM7r9Q093297 for ; Fri, 27 Feb 2004 14:07:53 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RM7qPc093296; Fri, 27 Feb 2004 14:07:52 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402272207.i1RM7qPc093296@xorpc.icir.org> Date: Fri, 27 Feb 2004 14:07:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ test_request.cc port.hh port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/02/27 14:07:52 Modified files: xorp/rip/: test_request.cc port.hh port.cc Log message: o Add "enabled" accessor and modifier to port. Add method to mark routes from port as unreachable if port set to "not enabled" or io system generates an event indicating it's "not enabled". o Add passive accessor and modifier that means port should be passive, ie accept routes but not announce them. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 14:14:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 14:15:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RMFAZK071382 for ; Fri, 27 Feb 2004 14:15:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RMF3M7052084; Fri, 27 Feb 2004 14:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RMF12t014300; Fri, 27 Feb 2004 14:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1RMEE2t014280 for ; Fri, 27 Feb 2004 14:14:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RMEEM7052069 for ; Fri, 27 Feb 2004 14:14:14 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1RMEE9Q093534 for ; Fri, 27 Feb 2004 14:14:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1RMEESU093533; Fri, 27 Feb 2004 14:14:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200402272214.i1RMEESU093533@xorpc.icir.org> Date: Fri, 27 Feb 2004 14:14:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp xorp/rip/ xorp_rip_common.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/02/27 14:14:14 Modified files: xorp/etc/templates/: rip.tp ripng.tp xorp/rip/: xorp_rip_common.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: Add passive option to RIP and RIPng templates and XRLs. Add authentication options to RIP template and XRLs. Implement passive option, authentication options, and enabled option in RIP and RIPng XRL handlers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 16:52:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 16:53:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S0rCZK006733 for ; Fri, 27 Feb 2004 16:53:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S0r7M7053773; Fri, 27 Feb 2004 16:53:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S0r22t017572; Fri, 27 Feb 2004 16:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S0qQ2t017559 for ; Fri, 27 Feb 2004 16:52:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S0qPM7053764 for ; Fri, 27 Feb 2004 16:52:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S0qP9Q097105 for ; Fri, 27 Feb 2004 16:52:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1S0qPuR097104; Fri, 27 Feb 2004 16:52:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402280052.i1S0qPuR097104@xorpc.icir.org> Date: Fri, 27 Feb 2004 16:52:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/27 16:52:25 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: IPv6-related bug fix: Don't set the outgoing interface index if we are sending an unicast packet to a non-link local unicast address. Otherwise, the sending may fail with EHOSTUNREACH error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Fri Feb 27 20:38:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 Feb 2004 20:39:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S4dCZK054682 for ; Fri, 27 Feb 2004 20:39:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S4d7M7055710; Fri, 27 Feb 2004 20:39:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S4d12t021662; Fri, 27 Feb 2004 20:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S4cv2t021653 for ; Fri, 27 Feb 2004 20:38:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S4cuM7055707 for ; Fri, 27 Feb 2004 20:38:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S4cu9Q002162 for ; Fri, 27 Feb 2004 20:38:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1S4cuoG002161; Fri, 27 Feb 2004 20:38:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402280438.i1S4cuoG002161@xorpc.icir.org> Date: Fri, 27 Feb 2004 20:38:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc xorp/fea/ test_rawsock4.cc xorp/rtrmgr/ xorpsh_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/02/27 20:38:56 Modified files: xorp/cli/: cli_node_net.cc xorp/fea/: test_rawsock4.cc xorp/rtrmgr/: xorpsh_main.cc Log message: gethostname() related nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:57 2005 Subject: No subject Sat Feb 28 1:41:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 01:42:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9gAZK019103 for ; Sat, 28 Feb 2004 01:42:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9g6M7058189; Sat, 28 Feb 2004 01:42:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S9g12t026047; Sat, 28 Feb 2004 01:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S9fo2t026035 for ; Sat, 28 Feb 2004 01:41:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9foM7058181 for ; Sat, 28 Feb 2004 01:41:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9fo9Q015355 for ; Sat, 28 Feb 2004 01:41:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1S9fn3j015354; Sat, 28 Feb 2004 01:41:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402280941.i1S9fn3j015354@xorpc.icir.org> Date: Sat, 28 Feb 2004 1:41:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrib_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/28 01:41:49 Modified files: xorp/pim/: pim_mrib_table.cc Log message: Modify PimMribTable::add_pending_insert() behavior: If the MRIB entry is for one of my own addresses, then we check the next-hop interface. If it points toward the loopback interface (e.g., in case of KAME IPv6 stack), then we overwrite it with the network interface this address belongs to. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sat Feb 28 1:42:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 01:43:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9hBZK019296 for ; Sat, 28 Feb 2004 01:43:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9h3M7058202; Sat, 28 Feb 2004 01:43:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S9h12t026072; Sat, 28 Feb 2004 01:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1S9gJ2t026058 for ; Sat, 28 Feb 2004 01:42:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9gIM7058192 for ; Sat, 28 Feb 2004 01:42:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1S9gI9Q015408 for ; Sat, 28 Feb 2004 01:42:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1S9gI2H015407; Sat, 28 Feb 2004 01:42:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402280942.i1S9gI2H015407@xorpc.icir.org> Date: Sat, 28 Feb 2004 1:42:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrib_table.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/28 01:42:18 Modified files: xorp/pim/: pim_mrib_table.hh Log message: Kdoc-ify. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sat Feb 28 2:43:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 02:44:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAi9ZK032186 for ; Sat, 28 Feb 2004 02:44:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAi3M7059061; Sat, 28 Feb 2004 02:44:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SAi12t026899; Sat, 28 Feb 2004 02:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SAh62t026888 for ; Sat, 28 Feb 2004 02:43:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAh6M7059049 for ; Sat, 28 Feb 2004 02:43:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAh59Q017902 for ; Sat, 28 Feb 2004 02:43:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1SAh5rb017901; Sat, 28 Feb 2004 02:43:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402281043.i1SAh5rb017901@xorpc.icir.org> Date: Sat, 28 Feb 2004 2:43:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/28 02:43:05 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: * Modify PimNode::is_directly_connected() to return false if we test against a vif that is not UP. * Remove the MRIB-related comments in the is_directly_connected() computation. The reason is because it gets tricky to perform MRIB-based additional check for link-local IPv6 addresses, hence the whole idea of using the MRIB as well is dropped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sat Feb 28 2:47:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 02:48:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAm8ZK033002 for ; Sat, 28 Feb 2004 02:48:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAm2M7059109; Sat, 28 Feb 2004 02:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SAm02t026952; Sat, 28 Feb 2004 02:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SAlJ2t026938 for ; Sat, 28 Feb 2004 02:47:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAlJM7059107 for ; Sat, 28 Feb 2004 02:47:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SAlJ9Q018049 for ; Sat, 28 Feb 2004 02:47:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1SAlJXH018048; Sat, 28 Feb 2004 02:47:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402281047.i1SAlJXH018048@xorpc.icir.org> Date: Sat, 28 Feb 2004 2:47:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/28 02:47:19 Modified files: xorp/pim/: pim_mre_rpf.cc Log message: Reverse the previous commit which uses a work-around in case the MRIB toward S is not found (e.g., if S is our address, and if the MRIB points toward a loopback interface in case of FreeBSD IPv6 KAME stack). The reason for this is because now the MRIB table inside PIM-SM is adjusted for directly-connected MRIB entries such that the next-hop interface toward a local address is the interface with that address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sat Feb 28 3:01:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 03:02:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SB2FZK035784 for ; Sat, 28 Feb 2004 03:02:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SB2AM7059248; Sat, 28 Feb 2004 03:02:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SB202t027170; Sat, 28 Feb 2004 03:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SB132t027131 for ; Sat, 28 Feb 2004 03:01:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SB12M7059240 for ; Sat, 28 Feb 2004 03:01:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SB129Q018878 for ; Sat, 28 Feb 2004 03:01:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1SB12tp018877; Sat, 28 Feb 2004 03:01:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402281101.i1SB12tp018877@xorpc.icir.org> Date: Sat, 28 Feb 2004 3:01:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ rconfig_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/28 03:01:02 Modified files: xorp/pim/: rconfig_pim Log message: Catch all unrecognized options and print an error before exiting. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sat Feb 28 13:14:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 Feb 2004 13:15:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SLFCZK061466 for ; Sat, 28 Feb 2004 13:15:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SLF4M7068616; Sat, 28 Feb 2004 13:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SLF12t007705; Sat, 28 Feb 2004 13:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1SLEn2t007695 for ; Sat, 28 Feb 2004 13:14:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SLEnM7068609 for ; Sat, 28 Feb 2004 13:14:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1SLEn9Q033235 for ; Sat, 28 Feb 2004 13:14:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1SLEnEB033234; Sat, 28 Feb 2004 13:14:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402282114.i1SLEnEB033234@xorpc.icir.org> Date: Sat, 28 Feb 2004 13:14:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ test_mrib.cc xorp/cli/ cli_command.cc cli_command.hh cli_node.cc cli_node_internal_commands.cc cli_node_net.cc test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/02/28 13:14:49 Modified files: xorp/mrt/: test_mrib.cc xorp/cli/: cli_command.cc cli_command.hh cli_node.cc cli_node_internal_commands.cc cli_node_net.cc test_cli.cc Log message: Trim function and method declarations: foo(void) -> foo() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sun Feb 29 13:35:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 29 Feb 2004 13:36:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TLaBZK047505 for ; Sun, 29 Feb 2004 13:36:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TLa4M7081884; Sun, 29 Feb 2004 13:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TLa12t028961; Sun, 29 Feb 2004 13:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TLZW2t028941 for ; Sun, 29 Feb 2004 13:35:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TLZWM7081882 for ; Sun, 29 Feb 2004 13:35:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TLZW9Q060629 for ; Sun, 29 Feb 2004 13:35:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1TLZWCZ060628; Sun, 29 Feb 2004 13:35:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402292135.i1TLZWCZ060628@xorpc.icir.org> Date: Sun, 29 Feb 2004 13:35:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/29 13:35:32 Modified files: xorp/fea/: mfea_vif.cc Log message: * If an unit is UP or PENDING_UP, then method start() returns success. * If an unit is DOWN, then method stop() returns success. * Bugfix in MfeaVif::stop() so it works for pim_register vif as well. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sun Feb 29 14:57:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 29 Feb 2004 14:58:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMw8ZK064000 for ; Sun, 29 Feb 2004 14:58:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMw4M7082546; Sun, 29 Feb 2004 14:58:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMw12t000014; Sun, 29 Feb 2004 14:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMv22t029995 for ; Sun, 29 Feb 2004 14:57:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMv2M7082538 for ; Sun, 29 Feb 2004 14:57:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMv29Q061677 for ; Sun, 29 Feb 2004 14:57:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1TMv270061676; Sun, 29 Feb 2004 14:57:02 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402292257.i1TMv270061676@xorpc.icir.org> Date: Sun, 29 Feb 2004 14:57:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc mfea_node.cc mfea_node_cli.cc mfea_proto_comm.cc xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/02/29 14:57:02 Modified files: xorp/fea/: mfea_mrouter.cc mfea_node.cc mfea_node_cli.cc mfea_proto_comm.cc xrl_mfea_vif_manager.cc Log message: * If an unit is UP or PENDING_UP, then method start() returns success. * If an unit is DOWN, then method stop() returns success. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sun Feb 29 14:58:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 29 Feb 2004 14:59:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMx9ZK064209 for ; Sun, 29 Feb 2004 14:59:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMx4M7082559; Sun, 29 Feb 2004 14:59:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMx12t000049; Sun, 29 Feb 2004 14:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMwf2t000035 for ; Sun, 29 Feb 2004 14:58:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMwfM7082554 for ; Sun, 29 Feb 2004 14:58:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMwe9Q061750 for ; Sun, 29 Feb 2004 14:58:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1TMwerI061749; Sun, 29 Feb 2004 14:58:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402292258.i1TMwerI061749@xorpc.icir.org> Date: Sun, 29 Feb 2004 14:58:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/02/29 14:58:40 Modified files: xorp/cli/: cli_node.cc Log message: * If an unit is UP or PENDING_UP, then method start() returns success. * If an unit is DOWN, then method stop() returns success. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sun Feb 29 14:58:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 29 Feb 2004 14:59:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMxAZK064224 for ; Sun, 29 Feb 2004 14:59:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMx4M7082561; Sun, 29 Feb 2004 14:59:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMx12t000063; Sun, 29 Feb 2004 14:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMw12t000015 for ; Sun, 29 Feb 2004 14:58:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMw1M7082544 for ; Sun, 29 Feb 2004 14:58:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMw19Q061711 for ; Sun, 29 Feb 2004 14:58:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1TMw15b061710; Sun, 29 Feb 2004 14:58:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402292258.i1TMw15b061710@xorpc.icir.org> Date: Sun, 29 Feb 2004 14:58:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node_cli.cc mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/02/29 14:58:01 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node_cli.cc mld6igmp_vif.cc Log message: * If an unit is UP or PENDING_UP, then method start() returns success. * If an unit is DOWN, then method stop() returns success. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Sun Feb 29 14:59:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 29 Feb 2004 15:00:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TN07ZK064419 for ; Sun, 29 Feb 2004 15:00:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TN02M7082590; Sun, 29 Feb 2004 15:00:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TN012t000097; Sun, 29 Feb 2004 15:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i1TMxn2t000081 for ; Sun, 29 Feb 2004 14:59:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMxnM7082578 for ; Sun, 29 Feb 2004 14:59:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i1TMxm9Q061789 for ; Sun, 29 Feb 2004 14:59:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i1TMxmlU061788; Sun, 29 Feb 2004 14:59:48 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200402292259.i1TMxmlU061788@xorpc.icir.org> Date: Sun, 29 Feb 2004 14:59:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_bsr.cc pim_node.cc pim_node_cli.cc pim_rp.cc pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/02/29 14:59:48 Modified files: xorp/pim/: pim_bsr.cc pim_node.cc pim_node_cli.cc pim_rp.cc pim_vif.cc Log message: * If an unit is UP or PENDING_UP, then method start() returns success. * If an unit is DOWN, then method stop() returns success. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Mon Mar 1 1:17:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 01:18:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i219IKZK086050 for ; Mon, 1 Mar 2004 01:18:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i219IEM7088224; Mon, 1 Mar 2004 01:18:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i219I12t009926; Mon, 1 Mar 2004 01:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i219HJ2t009906 for ; Mon, 1 Mar 2004 01:17:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i219HJM7088217 for ; Mon, 1 Mar 2004 01:17:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i219HI9Q079108 for ; Mon, 1 Mar 2004 01:17:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i219HIpo079107; Mon, 1 Mar 2004 01:17:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403010917.i219HIpo079107@xorpc.icir.org> Date: Mon, 1 Mar 2004 1:17:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_vif.cc pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 01:17:18 Modified files: xorp/pim/: pim_node.cc pim_vif.cc pim_vif.hh Log message: If there is an error when attempting to start/stop a vif, propagate the error message up to the caller. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:58 2005 Subject: No subject Mon Mar 1 2:01:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 02:02:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A27ZK095118 for ; Mon, 1 Mar 2004 02:02:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A23M7088939; Mon, 1 Mar 2004 02:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A212t010860; Mon, 1 Mar 2004 02:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A1f2t010843 for ; Mon, 1 Mar 2004 02:01:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A1fM7088917 for ; Mon, 1 Mar 2004 02:01:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A1f9Q081026 for ; Mon, 1 Mar 2004 02:01:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21A1fvi081025; Mon, 1 Mar 2004 02:01:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403011001.i21A1fvi081025@xorpc.icir.org> Date: Mon, 1 Mar 2004 2:01:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/01 02:01:41 Modified files: xorp/fea/: mfea_vif.cc Log message: * If there is an error when attempting to start/stop a vif, propagate the error message up to the caller. * When stopping a vif don't test whether it is of the right type (e.g., multicast-capable, etc), because this check is done when starting the vif. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 2:02:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 02:03:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A39ZK095366 for ; Mon, 1 Mar 2004 02:03:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A33M7088962; Mon, 1 Mar 2004 02:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A312t010908; Mon, 1 Mar 2004 02:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A2g2t010897 for ; Mon, 1 Mar 2004 02:02:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A2gM7088958 for ; Mon, 1 Mar 2004 02:02:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A2g9Q081135 for ; Mon, 1 Mar 2004 02:02:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21A2feM081134; Mon, 1 Mar 2004 02:02:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403011002.i21A2feM081134@xorpc.icir.org> Date: Mon, 1 Mar 2004 2:02:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_vif.cc mld6igmp_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/01 02:02:41 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_vif.cc mld6igmp_vif.hh Log message: If there is an error when attempting to start/stop a vif, propagate the error message up to the caller. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 2:01:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 02:03:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A3BZK095405 for ; Mon, 1 Mar 2004 02:03:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A34M7088964; Mon, 1 Mar 2004 02:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A322t010920; Mon, 1 Mar 2004 02:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A202t010853 for ; Mon, 1 Mar 2004 02:02:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A20M7088936 for ; Mon, 1 Mar 2004 02:02:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A1x9Q081064 for ; Mon, 1 Mar 2004 02:01:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21A1xan081063; Mon, 1 Mar 2004 02:01:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403011001.i21A1xan081063@xorpc.icir.org> Date: Mon, 1 Mar 2004 2:01:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/01 02:01:59 Modified files: xorp/fea/: mfea_node.cc mfea_vif.hh Log message: If there is an error when attempting to start/stop a vif, propagate the error message up to the caller. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 2:05:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 02:06:17 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A6HZK096184 for ; Mon, 1 Mar 2004 02:06:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A6BM7089292; Mon, 1 Mar 2004 02:06:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A612t010969; Mon, 1 Mar 2004 02:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A5M2t010951 for ; Mon, 1 Mar 2004 02:05:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A5MM7089287 for ; Mon, 1 Mar 2004 02:05:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A5M9Q081270 for ; Mon, 1 Mar 2004 02:05:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21A5MCX081269; Mon, 1 Mar 2004 02:05:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403011005.i21A5MCX081269@xorpc.icir.org> Date: Mon, 1 Mar 2004 2:05:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 02:05:22 Modified files: xorp/pim/: pim_vif.cc Log message: Combine the statements for checking the vif type. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 2:07:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 02:08:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A89ZK096712 for ; Mon, 1 Mar 2004 02:08:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A83M7089318; Mon, 1 Mar 2004 02:08:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A812t011009; Mon, 1 Mar 2004 02:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21A7K2t010991 for ; Mon, 1 Mar 2004 02:07:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A7KM7089312 for ; Mon, 1 Mar 2004 02:07:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21A7K9Q081391 for ; Mon, 1 Mar 2004 02:07:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21A7K7M081390; Mon, 1 Mar 2004 02:07:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403011007.i21A7K7M081390@xorpc.icir.org> Date: Mon, 1 Mar 2004 2:07:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/01 02:07:20 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: Add a comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 11:52:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 11:53:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21JrEZK017859 for ; Mon, 1 Mar 2004 11:53:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Jr8M7097395; Mon, 1 Mar 2004 11:53:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Jr12t025829; Mon, 1 Mar 2004 11:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Jqe2t025813 for ; Mon, 1 Mar 2004 11:52:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21JqeM7097389 for ; Mon, 1 Mar 2004 11:52:40 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Jqe9Q005729 for ; Mon, 1 Mar 2004 11:52:40 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21Jqe5C005728; Mon, 1 Mar 2004 11:52:40 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403011952.i21Jqe5C005728@xorpc.icir.org> Date: Mon, 1 Mar 2004 11:52:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/01 11:52:40 Modified files: xorp/rip/: TODO Log message: Expand and sort into pre-1.0 and post-1.0 release items. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 11:53:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 11:54:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Js8ZK018093 for ; Mon, 1 Mar 2004 11:54:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Js3M7097402; Mon, 1 Mar 2004 11:54:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Js02t025856; Mon, 1 Mar 2004 11:54:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Jrx2t025847 for ; Mon, 1 Mar 2004 11:53:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21JrxM7097400 for ; Mon, 1 Mar 2004 11:53:59 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Jrx9Q005803 for ; Mon, 1 Mar 2004 11:53:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21JrxN4005802; Mon, 1 Mar 2004 11:53:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403011953.i21JrxN4005802@xorpc.icir.org> Date: Mon, 1 Mar 2004 11:53:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp xorp/rip/ TODO port.cc port.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/01 11:53:59 Modified files: xorp/etc/templates/: rip.tp ripng.tp xorp/rip/: TODO port.cc port.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: Export RIP policy options via XRLs and update templates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 14:35:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 14:36:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MaAZK064933 for ; Mon, 1 Mar 2004 14:36:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Ma3M7099002; Mon, 1 Mar 2004 14:36:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Ma12t029700; Mon, 1 Mar 2004 14:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21MZ52t029676 for ; Mon, 1 Mar 2004 14:35:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MZ4M7098980 for ; Mon, 1 Mar 2004 14:35:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MZ49Q009663 for ; Mon, 1 Mar 2004 14:35:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21MZ4gc009662; Mon, 1 Mar 2004 14:35:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403012235.i21MZ4gc009662@xorpc.icir.org> Date: Mon, 1 Mar 2004 14:35:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 14:35:04 Modified files: xorp/pim/: configure_pim Log message: Rename configuration variable STATIC_RPS to STATIC_RPS4 (for consistency with the recenty added STATIC_RPS6). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 14:47:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 14:48:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MmBZK067918 for ; Mon, 1 Mar 2004 14:48:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21Mm5M7099110; Mon, 1 Mar 2004 14:48:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21Mm02t000011; Mon, 1 Mar 2004 14:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i21MlJ2t029989 for ; Mon, 1 Mar 2004 14:47:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MlJM7099105 for ; Mon, 1 Mar 2004 14:47:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i21MlI9Q010071 for ; Mon, 1 Mar 2004 14:47:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i21MlIPB010070; Mon, 1 Mar 2004 14:47:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403012247.i21MlIPB010070@xorpc.icir.org> Date: Mon, 1 Mar 2004 14:47:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 14:47:18 Modified files: xorp/pim/: README Log message: * Rename STATIC_RPS to STATIC_RPS4 * Add description for STATIC_RPS6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:29:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:30:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220UAZK093904 for ; Mon, 1 Mar 2004 16:30:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220U4M7000232; Mon, 1 Mar 2004 16:30:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220U02t002291; Mon, 1 Mar 2004 16:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220Tl2t002278 for ; Mon, 1 Mar 2004 16:29:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220TlM7000227 for ; Mon, 1 Mar 2004 16:29:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220Tl9Q014211 for ; Mon, 1 Mar 2004 16:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220TltQ014210; Mon, 1 Mar 2004 16:29:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020029.i220TltQ014210@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:29:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/01 16:29:47 Modified files: xorp/xrl/interfaces/: pim.xif pim_xif.cc pim_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh Log message: Added new PIM-SM XRLs: add_alternative_subnet[4,6] delete_alternative_subnet[4,6] remove_all_anternative_subnets Those XRLs are used to make incoming traffic with a non-local source address appear as it is coming from a local subnet. Note: add alternative subnets with extreme care, only if you know what you are really doing! _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:32:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:33:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220XTZK094812 for ; Mon, 1 Mar 2004 16:33:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220XPM7000291; Mon, 1 Mar 2004 16:33:25 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220X12t002350; Mon, 1 Mar 2004 16:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220WX2t002337 for ; Mon, 1 Mar 2004 16:32:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220WXM7000275 for ; Mon, 1 Mar 2004 16:32:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220WX9Q014364 for ; Mon, 1 Mar 2004 16:32:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220WXxd014363; Mon, 1 Mar 2004 16:32:33 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020032.i220WXxd014363@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:32:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README configure_pim pim_config.cc pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 16:32:33 Modified files: xorp/pim/: README configure_pim pim_config.cc pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh Log message: Added support for adding alternative subnets on a PIM interface. An alternative subnet is used to make incoming traffic with a non-local source address appear as it is coming from a local subnet. Note: add alternative subnets with extreme care, only if you know what you are really doing! _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:46:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:47:24 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220lOZK098682 for ; Mon, 1 Mar 2004 16:47:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220lKM7000465; Mon, 1 Mar 2004 16:47:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220l12t002735; Mon, 1 Mar 2004 16:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220kZ2t002720 for ; Mon, 1 Mar 2004 16:46:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220kZM7000457 for ; Mon, 1 Mar 2004 16:46:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220kZ9Q016628 for ; Mon, 1 Mar 2004 16:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220kZb2016627; Mon, 1 Mar 2004 16:46:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020046.i220kZb2016627@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:46:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 16:46:35 Modified files: xorp/pim/: README Log message: Added extra info about "alternative subnet" configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:47:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:48:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220mDZK098894 for ; Mon, 1 Mar 2004 16:48:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220m6M7000480; Mon, 1 Mar 2004 16:48:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220m12t002773; Mon, 1 Mar 2004 16:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220li2t002760 for ; Mon, 1 Mar 2004 16:47:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220liM7000474 for ; Mon, 1 Mar 2004 16:47:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220li9Q016826 for ; Mon, 1 Mar 2004 16:47:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220liwR016825; Mon, 1 Mar 2004 16:47:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020047.i220liwR016825@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:47:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 16:47:44 Modified files: xorp/pim/: TODO Log message: Remove a TODO entry that is now DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:47:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:48:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220mDZK098909 for ; Mon, 1 Mar 2004 16:48:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220m6M7000481; Mon, 1 Mar 2004 16:48:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220m32t002797; Mon, 1 Mar 2004 16:48:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220l42t002742 for ; Mon, 1 Mar 2004 16:47:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220l4M7000462 for ; Mon, 1 Mar 2004 16:47:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220l49Q016702 for ; Mon, 1 Mar 2004 16:47:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220l4Fp016701; Mon, 1 Mar 2004 16:47:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403020047.i220l4Fp016701@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:47:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/01 16:47:04 Modified files: xorp/rip/: port_manager.hh Log message: Add const_ports accessor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:47:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:48:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220mEZK098928 for ; Mon, 1 Mar 2004 16:48:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220m6M7000482; Mon, 1 Mar 2004 16:48:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220m22t002785; Mon, 1 Mar 2004 16:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220l12t002732 for ; Mon, 1 Mar 2004 16:47:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220l1M7000460 for ; Mon, 1 Mar 2004 16:47:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220l19Q016690 for ; Mon, 1 Mar 2004 16:47:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220l1Is016689; Mon, 1 Mar 2004 16:47:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020047.i220l1Is016689@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:47:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/01 16:47:01 Modified files: ./: RELEASE_NOTES Log message: Added a release note about "alternative subnets" information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 16:53:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 16:54:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i220sKZK000764 for ; Mon, 1 Mar 2004 16:54:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220sGM7000558; Mon, 1 Mar 2004 16:54:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220s02t002946; Mon, 1 Mar 2004 16:54:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i220r62t002930 for ; Mon, 1 Mar 2004 16:53:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i220r6M7000552 for ; Mon, 1 Mar 2004 16:53:06 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i220r59Q017697 for ; Mon, 1 Mar 2004 16:53:05 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i220r5ss017696; Mon, 1 Mar 2004 16:53:05 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403020053.i220r5ss017696@xorpc.icir.org> Date: Mon, 1 Mar 2004 16:53:05 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/01 16:53:05 Modified files: xorp/rip/: TODO xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: Add Xrl accessors to get all known peers and peers associated with a RIP interface / vif / address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 20:06:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 20:07:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2247KZK050444 for ; Mon, 1 Mar 2004 20:07:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2247GM7002428; Mon, 1 Mar 2004 20:07:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i224712t006581; Mon, 1 Mar 2004 20:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2246R2t006563 for ; Mon, 1 Mar 2004 20:06:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2246RM7002420 for ; Mon, 1 Mar 2004 20:06:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2246R9Q027568 for ; Mon, 1 Mar 2004 20:06:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2246Qgs027567; Mon, 1 Mar 2004 20:06:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020406.i2246Qgs027567@xorpc.icir.org> Date: Mon, 1 Mar 2004 20:06:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node_cli.cc xorp/mld6igmp/ mld6igmp_node_cli.cc xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/01 20:06:26 Modified files: xorp/fea/: mfea_node_cli.cc xorp/mld6igmp/: mld6igmp_node_cli.cc xorp/pim/: pim_node_cli.cc Log message: Cleanup the CLI output format so now it is a bit more readable in case of IPv6. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 20:14:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 20:18:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i224IoZK052680 for ; Mon, 1 Mar 2004 20:18:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i224IjM7002526; Mon, 1 Mar 2004 20:18:45 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i224F02t006711; Mon, 1 Mar 2004 20:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i224EA2t006694 for ; Mon, 1 Mar 2004 20:14:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i224E9M7002487 for ; Mon, 1 Mar 2004 20:14:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i224E99Q028090 for ; Mon, 1 Mar 2004 20:14:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i224E9Bc028089; Mon, 1 Mar 2004 20:14:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020414.i224E9Bc028089@xorpc.icir.org> Date: Mon, 1 Mar 2004 20:14:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/01 20:14:09 Modified files: xorp/mld6igmp/: mld6igmp_node_cli.cc Log message: CLI output format buffix _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Mon Mar 1 21:27:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Mar 2004 21:28:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i225SVZK066173 for ; Mon, 1 Mar 2004 21:28:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i225SQM7003187; Mon, 1 Mar 2004 21:28:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i225S12t008226; Mon, 1 Mar 2004 21:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i225RK2t008202 for ; Mon, 1 Mar 2004 21:27:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i225RKM7003178 for ; Mon, 1 Mar 2004 21:27:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i225RK9Q030308 for ; Mon, 1 Mar 2004 21:27:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i225RKWU030307; Mon, 1 Mar 2004 21:27:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403020527.i225RKWU030307@xorpc.icir.org> Date: Mon, 1 Mar 2004 21:27:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/01 21:27:20 Modified files: xorp/cli/: test_cli.cc Log message: Added test command "print_wide" to print wide lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Tue Mar 2 9:14:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 09:15:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HFEZK009833 for ; Tue, 2 Mar 2004 09:15:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HF4M7011828; Tue, 2 Mar 2004 09:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22HF12t023755; Tue, 2 Mar 2004 09:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22HEV2t023730 for ; Tue, 2 Mar 2004 09:14:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HEUM7011818 for ; Tue, 2 Mar 2004 09:14:30 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HEU9Q059372 for ; Tue, 2 Mar 2004 09:14:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22HEUNY059371; Tue, 2 Mar 2004 09:14:30 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403021714.i22HEUNY059371@xorpc.icir.org> Date: Tue, 2 Mar 2004 9:14:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/03/02 09:14:30 Modified files: xorp/libxorp/: ref_trie.hh Log message: Typo in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:12:59 2005 Subject: No subject Tue Mar 2 9:37:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 09:38:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Hc8ZK033308 for ; Tue, 2 Mar 2004 09:38:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Hc3M7012096; Tue, 2 Mar 2004 09:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22Hc12t024345; Tue, 2 Mar 2004 09:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22HbM2t024323 for ; Tue, 2 Mar 2004 09:37:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HbLM7012092 for ; Tue, 2 Mar 2004 09:37:21 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22HbL9Q060501 for ; Tue, 2 Mar 2004 09:37:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22HbLnj060500; Tue, 2 Mar 2004 09:37:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403021737.i22HbLnj060500@xorpc.icir.org> Date: Tue, 2 Mar 2004 9:37:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_ref_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/03/02 09:37:21 Modified files: xorp/libxorp/: test_ref_trie.cc Log message: Minor nit. Post and pre increments were reversed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 10:02:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 10:03:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22I37ZK040993 for ; Tue, 2 Mar 2004 10:03:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22I33M7012432; Tue, 2 Mar 2004 10:03:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22I312t024946; Tue, 2 Mar 2004 10:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22I2Z2t024924 for ; Tue, 2 Mar 2004 10:02:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22I2ZM7012423 for ; Tue, 2 Mar 2004 10:02:35 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22I2Z9Q061830 for ; Tue, 2 Mar 2004 10:02:35 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22I2ZYd061829; Tue, 2 Mar 2004 10:02:35 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403021802.i22I2ZYd061829@xorpc.icir.org> Date: Tue, 2 Mar 2004 10:02:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO output_table.cc output_updates.cc port.cc port.hh port_vars.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/02 10:02:35 Modified files: xorp/rip/: TODO output_table.cc output_updates.cc port.cc port.hh port_vars.hh Log message: Ensure all port counters are incremented - there were a couple of omissions. Add counters for unsolicited response packets sent and non rip request packets received. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 11:46:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 11:47:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JlDZK066395 for ; Tue, 2 Mar 2004 11:47:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Jl6M7013561; Tue, 2 Mar 2004 11:47:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22Jl02t027606; Tue, 2 Mar 2004 11:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22Jk72t027591 for ; Tue, 2 Mar 2004 11:46:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Jk7M7013559 for ; Tue, 2 Mar 2004 11:46:07 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Jk69Q065849 for ; Tue, 2 Mar 2004 11:46:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22Jk675065848; Tue, 2 Mar 2004 11:46:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403021946.i22Jk675065848@xorpc.icir.org> Date: Tue, 2 Mar 2004 11:46:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/02 11:46:06 Modified files: xorp/rip/: TODO Log message: Minor expansion. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 11:48:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 11:49:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JnAZK066946 for ; Tue, 2 Mar 2004 11:49:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Jn4M7013578; Tue, 2 Mar 2004 11:49:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22Jn12t027671; Tue, 2 Mar 2004 11:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22JmN2t027637 for ; Tue, 2 Mar 2004 11:48:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JmMM7013574 for ; Tue, 2 Mar 2004 11:48:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JmM9Q066037 for ; Tue, 2 Mar 2004 11:48:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22JmMWZ066036; Tue, 2 Mar 2004 11:48:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403021948.i22JmMWZ066036@xorpc.icir.org> Date: Tue, 2 Mar 2004 11:48:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_table.cc peer.hh port.hh port.cc port_vars.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/02 11:48:22 Modified files: xorp/rip/: output_table.cc peer.hh port.hh port.cc port_vars.hh Log message: Break "bad packets" counters into "authentication failures" and "bad packets" Count non-RIP updates sent. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 11:49:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 11:50:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JoAZK067209 for ; Tue, 2 Mar 2004 11:50:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22Jo4M7013601; Tue, 2 Mar 2004 11:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22Jo02t027714; Tue, 2 Mar 2004 11:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22JnU2t027690 for ; Tue, 2 Mar 2004 11:49:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JnUM7013590 for ; Tue, 2 Mar 2004 11:49:30 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22JnU9Q066167 for ; Tue, 2 Mar 2004 11:49:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22JnU0K066166; Tue, 2 Mar 2004 11:49:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403021949.i22JnU0K066166@xorpc.icir.org> Date: Tue, 2 Mar 2004 11:49:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/02 11:49:30 Modified files: xorp/rip/: xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: Export RIP port counters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 14:11:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 14:12:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i22MCAZK001796 for ; Tue, 2 Mar 2004 14:12:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22MC5M7015247; Tue, 2 Mar 2004 14:12:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22MC12t002081; Tue, 2 Mar 2004 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i22MBL2t002056 for ; Tue, 2 Mar 2004 14:11:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i22MBLM7015235 for ; Tue, 2 Mar 2004 14:11:21 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i22MBK9Q074623 for ; Tue, 2 Mar 2004 14:11:20 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i22MBKLI074622; Tue, 2 Mar 2004 14:11:20 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403022211.i22MBKLI074622@xorpc.icir.org> Date: Tue, 2 Mar 2004 14:11:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_service.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/02 14:11:20 Modified files: xorp/libxorp/: test_service.cc Log message: Fix compiler about uninitialized variables on unknown version of gcc. Reported by: A.Greenhalgh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 17:19:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 17:20:20 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i231KKZK047578 for ; Tue, 2 Mar 2004 17:20:20 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231KCM7017475; Tue, 2 Mar 2004 17:20:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231K1SY007229; Tue, 2 Mar 2004 17:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231JQSY007209 for ; Tue, 2 Mar 2004 17:19:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231JPM7017451 for ; Tue, 2 Mar 2004 17:19:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i231JP9Q081987 for ; Tue, 2 Mar 2004 17:19:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i231JPRr081986; Tue, 2 Mar 2004 17:19:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030119.i231JPRr081986@xorpc.icir.org> Date: Tue, 2 Mar 2004 17:19:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/02 17:19:25 Modified files: xorp/cli/: test_cli.cc Log message: Print the line number at the end of each line for "print_wide" test command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 17:21:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 17:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i231N1ZK048221 for ; Tue, 2 Mar 2004 17:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231MtM7017510; Tue, 2 Mar 2004 17:22:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231M1SY007296; Tue, 2 Mar 2004 17:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231L6SY007268 for ; Tue, 2 Mar 2004 17:21:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231L6M7017488 for ; Tue, 2 Mar 2004 17:21:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i231L69Q082083 for ; Tue, 2 Mar 2004 17:21:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i231L6s4082082; Tue, 2 Mar 2004 17:21:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030121.i231L6s4082082@xorpc.icir.org> Date: Tue, 2 Mar 2004 17:21:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/02 17:21:06 Modified files: xorp/cli/: cli_client.cc cli_client.hh Log message: Fix the CLI long output paging such that now it can handle long lines as well (i.e., lines that are longer than the width of the CLI output terminal). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 17:21:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 17:23:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i231N3ZK048274 for ; Tue, 2 Mar 2004 17:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231MuM7017512; Tue, 2 Mar 2004 17:22:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231M2SY007308; Tue, 2 Mar 2004 17:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231LWSY007284 for ; Tue, 2 Mar 2004 17:21:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231LWM7017490 for ; Tue, 2 Mar 2004 17:21:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i231LW9Q082140 for ; Tue, 2 Mar 2004 17:21:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i231LWGs082139; Tue, 2 Mar 2004 17:21:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030121.i231LWGs082139@xorpc.icir.org> Date: Tue, 2 Mar 2004 17:21:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/02 17:21:32 Modified files: xorp/cli/: TODO Log message: Remove a TODO entry that is now DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:00 2005 Subject: No subject Tue Mar 2 17:24:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 17:25:26 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i231PQZK048856 for ; Tue, 2 Mar 2004 17:25:26 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231PLM7017559; Tue, 2 Mar 2004 17:25:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231P1SY007400; Tue, 2 Mar 2004 17:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i231OUSY007373 for ; Tue, 2 Mar 2004 17:24:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i231OTM7017530 for ; Tue, 2 Mar 2004 17:24:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i231OT9Q082310 for ; Tue, 2 Mar 2004 17:24:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i231OTfi082309; Tue, 2 Mar 2004 17:24:29 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030124.i231OTfi082309@xorpc.icir.org> Date: Tue, 2 Mar 2004 17:24:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/02 17:24:29 Modified files: ./: RELEASE_NOTES Log message: Added a release note for CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Tue Mar 2 18:24:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 18:25:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i232P9ZK064789 for ; Tue, 2 Mar 2004 18:25:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i232P4M7018240; Tue, 2 Mar 2004 18:25:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i232P1SY008522; Tue, 2 Mar 2004 18:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i232OHSY008502 for ; Tue, 2 Mar 2004 18:24:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i232OEM7018230 for ; Tue, 2 Mar 2004 18:24:14 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i232OE9Q085583 for ; Tue, 2 Mar 2004 18:24:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i232OEl0085582; Tue, 2 Mar 2004 18:24:14 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403030224.i232OEl0085582@xorpc.icir.org> Date: Tue, 2 Mar 2004 18:24:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_dump.cc test_main.cc test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/02 18:24:14 Modified files: xorp/bgp/: test_dump.cc test_main.cc test_ribin.cc Log message: Two tests added. 1) DumpCreate - verifies that calling suspend on the dump table only free's it once. 2) RibInDump - shows that adding a route to the BGP trie while it is being iterated over can be problematic. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Tue Mar 2 19:22:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 19:23:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i233NBZK077600 for ; Tue, 2 Mar 2004 19:23:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i233N4M7018793; Tue, 2 Mar 2004 19:23:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i233N0SY009582; Tue, 2 Mar 2004 19:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i233MlSY009571 for ; Tue, 2 Mar 2004 19:22:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i233MkM7018788 for ; Tue, 2 Mar 2004 19:22:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i233Mk9Q088298 for ; Tue, 2 Mar 2004 19:22:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i233MkkO088297; Tue, 2 Mar 2004 19:22:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030322.i233MkkO088297@xorpc.icir.org> Date: Tue, 2 Mar 2004 19:22:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/02 19:22:46 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Tue Mar 2 19:32:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 19:33:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i233X9ZK079949 for ; Tue, 2 Mar 2004 19:33:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i233X4M7018889; Tue, 2 Mar 2004 19:33:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i233X0SY009756; Tue, 2 Mar 2004 19:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i233WBSY009741 for ; Tue, 2 Mar 2004 19:32:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i233WBM7018886 for ; Tue, 2 Mar 2004 19:32:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i233WB9Q088734 for ; Tue, 2 Mar 2004 19:32:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i233WBQs088733; Tue, 2 Mar 2004 19:32:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403030332.i233WBQs088733@xorpc.icir.org> Date: Tue, 2 Mar 2004 19:32:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/02 19:32:11 Modified files: xorp/pim/: pim_mfc.cc Log message: Modify PimMfc::recompute_iif_olist_mfc() such that the new olist immediately excludes the iif rather than relying on the underlying machinery to exclude it. Thus, the effective old and the new olist are propery evaluated if they are same. The side effect of this fix is that we don't prematurely remove a PimMfc entry in the DR that has iif=oif when it tries to switch to the SPT. Previously, if we removed the old PimMfc because of the olist mismatch, then this will trigger a forced removal of the (S,G) entry (i.e., we will stop the data being received on the SPT). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Tue Mar 2 20:00:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 20:01:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2341GZK086966 for ; Tue, 2 Mar 2004 20:01:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2341CM7019159; Tue, 2 Mar 2004 20:01:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23411SY010323; Tue, 2 Mar 2004 20:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2340qSY010311 for ; Tue, 2 Mar 2004 20:00:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2340qM7019154 for ; Tue, 2 Mar 2004 20:00:52 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2340q9Q091336 for ; Tue, 2 Mar 2004 20:00:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2340qJn091333; Tue, 2 Mar 2004 20:00:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403030400.i2340qJn091333@xorpc.icir.org> Date: Tue, 2 Mar 2004 20:00:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/02 20:00:52 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh Log message: Add a str() method and some additional debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Tue Mar 2 20:02:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Mar 2004 20:03:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23438ZK087463 for ; Tue, 2 Mar 2004 20:03:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23434M7019207; Tue, 2 Mar 2004 20:03:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23430SY010402; Tue, 2 Mar 2004 20:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2342PSY010382 for ; Tue, 2 Mar 2004 20:02:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2342PM7019197 for ; Tue, 2 Mar 2004 20:02:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2342P9Q091471 for ; Tue, 2 Mar 2004 20:02:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2342Phh091470; Tue, 2 Mar 2004 20:02:25 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403030402.i2342Phh091470@xorpc.icir.org> Date: Tue, 2 Mar 2004 20:02:25 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/02 20:02:25 Modified files: xorp/bgp/: route_table_ribin.cc Log message: Add some debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Wed Mar 3 3:15:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 03:16:12 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23BGCZK097710 for ; Wed, 3 Mar 2004 03:16:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23BG4M7023957; Wed, 3 Mar 2004 03:16:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23BG0SY018622; Wed, 3 Mar 2004 03:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23BFVSY018604 for ; Wed, 3 Mar 2004 03:15:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23BFVM7023949 for ; Wed, 3 Mar 2004 03:15:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23BFV9Q009133 for ; Wed, 3 Mar 2004 03:15:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23BFVg5009132; Wed, 3 Mar 2004 03:15:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403031115.i23BFVg5009132@xorpc.icir.org> Date: Wed, 3 Mar 2004 3:15:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUGS Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/03 03:15:30 Modified files: ./: BUGS Log message: Added an URL to the "How to Report Bugs Effectively" guidelines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Wed Mar 3 9:45:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 09:46:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23HkFZK042925 for ; Wed, 3 Mar 2004 09:46:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23Hk5M7029577; Wed, 3 Mar 2004 09:46:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23Hk2SY028384; Wed, 3 Mar 2004 09:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23HjpSY028373 for ; Wed, 3 Mar 2004 09:45:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23HjpM7029573 for ; Wed, 3 Mar 2004 09:45:51 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23Hjp9Q026699 for ; Wed, 3 Mar 2004 09:45:51 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23HjpjX026698; Wed, 3 Mar 2004 09:45:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403031745.i23HjpjX026698@xorpc.icir.org> Date: Wed, 3 Mar 2004 9:45:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/lookup/ Changes by: hodson@xorpc.icir.org. 04/03/03 09:45:51 other/lookup Update of /usr/local/www/data/cvs/other/lookup In directory xorpc.icir.org:/tmp/cvs-serv26674 Log Message: Import lookup code. Status: Vendor Tag: xorp Release Tags: alpha_0_0 N other/lookup/Makefile.am N other/lookup/Makefile.in N other/lookup/README N other/lookup/aclocal.m4 N other/lookup/bootstrap N other/lookup/config.h.in N other/lookup/configure N other/lookup/configure.in N other/lookup/stamp-h.in N other/lookup/config/compiler_flags.m4 N other/lookup/config/config.guess N other/lookup/config/config.sub N other/lookup/config/depcomp N other/lookup/config/install-sh N other/lookup/config/missing N other/lookup/config/mkinstalldirs N other/lookup/data/README N other/lookup/data/rib.20011026.1648.PREFIXES N other/lookup/data/rib.20011029.0830.PREFIXES N other/lookup/data/rib.20040105.1848.PREFIXES N other/lookup/data-scripts/README N other/lookup/data-scripts/get-prefixes N other/lookup/data-scripts/zebra-dump-parser.pl N other/lookup/src/.cvsignore N other/lookup/src/Makefile.am N other/lookup/src/Makefile.in N other/lookup/src/lookup_linear.hh N other/lookup/src/lookup_model.hh N other/lookup/src/test_lookup.cc N other/lookup/src/lookup_kary2.hh N other/lookup/src/lookup_kary_compressed.hh N other/lookup/src/lookup_brutus.hh N other/lookup/src/lookup_prefix_table.hh N other/lookup/src/lookup_xorp_trie.hh N other/lookup/src/lookup_kary.hh No conflicts created by this import _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Wed Mar 3 10:34:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 10:35:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23IZ8ZK060893 for ; Wed, 3 Mar 2004 10:35:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23IZ3M7030191; Wed, 3 Mar 2004 10:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23IZ1SY029866; Wed, 3 Mar 2004 10:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23IYNSY029830 for ; Wed, 3 Mar 2004 10:34:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23IYMM7030180 for ; Wed, 3 Mar 2004 10:34:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23IYL9Q028327 for ; Wed, 3 Mar 2004 10:34:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23IYLpp028326; Wed, 3 Mar 2004 10:34:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403031834.i23IYLpp028326@xorpc.icir.org> Date: Wed, 3 Mar 2004 10:34:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 10:34:21 Modified files: xorp/pim/: README Log message: * Added a note for enabling IP forwarding before running PIM-SM * Added a note that an enabled vif must have a valid domain-wide reachable address _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Wed Mar 3 13:16:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 13:17:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LHAZK006598 for ; Wed, 3 Mar 2004 13:17:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LH3M7032339; Wed, 3 Mar 2004 13:17:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LH0SY004002; Wed, 3 Mar 2004 13:17:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LGBSY003968 for ; Wed, 3 Mar 2004 13:16:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LGAM7032327 for ; Wed, 3 Mar 2004 13:16:10 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LGA9Q034606 for ; Wed, 3 Mar 2004 13:16:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23LGAxg034605; Wed, 3 Mar 2004 13:16:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403032116.i23LGAxg034605@xorpc.icir.org> Date: Wed, 3 Mar 2004 13:16:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.hh port.cc port_vars.hh peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/03 13:16:10 Modified files: xorp/rip/: port.hh port.cc port_vars.hh peer.hh Log message: Extend number of counters in Peer. Sync increments of port and peer counters. Add peer_has_address unary function class to peer.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:01 2005 Subject: No subject Wed Mar 3 13:16:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 13:17:13 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LHDZK006629 for ; Wed, 3 Mar 2004 13:17:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LH6M7032344; Wed, 3 Mar 2004 13:17:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LH4SY004017; Wed, 3 Mar 2004 13:17:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LGcSY003984 for ; Wed, 3 Mar 2004 13:16:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LGcM7032330 for ; Wed, 3 Mar 2004 13:16:38 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LGc9Q034649 for ; Wed, 3 Mar 2004 13:16:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23LGcB0034648; Wed, 3 Mar 2004 13:16:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403032116.i23LGcB0034648@xorpc.icir.org> Date: Wed, 3 Mar 2004 13:16:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/03 13:16:38 Modified files: xorp/rip/: TODO Log message: Add entry that keeps coming and going from my mind :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 13:17:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 13:18:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LIAZK006854 for ; Wed, 3 Mar 2004 13:18:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LI3M7032361; Wed, 3 Mar 2004 13:18:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LI1SY004056; Wed, 3 Mar 2004 13:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23LHgSY004040 for ; Wed, 3 Mar 2004 13:17:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LHfM7032357 for ; Wed, 3 Mar 2004 13:17:41 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23LHf9Q034738 for ; Wed, 3 Mar 2004 13:17:41 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23LHfnj034737; Wed, 3 Mar 2004 13:17:41 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403032117.i23LHfnj034737@xorpc.icir.org> Date: Wed, 3 Mar 2004 13:17:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/03 13:17:41 Modified files: xorp/rip/: xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: Add get_peer_counters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 14:20:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 14:21:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23MLEZK022354 for ; Wed, 3 Mar 2004 14:21:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23ML3M7033124; Wed, 3 Mar 2004 14:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23ML1SY005637; Wed, 3 Mar 2004 14:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23MKFSY005616 for ; Wed, 3 Mar 2004 14:20:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23MKEM7033119 for ; Wed, 3 Mar 2004 14:20:14 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23MKE9Q036308 for ; Wed, 3 Mar 2004 14:20:14 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23MKE4J036307; Wed, 3 Mar 2004 14:20:14 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403032220.i23MKE4J036307@xorpc.icir.org> Date: Wed, 3 Mar 2004 14:20:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/03 14:20:14 Modified files: xorp/rip/: port.cc Log message: De-crinkle. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 15:22:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 15:23:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i23NN8ZK040321 for ; Wed, 3 Mar 2004 15:23:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23NN3M7033821; Wed, 3 Mar 2004 15:23:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23NN1SY007052; Wed, 3 Mar 2004 15:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i23NMHSY007031 for ; Wed, 3 Mar 2004 15:22:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i23NMGM7033815 for ; Wed, 3 Mar 2004 15:22:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i23NMG9Q041205 for ; Wed, 3 Mar 2004 15:22:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i23NMG9h041204; Wed, 3 Mar 2004 15:22:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403032322.i23NMG9h041204@xorpc.icir.org> Date: Wed, 3 Mar 2004 15:22:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timeval.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/03 15:22:16 Modified files: xorp/libxorp/: timeval.hh Log message: Add secs() and usecs() methods as synonyms for sec() and usec(). Fix formatting of string representation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:07:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:08:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2408FZK051235 for ; Wed, 3 Mar 2004 16:08:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2408AM7034340; Wed, 3 Mar 2004 16:08:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24080SY008095; Wed, 3 Mar 2004 16:08:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2407GSY008075 for ; Wed, 3 Mar 2004 16:07:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2407GM7034329 for ; Wed, 3 Mar 2004 16:07:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2407G9Q047929 for ; Wed, 3 Mar 2004 16:07:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2407GV8047928; Wed, 3 Mar 2004 16:07:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040007.i2407GV8047928@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:07:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:07:16 Modified files: ./: README Log message: * Update the status of MLD * Remove MLD from the "shor-term plan" list, because it is already done. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:10:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:11:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i240B8ZK051971 for ; Wed, 3 Mar 2004 16:11:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240B3M7034398; Wed, 3 Mar 2004 16:11:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240B1SY008200; Wed, 3 Mar 2004 16:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240AYSY008167 for ; Wed, 3 Mar 2004 16:10:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240AYM7034395 for ; Wed, 3 Mar 2004 16:10:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i240AY9Q048270 for ; Wed, 3 Mar 2004 16:10:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i240AYk8048269; Wed, 3 Mar 2004 16:10:34 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040010.i240AYk8048269@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:10:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:10:34 Modified files: xorp/mld6igmp/: README Log message: * Add info about enabling IP forwarding * Add info that each enabled interface must have a valid link-local address (in case of IPv6) or just a valid address (in case of IPv4). * Update CLI info * Remove obsolete text that says that MLD is not tested _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:11:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:12:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i240C9ZK052220 for ; Wed, 3 Mar 2004 16:12:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240C4M7034421; Wed, 3 Mar 2004 16:12:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240C1SY008230; Wed, 3 Mar 2004 16:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240BGSY008209 for ; Wed, 3 Mar 2004 16:11:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240BGM7034402 for ; Wed, 3 Mar 2004 16:11:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i240BG9Q048352 for ; Wed, 3 Mar 2004 16:11:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i240BF3N048351; Wed, 3 Mar 2004 16:11:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040011.i240BF3N048351@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:11:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:11:15 Modified files: xorp/pim/: README Log message: * Add info about enabling IP forwarding * Update CLI info * Remove obsolete text that says that IPv6 is not tested _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:09:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:15:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i240FAZK052949 for ; Wed, 3 Mar 2004 16:15:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240F1M7034459; Wed, 3 Mar 2004 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240A1SY008147; Wed, 3 Mar 2004 16:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24096SY008125 for ; Wed, 3 Mar 2004 16:09:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24095M7034354 for ; Wed, 3 Mar 2004 16:09:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i240959Q048115 for ; Wed, 3 Mar 2004 16:09:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24095L3048114; Wed, 3 Mar 2004 16:09:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040009.i24095L3048114@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:09:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:09:05 Modified files: xorp/fea/: README.mfea Log message: * Add info about enabling IP forwarding * Update CLI info * Remove obsolete text that says that IPv6 is not tested _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:14:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:15:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i240FIZK053015 for ; Wed, 3 Mar 2004 16:15:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240FCM7034485; Wed, 3 Mar 2004 16:15:12 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240F0SY008338; Wed, 3 Mar 2004 16:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240EKSY008304 for ; Wed, 3 Mar 2004 16:14:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240EKM7034444 for ; Wed, 3 Mar 2004 16:14:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i240EK9Q048541 for ; Wed, 3 Mar 2004 16:14:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i240EKiU048540; Wed, 3 Mar 2004 16:14:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040014.i240EKiU048540@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:14:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:14:20 Modified files: xorp/mld6igmp/: mld6_proto.cc Log message: [Reverse-back an earlier temporary change] Strenghten the source address check: if the MLD message is Listener Query or Listener Report or Listener Done, then the source address must be a link-local address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:02 2005 Subject: No subject Wed Mar 3 16:16:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 16:17:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i240HBZK053485 for ; Wed, 3 Mar 2004 16:17:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240H7M7034503; Wed, 3 Mar 2004 16:17:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240H1SY008411; Wed, 3 Mar 2004 16:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i240G6SY008379 for ; Wed, 3 Mar 2004 16:16:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i240G6M7034494 for ; Wed, 3 Mar 2004 16:16:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i240G69Q048698 for ; Wed, 3 Mar 2004 16:16:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i240G6U0048697; Wed, 3 Mar 2004 16:16:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040016.i240G6U0048697@xorpc.icir.org> Date: Wed, 3 Mar 2004 16:16:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/03 16:16:06 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: Assign the domain-wide address to the primary address only in case of IGMP. I.e., in case of MLD allow only a link-local address to be the primary address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 17:39:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 17:41:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i241f0ZK083422 for ; Wed, 3 Mar 2004 17:41:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241esM7035390; Wed, 3 Mar 2004 17:40:54 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241e1SY010293; Wed, 3 Mar 2004 17:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241dsSY010284 for ; Wed, 3 Mar 2004 17:39:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241dsM7035359 for ; Wed, 3 Mar 2004 17:39:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i241dr9Q059286 for ; Wed, 3 Mar 2004 17:39:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i241dr1p059285; Wed, 3 Mar 2004 17:39:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040139.i241dr1p059285@xorpc.icir.org> Date: Wed, 3 Mar 2004 17:39:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 17:39:53 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc Log message: * Added a new method PimMre::compute_is_directly_connected_s() that considers the RPF interface toward S to compute whether the source is directly connected. * Use the above method inside PimMre::recompute_is_directly_connected_sg() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 17:41:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 17:42:40 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i241geZK083854 for ; Wed, 3 Mar 2004 17:42:40 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241gYM7035404; Wed, 3 Mar 2004 17:42:34 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241g1SY010350; Wed, 3 Mar 2004 17:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241fcSY010336 for ; Wed, 3 Mar 2004 17:41:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241fcM7035393 for ; Wed, 3 Mar 2004 17:41:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i241fc9Q059398 for ; Wed, 3 Mar 2004 17:41:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i241fcer059397; Wed, 3 Mar 2004 17:41:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040141.i241fcer059397@xorpc.icir.org> Date: Wed, 3 Mar 2004 17:41:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 17:41:38 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Use the incoming vif to compute whether the source address is directly connected. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 17:42:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 17:43:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i241hEZK084017 for ; Wed, 3 Mar 2004 17:43:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241h9M7035411; Wed, 3 Mar 2004 17:43:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241h1SY010385; Wed, 3 Mar 2004 17:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241ggSY010372 for ; Wed, 3 Mar 2004 17:42:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241ggM7035406 for ; Wed, 3 Mar 2004 17:42:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i241gg9Q059481 for ; Wed, 3 Mar 2004 17:42:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i241ggVc059480; Wed, 3 Mar 2004 17:42:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040142.i241ggVc059480@xorpc.icir.org> Date: Wed, 3 Mar 2004 17:42:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 17:42:42 Modified files: xorp/pim/: pim_mrt.cc Log message: Use PimMre::compute_is_directly_connected_s() to compute whether the source is directly connected inside PimMrt::pim_mre_find() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 17:46:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 17:48:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i241mIZK085247 for ; Wed, 3 Mar 2004 17:48:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241mDM7035478; Wed, 3 Mar 2004 17:48:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241l0SY010509; Wed, 3 Mar 2004 17:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i241kcSY010494 for ; Wed, 3 Mar 2004 17:46:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i241kcM7035460 for ; Wed, 3 Mar 2004 17:46:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i241kc9Q059780 for ; Wed, 3 Mar 2004 17:46:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i241kcx1059779; Wed, 3 Mar 2004 17:46:38 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040146.i241kcx1059779@xorpc.icir.org> Date: Wed, 3 Mar 2004 17:46:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 17:46:38 Modified files: xorp/pim/: pim_node.hh pim_node.cc Log message: Get rid of method PimNode::is_directly_connected(addr) that computes whether an address is directly connected to any of my vifs. Instead, keep only the version PimNode::is_directly_connected(pim_addr, addr) which considers only a given vif. The reason is because searching for a directly-connected address across all vifs can be a source for an error in case of IPv6 where the same link-local address may be seen on more than one interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 18:35:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 18:36:18 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i242aIZK011493 for ; Wed, 3 Mar 2004 18:36:18 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i242aDM7036022; Wed, 3 Mar 2004 18:36:13 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i242a0SY011528; Wed, 3 Mar 2004 18:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i242ZrSY011517 for ; Wed, 3 Mar 2004 18:35:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i242ZqM7036015 for ; Wed, 3 Mar 2004 18:35:52 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i242Zq9Q063259 for ; Wed, 3 Mar 2004 18:35:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i242ZqNS063258; Wed, 3 Mar 2004 18:35:52 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040235.i242ZqNS063258@xorpc.icir.org> Date: Wed, 3 Mar 2004 18:35:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_ref_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/03/03 18:35:52 Modified files: xorp/libxorp/: test_ref_trie.cc Log message: Experimenting with modifying a trie while iterating through it. Code currently commented out. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 19:01:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:02:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2432GZK022010 for ; Wed, 3 Mar 2004 19:02:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2432AM7036261; Wed, 3 Mar 2004 19:02:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24321SY011998; Wed, 3 Mar 2004 19:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2431USY011984 for ; Wed, 3 Mar 2004 19:01:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2431UM7036252 for ; Wed, 3 Mar 2004 19:01:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2431U9Q064390 for ; Wed, 3 Mar 2004 19:01:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2431ULb064389; Wed, 3 Mar 2004 19:01:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040301.i2431ULb064389@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:01:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:01:30 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: Replace "vif_find_by_addr(src) != NULL" with the more appropriate "is_my_addr(src)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:03 2005 Subject: No subject Wed Mar 3 19:04:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:05:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2435BZK022825 for ; Wed, 3 Mar 2004 19:05:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24356M7036308; Wed, 3 Mar 2004 19:05:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24351SY012082; Wed, 3 Mar 2004 19:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2434CSY012056 for ; Wed, 3 Mar 2004 19:04:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2434CM7036280 for ; Wed, 3 Mar 2004 19:04:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2434C9Q064596 for ; Wed, 3 Mar 2004 19:04:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2434Ckk064595; Wed, 3 Mar 2004 19:04:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040304.i2434Ckk064595@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:04:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:04:12 Modified files: xorp/pim/: pim_mre_register.cc Log message: Replace vif_find_same_subnet_pr_p2p(src) with vif_find_by_vif_index(rpf_interface_s()). The reason is because the first solution may fail if there are more than one neighbor nodes with the same link-local address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:04:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:05:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2435JZK022868 for ; Wed, 3 Mar 2004 19:05:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2435FM7036314; Wed, 3 Mar 2004 19:05:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24352SY012094; Wed, 3 Mar 2004 19:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2434vSY012070 for ; Wed, 3 Mar 2004 19:04:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2434vM7036284 for ; Wed, 3 Mar 2004 19:04:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2434v9Q064677 for ; Wed, 3 Mar 2004 19:04:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2434urj064676; Wed, 3 Mar 2004 19:04:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040304.i2434urj064676@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:04:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrt_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:04:56 Modified files: xorp/pim/: pim_mrt_mfc.cc Log message: Replace vif_find_same_subnet_pr_p2p(src) with vif_find_by_vif_index(vif_index). The reason is because the first solution may fail if there are more than one neighbor nodes with the same link-local address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:05:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:06:42 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2436gZK023254 for ; Wed, 3 Mar 2004 19:06:42 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2436cM7036332; Wed, 3 Mar 2004 19:06:38 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24361SY012121; Wed, 3 Mar 2004 19:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2435aSY012110 for ; Wed, 3 Mar 2004 19:05:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2435aM7036320 for ; Wed, 3 Mar 2004 19:05:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2435a9Q064757 for ; Wed, 3 Mar 2004 19:05:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2435a4G064756; Wed, 3 Mar 2004 19:05:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040305.i2435a4G064756@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:05:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:05:36 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: Replace "vif_find_by_addr(src) != NULL" with the more appropriate "is_my_addr(src)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:06:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:07:10 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2437AZK023389 for ; Wed, 3 Mar 2004 19:07:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24375M7036334; Wed, 3 Mar 2004 19:07:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24371SY012160; Wed, 3 Mar 2004 19:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2436ISY012140 for ; Wed, 3 Mar 2004 19:06:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2436IM7036326 for ; Wed, 3 Mar 2004 19:06:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2436I9Q064847 for ; Wed, 3 Mar 2004 19:06:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2436IZN064846; Wed, 3 Mar 2004 19:06:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040306.i2436IZN064846@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:06:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:06:18 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:06:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:07:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2437BZK023410 for ; Wed, 3 Mar 2004 19:07:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24376M7036336; Wed, 3 Mar 2004 19:07:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24371SY012173; Wed, 3 Mar 2004 19:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24361SY012122 for ; Wed, 3 Mar 2004 19:06:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24361M7036322 for ; Wed, 3 Mar 2004 19:06:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243609Q064799 for ; Wed, 3 Mar 2004 19:06:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24360YA064798; Wed, 3 Mar 2004 19:06:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040306.i24360YA064798@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:06:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:06:00 Modified files: xorp/pim/: pim_vif.cc Log message: Replace "vif_find_by_addr(src) != NULL" with the more appropriate "is_my_addr(src)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:02:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:08:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24389ZK023908 for ; Wed, 3 Mar 2004 19:08:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24385M7036353; Wed, 3 Mar 2004 19:08:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24331SY012034; Wed, 3 Mar 2004 19:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24329SY012007 for ; Wed, 3 Mar 2004 19:02:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24329M7036258 for ; Wed, 3 Mar 2004 19:02:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243299Q064477 for ; Wed, 3 Mar 2004 19:02:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24329r2064476; Wed, 3 Mar 2004 19:02:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040302.i24329r2064476@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:02:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ igmp_proto.cc mld6_proto.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:02:09 Modified files: xorp/mld6igmp/: igmp_proto.cc mld6_proto.cc Log message: Replace "vif_find_by_addr(src) != NULL" with the more appropriate "is_my_addr(src)" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:00:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:08:50 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2438oZK024150 for ; Wed, 3 Mar 2004 19:08:50 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2438kM7036359; Wed, 3 Mar 2004 19:08:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24311SY011968; Wed, 3 Mar 2004 19:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24305SY011936 for ; Wed, 3 Mar 2004 19:00:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24305M7036217 for ; Wed, 3 Mar 2004 19:00:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243059Q064293 for ; Wed, 3 Mar 2004 19:00:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243050d064292; Wed, 3 Mar 2004 19:00:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040300.i243050d064292@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:00:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:00:04 Modified files: xorp/libproto/: proto_node.hh Log message: Remove method ProtoNode::vif_find_same_subnet(const IPvXNet&), because it is not used, and because searching for a vif by a subnet address can be a source for an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:21:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:22:19 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243MJZK030263 for ; Wed, 3 Mar 2004 19:22:19 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243MFM7036501; Wed, 3 Mar 2004 19:22:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243M0SY012411; Wed, 3 Mar 2004 19:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243LvSY012402 for ; Wed, 3 Mar 2004 19:21:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243LvM7036491 for ; Wed, 3 Mar 2004 19:21:57 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243Lv9Q066567 for ; Wed, 3 Mar 2004 19:21:57 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243LvxT066566; Wed, 3 Mar 2004 19:21:57 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040321.i243LvxT066566@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:21:57 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:21:57 Modified files: xorp/bgp/: test_main.cc Log message: Add a function to compare the reference output files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:22:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:23:14 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243NEZK030741 for ; Wed, 3 Mar 2004 19:23:14 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243NAM7036512; Wed, 3 Mar 2004 19:23:10 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243N1SY012430; Wed, 3 Mar 2004 19:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243MwSY012421 for ; Wed, 3 Mar 2004 19:22:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243MwM7036508 for ; Wed, 3 Mar 2004 19:22:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243Mw9Q066657 for ; Wed, 3 Mar 2004 19:22:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243Mw5W066656; Wed, 3 Mar 2004 19:22:58 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040322.i243Mw5W066656@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:22:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_ribin_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:22:58 Added files: xorp/bgp/: test_ribin_dump.reference Log message: A reference file to test the RIB-IN dump iterator interaction. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:23:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:24:41 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243OfZK031504 for ; Wed, 3 Mar 2004 19:24:41 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243OZM7036546; Wed, 3 Mar 2004 19:24:35 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243O0SY012461; Wed, 3 Mar 2004 19:24:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243NmSY012446 for ; Wed, 3 Mar 2004 19:23:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243NmM7036520 for ; Wed, 3 Mar 2004 19:23:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243Nm9Q066722 for ; Wed, 3 Mar 2004 19:23:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243NmLf066721; Wed, 3 Mar 2004 19:23:48 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040323.i243NmLf066721@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:23:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:23:48 Modified files: xorp/bgp/: test_ribin.cc Log message: New test for RIB-IN dump iterator interaction. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:29:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:31:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243V8ZK034403 for ; Wed, 3 Mar 2004 19:31:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243V4M7036630; Wed, 3 Mar 2004 19:31:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243U0SY012576; Wed, 3 Mar 2004 19:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243TFSY012558 for ; Wed, 3 Mar 2004 19:29:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243TFM7036599 for ; Wed, 3 Mar 2004 19:29:15 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243TF9Q066974 for ; Wed, 3 Mar 2004 19:29:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243TFA7066973; Wed, 3 Mar 2004 19:29:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040329.i243TFA7066973@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:29:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:29:15 Modified files: xorp/bgp/: dump_iterators.cc Log message: When moving to a new peer we mark the iterator as invalid but its still pointing into a RIB-IN trie. If the RIB-IN that is being pointed at goes down we have a pointer to freed memory, so zap the iterator. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:35:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:41:56 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243fuZK039522 for ; Wed, 3 Mar 2004 19:41:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243fqM7036709; Wed, 3 Mar 2004 19:41:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243a1SY012690; Wed, 3 Mar 2004 19:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243ZPSY012674 for ; Wed, 3 Mar 2004 19:35:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243ZPM7036665 for ; Wed, 3 Mar 2004 19:35:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243ZP9Q067346 for ; Wed, 3 Mar 2004 19:35:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243ZPnc067345; Wed, 3 Mar 2004 19:35:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040335.i243ZPnc067345@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:35:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 04/03/03 19:35:25 Modified files: xorp/bgp/: dump_iterators.cc Log message: Add "typename" keyword. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:04 2005 Subject: No subject Wed Mar 3 19:41:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:43:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243h0ZK039924 for ; Wed, 3 Mar 2004 19:43:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243gtM7036720; Wed, 3 Mar 2004 19:42:55 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243g0SY012804; Wed, 3 Mar 2004 19:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243fdSY012784 for ; Wed, 3 Mar 2004 19:41:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243fdM7036705 for ; Wed, 3 Mar 2004 19:41:39 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243fd9Q067606 for ; Wed, 3 Mar 2004 19:41:39 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243fdZb067605; Wed, 3 Mar 2004 19:41:39 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040341.i243fdZb067605@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:41:39 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc test_dump.cc test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:41:39 Modified files: xorp/bgp/: route_table_ribin.cc test_dump.cc test_dump.reference Log message: When a new peering comes up we iterate through the RIB-INs pulling routes through the system. While we are dealing with existing routes a new route may appear. If the new route is behind the iterator then we deal with it. If it is in front we drop it as we know we will reach this route eventually. Routes were coming through in front of the iterator but the iterator never seemed to find them. The problem was the iterator was not pointing at the current entry but the next entry, noticed by mjh. The iterator know points at the current entry a side effect is that we have to make one more call to the dump code to discover we have finished. The test code and reference file have had to be changed to reflect this change. The test "test_peering2.sh -t test3" should hopefully stop failing now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 19:50:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 19:51:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i243pLZK043395 for ; Wed, 3 Mar 2004 19:51:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243pHM7036815; Wed, 3 Mar 2004 19:51:17 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243p1SY012942; Wed, 3 Mar 2004 19:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i243oVSY012925 for ; Wed, 3 Mar 2004 19:50:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i243oVM7036804 for ; Wed, 3 Mar 2004 19:50:31 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i243oU9Q068048 for ; Wed, 3 Mar 2004 19:50:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i243oUx7068047; Wed, 3 Mar 2004 19:50:30 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403040350.i243oUx7068047@xorpc.icir.org> Date: Wed, 3 Mar 2004 19:50:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/03 19:50:30 Modified files: xorp/bgp/: route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh Log message: A bunch of debugging. When the DUMP-TABLE has done its job it normally removes itself. It is now possible to configure the table to stay in place. Added while looking for iterator bug. The default is that the table removes itself. A new method that performs the task of removing this. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 20:47:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 20:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i244n3ZK073441 for ; Wed, 3 Mar 2004 20:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i244muM7037390; Wed, 3 Mar 2004 20:48:56 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i244m0SY013933; Wed, 3 Mar 2004 20:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i244lhSY013920 for ; Wed, 3 Mar 2004 20:47:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i244lhM7037379 for ; Wed, 3 Mar 2004 20:47:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i244lg9Q069984 for ; Wed, 3 Mar 2004 20:47:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i244lgnN069983; Wed, 3 Mar 2004 20:47:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040447.i244lgnN069983@xorpc.icir.org> Date: Wed, 3 Mar 2004 20:47:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/03 20:47:42 Modified files: xorp/cli/: cli_client.cc Log message: A buf fix in CliClient::page_buffer2window_line_n() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 20:49:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 20:50:31 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i244oVZK074064 for ; Wed, 3 Mar 2004 20:50:31 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i244oRM7037420; Wed, 3 Mar 2004 20:50:27 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i244o1SY013971; Wed, 3 Mar 2004 20:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i244njSY013960 for ; Wed, 3 Mar 2004 20:49:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i244njM7037394 for ; Wed, 3 Mar 2004 20:49:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i244nj9Q070069 for ; Wed, 3 Mar 2004 20:49:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i244njU7070068; Wed, 3 Mar 2004 20:49:45 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040449.i244njU7070068@xorpc.icir.org> Date: Wed, 3 Mar 2004 20:49:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/03 20:49:45 Modified files: xorp/cli/: test_cli.cc Log message: Add a new CLI test command "print_test". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 23:54:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 23:55:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i247tLZK045127 for ; Wed, 3 Mar 2004 23:55:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247tGM7039372; Wed, 3 Mar 2004 23:55:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247t1SY017368; Wed, 3 Mar 2004 23:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247sLSY017353 for ; Wed, 3 Mar 2004 23:54:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247sLM7039342 for ; Wed, 3 Mar 2004 23:54:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i247sL9Q079314 for ; Wed, 3 Mar 2004 23:54:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i247sLoD079313; Wed, 3 Mar 2004 23:54:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040754.i247sLoD079313@xorpc.icir.org> Date: Wed, 3 Mar 2004 23:54:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_sock.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 04/03/03 23:54:20 Modified files: xorp/libcomm/: comm_sock.c Log message: Nitlet: uint -> u_int to match exactly the specification for setsockopt(IPV6_MULTICAST_LOOP). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 23:55:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 23:56:21 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i247uLZK045564 for ; Wed, 3 Mar 2004 23:56:21 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247uGM7039388; Wed, 3 Mar 2004 23:56:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247u1SY017400; Wed, 3 Mar 2004 23:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247tFSY017381 for ; Wed, 3 Mar 2004 23:55:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247tEM7039370 for ; Wed, 3 Mar 2004 23:55:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i247tE9Q079429 for ; Wed, 3 Mar 2004 23:55:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i247tEoT079428; Wed, 3 Mar 2004 23:55:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040755.i247tEoT079428@xorpc.icir.org> Date: Wed, 3 Mar 2004 23:55:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_user.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 04/03/03 23:55:14 Modified files: xorp/libcomm/: comm_user.c Log message: Nitlet: uint -> unsigned int _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Wed Mar 3 23:55:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Mar 2004 23:56:28 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i247uSZK045598 for ; Wed, 3 Mar 2004 23:56:28 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247uOM7039390; Wed, 3 Mar 2004 23:56:24 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247u2SY017412; Wed, 3 Mar 2004 23:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i247thSY017388 for ; Wed, 3 Mar 2004 23:55:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i247thM7039380 for ; Wed, 3 Mar 2004 23:55:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i247tg9Q079475 for ; Wed, 3 Mar 2004 23:55:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i247tgHg079474; Wed, 3 Mar 2004 23:55:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403040755.i247tgHg079474@xorpc.icir.org> Date: Wed, 3 Mar 2004 23:55:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: pavlin@xorpc.icir.org. 04/03/03 23:55:42 Modified files: xorp/libcomm/: comm_api.h Log message: * Fix a kdoc comment * Nitlet: uint -> unsigned int _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 4 8:37:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 08:38:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24GcBZK043952 for ; Thu, 4 Mar 2004 08:38:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Gc6M7047758; Thu, 4 Mar 2004 08:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24Gc0SY027720; Thu, 4 Mar 2004 08:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24Gb3SY027684 for ; Thu, 4 Mar 2004 08:37:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Gb3M7047756 for ; Thu, 4 Mar 2004 08:37:03 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Gb39Q014582 for ; Thu, 4 Mar 2004 08:37:03 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24Gb3Ax014581; Thu, 4 Mar 2004 08:37:03 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403041637.i24Gb3Ax014581@xorpc.icir.org> Date: Thu, 4 Mar 2004 8:37:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_to.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/03/04 08:37:03 Modified files: xorp/libxipc/: test_finder_to.cc Log message: Change initialization point for finder port. Fixes build problem with optimization turned on. Bug URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=17 Reported by: Adam Greenhalgh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 4 9:49:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 09:50:16 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24HoGZK070459 for ; Thu, 4 Mar 2004 09:50:16 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Ho9M7048559; Thu, 4 Mar 2004 09:50:09 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24Ho0SY029560; Thu, 4 Mar 2004 09:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24HnvSY029551 for ; Thu, 4 Mar 2004 09:49:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24HnvM7048537 for ; Thu, 4 Mar 2004 09:49:57 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Hnv9Q017123 for ; Thu, 4 Mar 2004 09:49:57 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24Hnvsd017122; Thu, 4 Mar 2004 09:49:57 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403041749.i24Hnvsd017122@xorpc.icir.org> Date: Thu, 4 Mar 2004 9:49:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc rib_ipc_handler.cc route_table_fanout.cc xorp/mld6igmp/ mld6igmp_proto.cc xorp/pim/ pim_proto_hello.cc xorp/rib/ rt_tab_register.cc xorp/rtrmgr/ cli.cc template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/03/04 09:49:57 Modified files: xorp/bgp/: peer.cc rib_ipc_handler.cc route_table_fanout.cc xorp/mld6igmp/: mld6igmp_proto.cc xorp/pim/: pim_proto_hello.cc xorp/rib/: rt_tab_register.cc xorp/rtrmgr/: cli.cc template_commands.cc Log message: Fix uninitialized variable warnings that are emitted when optimization is turned on. (Compiler gcc version 3.3.1, optimization flag = "-O4"). Bug URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=17 Reported by: Adam Greenhalgh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 04 09:59:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 10:00:49 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24I0nZK074288 for ; Thu, 4 Mar 2004 10:00:49 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24I0gM7048704; Thu, 4 Mar 2004 10:00:42 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24I01SY029889; Thu, 4 Mar 2004 10:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24Hx1SY029846 for ; Thu, 4 Mar 2004 09:59:02 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Hx1M7048656 for ; Thu, 4 Mar 2004 09:59:01 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Hx1E9043448 for ; Thu, 4 Mar 2004 09:59:01 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403041759.i24Hx1E9043448@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc rib_ipc_handler.cc route_table_fanout.cc xorp/mld6igmp/ mld6igmp_proto.cc xorp/pim/ pim_proto_hello.cc xorp/rib/ rt_tab_register.cc xorp/rtrmgr/ cli.cc template_commands.cc In-Reply-To: Your message of "Thu, 04 Mar 2004 09:49:57." <200403041749.i24Hnvsd017122@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 04 Mar 2004 09:59:01 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | | Modified files: | xorp/bgp/: peer.cc rib_ipc_handler.cc route_table_fanout.cc | xorp/mld6igmp/: mld6igmp_proto.cc | xorp/pim/: pim_proto_hello.cc | xorp/rib/: rt_tab_register.cc | xorp/rtrmgr/: cli.cc template_commands.cc | | Log message: | Fix uninitialized variable warnings that are emitted when optimization | is turned on. (Compiler gcc version 3.3.1, optimization flag = "-O4"). | | Bug URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=17 | Reported by: Adam Greenhalgh If you work on any of the affected modules please review the changes there. - Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 04 10:12:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 10:13:09 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24ID8ZK078809 for ; Thu, 4 Mar 2004 10:13:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24ID3M7048836; Thu, 4 Mar 2004 10:13:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24ID1SY000230; Thu, 4 Mar 2004 10:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24ICXSY000209 for ; Thu, 4 Mar 2004 10:12:33 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24ICXM7048834; Thu, 4 Mar 2004 10:12:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i24ICX8N040483; Thu, 4 Mar 2004 10:12:33 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200403041812.i24ICX8N040483@possum.icir.org> To: Orion Hodson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc rib_ipc_handler.cc route_table_fanout.cc xorp/mld6igmp/ mld6igmp_proto.cc xorp/pim/ pim_proto_hello.cc xorp/rib/ rt_tab_register.cc xorp/rtrmgr/ cli.cc template_commands.cc In-Reply-To: Message from Orion Hodson of "Thu, 04 Mar 2004 09:59:01 PST." <200403041759.i24Hx1E9043448@puma.icir.org> Date: Thu, 04 Mar 2004 10:12:33 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > /-- Orion Hodson wrote: > | > | Modified files: > | xorp/bgp/: peer.cc rib_ipc_handler.cc route_table_fanout.cc > | xorp/mld6igmp/: mld6igmp_proto.cc > | xorp/pim/: pim_proto_hello.cc > | xorp/rib/: rt_tab_register.cc > | xorp/rtrmgr/: cli.cc template_commands.cc > | > | Log message: > | Fix uninitialized variable warnings that are emitted when optimization > | is turned on. (Compiler gcc version 3.3.1, optimization flag = "-O4"). > | > | Bug URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=17 > | Reported by: Adam Greenhalgh > > If you work on any of the affected modules please review the changes there. The changes in modules mld6igmp, pim, rib and rtrmgr look good. Thanks! Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 04 10:27:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 10:30:15 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24IUFZK085115 for ; Thu, 4 Mar 2004 10:30:15 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24IU6M7049050; Thu, 4 Mar 2004 10:30:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24IU0SY000804; Thu, 4 Mar 2004 10:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24IR7SY000679 for ; Thu, 4 Mar 2004 10:27:07 -0800 (PST) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24IR7M7048992; Thu, 4 Mar 2004 10:27:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24IR7ZK083908; Thu, 4 Mar 2004 10:27:07 -0800 (PST) (envelope-from atanu@tigger.icir.org) To: Pavlin Radoslavov cc: Orion Hodson , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc rib_ipc_handler.cc route_table_fanout.cc xorp/mld6igmp/ mld6igmp_proto.cc xorp/pim/ pim_proto_hello.cc xorp/rib/ rt_tab_register.cc xorp/rtrmgr/ cli.cc template_commands.cc In-Reply-To: Message from Pavlin Radoslavov of "Thu, 04 Mar 2004 10:12:33 PST." <200403041812.i24ICX8N040483@possum.icir.org> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Mailer: MH-E 7.4.2; nmh 1.0.3; XEmacs 21.4 (patch 14) Date: Thu, 04 Mar 2004 10:27:07 -0800 Message-ID: <83907.1078424827@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >>>>> "Pavlin" == Pavlin Radoslavov writes: >> /-- Orion Hodson wrote: >> | >> | Modified files: | xorp/bgp/: peer.cc rib_ipc_handler.cc >> route_table_fanout.cc | xorp/mld6igmp/: mld6igmp_proto.cc | >> xorp/pim/: pim_proto_hello.cc | xorp/rib/: rt_tab_register.cc | >> xorp/rtrmgr/: cli.cc template_commands.cc >> | >> | Log message: | Fix uninitialized variable warnings that are >> emitted when optimization | is turned on. (Compiler gcc version >> 3.3.1, optimization flag = "-O4"). | | Bug URL: >> http://www.xorp.org/bugzilla/show_bug.cgi?id=17 | Reported by: >> Adam Greenhalgh >> >> If you work on any of the affected modules please review the >> changes there. Pavlin> The changes in modules mld6igmp, pim, rib and rtrmgr look Pavlin> good. The bgp changes look good. Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 4 11:41:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 11:42:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Jg2ZK014346 for ; Thu, 4 Mar 2004 11:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24Jg1M7049867 for ; Thu, 4 Mar 2004 11:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24Jg1SY002703; Thu, 4 Mar 2004 11:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i24JfXSY002685 for ; Thu, 4 Mar 2004 11:41:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i24JfXM7049859 for ; Thu, 4 Mar 2004 11:41:33 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i24JfW9Q026498 for ; Thu, 4 Mar 2004 11:41:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i24JfWWH026497; Thu, 4 Mar 2004 11:41:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403041941.i24JfWWH026497@xorpc.icir.org> Date: Thu, 4 Mar 2004 11:41:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/04 11:41:32 Modified files: xorp/bgp/: peer.cc Log message: The open packet was not being free'd found by leaktracer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:05 2005 Subject: No subject Thu Mar 4 18:39:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 18:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i252e1ZK028230 for ; Thu, 4 Mar 2004 18:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i252e1M7054065 for ; Thu, 4 Mar 2004 18:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i252e0SY012020; Thu, 4 Mar 2004 18:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i252dhSY012013 for ; Thu, 4 Mar 2004 18:39:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i252dhM7054060 for ; Thu, 4 Mar 2004 18:39:43 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i252dg9Q045537 for ; Thu, 4 Mar 2004 18:39:42 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i252dgHL045536; Thu, 4 Mar 2004 18:39:42 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403050239.i252dgHL045536@xorpc.icir.org> Date: Thu, 4 Mar 2004 18:39:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ open_packet.cc packet.hh peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/03/04 18:39:42 Modified files: xorp/bgp/: open_packet.cc packet.hh peer.cc Log message: Actually free'ing the open packets that we send exposed a problem with the way that parameters are stored in the open packet. Parameters are reference counted nodes that are stored in a list. Unfortunately a new node was being created when adding to the list in the open packet. As opposed to passing a reference to the original node. Hence free'ing of referenced data. Hopefully fixed now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Thu Mar 4 19:44:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Mar 2004 19:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i253j1ZK043725 for ; Thu, 4 Mar 2004 19:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i253j1M7054700 for ; Thu, 4 Mar 2004 19:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i253j1SY013312; Thu, 4 Mar 2004 19:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i253iASY013292 for ; Thu, 4 Mar 2004 19:44:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i253iAM7054687 for ; Thu, 4 Mar 2004 19:44:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i253iA9Q048745 for ; Thu, 4 Mar 2004 19:44:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i253iARF048744; Thu, 4 Mar 2004 19:44:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403050344.i253iARF048744@xorpc.icir.org> Date: Thu, 4 Mar 2004 19:44:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/04 19:44:10 Modified files: xorp/pim/: configure_pim Log message: * Stylistic change of the configured static RP hash-masklen: from 0 to 30 (for IPv4) and 126 (for IPv6). Originally, value of 0 was suppose to mean "default value", but in the future this may be removed * Bugfix: change the Cand-BSR hash-masklen for IPv6 (from 30 to 126) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 1:00:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 01:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25911ZK005137 for ; Fri, 5 Mar 2004 01:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25910M7057709 for ; Fri, 5 Mar 2004 01:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25910Pj019192; Fri, 5 Mar 2004 01:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2590MPj019179 for ; Fri, 5 Mar 2004 01:00:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2590MM7057700 for ; Fri, 5 Mar 2004 01:00:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2590L9Q067126 for ; Fri, 5 Mar 2004 01:00:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2590Lba067125; Fri, 5 Mar 2004 01:00:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403050900.i2590Lba067125@xorpc.icir.org> Date: Fri, 5 Mar 2004 1:00:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_bootstrap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/05 01:00:21 Modified files: xorp/pim/: pim_proto_bootstrap.cc Log message: The source address of the PIM Bootstrap messages should be always the primary address on that interface regardless whether we are sending the Bootstrap message to an unicast or a multicast address. In either case the message is sent only over the LAN hence there is no reason it should be originated with the domain-wide reachable address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 1:17:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 01:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i259I1ZK008458 for ; Fri, 5 Mar 2004 01:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259I1M7057866 for ; Fri, 5 Mar 2004 01:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259I1Pj019556; Fri, 5 Mar 2004 01:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259HhPj019549 for ; Fri, 5 Mar 2004 01:17:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259HhM7057864 for ; Fri, 5 Mar 2004 01:17:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i259Hg9Q068261 for ; Fri, 5 Mar 2004 01:17:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i259Hg4m068260; Fri, 5 Mar 2004 01:17:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403050917.i259Hg4m068260@xorpc.icir.org> Date: Fri, 5 Mar 2004 1:17:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/05 01:17:42 Modified files: xorp/pim/: pim_vif.cc Log message: If the destination address is unicast, then modify some of the sending values (e.g., TTL and Router-Alert) only if the message type is: PIM_REGISTER or PIM_REGISTER_STOP or PIM_CAND_RP_ADV. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 1:53:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 01:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i259s1ZK015678 for ; Fri, 5 Mar 2004 01:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259s1M7058237 for ; Fri, 5 Mar 2004 01:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259s1Pj020268; Fri, 5 Mar 2004 01:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259raPj020260 for ; Fri, 5 Mar 2004 01:53:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259raM7058235 for ; Fri, 5 Mar 2004 01:53:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i259rZ9Q070236 for ; Fri, 5 Mar 2004 01:53:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i259rZdn070235; Fri, 5 Mar 2004 01:53:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403050953.i259rZdn070235@xorpc.icir.org> Date: Fri, 5 Mar 2004 1:53:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/status_2004_02/ Changes by: pavlin@xorpc.icir.org. 04/03/05 01:53:35 xorp/docs/slides/status_2004_02 Update of /usr/local/share/doc/apache/cvs/xorp/docs/slides/status_2004_02 In directory xorpc.icir.org:/tmp/cvs-serv70229/status_2004_02 Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/slides/status_2004_02 added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 1:58:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 01:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i259x1ZK016970 for ; Fri, 5 Mar 2004 01:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259x1M7058357 for ; Fri, 5 Mar 2004 01:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259x0Pj020355; Fri, 5 Mar 2004 01:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i259wCPj020338 for ; Fri, 5 Mar 2004 01:58:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i259wCM7058290 for ; Fri, 5 Mar 2004 01:58:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i259wC9Q070527 for ; Fri, 5 Mar 2004 01:58:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i259wCZ3070526; Fri, 5 Mar 2004 01:58:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403050958.i259wCZ3070526@xorpc.icir.org> Date: Fri, 5 Mar 2004 1:58:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/05 01:58:12 Modified files: ./: configure.in configure Log message: Replace docs/slides/Makefile with docs/slides/status_2004_02/Makefile _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:02:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A31ZK018519 for ; Fri, 5 Mar 2004 02:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A31M7058623 for ; Fri, 5 Mar 2004 02:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A31Pj020481; Fri, 5 Mar 2004 02:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A2uPj020474 for ; Fri, 5 Mar 2004 02:02:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A2uM7058621 for ; Fri, 5 Mar 2004 02:02:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A2u9Q070889 for ; Fri, 5 Mar 2004 02:02:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25A2usw070888; Fri, 5 Mar 2004 02:02:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051002.i25A2usw070888@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:02:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/status_2004_02/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/status_2004_02/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:02:56 Modified files: xorp/docs/slides/status_2004_02/: Makefile.am Makefile.in Log message: Update the path to figure processes.ps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:03:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A41ZK018789 for ; Fri, 5 Mar 2004 02:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A41M7058646 for ; Fri, 5 Mar 2004 02:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A41Pj020508; Fri, 5 Mar 2004 02:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A3kPj020500 for ; Fri, 5 Mar 2004 02:03:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A3kM7058641 for ; Fri, 5 Mar 2004 02:03:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A3k9Q070945 for ; Fri, 5 Mar 2004 02:03:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25A3k9B070944; Fri, 5 Mar 2004 02:03:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051003.i25A3k9B070944@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:03:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/status_2004_02/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/status_2004_02/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:03:46 Modified files: xorp/docs/slides/status_2004_02/: xorp.tex Log message: Update the path to file processes3.ps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:04:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A50ZK019092 for ; Fri, 5 Mar 2004 02:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A50M7058671 for ; Fri, 5 Mar 2004 02:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A50Pj020540; Fri, 5 Mar 2004 02:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A4mPj020533 for ; Fri, 5 Mar 2004 02:04:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A4lM7058665 for ; Fri, 5 Mar 2004 02:04:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A4l9Q071025 for ; Fri, 5 Mar 2004 02:04:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25A4lxP071024; Fri, 5 Mar 2004 02:04:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051004.i25A4lxP071024@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:04:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/status_2004_02/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/status_2004_02/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:04:47 Added files: xorp/docs/slides/status_2004_02/: .cvsignore Log message: Added .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:06:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:07:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A72ZK019776 for ; Fri, 5 Mar 2004 02:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A71M7058728 for ; Fri, 5 Mar 2004 02:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A71Pj020588; Fri, 5 Mar 2004 02:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25A64Pj020567 for ; Fri, 5 Mar 2004 02:06:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A63M7058709 for ; Fri, 5 Mar 2004 02:06:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25A639Q071129 for ; Fri, 5 Mar 2004 02:06:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25A636b071128; Fri, 5 Mar 2004 02:06:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051006.i25A636b071128@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:06:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ xorp.tex Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:06:03 Removed files: xorp/docs/slides/: xorp.tex Makefile.am Makefile.in Log message: Remove the files because they were moved to their new location in directory docs/slides/status_2004_02 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:12:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AD1ZK021380 for ; Fri, 5 Mar 2004 02:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AD1M7058805 for ; Fri, 5 Mar 2004 02:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AD1Pj020686; Fri, 5 Mar 2004 02:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AC7Pj020670 for ; Fri, 5 Mar 2004 02:12:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AC7M7058800 for ; Fri, 5 Mar 2004 02:12:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AC69Q071299 for ; Fri, 5 Mar 2004 02:12:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25AC6a2071298; Fri, 5 Mar 2004 02:12:06 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051012.i25AC6a2071298@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:12:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:12:06 xorp/docs/papers/xorp_meeting_pim_2003_08_talk Update of /usr/local/share/doc/apache/cvs/xorp/docs/papers/xorp_meeting_pim_2003_08_talk In directory xorpc.icir.org:/tmp/cvs-serv71292/xorp_meeting_pim_2003_08_talk Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/papers/xorp_meeting_pim_2003_08_talk added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:12:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:13:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AD2ZK021395 for ; Fri, 5 Mar 2004 02:13:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AD1M7058807 for ; Fri, 5 Mar 2004 02:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AD1Pj020697; Fri, 5 Mar 2004 02:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25ACaPj020675 for ; Fri, 5 Mar 2004 02:12:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25ACaM7058803 for ; Fri, 5 Mar 2004 02:12:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25ACa9Q071325 for ; Fri, 5 Mar 2004 02:12:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25ACaCl071324; Fri, 5 Mar 2004 02:12:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051012.i25ACaCl071324@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:12:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:12:36 xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs Update of /usr/local/share/doc/apache/cvs/xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs In directory xorpc.icir.org:/tmp/cvs-serv71318/figs Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:14:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AF1ZK021880 for ; Fri, 5 Mar 2004 02:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AF1M7058827 for ; Fri, 5 Mar 2004 02:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AF1Pj020726; Fri, 5 Mar 2004 02:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AEGPj020715 for ; Fri, 5 Mar 2004 02:14:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AEGM7058819 for ; Fri, 5 Mar 2004 02:14:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AEF9Q071381 for ; Fri, 5 Mar 2004 02:14:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25AEFJ2071380; Fri, 5 Mar 2004 02:14:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051014.i25AEFJ2071380@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:14:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/ .cvsignore Makefile icsislides.cls slides.tex xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs/ ipr.1 mcast_modules_interaction.eps mcast_modules_interaction.fig mcast_proto_abstraction.eps ...mcast_proto_abstraction.fig ...pim_design_overview.eps ...pim_design_overview.fig ...pim_other_modules_interaction.eps ...pim_other_modules_interaction.fig ...pim_protocol_overview1.eps ...pim_protocol_overview1.fig ...pim_protocol_overview2.eps ...pim_protocol_overview2.fig ...pim_state_dependency.eps ...pim_state_dependency.fig ...pim_state_dependency2.eps ...pim_state! _dependency! 2.fig ...pim_state_dependency3.eps ...pim_state_dependency3.fig ...pim_state_dependency4.eps ...pim_state_dependency4.fig ...pim_state_dependency5.eps ...pim_state_dependency5.fig ...routingtable.eps ...xorp_arch.eps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:14:15 Added files: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/: .cvsignore Makefile icsislides.cls slides.tex xorp/docs/papers/xorp_meeting_pim_2003_08_talk/figs/: ipr.1 mcast_modules_interaction.eps mcast_modules_interaction.fig mcast_proto_abstraction.eps mcast_proto_abstraction.fig pim_design_overview.eps pim_design_overview.fig pim_other_modules_interaction.eps pim_other_modules_interaction.fig pim_protocol_overview1.eps pim_protocol_overview1.fig pim_protocol_overview2.eps pim_protocol_overview2.fig pim_state_dependency.eps pim_state_dependency.fig pim_state_dependency2.eps pim_state_dependency2.fig pim_state_dependency3.eps pim_state_dependency3.fig pim_state_dependency4.eps pim_state_dependency4.fig pim_state_dependency5.eps pim_state_dependency5.fig routingtable.eps xorp_arch.eps Log message: Added slides from PIM-SM talk (XORP meeting, August 2003) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:06 2005 Subject: No subject Fri Mar 5 2:15:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 02:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AG1ZK022179 for ; Fri, 5 Mar 2004 02:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AG0M7058863 for ; Fri, 5 Mar 2004 02:16:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AG0Pj020758; Fri, 5 Mar 2004 02:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25AF5Pj020738 for ; Fri, 5 Mar 2004 02:15:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AF5M7058831 for ; Fri, 5 Mar 2004 02:15:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25AF59Q071427 for ; Fri, 5 Mar 2004 02:15:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25AF5cZ071426; Fri, 5 Mar 2004 02:15:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051015.i25AF5cZ071426@xorpc.icir.org> Date: Fri, 5 Mar 2004 2:15:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/ Changes by: pavlin@xorpc.icir.org. 04/03/05 02:15:05 Modified files: xorp/docs/papers/xorp_meeting_pim_2003_08_talk/: .cvsignore Log message: Added slides.ps and slides.pdf to .cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 5:58:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 05:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Dx1ZK067131 for ; Fri, 5 Mar 2004 05:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Dx1M7060962 for ; Fri, 5 Mar 2004 05:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25Dx1Pj026683; Fri, 5 Mar 2004 05:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25DwRPj026674 for ; Fri, 5 Mar 2004 05:58:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25DwRM7060954 for ; Fri, 5 Mar 2004 05:58:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25DwQ9Q087867 for ; Fri, 5 Mar 2004 05:58:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25DwQ2j087866; Fri, 5 Mar 2004 05:58:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051358.i25DwQ2j087866@xorpc.icir.org> Date: Fri, 5 Mar 2004 5:58:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/05 05:58:26 Modified files: xorp/cli/: xrl_cli_shell_funcs.sh Log message: Add a missing "echo" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 5:59:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 06:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25E01ZK067322 for ; Fri, 5 Mar 2004 06:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25E01M7060984 for ; Fri, 5 Mar 2004 06:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25E01Pj026705; Fri, 5 Mar 2004 06:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25DxhPj026699 for ; Fri, 5 Mar 2004 05:59:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25DxhM7060969 for ; Fri, 5 Mar 2004 05:59:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Dxh9Q087962 for ; Fri, 5 Mar 2004 05:59:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25Dxh5w087961; Fri, 5 Mar 2004 05:59:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051359.i25Dxh5w087961@xorpc.icir.org> Date: Fri, 5 Mar 2004 5:59:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_shell_funcs.sh xorp/mld6igmp/ xrl_mld6igmp_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/05 05:59:43 Modified files: xorp/fea/: xrl_mfea_shell_funcs.sh xorp/mld6igmp/: xrl_mld6igmp_shell_funcs.sh Log message: Nuke extra empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 10:37:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 10:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ic1ZK022913 for ; Fri, 5 Mar 2004 10:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ic1M7065376 for ; Fri, 5 Mar 2004 10:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25Ic0Pj001990; Fri, 5 Mar 2004 10:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25IbPPj001978 for ; Fri, 5 Mar 2004 10:37:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25IbPM7065372 for ; Fri, 5 Mar 2004 10:37:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25IbP9Q099807 for ; Fri, 5 Mar 2004 10:37:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25IbP9N099806; Fri, 5 Mar 2004 10:37:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403051837.i25IbP9N099806@xorpc.icir.org> Date: Fri, 5 Mar 2004 10:37:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ xlog.h xlog.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/05 10:37:25 Modified files: xorp/libxorp/: xlog.h xlog.c Log message: Add xlog_is_running(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 10:39:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 10:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ie1ZK023312 for ; Fri, 5 Mar 2004 10:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ie1M7065395 for ; Fri, 5 Mar 2004 10:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25Ie1Pj002049; Fri, 5 Mar 2004 10:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25IdiPj002040 for ; Fri, 5 Mar 2004 10:39:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25IdhM7065386 for ; Fri, 5 Mar 2004 10:39:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Idh9Q099856 for ; Fri, 5 Mar 2004 10:39:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25IdhjP099855; Fri, 5 Mar 2004 10:39:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403051839.i25IdhjP099855@xorpc.icir.org> Date: Fri, 5 Mar 2004 10:39:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in configure.in configure xorp/libxorp/ callback-gen.py callback.hh xorp/libxorp/ callback.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/05 10:39:43 Modified files: ./: config.h.in configure.in configure xorp/libxorp/: callback-gen.py callback.hh Added files: xorp/libxorp/: callback.cc Log message: Add configure flag --enable-callback-debug which when enabled puts entry and exit code about the callback dispatch() method. If a callback takes too long an error will be recorded via xlog (or stderr if the xlog is not available). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 10:41:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 10:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ig1ZK023710 for ; Fri, 5 Mar 2004 10:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Ig1M7065428 for ; Fri, 5 Mar 2004 10:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25Ig1Pj002106; Fri, 5 Mar 2004 10:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25IfOPj002078 for ; Fri, 5 Mar 2004 10:41:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25IfOM7065424 for ; Fri, 5 Mar 2004 10:41:24 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25IfO9Q000413 for ; Fri, 5 Mar 2004 10:41:24 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25IfOmk000412; Fri, 5 Mar 2004 10:41:24 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403051841.i25IfOmk000412@xorpc.icir.org> Date: Fri, 5 Mar 2004 10:41:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in MakefileRootCheck.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/etc/ Makefile.in xorp/etc/templates/ Makefile.in xorp/fea/ Makefile.in MakefileRootCheck.in xorp/fib2mrib/ Makefile.in xorp/libcomm/ Makefile.in xorp/libfeaclient/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/libxorp/ Makefile.am Makefile.in xorp/mibs/ Makefile.in xorp/mibs/snmpdscripts/ Makefile.in ! xorp/mibs/t! ests/ Makefile.in xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/static_routes/ Makefile.in xorp/utils/ Makefile.in xorp/utils/flower_malloc/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 04/03/05 10:41:24 Modified files: ./: Makefile.in MakefileRootCheck.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/etc/: Makefile.in xorp/etc/templates/: Makefile.in xorp/fea/: Makefile.in MakefileRootCheck.in xorp/fib2mrib/: Makefile.in xorp/libcomm/: Makefile.in xorp/libfeaclient/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/libxorp/: Makefile.am Makefile.in xorp/mibs/: Makefile.in xorp/mibs/snmpdscripts/: Makefile.in xorp/mibs/tests/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/static_routes/: Makefile.in xorp/utils/: Makefile.in xorp/utils/flower_malloc/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: Regenerate following changes to configure.in. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 11:54:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 11:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Jt2ZK037904 for ; Fri, 5 Mar 2004 11:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Jt1SJ066229 for ; Fri, 5 Mar 2004 11:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25Jt1Pj003927; Fri, 5 Mar 2004 11:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25JsaPj003893 for ; Fri, 5 Mar 2004 11:54:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25JsaSJ066221 for ; Fri, 5 Mar 2004 11:54:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25Jsa9Q008125 for ; Fri, 5 Mar 2004 11:54:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25JsaDV008124; Fri, 5 Mar 2004 11:54:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403051954.i25JsaDV008124@xorpc.icir.org> Date: Fri, 5 Mar 2004 11:54:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/03/05 11:54:36 Modified files: xorp/libxorp/: callback.hh Log message: Commit the version that is auto-generated when we run "gmake". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:07 2005 Subject: No subject Fri Mar 5 14:12:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 14:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MD1ZK064674 for ; Fri, 5 Mar 2004 14:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MD0SJ067687 for ; Fri, 5 Mar 2004 14:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MD0Pj006992; Fri, 5 Mar 2004 14:13:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MCoPj006985 for ; Fri, 5 Mar 2004 14:12:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MCoSJ067682 for ; Fri, 5 Mar 2004 14:12:50 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MCo9Q039454 for ; Fri, 5 Mar 2004 14:12:50 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25MCoDw039453; Fri, 5 Mar 2004 14:12:50 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403052212.i25MCoDw039453@xorpc.icir.org> Date: Fri, 5 Mar 2004 14:12:50 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in callback.hh xorp/libxorp/ callback_debug.hh callback_nodebug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/05 14:12:50 Modified files: xorp/libxorp/: Makefile.am Makefile.in callback.hh Added files: xorp/libxorp/: callback_debug.hh callback_nodebug.hh Log message: Generate separate callback files for debug and non-debug case. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Fri Mar 5 14:15:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 14:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MG1ZK065259 for ; Fri, 5 Mar 2004 14:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MG1SJ067736 for ; Fri, 5 Mar 2004 14:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MG1Pj007050; Fri, 5 Mar 2004 14:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MF4Pj007025 for ; Fri, 5 Mar 2004 14:15:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MF4SJ067710 for ; Fri, 5 Mar 2004 14:15:04 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MF49Q039870 for ; Fri, 5 Mar 2004 14:15:04 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25MF455039869; Fri, 5 Mar 2004 14:15:04 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403052215.i25MF455039869@xorpc.icir.org> Date: Fri, 5 Mar 2004 14:15:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.in MakefileRootCheck.in configure configure.in xorp/bgp/ Makefile.in xorp/bgp/harness/ Makefile.in xorp/bgp/tools/ Makefile.in xorp/cli/ Makefile.in xorp/docs/ Makefile.in xorp/docs/bgp/ Makefile.in xorp/docs/design_arch/ Makefile.in xorp/docs/fea/ Makefile.in xorp/docs/libxipc/ Makefile.in xorp/docs/libxorp/ Makefile.in xorp/docs/mfea/ Makefile.in xorp/docs/mld6igmp/ Makefile.in xorp/docs/multicast/ Makefile.in xorp/docs/pim/ Makefile.in xorp/docs/pim_testsuite/ Makefile.in xorp/docs/rib/ Makefile.in xorp/docs/rtrmgr/ Makefile.in xorp/docs/snmp/ Makefile.in xorp/docs/test_harness/ Makefile.in xorp/etc/ Makefile.in xorp/etc/templates/ Makefile.in xorp/fea/ Makefile.in MakefileRootCheck.in xorp/fib2mrib/ Makefile.in xorp/libcomm/ Makefile.in xorp/libfeaclient/ Makefile.in xorp/libproto/ Makefile.in xorp/libxipc/ Makefile.in xorp/mibs/ Makefile.in xorp/mibs/snmpdscripts/ Makefile.in xorp/mibs/tests/! Makefile.i! n xorp/mld6igmp/ Makefile.in xorp/mrt/ Makefile.in xorp/ospfd/ Makefile.in xorp/ospfd/src/ Makefile.in xorp/ospfd/xorp/ Makefile.in xorp/pim/ Makefile.in xorp/policy/ Makefile.in xorp/rib/ Makefile.in xorp/rip/ Makefile.in xorp/rtrmgr/ Makefile.in xorp/rtrmgr/tools/ Makefile.in xorp/static_routes/ Makefile.in xorp/utils/ Makefile.in xorp/utils/flower_malloc/ Makefile.in xorp/xrl/ Makefile.in xorp/xrl/interfaces/ Makefile.in xorp/xrl/targets/ Makefile.in xorp/xrl/tests/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 04/03/05 14:15:03 Modified files: ./: Makefile.in MakefileRootCheck.in configure configure.in xorp/bgp/: Makefile.in xorp/bgp/harness/: Makefile.in xorp/bgp/tools/: Makefile.in xorp/cli/: Makefile.in xorp/docs/: Makefile.in xorp/docs/bgp/: Makefile.in xorp/docs/design_arch/: Makefile.in xorp/docs/fea/: Makefile.in xorp/docs/libxipc/: Makefile.in xorp/docs/libxorp/: Makefile.in xorp/docs/mfea/: Makefile.in xorp/docs/mld6igmp/: Makefile.in xorp/docs/multicast/: Makefile.in xorp/docs/pim/: Makefile.in xorp/docs/pim_testsuite/: Makefile.in xorp/docs/rib/: Makefile.in xorp/docs/rtrmgr/: Makefile.in xorp/docs/snmp/: Makefile.in xorp/docs/test_harness/: Makefile.in xorp/etc/: Makefile.in xorp/etc/templates/: Makefile.in xorp/fea/: Makefile.in MakefileRootCheck.in xorp/fib2mrib/: Makefile.in xorp/libcomm/: Makefile.in xorp/libfeaclient/: Makefile.in xorp/libproto/: Makefile.in xorp/libxipc/: Makefile.in xorp/mibs/: Makefile.in xorp/mibs/snmpdscripts/: Makefile.in xorp/mibs/tests/: Makefile.in xorp/mld6igmp/: Makefile.in xorp/mrt/: Makefile.in xorp/ospfd/: Makefile.in xorp/ospfd/src/: Makefile.in xorp/ospfd/xorp/: Makefile.in xorp/pim/: Makefile.in xorp/policy/: Makefile.in xorp/rib/: Makefile.in xorp/rip/: Makefile.in xorp/rtrmgr/: Makefile.in xorp/rtrmgr/tools/: Makefile.in xorp/static_routes/: Makefile.in xorp/utils/: Makefile.in xorp/utils/flower_malloc/: Makefile.in xorp/xrl/: Makefile.in xorp/xrl/interfaces/: Makefile.in xorp/xrl/targets/: Makefile.in xorp/xrl/tests/: Makefile.in Log message: No longer use flag to instruct callback-gen.py to build a debug or non-debug version of callback.hh. This removes the variable from CALLBACK_GEN_FLAGS from all the Makefile.in's. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Fri Mar 5 14:24:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 14:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MP1ZK067002 for ; Fri, 5 Mar 2004 14:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MP1SJ067834 for ; Fri, 5 Mar 2004 14:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MP1Pj007241; Fri, 5 Mar 2004 14:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MOCPj007211 for ; Fri, 5 Mar 2004 14:24:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MOCSJ067820 for ; Fri, 5 Mar 2004 14:24:12 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MOB9Q040177 for ; Fri, 5 Mar 2004 14:24:11 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25MOBk1040176; Fri, 5 Mar 2004 14:24:11 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403052224.i25MOBk1040176@xorpc.icir.org> Date: Fri, 5 Mar 2004 14:24:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/05 14:24:11 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Rule nit (broken cross directory build). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Fri Mar 5 14:25:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Mar 2004 14:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MQ1ZK067235 for ; Fri, 5 Mar 2004 14:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MQ1SJ067879 for ; Fri, 5 Mar 2004 14:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MQ1Pj007284; Fri, 5 Mar 2004 14:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i25MPHPj007260 for ; Fri, 5 Mar 2004 14:25:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MPGSJ067860 for ; Fri, 5 Mar 2004 14:25:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i25MPG9Q040272 for ; Fri, 5 Mar 2004 14:25:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i25MPG98040271; Fri, 5 Mar 2004 14:25:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403052225.i25MPG98040271@xorpc.icir.org> Date: Fri, 5 Mar 2004 14:25:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.hh callback_debug.hh callback_nodebug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/05 14:25:16 Modified files: xorp/libxorp/: callback-gen.py callback.hh callback_debug.hh callback_nodebug.hh Log message: Add #error if callback_nodebug.hh or callback_debug.hh are included directly, rather than through callback.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Sun Mar 7 12:11:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 07 Mar 2004 12:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i27KC2ZK004259 for ; Sun, 7 Mar 2004 12:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i27KC1SJ097147 for ; Sun, 7 Mar 2004 12:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i27KC1Pj018436; Sun, 7 Mar 2004 12:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i27KBJPj018425 for ; Sun, 7 Mar 2004 12:11:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i27KBJSJ097143 for ; Sun, 7 Mar 2004 12:11:19 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i27KBJ9Q089327 for ; Sun, 7 Mar 2004 12:11:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i27KBJvJ089326; Sun, 7 Mar 2004 12:11:19 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403072011.i27KBJvJ089326@xorpc.icir.org> Date: Sun, 7 Mar 2004 12:11:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/07 12:11:19 Modified files: xorp/rtrmgr/: cli.cc Log message: Add long help text for most of the configuration-mode static commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Mon Mar 8 7:51:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 07:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i28Fq1ZK032763 for ; Mon, 8 Mar 2004 07:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28Fq1SJ008199 for ; Mon, 8 Mar 2004 07:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28Fq1Pj007227; Mon, 8 Mar 2004 07:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28FpVPj007211 for ; Mon, 8 Mar 2004 07:51:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28FpUSJ008194 for ; Mon, 8 Mar 2004 07:51:30 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i28FpU9Q041189 for ; Mon, 8 Mar 2004 07:51:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i28FpU0P041188; Mon, 8 Mar 2004 07:51:30 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403081551.i28FpU0P041188@xorpc.icir.org> Date: Mon, 8 Mar 2004 7:51:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/08 07:51:29 Modified files: xorp/rtrmgr/: cli.cc Log message: Fix compilation error on later compilers _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Mon Mar 8 8:16:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 08:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i28GH1ZK038919 for ; Mon, 8 Mar 2004 08:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28GH1SJ009812 for ; Mon, 8 Mar 2004 08:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28GH1Pj007650; Mon, 8 Mar 2004 08:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28GGiPj007636 for ; Mon, 8 Mar 2004 08:16:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28GGhSJ009810 for ; Mon, 8 Mar 2004 08:16:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i28GGh9Q043774 for ; Mon, 8 Mar 2004 08:16:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i28GGhYo043773; Mon, 8 Mar 2004 08:16:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403081616.i28GGhYo043773@xorpc.icir.org> Date: Mon, 8 Mar 2004 8:16:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/03/08 08:16:43 xorp/rip/tools Update of /usr/local/www/data/cvs/xorp/rip/tools In directory xorpc.icir.org:/tmp/cvs-serv43767/tools Log Message: Directory /usr/local/www/data/cvs/xorp/rip/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Mon Mar 8 10:14:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 10:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i28IF1ZK061569 for ; Mon, 8 Mar 2004 10:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28IF1SJ011235 for ; Mon, 8 Mar 2004 10:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28IF1Pj010578; Mon, 8 Mar 2004 10:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28IETPj010540 for ; Mon, 8 Mar 2004 10:14:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28IETSJ011223 for ; Mon, 8 Mar 2004 10:14:29 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i28IET9Q048366 for ; Mon, 8 Mar 2004 10:14:29 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i28IETNe048365; Mon, 8 Mar 2004 10:14:29 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403081814.i28IETNe048365@xorpc.icir.org> Date: Mon, 8 Mar 2004 10:14:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/08 10:14:29 Modified files: xorp/rtrmgr/: cli.cc Log message: Add help for set command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:08 2005 Subject: No subject Mon Mar 8 12:19:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 12:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i28KK1ZK085814 for ; Mon, 8 Mar 2004 12:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28KK1SJ012668 for ; Mon, 8 Mar 2004 12:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28KK0Pj014162; Mon, 8 Mar 2004 12:20:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i28KJdPj014146 for ; Mon, 8 Mar 2004 12:19:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i28KJdSJ012653 for ; Mon, 8 Mar 2004 12:19:39 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i28KJd9Q052405 for ; Mon, 8 Mar 2004 12:19:39 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i28KJdjk052404; Mon, 8 Mar 2004 12:19:39 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403082019.i28KJdjk052404@xorpc.icir.org> Date: Mon, 8 Mar 2004 12:19:38 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/08 12:19:38 Modified files: xorp/rtrmgr/: cli.cc Log message: Add long help string for show command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:09 2005 Subject: No subject Mon Mar 8 21:02:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 21:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29531ZK086946 for ; Mon, 8 Mar 2004 21:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29531SJ018046 for ; Mon, 8 Mar 2004 21:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29531Pj024701; Mon, 8 Mar 2004 21:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2952bPj024691 for ; Mon, 8 Mar 2004 21:02:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2952bSJ018044 for ; Mon, 8 Mar 2004 21:02:37 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2952b9Q003012 for ; Mon, 8 Mar 2004 21:02:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2952bo2003009; Mon, 8 Mar 2004 21:02:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403090502.i2952bo2003009@xorpc.icir.org> Date: Mon, 8 Mar 2004 21:02:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port_vars.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/08 21:02:36 Modified files: xorp/rip/: port_vars.hh Log message: Add a missing counter initialization. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:09 2005 Subject: No subject Mon Mar 8 21:04:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 21:05:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29550ZK087332 for ; Mon, 8 Mar 2004 21:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29550SJ018064 for ; Mon, 8 Mar 2004 21:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29550Pj024736; Mon, 8 Mar 2004 21:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2954EPj024725 for ; Mon, 8 Mar 2004 21:04:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2954ESJ018060 for ; Mon, 8 Mar 2004 21:04:14 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2954E9Q003161 for ; Mon, 8 Mar 2004 21:04:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2954EPK003160; Mon, 8 Mar 2004 21:04:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403090504.i2954EPK003160@xorpc.icir.org> Date: Mon, 8 Mar 2004 21:04:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc xorp/rtrmgr/ main_rtrmgr.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/08 21:04:14 Modified files: xorp/rtrmgr/: main_rtrmgr.cc Added files: xorp/rtrmgr/: main_rtrmgr.hh Log message: Move main loop of rtrmgr into its own class. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:09 2005 Subject: No subject Mon Mar 8 21:51:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 21:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i295q1ZK096436 for ; Mon, 8 Mar 2004 21:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i295q1SJ018578 for ; Mon, 8 Mar 2004 21:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i295q1Pj025606; Mon, 8 Mar 2004 21:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i295p3Pj025589 for ; Mon, 8 Mar 2004 21:51:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i295p3SJ018571 for ; Mon, 8 Mar 2004 21:51:03 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i295p39Q005506 for ; Mon, 8 Mar 2004 21:51:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i295p30e005505; Mon, 8 Mar 2004 21:51:03 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403090551.i295p30e005505@xorpc.icir.org> Date: Mon, 8 Mar 2004 21:51:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback_debug.hh callback_nodebug.hh xorp/xrl/interfaces/ rtrmgr.xif rtrmgr_xif.cc rtrmgr_xif.hh xorp/xrl/targets/ rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: mjh@xorpc.icir.org. 04/03/08 21:51:03 Modified files: xorp/libxorp/: callback_debug.hh callback_nodebug.hh xorp/xrl/interfaces/: rtrmgr.xif rtrmgr_xif.cc rtrmgr_xif.hh xorp/xrl/targets/: rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh Log message: Allow rtrmgr to return "not ready" when xorpsh requests the running config. xorpsh will then retry later. This closes a timing hole, where xorpsh was getting back the running config half-way through rtrmgr committing a set of changes, which in turn caused xorpsh to get rather confused. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:09 2005 Subject: No subject Mon Mar 8 21:51:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Mar 2004 21:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i295q2ZK096451 for ; Mon, 8 Mar 2004 21:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i295q2SJ018580 for ; Mon, 8 Mar 2004 21:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i295q2Pj025617; Mon, 8 Mar 2004 21:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i295prPj025600 for ; Mon, 8 Mar 2004 21:51:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i295pqSJ018575 for ; Mon, 8 Mar 2004 21:51:52 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i295pq9Q005549 for ; Mon, 8 Mar 2004 21:51:52 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i295pqZk005548; Mon, 8 Mar 2004 21:51:52 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403090551.i295pqZk005548@xorpc.icir.org> Date: Mon, 8 Mar 2004 21:51:52 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/08 21:51:52 Modified files: xorp/rtrmgr/: main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Allow rtrmgr to return "not ready" when xorpsh requests the running config. xorpsh will then retry later. This closes a timing hole, where xorpsh was getting back the running config half-way through rtrmgr committing a set of changes, which in turn caused xorpsh to get rather confused. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:09 2005 Subject: No subject Tue Mar 9 7:29:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 07:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29FV1ZK009614 for ; Tue, 9 Mar 2004 07:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29FV1SJ024420 for ; Tue, 9 Mar 2004 07:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29FV1Pj006755; Tue, 9 Mar 2004 07:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29FU5Pj006737 for ; Tue, 9 Mar 2004 07:30:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29FThSJ024394 for ; Tue, 9 Mar 2004 07:29:44 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29FTh9Q038480 for ; Tue, 9 Mar 2004 07:29:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29FTheB038479; Tue, 9 Mar 2004 07:29:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403091529.i29FTheB038479@xorpc.icir.org> Date: Tue, 9 Mar 2004 7:29:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback_debug.hh callback_nodebug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/09 07:29:43 Modified files: xorp/libxorp/: callback-gen.py callback_debug.hh callback_nodebug.hh Log message: Strip path from name of generator script placed in generated file header. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Tue Mar 9 9:11:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 09:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29HC1ZK030489 for ; Tue, 9 Mar 2004 09:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29HC1SJ026786 for ; Tue, 9 Mar 2004 09:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29HC1Pj008683; Tue, 9 Mar 2004 09:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29HBwPj008673 for ; Tue, 9 Mar 2004 09:11:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29HBvSJ026783 for ; Tue, 9 Mar 2004 09:11:57 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29HBv9Q044119 for ; Tue, 9 Mar 2004 09:11:57 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29HBvej044118; Tue, 9 Mar 2004 09:11:57 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403091711.i29HBvej044118@xorpc.icir.org> Date: Tue, 9 Mar 2004 9:11:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/09 09:11:57 Modified files: xorp/rtrmgr/: cli.cc Log message: Fix input validation error that could cause xorpsh to crash _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Tue Mar 9 14:13:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 14:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29ME1ZK088897 for ; Tue, 9 Mar 2004 14:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29ME1QO030523 for ; Tue, 9 Mar 2004 14:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29ME0Pj016789; Tue, 9 Mar 2004 14:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MDgPj016777 for ; Tue, 9 Mar 2004 14:13:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MDgQO030521 for ; Tue, 9 Mar 2004 14:13:42 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MDg9Q090713 for ; Tue, 9 Mar 2004 14:13:42 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29MDgDO090712; Tue, 9 Mar 2004 14:13:42 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403092213.i29MDgDO090712@xorpc.icir.org> Date: Tue, 9 Mar 2004 14:13:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ packet_assembly.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/09 14:13:42 Modified files: xorp/rip/: packet_assembly.hh Log message: Add port independent constructors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Tue Mar 9 14:15:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 14:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MG1ZK089288 for ; Tue, 9 Mar 2004 14:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MG1QO030563 for ; Tue, 9 Mar 2004 14:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MG1Pj016841; Tue, 9 Mar 2004 14:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MF2Pj016815 for ; Tue, 9 Mar 2004 14:15:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MF2QO030540 for ; Tue, 9 Mar 2004 14:15:02 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MF29Q090819 for ; Tue, 9 Mar 2004 14:15:02 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29MF2rn090818; Tue, 9 Mar 2004 14:15:02 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403092215.i29MF2rn090818@xorpc.icir.org> Date: Tue, 9 Mar 2004 14:15:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/03/09 14:15:02 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Log message: Build rip_xif.{hh,cc}, ripng_xif.{hh,cc}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Tue Mar 9 14:16:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 14:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MH1ZK089512 for ; Tue, 9 Mar 2004 14:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MH1QO030585 for ; Tue, 9 Mar 2004 14:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MH1Pj016880; Tue, 9 Mar 2004 14:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MGHPj016857 for ; Tue, 9 Mar 2004 14:16:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MGGQO030571 for ; Tue, 9 Mar 2004 14:16:16 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MGG9Q090915 for ; Tue, 9 Mar 2004 14:16:16 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29MGGgx090914; Tue, 9 Mar 2004 14:16:16 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403092216.i29MGGgx090914@xorpc.icir.org> Date: Tue, 9 Mar 2004 14:16:16 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif ripng.xif xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh xorp/xrl/interfaces/ rip_xif.cc rip_xif.hh ripng_xif.cc ripng_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/09 14:16:16 Modified files: xorp/xrl/interfaces/: rip.xif ripng.xif xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Added files: xorp/xrl/interfaces/: rip_xif.cc rip_xif.hh ripng_xif.cc ripng_xif.hh Log message: Add rip_xif.{hh,cc}, ripng_xif.{hh,cc}. Make peer_last_active timestamp distinct field in get_peer_counters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Tue Mar 9 14:17:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Mar 2004 14:18:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MI0ZK089713 for ; Tue, 9 Mar 2004 14:18:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MI0QO030608 for ; Tue, 9 Mar 2004 14:18:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MI0Pj016925; Tue, 9 Mar 2004 14:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i29MH7Pj016893 for ; Tue, 9 Mar 2004 14:17:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MH7QO030591 for ; Tue, 9 Mar 2004 14:17:07 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i29MH79Q090970 for ; Tue, 9 Mar 2004 14:17:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i29MH7kF090969; Tue, 9 Mar 2004 14:17:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403092217.i29MH7kF090969@xorpc.icir.org> Date: Tue, 9 Mar 2004 14:17:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_common.hh xrl_target_rip.hh xrl_target_ripng.hh xrl_target_rip.cc xrl_target_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/09 14:17:07 Modified files: xorp/rip/: xrl_target_common.hh xrl_target_rip.hh xrl_target_ripng.hh xrl_target_rip.cc xrl_target_ripng.cc Log message: Make peer_last_active timestamp distinct field in get_peer_counters method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Wed Mar 10 10:32:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 10:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIX1ZK026917 for ; Wed, 10 Mar 2004 10:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIX168043913 for ; Wed, 10 Mar 2004 10:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AIX1Dq011976; Wed, 10 Mar 2004 10:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AIWcDq011945 for ; Wed, 10 Mar 2004 10:32:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIWc68043907 for ; Wed, 10 Mar 2004 10:32:38 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIWc9Q078188 for ; Wed, 10 Mar 2004 10:32:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2AIWcNV078187; Wed, 10 Mar 2004 10:32:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403101832.i2AIWcNV078187@xorpc.icir.org> Date: Wed, 10 Mar 2004 10:32:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/10 10:32:38 Modified files: xorp/xrl/targets/: ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh Log message: Add awol socket6_user.xif to ripng interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:10 2005 Subject: No subject Wed Mar 10 10:43:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 10:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIi1ZK029026 for ; Wed, 10 Mar 2004 10:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIi168044060 for ; Wed, 10 Mar 2004 10:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AIi1Dq012358; Wed, 10 Mar 2004 10:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AIhnDq012348 for ; Wed, 10 Mar 2004 10:43:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIhn68044056 for ; Wed, 10 Mar 2004 10:43:49 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AIhn9Q080504 for ; Wed, 10 Mar 2004 10:43:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2AIhn7H080503; Wed, 10 Mar 2004 10:43:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403101843.i2AIhn7H080503@xorpc.icir.org> Date: Wed, 10 Mar 2004 10:43:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/10 10:43:49 Modified files: xorp/rip/: port.cc Log message: User RIP_AF_CONSTANTS::IP_PORT rather than RIP_PORT in templatized packet reception code. Otherwise we wrongly discard RIPng packets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 14:54:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 14:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AMt1ZK077815 for ; Wed, 10 Mar 2004 14:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AMt068046964 for ; Wed, 10 Mar 2004 14:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AMt0Dq018215; Wed, 10 Mar 2004 14:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2AMsuDq018209 for ; Wed, 10 Mar 2004 14:54:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AMsu68046957 for ; Wed, 10 Mar 2004 14:54:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2AMst9Q090260 for ; Wed, 10 Mar 2004 14:54:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2AMst6J090259; Wed, 10 Mar 2004 14:54:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403102254.i2AMst6J090259@xorpc.icir.org> Date: Wed, 10 Mar 2004 14:54:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv4.hh ipv6.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/10 14:54:55 Modified files: xorp/libxorp/: ipv4.hh ipv6.hh Log message: Add typedefs to IP classes for sockaddr_inX and in_addrX. These are handy in templatized code that performs socket operations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 15:18:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 15:19:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANJ0ZK082482 for ; Wed, 10 Mar 2004 15:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANJ068047281 for ; Wed, 10 Mar 2004 15:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ANJ0Dq018760; Wed, 10 Mar 2004 15:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ANIjDq018747 for ; Wed, 10 Mar 2004 15:18:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANIj68047272 for ; Wed, 10 Mar 2004 15:18:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANIi9Q001270 for ; Wed, 10 Mar 2004 15:18:44 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ANIiop001256; Wed, 10 Mar 2004 15:18:44 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403102318.i2ANIiop001256@xorpc.icir.org> Date: Wed, 10 Mar 2004 15:18:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_cmds.hh xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/03/10 15:18:44 Modified files: xorp/fea/: xrl_socket_cmds.hh xrl_socket_server.cc Log message: Switch to templatized SockAddrType for argument to recvfrom. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 15:33:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 15:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANY1ZK085368 for ; Wed, 10 Mar 2004 15:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANY068047433 for ; Wed, 10 Mar 2004 15:34:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ANY0Dq019134; Wed, 10 Mar 2004 15:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ANX1Dq019103 for ; Wed, 10 Mar 2004 15:33:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANX168047431 for ; Wed, 10 Mar 2004 15:33:01 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ANX19Q009412 for ; Wed, 10 Mar 2004 15:33:01 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ANX1Ov009411; Wed, 10 Mar 2004 15:33:01 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403102333.i2ANX1Ov009411@xorpc.icir.org> Date: Wed, 10 Mar 2004 15:33:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_cmds.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/03/10 15:33:01 Modified files: xorp/fea/: xrl_socket_cmds.hh Log message: Compilation fix for gcc-3.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 16:04:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B051ZK091333 for ; Wed, 10 Mar 2004 16:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05168047802 for ; Wed, 10 Mar 2004 16:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B051Dq019881; Wed, 10 Mar 2004 16:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B04LDq019860 for ; Wed, 10 Mar 2004 16:04:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B04L68047785 for ; Wed, 10 Mar 2004 16:04:21 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B04L9Q012215 for ; Wed, 10 Mar 2004 16:04:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B04LFk012214; Wed, 10 Mar 2004 16:04:21 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110004.i2B04LFk012214@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:04:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ .cvsignore Makefile.am Makefile.in add_static addr_status delete_static rip_announcer.cc ripng_announcer.cc show_peer_stats.cc show_stats.cc xrl_rip_shell_funcs.sh ...xrl_ripng_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/03/10 16:04:21 Added files: xorp/rip/tools/: .cvsignore Makefile.am Makefile.in add_static addr_status delete_static rip_announcer.cc ripng_announcer.cc show_peer_stats.cc show_stats.cc xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Log message: o Add operational commands for show RIP/RIPng interface stats and show RIP/RIPng interface peer stats. o Add rip_announcer and ripng_announcer programs that act as simple peers. o Add testing shell scripts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 16:04:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B052ZK091348 for ; Wed, 10 Mar 2004 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05268047804 for ; Wed, 10 Mar 2004 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B052Dq019892; Wed, 10 Mar 2004 16:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B04qDq019874 for ; Wed, 10 Mar 2004 16:04:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B04q68047791 for ; Wed, 10 Mar 2004 16:04:52 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B04q9Q012286 for ; Wed, 10 Mar 2004 16:04:52 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B04p8A012285; Wed, 10 Mar 2004 16:04:51 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110004.i2B04p8A012285@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:04:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 04/03/10 16:04:51 Modified files: ./: configure configure.in Log message: Add rip/tools/Makefile to build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:11 2005 Subject: No subject Wed Mar 10 16:05:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B061ZK091574 for ; Wed, 10 Mar 2004 16:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B06168047846 for ; Wed, 10 Mar 2004 16:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B061Dq019926; Wed, 10 Mar 2004 16:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B05UDq019910 for ; Wed, 10 Mar 2004 16:05:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05U68047834 for ; Wed, 10 Mar 2004 16:05:30 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05U9Q012406 for ; Wed, 10 Mar 2004 16:05:30 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B05UHa012405; Wed, 10 Mar 2004 16:05:30 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110005.i2B05UHa012405@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:05:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/10 16:05:30 Modified files: xorp/rip/: Makefile.am Makefile.in Log message: Add tools directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Wed Mar 10 16:05:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:06:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B062ZK091589 for ; Wed, 10 Mar 2004 16:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B06268047848 for ; Wed, 10 Mar 2004 16:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B062Dq019937; Wed, 10 Mar 2004 16:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B05hDq019917 for ; Wed, 10 Mar 2004 16:05:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05h68047840 for ; Wed, 10 Mar 2004 16:05:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B05h9Q012452 for ; Wed, 10 Mar 2004 16:05:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B05hQG012451; Wed, 10 Mar 2004 16:05:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110005.i2B05hQG012451@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:05:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/10 16:05:43 Modified files: xorp/rip/: TODO Log message: Bring up to date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Wed Mar 10 16:14:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0F1ZK093336 for ; Wed, 10 Mar 2004 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0F168047936 for ; Wed, 10 Mar 2004 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B0F1Dq020102; Wed, 10 Mar 2004 16:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B0F0Dq020096 for ; Wed, 10 Mar 2004 16:15:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0Ex68047931 for ; Wed, 10 Mar 2004 16:14:59 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0Ex9Q013207 for ; Wed, 10 Mar 2004 16:14:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B0Ex9A013206; Wed, 10 Mar 2004 16:14:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110014.i2B0Ex9A013206@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:14:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/10 16:14:59 Modified files: xorp/rip/: TODO Log message: YATI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Wed Mar 10 16:19:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Mar 2004 16:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0K1ZK094301 for ; Wed, 10 Mar 2004 16:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0K168048013 for ; Wed, 10 Mar 2004 16:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B0K1Dq020199; Wed, 10 Mar 2004 16:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2B0JaDq020183 for ; Wed, 10 Mar 2004 16:19:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0Ja68048008 for ; Wed, 10 Mar 2004 16:19:36 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2B0Ja9Q013584 for ; Wed, 10 Mar 2004 16:19:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2B0JaUb013583; Wed, 10 Mar 2004 16:19:36 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403110019.i2B0JaUb013583@xorpc.icir.org> Date: Wed, 10 Mar 2004 16:19:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/03/10 16:19:36 Modified files: xorp/rip/tools/: Makefile.am Makefile.in Log message: Fix cross directory build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Thu Mar 11 6:39:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Mar 2004 06:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BEe1ZK061079 for ; Thu, 11 Mar 2004 06:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BEe168056508 for ; Thu, 11 Mar 2004 06:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2BEe1Dq007252; Thu, 11 Mar 2004 06:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2BEdhDq007241 for ; Thu, 11 Mar 2004 06:39:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BEdh68056502 for ; Thu, 11 Mar 2004 06:39:43 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BEdh9Q082157 for ; Thu, 11 Mar 2004 06:39:43 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2BEdhHM082156; Thu, 11 Mar 2004 06:39:43 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403111439.i2BEdhHM082156@xorpc.icir.org> Date: Thu, 11 Mar 2004 6:39:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ ripng_announcer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/03/11 06:39:43 Modified files: xorp/rip/tools/: ripng_announcer.cc Log message: #ifdef out IPv6 libcomm calls if HAVE_IPV6 not defined. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Thu Mar 11 14:31:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Mar 2004 14:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BMW1ZK054099 for ; Thu, 11 Mar 2004 14:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BMW168063458 for ; Thu, 11 Mar 2004 14:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2BMW0Dq017886; Thu, 11 Mar 2004 14:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2BMVjDq017853 for ; Thu, 11 Mar 2004 14:31:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BMVj68063455 for ; Thu, 11 Mar 2004 14:31:45 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2BMVj9Q099076 for ; Thu, 11 Mar 2004 14:31:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2BMVjkU099075; Thu, 11 Mar 2004 14:31:45 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403112231.i2BMVjkU099075@xorpc.icir.org> Date: Thu, 11 Mar 2004 14:31:45 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh template_tree.cc template_tree.hh template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/11 14:31:45 Modified files: xorp/rtrmgr/: cli.cc cli.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh template_tree.cc template_tree.hh template_tree_node.hh Log message: A complete re-write of the xorpsh interface for direct text entry of new configurations. The old code was really limited in the subset of the valid syntax it would accept. This version is much more flexible and powerful, and should accept the vast majority of the legal syntax a user is likely to want to type. Hopefully this will be a lot less annoying to use. Status: I'm not aware of any bugs, but I'm sure there must be some - testing hasn't been really thorough. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:26:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNR1ZK033542 for ; Mon, 15 Mar 2004 15:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNR1xF008427 for ; Mon, 15 Mar 2004 15:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNR15R015380; Mon, 15 Mar 2004 15:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNQh5R015367 for ; Mon, 15 Mar 2004 15:26:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNQhxF008423 for ; Mon, 15 Mar 2004 15:26:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNQhjl051341 for ; Mon, 15 Mar 2004 15:26:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNQhAH051340; Mon, 15 Mar 2004 15:26:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152326.i2FNQhAH051340@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:26:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/interfaces/ fea_fib.xif fea_fib_client.xif fea_fib_client_xif.cc fea_fib_client_xif.hh fea_fib_xif.cc fea_fib_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:26:43 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: fea_fib.xif fea_fib_client.xif fea_fib_client_xif.cc fea_fib_client_xif.hh fea_fib_xif.cc fea_fib_xif.hh Log message: Added fea_fib.xif and fea_fib_client.xif XRL interfaces _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:28:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNT1ZK034029 for ; Mon, 15 Mar 2004 15:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNT0xF008441 for ; Mon, 15 Mar 2004 15:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNT05R015430; Mon, 15 Mar 2004 15:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNS75R015410 for ; Mon, 15 Mar 2004 15:28:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNS7xF008436 for ; Mon, 15 Mar 2004 15:28:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNS7jl051429 for ; Mon, 15 Mar 2004 15:28:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNS7Rr051428; Mon, 15 Mar 2004 15:28:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152328.i2FNS7Rr051428@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:28:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:28:07 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Log message: Added fea_fib/0.1 to the list of XRL interfaces supported by the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:30:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNV2ZK034535 for ; Mon, 15 Mar 2004 15:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNV2xF008480 for ; Mon, 15 Mar 2004 15:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNV15R015514; Mon, 15 Mar 2004 15:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNUv5R015506 for ; Mon, 15 Mar 2004 15:30:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNUvxF008478 for ; Mon, 15 Mar 2004 15:30:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNUvjl051587 for ; Mon, 15 Mar 2004 15:30:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNUvvL051586; Mon, 15 Mar 2004 15:30:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152330.i2FNUvvL051586@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:30:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:30:57 Modified files: xorp/fea/: xrl_target.hh xrl_target.cc Log message: * Added the stub methods for fea_fib/0.1 XRL interface * Added *XrlRouter to the XrlFeaTarget:_xftm constructor arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:31:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNW2ZK034809 for ; Mon, 15 Mar 2004 15:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNW1xF008497 for ; Mon, 15 Mar 2004 15:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNW15R015557; Mon, 15 Mar 2004 15:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNVk5R015541 for ; Mon, 15 Mar 2004 15:31:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNVkxF008493 for ; Mon, 15 Mar 2004 15:31:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNVkjl051643 for ; Mon, 15 Mar 2004 15:31:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNVkRa051642; Mon, 15 Mar 2004 15:31:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152331.i2FNVkRa051642@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:31:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:31:46 Modified files: xorp/fea/: fte.hh Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:33:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:34:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNY7ZK035315 for ; Mon, 15 Mar 2004 15:34:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNY6xF008530 for ; Mon, 15 Mar 2004 15:34:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNY55R015647; Mon, 15 Mar 2004 15:34:06 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNXg5R015609 for ; Mon, 15 Mar 2004 15:33:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNXgxF008526 for ; Mon, 15 Mar 2004 15:33:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNXgjl051782 for ; Mon, 15 Mar 2004 15:33:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNXg4e051781; Mon, 15 Mar 2004 15:33:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152333.i2FNXg4e051781@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:33:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_fti.hh xrl_fti.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:33:42 Modified files: xorp/fea/: xrl_fti.hh xrl_fti.cc Log message: Added support to the XrlFtiTransactionManager for managing FIB clients (i.e., clients to receive updates whenever the Forwarding Information Base changes). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:34:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ1ZK035547 for ; Mon, 15 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ1xF008549 for ; Mon, 15 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNZ05R015697; Mon, 15 Mar 2004 15:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNYc5R015670 for ; Mon, 15 Mar 2004 15:34:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNYbxF008538 for ; Mon, 15 Mar 2004 15:34:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNYbjl051865 for ; Mon, 15 Mar 2004 15:34:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNYbU1051864; Mon, 15 Mar 2004 15:34:37 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152334.i2FNYbU1051864@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:34:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:34:37 Modified files: xorp/fea/: Makefile.am Makefile.in Log message: Added libfeafibclientxif.a to the list of libraries to link against. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:12 2005 Subject: No subject Mon Mar 15 15:34:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ1ZK035562 for ; Mon, 15 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ1xF008551 for ; Mon, 15 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNZ15R015708; Mon, 15 Mar 2004 15:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNYs5R015688 for ; Mon, 15 Mar 2004 15:34:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNYrxF008544 for ; Mon, 15 Mar 2004 15:34:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNYrjl051915 for ; Mon, 15 Mar 2004 15:34:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNYr1O051914; Mon, 15 Mar 2004 15:34:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152334.i2FNYr1O051914@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:34:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:34:53 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Added libfeafibclientxif.a to the list of libraries to link against. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Mon Mar 15 15:35:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNa0ZK035840 for ; Mon, 15 Mar 2004 15:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNa0xF008587 for ; Mon, 15 Mar 2004 15:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNa05R015768; Mon, 15 Mar 2004 15:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNZA5R015722 for ; Mon, 15 Mar 2004 15:35:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ9xF008570 for ; Mon, 15 Mar 2004 15:35:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNZ9jl051975 for ; Mon, 15 Mar 2004 15:35:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNZ94N051974; Mon, 15 Mar 2004 15:35:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152335.i2FNZ94N051974@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:35:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:35:09 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Added libfeafibclientxif.a to the list of libraries to link against. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Mon Mar 15 15:36:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Mar 2004 15:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNb1ZK036095 for ; Mon, 15 Mar 2004 15:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNb1xF008605 for ; Mon, 15 Mar 2004 15:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNb05R015792; Mon, 15 Mar 2004 15:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2FNaV5R015785 for ; Mon, 15 Mar 2004 15:36:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNaVxF008596 for ; Mon, 15 Mar 2004 15:36:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2FNaVjl052094 for ; Mon, 15 Mar 2004 15:36:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2FNaVf9052093; Mon, 15 Mar 2004 15:36:31 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403152336.i2FNaVf9052093@xorpc.icir.org> Date: Mon, 15 Mar 2004 15:36:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.cc xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/15 15:36:31 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.cc xorp/static_routes/: xrl_static_routes_node.cc Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 13:40:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 13:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLf1ZK015049 for ; Tue, 16 Mar 2004 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLf1tZ006949 for ; Tue, 16 Mar 2004 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLf1HH015790; Tue, 16 Mar 2004 13:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLe8HH015757 for ; Tue, 16 Mar 2004 13:40:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLe8tZ006939 for ; Tue, 16 Mar 2004 13:40:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLe8RS060811 for ; Tue, 16 Mar 2004 13:40:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2GLe8kg060810; Tue, 16 Mar 2004 13:40:08 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403162140.i2GLe8kg060810@xorpc.icir.org> Date: Tue, 16 Mar 2004 13:40:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 13:40:08 Modified files: xorp/fea/: fte.hh Log message: Add new field Fti::_is_deleted (and related access methods) that is set to true if the entry is marked as deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 13:43:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 13:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLi1ZK015658 for ; Tue, 16 Mar 2004 13:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLi0tZ006984 for ; Tue, 16 Mar 2004 13:44:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLi0HH015905; Tue, 16 Mar 2004 13:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLhLHH015891 for ; Tue, 16 Mar 2004 13:43:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLhLtZ006981 for ; Tue, 16 Mar 2004 13:43:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLhLRS060968 for ; Tue, 16 Mar 2004 13:43:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2GLhL8D060967; Tue, 16 Mar 2004 13:43:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403162143.i2GLhL8D060967@xorpc.icir.org> Date: Tue, 16 Mar 2004 13:43:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_fti.hh xrl_fti.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 13:43:21 Modified files: xorp/fea/: xrl_fti.hh xrl_fti.cc Log message: Use method Fte::is_deleted() to sort the routing entries to add or delete rather than using a pair of . _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 13:44:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 13:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLj1ZK015858 for ; Tue, 16 Mar 2004 13:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLj1tZ006998 for ; Tue, 16 Mar 2004 13:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLj0HH015948; Tue, 16 Mar 2004 13:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLiaHH015931 for ; Tue, 16 Mar 2004 13:44:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLiatZ006992 for ; Tue, 16 Mar 2004 13:44:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLiaRS061039 for ; Tue, 16 Mar 2004 13:44:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2GLiaNG061038; Tue, 16 Mar 2004 13:44:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403162144.i2GLiaNG061038@xorpc.icir.org> Date: Tue, 16 Mar 2004 13:44:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 13:44:36 Modified files: xorp/fea/: ifconfig_get.hh Log message: * Kdoc-ify some of the methods * Move some of the methods declaration from public to protected or private _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 13:45:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 13:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLk1ZK016092 for ; Tue, 16 Mar 2004 13:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLk1tZ007035 for ; Tue, 16 Mar 2004 13:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLk1HH015998; Tue, 16 Mar 2004 13:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLjJHH015967 for ; Tue, 16 Mar 2004 13:45:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLjJtZ007027 for ; Tue, 16 Mar 2004 13:45:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLjJRS061109 for ; Tue, 16 Mar 2004 13:45:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2GLjJVJ061108; Tue, 16 Mar 2004 13:45:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403162145.i2GLjJVJ061108@xorpc.icir.org> Date: Tue, 16 Mar 2004 13:45:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 13:45:19 Modified files: xorp/fea/: fticonfig_entry_get.hh Log message: * Kdoc-ify some of the methods * Move some of the methods from public to protected _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 13:45:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 13:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLk2ZK016107 for ; Tue, 16 Mar 2004 13:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLk2tZ007037 for ; Tue, 16 Mar 2004 13:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLk2HH016010; Tue, 16 Mar 2004 13:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2GLjqHH015984 for ; Tue, 16 Mar 2004 13:45:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLjptZ007033 for ; Tue, 16 Mar 2004 13:45:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2GLjpRS061144 for ; Tue, 16 Mar 2004 13:45:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2GLjp2A061143; Tue, 16 Mar 2004 13:45:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403162145.i2GLjp2A061143@xorpc.icir.org> Date: Tue, 16 Mar 2004 13:45:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 13:45:51 Modified files: xorp/fea/: fticonfig_table_get.hh Log message: * Kdoc-ify some of the methods * Move some of the methods declaration from public to protected _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 23:16:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:17:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7H2ZK034382 for ; Tue, 16 Mar 2004 23:17:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7H1tZ012967 for ; Tue, 16 Mar 2004 23:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7H1HH027754; Tue, 16 Mar 2004 23:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7GFHH027726 for ; Tue, 16 Mar 2004 23:16:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7GEtZ012963 for ; Tue, 16 Mar 2004 23:16:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7GERS008984 for ; Tue, 16 Mar 2004 23:16:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7GECf008983; Tue, 16 Mar 2004 23:16:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170716.i2H7GECf008983@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:16:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:16:14 Modified files: xorp/fea/: ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 23:18:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7J1ZK034772 for ; Tue, 16 Mar 2004 23:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7J1tZ012984 for ; Tue, 16 Mar 2004 23:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7J1HH027793; Tue, 16 Mar 2004 23:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7ItHH027787 for ; Tue, 16 Mar 2004 23:18:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7IstZ012980 for ; Tue, 16 Mar 2004 23:18:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7IsRS009202 for ; Tue, 16 Mar 2004 23:18:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7IsP1009201; Tue, 16 Mar 2004 23:18:54 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170718.i2H7IsP1009201@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:18:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:18:54 Modified files: xorp/fea/: routing_socket_utils.cc Log message: Changes to RtmUtils::rtm_get_to_fte_cfg() : * Modify it to consider RTM_ADD, RTM_DELETE, and RTM_CHANGE routing entries (in addition to RTM_GET) * If the RTM routing entry type is RTM_DELETE or if the routing entry is not UP, then mark the result Fte entry as deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:13 2005 Subject: No subject Tue Mar 16 23:20:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7L1ZK035186 for ; Tue, 16 Mar 2004 23:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7L1tZ013025 for ; Tue, 16 Mar 2004 23:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7L1HH027842; Tue, 16 Mar 2004 23:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7KjHH027829 for ; Tue, 16 Mar 2004 23:20:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7KitZ013021 for ; Tue, 16 Mar 2004 23:20:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7KiRS009346 for ; Tue, 16 Mar 2004 23:20:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7Ki33009345; Tue, 16 Mar 2004 23:20:44 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170720.i2H7Ki33009345@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:20:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:20:44 Modified files: xorp/fea/: fticonfig_entry_get.hh Log message: Add a boolean flag argument to parse_buffer_rtm() and parse_buffer_nlm(): if that flag is set to true, then the above methods should consider only the "get" routing entries (e.g., that were explicitly requested from the kernel). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:22:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7N1ZK035581 for ; Tue, 16 Mar 2004 23:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7N0tZ013038 for ; Tue, 16 Mar 2004 23:23:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7N0HH027888; Tue, 16 Mar 2004 23:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7MrHH027882 for ; Tue, 16 Mar 2004 23:22:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7MrtZ013036 for ; Tue, 16 Mar 2004 23:22:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7MrRS009479 for ; Tue, 16 Mar 2004 23:22:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7MrIt009478; Tue, 16 Mar 2004 23:22:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170722.i2H7MrIt009478@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:22:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:22:52 Modified files: xorp/fea/: fticonfig_entry_get_netlink.cc Log message: Set the "is_nlm_get_only" flag of parse_buffer_nlm() to "true". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:23:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7O1ZK035788 for ; Tue, 16 Mar 2004 23:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7O1tZ013051 for ; Tue, 16 Mar 2004 23:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7O0HH027914; Tue, 16 Mar 2004 23:24:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7NsHH027907 for ; Tue, 16 Mar 2004 23:23:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7NstZ013049 for ; Tue, 16 Mar 2004 23:23:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7NrRS009592 for ; Tue, 16 Mar 2004 23:23:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7NrR8009591; Tue, 16 Mar 2004 23:23:53 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170723.i2H7NrR8009591@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:23:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_get_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:23:53 Modified files: xorp/fea/: fticonfig_entry_get_rtsock.cc Log message: Set the "is_rtm_get_only" flag of parse_buffer_rtm() to "true". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:25:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7Q1ZK036185 for ; Tue, 16 Mar 2004 23:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7Q1tZ013093 for ; Tue, 16 Mar 2004 23:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7Q1HH027966; Tue, 16 Mar 2004 23:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7PeHH027953 for ; Tue, 16 Mar 2004 23:25:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7PetZ013088 for ; Tue, 16 Mar 2004 23:25:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7PdRS009754 for ; Tue, 16 Mar 2004 23:25:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7PdMa009753; Tue, 16 Mar 2004 23:25:39 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170725.i2H7PdMa009753@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:25:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:25:39 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc Log message: Add a "bool is_nlm_get_only" argument to FtiConfigEntryGet::parse_buffer_nlm(): If true, then consider only the "get" entries returned by RTM_GETROUTE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:28:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:29:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7T0ZK036781 for ; Tue, 16 Mar 2004 23:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7T0tZ013119 for ; Tue, 16 Mar 2004 23:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7T0HH028024; Tue, 16 Mar 2004 23:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7SmHH028012 for ; Tue, 16 Mar 2004 23:28:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7SmtZ013117 for ; Tue, 16 Mar 2004 23:28:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7SmRS009976 for ; Tue, 16 Mar 2004 23:28:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7SlTK009975; Tue, 16 Mar 2004 23:28:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170728.i2H7SlTK009975@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:28:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:28:47 Modified files: xorp/fea/: fticonfig_entry_parse_rtm.cc Log message: Add a "bool is_nlm_get_only" argument to FtiConfigEntryGet::parse_buffer_rtm(): If true, then consider only the RTM_GET entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:31:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W1ZK037366 for ; Tue, 16 Mar 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W0tZ013174 for ; Tue, 16 Mar 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7W0HH028084; Tue, 16 Mar 2004 23:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7VGHH028073 for ; Tue, 16 Mar 2004 23:31:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7VGtZ013164 for ; Tue, 16 Mar 2004 23:31:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7VGRS010186 for ; Tue, 16 Mar 2004 23:31:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7VGoP010185; Tue, 16 Mar 2004 23:31:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170731.i2H7VGoP010185@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:31:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:31:16 Modified files: xorp/fea/: fticonfig_table_get.hh Log message: Add a boolean flag argument to parse_buffer_rtm() and parse_buffer_nlm(): if that flag is set to true, then the above methods should consider only the "get" routing entries (e.g., that were explicitly requested from the kernel). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:31:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W1ZK037381 for ; Tue, 16 Mar 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W1tZ013176 for ; Tue, 16 Mar 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7W1HH028095; Tue, 16 Mar 2004 23:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7VgHH028078 for ; Tue, 16 Mar 2004 23:31:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7VftZ013169 for ; Tue, 16 Mar 2004 23:31:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7VfRS010242 for ; Tue, 16 Mar 2004 23:31:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7Vf0L010241; Tue, 16 Mar 2004 23:31:41 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170731.i2H7Vf0L010241@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:31:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:31:41 Modified files: xorp/fea/: fticonfig_table_get_netlink.cc Log message: Set the "is_nlm_get_only" flag of parse_buffer_nlm() to "true". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:32:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:33:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7X0ZK037592 for ; Tue, 16 Mar 2004 23:33:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7X0tZ013196 for ; Tue, 16 Mar 2004 23:33:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7X0HH028131; Tue, 16 Mar 2004 23:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7W3HH028106 for ; Tue, 16 Mar 2004 23:32:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W3tZ013178 for ; Tue, 16 Mar 2004 23:32:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7W3RS010297 for ; Tue, 16 Mar 2004 23:32:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7W3fR010296; Tue, 16 Mar 2004 23:32:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170732.i2H7W3fR010296@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:32:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_get_sysctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:32:03 Modified files: xorp/fea/: fticonfig_table_get_sysctl.cc Log message: Set the "is_rtm_get_only" flag of parse_buffer_rtm() to "true". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:32:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7X1ZK037607 for ; Tue, 16 Mar 2004 23:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7X1tZ013198 for ; Tue, 16 Mar 2004 23:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7X1HH028142; Tue, 16 Mar 2004 23:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7WtHH028125 for ; Tue, 16 Mar 2004 23:32:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7WttZ013194 for ; Tue, 16 Mar 2004 23:32:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7WtRS010392 for ; Tue, 16 Mar 2004 23:32:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7WtF8010391; Tue, 16 Mar 2004 23:32:55 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170732.i2H7WtF8010391@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:32:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:32:55 Modified files: xorp/fea/: fticonfig_table_parse_nlm.cc Log message: Add a "bool is_nlm_get_only" argument to FtiConfigTableGet::parse_buffer_nlm(): If true, then consider only the "get" entries returned by RTM_GETROUTE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:33:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7Y2ZK037814 for ; Tue, 16 Mar 2004 23:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7Y1tZ013222 for ; Tue, 16 Mar 2004 23:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7Y1HH028194; Tue, 16 Mar 2004 23:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7XWHH028163 for ; Tue, 16 Mar 2004 23:33:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7XWtZ013214 for ; Tue, 16 Mar 2004 23:33:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7XWRS010477 for ; Tue, 16 Mar 2004 23:33:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7XWo1010476; Tue, 16 Mar 2004 23:33:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170733.i2H7XWo1010476@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:33:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:33:32 Modified files: xorp/fea/: fticonfig_table_parse_rtm.cc Log message: Add a "bool is_rtm_get_only" argument to FtiConfigEntryGet::parse_buffer_rtm(): If true, then consider only the RTM_GET entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:14 2005 Subject: No subject Tue Mar 16 23:35:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7a1ZK038235 for ; Tue, 16 Mar 2004 23:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7a1tZ013256 for ; Tue, 16 Mar 2004 23:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7a1HH028383; Tue, 16 Mar 2004 23:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7ZwHH028376 for ; Tue, 16 Mar 2004 23:35:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7ZwtZ013254 for ; Tue, 16 Mar 2004 23:35:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7ZvRS010657 for ; Tue, 16 Mar 2004 23:35:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7Zvje010656; Tue, 16 Mar 2004 23:35:57 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170735.i2H7Zvje010656@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:35:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_observer_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:35:57 Modified files: xorp/fea/: fticonfig_table_observer_rtsock.cc Log message: Parse the data that is received by the FtiConfigTableObserverRtsock observer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Tue Mar 16 23:36:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:37:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7b0ZK038416 for ; Tue, 16 Mar 2004 23:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7b0tZ013263 for ; Tue, 16 Mar 2004 23:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7b0HH028410; Tue, 16 Mar 2004 23:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7a9HH028395 for ; Tue, 16 Mar 2004 23:36:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7a9tZ013260 for ; Tue, 16 Mar 2004 23:36:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7a9RS010702 for ; Tue, 16 Mar 2004 23:36:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7a9lc010701; Tue, 16 Mar 2004 23:36:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170736.i2H7a9lc010701@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:36:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_observer_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:36:09 Modified files: xorp/fea/: fticonfig_table_observer_netlink.cc Log message: Parse the data that is received by the FtiConfigTableObserverNetlink observer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Tue Mar 16 23:51:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Mar 2004 23:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7q1ZK041360 for ; Tue, 16 Mar 2004 23:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7q1tZ013394 for ; Tue, 16 Mar 2004 23:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7q0HH028721; Tue, 16 Mar 2004 23:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H7p0HH028708 for ; Tue, 16 Mar 2004 23:51:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7p0tZ013389 for ; Tue, 16 Mar 2004 23:51:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H7p0RS011511 for ; Tue, 16 Mar 2004 23:51:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H7p04R011510; Tue, 16 Mar 2004 23:51:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170751.i2H7p04R011510@xorpc.icir.org> Date: Tue, 16 Mar 2004 23:51:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_rtm.cc fticonfig_table_parse_rtm.cc routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/16 23:51:00 Modified files: xorp/fea/: fticonfig_entry_parse_rtm.cc fticonfig_table_parse_rtm.cc routing_socket_utils.cc Log message: Ignore routing entries with an error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 0:13:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 00:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8E1ZK046455 for ; Wed, 17 Mar 2004 00:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8E1tZ013607 for ; Wed, 17 Mar 2004 00:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H8E1HH029126; Wed, 17 Mar 2004 00:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H8D2HH029116 for ; Wed, 17 Mar 2004 00:13:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8D1tZ013602 for ; Wed, 17 Mar 2004 00:13:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8D1RS012947 for ; Wed, 17 Mar 2004 00:13:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H8D19U012946; Wed, 17 Mar 2004 00:13:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170813.i2H8D19U012946@xorpc.icir.org> Date: Wed, 17 Mar 2004 0:13:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc netlink_socket_utils.cc netlink_socket_utils.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/17 00:13:01 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc netlink_socket_utils.cc netlink_socket_utils.hh Log message: * Pass the netlink header as an argument to NlmUtils::nlm_get_to_fte_cfg() * Mark the Fte entry appropriately if it was deleted. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 0:17:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 00:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8I1ZK047442 for ; Wed, 17 Mar 2004 00:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8I1tZ013664 for ; Wed, 17 Mar 2004 00:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H8I1HH029266; Wed, 17 Mar 2004 00:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2H8HKHH029227 for ; Wed, 17 Mar 2004 00:17:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8HJtZ013659 for ; Wed, 17 Mar 2004 00:17:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2H8HJRS013238 for ; Wed, 17 Mar 2004 00:17:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2H8HJw9013237; Wed, 17 Mar 2004 00:17:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403170817.i2H8HJw9013237@xorpc.icir.org> Date: Wed, 17 Mar 2004 0:17:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/17 00:17:19 Modified files: xorp/fea/: fticonfig_table_parse_nlm.cc Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:35:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0a1ZK047433 for ; Wed, 17 Mar 2004 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0a1tZ029398 for ; Wed, 17 Mar 2004 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0a1HH022849; Wed, 17 Mar 2004 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0ZSHH022827 for ; Wed, 17 Mar 2004 16:35:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0ZStZ029390 for ; Wed, 17 Mar 2004 16:35:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0ZSRS062346 for ; Wed, 17 Mar 2004 16:35:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0ZSdx062344; Wed, 17 Mar 2004 16:35:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180035.i2I0ZSdx062344@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:35:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:35:28 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: * Fix the kdoc_xrl_interfaces() library name to correspond to the name it is used by everywhere. * Fix the kdoc_libfeaclient() description name to reflect better its content. * Add entries for fib2mrib and static_routes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:36:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0b1ZK047637 for ; Wed, 17 Mar 2004 16:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0b1tZ029418 for ; Wed, 17 Mar 2004 16:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0b0HH022898; Wed, 17 Mar 2004 16:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0aUHH022869 for ; Wed, 17 Mar 2004 16:36:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0aUtZ029408 for ; Wed, 17 Mar 2004 16:36:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0aURS062512 for ; Wed, 17 Mar 2004 16:36:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0aU0H062511; Wed, 17 Mar 2004 16:36:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180036.i2I0aU0H062511@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:36:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:36:30 Modified files: xorp/cli/: Makefile.am Makefile.in Log message: Remove libcommonxif.a from the list of libraries to link against, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:38:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:39:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0d0ZK048017 for ; Wed, 17 Mar 2004 16:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0d0tZ029444 for ; Wed, 17 Mar 2004 16:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0d0HH022991; Wed, 17 Mar 2004 16:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0clHH022978 for ; Wed, 17 Mar 2004 16:38:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0cltZ029440 for ; Wed, 17 Mar 2004 16:38:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0clRS062741 for ; Wed, 17 Mar 2004 16:38:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0clGg062740; Wed, 17 Mar 2004 16:38:47 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180038.i2I0clGg062740@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:38:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc xrl_cli_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:38:47 Modified files: xorp/cli/: xrl_cli_node.cc xrl_cli_node.hh Log message: Class XrlCliNode doesn't need to inherit from class XrlCliProcessorV0p1Client. Instead, create a new private member _xrl_cli_processor_client of that type, and use that member instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:39:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0e1ZK048233 for ; Wed, 17 Mar 2004 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0e1tZ029464 for ; Wed, 17 Mar 2004 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0e1HH023050; Wed, 17 Mar 2004 16:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0dNHH023010 for ; Wed, 17 Mar 2004 16:39:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0dNtZ029456 for ; Wed, 17 Mar 2004 16:39:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0dMRS062824 for ; Wed, 17 Mar 2004 16:39:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0dMci062823; Wed, 17 Mar 2004 16:39:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180039.i2I0dMci062823@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:39:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:39:22 Modified files: xorp/fea/: Makefile.am Makefile.in Log message: Remove libcommonxif.a from the list of libraries to link against, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:43:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0i1ZK048952 for ; Wed, 17 Mar 2004 16:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0i1tZ029530 for ; Wed, 17 Mar 2004 16:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0i1HH023135; Wed, 17 Mar 2004 16:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0hbHH023126 for ; Wed, 17 Mar 2004 16:43:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0hbtZ029524 for ; Wed, 17 Mar 2004 16:43:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0haRS063244 for ; Wed, 17 Mar 2004 16:43:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0haxm063243; Wed, 17 Mar 2004 16:43:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180043.i2I0haxm063243@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:43:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xrl_mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:43:36 Modified files: xorp/fea/: xrl_mfea_node.cc xrl_mfea_node.hh Log message: * Remove inheritance from class XrlCommonV0p1Client, because it is not needed. * Don't include file "common_xif.hh", because it is not needed * Class XrlMfeaNode doesn't need to inherit from classes XrlMfeaClientV0p1Client and XrlCliManagerV0p1Client. Instead, create new private members of those classes and use those members instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:15 2005 Subject: No subject Wed Mar 17 16:44:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0j1ZK049135 for ; Wed, 17 Mar 2004 16:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0j1tZ029554 for ; Wed, 17 Mar 2004 16:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0j1HH023172; Wed, 17 Mar 2004 16:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0iBHH023147 for ; Wed, 17 Mar 2004 16:44:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0iBtZ029533 for ; Wed, 17 Mar 2004 16:44:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0iBRS063349 for ; Wed, 17 Mar 2004 16:44:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0iBMD063348; Wed, 17 Mar 2004 16:44:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180044.i2I0iBMD063348@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:44:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:44:11 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Remove libcommonxif.a from the list of libraries to link against, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Wed Mar 17 16:45:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0k1ZK049335 for ; Wed, 17 Mar 2004 16:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0k1tZ029584 for ; Wed, 17 Mar 2004 16:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0k1HH023255; Wed, 17 Mar 2004 16:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0jXHH023214 for ; Wed, 17 Mar 2004 16:45:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0jWtZ029578 for ; Wed, 17 Mar 2004 16:45:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0jWRS063551 for ; Wed, 17 Mar 2004 16:45:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0jWvd063550; Wed, 17 Mar 2004 16:45:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180045.i2I0jWvd063550@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:45:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:45:32 Modified files: xorp/mld6igmp/: xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: * Remove inheritance from class XrlCommonV0p1Client, because it is not needed. * Don't include file "common_xif.hh", because it is not needed * Class XrlMld6igmpNode doesn't need to inherit from classes XrlMfeaV0p1Client, XrlCliManagerV0p1Client, and XrlMld6igmpClientV0p1Client. Instead, create new private members of those classes and use those members instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Wed Mar 17 16:45:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0k2ZK049350 for ; Wed, 17 Mar 2004 16:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0k2tZ029586 for ; Wed, 17 Mar 2004 16:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0k2HH023266; Wed, 17 Mar 2004 16:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0jxHH023248 for ; Wed, 17 Mar 2004 16:45:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0jxtZ029582 for ; Wed, 17 Mar 2004 16:45:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0jxRS063603 for ; Wed, 17 Mar 2004 16:45:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0jxH7063600; Wed, 17 Mar 2004 16:45:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180045.i2I0jxH7063600@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:45:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:45:59 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Remove libcommonxif.a from the list of libraries to link against, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Wed Mar 17 16:47:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 16:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0m1ZK049705 for ; Wed, 17 Mar 2004 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0m1tZ029613 for ; Wed, 17 Mar 2004 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0m0HH023308; Wed, 17 Mar 2004 16:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I0lIHH023292 for ; Wed, 17 Mar 2004 16:47:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0lItZ029609 for ; Wed, 17 Mar 2004 16:47:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I0lIRS063779 for ; Wed, 17 Mar 2004 16:47:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I0lIfq063778; Wed, 17 Mar 2004 16:47:18 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180047.i2I0lIfq063778@xorpc.icir.org> Date: Wed, 17 Mar 2004 16:47:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/17 16:47:18 Modified files: xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh Log message: * Remove inheritance from class XrlCommonV0p1Client, because it is not needed. * Don't include file "common_xif.hh", because it is not needed * Class XrlPimNode doesn't need to inherit from classes XrlMfeaV0p1Client, XrlRibV0p1Client, XrlMld6igmpV0p1Client, and XrlCliManagerV0p1Client. Instead, create new private members of those classes and use those members instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Wed Mar 17 20:55:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Mar 2004 20:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I4u2ZK004982 for ; Wed, 17 Mar 2004 20:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I4u1BR032303 for ; Wed, 17 Mar 2004 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I4u0HH028380; Wed, 17 Mar 2004 20:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I4tmHH028366 for ; Wed, 17 Mar 2004 20:55:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I4tmBR032294 for ; Wed, 17 Mar 2004 20:55:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I4tmRS092923 for ; Wed, 17 Mar 2004 20:55:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I4tmJ8092922; Wed, 17 Mar 2004 20:55:48 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403180455.i2I4tmJ8092922@xorpc.icir.org> Date: Wed, 17 Mar 2004 20:55:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: atanu@xorpc.icir.org. 04/03/17 20:55:48 Modified files: xorp/xrl/interfaces/: bgp.xif Log message: Update a comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 0:03:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 00:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I841ZK042519 for ; Thu, 18 Mar 2004 00:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I840BR034034 for ; Thu, 18 Mar 2004 00:04:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I840HH001668; Thu, 18 Mar 2004 00:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I83aHH001660 for ; Thu, 18 Mar 2004 00:03:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I83aBR034032 for ; Thu, 18 Mar 2004 00:03:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I83aRS003108 for ; Thu, 18 Mar 2004 00:03:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I83afZ003107; Thu, 18 Mar 2004 00:03:36 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180803.i2I83afZ003107@xorpc.icir.org> Date: Thu, 18 Mar 2004 0:03:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/18 00:03:36 Modified files: xorp/fea/: fticonfig_entry_set_rtsock.cc Log message: Whenever we add a route using routing socket messages, always set the route as UP (i.e., set the RTF_UP flag). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 0:10:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 00:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I8B1ZK043955 for ; Thu, 18 Mar 2004 00:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I8B0BR034115 for ; Thu, 18 Mar 2004 00:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I8B0HH001852; Thu, 18 Mar 2004 00:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2I8ALHH001839 for ; Thu, 18 Mar 2004 00:10:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I8AKBR034111 for ; Thu, 18 Mar 2004 00:10:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2I8AKRS003666 for ; Thu, 18 Mar 2004 00:10:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2I8AKge003665; Thu, 18 Mar 2004 00:10:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403180810.i2I8AKge003665@xorpc.icir.org> Date: Thu, 18 Mar 2004 0:10:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/18 00:10:20 Modified files: xorp/fea/: routing_socket_utils.cc Log message: * When we compute the IPv4 mask length stored in "struct sockaddr_in", if the "sa_len" value is not one of the special values (i.e., 0, 8, 7, 6, 5), then assume that the whole mask is stored, and compute it without printing an error message. * Inside RtmUtils::rtm_get_to_fte_cfg() return an error if the address family doesn't match. * Only if the routing message type is RTM_DELETE then mark the routing entry as deleted (i.e., ignore its RTF_UP flag). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 5:07:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID81ZK004720 for ; Thu, 18 Mar 2004 05:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID80BR037567 for ; Thu, 18 Mar 2004 05:08:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ID80HH008929; Thu, 18 Mar 2004 05:08:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ID77HH008903 for ; Thu, 18 Mar 2004 05:07:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID77BR037559 for ; Thu, 18 Mar 2004 05:07:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID77RS020036 for ; Thu, 18 Mar 2004 05:07:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ID77BH020035; Thu, 18 Mar 2004 05:07:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181307.i2ID77BH020035@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:07:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fte.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:07:06 Modified files: xorp/fea/: fte.hh Log message: Initialize field _is_deleted to "false" in the Fte constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 5:09:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:10:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDA0ZK005110 for ; Thu, 18 Mar 2004 05:10:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDA0BR037582 for ; Thu, 18 Mar 2004 05:10:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDA0HH008970; Thu, 18 Mar 2004 05:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ID9kHH008964 for ; Thu, 18 Mar 2004 05:09:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID9kBR037577 for ; Thu, 18 Mar 2004 05:09:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ID9kRS020308 for ; Thu, 18 Mar 2004 05:09:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ID9kSi020307; Thu, 18 Mar 2004 05:09:46 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181309.i2ID9kSi020307@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:09:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc xrl_fti.cc xrl_fti.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:09:46 Modified files: xorp/fea/: fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc xrl_fti.cc xrl_fti.hh Log message: * Add a mechnanism to FtiConfigTableObserver for adding FIB observers. * Add XrlFtiTransactionManager as a FIB observer to FtiConfigTableObserver _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 5:10:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDB1ZK005336 for ; Thu, 18 Mar 2004 05:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDB1BR037611 for ; Thu, 18 Mar 2004 05:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDB0HH008992; Thu, 18 Mar 2004 05:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDAaHH008983 for ; Thu, 18 Mar 2004 05:10:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDAZBR037605 for ; Thu, 18 Mar 2004 05:10:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDAZRS020459 for ; Thu, 18 Mar 2004 05:10:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDAZpT020458; Thu, 18 Mar 2004 05:10:35 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181310.i2IDAZpT020458@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:10:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:10:35 Modified files: xorp/rib/: rib.cc Log message: Added an admin distance for "fib2mrib" (set to 254) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:16 2005 Subject: No subject Thu Mar 18 5:11:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDC1ZK005545 for ; Thu, 18 Mar 2004 05:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDC1BR037624 for ; Thu, 18 Mar 2004 05:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDC1HH009026; Thu, 18 Mar 2004 05:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDB5HH009006 for ; Thu, 18 Mar 2004 05:11:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDB4BR037616 for ; Thu, 18 Mar 2004 05:11:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDB4RS020538 for ; Thu, 18 Mar 2004 05:11:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDB4eN020537; Thu, 18 Mar 2004 05:11:04 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181311.i2IDB4eN020537@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:11:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:11:04 Modified files: xorp/static_routes/: static_routes_node.cc Log message: Nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:11:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:12:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDC2ZK005560 for ; Thu, 18 Mar 2004 05:12:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDC1BR037626 for ; Thu, 18 Mar 2004 05:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDC1HH009037; Thu, 18 Mar 2004 05:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDBRHH009015 for ; Thu, 18 Mar 2004 05:11:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDBRBR037622 for ; Thu, 18 Mar 2004 05:11:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDBRRS020598 for ; Thu, 18 Mar 2004 05:11:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDBRun020597; Thu, 18 Mar 2004 05:11:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181311.i2IDBRun020597@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:11:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:11:27 Modified files: xorp/static_routes/: xrl_static_routes_node.cc Log message: 4 -> 6 bugfixes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:13:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDE1ZK005958 for ; Thu, 18 Mar 2004 05:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDE1BR037662 for ; Thu, 18 Mar 2004 05:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDE1HH009078; Thu, 18 Mar 2004 05:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDD1HH009059 for ; Thu, 18 Mar 2004 05:13:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDD0BR037648 for ; Thu, 18 Mar 2004 05:13:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDD0RS020740 for ; Thu, 18 Mar 2004 05:13:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDD0EH020739; Thu, 18 Mar 2004 05:13:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181313.i2IDD0EH020739@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:13:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fib2mrib.xif fib2mrib_xif.hh fib2mrib_xif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:13:00 Modified files: xorp/xrl/interfaces/: fib2mrib.xif fib2mrib_xif.hh fib2mrib_xif.cc Log message: Remove add_route/replace_route/delete_route from the fib2mrib XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:13:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDE2ZK005977 for ; Thu, 18 Mar 2004 05:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDE2BR037664 for ; Thu, 18 Mar 2004 05:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDE2HH009089; Thu, 18 Mar 2004 05:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDDhHH009072 for ; Thu, 18 Mar 2004 05:13:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDDhBR037657 for ; Thu, 18 Mar 2004 05:13:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDDhRS020820 for ; Thu, 18 Mar 2004 05:13:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDDhQY020819; Thu, 18 Mar 2004 05:13:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181313.i2IDDhQY020819@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:13:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_fib_client.xif fea_fib_client_xif.cc fea_fib_client_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:13:43 Modified files: xorp/xrl/interfaces/: fea_fib_client.xif fea_fib_client_xif.cc fea_fib_client_xif.hh Log message: * Added replace_route4 and replace_route6 XRL interfaces * Added arguments ifname and vifname to delete_route4 and delete_route6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:14:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDF1ZK006185 for ; Thu, 18 Mar 2004 05:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDF1BR037687 for ; Thu, 18 Mar 2004 05:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDF1HH009119; Thu, 18 Mar 2004 05:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDETHH009102 for ; Thu, 18 Mar 2004 05:14:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDESBR037681 for ; Thu, 18 Mar 2004 05:14:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDESRS020920 for ; Thu, 18 Mar 2004 05:14:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDESFu020919; Thu, 18 Mar 2004 05:14:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181314.i2IDESFu020919@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:14:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in fib2mrib.tgt fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:14:28 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in fib2mrib.tgt fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Log message: Added XRL interface fea_fib_client.xif to fib2mrib.tgt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:17:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDI1ZK006771 for ; Thu, 18 Mar 2004 05:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDI1BR037724 for ; Thu, 18 Mar 2004 05:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDI1HH009174; Thu, 18 Mar 2004 05:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDHMHH009163 for ; Thu, 18 Mar 2004 05:17:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDHMBR037721 for ; Thu, 18 Mar 2004 05:17:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDHLRS021135 for ; Thu, 18 Mar 2004 05:17:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDHL8Y021134; Thu, 18 Mar 2004 05:17:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181317.i2IDHL8Y021134@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:17:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ Makefile.am Makefile.in fib2mrib_node.cc fib2mrib_node.hh xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:17:21 Modified files: xorp/fib2mrib/: Makefile.am Makefile.in fib2mrib_node.cc fib2mrib_node.hh xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: * Added support for registering with the FEA as a FIB observer. * Refactor the add/replace/delete route code to consider ifname/vifname, etc. * Get rid of the unicast/multicast route flags, because by definition all routes go to the multicast RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:17 2005 Subject: No subject Thu Mar 18 5:21:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDM1ZK007565 for ; Thu, 18 Mar 2004 05:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDM1BR037765 for ; Thu, 18 Mar 2004 05:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDM1HH009222; Thu, 18 Mar 2004 05:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDLuHH009215 for ; Thu, 18 Mar 2004 05:21:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDLuBR037763 for ; Thu, 18 Mar 2004 05:21:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDLuRS027177 for ; Thu, 18 Mar 2004 05:21:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDLuCj027176; Thu, 18 Mar 2004 05:21:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181321.i2IDLuCj027176@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:21:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:21:56 Modified files: xorp/xrl/interfaces/: bgp_xif.hh Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 5:28:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 05:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDT1ZK008910 for ; Thu, 18 Mar 2004 05:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDT1BR037842 for ; Thu, 18 Mar 2004 05:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDT1HH009339; Thu, 18 Mar 2004 05:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2IDSEHH009321 for ; Thu, 18 Mar 2004 05:28:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDSEBR037837 for ; Thu, 18 Mar 2004 05:28:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2IDSERS028082 for ; Thu, 18 Mar 2004 05:28:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2IDSE6k028081; Thu, 18 Mar 2004 05:28:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403181328.i2IDSE6k028081@xorpc.icir.org> Date: Thu, 18 Mar 2004 5:28:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_table_observer_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/18 05:28:14 Modified files: xorp/fea/: fticonfig_table_observer_rtsock.cc Log message: Remove unused variable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 15:59:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 16:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J001ZK049669 for ; Thu, 18 Mar 2004 16:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J001BR046641 for ; Thu, 18 Mar 2004 16:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J001HH024027; Thu, 18 Mar 2004 16:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2INxuHH024016 for ; Thu, 18 Mar 2004 15:59:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2INxuBR046627 for ; Thu, 18 Mar 2004 15:59:56 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2INxuRS071431 for ; Thu, 18 Mar 2004 15:59:56 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2INxuMq071430; Thu, 18 Mar 2004 15:59:56 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403182359.i2INxuMq071430@xorpc.icir.org> Date: Thu, 18 Mar 2004 15:59:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h comm_sock.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: hodson@xorpc.icir.org. 04/03/18 15:59:56 Modified files: xorp/libcomm/: comm_api.h comm_sock.c Log message: Add comm_sock_leave{4,6}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 16:41:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 16:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J0g1ZK059769 for ; Thu, 18 Mar 2004 16:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J0g1BR047084 for ; Thu, 18 Mar 2004 16:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J0g0HH025054; Thu, 18 Mar 2004 16:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J0fuHH025048 for ; Thu, 18 Mar 2004 16:41:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J0fuBR047082 for ; Thu, 18 Mar 2004 16:41:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J0fuRS074827 for ; Thu, 18 Mar 2004 16:41:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J0fulB074826; Thu, 18 Mar 2004 16:41:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190041.i2J0fulB074826@xorpc.icir.org> Date: Thu, 18 Mar 2004 16:41:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/03/18 16:41:56 Modified files: xorp/libxorp/: trie.hh ref_trie.hh Log message: Add "assert(key.prefix_len() > 0)" inside method find_less_specific() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 17:28:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 17:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1T1ZK070957 for ; Thu, 18 Mar 2004 17:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1T1BR047538 for ; Thu, 18 Mar 2004 17:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1T1HH026077; Thu, 18 Mar 2004 17:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1S3HH026058 for ; Thu, 18 Mar 2004 17:28:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1S3BR047536 for ; Thu, 18 Mar 2004 17:28:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1S3RS079055 for ; Thu, 18 Mar 2004 17:28:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J1S3Vl079054; Thu, 18 Mar 2004 17:28:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190128.i2J1S3Vl079054@xorpc.icir.org> Date: Thu, 18 Mar 2004 17:28:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_trie.cc test_ref_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/03/18 17:28:03 Modified files: xorp/libxorp/: test_trie.cc test_ref_trie.cc Log message: Include "libxorp_module.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 17:30:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 17:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1V1ZK071469 for ; Thu, 18 Mar 2004 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1V1BR047589 for ; Thu, 18 Mar 2004 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1V1HH026141; Thu, 18 Mar 2004 17:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1UBHH026124 for ; Thu, 18 Mar 2004 17:30:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1UBBR047576 for ; Thu, 18 Mar 2004 17:30:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1UARS079267 for ; Thu, 18 Mar 2004 17:30:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J1UAl0079266; Thu, 18 Mar 2004 17:30:10 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190130.i2J1UAl0079266@xorpc.icir.org> Date: Thu, 18 Mar 2004 17:30:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/03/18 17:30:10 Modified files: xorp/libxorp/: ref_trie.hh trie.hh Log message: * include "xlog.h" * Replace assert() with XLOG_ASSERT() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 17:42:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 17:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1h1ZK074348 for ; Thu, 18 Mar 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1h1BR047694 for ; Thu, 18 Mar 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1h1HH026366; Thu, 18 Mar 2004 17:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1goHH026356 for ; Thu, 18 Mar 2004 17:42:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1goBR047692 for ; Thu, 18 Mar 2004 17:42:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1goRS080133 for ; Thu, 18 Mar 2004 17:42:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J1go1p080132; Thu, 18 Mar 2004 17:42:50 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190142.i2J1go1p080132@xorpc.icir.org> Date: Thu, 18 Mar 2004 17:42:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ rib_notifier_base.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 04/03/18 17:42:50 Modified files: xorp/rip/: rib_notifier_base.cc Log message: Include "rip_module.h' _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 17:44:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 17:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1j1ZK074844 for ; Thu, 18 Mar 2004 17:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1j1BR047728 for ; Thu, 18 Mar 2004 17:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1j1HH026415; Thu, 18 Mar 2004 17:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1iKHH026401 for ; Thu, 18 Mar 2004 17:44:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1iKBR047716 for ; Thu, 18 Mar 2004 17:44:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1iKRS080268 for ; Thu, 18 Mar 2004 17:44:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J1iKKn080267; Thu, 18 Mar 2004 17:44:20 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190144.i2J1iKKn080267@xorpc.icir.org> Date: Thu, 18 Mar 2004 17:44:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_rip.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 04/03/18 17:44:20 Modified files: xorp/rip/: xrl_target_rip.cc Log message: Include "rip_module.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 17:46:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 17:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1l1ZK075352 for ; Thu, 18 Mar 2004 17:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1l1BR047768 for ; Thu, 18 Mar 2004 17:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1l1HH026485; Thu, 18 Mar 2004 17:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J1kSHH026473 for ; Thu, 18 Mar 2004 17:46:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1kSBR047762 for ; Thu, 18 Mar 2004 17:46:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J1kRRS080435 for ; Thu, 18 Mar 2004 17:46:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J1kRmf080434; Thu, 18 Mar 2004 17:46:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190146.i2J1kRmf080434@xorpc.icir.org> Date: Thu, 18 Mar 2004 17:46:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 04/03/18 17:46:27 Modified files: xorp/rip/: xrl_target_ripng.cc Log message: Include "rip_module.h" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:18 2005 Subject: No subject Thu Mar 18 18:36:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 18:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2b1ZK087293 for ; Thu, 18 Mar 2004 18:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2b0BR048269 for ; Thu, 18 Mar 2004 18:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2b0HH027505; Thu, 18 Mar 2004 18:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2a1HH027482 for ; Thu, 18 Mar 2004 18:36:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2a1BR048263 for ; Thu, 18 Mar 2004 18:36:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2a0RS083838 for ; Thu, 18 Mar 2004 18:36:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J2a0iX083837; Thu, 18 Mar 2004 18:36:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190236.i2J2a0iX083837@xorpc.icir.org> Date: Thu, 18 Mar 2004 18:36:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/03/18 18:36:00 Modified files: xorp/rib/: parser.cc Log message: If no words on a line parsed by the parser, then accept the line and continue processing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 18:53:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 18:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2s1ZK090595 for ; Thu, 18 Mar 2004 18:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2s1BR048423 for ; Thu, 18 Mar 2004 18:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2s1HH027802; Thu, 18 Mar 2004 18:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2rtHH027796 for ; Thu, 18 Mar 2004 18:53:55 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2rsBR048421; Thu, 18 Mar 2004 18:53:54 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2rseh035558; Thu, 18 Mar 2004 18:53:54 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403190253.i2J2rseh035558@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ rib_notifier_base.cc In-Reply-To: Your message of "Thu, 18 Mar 2004 17:42:50." <200403190142.i2J1go1p080132@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Mar 2004 18:53:54 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/rip/ | Changes by: pavlin@xorpc.icir.org. 04/03/18 17:42:50 | | Modified files: | xorp/rip/: rib_notifier_base.cc | | Log message: | Include "rip_module.h' it's not needed here. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 18:54:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 18:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2t1ZK090807 for ; Thu, 18 Mar 2004 18:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2t1BR048442 for ; Thu, 18 Mar 2004 18:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2t1HH027832; Thu, 18 Mar 2004 18:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2s8HH027816 for ; Thu, 18 Mar 2004 18:54:08 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2s8BR048425; Thu, 18 Mar 2004 18:54:08 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2s8eh035567; Thu, 18 Mar 2004 18:54:08 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403190254.i2J2s8eh035567@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_rip.cc In-Reply-To: Your message of "Thu, 18 Mar 2004 17:44:20." <200403190144.i2J1iKKn080267@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Mar 2004 18:54:08 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/rip/ | Changes by: pavlin@xorpc.icir.org. 04/03/18 17:44:20 | | Modified files: | xorp/rip/: xrl_target_rip.cc | | Log message: | Include "rip_module.h" it's not needed here. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 18:54:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 18:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2t2ZK090822 for ; Thu, 18 Mar 2004 18:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2t2BR048444 for ; Thu, 18 Mar 2004 18:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2t2HH027843; Thu, 18 Mar 2004 18:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J2siHH027824 for ; Thu, 18 Mar 2004 18:54:45 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2siBR048434; Thu, 18 Mar 2004 18:54:44 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J2sieh035600; Thu, 18 Mar 2004 18:54:44 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403190254.i2J2sieh035600@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_ripng.cc In-Reply-To: Your message of "Thu, 18 Mar 2004 17:46:27." <200403190146.i2J1kRmf080434@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Mar 2004 18:54:44 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Pavlin Radoslavov wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/rip/ | Changes by: pavlin@xorpc.icir.org. 04/03/18 17:46:27 | | Modified files: | xorp/rip/: xrl_target_ripng.cc | | Log message: | Include "rip_module.h" And it's not needed here either. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 20:27:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 20:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4S1ZK008913 for ; Thu, 18 Mar 2004 20:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4S0BR049320 for ; Thu, 18 Mar 2004 20:28:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J4S0HH029252; Thu, 18 Mar 2004 20:28:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J4RlHH029242 for ; Thu, 18 Mar 2004 20:27:47 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4RZBR049316; Thu, 18 Mar 2004 20:27:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4RZRj021238; Thu, 18 Mar 2004 20:27:35 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200403190427.i2J4RZRj021238@possum.icir.org> To: Orion Hodson cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_ripng.cc In-Reply-To: Message from Orion Hodson of "Thu, 18 Mar 2004 18:54:44 PST." <200403190254.i2J2sieh035600@puma.icir.org> Date: Thu, 18 Mar 2004 20:27:35 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > /-- Pavlin Radoslavov wrote: > | CVSROOT: /usr/local/share/doc/apache/cvs > | Module name: xorp > | Repository: xorp/rip/ > | Changes by: pavlin@xorpc.icir.org. 04/03/18 17:46:27 > | > | Modified files: > | xorp/rip/: xrl_target_ripng.cc > | > | Log message: > | Include "rip_module.h" > > And it's not needed here either. I heard that the first time :) After I replaced assert() with XLOG_ASSERT() in libxorp/trie.hh and libxorp/ref_trie.hh I got a compilation error in the above file and the other files I commited before (because the xlog stuff requires XORP_MODULE_NAME being defined). The reason the compilation error got propagated into rip is because libxorp/trie.hh is included by rip/route_db.hh (even though I don't know whether the Trie stuff is really used). If you don't need to include trie.hh, then there is no need to include rip_module.h as well. In any case, feel free to provide an alternative solution. Thanks, Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 20:30:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 20:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4V1ZK009524 for ; Thu, 18 Mar 2004 20:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4V1BR049359 for ; Thu, 18 Mar 2004 20:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J4V1HH029301; Thu, 18 Mar 2004 20:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J4UwHH029294 for ; Thu, 18 Mar 2004 20:30:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4UwBR049357 for ; Thu, 18 Mar 2004 20:30:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J4UwRS089365 for ; Thu, 18 Mar 2004 20:30:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J4Uwi7089364; Thu, 18 Mar 2004 20:30:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403190430.i2J4Uwi7089364@xorpc.icir.org> Date: Thu, 18 Mar 2004 20:30:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ bgp.xrls bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/18 20:30:57 Modified files: xorp/xrl/targets/: bgp.xrls bgp_base.hh Log message: Regenerated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 21:05:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 21:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J561ZK016283 for ; Thu, 18 Mar 2004 21:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J561BR049701 for ; Thu, 18 Mar 2004 21:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J561HH029922; Thu, 18 Mar 2004 21:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J55LHH029909 for ; Thu, 18 Mar 2004 21:05:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J55JBR049695 for ; Thu, 18 Mar 2004 21:05:19 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J55JRS091005 for ; Thu, 18 Mar 2004 21:05:19 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J55JP0091004; Thu, 18 Mar 2004 21:05:19 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403190505.i2J55JP0091004@xorpc.icir.org> Date: Thu, 18 Mar 2004 21:05:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_db.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/18 21:05:19 Modified files: xorp/rip/: route_db.hh Log message: Remove unused trie.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Thu Mar 18 21:05:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Mar 2004 21:06:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J562ZK016310 for ; Thu, 18 Mar 2004 21:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J562BR049703 for ; Thu, 18 Mar 2004 21:06:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J562HH029933; Thu, 18 Mar 2004 21:06:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2J55eHH029914 for ; Thu, 18 Mar 2004 21:05:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J55dBR049699 for ; Thu, 18 Mar 2004 21:05:39 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2J55dRS091033 for ; Thu, 18 Mar 2004 21:05:39 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2J55dTo091032; Thu, 18 Mar 2004 21:05:39 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403190505.i2J55dTo091032@xorpc.icir.org> Date: Thu, 18 Mar 2004 21:05:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ rib_notifier_base.cc xrl_target_rip.cc xrl_target_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/18 21:05:39 Modified files: xorp/rip/: rib_notifier_base.cc xrl_target_rip.cc xrl_target_ripng.cc Log message: Remove unused rip_module.h. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Fri Mar 19 3:45:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Mar 2004 03:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBl1ZK094941 for ; Fri, 19 Mar 2004 03:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBl1BR053534 for ; Fri, 19 Mar 2004 03:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JBl1RB006962; Fri, 19 Mar 2004 03:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JBjxRB006942 for ; Fri, 19 Mar 2004 03:45:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBjxBR053519 for ; Fri, 19 Mar 2004 03:45:59 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBjxRS012240 for ; Fri, 19 Mar 2004 03:45:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2JBjxSW012239; Fri, 19 Mar 2004 03:45:59 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403191145.i2JBjxSW012239@xorpc.icir.org> Date: Fri, 19 Mar 2004 3:45:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh trie.hh xorp/rib/ commands Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: mjh@xorpc.icir.org. 04/03/19 03:45:58 Modified files: xorp/libxorp/: ref_trie.hh trie.hh xorp/rib/: commands Log message: Fix for issue Pavlin identified when adding/deleting the default route. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Fri Mar 19 3:52:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Mar 2004 03:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBr1ZK096100 for ; Fri, 19 Mar 2004 03:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBr1BR053591 for ; Fri, 19 Mar 2004 03:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JBr1RB007046; Fri, 19 Mar 2004 03:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JBqDRB007033 for ; Fri, 19 Mar 2004 03:52:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBqDBR053586 for ; Fri, 19 Mar 2004 03:52:13 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JBqDRS012622 for ; Fri, 19 Mar 2004 03:52:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2JBqDqD012621; Fri, 19 Mar 2004 03:52:13 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403191152.i2JBqDqD012621@xorpc.icir.org> Date: Fri, 19 Mar 2004 3:52:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 04/03/19 03:52:13 Modified files: xorp/etc/templates/: bgp.tp Log message: Add long BGP help string _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Fri Mar 19 15:21:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Mar 2004 15:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNM1ZK045212 for ; Fri, 19 Mar 2004 15:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNM1BR062083 for ; Fri, 19 Mar 2004 15:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JNM0Gv023393; Fri, 19 Mar 2004 15:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JNLTGv023383 for ; Fri, 19 Mar 2004 15:21:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNLSBR062079 for ; Fri, 19 Mar 2004 15:21:28 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNLSRS043950 for ; Fri, 19 Mar 2004 15:21:28 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2JNLSE9043949; Fri, 19 Mar 2004 15:21:28 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403192321.i2JNLSE9043949@xorpc.icir.org> Date: Fri, 19 Mar 2004 15:21:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ rip_announcer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/03/19 15:21:28 Modified files: xorp/rip/tools/: rip_announcer.cc Log message: Add option to set inter-packet gap. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Fri Mar 19 15:45:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Mar 2004 15:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNk1ZK051892 for ; Fri, 19 Mar 2004 15:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNk1BR062408 for ; Fri, 19 Mar 2004 15:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JNk1Gv023933; Fri, 19 Mar 2004 15:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2JNjBGv023911 for ; Fri, 19 Mar 2004 15:45:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNjBBR062390 for ; Fri, 19 Mar 2004 15:45:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2JNjBRS044892 for ; Fri, 19 Mar 2004 15:45:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2JNjBNL044891; Fri, 19 Mar 2004 15:45:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403192345.i2JNjBNL044891@xorpc.icir.org> Date: Fri, 19 Mar 2004 15:45:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/03/19 15:45:11 Modified files: xorp/rib/: parser.cc Log message: Add a comment that the parser would accept empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:19 2005 Subject: No subject Fri Mar 19 18:48:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Mar 2004 18:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2K2n1ZK097878 for ; Fri, 19 Mar 2004 18:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2K2n1BR064150 for ; Fri, 19 Mar 2004 18:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2K2n0Gv027793; Fri, 19 Mar 2004 18:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2K2mLGv027780 for ; Fri, 19 Mar 2004 18:48:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2K2mLBR064148 for ; Fri, 19 Mar 2004 18:48:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2K2mLRS063921 for ; Fri, 19 Mar 2004 18:48:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2K2mLLh063920; Fri, 19 Mar 2004 18:48:21 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403200248.i2K2mLLh063920@xorpc.icir.org> Date: Fri, 19 Mar 2004 18:48:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/19 18:48:21 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Fix an unexpected fatal scenario which may happen if we delete an interface on Linux: In case of Linux kernel we may receive first a message to delete the interface and then a message to delete an address on that interface. However, the first message would remove all state about that interface (including its addresses). Hence, we silently ignore messages for deleting addresses if the interface is not found. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 9:49:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 09:50:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHo0ZK086063 for ; Sat, 20 Mar 2004 09:50:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHo0BR075917 for ; Sat, 20 Mar 2004 09:50:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHo0Gv013899; Sat, 20 Mar 2004 09:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHnoGv013889 for ; Sat, 20 Mar 2004 09:49:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHnoBR075912 for ; Sat, 20 Mar 2004 09:49:50 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHnnRS097848 for ; Sat, 20 Mar 2004 09:49:49 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KHnnGd097847; Sat, 20 Mar 2004 09:49:49 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403201749.i2KHnnGd097847@xorpc.icir.org> Date: Sat, 20 Mar 2004 9:49:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 09:49:49 Modified files: xorp/rip/: port.cc Log message: Set last_active field of peer counters when instantiating peer. Record packet that triggered peers creation in peer's counters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 9:51:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 09:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHq1ZK086547 for ; Sat, 20 Mar 2004 09:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHq1BR075951 for ; Sat, 20 Mar 2004 09:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHq1Gv013948; Sat, 20 Mar 2004 09:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHpDGv013926 for ; Sat, 20 Mar 2004 09:51:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHpDBR075945 for ; Sat, 20 Mar 2004 09:51:13 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHpDRS097965 for ; Sat, 20 Mar 2004 09:51:13 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KHpD8e097964; Sat, 20 Mar 2004 09:51:13 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403201751.i2KHpD8e097964@xorpc.icir.org> Date: Sat, 20 Mar 2004 9:51:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 09:51:13 Modified files: xorp/rip/: TODO Log message: Add a post 1.0 release item for review. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 9:51:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 09:52:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHq3ZK086574 for ; Sat, 20 Mar 2004 09:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHq2BR075953 for ; Sat, 20 Mar 2004 09:52:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHq2Gv013962; Sat, 20 Mar 2004 09:52:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHpwGv013939 for ; Sat, 20 Mar 2004 09:51:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHpwBR075947 for ; Sat, 20 Mar 2004 09:51:58 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHpwRS098018 for ; Sat, 20 Mar 2004 09:51:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KHpwNg098017; Sat, 20 Mar 2004 09:51:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403201751.i2KHpwNg098017@xorpc.icir.org> Date: Sat, 20 Mar 2004 9:51:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_common.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 09:51:58 Modified files: xorp/rip/: xrl_target_common.hh Log message: Include "routes active" in peer's counters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 9:59:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 10:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI01ZK088443 for ; Sat, 20 Mar 2004 10:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI01BR076027 for ; Sat, 20 Mar 2004 10:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KI00Gv014102; Sat, 20 Mar 2004 10:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KHxZGv014091 for ; Sat, 20 Mar 2004 09:59:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHxZBR076019 for ; Sat, 20 Mar 2004 09:59:35 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KHxZRS098427 for ; Sat, 20 Mar 2004 09:59:35 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KHxZgp098426; Sat, 20 Mar 2004 09:59:35 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403201759.i2KHxZgp098426@xorpc.icir.org> Date: Sat, 20 Mar 2004 9:59:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp xorp/rtrmgr/ cli.cc cli.hh conf_tree_node.cc slave_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/20 09:59:35 Modified files: xorp/etc/templates/: bgp.tp xorp/rtrmgr/: cli.cc cli.hh conf_tree_node.cc slave_conf_tree.cc Log message: Specify that BGP as and next-hop are mandatory parameters of a peer. Fix bugs in mandatory child checking. Enable checking of mandatory children in xorpsh (previously was only in rtrmgr). Fix bugs in handling xorpsh commit errors. Fix bug in enabling the "commit" command when exiting text entry mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 10:00:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 10:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI11ZK088717 for ; Sat, 20 Mar 2004 10:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI11BR076071 for ; Sat, 20 Mar 2004 10:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KI11Gv014135; Sat, 20 Mar 2004 10:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KI0tGv014127 for ; Sat, 20 Mar 2004 10:00:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI0tBR076067 for ; Sat, 20 Mar 2004 10:00:55 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI0tRS098567 for ; Sat, 20 Mar 2004 10:00:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KI0tfN098566; Sat, 20 Mar 2004 10:00:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403201800.i2KI0tfN098566@xorpc.icir.org> Date: Sat, 20 Mar 2004 10:00:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc xrl_socket_server.hh xorp/xrl/interfaces/ socket4.xif socket4_xif.cc socket4_xif.hh socket6.xif socket6_xif.cc socket6_xif.hh xorp/xrl/targets/ socket_server.xrls socket_server_base.cc socket_server_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/03/20 10:00:55 Modified files: xorp/fea/: xrl_socket_server.cc xrl_socket_server.hh xorp/xrl/interfaces/: socket4.xif socket4_xif.cc socket4_xif.hh socket6.xif socket6_xif.cc socket6_xif.hh xorp/xrl/targets/: socket_server.xrls socket_server_base.cc socket_server_base.hh Log message: o Add methods to socket4 and socket6 interfaces and implement in the FEA's xrl_socket_server to: udp_join_group udp_leave_group send_from_multicast_if set_socket_option("multicast_loopback", "multicast_ttl", "multicast_hops") get_socket_ioption( ditto ) o Allow bind's to IPvX::ANY() in xrl_socket_server. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 10:03:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 10:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI41ZK089406 for ; Sat, 20 Mar 2004 10:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI41BR076094 for ; Sat, 20 Mar 2004 10:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KI41Gv014179; Sat, 20 Mar 2004 10:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KI40Gv014173 for ; Sat, 20 Mar 2004 10:04:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI3xBR076092 for ; Sat, 20 Mar 2004 10:04:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KI3xRS098817 for ; Sat, 20 Mar 2004 10:03:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KI3xcm098816; Sat, 20 Mar 2004 10:03:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403201803.i2KI3xcm098816@xorpc.icir.org> Date: Sat, 20 Mar 2004 10:03:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 10:03:59 Modified files: xorp/rip/: xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh Log message: Change initialization procedure. Use a single socket for RIP per socket server on the FEA and join/leave on per address basis. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 10:45:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 10:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KIk1ZK099306 for ; Sat, 20 Mar 2004 10:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KIk0BR076486 for ; Sat, 20 Mar 2004 10:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KIk0Gv014941; Sat, 20 Mar 2004 10:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KIjXGv014928 for ; Sat, 20 Mar 2004 10:45:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KIjXBR076482 for ; Sat, 20 Mar 2004 10:45:33 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KIjXRS001496 for ; Sat, 20 Mar 2004 10:45:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KIjXR7001495; Sat, 20 Mar 2004 10:45:33 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403201845.i2KIjXR7001495@xorpc.icir.org> Date: Sat, 20 Mar 2004 10:45:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/03/20 10:45:33 Modified files: xorp/rtrmgr/: xrl_rtrmgr_interface.cc Log message: Fix infinite-loop bug in error handler for config change notifier. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 14:26:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 14:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMR1ZK042909 for ; Sat, 20 Mar 2004 14:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMR0BR078237 for ; Sat, 20 Mar 2004 14:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMR0Gv018300; Sat, 20 Mar 2004 14:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMQPGv018279 for ; Sat, 20 Mar 2004 14:26:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMQPBR078231 for ; Sat, 20 Mar 2004 14:26:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMQPRS007919 for ; Sat, 20 Mar 2004 14:26:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KMQO8w007918; Sat, 20 Mar 2004 14:26:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403202226.i2KMQO8w007918@xorpc.icir.org> Date: Sat, 20 Mar 2004 14:26:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/20 14:26:24 Modified files: ./: configure.in configure Log message: Wrap the first argument to AC_CACHE_CHECK() with [] instead of "" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 14:33:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 14:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMY1ZK044264 for ; Sat, 20 Mar 2004 14:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMY0BR078288 for ; Sat, 20 Mar 2004 14:34:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMY0Gv018451; Sat, 20 Mar 2004 14:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMXvGv018434 for ; Sat, 20 Mar 2004 14:33:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMXvBR078285 for ; Sat, 20 Mar 2004 14:33:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMXuRS008121 for ; Sat, 20 Mar 2004 14:33:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KMXume008120; Sat, 20 Mar 2004 14:33:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403202233.i2KMXume008120@xorpc.icir.org> Date: Sat, 20 Mar 2004 14:33:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 04/03/20 14:33:56 Modified files: xorp/config/: acipv6.m4 Log message: Remove the [] around the argument inside AC_MSG_CHECKING() (for consistency reason) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 14:35:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 14:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMa0ZK044679 for ; Sat, 20 Mar 2004 14:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMa0BR078322 for ; Sat, 20 Mar 2004 14:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMa0Gv018516; Sat, 20 Mar 2004 14:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2KMZ4Gv018495 for ; Sat, 20 Mar 2004 14:35:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMZ4BR078296 for ; Sat, 20 Mar 2004 14:35:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2KMZ3RS008172 for ; Sat, 20 Mar 2004 14:35:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2KMZ35q008171; Sat, 20 Mar 2004 14:35:03 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403202235.i2KMZ35q008171@xorpc.icir.org> Date: Sat, 20 Mar 2004 14:35:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure xorp/config/ acxorp.m4 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/config/ Changes by: pavlin@xorpc.icir.org. 04/03/20 14:35:03 Modified files: ./: configure xorp/config/: acxorp.m4 Log message: Wrap the first argument of AC_CACHE_CHECK() with [] instead of "" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 17:13:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 17:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1E1ZK075014 for ; Sat, 20 Mar 2004 17:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1E0BR079743 for ; Sat, 20 Mar 2004 17:14:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1E0Gv020828; Sat, 20 Mar 2004 17:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1DPGv020819 for ; Sat, 20 Mar 2004 17:13:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1DPBR079739 for ; Sat, 20 Mar 2004 17:13:25 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1DPRS014044 for ; Sat, 20 Mar 2004 17:13:25 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L1DOYD014041; Sat, 20 Mar 2004 17:13:25 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210113.i2L1DOYD014041@xorpc.icir.org> Date: Sat, 20 Mar 2004 17:13:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 17:13:24 Modified files: xorp/rip/: update_queue.cc Log message: When iterator reaches last route in a block, create a new empty block and move there. This removes route ref counts as soon as the iterators have passed over the updates and allows the routes to be removed asap. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 17:38:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 17:39:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1d0ZK079867 for ; Sat, 20 Mar 2004 17:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1d0BR080009 for ; Sat, 20 Mar 2004 17:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1d0Gv021257; Sat, 20 Mar 2004 17:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1cdGv021246 for ; Sat, 20 Mar 2004 17:38:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1ccBR080004 for ; Sat, 20 Mar 2004 17:38:38 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1ccRS015723 for ; Sat, 20 Mar 2004 17:38:38 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L1cc25015722; Sat, 20 Mar 2004 17:38:38 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210138.i2L1cc25015722@xorpc.icir.org> Date: Sat, 20 Mar 2004 17:38:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip_common.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 17:38:38 Modified files: xorp/rip/: xorp_rip_common.hh Log message: Flush routes database before destructing RIP objects. Fixes RouteOrigin assertion failure that the number of routes is zero when it's invoked. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 17:42:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 17:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1h1ZK080644 for ; Sat, 20 Mar 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1h1BR080059 for ; Sat, 20 Mar 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1h1Gv021339; Sat, 20 Mar 2004 17:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L1gLGv021324 for ; Sat, 20 Mar 2004 17:42:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1gLBR080057 for ; Sat, 20 Mar 2004 17:42:21 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L1gLRS015949 for ; Sat, 20 Mar 2004 17:42:21 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L1gLIU015948; Sat, 20 Mar 2004 17:42:21 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210142.i2L1gLIU015948@xorpc.icir.org> Date: Sat, 20 Mar 2004 17:42:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/03/20 17:42:21 Modified files: xorp/rip/: port.cc Log message: Call stop_output_processing() in ~Port. Fix programming error in peer garbage collection. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 18:00:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 18:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L211ZK084127 for ; Sat, 20 Mar 2004 18:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L211BR080277 for ; Sat, 20 Mar 2004 18:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L210Gv021596; Sat, 20 Mar 2004 18:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L20VGv021578 for ; Sat, 20 Mar 2004 18:00:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L20UBR080269 for ; Sat, 20 Mar 2004 18:00:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L20URS016876 for ; Sat, 20 Mar 2004 18:00:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L20UnK016875; Sat, 20 Mar 2004 18:00:30 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403210200.i2L20UnK016875@xorpc.icir.org> Date: Sat, 20 Mar 2004 18:00:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/20 18:00:30 Modified files: ./: configure.in configure Log message: * If the snmpd revision number is missing, then give it value of 0 This fixes the test-case when the snmpd version is, say, 5.1 instead of 5.1.0 * Fix the logic for testing whether the snmpd version is >= 5.0.6 * Use a separate variable snmpd_flags_valid to test whether the snmpd compilation flags are valid. * Check whether header file is usable. It appears that in case of net-snmp version 5.1 (and later?) we cannot include the following three files and compile them with g++ : #include #include #include The reason appears to be a bug in the net-snmp-agent-includes.h header file (it can be compiled with gcc, but it cannot be compiled with g++). * Remove the warning that we need to patch file , because it may be printed even if the problem is elsewhere. Further, it appears that the problem has been fixed in recent net-snmp releases. * If neither nor is usable, then do not compile MIBS. We may try to fix net-snmp-agent-includes.h locally (similar to the local fix of container.h), but this is an error-prone solution. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 18:29:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 18:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2U1ZK089708 for ; Sat, 20 Mar 2004 18:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2U1BR080555 for ; Sat, 20 Mar 2004 18:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L2U1Gv022073; Sat, 20 Mar 2004 18:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L2TFGv022034 for ; Sat, 20 Mar 2004 18:29:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2TFBR080538 for ; Sat, 20 Mar 2004 18:29:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2TERS017620 for ; Sat, 20 Mar 2004 18:29:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L2TEse017619; Sat, 20 Mar 2004 18:29:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403210229.i2L2TEse017619@xorpc.icir.org> Date: Sat, 20 Mar 2004 18:29:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/20 18:29:14 Modified files: ./: BUILD_NOTES Log message: Add a note that net-snmp-5.1.x may not be usable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:20 2005 Subject: No subject Sat Mar 20 18:33:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 18:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2Y1ZK090502 for ; Sat, 20 Mar 2004 18:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2Y1BR080601 for ; Sat, 20 Mar 2004 18:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L2Y1Gv022161; Sat, 20 Mar 2004 18:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L2XgGv022141 for ; Sat, 20 Mar 2004 18:33:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2XgBR080599 for ; Sat, 20 Mar 2004 18:33:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L2XgRS017726 for ; Sat, 20 Mar 2004 18:33:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L2XgQ0017725; Sat, 20 Mar 2004 18:33:42 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403210233.i2L2XgQ0017725@xorpc.icir.org> Date: Sat, 20 Mar 2004 18:33:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ update_queue.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 04/03/20 18:33:42 Modified files: xorp/rip/: update_queue.cc Log message: Add a "typename" qualifier. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Sat Mar 20 19:14:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 19:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3F1ZK098401 for ; Sat, 20 Mar 2004 19:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3F1BR080915 for ; Sat, 20 Mar 2004 19:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L3F0Gv022807; Sat, 20 Mar 2004 19:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L3EAGv022784 for ; Sat, 20 Mar 2004 19:14:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3E9BR080910 for ; Sat, 20 Mar 2004 19:14:09 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3E9RS018062 for ; Sat, 20 Mar 2004 19:14:09 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L3E9VL018061; Sat, 20 Mar 2004 19:14:09 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210314.i2L3E9VL018061@xorpc.icir.org> Date: Sat, 20 Mar 2004 19:14:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h comm_private.h comm_sock.c comm_user.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libcomm/ Changes by: hodson@xorpc.icir.org. 04/03/20 19:14:08 Modified files: xorp/libcomm/: comm_api.h comm_private.h comm_sock.c comm_user.c Log message: o Unconditionally present ipv6 method prototypes in comm_api.h. o Add comm_ipv4_present() and comm_ipv6_present() to indicate support. The latter can be used as an alternative to testing for HAVE_IPV6. o Add comm_sock_no_ipv6(const char* method, ...) to report calls to IPv6 methods when not support is not present and swallow unused args. o Implement IPv6 methods when IPv6 support is not present to call comm_sock_no_ipv6() and return XORP_ERROR. o Replace "assert(false); XLOG_ERROR(...)" with "XLOG_FATAL(...)" These changes mean that libcomm methods need to be conditionally called based on whether HAVE_IPV6 is defined. This allows us to improve readability in IPv6 code paths and worry less about build system variations. Should we ever find a system without the basic IPv6 types we'll need to define them ourselves, but we'd need to this for libxorp anyway. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Sat Mar 20 19:44:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 19:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3j1ZK004302 for ; Sat, 20 Mar 2004 19:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3j1BR081157 for ; Sat, 20 Mar 2004 19:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L3j1Gv023230; Sat, 20 Mar 2004 19:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L3iWGv023215 for ; Sat, 20 Mar 2004 19:44:32 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3iVBR081145 for ; Sat, 20 Mar 2004 19:44:31 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L3iVeh030464 for ; Sat, 20 Mar 2004 19:44:31 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403210344.i2L3iVeh030464@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libcomm/ comm_api.h comm_private.h comm_sock.c comm_user.c In-Reply-To: Your message of "Sat, 20 Mar 2004 19:14:08." <200403210314.i2L3E9VL018061@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 20 Mar 2004 19:44:31 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Orion Hodson wrote: | CVSROOT: /usr/local/www/data/cvs | Module name: xorp | Repository: xorp/libcomm/ | Changes by: hodson@xorpc.icir.org. 04/03/20 19:14:08 | | Modified files: | xorp/libcomm/: comm_api.h comm_private.h comm_sock.c comm_user.c | | Log message: | o Unconditionally present ipv6 method prototypes in comm_api.h. | | o Add comm_ipv4_present() and comm_ipv6_present() to indicate support. | The latter can be used as an alternative to testing for HAVE_IPV6. | | o Add comm_sock_no_ipv6(const char* method, ...) to report calls to | IPv6 methods when not support is not present and swallow unused args. | | o Implement IPv6 methods when IPv6 support is not present to call | comm_sock_no_ipv6() and return XORP_ERROR. | | o Replace "assert(false); XLOG_ERROR(...)" with "XLOG_FATAL(...)" | | These changes mean that libcomm methods need to be conditionally s/need/don't need/ | called based on whether HAVE_IPV6 is defined. This allows us to | improve readability in IPv6 code paths and worry less about build | system variations. Should we ever find a system without the basic | IPv6 types we'll need to define them ourselves, but we'd need to this | for libxorp anyway. Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Sat Mar 20 20:01:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 20:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L421ZK007607 for ; Sat, 20 Mar 2004 20:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L421BR081300 for ; Sat, 20 Mar 2004 20:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L421Gv023489; Sat, 20 Mar 2004 20:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L41kGv023483 for ; Sat, 20 Mar 2004 20:01:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L41jBR081298 for ; Sat, 20 Mar 2004 20:01:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L41jRS018373 for ; Sat, 20 Mar 2004 20:01:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L41jFU018372; Sat, 20 Mar 2004 20:01:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210401.i2L41jFU018372@xorpc.icir.org> Date: Sat, 20 Mar 2004 20:01:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/03/20 20:01:45 Modified files: xorp/fea/: xrl_target.cc Log message: Do not return socket server for IPv6 address if IPv6 support is not available. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Sat Mar 20 20:03:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 20:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L441ZK008004 for ; Sat, 20 Mar 2004 20:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L441BR081318 for ; Sat, 20 Mar 2004 20:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L440Gv023520; Sat, 20 Mar 2004 20:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L43bGv023514 for ; Sat, 20 Mar 2004 20:03:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L43bBR081315 for ; Sat, 20 Mar 2004 20:03:37 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L43bRS018412 for ; Sat, 20 Mar 2004 20:03:37 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L43bIq018411; Sat, 20 Mar 2004 20:03:37 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403210403.i2L43bIq018411@xorpc.icir.org> Date: Sat, 20 Mar 2004 20:03:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: hodson@xorpc.icir.org. 04/03/20 20:03:37 Modified files: xorp/fea/: xrl_socket_server.cc Log message: Clean-up IPv6 socket code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Sat Mar 20 20:55:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 20 Mar 2004 20:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L4u1ZK017978 for ; Sat, 20 Mar 2004 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L4u0BR081716 for ; Sat, 20 Mar 2004 20:56:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L4u0Gv024310; Sat, 20 Mar 2004 20:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2L4twGv024303 for ; Sat, 20 Mar 2004 20:55:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L4twBR081714 for ; Sat, 20 Mar 2004 20:55:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2L4twRS018865 for ; Sat, 20 Mar 2004 20:55:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2L4twc9018864; Sat, 20 Mar 2004 20:55:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403210455.i2L4twc9018864@xorpc.icir.org> Date: Sat, 20 Mar 2004 20:55:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/20 20:55:58 Modified files: ./: configure.in configure Log message: Fix the code for checking whether net-snmp version is >= 5.0.6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Mon Mar 22 15:14:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Mar 2004 15:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNF1ZK077859 for ; Mon, 22 Mar 2004 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNF1BR008685 for ; Mon, 22 Mar 2004 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2MNF0Gv012375; Mon, 22 Mar 2004 15:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2MNEkGv012364 for ; Mon, 22 Mar 2004 15:14:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNEjBR008673 for ; Mon, 22 Mar 2004 15:14:45 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNEjRS018205 for ; Mon, 22 Mar 2004 15:14:45 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2MNEjNi018204; Mon, 22 Mar 2004 15:14:45 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403222314.i2MNEjNi018204@xorpc.icir.org> Date: Mon, 22 Mar 2004 15:14:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/images/ xorp-logo-medium.jpg Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/images/ Changes by: hodson@xorpc.icir.org. 04/03/22 15:14:45 Modified files: www/images/: xorp-logo-medium.jpg Log message: Resize logo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Mon Mar 22 15:15:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Mar 2004 15:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNG1ZK078141 for ; Mon, 22 Mar 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNG1BR008710 for ; Mon, 22 Mar 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2MNG0Gv012404; Mon, 22 Mar 2004 15:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2MNFtGv012397 for ; Mon, 22 Mar 2004 15:15:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNFtBR008708 for ; Mon, 22 Mar 2004 15:15:55 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2MNFtRS018279 for ; Mon, 22 Mar 2004 15:15:55 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2MNFtSC018278; Mon, 22 Mar 2004 15:15:55 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403222315.i2MNFtSC018278@xorpc.icir.org> Date: Mon, 22 Mar 2004 15:15:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/03/22 15:15:55 Modified files: ./: index.html Log message: s/March/April/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Tue Mar 23 3:24:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Mar 2004 03:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBP1ZK060381 for ; Tue, 23 Mar 2004 03:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBP1BR016013 for ; Tue, 23 Mar 2004 03:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NBP0Gv026256; Tue, 23 Mar 2004 03:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NBORGv026245 for ; Tue, 23 Mar 2004 03:24:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBORBR016008 for ; Tue, 23 Mar 2004 03:24:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBORRS062503 for ; Tue, 23 Mar 2004 03:24:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2NBORFa062502; Tue, 23 Mar 2004 03:24:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403231124.i2NBORFa062502@xorpc.icir.org> Date: Tue, 23 Mar 2004 3:24:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser_direct_cmds.hh rib.cc rib.hh test_register.cc xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/23 03:24:27 Modified files: xorp/rib/: parser_direct_cmds.hh rib.cc rib.hh test_register.cc xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Added new RIB XRLs: add_interface_route[4,6] replace_interface_route[4,6] Those XRLs are used to add or replace a route by explicity specifying the network interface/vif toward the destination instead of relying on the RIB to calculate the interface toward the next-hop router (based on subnet address information). For example, in case of wireless protocols we cannot use subnet addresses to compute the wireless interface because in general the neighbors may not share a common subnet address. The existing XRLs add_route[4,6] and replace_route[4,6] are kept unmodified. Note that for the time being there are no delete_interface_route[4,6] XRLs simply because we need only the destination prefix address to identify and delete an existing route. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Tue Mar 23 3:33:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Mar 2004 03:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBY2ZK062128 for ; Tue, 23 Mar 2004 03:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBY1BR016110 for ; Tue, 23 Mar 2004 03:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NBY1Gv026432; Tue, 23 Mar 2004 03:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NBXGGv026408 for ; Tue, 23 Mar 2004 03:33:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBXGBR016107 for ; Tue, 23 Mar 2004 03:33:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NBXGRS063123 for ; Tue, 23 Mar 2004 03:33:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2NBXG1w063122; Tue, 23 Mar 2004 03:33:16 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403231133.i2NBXG1w063122@xorpc.icir.org> Date: Tue, 23 Mar 2004 3:33:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/23 03:33:16 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Remove XLOG_FATAL() in cae the kernel did not provide the interface name as an IFLA_IFNAME attribute of an RTM_NEWLINK message. It could be because this is a wireless event carried to user space. Such events are encapsulated in the IFLA_WIRELESS field of a RTM_NEWLINK message. Unfortunately, there is no easy way to verify whether this is indeed a wireless event or a problem with the message integrity, hence we silently ignore it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Tue Mar 23 11:33:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Mar 2004 11:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NJY1ZK065994 for ; Tue, 23 Mar 2004 11:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NJY1BR022848 for ; Tue, 23 Mar 2004 11:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NJY0Gv008322; Tue, 23 Mar 2004 11:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2NJXLGv008270 for ; Tue, 23 Mar 2004 11:33:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NJXLBR022841 for ; Tue, 23 Mar 2004 11:33:21 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2NJXLRS095412 for ; Tue, 23 Mar 2004 11:33:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2NJXLcV095411; Tue, 23 Mar 2004 11:33:21 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403231933.i2NJXLcV095411@xorpc.icir.org> Date: Tue, 23 Mar 2004 11:33:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/03/23 11:33:21 Modified files: xorp/bgp/: xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: XRL hooks to originate routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Tue Mar 23 17:26:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Mar 2004 17:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O1R1ZK077083 for ; Tue, 23 Mar 2004 17:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O1R1BR027121 for ; Tue, 23 Mar 2004 17:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2O1R1Gv017166; Tue, 23 Mar 2004 17:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2O1QEGv017121 for ; Tue, 23 Mar 2004 17:26:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O1QEBR027119 for ; Tue, 23 Mar 2004 17:26:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O1QDRS021188 for ; Tue, 23 Mar 2004 17:26:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2O1QDrQ021187; Tue, 23 Mar 2004 17:26:13 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403240126.i2O1QDrQ021187@xorpc.icir.org> Date: Tue, 23 Mar 2004 17:26:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/23 17:26:13 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh Log message: * Add new methods XrlFeaTarget::have_ipv4() and have_ipv6() which return true if the system supports IPv4 and IPv6 respectively. * If an IPv6-specific XRL is received, then use first have_ipv6() to test whether the system really supports IPv6, and return an error if it doesn't. For consistency reason do the same for the IPv4-specific XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Tue Mar 23 23:04:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Mar 2004 23:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O751ZK052678 for ; Tue, 23 Mar 2004 23:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O750BR030179 for ; Tue, 23 Mar 2004 23:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2O750Gv023326; Tue, 23 Mar 2004 23:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2O74RGv023314 for ; Tue, 23 Mar 2004 23:04:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O74RBR030173 for ; Tue, 23 Mar 2004 23:04:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2O74RRS052390 for ; Tue, 23 Mar 2004 23:04:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2O74Rih052388; Tue, 23 Mar 2004 23:04:27 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403240704.i2O74Rih052388@xorpc.icir.org> Date: Tue, 23 Mar 2004 23:04:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/23 23:04:27 Modified files: xorp/pim/: pim_proto.h Log message: Conditionally define IPV6_MAXPACKET in case some IPv6-capable systems don't have it (e.g., Linux) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 10:57:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 10:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OIw1ZK000711 for ; Wed, 24 Mar 2004 10:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OIw1BR039586 for ; Wed, 24 Mar 2004 10:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OIw1tH011597; Wed, 24 Mar 2004 10:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OIvetH011584 for ; Wed, 24 Mar 2004 10:57:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OIveBR039583 for ; Wed, 24 Mar 2004 10:57:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OIveRS027629 for ; Wed, 24 Mar 2004 10:57:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OIvePp027628; Wed, 24 Mar 2004 10:57:40 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403241857.i2OIvePp027628@xorpc.icir.org> Date: Wed, 24 Mar 2004 10:57:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_proto_comm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/24 10:57:40 Modified files: xorp/fea/: mfea_proto_comm.cc Log message: Temporary use HAVE_IPV6_MULTICAST_ROUTING to conditionally compile the code that uses inet6_option_*, because currently Linux doesn't have inet6_option_* (it is only in USAGI IPv6 Linux). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 11:02:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 11:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ31ZK001960 for ; Wed, 24 Mar 2004 11:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ31BR039675 for ; Wed, 24 Mar 2004 11:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJ31tH011761; Wed, 24 Mar 2004 11:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJ2FtH011730 for ; Wed, 24 Mar 2004 11:02:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ2FBR039667 for ; Wed, 24 Mar 2004 11:02:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ2FRS028116 for ; Wed, 24 Mar 2004 11:02:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OJ2FZK028115; Wed, 24 Mar 2004 11:02:15 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403241902.i2OJ2FZK028115@xorpc.icir.org> Date: Wed, 24 Mar 2004 11:02:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/24 11:02:15 Modified files: xorp/config/: acipv6.m4 ./: configure Log message: Relax the simple IPv6-specific check whether an IPv6 implementation is reasonable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 11:02:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 11:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ32ZK001975 for ; Wed, 24 Mar 2004 11:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ32BR039677 for ; Wed, 24 Mar 2004 11:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJ32tH011772; Wed, 24 Mar 2004 11:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJ2XtH011736 for ; Wed, 24 Mar 2004 11:02:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ2WBR039671 for ; Wed, 24 Mar 2004 11:02:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJ2WRS028145 for ; Wed, 24 Mar 2004 11:02:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OJ2Wbn028144; Wed, 24 Mar 2004 11:02:32 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403241902.i2OJ2Wbn028144@xorpc.icir.org> Date: Wed, 24 Mar 2004 11:02:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config.h.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/03/24 11:02:32 Modified files: ./: config.h.in Log message: Regenerate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 11:14:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 11:15:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJF1ZK004889 for ; Wed, 24 Mar 2004 11:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJF1BR039815 for ; Wed, 24 Mar 2004 11:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJF1tH012098; Wed, 24 Mar 2004 11:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJEAtH012079 for ; Wed, 24 Mar 2004 11:14:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJEABR039806 for ; Wed, 24 Mar 2004 11:14:10 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJEARS029361 for ; Wed, 24 Mar 2004 11:14:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OJE9nN029360; Wed, 24 Mar 2004 11:14:09 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403241914.i2OJE9nN029360@xorpc.icir.org> Date: Wed, 24 Mar 2004 11:14:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ main.cc next_hop_resolver.cc peer.cc peer_handler_debug.cc rib_ipc_handler.cc route_table_ribin.cc socket.cc xorp/fea/ ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc libfeaclient_bridge.cc xrl_mfea_vif_manager.cc xrl_socket_server.cc xorp/libxipc/ xrl_pf_stcp.cc xrl_router.cc xorp/rib/ vifmanager.cc xrl_target.cc xorp/rip/ port.cc xrl_target_common.hh xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/03/24 11:14:09 Modified files: xorp/bgp/: main.cc next_hop_resolver.cc peer.cc peer_handler_debug.cc rib_ipc_handler.cc route_table_ribin.cc socket.cc xorp/fea/: ifconfig_parse_rtm.cc ifconfig_set_ioctl.cc libfeaclient_bridge.cc xrl_mfea_vif_manager.cc xrl_socket_server.cc xorp/libxipc/: xrl_pf_stcp.cc xrl_router.cc xorp/rib/: vifmanager.cc xrl_target.cc xorp/rip/: port.cc xrl_target_common.hh xorp/rtrmgr/: template_commands.cc Log message: Protect all unused variables with the UNUSED macro. These variables are normally protected by debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 11:34:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 11:35:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJZ1ZK009993 for ; Wed, 24 Mar 2004 11:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJZ1BR040122 for ; Wed, 24 Mar 2004 11:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJZ1tH012647; Wed, 24 Mar 2004 11:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OJYXtH012636 for ; Wed, 24 Mar 2004 11:34:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJYWBR040113 for ; Wed, 24 Mar 2004 11:34:32 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OJYWRS031508 for ; Wed, 24 Mar 2004 11:34:32 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OJYWZe031507; Wed, 24 Mar 2004 11:34:32 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403241934.i2OJYWZe031507@xorpc.icir.org> Date: Wed, 24 Mar 2004 11:34:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh dummy_main.cc peer_handler.cc plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh test_plumbing.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/03/24 11:34:32 Modified files: xorp/bgp/: bgp.cc bgp.hh dummy_main.cc peer_handler.cc plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh test_plumbing.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: 1) Support for originating (static) routes. 2) Remove old static route code. 3) push_ipv4 and push_ipv6 to push and pusn. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 12:02:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 12:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OK31ZK016829 for ; Wed, 24 Mar 2004 12:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OK30BR040480 for ; Wed, 24 Mar 2004 12:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OK30tH013455; Wed, 24 Mar 2004 12:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2OK2ltH013436 for ; Wed, 24 Mar 2004 12:02:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OK2kBR040474 for ; Wed, 24 Mar 2004 12:02:46 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2OK2kRS033987 for ; Wed, 24 Mar 2004 12:02:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2OK2kue033986; Wed, 24 Mar 2004 12:02:46 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403242002.i2OK2kue033986@xorpc.icir.org> Date: Wed, 24 Mar 2004 12:02:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/fea/ Changes by: atanu@xorpc.icir.org. 04/03/24 12:02:46 Modified files: xorp/fea/: libfeaclient_bridge.cc Log message: update_name incorrectly #defined out. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:21 2005 Subject: No subject Wed Mar 24 15:26:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 15:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONR1ZK079349 for ; Wed, 24 Mar 2004 15:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONR1BR042779 for ; Wed, 24 Mar 2004 15:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ONR1tH018857; Wed, 24 Mar 2004 15:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ONR0tH018850 for ; Wed, 24 Mar 2004 15:27:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONR0BR042777 for ; Wed, 24 Mar 2004 15:27:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONQxRS062146 for ; Wed, 24 Mar 2004 15:26:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ONQx4g062145; Wed, 24 Mar 2004 15:26:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403242326.i2ONQx4g062145@xorpc.icir.org> Date: Wed, 24 Mar 2004 15:26:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/24 15:26:59 Modified files: xorp/fea/: fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh Log message: Add is_dummy() method to FtiConfig and IfConfig which returns true if running in dummy mode. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Wed Mar 24 15:34:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 15:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONZ1ZK081279 for ; Wed, 24 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONZ1BR042870 for ; Wed, 24 Mar 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ONZ0tH019092; Wed, 24 Mar 2004 15:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2ONYntH019075 for ; Wed, 24 Mar 2004 15:34:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONYnBR042865 for ; Wed, 24 Mar 2004 15:34:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2ONYnRS063973 for ; Wed, 24 Mar 2004 15:34:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2ONYnxi063972; Wed, 24 Mar 2004 15:34:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403242334.i2ONYnxi063972@xorpc.icir.org> Date: Wed, 24 Mar 2004 15:34:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/24 15:34:48 Modified files: xorp/fea/: fticonfig.cc Log message: * If running in dummy mode, then have_ipv4() and have_ipv6() always return true * If running in dummy mode, then don't do anything for requests that interact directly with the kernel (to enable/disable unicast forwarding, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Wed Mar 24 17:45:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Mar 2004 17:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2P1k2ZK013462 for ; Wed, 24 Mar 2004 17:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2P1k2BR044292 for ; Wed, 24 Mar 2004 17:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2P1k1tH022732; Wed, 24 Mar 2004 17:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2P1jAtH022717 for ; Wed, 24 Mar 2004 17:45:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2P1jABR044285 for ; Wed, 24 Mar 2004 17:45:10 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2P1jARS082485 for ; Wed, 24 Mar 2004 17:45:10 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2P1jAfE082484; Wed, 24 Mar 2004 17:45:10 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403250145.i2P1jAfE082484@xorpc.icir.org> Date: Wed, 24 Mar 2004 17:45:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_base.cc rt_tab_base.hh rt_tab_deletion.cc rt_tab_expect.cc rt_tab_export.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/03/24 17:45:10 Modified files: xorp/rib/: rt_tab_base.cc rt_tab_base.hh rt_tab_deletion.cc rt_tab_expect.cc rt_tab_export.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_register.cc Log message: Change RouteTable base class variables to private (_next_table and _tablename) and add accessors. Coerce changes of RouteTable::_next_table through RouteTable::set_next_table(). Change set_next_table to be virtual so tables have an opportunity to act when their next table is changed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 9:52:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 09:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2PHr1Jw020419 for ; Thu, 25 Mar 2004 09:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2PHr1ZD055702 for ; Thu, 25 Mar 2004 09:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2PHr0tH013257; Thu, 25 Mar 2004 09:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2PHq6tH013230 for ; Thu, 25 Mar 2004 09:52:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2PHq6ZD055698 for ; Thu, 25 Mar 2004 09:52:06 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2PHq6gd048102 for ; Thu, 25 Mar 2004 09:52:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2PHq6DM048101; Thu, 25 Mar 2004 09:52:06 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403251752.i2PHq6DM048101@xorpc.icir.org> Date: Thu, 25 Mar 2004 9:52:06 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_filter.cc test_filter.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/03/25 09:52:06 Modified files: xorp/bgp/: test_filter.cc test_filter.reference Log message: Add additional isolation test for cascaded filters. Unfortunately didn't find the memory leak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 17:26:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 17:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1S1Jw032263 for ; Thu, 25 Mar 2004 17:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1S1ZD060519 for ; Thu, 25 Mar 2004 17:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1S0Pp024575; Thu, 25 Mar 2004 17:28:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1R0Pp024544 for ; Thu, 25 Mar 2004 17:27:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1QxZD060509 for ; Thu, 25 Mar 2004 17:26:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1Qxgd072286 for ; Thu, 25 Mar 2004 17:26:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q1QxXW072285; Thu, 25 Mar 2004 17:26:59 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403260126.i2Q1QxXW072285@xorpc.icir.org> Date: Thu, 25 Mar 2004 17:26:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/25 17:26:59 Modified files: xorp/fea/: ifconfig_set.cc Log message: Fix the logic for testing whether the network interface address we want to set already exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 17:28:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 17:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1T1Jw032580 for ; Thu, 25 Mar 2004 17:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1T1ZD060539 for ; Thu, 25 Mar 2004 17:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1T0Pp024606; Thu, 25 Mar 2004 17:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1SwPp024600 for ; Thu, 25 Mar 2004 17:28:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1SwZD060537 for ; Thu, 25 Mar 2004 17:28:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1Swgd072464 for ; Thu, 25 Mar 2004 17:28:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q1SwmC072463; Thu, 25 Mar 2004 17:28:58 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403260128.i2Q1SwmC072463@xorpc.icir.org> Date: Thu, 25 Mar 2004 17:28:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/25 17:28:58 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Add a fix to nlm_newdeladdr_to_fea_cfg() : Re-assign IFA_LOCAL to IFA_ADDRESS and vice-versa. This tweak is needed according to the iproute2 source code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 17:29:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 17:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1U1Jw032840 for ; Thu, 25 Mar 2004 17:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1U1ZD060558 for ; Thu, 25 Mar 2004 17:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1U1Pp024644; Thu, 25 Mar 2004 17:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1TnPp024631 for ; Thu, 25 Mar 2004 17:29:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1TnZD060551 for ; Thu, 25 Mar 2004 17:29:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1Tngd072611 for ; Thu, 25 Mar 2004 17:29:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q1TnkA072610; Thu, 25 Mar 2004 17:29:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403260129.i2Q1TnkA072610@xorpc.icir.org> Date: Thu, 25 Mar 2004 17:29:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/25 17:29:49 Modified files: xorp/fea/: netlink_socket_utils.cc Log message: Ignore RTN_UNREACHABLE routing entries for unreachable destinations. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 17:31:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 17:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1W1Jw033406 for ; Thu, 25 Mar 2004 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1W1ZD060610 for ; Thu, 25 Mar 2004 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1W1Pp024715; Thu, 25 Mar 2004 17:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q1VpPp024708 for ; Thu, 25 Mar 2004 17:31:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1VpZD060608 for ; Thu, 25 Mar 2004 17:31:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q1Vpgd072795 for ; Thu, 25 Mar 2004 17:31:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q1VpuA072794; Thu, 25 Mar 2004 17:31:51 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403260131.i2Q1VpuA072794@xorpc.icir.org> Date: Thu, 25 Mar 2004 17:31:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/25 17:31:51 Modified files: xorp/fea/: netlink_socket.cc Log message: Linux IPv6-related bug fix: Use NETLINK_ROUTE instead of NETLINK_ROUTE6 to open netlink socket for IPv6 purpose. We need to use NETLINK_ROUTE despite the fact that the netlink(7) manual page says we should use NETLINK_ROUTE6 instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 22:17:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 22:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6I2Jw006113 for ; Thu, 25 Mar 2004 22:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6I2ZD063225 for ; Thu, 25 Mar 2004 22:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q6I1Pp000457; Thu, 25 Mar 2004 22:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q6HHPp000447 for ; Thu, 25 Mar 2004 22:17:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6HGZD063215 for ; Thu, 25 Mar 2004 22:17:16 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6HFgd091842 for ; Thu, 25 Mar 2004 22:17:15 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q6HF54091841; Thu, 25 Mar 2004 22:17:15 -0800 (PST) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200403260617.i2Q6HF54091841@xorpc.icir.org> Date: Thu, 25 Mar 2004 22:17:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/03/25 22:17:15 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Looking for memory leak when a new peering is brought up. When run through leak-tracer test7 shows the problem test8 doesn't. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Thu Mar 25 22:21:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Mar 2004 22:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6M1Jw007082 for ; Thu, 25 Mar 2004 22:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6M0ZD063271 for ; Thu, 25 Mar 2004 22:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q6M0Pp000534; Thu, 25 Mar 2004 22:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q6LsPp000522 for ; Thu, 25 Mar 2004 22:21:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6LsZD063269 for ; Thu, 25 Mar 2004 22:21:54 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q6Lsgd092117 for ; Thu, 25 Mar 2004 22:21:54 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q6Lsdr092116; Thu, 25 Mar 2004 22:21:54 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403260621.i2Q6Lsdr092116@xorpc.icir.org> Date: Thu, 25 Mar 2004 22:21:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ debug.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/25 22:21:54 Modified files: xorp/libxorp/: debug.h Log message: Replace do { ... } while(0) skirting around one of the debug_msg definitions with if (0) { ... }. This stops evaluation of the code within the if block but allows the compiler to check the format string. Pointed out by E.Kohler (Yay!). /me missed this, doh! _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Fri Mar 26 1:03:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Mar 2004 01:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q942Jw047791 for ; Fri, 26 Mar 2004 01:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q941ZD064776 for ; Fri, 26 Mar 2004 01:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q941Pp003814; Fri, 26 Mar 2004 01:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2Q93YPp003780 for ; Fri, 26 Mar 2004 01:03:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q93YZD064770 for ; Fri, 26 Mar 2004 01:03:34 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2Q93Xgd005102 for ; Fri, 26 Mar 2004 01:03:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2Q93Xk6005101; Fri, 26 Mar 2004 01:03:33 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403260903.i2Q93Xk6005101@xorpc.icir.org> Date: Fri, 26 Mar 2004 1:03:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ debug.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 04/03/26 01:03:33 Modified files: xorp/libxorp/: debug.h Log message: Ugly temporary fix for compilation errors introduced by switching from do{}while to if{} in debug_msg macro. Problem caused by the trailing semicolon when doing: if (...) debug_msg("xxx"); else ... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Fri Mar 26 04:46:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Mar 2004 04:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QCl1Jw093543 for ; Fri, 26 Mar 2004 04:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QCl1ZD067177 for ; Fri, 26 Mar 2004 04:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QCl0Pp009391; Fri, 26 Mar 2004 04:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QCk2Pp009376 for ; Fri, 26 Mar 2004 04:46:02 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QCk0ZD067174; Fri, 26 Mar 2004 04:46:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QCk07n056916; Fri, 26 Mar 2004 04:46:00 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200403261246.i2QCk07n056916@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ debug.h In-Reply-To: Your message of "Fri, 26 Mar 2004 01:03:33." <200403260903.i2Q93Xk6005101@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 26 Mar 2004 04:46:00 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | CVSROOT: /usr/local/share/doc/apache/cvs | Module name: xorp | Repository: xorp/libxorp/ | Changes by: mjh@xorpc.icir.org. 04/03/26 01:03:33 | | Modified files: | xorp/libxorp/: debug.h | | Log message: | Ugly temporary fix for compilation errors introduced by switching from | do{}while to if{} in debug_msg macro. Problem caused by the trailing | semicolon when doing: | | if (...) debug_msg("xxx"); else ... Oops! The ugly fix is just fine. I half considered doing it that way when I made the change that broke the build. I didn't see the breakage though, but could not recompile the whole system when I did the commit. I should have waited, but it seemed so easy. Thanks Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Fri Mar 26 11:33:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Mar 2004 11:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJY2Jw084364 for ; Fri, 26 Mar 2004 11:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJY2aM072811 for ; Fri, 26 Mar 2004 11:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QJY1Pp018371; Fri, 26 Mar 2004 11:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QJXgPp018346 for ; Fri, 26 Mar 2004 11:33:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJXgaM072804 for ; Fri, 26 Mar 2004 11:33:42 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJXfgd045153 for ; Fri, 26 Mar 2004 11:33:41 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2QJXfO2045152; Fri, 26 Mar 2004 11:33:41 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403261933.i2QJXfO2045152@xorpc.icir.org> Date: Fri, 26 Mar 2004 11:33:41 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/03/26 11:33:41 Modified files: xorp/bgp/: route_table_cache.cc Log message: Fix BGP space leak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Fri Mar 26 11:44:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Mar 2004 11:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJj1Jw087153 for ; Fri, 26 Mar 2004 11:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJj1aM072924 for ; Fri, 26 Mar 2004 11:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QJj1Pp018693; Fri, 26 Mar 2004 11:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2QJi4Pp018666 for ; Fri, 26 Mar 2004 11:44:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJi4aM072913 for ; Fri, 26 Mar 2004 11:44:04 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2QJi4gd045652 for ; Fri, 26 Mar 2004 11:44:04 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2QJi4L1045651; Fri, 26 Mar 2004 11:44:04 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200403261944.i2QJi4L1045651@xorpc.icir.org> Date: Fri, 26 Mar 2004 11:44:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/03/26 11:44:04 Modified files: xorp/bgp/: plumbing.cc route_table_cache.cc Log message: Minor cleanups. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Sat Mar 27 8:48:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 08:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RGn2Jw055499 for ; Sat, 27 Mar 2004 08:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RGn2aM088841 for ; Sat, 27 Mar 2004 08:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RGn1RL012942; Sat, 27 Mar 2004 08:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RGmaRL012932 for ; Sat, 27 Mar 2004 08:48:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RGmaaM088839 for ; Sat, 27 Mar 2004 08:48:36 -0800 (PST) (envelope-from jcardona@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RGmZgd019208 for ; Sat, 27 Mar 2004 08:48:35 -0800 (PST) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RGmZtf019207; Sat, 27 Mar 2004 08:48:35 -0800 (PST) (envelope-from jcardona) From: Javier Cardona Message-Id: <200403271648.i2RGmZtf019207@xorpc.icir.org> Date: Sat, 27 Mar 2004 8:48:35 () To: xorp-cvs@icir.org Reply-To: jcardona@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ bgp4_mib_1657_bgppeertable.cc xorpevents.hh xorp/mibs/ fixconfigs.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: jcardona@xorpc.icir.org. 04/03/27 08:48:35 Modified files: xorp/mibs/: bgp4_mib_1657_bgppeertable.cc xorpevents.hh Added files: xorp/mibs/: fixconfigs.h Log message: Resolving conflicts between net-snmp and xorp 'config.h' files. Partial solution to Bug 20 'XORP fails to build with net-snmp 5.1_4' _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Sat Mar 27 10:09:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 10:10:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RIA0Jw071186 for ; Sat, 27 Mar 2004 10:10:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RIA0aM089605 for ; Sat, 27 Mar 2004 10:10:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RIA0RL014250; Sat, 27 Mar 2004 10:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RI9QRL014233 for ; Sat, 27 Mar 2004 10:09:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RI9QaM089603 for ; Sat, 27 Mar 2004 10:09:26 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RI9Qgd031752 for ; Sat, 27 Mar 2004 10:09:26 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RI9QKA031751; Sat, 27 Mar 2004 10:09:26 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403271809.i2RI9QKA031751@xorpc.icir.org> Date: Sat, 27 Mar 2004 10:09:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ header.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/03/27 10:09:26 Modified files: xorp/libxipc/: header.cc Log message: Fix code that worked through side-effect of string::c_str() begin called in a debug_msg macro. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Sat Mar 27 11:07:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 11:08:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJ82Jw082539 for ; Sat, 27 Mar 2004 11:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJ81aM090185 for ; Sat, 27 Mar 2004 11:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RJ81RL015349; Sat, 27 Mar 2004 11:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RJ80RL015343 for ; Sat, 27 Mar 2004 11:08:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJ80aM090183 for ; Sat, 27 Mar 2004 11:08:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJ80gd035096 for ; Sat, 27 Mar 2004 11:08:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RJ80Jd035095; Sat, 27 Mar 2004 11:08:00 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403271908.i2RJ80Jd035095@xorpc.icir.org> Date: Sat, 27 Mar 2004 11:07:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ fixconfigs.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 04/03/27 11:07:59 Modified files: xorp/mibs/: fixconfigs.h Log message: Replace the CVS Log tag with the CVS XORP tag _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Sat Mar 27 11:11:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 11:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJC1Jw083323 for ; Sat, 27 Mar 2004 11:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJC1aM090223 for ; Sat, 27 Mar 2004 11:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RJC1RL015404; Sat, 27 Mar 2004 11:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RJBERL015395 for ; Sat, 27 Mar 2004 11:11:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJBEaM090219 for ; Sat, 27 Mar 2004 11:11:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RJBEgd035261 for ; Sat, 27 Mar 2004 11:11:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RJBEcU035260; Sat, 27 Mar 2004 11:11:14 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403271911.i2RJBEcU035260@xorpc.icir.org> Date: Sat, 27 Mar 2004 11:11:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ xorpevents.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 04/03/27 11:11:14 Modified files: xorp/mibs/: xorpevents.hh Log message: __MIBS_XORPEVENTLOOP_HH__ -> __MIBS_XORPEVENTS_HH__ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:22 2005 Subject: No subject Sat Mar 27 12:46:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 12:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RKl1Jw001977 for ; Sat, 27 Mar 2004 12:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RKl1aM091014 for ; Sat, 27 Mar 2004 12:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RKl1RL016927; Sat, 27 Mar 2004 12:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RKkNRL016914 for ; Sat, 27 Mar 2004 12:46:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RKkNaM091012 for ; Sat, 27 Mar 2004 12:46:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RKkNgd044197 for ; Sat, 27 Mar 2004 12:46:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RKkNVM044196; Sat, 27 Mar 2004 12:46:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403272046.i2RKkNVM044196@xorpc.icir.org> Date: Sat, 27 Mar 2004 12:46:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_1657_bgpidentifier.cc ...bgp4_mib_1657_bgpidentifier.hh ...bgp4_mib_1657_bgplocalas.cc ...bgp4_mib_1657_bgplocalas.hh ...bgp4_mib_1657_bgppeertable.cc ...bgp4_mib_1657_bgppeertable.hh ...bgp4_mib_1657_bgpversion.cc ...bgp4_mib_1657_bgpversion.hh ...bgp4_mib_xrl_target.cc ...fixconfigs.h ...ospf_mib_1850.cc ...ospf_mib_1850.hh ...test_xorpevents.cc ...xorp_if_mib_module.cc ...xorp_if_mib_module.hh ...xorp_if_mib_xrl_target.cc ...xorpevents.cc ...xorpevents.hh xorp/mibs/ xorp_netsnmp_module.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 04/03/27 12:46:22 Modified files: xorp/mibs/: Makefile.am Makefile.in bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_1657_bgpidentifier.cc bgp4_mib_1657_bgpidentifier.hh bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc bgp4_mib_1657_bgpversion.hh bgp4_mib_xrl_target.cc fixconfigs.h ospf_mib_1850.cc ospf_mib_1850.hh test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorp_if_mib_xrl_target.cc xorpevents.cc xorpevents.hh Added files: xorp/mibs/: xorp_netsnmp_module.h Log message: * Added a new file xorp_netsnmp_module.h * Fix some of the include files ordering: - Remove #include "config.h" - Add #include "fixconfigs.h" as appropriate * Include the XORP template header where missing _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sat Mar 27 15:28:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 15:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNT1Jw034928 for ; Sat, 27 Mar 2004 15:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNT0aM092358 for ; Sat, 27 Mar 2004 15:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNT0RL019611; Sat, 27 Mar 2004 15:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNSQRL019594 for ; Sat, 27 Mar 2004 15:28:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNSQaM092354 for ; Sat, 27 Mar 2004 15:28:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNSPgd048676 for ; Sat, 27 Mar 2004 15:28:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RNSPSp048675; Sat, 27 Mar 2004 15:28:25 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403272328.i2RNSPSp048675@xorpc.icir.org> Date: Sat, 27 Mar 2004 15:28:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh ifconfig.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/27 15:28:25 Modified files: xorp/fea/: ifconfig.hh ifconfig.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set.cc Log message: * Rename IfConfig::get_ifname() and get_ifindex() to get_insert_ifname() and get_insert_ifindex() to reflect the fact that those methods are actually modifying the internal interface map! In the future those methods should be refactored to avoid any confusion. * Add new methods IfConfig::find_ifname() and find_ifindex() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sat Mar 27 15:29:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 15:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNU1Jw035142 for ; Sat, 27 Mar 2004 15:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNU1aM092373 for ; Sat, 27 Mar 2004 15:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNU1RL019638; Sat, 27 Mar 2004 15:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNT5RL019622 for ; Sat, 27 Mar 2004 15:29:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNT5aM092362 for ; Sat, 27 Mar 2004 15:29:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNT5gd048723 for ; Sat, 27 Mar 2004 15:29:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RNT5XD048722; Sat, 27 Mar 2004 15:29:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403272329.i2RNT5XD048722@xorpc.icir.org> Date: Sat, 27 Mar 2004 15:29:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/27 15:29:05 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Bug fix in deleting interfaces that don't exist anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sat Mar 27 15:31:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Mar 2004 15:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNW2Jw035542 for ; Sat, 27 Mar 2004 15:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNW1aM092411 for ; Sat, 27 Mar 2004 15:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNW1RL019699; Sat, 27 Mar 2004 15:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2RNVBRL019687 for ; Sat, 27 Mar 2004 15:31:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNVBaM092405 for ; Sat, 27 Mar 2004 15:31:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2RNVBgd048832 for ; Sat, 27 Mar 2004 15:31:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2RNVBTc048831; Sat, 27 Mar 2004 15:31:11 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403272331.i2RNVBTc048831@xorpc.icir.org> Date: Sat, 27 Mar 2004 15:31:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node_cli.cc xorp/mld6igmp/ mld6igmp_node_cli.cc xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/27 15:31:11 Modified files: xorp/fea/: mfea_node_cli.cc xorp/mld6igmp/: mld6igmp_node_cli.cc xorp/pim/: pim_node_cli.cc Log message: Narror the reserved field width of the interface names in the CLI output from 14 to 12 characters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 7:34:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 07:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SFZ1Jw033815 for ; Sun, 28 Mar 2004 07:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SFZ1aM000330 for ; Sun, 28 Mar 2004 07:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SFZ1RL006163; Sun, 28 Mar 2004 07:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SFYHRL006134 for ; Sun, 28 Mar 2004 07:34:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SFYHaM000325 for ; Sun, 28 Mar 2004 07:34:17 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SFYHgd004276 for ; Sun, 28 Mar 2004 07:34:17 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SFYHB1004273; Sun, 28 Mar 2004 07:34:17 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403281534.i2SFYHB1004273@xorpc.icir.org> Date: Sun, 28 Mar 2004 7:34:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_pf_sudp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/03/28 07:34:17 Modified files: xorp/libxipc/: xrl_pf_sudp.cc Log message: Explicitly check string::iterator against end. This code has presumeably worked by side-effect of '\0' being appended to string's internal representation after c_str() had been called. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 9:56:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 09:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SHv1Jw062692 for ; Sun, 28 Mar 2004 09:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SHv1aM002844 for ; Sun, 28 Mar 2004 09:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SHv1RL008178; Sun, 28 Mar 2004 09:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SHu6RL008168 for ; Sun, 28 Mar 2004 09:56:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SHu6aM002842 for ; Sun, 28 Mar 2004 09:56:06 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SHu6gd010936 for ; Sun, 28 Mar 2004 09:56:06 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SHu6e2010935; Sun, 28 Mar 2004 09:56:06 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403281756.i2SHu6e2010935@xorpc.icir.org> Date: Sun, 28 Mar 2004 9:56:06 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_deletion.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/03/28 09:56:06 Modified files: xorp/rib/: rt_tab_deletion.hh Log message: Add parent(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 12:25:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 12:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKQ1Jw091854 for ; Sun, 28 Mar 2004 12:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKQ1aM004297 for ; Sun, 28 Mar 2004 12:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SKQ1RL010704; Sun, 28 Mar 2004 12:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SKPoRL010693 for ; Sun, 28 Mar 2004 12:25:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKPoaM004295 for ; Sun, 28 Mar 2004 12:25:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKPogd015877 for ; Sun, 28 Mar 2004 12:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SKPn36015876; Sun, 28 Mar 2004 12:25:49 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403282025.i2SKPn36015876@xorpc.icir.org> Date: Sun, 28 Mar 2004 12:25:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/28 12:25:49 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: A bug fix in XrlMfeaVifManager::interface_deleted() when deleting multiple items from a container. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 12:55:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 12:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKu1Jw097716 for ; Sun, 28 Mar 2004 12:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKu0aM004561 for ; Sun, 28 Mar 2004 12:56:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SKu0RL011269; Sun, 28 Mar 2004 12:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SKtvRL011263 for ; Sun, 28 Mar 2004 12:55:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKtvaM004559 for ; Sun, 28 Mar 2004 12:55:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKtugd016910 for ; Sun, 28 Mar 2004 12:55:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SKtu2k016909; Sun, 28 Mar 2004 12:55:56 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403282055.i2SKtu2k016909@xorpc.icir.org> Date: Sun, 28 Mar 2004 12:55:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/28 12:55:56 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 12:59:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 13:00:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SL02Jw098522 for ; Sun, 28 Mar 2004 13:00:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SL02aM004595 for ; Sun, 28 Mar 2004 13:00:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SL02RL011373; Sun, 28 Mar 2004 13:00:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SKxORL011350 for ; Sun, 28 Mar 2004 12:59:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKxOaM004581 for ; Sun, 28 Mar 2004 12:59:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SKxNgd017150 for ; Sun, 28 Mar 2004 12:59:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SKxNuL017149; Sun, 28 Mar 2004 12:59:23 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403282059.i2SKxNuL017149@xorpc.icir.org> Date: Sun, 28 Mar 2004 12:59:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/03/28 12:59:23 Modified files: xorp/rib/: vifmanager.cc Log message: A bug fix in VifManager::interface_deleted() when deleting multiple items from a container. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Sun Mar 28 13:18:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Mar 2004 13:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SLJ1Jw002430 for ; Sun, 28 Mar 2004 13:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SLJ1aM004781 for ; Sun, 28 Mar 2004 13:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SLJ1RL011644; Sun, 28 Mar 2004 13:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2SLIxRL011638 for ; Sun, 28 Mar 2004 13:18:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SLIwaM004779 for ; Sun, 28 Mar 2004 13:18:58 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2SLIwgd017774 for ; Sun, 28 Mar 2004 13:18:58 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2SLIwC0017773; Sun, 28 Mar 2004 13:18:58 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403282118.i2SLIwC0017773@xorpc.icir.org> Date: Sun, 28 Mar 2004 13:18:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_deletion.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/03/28 13:18:58 Modified files: xorp/rib/: rt_tab_deletion.hh Log message: Missing . _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Mon Mar 29 19:22:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Mar 2004 19:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3N1Jw080413 for ; Mon, 29 Mar 2004 19:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3N1cF025779 for ; Mon, 29 Mar 2004 19:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3N0RL023450; Mon, 29 Mar 2004 19:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3M5RL023428 for ; Mon, 29 Mar 2004 19:22:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3M5cF025769 for ; Mon, 29 Mar 2004 19:22:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3M5gd055524 for ; Mon, 29 Mar 2004 19:22:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2U3M5IB055523; Mon, 29 Mar 2004 19:22:05 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403300322.i2U3M5IB055523@xorpc.icir.org> Date: Mon, 29 Mar 2004 19:22:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ static_routes.xif static_routes_xif.cc static_routes_xif.hh xorp/xrl/targets/ static_routes.xrls static_routes_base.cc static_routes_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/03/29 19:22:04 Modified files: xorp/xrl/interfaces/: static_routes.xif static_routes_xif.cc static_routes_xif.hh xorp/xrl/targets/: static_routes.xrls static_routes_base.cc static_routes_base.hh Log message: Add new XRLs that can be used to add or replace a static route by explicitly specifying the network interface toward the destination: add_interface_route4 add_interface_route6 replace_interface_route4 replace_interface_route6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Mon Mar 29 19:23:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Mar 2004 19:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3O1Jw080622 for ; Mon, 29 Mar 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3O1cF025808 for ; Mon, 29 Mar 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3O1RL023485; Mon, 29 Mar 2004 19:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3NJRL023471 for ; Mon, 29 Mar 2004 19:23:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3NJcF025793 for ; Mon, 29 Mar 2004 19:23:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3NJgd055716 for ; Mon, 29 Mar 2004 19:23:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2U3NJJM055715; Mon, 29 Mar 2004 19:23:19 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403300323.i2U3NJJM055715@xorpc.icir.org> Date: Mon, 29 Mar 2004 19:23:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.hh static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/29 19:23:19 Modified files: xorp/static_routes/: static_routes_node.hh static_routes_node.cc Log message: Add support for explicitly specifying in a route the interface and vif name toward the destination. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Mon Mar 29 19:24:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Mar 2004 19:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3P1Jw080822 for ; Mon, 29 Mar 2004 19:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3P1cF025829 for ; Mon, 29 Mar 2004 19:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3P1RL023532; Mon, 29 Mar 2004 19:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U3OCRL023499 for ; Mon, 29 Mar 2004 19:24:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3OCcF025815 for ; Mon, 29 Mar 2004 19:24:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U3OCgd055852 for ; Mon, 29 Mar 2004 19:24:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2U3OCr6055851; Mon, 29 Mar 2004 19:24:12 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403300324.i2U3OCr6055851@xorpc.icir.org> Date: Mon, 29 Mar 2004 19:24:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/29 19:24:12 Modified files: xorp/static_routes/: xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: Add support for the following new XRLs: add_interface_route4 add_interface_route6 replace_interface_route4 replace_interface_route6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Tue Mar 30 0:20:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Mar 2004 00:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8L1Jw037813 for ; Tue, 30 Mar 2004 00:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8L1cF028502 for ; Tue, 30 Mar 2004 00:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U8L0RL029476; Tue, 30 Mar 2004 00:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U8KVRL029454 for ; Tue, 30 Mar 2004 00:20:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8KScF028498 for ; Tue, 30 Mar 2004 00:20:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8KSgd074934 for ; Tue, 30 Mar 2004 00:20:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2U8KSY4074933; Tue, 30 Mar 2004 00:20:28 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403300820.i2U8KSY4074933@xorpc.icir.org> Date: Tue, 30 Mar 2004 0:20:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/03/30 00:20:28 Modified files: xorp/fea/: fticonfig_entry_set_netlink.cc Log message: Conditionally add the RTA_GATEWAY gateway attribute only if the gateway address is not IPvX::ZERO(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Tue Mar 30 0:27:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Mar 2004 00:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8S1Jw039176 for ; Tue, 30 Mar 2004 00:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8S1cF028562 for ; Tue, 30 Mar 2004 00:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U8S1RL029662; Tue, 30 Mar 2004 00:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2U8RhRL029646 for ; Tue, 30 Mar 2004 00:27:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8RhcF028557 for ; Tue, 30 Mar 2004 00:27:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2U8Rhgd075222 for ; Tue, 30 Mar 2004 00:27:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2U8RhfA075221; Tue, 30 Mar 2004 00:27:43 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403300827.i2U8RhfA075221@xorpc.icir.org> Date: Tue, 30 Mar 2004 0:27:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ Makefile.am Makefile.in xorp/static_routes/ command_static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/03/30 00:27:43 Modified files: xorp/static_routes/: Makefile.am Makefile.in Added files: xorp/static_routes/: command_static_routes Log message: Added new file command_static_routes that can be used as a helper to send XRLs to a running StaticRoutes process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Tue Mar 30 9:40:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Mar 2004 09:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UHg1Jw059610 for ; Tue, 30 Mar 2004 09:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UHg1cF035633 for ; Tue, 30 Mar 2004 09:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2UHg0RL012083; Tue, 30 Mar 2004 09:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2UHf0RL012065 for ; Tue, 30 Mar 2004 09:41:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UHexcF035625 for ; Tue, 30 Mar 2004 09:40:59 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UHexgd019013 for ; Tue, 30 Mar 2004 09:40:59 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2UHexe0019012; Tue, 30 Mar 2004 09:40:59 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200403301740.i2UHexe0019012@xorpc.icir.org> Date: Tue, 30 Mar 2004 9:40:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_origin.hh rt_tab_origin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/03/30 09:40:59 Modified files: xorp/rib/: rt_tab_origin.hh rt_tab_origin.cc Log message: Add const route_container() method to expose routes associated with OriginTable. Add generation id so parties iterating over route_container() can tell when it's been handed over to a DeletionTable. Add route_count() method so upstream tables can tell if update originated with OriginTable or through a deletion table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Tue Mar 30 14:56:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Mar 2004 14:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UMv1Jw036077 for ; Tue, 30 Mar 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UMv1cF038993 for ; Tue, 30 Mar 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2UMv1RL020781; Tue, 30 Mar 2004 14:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i2UMuQRL020766 for ; Tue, 30 Mar 2004 14:56:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UMuQcF038989 for ; Tue, 30 Mar 2004 14:56:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i2UMuQgd044396 for ; Tue, 30 Mar 2004 14:56:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i2UMuQgl044395; Tue, 30 Mar 2004 14:56:26 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200403302256.i2UMuQgl044395@xorpc.icir.org> Date: Tue, 30 Mar 2004 14:56:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/03/30 14:56:26 Modified files: xorp/libxorp/: vif.cc Log message: Set the interface name in the Vif copy constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Wed Mar 31 16:02:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 31 Mar 2004 16:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31031Jw068038 for ; Wed, 31 Mar 2004 16:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31031cF056319 for ; Wed, 31 Mar 2004 16:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31031eB029972; Wed, 31 Mar 2004 16:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3102beB029954 for ; Wed, 31 Mar 2004 16:02:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3102acF056316 for ; Wed, 31 Mar 2004 16:02:36 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3102agd071303 for ; Wed, 31 Mar 2004 16:02:36 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3102acF071300; Wed, 31 Mar 2004 16:02:36 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200404010002.i3102acF071300@xorpc.icir.org> Date: Wed, 31 Mar 2004 16:02:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback.cc callback_debug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/03/31 16:02:36 Modified files: xorp/libxorp/: callback-gen.py callback.cc callback_debug.hh Log message: For callback debug case store active callback data in a stack rather than inside the callback. The callback may itself be deleted in it's dispatch method so is not a safe place to find the data after the callback. In addition, one callback dispatch may invoke other callback dispatches. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Wed Mar 31 18:58:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 31 Mar 2004 18:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i312x1Jw008649 for ; Wed, 31 Mar 2004 18:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i312x0cF058147 for ; Wed, 31 Mar 2004 18:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i312x0eB004400; Wed, 31 Mar 2004 18:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i312w9eB004385 for ; Wed, 31 Mar 2004 18:58:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i312w9cF058142 for ; Wed, 31 Mar 2004 18:58:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i312w9gd096331 for ; Wed, 31 Mar 2004 18:58:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i312w9pK096330; Wed, 31 Mar 2004 18:58:09 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404010258.i312w9pK096330@xorpc.icir.org> Date: Wed, 31 Mar 2004 18:58:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/03/31 18:58:09 Modified files: xorp/pim/: TODO Log message: Trim TODO entries that are related to the PIM BSR spec (those entries/comments are accumulated and sorted in a private file). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:23 2005 Subject: No subject Thu Apr 1 3:42:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 03:43:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Bh1Jw014436 for ; Thu, 1 Apr 2004 03:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Bh1cF063565 for ; Thu, 1 Apr 2004 03:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31Bh1eB014491; Thu, 1 Apr 2004 03:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31BgleB014474 for ; Thu, 1 Apr 2004 03:42:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31BglcF063558 for ; Thu, 1 Apr 2004 03:42:47 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Bglgd038024 for ; Thu, 1 Apr 2004 03:42:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31BglI0038023; Thu, 1 Apr 2004 03:42:47 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404011142.i31BglI0038023@xorpc.icir.org> Date: Thu, 1 Apr 2004 3:42:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 04/04/01 03:42:47 Modified files: xorp/fea/: xrl_socket_server.cc Log message: Fix broken parameter to accept. Why didn't previous versions of gcc spot this? _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 4:22:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 04:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31CN1Jw022234 for ; Thu, 1 Apr 2004 04:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31CN1cF064004 for ; Thu, 1 Apr 2004 04:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31CN1eB015355; Thu, 1 Apr 2004 04:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31CM7eB015329 for ; Thu, 1 Apr 2004 04:22:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31CM7cF064001 for ; Thu, 1 Apr 2004 04:22:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31CM7gd041257 for ; Thu, 1 Apr 2004 04:22:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31CM7Q4041255; Thu, 1 Apr 2004 04:22:07 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404011222.i31CM7Q4041255@xorpc.icir.org> Date: Thu, 1 Apr 2004 4:22:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/01 04:22:06 Modified files: xorp/fea/: mfea_node.cc mfea_node.hh Log message: Refactor MfeaNode::get_mrib_table() to return the result table in a vector instead of an array. This should fix a non-ISO compliant compilation problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 10:21:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 10:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31IM1Jw011590 for ; Thu, 1 Apr 2004 10:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31IM1b0069576 for ; Thu, 1 Apr 2004 10:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31IM1eB026894; Thu, 1 Apr 2004 10:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31ILNeB026850 for ; Thu, 1 Apr 2004 10:21:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31ILNb0069570 for ; Thu, 1 Apr 2004 10:21:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31ILNgd065459 for ; Thu, 1 Apr 2004 10:21:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31ILMq9065458; Thu, 1 Apr 2004 10:21:22 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404011821.i31ILMq9065458@xorpc.icir.org> Date: Thu, 1 Apr 2004 10:21:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea fticonfig_entry_set_netlink.cc netlink_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/01 10:21:22 Modified files: xorp/fea/: configure_mfea fticonfig_entry_set_netlink.cc netlink_socket_utils.cc Log message: Don't use RTA_METRICS netlink attribute to set/get the routing metric to/from the Linux kernel, because it is the wrong one. Instead, use attribute RTA_PRIORITY. Hence, we cannot set/get the admin distance to/from the Linux kernel, because the kernel doesn't keep that value. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 11:03:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 11:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J41Jw028454 for ; Thu, 1 Apr 2004 11:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J41b0069973 for ; Thu, 1 Apr 2004 11:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31J41eB028049; Thu, 1 Apr 2004 11:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31J38eB028025 for ; Thu, 1 Apr 2004 11:03:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J37b0069967 for ; Thu, 1 Apr 2004 11:03:07 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J37gd067155 for ; Thu, 1 Apr 2004 11:03:07 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31J37jN067154; Thu, 1 Apr 2004 11:03:07 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200404011903.i31J37jN067154@xorpc.icir.org> Date: Thu, 1 Apr 2004 11:03:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ routing_process.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/04/01 11:03:07 Removed files: xorp/xrl/interfaces/: routing_process.xif Log message: Deadwood. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 11:04:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 11:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J42Jw028471 for ; Thu, 1 Apr 2004 11:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J42b0069977 for ; Thu, 1 Apr 2004 11:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31J42eB028063; Thu, 1 Apr 2004 11:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31J40eB028042 for ; Thu, 1 Apr 2004 11:04:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J40b0069971 for ; Thu, 1 Apr 2004 11:04:00 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31J40gd067220 for ; Thu, 1 Apr 2004 11:04:00 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31J40DF067219; Thu, 1 Apr 2004 11:04:00 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200404011904.i31J40DF067219@xorpc.icir.org> Date: Thu, 1 Apr 2004 11:04:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/interfaces/ redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/04/01 11:04:00 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh Log message: Add route redistribution interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 11:31:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 11:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JW1Jw037447 for ; Thu, 1 Apr 2004 11:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JW1b0070308 for ; Thu, 1 Apr 2004 11:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31JW1eB028871; Thu, 1 Apr 2004 11:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31JVNeB028853 for ; Thu, 1 Apr 2004 11:31:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JVMb0070306 for ; Thu, 1 Apr 2004 11:31:22 -0800 (PST) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JVMgd068551 for ; Thu, 1 Apr 2004 11:31:22 -0800 (PST) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31JVMZp068550; Thu, 1 Apr 2004 11:31:22 -0800 (PST) (envelope-from hodson) From: Orion Hodson Message-Id: <200404011931.i31JVMZp068550@xorpc.icir.org> Date: Thu, 1 Apr 2004 11:31:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser_xrl_cmds.hh rib.cc rt_tab_redist.cc rt_tab_redist.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/04/01 11:31:22 Modified files: xorp/rib/: parser_xrl_cmds.hh rib.cc rt_tab_redist.cc rt_tab_redist.hh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Steps on the road to route redistribution. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 11:54:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 11:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Jt0Jw049723 for ; Thu, 1 Apr 2004 11:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Jt0b0070544 for ; Thu, 1 Apr 2004 11:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31Jt0eB029508; Thu, 1 Apr 2004 11:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31JsDeB029474 for ; Thu, 1 Apr 2004 11:54:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JsDb0070533 for ; Thu, 1 Apr 2004 11:54:13 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31JsDgd069430 for ; Thu, 1 Apr 2004 11:54:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31JsDbe069429; Thu, 1 Apr 2004 11:54:13 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404011954.i31JsDbe069429@xorpc.icir.org> Date: Thu, 1 Apr 2004 11:54:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc bgp_trie.hh dump_iterators.cc internal_message.cc next_hop_resolver.hh path_attribute.cc peer.cc peer.hh peer_handler.cc plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh ...route_table_cache.cc ...route_table_cache.hh ...route_table_debug.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_dump.cc ...route_table_fanout.cc ...route_table_filter.cc ...route_table_nhlookup.cc ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...subnet_route.cc ...subnet_route.hh ...test_decision.cc ...test_dump.cc ...test_next_hop_resolver.cc xorp/bgp/harness/ peer.cc test_peering2.sh test_trie.cc xorp/libxorp/ callback-gen.py callback_debug.hh callback_nodebug.hh nexthop.cc ref_trie.hh xorp/mrt/ mrt.hh xorp/pim/ pim_proto_register.cc xorp/policy/ policy_route.cc xorp/rib/ rib.cc rt_tab_deletion.cc rt_tab_expect.cc ! ! rt_tab_export.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_log.hh rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc ...rt_tab_register.hh xorp/utils/flower_malloc/ flower_malloc.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/utils/flower_malloc/ Changes by: mjh@xorpc.icir.org. 04/04/01 11:54:13 Modified files: xorp/bgp/: bgp_trie.cc bgp_trie.hh dump_iterators.cc internal_message.cc next_hop_resolver.hh path_attribute.cc peer.cc peer.hh peer_handler.cc plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_decision.cc route_table_deletion.cc route_table_dump.cc route_table_fanout.cc route_table_filter.cc route_table_nhlookup.cc route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc subnet_route.cc subnet_route.hh test_decision.cc test_dump.cc test_next_hop_resolver.cc xorp/bgp/harness/: peer.cc test_peering2.sh test_trie.cc xorp/libxorp/: callback-gen.py callback_debug.hh callback_nodebug.hh nexthop.cc ref_trie.hh xorp/mrt/: mrt.hh xorp/pim/: pim_proto_register.cc xorp/policy/: policy_route.cc xorp/rib/: rib.cc rt_tab_deletion.cc rt_tab_expect.cc rt_tab_export.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_log.hh rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc rt_tab_register.hh xorp/utils/flower_malloc/: flower_malloc.c Log message: Compilation fixes for gcc 3.4 (prerelease). See http://gcc.gnu.org/gcc-3.4/changes.html Mostly the fixes affect templated code, but a few other fixes too, including some that should never have compiled. This is not complete - I haven't done all the modules yet. Also gcc 3.4 isn't ready for primetime yet, although it is in semi-freeze state. There are a couple of places where it fails with internal errors in the XORP code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 01 12:12:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 12:13:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KD1Jw063402 for ; Thu, 1 Apr 2004 12:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KD1b0070777 for ; Thu, 1 Apr 2004 12:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31KD1eB000016; Thu, 1 Apr 2004 12:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31KCseB000007 for ; Thu, 1 Apr 2004 12:12:54 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KCqb0070775; Thu, 1 Apr 2004 12:12:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KCqr6005312; Thu, 1 Apr 2004 12:12:52 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200404012012.i31KCqr6005312@possum.icir.org> To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc bgp_trie.hh dump_iterators.cc internal_message.cc next_hop_resolver.hh path_attribute.cc peer.cc peer.hh peer_handler.cc plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh ...route_table_cache.cc ...route_table_cache.hh ...route_table_debug.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_dump.cc ...route_table_fanout.cc ...route_table_filter.cc ...route_table_nhlookup.cc ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...subnet_route.cc ...subnet_route.hh ...test_decision.cc ...test_dump.cc ...test_next_hop_resolver.cc xorp/bgp/harness/ peer.cc test_peering2.sh test_trie.cc xorp/libxorp/ callback-gen.py callback_debug.hh callback_nodebug.hh nexthop.cc ref_trie.hh xorp/mrt/ mrt.hh xorp/pim/ pim_proto_register.cc xorp/policy/ policy_route.cc xorp/rib/ rib.cc rt_tab_deletion.cc rt_tab_expect.cc ! ! rt_tab_export.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_log.hh rt_tab_me! rged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc ...rt_tab_register.hh xorp/utils/flower_malloc/ flower_malloc.c In-Reply-To: Message from Mark Handley of "Thu, 01 Apr 2004 11:54:13." <200404011954.i31JsDbe069429@xorpc.icir.org> Date: Thu, 01 Apr 2004 12:12:52 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > xorp/pim/: pim_proto_register.cc Mark, The gcc-3.4 changes in the above file are like: OLD: source_addr.copy_out(ip6_header.ip6_src); NEW: source_addr.copy_out((uint8_t*)&(ip6_header.ip6_src)); Where source_addr is IPvX, and ip6_header.ip6_src is defined in as "struct in6_addr". Inside libxorp/ipvx.hh there is already method IPvX::copy_out(in6_addr& to_in6_addr); Why would the above copy_out method fail with gcc-3.4 so it requires the (uint8_t*) casting? Does it have to do something with the fact that the IPvX::copy_out() argument type is "in6_addr" instead of "struct in6_addr"? Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 12:15:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 12:16:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KG0Jw064758 for ; Thu, 1 Apr 2004 12:16:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KG0b0070824 for ; Thu, 1 Apr 2004 12:16:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31KG0eB000103; Thu, 1 Apr 2004 12:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31KF1eB000076 for ; Thu, 1 Apr 2004 12:15:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KF1b0070805 for ; Thu, 1 Apr 2004 12:15:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KF1gd071374 for ; Thu, 1 Apr 2004 12:15:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31KF14W071373; Thu, 1 Apr 2004 12:15:01 -0800 (PST) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404012015.i31KF14W071373@xorpc.icir.org> Date: Thu, 1 Apr 2004 12:15:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrt.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/04/01 12:15:01 Modified files: xorp/mrt/: mrt.hh Log message: Replace this->_source_addr with source_addr() and this->_group_addr with group_addr(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 01 12:56:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 12:57:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Kv2Jw082019 for ; Thu, 1 Apr 2004 12:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31Kv2b0071287 for ; Thu, 1 Apr 2004 12:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31Kv1eB001212; Thu, 1 Apr 2004 12:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31KuEeB001194 for ; Thu, 1 Apr 2004 12:56:14 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KuDb0071279; Thu, 1 Apr 2004 12:56:13 -0800 (PST) (envelope-from hodson@icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.9p1/8.12.8) with ESMTP id i31KuDi8085038; Thu, 1 Apr 2004 12:56:13 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200404012056.i31KuDi8085038@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc bgp_trie.hh dump_iterators.cc internal_message.cc next_hop_resolver.hh path_attribute.cc peer.cc peer.hh peer_handler.cc plumbing.cc rib_ipc_handler.cc rib_ipc_handler.hh ...route_table_cache.cc ...route_table_cache.hh ...route_table_debug.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_dump.cc ...route_table_fanout.cc ...route_table_filter.cc ...route_table_nhlookup.cc ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...subnet_route.cc ...subnet_route.hh ...test_decision.cc ...test_dump.cc ...test_next_hop_resolver.cc xorp/bgp/harness/ peer.cc test_peering2.sh test_trie.cc xorp/libxorp/ callback-gen.py callback_debug.hh callback_nodebug.hh nexthop.cc ref_trie.hh xorp/mrt/ mrt.hh xorp/pim/ pim_proto_register.cc xorp/policy/ policy_route.cc xorp/rib/ rib.cc rt_tab_deletion.cc rt_tab_expect.cc ! ! rt_tab_log.hh rt_tab_merged.cc rt_tab_origin.cc rt_tab_redist.cc rt_tab_register.cc ...rt_tab_register.hh xorp/utils/flower_malloc/ flower_malloc.c In-Reply-To: Your message of "Thu, 01 Apr 2004 11:54:13." <200404011954.i31JsDbe069429@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 01 Apr 2004 12:56:12 -0800 From: Orion Hodson Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , /-- Mark Handley wrote: | | Log message: | Compilation fixes for gcc 3.4 (prerelease). | | See http://gcc.gnu.org/gcc-3.4/changes.html | | Mostly the fixes affect templated code, but a few other fixes too, | including some that should never have compiled. | | This is not complete - I haven't done all the modules yet. Also gcc | 3.4 isn't ready for primetime yet, although it is in semi-freeze state. | There are a couple of places where it fails with internal errors in | the XORP code. Anything that picks up errors is a good thing. However, this commit breaks the build for gcc 2.95.4 and gcc3.3.x. If you could test against one (or preferably both) of these before making more of these commits, that'd be good for the rest of us. I suspect the coming pass with vc++ will show up similar problems as it has better compliance than gcc3.3. BTW, gcc3.3.4 is now installed on hef, but not pushed out. It looks like the code will compile cleanly, though the build is still running. I only mention this as I'm about to head off for the UK and may not see it through or think to check for a few days... Cheers Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 14:01:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 14:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M21Jw099158 for ; Thu, 1 Apr 2004 14:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M21b0071946 for ; Thu, 1 Apr 2004 14:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31M21eB002911; Thu, 1 Apr 2004 14:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31M1YeB002892 for ; Thu, 1 Apr 2004 14:01:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M1Yb0071935 for ; Thu, 1 Apr 2004 14:01:34 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M1Ygd075156 for ; Thu, 1 Apr 2004 14:01:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i31M1YO3075155; Thu, 1 Apr 2004 14:01:34 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404012201.i31M1YO3075155@xorpc.icir.org> Date: Thu, 1 Apr 2004 14:01:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 04/04/01 14:01:33 Modified files: xorp/bgp/harness/: peer.cc Log message: Fix to work around compiler brokenness _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 01 23:01:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 14:02:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M23Jw099173 for ; Thu, 1 Apr 2004 14:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M23b0071950 for ; Thu, 1 Apr 2004 14:02:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31M23eB002922; Thu, 1 Apr 2004 14:02:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i31M1heB002900 for ; Thu, 1 Apr 2004 14:01:43 -0800 (PST) Received: from vulture.icir.org (host217-44-204-120.range217-44.btcentralplus.com [217.44.204.120]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i31M1gb0071940; Thu, 1 Apr 2004 14:01:43 -0800 (PST) (envelope-from mjh@vulture.icir.org) Received: from vulture.icir.org (localhost [127.0.0.1]) by vulture.icir.org (8.12.9p2/8.12.3) with ESMTP id i31M1fZk078590; Thu, 1 Apr 2004 23:01:41 +0100 (BST) (envelope-from mjh@vulture.icir.org) From: Mark Handley To: Orion Hodson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ In-reply-to: Your message of "Thu, 01 Apr 2004 12:56:12 -0800." <200404012056.i31KuDi8085038@puma.icir.org> Date: Thu, 01 Apr 2004 23:01:41 +0100 Message-ID: <78589.1080856901@vulture.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >/-- Mark Handley wrote: >| >| Log message: >| Compilation fixes for gcc 3.4 (prerelease). >| >| See http://gcc.gnu.org/gcc-3.4/changes.html >| >| Mostly the fixes affect templated code, but a few other fixes too, >| including some that should never have compiled. >| >| This is not complete - I haven't done all the modules yet. Also gcc >| 3.4 isn't ready for primetime yet, although it is in semi-freeze state. >| There are a couple of places where it fails with internal errors in >| the XORP code. > >Anything that picks up errors is a good thing. However, this commit breaks >the build for gcc 2.95.4 and gcc3.3.x. If you could test against one (or >preferably both) of these before making more of these commits, that'd be good >for the rest of us. I suspect the coming pass with vc++ will show up similar >problems as it has better compliance than gcc3.3. I had actually tested much of it on 2.95, but unfortunately not all. Sorry about that. I've no idea why it compiled before but not now. Anyway I'll commit a fix shortly. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 16:26:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 16:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i320R1Jw044693 for ; Thu, 1 Apr 2004 16:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320R0b0073461 for ; Thu, 1 Apr 2004 16:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320R0eB006471; Thu, 1 Apr 2004 16:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320QheB006462 for ; Thu, 1 Apr 2004 16:26:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320Qgb0073459 for ; Thu, 1 Apr 2004 16:26:42 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i320Qggd082521 for ; Thu, 1 Apr 2004 16:26:42 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i320Qge9082520; Thu, 1 Apr 2004 16:26:42 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404020026.i320Qge9082520@xorpc.icir.org> Date: Thu, 1 Apr 2004 16:26:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ nexthop.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 04/04/01 16:26:42 Modified files: xorp/libxorp/: nexthop.cc Log message: trivial workaround for gcc 3.4 bug _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:24 2005 Subject: No subject Thu Apr 1 16:27:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 16:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i320S1Jw044964 for ; Thu, 1 Apr 2004 16:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320S1b0073488 for ; Thu, 1 Apr 2004 16:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320S1eB006499; Thu, 1 Apr 2004 16:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320REeB006482 for ; Thu, 1 Apr 2004 16:27:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320REb0073467 for ; Thu, 1 Apr 2004 16:27:14 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i320RDgd082584 for ; Thu, 1 Apr 2004 16:27:13 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i320RDse082583; Thu, 1 Apr 2004 16:27:13 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404020027.i320RDse082583@xorpc.icir.org> Date: Thu, 1 Apr 2004 16:27:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 04/04/01 16:27:13 Modified files: xorp/bgp/harness/: test_trie.cc Log message: trivial workaround for gcc 3.4 bug _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Thu Apr 1 16:27:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 16:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i320S2Jw044979 for ; Thu, 1 Apr 2004 16:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320S1b0073492 for ; Thu, 1 Apr 2004 16:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320S1eB006510; Thu, 1 Apr 2004 16:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i320RweB006491 for ; Thu, 1 Apr 2004 16:27:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i320Rwb0073481 for ; Thu, 1 Apr 2004 16:27:58 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i320Rvgd082653 for ; Thu, 1 Apr 2004 16:27:57 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i320RvaI082652; Thu, 1 Apr 2004 16:27:57 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404020027.i320RvaI082652@xorpc.icir.org> Date: Thu, 1 Apr 2004 16:27:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ output_table.cc output_updates.cc packets.hh port.cc route_db.cc route_entry.cc system.hh test_outputs.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc xorp_rip_common.hh ...xrl_port_io.cc ...xrl_port_manager.cc ...xrl_rib_notifier.cc ...xrl_target_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: mjh@xorpc.icir.org. 04/04/01 16:27:57 Modified files: xorp/rip/: output_table.cc output_updates.cc packets.hh port.cc route_db.cc route_entry.cc system.hh test_outputs.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc xorp_rip_common.hh xrl_port_io.cc xrl_port_manager.cc xrl_rib_notifier.cc xrl_target_ripng.cc Log message: Fix compilation errors for gcc 3.4/ISO compliance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Thu Apr 1 23:17:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Apr 2004 23:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i327I1Jw039475 for ; Thu, 1 Apr 2004 23:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i327I1b0077456 for ; Thu, 1 Apr 2004 23:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i327I1eB014812; Thu, 1 Apr 2004 23:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i327HIeB014798 for ; Thu, 1 Apr 2004 23:17:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i327HIb0077450 for ; Thu, 1 Apr 2004 23:17:18 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i327HIgd029490 for ; Thu, 1 Apr 2004 23:17:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i327HInK029489; Thu, 1 Apr 2004 23:17:18 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404020717.i327HInK029489@xorpc.icir.org> Date: Thu, 1 Apr 2004 23:17:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: mjh@xorpc.icir.org. 04/04/01 23:17:18 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Reverse erroneous commit of modified test file. Mea culpa. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Fri Apr 2 2:33:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Apr 2004 02:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i32AY2Jw092691 for ; Fri, 2 Apr 2004 02:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i32AY1b0079722 for ; Fri, 2 Apr 2004 02:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i32AY1eB018895; Fri, 2 Apr 2004 02:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i32AXFeB018872 for ; Fri, 2 Apr 2004 02:33:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i32AXFb0079716 for ; Fri, 2 Apr 2004 02:33:15 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i32AXEgd045631 for ; Fri, 2 Apr 2004 02:33:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i32AXEQE045630; Fri, 2 Apr 2004 02:33:14 -0800 (PST) (envelope-from mjh) From: Mark Handley Message-Id: <200404021033.i32AXEQE045630@xorpc.icir.org> Date: Fri, 2 Apr 2004 2:33:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh xorp/ospfd/xorp/ xrl_target.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: mjh@xorpc.icir.org. 04/04/02 02:33:14 Modified files: xorp/libproto/: proto_node.hh xorp/ospfd/xorp/: xrl_target.C Log message: Compilation fixes for gcc 3.4. All of XORP now builds on the prerelease gcc 3.4. This is actually quite important, as gcc 3.4 is MUCH closer to ISO compliant than 3.3 (the parser was re-written from scratch). Hopefully this will make the Windows port somewhat easier too. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 11:34:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 11:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i34IZ1XG019136 for ; Sun, 4 Apr 2004 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i34IZ1b0023409 for ; Sun, 4 Apr 2004 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i34IZ0eB021012; Sun, 4 Apr 2004 11:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i34IYreB021006 for ; Sun, 4 Apr 2004 11:34:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i34IYrb0023403 for ; Sun, 4 Apr 2004 11:34:53 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i34IYrgd031703 for ; Sun, 4 Apr 2004 11:34:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i34IYrjq031702; Sun, 4 Apr 2004 11:34:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404041834.i34IYrjq031702@xorpc.icir.org> Date: Sun, 4 Apr 2004 11:34:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ route_entry.cc route_entry.hh update_queue.cc xrl_port_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/04/04 11:34:53 Modified files: xorp/rip/: route_entry.cc route_entry.hh update_queue.cc xrl_port_manager.cc Log message: Compilation fixes for OS X / ppc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 16:42:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 16:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i34Nh1XG021086 for ; Sun, 4 Apr 2004 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i34Nh1b0026542 for ; Sun, 4 Apr 2004 16:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i34Nh1eB026393; Sun, 4 Apr 2004 16:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i34NggeB026384 for ; Sun, 4 Apr 2004 16:42:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i34Nggb0026536 for ; Sun, 4 Apr 2004 16:42:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i34Ngfgd043367 for ; Sun, 4 Apr 2004 16:42:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i34Ngf9o043366; Sun, 4 Apr 2004 16:42:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404042342.i34Ngf9o043366@xorpc.icir.org> Date: Sun, 4 Apr 2004 16:42:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/04/04 16:42:41 Modified files: xorp/cli/: cli_client.cc Log message: Fix CliClient::window_lines_n() so we don't count the trailing '\r' or '\n' in a line when calculating the width of a line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 20:11:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 20:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i353C1XG022317 for ; Sun, 4 Apr 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353C1b0028824 for ; Sun, 4 Apr 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353C1eB029924; Sun, 4 Apr 2004 20:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353BkeB029916 for ; Sun, 4 Apr 2004 20:11:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353Bjb0028820 for ; Sun, 4 Apr 2004 20:11:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i353Bjgd069351 for ; Sun, 4 Apr 2004 20:11:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i353BjSf069350; Sun, 4 Apr 2004 20:11:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050311.i353BjSf069350@xorpc.icir.org> Date: Sun, 4 Apr 2004 20:11:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/04 20:11:45 Modified files: xorp/fea/: mfea_node.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 20:14:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 20:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i353F1XG022335 for ; Sun, 4 Apr 2004 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353F1b0028882 for ; Sun, 4 Apr 2004 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353F1eB029972; Sun, 4 Apr 2004 20:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353EAeB029961 for ; Sun, 4 Apr 2004 20:14:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353EAb0028865 for ; Sun, 4 Apr 2004 20:14:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i353EAgd069812 for ; Sun, 4 Apr 2004 20:14:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i353EAZZ069811; Sun, 4 Apr 2004 20:14:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050314.i353EAZZ069811@xorpc.icir.org> Date: Sun, 4 Apr 2004 20:14:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node_cli.cc xorp/mld6igmp/ mld6igmp_node_cli.cc xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/04 20:14:10 Modified files: xorp/fea/: mfea_node_cli.cc xorp/mld6igmp/: mld6igmp_node_cli.cc xorp/pim/: pim_node_cli.cc Log message: When printing CLI output for all vifs, ignore NULL vifs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 20:18:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i353J1XG022367 for ; Sun, 4 Apr 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353J1b0028947 for ; Sun, 4 Apr 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353J0eB000055; Sun, 4 Apr 2004 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i353IWeB000040 for ; Sun, 4 Apr 2004 20:18:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i353IWb0028942 for ; Sun, 4 Apr 2004 20:18:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i353IWgd070263 for ; Sun, 4 Apr 2004 20:18:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i353IVJ8070260; Sun, 4 Apr 2004 20:18:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050318.i353IVJ8070260@xorpc.icir.org> Date: Sun, 4 Apr 2004 20:18:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/04 20:18:31 Modified files: xorp/mld6igmp/: mld6igmp_node.cc xorp/pim/: pim_node.cc Log message: When received a packet, if we cannot find the vif the packet was received on, then ignore the packet rather than coredump. This is to avoid the race condition when a packet is received on an interface, but then the interface is removed immediately (e.g., if a tunnel). However, we still could receive the XRL with the interface removal instruction before the XRL with the packet itself, therefore we should be prepared against that. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 22:38:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 22:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i355d1XG023187 for ; Sun, 4 Apr 2004 22:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i355d1b0030695 for ; Sun, 4 Apr 2004 22:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i355d1eB002440; Sun, 4 Apr 2004 22:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i355cleB002431 for ; Sun, 4 Apr 2004 22:38:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i355clb0030693 for ; Sun, 4 Apr 2004 22:38:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i355clgd087883 for ; Sun, 4 Apr 2004 22:38:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i355ckZa087882; Sun, 4 Apr 2004 22:38:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050538.i355ckZa087882@xorpc.icir.org> Date: Sun, 4 Apr 2004 22:38:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.cc xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/04/04 22:38:46 Modified files: xorp/fea/: xrl_mfea_vif_manager.cc xorp/rib/: vifmanager.cc Log message: Don't print an error if vif_deleted() is called on non-existing vif. The reason is because we may attempt to delete a vif twice: once by vif event, and once indirectly by interface event. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 23:18:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 23:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i356J1XG023439 for ; Sun, 4 Apr 2004 23:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i356J0b0031153 for ; Sun, 4 Apr 2004 23:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i356J0eB003190; Sun, 4 Apr 2004 23:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i356IpeB003182 for ; Sun, 4 Apr 2004 23:18:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i356Ipb0031151 for ; Sun, 4 Apr 2004 23:18:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i356Ipgd093532 for ; Sun, 4 Apr 2004 23:18:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i356Ip9u093531; Sun, 4 Apr 2004 23:18:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050618.i356Ip9u093531@xorpc.icir.org> Date: Sun, 4 Apr 2004 23:18:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/04 23:18:51 Modified files: xorp/fea/: ifconfig_parse_nlm.cc Log message: Conditionally set interface attributes only if the this is really a new interface OR if the attribute value has changed. This is needed, because a kernel can generate NEW-INTERFACE signal if any of the attributes has changed (e.g., interface up/down, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Sun Apr 4 23:36:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 04 Apr 2004 23:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i356b1XG023622 for ; Sun, 4 Apr 2004 23:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i356b0b0031374 for ; Sun, 4 Apr 2004 23:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i356b0eB003643; Sun, 4 Apr 2004 23:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i356a2eB003627 for ; Sun, 4 Apr 2004 23:36:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i356a2b0031362 for ; Sun, 4 Apr 2004 23:36:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i356a2gd097194 for ; Sun, 4 Apr 2004 23:36:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i356a2vh097193; Sun, 4 Apr 2004 23:36:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050636.i356a2vh097193@xorpc.icir.org> Date: Sun, 4 Apr 2004 23:36:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/04 23:36:02 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_rtm.cc Log message: Conditionally set interface attributes only if the this is really a new interface OR if the attribute value has changed. This is needed, because a kernel can generate NEW-INTERFACE signal if any of the attributes has changed (e.g., interface up/down, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 2:19:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 02:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i359K1XG025669 for ; Mon, 5 Apr 2004 02:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359K1b0033567 for ; Mon, 5 Apr 2004 02:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359K1eB007058; Mon, 5 Apr 2004 02:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359JFeB007037 for ; Mon, 5 Apr 2004 02:19:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359JFb0033558 for ; Mon, 5 Apr 2004 02:19:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i359JFgd021183 for ; Mon, 5 Apr 2004 02:19:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i359JF9J021182; Mon, 5 Apr 2004 02:19:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050919.i359JF9J021182@xorpc.icir.org> Date: Mon, 5 Apr 2004 2:19:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/05 02:19:15 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.cc Log message: 4 -> 6 bugfix _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 2:31:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 02:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i359W1XG025791 for ; Mon, 5 Apr 2004 02:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359W1b0033731 for ; Mon, 5 Apr 2004 02:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359W1eB007226; Mon, 5 Apr 2004 02:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359VBeB007212 for ; Mon, 5 Apr 2004 02:31:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359VBb0033721 for ; Mon, 5 Apr 2004 02:31:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i359VBgd022825 for ; Mon, 5 Apr 2004 02:31:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i359VBEM022824; Mon, 5 Apr 2004 02:31:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050931.i359VBEM022824@xorpc.icir.org> Date: Mon, 5 Apr 2004 2:31:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/05 02:31:11 Modified files: xorp/fib2mrib/: fib2mrib_node.hh Log message: Add new method Fib2mribRoute::is_interface_route() to test whether a route's interface has been explicitly specified. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 2:32:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 02:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i359X1XG025806 for ; Mon, 5 Apr 2004 02:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359X0b0033747 for ; Mon, 5 Apr 2004 02:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359X0eB007256; Mon, 5 Apr 2004 02:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359WPeB007238 for ; Mon, 5 Apr 2004 02:32:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359WOb0033735 for ; Mon, 5 Apr 2004 02:32:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i359WOgd022975 for ; Mon, 5 Apr 2004 02:32:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i359WOgA022974; Mon, 5 Apr 2004 02:32:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050932.i359WOgA022974@xorpc.icir.org> Date: Mon, 5 Apr 2004 2:32:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/05 02:32:24 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.cc Log message: Use add_interface_route[4,6] and replace_interface_route[4,6] RIB XRLs as appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 2:32:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 02:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i359X1XG025821 for ; Mon, 5 Apr 2004 02:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359X1b0033751 for ; Mon, 5 Apr 2004 02:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359X1eB007267; Mon, 5 Apr 2004 02:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359WleB007248 for ; Mon, 5 Apr 2004 02:32:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359Wkb0033741 for ; Mon, 5 Apr 2004 02:32:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i359Wkgd023061 for ; Mon, 5 Apr 2004 02:32:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i359Wk3k023060; Mon, 5 Apr 2004 02:32:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050932.i359Wk3k023060@xorpc.icir.org> Date: Mon, 5 Apr 2004 2:32:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/05 02:32:46 Modified files: xorp/static_routes/: static_routes_node.hh Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 2:41:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 02:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i359g1XG025891 for ; Mon, 5 Apr 2004 02:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359g1b0033870 for ; Mon, 5 Apr 2004 02:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359g1eB007438; Mon, 5 Apr 2004 02:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i359fAeB007417 for ; Mon, 5 Apr 2004 02:41:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i359fAb0033867 for ; Mon, 5 Apr 2004 02:41:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i359f9gd030172 for ; Mon, 5 Apr 2004 02:41:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i359f9Q0030170; Mon, 5 Apr 2004 02:41:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404050941.i359f9Q0030170@xorpc.icir.org> Date: Mon, 5 Apr 2004 2:41:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ Makefile.am Makefile.in xorp/fib2mrib/ command_fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/05 02:41:09 Modified files: xorp/fib2mrib/: Makefile.am Makefile.in Added files: xorp/fib2mrib/: command_fib2mrib Log message: Added new file command_fib2mrib that can be used as a helper to send XRLs to a running Fib2Mrib process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:25 2005 Subject: No subject Mon Apr 5 4:59:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Apr 2004 05:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i35C01XG027095 for ; Mon, 5 Apr 2004 05:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i35C01b0035408 for ; Mon, 5 Apr 2004 05:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i35C00eB011549; Mon, 5 Apr 2004 05:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i35BxreB011542 for ; Mon, 5 Apr 2004 04:59:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i35Bxrb0035398 for ; Mon, 5 Apr 2004 04:59:53 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i35Bxrgd047765 for ; Mon, 5 Apr 2004 04:59:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i35Bxr0H047762; Mon, 5 Apr 2004 04:59:53 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404051159.i35Bxr0H047762@xorpc.icir.org> Date: Mon, 5 Apr 2004 4:59:53 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/05 04:59:53 Modified files: ./: configure configure.in Log message: According to g++ 3.4, -Wmissing-prototypes is only relevant for C, not for C++. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 0:10:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 00:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i367B1XG086710 for ; Tue, 6 Apr 2004 00:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367B1b0050282 for ; Tue, 6 Apr 2004 00:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367B0eB008568; Tue, 6 Apr 2004 00:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367ASeB008553 for ; Tue, 6 Apr 2004 00:10:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367ASb0050278 for ; Tue, 6 Apr 2004 00:10:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i367ASgd038310 for ; Tue, 6 Apr 2004 00:10:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i367ASlH038309; Tue, 6 Apr 2004 00:10:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404060710.i367ASlH038309@xorpc.icir.org> Date: Tue, 6 Apr 2004 0:10:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/04/06 00:10:28 Modified files: xorp/xrl/interfaces/: fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Added new XRL to the FEA: configure_interface_from_system ? tid:u32 & ifname:txt That XRL can be used to implicitly configure an interface within the FEA by using information from the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 0:13:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 00:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i367E1XG087163 for ; Tue, 6 Apr 2004 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367E1b0050326 for ; Tue, 6 Apr 2004 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367E1eB008654; Tue, 6 Apr 2004 00:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367D6eB008638 for ; Tue, 6 Apr 2004 00:13:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367D6b0050306 for ; Tue, 6 Apr 2004 00:13:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i367D6gd038585 for ; Tue, 6 Apr 2004 00:13:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i367D6UZ038584; Tue, 6 Apr 2004 00:13:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404060713.i367D6UZ038584@xorpc.icir.org> Date: Tue, 6 Apr 2004 0:13:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/06 00:13:06 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Add new method IfTree::update_if() that can be used to create a new interface (with all its attributes) or update its state if it already exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 0:14:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 00:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i367F1XG087319 for ; Tue, 6 Apr 2004 00:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367F1b0050347 for ; Tue, 6 Apr 2004 00:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367F1eB008677; Tue, 6 Apr 2004 00:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367EPeB008668 for ; Tue, 6 Apr 2004 00:14:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367EPb0050340 for ; Tue, 6 Apr 2004 00:14:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i367EPgd038774 for ; Tue, 6 Apr 2004 00:14:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i367EPA5038773; Tue, 6 Apr 2004 00:14:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404060714.i367EPA5038773@xorpc.icir.org> Date: Tue, 6 Apr 2004 0:14:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifmanager_transaction.hh xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/06 00:14:25 Modified files: xorp/fea/: ifmanager_transaction.hh xrl_target.cc xrl_target.hh Log message: Implement the new FEA XRL: "configure_interface_from_system" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 0:15:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 00:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i367G1XG087482 for ; Tue, 6 Apr 2004 00:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367G1b0050378 for ; Tue, 6 Apr 2004 00:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367G1eB008713; Tue, 6 Apr 2004 00:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367FoeB008703 for ; Tue, 6 Apr 2004 00:15:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367Fob0050373 for ; Tue, 6 Apr 2004 00:15:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i367Fogd038938 for ; Tue, 6 Apr 2004 00:15:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i367FoTU038937; Tue, 6 Apr 2004 00:15:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404060715.i367FoTU038937@xorpc.icir.org> Date: Tue, 6 Apr 2004 0:15:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/04/06 00:15:50 Modified files: xorp/etc/templates/: fea.tp Log message: Added "default_system_config" statement in the FEA template. If this statement is added to the network interface configuration, then the interface will be implicitly configured within the FEA by using information from the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 0:16:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 00:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i367H1XG087667 for ; Tue, 6 Apr 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367H0b0050400 for ; Tue, 6 Apr 2004 00:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367H0eB008747; Tue, 6 Apr 2004 00:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i367GpeB008740 for ; Tue, 6 Apr 2004 00:16:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i367Gob0050394 for ; Tue, 6 Apr 2004 00:16:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i367Gogd039079 for ; Tue, 6 Apr 2004 00:16:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i367GorB039078; Tue, 6 Apr 2004 00:16:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404060716.i367GorB039078@xorpc.icir.org> Date: Tue, 6 Apr 2004 0:16:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/04/06 00:16:50 Modified files: xorp/rtrmgr/: config.boot Log message: Added "default_system_config;" sample statement (commented-out). If this statement is added to the network interface configuration, then the interface will be implicitly configured within the FEA by using information from the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Tue Apr 6 16:39:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Apr 2004 16:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i36Ne1XG056779 for ; Tue, 6 Apr 2004 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i36Ne0b0064819 for ; Tue, 6 Apr 2004 16:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i36Ne0mC002446; Tue, 6 Apr 2004 16:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i36NdxmC002440 for ; Tue, 6 Apr 2004 16:39:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i36Ndxb0064814 for ; Tue, 6 Apr 2004 16:39:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i36Ndxgd012514 for ; Tue, 6 Apr 2004 16:39:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i36Ndxwg012513; Tue, 6 Apr 2004 16:39:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404062339.i36Ndxwg012513@xorpc.icir.org> Date: Tue, 6 Apr 2004 16:39:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/06 16:39:59 Modified files: xorp/fea/: xrl_shell_funcs.sh Log message: Added wrapper for configure_interface_from_system XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Thu Apr 8 23:02:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Apr 2004 23:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i39631XG023008 for ; Thu, 8 Apr 2004 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i39630p0006168 for ; Thu, 8 Apr 2004 23:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i39630sD021731; Thu, 8 Apr 2004 23:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3962qsD021724 for ; Thu, 8 Apr 2004 23:02:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3962pp0006166 for ; Thu, 8 Apr 2004 23:02:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3962pgd079780 for ; Thu, 8 Apr 2004 23:02:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3962pt7079778; Thu, 8 Apr 2004 23:02:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404090602.i3962pt7079778@xorpc.icir.org> Date: Thu, 8 Apr 2004 23:02:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/08 23:02:50 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Bug fixes: * The setsockopt(MRT_INIT) and setsockopt(MRT6_INIT) sockopt value is a version number not enable/disable flag. The UNIX kernel multicast routing version is hard-coded to 1. * Use When we stop the multicast routing in the kernel inside MfeaMrouter::stop_mrt(), then use setsockopt(MRT_DONE) and setsockopt(MRT6_DONE) instead of MRT_INIT and MRT6_INIT. [Bug reports by "edrt" ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Thu Apr 8 23:12:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Apr 2004 23:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i396D1XG025579 for ; Thu, 8 Apr 2004 23:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i396D1p0006276 for ; Thu, 8 Apr 2004 23:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i396D0sD021917; Thu, 8 Apr 2004 23:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i396CosD021905 for ; Thu, 8 Apr 2004 23:12:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i396Cnp0006274 for ; Thu, 8 Apr 2004 23:12:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i396Cngd080706 for ; Thu, 8 Apr 2004 23:12:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i396CnU3080705; Thu, 8 Apr 2004 23:12:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404090612.i396CnU3080705@xorpc.icir.org> Date: Thu, 8 Apr 2004 23:12:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/08 23:12:49 Modified files: xorp/fea/: mfea_node.cc Log message: Bug fix: Stop the MfeaMrouter when we call MfeaNode::stop() [Bug report by "edrt" ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:40:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7f1XG041369 for ; Sat, 10 Apr 2004 00:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7f1p0025206 for ; Sat, 10 Apr 2004 00:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7f1sD027777; Sat, 10 Apr 2004 00:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7e7sD027766 for ; Sat, 10 Apr 2004 00:40:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7e7p0025202 for ; Sat, 10 Apr 2004 00:40:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7e6gd084091 for ; Sat, 10 Apr 2004 00:40:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7e6MA084090; Sat, 10 Apr 2004 00:40:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100740.i3A7e6MA084090@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:40:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:40:06 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: Add missing file dependencies _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:41:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7g1XG041580 for ; Sat, 10 Apr 2004 00:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7g0p0025218 for ; Sat, 10 Apr 2004 00:42:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7g0sD027807; Sat, 10 Apr 2004 00:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7fisD027799 for ; Sat, 10 Apr 2004 00:41:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7fip0025214 for ; Sat, 10 Apr 2004 00:41:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7figd084259 for ; Sat, 10 Apr 2004 00:41:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7fiI8084258; Sat, 10 Apr 2004 00:41:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100741.i3A7fiI8084258@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:41:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ bgp.tgt bgp4_mib.tgt coord.tgt demo_fea_ifmgr_client.tgt fea_ifmgr_mirror.tgt finder.tgt finder_client.tgt ospf.tgt rib.tgt ...ribclient.tgt ...rip.tgt ...ripng.tgt ...rtrmgr.tgt ...test.tgt ...test_fea_ifmgr_mirror.tgt ...test_finder_events.tgt ...test_peer.tgt ...test_socket4.tgt ...test_socket6.tgt ...xorp_if_mib.tgt ...xorpsh.tgt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:41:44 Modified files: xorp/xrl/targets/: bgp.tgt bgp4_mib.tgt coord.tgt demo_fea_ifmgr_client.tgt fea_ifmgr_mirror.tgt finder.tgt finder_client.tgt ospf.tgt rib.tgt ribclient.tgt rip.tgt ripng.tgt rtrmgr.tgt test.tgt test_fea_ifmgr_mirror.tgt test_finder_events.tgt test_peer.tgt test_socket4.tgt test_socket6.tgt xorp_if_mib.tgt xorpsh.tgt Log message: Nitlets: split implemented XRL interfaces on multiple lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:42:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7h1XG041759 for ; Sat, 10 Apr 2004 00:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7h1p0025237 for ; Sat, 10 Apr 2004 00:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7h0sD027848; Sat, 10 Apr 2004 00:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7gnsD027841 for ; Sat, 10 Apr 2004 00:42:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7gnp0025233 for ; Sat, 10 Apr 2004 00:42:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7gngd084382 for ; Sat, 10 Apr 2004 00:42:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7gnJC084381; Sat, 10 Apr 2004 00:42:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100742.i3A7gnJC084381@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:42:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ fea_ifmgr_client.xif fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:42:49 Modified files: xorp/xrl/interfaces/: fea_ifmgr_client.xif fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh Log message: Added new "updates_completed" XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:45:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7k1XG042379 for ; Sat, 10 Apr 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7k1p0025280 for ; Sat, 10 Apr 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7k1sD027903; Sat, 10 Apr 2004 00:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7jFsD027888 for ; Sat, 10 Apr 2004 00:45:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7jFp0025269 for ; Sat, 10 Apr 2004 00:45:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7jEgd084617 for ; Sat, 10 Apr 2004 00:45:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7jEE7084616; Sat, 10 Apr 2004 00:45:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100745.i3A7jEE7084616@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:45:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh rib.xrls ...rib_base.cc ...rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:45:14 Modified files: xorp/xrl/targets/: demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh rib.xrls rib_base.cc rib_base.hh Log message: Regenerate after adding new "updates_completed" XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:45:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7k2XG042394 for ; Sat, 10 Apr 2004 00:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7k1p0025284 for ; Sat, 10 Apr 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7k1sD027914; Sat, 10 Apr 2004 00:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7jxsD027897 for ; Sat, 10 Apr 2004 00:45:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7jxp0025278 for ; Sat, 10 Apr 2004 00:45:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7jxgd084670 for ; Sat, 10 Apr 2004 00:45:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7jwGN084667; Sat, 10 Apr 2004 00:45:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100745.i3A7jwGN084667@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:45:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:45:58 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:46:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7l1XG042597 for ; Sat, 10 Apr 2004 00:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7l1p0025303 for ; Sat, 10 Apr 2004 00:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7l1sD027941; Sat, 10 Apr 2004 00:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7kgsD027933 for ; Sat, 10 Apr 2004 00:46:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7kgp0025299 for ; Sat, 10 Apr 2004 00:46:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7kggd084753 for ; Sat, 10 Apr 2004 00:46:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7kgif084752; Sat, 10 Apr 2004 00:46:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100746.i3A7kgif084752@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:46:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.hh vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:46:42 Modified files: xorp/rib/: vifmanager.hh vifmanager.cc Log message: Added new VifManager::updates_completed() method. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:47:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7m1XG042808 for ; Sat, 10 Apr 2004 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7m1p0025316 for ; Sat, 10 Apr 2004 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7m1sD027972; Sat, 10 Apr 2004 00:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7lJsD027956 for ; Sat, 10 Apr 2004 00:47:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7lJp0025310 for ; Sat, 10 Apr 2004 00:47:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7lJgd084809 for ; Sat, 10 Apr 2004 00:47:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7lJUd084808; Sat, 10 Apr 2004 00:47:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100747.i3A7lJUd084808@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:47:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:47:19 Modified files: xorp/rib/: xrl_target.cc xrl_target.hh Log message: Add handler for "updates_completed" XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:50:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:51:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7p0XG043395 for ; Sat, 10 Apr 2004 00:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7p0p0025359 for ; Sat, 10 Apr 2004 00:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7p0sD028051; Sat, 10 Apr 2004 00:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7oBsD028027 for ; Sat, 10 Apr 2004 00:50:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7oBp0025354 for ; Sat, 10 Apr 2004 00:50:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7oAgd085127 for ; Sat, 10 Apr 2004 00:50:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7oAi8085126; Sat, 10 Apr 2004 00:50:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100750.i3A7oAi8085126@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:50:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.hh xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:50:10 Modified files: xorp/fea/: xrl_mfea_node.hh xrl_mfea_node.cc Log message: Add handler for "updates_completed" XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:50:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7p1XG043411 for ; Sat, 10 Apr 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7p1p0025363 for ; Sat, 10 Apr 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7p1sD028062; Sat, 10 Apr 2004 00:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7ocsD028037 for ; Sat, 10 Apr 2004 00:50:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7ocp0025357 for ; Sat, 10 Apr 2004 00:50:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7ocgd085233 for ; Sat, 10 Apr 2004 00:50:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7ocMC085232; Sat, 10 Apr 2004 00:50:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100750.i3A7ocMC085232@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:50:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:50:38 Modified files: xorp/fea/: xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Log message: Added new method XrlMfeaVifManager::updates_completed() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:54:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7t1XG044180 for ; Sat, 10 Apr 2004 00:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7t1p0025397 for ; Sat, 10 Apr 2004 00:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7t0sD028138; Sat, 10 Apr 2004 00:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7sosD028131 for ; Sat, 10 Apr 2004 00:54:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7sop0025392 for ; Sat, 10 Apr 2004 00:54:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7sogd085625 for ; Sat, 10 Apr 2004 00:54:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7soLL085624; Sat, 10 Apr 2004 00:54:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100754.i3A7soLL085624@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:54:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.hh ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:54:50 Modified files: xorp/fea/: ifconfig.hh ifconfig.cc Log message: Add support to explicitly inform observers when the interfaces updates are completed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:55:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7u1XG044405 for ; Sat, 10 Apr 2004 00:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7u1p0025426 for ; Sat, 10 Apr 2004 00:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7u1sD028185; Sat, 10 Apr 2004 00:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7tJsD028166 for ; Sat, 10 Apr 2004 00:55:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7tJp0025420 for ; Sat, 10 Apr 2004 00:55:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7tJgd085706 for ; Sat, 10 Apr 2004 00:55:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7tJNM085705; Sat, 10 Apr 2004 00:55:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100755.i3A7tJNM085705@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:55:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_addr_table.hh ifconfig_addr_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:55:19 Modified files: xorp/fea/: ifconfig_addr_table.hh ifconfig_addr_table.cc Log message: Add new method IfConfigAddressTable::updates_completed() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:26 2005 Subject: No subject Sat Apr 10 0:56:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7v1XG044616 for ; Sat, 10 Apr 2004 00:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7v1p0025438 for ; Sat, 10 Apr 2004 00:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7v1sD028212; Sat, 10 Apr 2004 00:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7uLsD028200 for ; Sat, 10 Apr 2004 00:56:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7uLp0025433 for ; Sat, 10 Apr 2004 00:56:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7uKgd085814 for ; Sat, 10 Apr 2004 00:56:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7uKI3085813; Sat, 10 Apr 2004 00:56:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100756.i3A7uKI3085813@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:56:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ demo_fea_ifmgr_client.cc test_ifconfig_rtsock.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:56:20 Modified files: xorp/fea/: demo_fea_ifmgr_client.cc test_ifconfig_rtsock.cc Log message: Added *updates_completed() methods. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sat Apr 10 0:58:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 00:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7x1XG045015 for ; Sat, 10 Apr 2004 00:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7x1p0025455 for ; Sat, 10 Apr 2004 00:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7x1sD028254; Sat, 10 Apr 2004 00:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3A7wXsD028247 for ; Sat, 10 Apr 2004 00:58:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7wWp0025450 for ; Sat, 10 Apr 2004 00:58:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3A7wWgd086010 for ; Sat, 10 Apr 2004 00:58:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3A7wWEZ086009; Sat, 10 Apr 2004 00:58:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404100758.i3A7wWEZ086009@xorpc.icir.org> Date: Sat, 10 Apr 2004 0:58:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.cc libfeaclient_bridge.hh xrl_ifupdate.cc xrl_ifupdate.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/10 00:58:32 Modified files: xorp/fea/: libfeaclient_bridge.cc libfeaclient_bridge.hh xrl_ifupdate.cc xrl_ifupdate.hh Log message: Add/complete support to explicitly inform listeners when the network interface updates have completed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sat Apr 10 13:03:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 13:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK41XG092269 for ; Sat, 10 Apr 2004 13:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK41p0037068 for ; Sat, 10 Apr 2004 13:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3AK40sD012286; Sat, 10 Apr 2004 13:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3AK3qsD012279 for ; Sat, 10 Apr 2004 13:03:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK3qp0037066 for ; Sat, 10 Apr 2004 13:03:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK3qgd042582 for ; Sat, 10 Apr 2004 13:03:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3AK3qmo042581; Sat, 10 Apr 2004 13:03:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404102003.i3AK3qmo042581@xorpc.icir.org> Date: Sat, 10 Apr 2004 13:03:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.hh xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/10 13:03:52 Modified files: xorp/static_routes/: xrl_static_routes_node.hh xrl_static_routes_node.cc Log message: * Add new method XrlStaticRoutesNode::cancel_rib_route_change() that can be used to cancel route changes in the RIB queue. * Rename method iftree() to ifmgr_iftree() * Modify XrlStaticRoutesNode::send_rib_route_change() to pop-up all routes that are suppose to be ignored. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sat Apr 10 13:05:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 10 Apr 2004 13:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK60XG092703 for ; Sat, 10 Apr 2004 13:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK60p0037118 for ; Sat, 10 Apr 2004 13:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3AK60sD012349; Sat, 10 Apr 2004 13:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3AK5ksD012338 for ; Sat, 10 Apr 2004 13:05:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK5kp0037116 for ; Sat, 10 Apr 2004 13:05:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3AK5kgd042709 for ; Sat, 10 Apr 2004 13:05:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3AK5kOu042708; Sat, 10 Apr 2004 13:05:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404102005.i3AK5kOu042708@xorpc.icir.org> Date: Sat, 10 Apr 2004 13:05:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/10 13:05:46 Modified files: xorp/static_routes/: static_routes_node.cc static_routes_node.hh Log message: Added support to pull routes from the RIB if an interface goes down, or to add them to the RIB when the interface comes up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 12:29:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3BJU1XG079677 for ; Sun, 11 Apr 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3BJU1p0051034 for ; Sun, 11 Apr 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3BJU0sD006986; Sun, 11 Apr 2004 12:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3BJTdsD006977 for ; Sun, 11 Apr 2004 12:29:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3BJTcp0051029 for ; Sun, 11 Apr 2004 12:29:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3BJTcgd020229 for ; Sun, 11 Apr 2004 12:29:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3BJTcFD020228; Sun, 11 Apr 2004 12:29:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404111929.i3BJTcFD020228@xorpc.icir.org> Date: Sun, 11 Apr 2004 12:29:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 12:29:38 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:50:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 18:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1p1XG055595 for ; Sun, 11 Apr 2004 18:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1p1p0054266 for ; Sun, 11 Apr 2004 18:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1p1sD013678; Sun, 11 Apr 2004 18:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1oqsD013655 for ; Sun, 11 Apr 2004 18:50:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1opp0054258 for ; Sun, 11 Apr 2004 18:50:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1opgd047397 for ; Sun, 11 Apr 2004 18:50:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1opHG047395; Sun, 11 Apr 2004 18:50:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120150.i3C1opHG047395@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:50:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:50:51 Modified files: xorp/static_routes/: static_routes_node.hh Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:52:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 18:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1r1XG056062 for ; Sun, 11 Apr 2004 18:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1r0p0054280 for ; Sun, 11 Apr 2004 18:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1r0sD013747; Sun, 11 Apr 2004 18:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1qMsD013734 for ; Sun, 11 Apr 2004 18:52:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1qMp0054276 for ; Sun, 11 Apr 2004 18:52:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1qMgd047657 for ; Sun, 11 Apr 2004 18:52:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1qMxQ047656; Sun, 11 Apr 2004 18:52:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120152.i3C1qMxQ047656@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:52:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.hh xrl_fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:52:22 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.hh xrl_fib2mrib_node.cc Log message: * Add new method XrlFib2mribNode::cancel_rib_route_change() that can be used to cancel route changes in the RIB queue. * Rename method iftree() to ifmgr_iftree() * Modify XrlFib2mribNode::send_rib_route_change() to pop-up all routes that are suppose to be ignored. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:53:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 18:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1s1XG056301 for ; Sun, 11 Apr 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1s1p0054295 for ; Sun, 11 Apr 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1s1sD013771; Sun, 11 Apr 2004 18:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1rMsD013761 for ; Sun, 11 Apr 2004 18:53:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1rMp0054291 for ; Sun, 11 Apr 2004 18:53:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1rMgd047815 for ; Sun, 11 Apr 2004 18:53:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1rMJQ047814; Sun, 11 Apr 2004 18:53:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120153.i3C1rMJQ047814@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:53:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:53:22 Modified files: xorp/fib2mrib/: fib2mrib_node.cc fib2mrib_node.hh Log message: Added support to pull routes from the RIB if an interface goes down, or to add them to the RIB when the interface comes up. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:54:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 18:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1t1XG056555 for ; Sun, 11 Apr 2004 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1t1p0054312 for ; Sun, 11 Apr 2004 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1t1sD013804; Sun, 11 Apr 2004 18:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1sssD013798 for ; Sun, 11 Apr 2004 18:54:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1ssp0054305 for ; Sun, 11 Apr 2004 18:54:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1ssgd048150 for ; Sun, 11 Apr 2004 18:54:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1ssld048149; Sun, 11 Apr 2004 18:54:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120154.i3C1ssld048149@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:54:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:54:54 Modified files: xorp/fea/: ifconfig.cc Log message: Explicitly pull the current config first before we push the new config so we can align the new config with the current config. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:55:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 18:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1u1XG056829 for ; Sun, 11 Apr 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1u1p0054343 for ; Sun, 11 Apr 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1u1sD013830; Sun, 11 Apr 2004 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1ttsD013822 for ; Sun, 11 Apr 2004 18:55:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1ttp0054341 for ; Sun, 11 Apr 2004 18:55:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1ttgd048385 for ; Sun, 11 Apr 2004 18:55:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1ttRr048384; Sun, 11 Apr 2004 18:55:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120155.i3C1ttRr048384@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:55:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifmanager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:55:55 Modified files: xorp/fea/: ifmanager.hh Log message: Add new field _old_iftree and new method old_iftree() to keep state with the old configuration tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 18:59:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 19:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C201XG057775 for ; Sun, 11 Apr 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C201p0054385 for ; Sun, 11 Apr 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C201sD013912; Sun, 11 Apr 2004 19:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C1x2sD013886 for ; Sun, 11 Apr 2004 18:59:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1x2p0054363 for ; Sun, 11 Apr 2004 18:59:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C1x1gd048849 for ; Sun, 11 Apr 2004 18:59:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C1x1kv048848; Sun, 11 Apr 2004 18:59:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120159.i3C1x1kv048848@xorpc.icir.org> Date: Sun, 11 Apr 2004 18:59:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 18:59:01 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: * Remove method IfTree::ignore_duplicates(), because it is not needed anymore. * Add new method IfTree::prune_bogus_deleted_state() * Remove the "do_finalize_state" second argument of method IfTree:align_with(), because the call to finalize_state() should not be hidden. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 19:01:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 19:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C221XG058285 for ; Sun, 11 Apr 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C221p0054433 for ; Sun, 11 Apr 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C221sD013960; Sun, 11 Apr 2004 19:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C219sD013934 for ; Sun, 11 Apr 2004 19:01:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C219p0054419 for ; Sun, 11 Apr 2004 19:01:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C219gd049248 for ; Sun, 11 Apr 2004 19:01:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C219NP049247; Sun, 11 Apr 2004 19:01:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120201.i3C219NP049247@xorpc.icir.org> Date: Sun, 11 Apr 2004 19:01:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_ifmanager.hh xrl_ifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 19:01:09 Modified files: xorp/fea/: xrl_ifmanager.hh xrl_ifmanager.cc Log message: Refactor the code for pushing the interface configuration. Previously, it was (almost) working because of some side-effects when copying the interface tree state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Sun Apr 11 19:05:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Apr 2004 19:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C262XG059258 for ; Sun, 11 Apr 2004 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C261p0054491 for ; Sun, 11 Apr 2004 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C261sD014066; Sun, 11 Apr 2004 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3C25AsD014044 for ; Sun, 11 Apr 2004 19:05:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C259p0054481 for ; Sun, 11 Apr 2004 19:05:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3C259gd049988 for ; Sun, 11 Apr 2004 19:05:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3C259TU049985; Sun, 11 Apr 2004 19:05:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404120205.i3C259TU049985@xorpc.icir.org> Date: Sun, 11 Apr 2004 19:05:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/11 19:05:09 Modified files: xorp/fea/: libfeaclient_bridge.cc Log message: If the update state is CREATED, then fall-through and push the rest of the interface-specific arguments. E.g., if within a single transaction we create an interface and set some of its arguments, then the interface update state will be CREATED, but we still need to push the rest of its arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Mon Apr 12 15:12:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Apr 2004 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CMD1XG021666 for ; Mon, 12 Apr 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CMD1p0069842 for ; Mon, 12 Apr 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CMD0sD013355; Mon, 12 Apr 2004 15:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CMCJsD013335 for ; Mon, 12 Apr 2004 15:12:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CMCIp0069834 for ; Mon, 12 Apr 2004 15:12:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CMCIgd002161 for ; Mon, 12 Apr 2004 15:12:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3CMCIGR002160; Mon, 12 Apr 2004 15:12:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404122212.i3CMCIGR002160@xorpc.icir.org> Date: Mon, 12 Apr 2004 15:12:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/12 15:12:18 Modified files: xorp/bgp/: bgp_trie.cc Log message: Comment out DEBUG_LOGGING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Mon Apr 12 16:08:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Apr 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CN91XG035320 for ; Mon, 12 Apr 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CN91p0070539 for ; Mon, 12 Apr 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CN91sD015131; Mon, 12 Apr 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CN8LsD015106 for ; Mon, 12 Apr 2004 16:08:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CN8Lp0070528 for ; Mon, 12 Apr 2004 16:08:21 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CN8Lgd004929 for ; Mon, 12 Apr 2004 16:08:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3CN8Lkv004928; Mon, 12 Apr 2004 16:08:21 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404122308.i3CN8Lkv004928@xorpc.icir.org> Date: Mon, 12 Apr 2004 16:08:21 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/12 16:08:21 Modified files: xorp/bgp/: route_table_dump.cc Log message: print -> debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Mon Apr 12 16:17:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Apr 2004 16:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNI1XG043422 for ; Mon, 12 Apr 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNI0p0070644 for ; Mon, 12 Apr 2004 16:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CNI0sD015474; Mon, 12 Apr 2004 16:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CNH4sD015424 for ; Mon, 12 Apr 2004 16:17:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNH4p0070636 for ; Mon, 12 Apr 2004 16:17:04 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNH3gd005430 for ; Mon, 12 Apr 2004 16:17:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3CNH3vu005429; Mon, 12 Apr 2004 16:17:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404122317.i3CNH3vu005429@xorpc.icir.org> Date: Mon, 12 Apr 2004 16:17:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/12 16:17:03 Modified files: xorp/bgp/: route_table_cache.cc Log message: print -> debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Mon Apr 12 16:25:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Apr 2004 16:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNQ0XG045372 for ; Mon, 12 Apr 2004 16:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNQ0p0070736 for ; Mon, 12 Apr 2004 16:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CNQ0sD015662; Mon, 12 Apr 2004 16:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3CNP4sD015637 for ; Mon, 12 Apr 2004 16:25:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNP4p0070712 for ; Mon, 12 Apr 2004 16:25:04 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3CNP4gd005956 for ; Mon, 12 Apr 2004 16:25:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3CNP4HF005955; Mon, 12 Apr 2004 16:25:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404122325.i3CNP4HF005955@xorpc.icir.org> Date: Mon, 12 Apr 2004 16:25:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/12 16:25:04 Modified files: xorp/bgp/: route_table_cache.hh Log message: print -> debug_msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Tue Apr 13 15:14:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Apr 2004 15:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMF1XG030405 for ; Tue, 13 Apr 2004 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMF1p0087438 for ; Tue, 13 Apr 2004 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3DMF1sD018901; Tue, 13 Apr 2004 15:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3DMEisD018894 for ; Tue, 13 Apr 2004 15:14:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMEip0087432 for ; Tue, 13 Apr 2004 15:14:44 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMEhgd017967 for ; Tue, 13 Apr 2004 15:14:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3DMEhTG017966; Tue, 13 Apr 2004 15:14:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404132214.i3DMEhTG017966@xorpc.icir.org> Date: Tue, 13 Apr 2004 15:14:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/04/13 15:14:43 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: Kill any processes left over from previous tinderbox runs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Tue Apr 13 15:39:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Apr 2004 15:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMe1XG036391 for ; Tue, 13 Apr 2004 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMe0p0087744 for ; Tue, 13 Apr 2004 15:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3DMe0sD019697; Tue, 13 Apr 2004 15:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3DMdPsD019674 for ; Tue, 13 Apr 2004 15:39:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMdOp0087734 for ; Tue, 13 Apr 2004 15:39:24 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3DMdOgd018895 for ; Tue, 13 Apr 2004 15:39:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3DMdOVm018894; Tue, 13 Apr 2004 15:39:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404132239.i3DMdOVm018894@xorpc.icir.org> Date: Tue, 13 Apr 2004 15:39:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/04/13 15:39:24 Modified files: other/tinderbox/scripts/: config Log message: Add configuration for gcc34. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:27 2005 Subject: No subject Wed Apr 14 12:05:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJ60XG007645 for ; Wed, 14 Apr 2004 12:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJ60p0003896 for ; Wed, 14 Apr 2004 12:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJ60sD020246; Wed, 14 Apr 2004 12:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJ57sD020206 for ; Wed, 14 Apr 2004 12:05:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJ57p0003892 for ; Wed, 14 Apr 2004 12:05:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJ56gd012110 for ; Wed, 14 Apr 2004 12:05:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EJ56DM012109; Wed, 14 Apr 2004 12:05:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404141905.i3EJ56DM012109@xorpc.icir.org> Date: Wed, 14 Apr 2004 12:05:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 12:05:06 Modified files: xorp/bgp/: bgp.cc Log message: When originating a route don't prepend our AS it will be added later by a filter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 12:11:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 12:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJC1XG008992 for ; Wed, 14 Apr 2004 12:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJC1p0003973 for ; Wed, 14 Apr 2004 12:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJC1sD020440; Wed, 14 Apr 2004 12:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJB1sD020414 for ; Wed, 14 Apr 2004 12:11:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJB1p0003966 for ; Wed, 14 Apr 2004 12:11:01 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJB1gd012506 for ; Wed, 14 Apr 2004 12:11:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EJB12h012505; Wed, 14 Apr 2004 12:11:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404141911.i3EJB12h012505@xorpc.icir.org> Date: Wed, 14 Apr 2004 12:11:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 12:11:01 Modified files: xorp/bgp/: peer_handler.hh Log message: Add a method to allow us to test if this peerhandler is originating routes. In the test for EBGP/IBGP if the peer pointer is zero return EBGP after asserting this peerhandler is originating routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 12:14:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 12:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJF1XG009616 for ; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJF1p0004019 for ; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJF1sD020538; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJEFsD020517 for ; Wed, 14 Apr 2004 12:14:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJEFp0004004 for ; Wed, 14 Apr 2004 12:14:15 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJEFgd012687 for ; Wed, 14 Apr 2004 12:14:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EJEFDZ012686; Wed, 14 Apr 2004 12:14:15 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404141914.i3EJEFDZ012686@xorpc.icir.org> Date: Wed, 14 Apr 2004 12:14:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 12:14:15 Modified files: xorp/bgp/: plumbing.cc Log message: We are using the rib_ipc_handler to originate routes. Place a next hop lookup table into the plumbing to make sure that the next hop resolves. Add an originate route filter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 12:15:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 12:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJG1XG009840 for ; Wed, 14 Apr 2004 12:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJG1p0004054 for ; Wed, 14 Apr 2004 12:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJG1sD020582; Wed, 14 Apr 2004 12:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJF1sD020549 for ; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJF1p0004022 for ; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJF1gd012755 for ; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EJF1jS012754; Wed, 14 Apr 2004 12:15:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404141915.i3EJF1jS012754@xorpc.icir.org> Date: Wed, 14 Apr 2004 12:15:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 12:15:01 Modified files: xorp/bgp/: rib_ipc_handler.hh Log message: Add a method to allow us to test if this peerhandler is originating routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 12:17:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 12:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJI1XG010274 for ; Wed, 14 Apr 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJI1p0004082 for ; Wed, 14 Apr 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJI1sD020690; Wed, 14 Apr 2004 12:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EJHrsD020678 for ; Wed, 14 Apr 2004 12:17:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJHrp0004079 for ; Wed, 14 Apr 2004 12:17:53 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EJHrgd012943 for ; Wed, 14 Apr 2004 12:17:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EJHrnL012942; Wed, 14 Apr 2004 12:17:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404141917.i3EJHrnL012942@xorpc.icir.org> Date: Wed, 14 Apr 2004 12:17:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_filter.cc route_table_filter.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 12:17:53 Modified files: xorp/bgp/: route_table_filter.cc route_table_filter.hh Log message: Add a originate route table filter to prepend our AS number. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 16:00:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 16:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN12XG066204 for ; Wed, 14 Apr 2004 16:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN11p0008115 for ; Wed, 14 Apr 2004 16:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EN11sD026981; Wed, 14 Apr 2004 16:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EN0GsD026932 for ; Wed, 14 Apr 2004 16:00:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN0Gp0008102 for ; Wed, 14 Apr 2004 16:00:16 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN0Ggd021354 for ; Wed, 14 Apr 2004 16:00:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EN0GJA021353; Wed, 14 Apr 2004 16:00:16 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404142300.i3EN0GJA021353@xorpc.icir.org> Date: Wed, 14 Apr 2004 16:00:16 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/14 16:00:16 Modified files: xorp/bgp/: route_table_fanout.cc Log message: Assert that the iterator is valid. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Wed Apr 14 16:02:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Apr 2004 16:03:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN30XG066754 for ; Wed, 14 Apr 2004 16:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN30p0008146 for ; Wed, 14 Apr 2004 16:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EN30sD027128; Wed, 14 Apr 2004 16:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3EN2CsD027078 for ; Wed, 14 Apr 2004 16:02:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN2Cp0008141 for ; Wed, 14 Apr 2004 16:02:12 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3EN2Cgd021488 for ; Wed, 14 Apr 2004 16:02:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3EN2CC2021487; Wed, 14 Apr 2004 16:02:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404142302.i3EN2CC2021487@xorpc.icir.org> Date: Wed, 14 Apr 2004 16:02:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/04/14 16:02:12 Modified files: xorp/bgp/harness/: test_peering1.sh Log message: Verify that route origination works for both EBGP and IBGP peers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 6:17:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 06:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FDI1XG021900 for ; Thu, 15 Apr 2004 06:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FDI0H4017872 for ; Thu, 15 Apr 2004 06:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FDI0sD017170; Thu, 15 Apr 2004 06:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FDHtsD017155 for ; Thu, 15 Apr 2004 06:17:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FDHaH4017870 for ; Thu, 15 Apr 2004 06:17:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FDHagd004591 for ; Thu, 15 Apr 2004 06:17:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3FDHa3c004590; Thu, 15 Apr 2004 06:17:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404151317.i3FDHa3c004590@xorpc.icir.org> Date: Thu, 15 Apr 2004 6:17:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ Makefile.am Makefile.in xorp/static_routes/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/15 06:17:36 Modified files: xorp/fib2mrib/: Makefile.am Makefile.in xorp/static_routes/: Makefile.am Makefile.in Log message: Redefine the bin installation directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 8:32:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 08:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FFX1XG047900 for ; Thu, 15 Apr 2004 08:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FFX1H4021042 for ; Thu, 15 Apr 2004 08:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FFX1sD020407; Thu, 15 Apr 2004 08:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FFW5sD020389 for ; Thu, 15 Apr 2004 08:32:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FFW4H4021032 for ; Thu, 15 Apr 2004 08:32:04 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FFW4gd017417 for ; Thu, 15 Apr 2004 08:32:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3FFW4xG017416; Thu, 15 Apr 2004 08:32:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404151532.i3FFW4xG017416@xorpc.icir.org> Date: Thu, 15 Apr 2004 8:32:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ test_test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/04/15 08:32:04 Modified files: xorp/libxorp/: test_test_main.cc Log message: Fix compilation with --enable-debug-fnames. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 9:13:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 09:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FGE1XG056688 for ; Thu, 15 Apr 2004 09:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FGE1H4021609 for ; Thu, 15 Apr 2004 09:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FGE1sD021675; Thu, 15 Apr 2004 09:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3FGDVsD021654 for ; Thu, 15 Apr 2004 09:13:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FGDVH4021600 for ; Thu, 15 Apr 2004 09:13:31 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3FGDUgd020198 for ; Thu, 15 Apr 2004 09:13:30 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3FGDUVV020197; Thu, 15 Apr 2004 09:13:30 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404151613.i3FGDUVV020197@xorpc.icir.org> Date: Thu, 15 Apr 2004 9:13:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc dummy_next_hop_resolver.cc dump_iterators.cc local_data.cc next_hop_resolver.cc parameter.cc path_attribute.cc peer.cc peer_data.cc peer_handler.cc plumbing.cc process_watch.cc ...rib_ipc_handler.cc ...route_table_base.cc ...route_table_cache.cc ...route_table_decision.cc ...route_table_deletion.cc ...route_table_dump.cc ...route_table_fanout.cc ...route_table_filter.cc ...route_table_ribin.cc ...route_table_ribout.cc ...socket.cc ...test_next_hop_resolver.cc ...test_peer_data.cc ...update_packet.cc ...xrl_target.cc xorp/bgp/harness/ command.cc peer.cc test_peer.cc test_trie.cc trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: hodson@xorpc.icir.org. 04/04/15 09:13:30 Modified files: xorp/bgp/: bgp.cc dummy_next_hop_resolver.cc dump_iterators.cc local_data.cc next_hop_resolver.cc parameter.cc path_attribute.cc peer.cc peer_data.cc peer_handler.cc plumbing.cc process_watch.cc rib_ipc_handler.cc route_table_base.cc route_table_cache.cc route_table_decision.cc route_table_deletion.cc route_table_dump.cc route_table_fanout.cc route_table_filter.cc route_table_ribin.cc route_table_ribout.cc socket.cc test_next_hop_resolver.cc test_peer_data.cc update_packet.cc xrl_target.cc xorp/bgp/harness/: command.cc peer.cc test_peer.cc test_trie.cc trie.cc Log message: Comment out definitions of DEBUG_PRINT_FUNCTION_NAME since it breaks when --enable-debug-fnames is passed as a configure option (reported by Paolo Pisati). Using --enable-debug-fnames in conjunction with DEBUG_LOGGING will give the intended behaviour and avoid this problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 17:56:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 17:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G0v1XG048051 for ; Thu, 15 Apr 2004 17:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G0v1H4028118 for ; Thu, 15 Apr 2004 17:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G0v1sD007202; Thu, 15 Apr 2004 17:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G0udsD007187 for ; Thu, 15 Apr 2004 17:56:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G0udH4028115 for ; Thu, 15 Apr 2004 17:56:39 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G0udgd048016 for ; Thu, 15 Apr 2004 17:56:39 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G0udF0048014; Thu, 15 Apr 2004 17:56:39 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404160056.i3G0udF0048014@xorpc.icir.org> Date: Thu, 15 Apr 2004 17:56:39 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/15 17:56:39 Modified files: ./: index.html news.html Log message: Update news items. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 18:26:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 18:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1R1XG053385 for ; Thu, 15 Apr 2004 18:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1R1H4028460 for ; Thu, 15 Apr 2004 18:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1R0sD007899; Thu, 15 Apr 2004 18:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1QUsD007888 for ; Thu, 15 Apr 2004 18:26:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1QTH4028449 for ; Thu, 15 Apr 2004 18:26:29 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1QTgd051664 for ; Thu, 15 Apr 2004 18:26:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G1QTGj051663; Thu, 15 Apr 2004 18:26:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404160126.i3G1QTGj051663@xorpc.icir.org> Date: Thu, 15 Apr 2004 18:26:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ cvs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/15 18:26:29 Modified files: ./: cvs.html Log message: Change $Id$ to $Date$ in Last Modified. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 18:27:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 18:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1S0XG053576 for ; Thu, 15 Apr 2004 18:28:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1S0H4028474 for ; Thu, 15 Apr 2004 18:28:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1S0sD007921; Thu, 15 Apr 2004 18:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1RMsD007912 for ; Thu, 15 Apr 2004 18:27:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1RMH4028470 for ; Thu, 15 Apr 2004 18:27:22 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1RMgd051830 for ; Thu, 15 Apr 2004 18:27:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G1RMCZ051829; Thu, 15 Apr 2004 18:27:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404160127.i3G1RMCZ051829@xorpc.icir.org> Date: Thu, 15 Apr 2004 18:27:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/04/15 18:27:22 Modified files: xorp/etc/templates/: bgp.tp xorp/rtrmgr/: config.boot.sample Log message: Add the network4 and network6 commands to originate routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 18:34:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 18:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1a1XG062007 for ; Thu, 15 Apr 2004 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1a1H4028575 for ; Thu, 15 Apr 2004 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1a1sD008082; Thu, 15 Apr 2004 18:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1Z0sD008067 for ; Thu, 15 Apr 2004 18:35:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1Z0H4028542 for ; Thu, 15 Apr 2004 18:35:00 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1Yxgd053210 for ; Thu, 15 Apr 2004 18:34:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G1YxIx053206; Thu, 15 Apr 2004 18:34:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404160134.i3G1YxIx053206@xorpc.icir.org> Date: Thu, 15 Apr 2004 18:34:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ commitinfo config verifymsg Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: CVSROOT Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/15 18:34:59 Modified files: ./: commitinfo config verifymsg Log message: Do not pass arguments along. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Thu Apr 15 18:37:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Apr 2004 18:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1c2XG062546 for ; Thu, 15 Apr 2004 18:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1c1H4028605 for ; Thu, 15 Apr 2004 18:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1c1sD008143; Thu, 15 Apr 2004 18:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3G1bdsD008121 for ; Thu, 15 Apr 2004 18:37:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1bcH4028595 for ; Thu, 15 Apr 2004 18:37:38 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G1bcgd059288 for ; Thu, 15 Apr 2004 18:37:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G1bcf7059285; Thu, 15 Apr 2004 18:37:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404160137.i3G1bcf7059285@xorpc.icir.org> Date: Thu, 15 Apr 2004 18:37:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ commitinfo config verifymsg Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: CVSROOT Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/15 18:37:38 Modified files: ./: commitinfo config verifymsg Log message: Yet another attempt at 1.12.7 config. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:28 2005 Subject: No subject Fri Apr 16 10:37:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Apr 2004 10:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3GHc1XG035867 for ; Fri, 16 Apr 2004 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3GHc0H4041333 for ; Fri, 16 Apr 2004 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3GHc0mk002002; Fri, 16 Apr 2004 10:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3GHbJmk001980 for ; Fri, 16 Apr 2004 10:37:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3GHbJH4041327 for ; Fri, 16 Apr 2004 10:37:19 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3GHbJgd055267 for ; Fri, 16 Apr 2004 10:37:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3GHbJo9055266; Fri, 16 Apr 2004 10:37:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404161737.i3GHbJo9055266@xorpc.icir.org> Date: Fri, 16 Apr 2004 10:37:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ callback-gen.py callback_debug.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/04/16 10:37:19 Modified files: xorp/libxorp/: callback-gen.py callback_debug.hh Log message: Fix build with gcc3.4 and --enable-callback-debug. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Sun Apr 18 13:59:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 Apr 2004 14:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3IL02XG003754 for ; Sun, 18 Apr 2004 14:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3IL02H4081035 for ; Sun, 18 Apr 2004 14:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3IL01ZC003740; Sun, 18 Apr 2004 14:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3IKxCZC003727 for ; Sun, 18 Apr 2004 13:59:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3IKxBH4081012 for ; Sun, 18 Apr 2004 13:59:12 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3IKxBgd080528 for ; Sun, 18 Apr 2004 13:59:11 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3IKxBcE080527; Sun, 18 Apr 2004 13:59:11 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404182059.i3IKxBcE080527@xorpc.icir.org> Date: Sun, 18 Apr 2004 13:59:11 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/04/18 13:59:11 Modified files: xorp/libxorp/: trie.hh Log message: Fix build with DEBUG_LOGGING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Sun Apr 18 14:15:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 Apr 2004 14:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3ILG1XG006583 for ; Sun, 18 Apr 2004 14:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3ILG1H4081195 for ; Sun, 18 Apr 2004 14:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3ILG1ZC004046; Sun, 18 Apr 2004 14:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3ILFhZC004038 for ; Sun, 18 Apr 2004 14:15:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3ILFhH4081193 for ; Sun, 18 Apr 2004 14:15:43 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3ILFhgd081507 for ; Sun, 18 Apr 2004 14:15:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3ILFhnD081506; Sun, 18 Apr 2004 14:15:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404182115.i3ILFhnD081506@xorpc.icir.org> Date: Sun, 18 Apr 2004 14:15:43 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/mibs/ Changes by: hodson@xorpc.icir.org. 04/04/18 14:15:43 Modified files: xorp/mibs/: Makefile.am Makefile.in Log message: Explicitly turn off parallel build. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Mon Apr 19 15:18:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 Apr 2004 15:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMJ1XG096363 for ; Mon, 19 Apr 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMJ1H4099789 for ; Mon, 19 Apr 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3JMJ1ZC012305; Mon, 19 Apr 2004 15:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3JMIHZC012264 for ; Mon, 19 Apr 2004 15:18:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMIHH4099777 for ; Mon, 19 Apr 2004 15:18:17 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMIHgd085818 for ; Mon, 19 Apr 2004 15:18:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3JMIHAY085817; Mon, 19 Apr 2004 15:18:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404192218.i3JMIHAY085817@xorpc.icir.org> Date: Mon, 19 Apr 2004 15:18:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ license.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/19 15:18:17 Modified files: ./: license.html Log message: s/2003/2004/ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Mon Apr 19 15:18:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 Apr 2004 15:19:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMJ5XG096402 for ; Mon, 19 Apr 2004 15:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMJ5H4099793 for ; Mon, 19 Apr 2004 15:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3JMJ5ZC012317; Mon, 19 Apr 2004 15:19:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3JMIaZC012296 for ; Mon, 19 Apr 2004 15:18:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMIZH4099783 for ; Mon, 19 Apr 2004 15:18:35 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3JMIZgd085843 for ; Mon, 19 Apr 2004 15:18:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3JMIZpm085842; Mon, 19 Apr 2004 15:18:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404192218.i3JMIZpm085842@xorpc.icir.org> Date: Mon, 19 Apr 2004 15:18:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/19 15:18:35 Modified files: ./: index.html news.html Log message: Add CNet article to news stories. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Tue Apr 20 14:02:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Apr 2004 14:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3KL31XG050811 for ; Tue, 20 Apr 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3KL307A018293 for ; Tue, 20 Apr 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3KL30ZC019208; Tue, 20 Apr 2004 14:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3KL2WZC019180 for ; Tue, 20 Apr 2004 14:02:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3KL2W7A018283 for ; Tue, 20 Apr 2004 14:02:32 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3KL2Wgd094210 for ; Tue, 20 Apr 2004 14:02:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3KL2WDN094209; Tue, 20 Apr 2004 14:02:32 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404202102.i3KL2WDN094209@xorpc.icir.org> Date: Tue, 20 Apr 2004 14:02:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/20 14:02:32 Modified files: ./: index.html Log message: Fix typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Tue Apr 20 22:02:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Apr 2004 22:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3L531XG051587 for ; Tue, 20 Apr 2004 22:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3L5307A024478 for ; Tue, 20 Apr 2004 22:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3L530ZC001146; Tue, 20 Apr 2004 22:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3L525ZC001123 for ; Tue, 20 Apr 2004 22:02:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3L5257A024464 for ; Tue, 20 Apr 2004 22:02:05 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3L525gd037940 for ; Tue, 20 Apr 2004 22:02:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3L5258Z037939; Tue, 20 Apr 2004 22:02:05 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404210502.i3L5258Z037939@xorpc.icir.org> Date: Tue, 20 Apr 2004 22:02:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ faq.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/20 22:02:04 Added files: ./: faq.html Log message: Start of FAQ. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 7:49:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 07:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LEo1XG056116 for ; Wed, 21 Apr 2004 07:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LEo07A032239 for ; Wed, 21 Apr 2004 07:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LEo0ZC015532; Wed, 21 Apr 2004 07:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LEnYZC015515 for ; Wed, 21 Apr 2004 07:49:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LEnY7A032227 for ; Wed, 21 Apr 2004 07:49:34 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LEnYgd095871 for ; Wed, 21 Apr 2004 07:49:34 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LEnYSh095870; Wed, 21 Apr 2004 07:49:34 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404211449.i3LEnYSh095870@xorpc.icir.org> Date: Wed, 21 Apr 2004 7:49:33 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ faq.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 07:49:33 Modified files: ./: faq.html Log message: Add note on pronunciation _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 10:25:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 10:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LHQ1XG084412 for ; Wed, 21 Apr 2004 10:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LHQ1jN035941 for ; Wed, 21 Apr 2004 10:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LHQ1ZC020061; Wed, 21 Apr 2004 10:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LHPMZC020043 for ; Wed, 21 Apr 2004 10:25:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LHPMjN035935 for ; Wed, 21 Apr 2004 10:25:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LHPMgd008150 for ; Wed, 21 Apr 2004 10:25:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LHPM6F008146; Wed, 21 Apr 2004 10:25:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404211725.i3LHPM6F008146@xorpc.icir.org> Date: Wed, 21 Apr 2004 10:25:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 10:25:21 Added files: ./: getting_started.html Log message: A start at a XORP-for-beginners web page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 11:15:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 11:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIG1XG001401 for ; Wed, 21 Apr 2004 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIG1jN036702 for ; Wed, 21 Apr 2004 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LIG1ZC021685; Wed, 21 Apr 2004 11:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LIF4ZC021671 for ; Wed, 21 Apr 2004 11:15:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIF3jN036669 for ; Wed, 21 Apr 2004 11:15:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIF3gd010696 for ; Wed, 21 Apr 2004 11:15:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LIF3Lj010695; Wed, 21 Apr 2004 11:15:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404211815.i3LIF3Lj010695@xorpc.icir.org> Date: Wed, 21 Apr 2004 11:15:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts/ tinderbox.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/tinderbox/scripts/ Changes by: hodson@xorpc.icir.org. 04/04/21 11:15:03 Modified files: other/tinderbox/scripts/: tinderbox.sh Log message: Tweaks for Mail.app users (me) o Put a serial number in subject line to stop Mail.app associated tinderbox messages as being part of cotinuing thread. o Strip tabs from log header as Mail.app assumes a tab is 5 characters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 11:30:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 11:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIV1XG004814 for ; Wed, 21 Apr 2004 11:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIV0jN036961 for ; Wed, 21 Apr 2004 11:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LIV0ZC022210; Wed, 21 Apr 2004 11:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LIUlZC022184 for ; Wed, 21 Apr 2004 11:30:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIUkjN036953 for ; Wed, 21 Apr 2004 11:30:46 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LIUkgd011499 for ; Wed, 21 Apr 2004 11:30:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LIUkuA011498; Wed, 21 Apr 2004 11:30:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404211830.i3LIUkuA011498@xorpc.icir.org> Date: Wed, 21 Apr 2004 11:30:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: atanu@xorpc.icir.org. 04/04/21 11:30:46 Modified files: ./: getting_started.html Log message: 1) Spelling 2) Link to Click. 3) me -> us 4) XOrp -> XORP 5) xorp -> XORP _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 13:00:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 13:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LK11XG024413 for ; Wed, 21 Apr 2004 13:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LK11jN038258 for ; Wed, 21 Apr 2004 13:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LK11ZC024953; Wed, 21 Apr 2004 13:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LK0dZC024940 for ; Wed, 21 Apr 2004 13:00:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LK0djN038246 for ; Wed, 21 Apr 2004 13:00:39 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LK0dgd015268 for ; Wed, 21 Apr 2004 13:00:39 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LK0dvG015267; Wed, 21 Apr 2004 13:00:39 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404212000.i3LK0dvG015267@xorpc.icir.org> Date: Wed, 21 Apr 2004 13:00:39 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 13:00:39 Modified files: ./: getting_started.html Log message: Minor typos. Added link to gmake. Comment on how long gmake check takes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 13:21:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 13:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LKM1XG028957 for ; Wed, 21 Apr 2004 13:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LKM1jN038534 for ; Wed, 21 Apr 2004 13:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LKM1ZC025732; Wed, 21 Apr 2004 13:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LKLOZC025695 for ; Wed, 21 Apr 2004 13:21:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LKLOjN038527 for ; Wed, 21 Apr 2004 13:21:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LKLOgd016239 for ; Wed, 21 Apr 2004 13:21:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LKLOYO016238; Wed, 21 Apr 2004 13:21:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404212021.i3LKLOYO016238@xorpc.icir.org> Date: Wed, 21 Apr 2004 13:21:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 13:21:24 Modified files: ./: people.html Log message: Update my URL _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 14:02:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 14:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LL31XG037090 for ; Wed, 21 Apr 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LL31jN039164 for ; Wed, 21 Apr 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LL31ZC027130; Wed, 21 Apr 2004 14:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LL2aZC027111 for ; Wed, 21 Apr 2004 14:02:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LL2ajN039157 for ; Wed, 21 Apr 2004 14:02:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LL2Zgd017894 for ; Wed, 21 Apr 2004 14:02:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LL2Zw1017893; Wed, 21 Apr 2004 14:02:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404212102.i3LL2Zw1017893@xorpc.icir.org> Date: Wed, 21 Apr 2004 14:02:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/04/21 14:02:35 Modified files: ./: getting_started.html Log message: Add the Date CVS marker with small size. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 15:35:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 15:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMa1XG054817 for ; Wed, 21 Apr 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMa1jN040790 for ; Wed, 21 Apr 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMa1ZC029734; Wed, 21 Apr 2004 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMZKZC029707 for ; Wed, 21 Apr 2004 15:35:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMZKjN040784 for ; Wed, 21 Apr 2004 15:35:20 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMZJgd027793 for ; Wed, 21 Apr 2004 15:35:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LMZJEI027792; Wed, 21 Apr 2004 15:35:19 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404212235.i3LMZJEI027792@xorpc.icir.org> Date: Wed, 21 Apr 2004 15:35:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 15:35:19 Added files: ./: livecd.html Log message: First pass at a LiveCD page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 15:39:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 15:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMe1XG055718 for ; Wed, 21 Apr 2004 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMe1jN040842 for ; Wed, 21 Apr 2004 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMe1ZC029827; Wed, 21 Apr 2004 15:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMdmZC029817 for ; Wed, 21 Apr 2004 15:39:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMdljN040835 for ; Wed, 21 Apr 2004 15:39:47 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMdlgd028709 for ; Wed, 21 Apr 2004 15:39:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LMdlE3028708; Wed, 21 Apr 2004 15:39:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404212239.i3LMdlE3028708@xorpc.icir.org> Date: Wed, 21 Apr 2004 15:39:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ faq.html getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/21 15:39:47 Modified files: ./: faq.html getting_started.html Log message: o Move "What exactly is XORP?" from getting_started.html to faq.html. o Add problems reports to getting_started.html (as that got moved to FAQ with "What exactly is XORP?") _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 15:41:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 15:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMg1XG056193 for ; Wed, 21 Apr 2004 15:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMg1jN040888 for ; Wed, 21 Apr 2004 15:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMg1ZC029894; Wed, 21 Apr 2004 15:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMfpZC029882 for ; Wed, 21 Apr 2004 15:41:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMfpjN040884 for ; Wed, 21 Apr 2004 15:41:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMfogd029153 for ; Wed, 21 Apr 2004 15:41:50 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LMfoqS029152; Wed, 21 Apr 2004 15:41:50 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404212241.i3LMfoqS029152@xorpc.icir.org> Date: Wed, 21 Apr 2004 15:41:50 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/21 15:41:50 Modified files: ./: index.html Log message: Link Getting Started from homepage. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 23:46:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 15:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMl1XG057262 for ; Wed, 21 Apr 2004 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMl1jN040960 for ; Wed, 21 Apr 2004 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMl1ZC000052; Wed, 21 Apr 2004 15:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LMkNZC029997 for ; Wed, 21 Apr 2004 15:46:23 -0700 (PDT) Received: from vulture.icir.org (host81-153-253-19.range81-153.btcentralplus.com [81.153.253.19]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LMkMjN040950; Wed, 21 Apr 2004 15:46:22 -0700 (PDT) (envelope-from mjh@vulture.icir.org) Received: from vulture.icir.org (localhost [127.0.0.1]) by vulture.icir.org (8.12.9p2/8.12.3) with ESMTP id i3LMkLUB098473; Wed, 21 Apr 2004 23:46:21 +0100 (BST) (envelope-from mjh@vulture.icir.org) From: Mark Handley To: hodson@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ faq.html getting_started.html In-reply-to: Your message of "Wed, 21 Apr 2004 15:39:47." <200404212239.i3LMdlE3028708@xorpc.icir.org> Date: Wed, 21 Apr 2004 23:46:21 +0100 Message-ID: <98472.1082587581@vulture.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >Modified files: > ./: faq.html getting_started.html > >Log message: > o Move "What exactly is XORP?" from getting_started.html to faq.html. There's a large amount of confusion related to whether XORP is a forwarding path or not. I wanted to clarify this in the first place people look. Perhaps it should be in both places? Or link from Getting Started to the FAQ? - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 16:14:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 16:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LNF1XG069141 for ; Wed, 21 Apr 2004 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LNF1jN041379 for ; Wed, 21 Apr 2004 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LNF0ZC000690; Wed, 21 Apr 2004 16:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3LNEIZC000676 for ; Wed, 21 Apr 2004 16:14:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LNEIjN041367 for ; Wed, 21 Apr 2004 16:14:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3LNEIgd032494 for ; Wed, 21 Apr 2004 16:14:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3LNEIDJ032493; Wed, 21 Apr 2004 16:14:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404212314.i3LNEIDJ032493@xorpc.icir.org> Date: Wed, 21 Apr 2004 16:14:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/21 16:14:18 Modified files: xorp/bgp/: route_table_decision.cc Log message: Typo in comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:29 2005 Subject: No subject Wed Apr 21 18:10:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 18:11:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1B0XG091881 for ; Wed, 21 Apr 2004 18:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1B0jN042969 for ; Wed, 21 Apr 2004 18:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1B0ZC003650; Wed, 21 Apr 2004 18:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1ARZC003628 for ; Wed, 21 Apr 2004 18:10:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1ARjN042960 for ; Wed, 21 Apr 2004 18:10:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1ARgd049030 for ; Wed, 21 Apr 2004 18:10:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M1ARp3049029; Wed, 21 Apr 2004 18:10:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404220110.i3M1ARp3049029@xorpc.icir.org> Date: Wed, 21 Apr 2004 18:10:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ service.hh test_service.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/04/21 18:10:27 Modified files: xorp/libxorp/: service.hh test_service.cc Log message: Change ServiceBase::startup() and shutdown() to return a bool value to indicate success/failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Wed Apr 21 18:11:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 18:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1C0XG092060 for ; Wed, 21 Apr 2004 18:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1C0jN042986 for ; Wed, 21 Apr 2004 18:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1C0ZC003692; Wed, 21 Apr 2004 18:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1BrZC003683 for ; Wed, 21 Apr 2004 18:11:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1BrjN042984 for ; Wed, 21 Apr 2004 18:11:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1Brgd049265 for ; Wed, 21 Apr 2004 18:11:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M1Br7b049264; Wed, 21 Apr 2004 18:11:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404220111.i3M1Br7b049264@xorpc.icir.org> Date: Wed, 21 Apr 2004 18:11:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_socket_server.cc xrl_socket_server.hh xorp/libfeaclient/ ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh xorp/rip/ xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xorp/rip/tools/ show_peer_stats.cc show_stats.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: pavlin@xorpc.icir.org. 04/04/21 18:11:53 Modified files: xorp/fea/: xrl_socket_server.cc xrl_socket_server.hh xorp/libfeaclient/: ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh xorp/rip/: xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xorp/rip/tools/: show_peer_stats.cc show_stats.cc Log message: Change ServiceBase::startup() and shutdown() to return a bool value to indicate success/failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Wed Apr 21 18:14:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 18:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1F1XG092589 for ; Wed, 21 Apr 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1F1jN043028 for ; Wed, 21 Apr 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1F0ZC003804; Wed, 21 Apr 2004 18:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1ECZC003782 for ; Wed, 21 Apr 2004 18:14:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1EBjN043015 for ; Wed, 21 Apr 2004 18:14:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1EBgd049526 for ; Wed, 21 Apr 2004 18:14:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M1EBuU049525; Wed, 21 Apr 2004 18:14:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404220114.i3M1EBuU049525@xorpc.icir.org> Date: Wed, 21 Apr 2004 18:14:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/21 18:14:11 Modified files: xorp/fib2mrib/: fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: * Change ServiceBase::startup() and shutdown() to return a bool value to indicate success/failure. * Refactor the ServiceBase status handling * Misc. code refactoring _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Wed Apr 21 18:14:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Apr 2004 18:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1F1XG092604 for ; Wed, 21 Apr 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1F1jN043032 for ; Wed, 21 Apr 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1F1ZC003815; Wed, 21 Apr 2004 18:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M1EUZC003791 for ; Wed, 21 Apr 2004 18:14:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1EUjN043019 for ; Wed, 21 Apr 2004 18:14:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M1EUgd049598 for ; Wed, 21 Apr 2004 18:14:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M1EUdY049596; Wed, 21 Apr 2004 18:14:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404220114.i3M1EUdY049596@xorpc.icir.org> Date: Wed, 21 Apr 2004 18:14:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc static_routes_node.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/21 18:14:30 Modified files: xorp/static_routes/: static_routes_node.cc static_routes_node.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: * Change ServiceBase::startup() and shutdown() to return a bool value to indicate success/failure. * Refactor the ServiceBase status handling * Misc. code refactoring _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 0:50:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 00:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M7p1XG062520 for ; Thu, 22 Apr 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M7p1jN047578 for ; Thu, 22 Apr 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M7p1ZC012344; Thu, 22 Apr 2004 00:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M7oKZC012330 for ; Thu, 22 Apr 2004 00:50:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M7oJjN047575 for ; Thu, 22 Apr 2004 00:50:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M7oJgd087287 for ; Thu, 22 Apr 2004 00:50:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M7oJWW087286; Thu, 22 Apr 2004 00:50:19 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404220750.i3M7oJWW087286@xorpc.icir.org> Date: Thu, 22 Apr 2004 0:50:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/22 00:50:19 Modified files: ./: getting_started.html Log message: style changes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 2:28:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 02:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M9T1XG080847 for ; Thu, 22 Apr 2004 02:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M9T1jN049177 for ; Thu, 22 Apr 2004 02:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M9T1ZC014603; Thu, 22 Apr 2004 02:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3M9SLZC014589 for ; Thu, 22 Apr 2004 02:28:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M9SLjN049174 for ; Thu, 22 Apr 2004 02:28:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3M9SLgd097578 for ; Thu, 22 Apr 2004 02:28:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3M9SLZf097577; Thu, 22 Apr 2004 02:28:21 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404220928.i3M9SLZf097577@xorpc.icir.org> Date: Thu, 22 Apr 2004 2:28:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html getting_started.html index.html news.html people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/22 02:28:21 Modified files: ./: contributing.html cvs.html downloads.html getting_started.html index.html news.html people.html Log message: Improve site navigation _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 4:04:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 04:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MB52XG097778 for ; Thu, 22 Apr 2004 04:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MB51jN050328 for ; Thu, 22 Apr 2004 04:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MB51ZC016446; Thu, 22 Apr 2004 04:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MB4GZC016410 for ; Thu, 22 Apr 2004 04:04:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MB4GjN050318 for ; Thu, 22 Apr 2004 04:04:16 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MB4Ggd006955 for ; Thu, 22 Apr 2004 04:04:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MB4GX1006953; Thu, 22 Apr 2004 04:04:16 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404221104.i3MB4GX1006953@xorpc.icir.org> Date: Thu, 22 Apr 2004 4:04:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html getting_started.html index.html license.html livecd.html news.html people.html ./ quicklinks.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/22 04:04:15 Modified files: ./: contributing.html cvs.html downloads.html getting_started.html index.html license.html livecd.html news.html people.html Added files: ./: quicklinks.html Log message: Add quicklinks to a few more pages. Improved consistency. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 5:04:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 05:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MC51XG008230 for ; Thu, 22 Apr 2004 05:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MC51jN051106 for ; Thu, 22 Apr 2004 05:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MC50ZC019568; Thu, 22 Apr 2004 05:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MC4eZC019553 for ; Thu, 22 Apr 2004 05:04:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MC4ejN051097 for ; Thu, 22 Apr 2004 05:04:40 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MC4egd012845 for ; Thu, 22 Apr 2004 05:04:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MC4enP012844; Thu, 22 Apr 2004 05:04:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404221204.i3MC4enP012844@xorpc.icir.org> Date: Thu, 22 Apr 2004 5:04:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/22 05:04:40 Modified files: ./: downloads.html Log message: fix width problem _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 5:14:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 05:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCF1XG009980 for ; Thu, 22 Apr 2004 05:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCF1jN051235 for ; Thu, 22 Apr 2004 05:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MCF1ZC019744; Thu, 22 Apr 2004 05:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MCErZC019734 for ; Thu, 22 Apr 2004 05:14:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCErjN051229 for ; Thu, 22 Apr 2004 05:14:53 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCErgd013904 for ; Thu, 22 Apr 2004 05:14:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MCErit013903; Thu, 22 Apr 2004 05:14:53 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404221214.i3MCErit013903@xorpc.icir.org> Date: Thu, 22 Apr 2004 5:14:53 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: mjh@xorpc.icir.org. 04/04/22 05:14:53 Modified files: xorp/docs/: index.html status.html Log message: Consistency _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 5:38:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 05:39:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCd0XG014101 for ; Thu, 22 Apr 2004 05:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCd0jN051537 for ; Thu, 22 Apr 2004 05:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MCd0ZC020195; Thu, 22 Apr 2004 05:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MCcuZC020189 for ; Thu, 22 Apr 2004 05:38:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCcujN051535 for ; Thu, 22 Apr 2004 05:38:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MCcugd016155 for ; Thu, 22 Apr 2004 05:38:56 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MCcuLa016154; Thu, 22 Apr 2004 05:38:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404221238.i3MCcuLa016154@xorpc.icir.org> Date: Thu, 22 Apr 2004 5:38:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: mjh@xorpc.icir.org. 04/04/22 05:38:56 Modified files: xorp/docs/: index.html status.html Log message: Fix relative paths _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 11:12:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 11:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MID1XG084496 for ; Thu, 22 Apr 2004 11:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MID1jN057350 for ; Thu, 22 Apr 2004 11:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MID1ZC028753; Thu, 22 Apr 2004 11:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MICQZC028729 for ; Thu, 22 Apr 2004 11:12:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MICQjN057344 for ; Thu, 22 Apr 2004 11:12:26 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MICQgd042816 for ; Thu, 22 Apr 2004 11:12:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MICQUs042815; Thu, 22 Apr 2004 11:12:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404221812.i3MICQUs042815@xorpc.icir.org> Date: Thu, 22 Apr 2004 11:12:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html faq.html getting_started.html index.html license.html livecd.html news.html people.html quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/22 11:12:26 Modified files: ./: contributing.html cvs.html downloads.html faq.html getting_started.html index.html license.html livecd.html news.html people.html quotes.html Log message: Use same logo for XORP as front page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 12:23:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 12:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJO1XG000378 for ; Thu, 22 Apr 2004 12:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJO1jN058325 for ; Thu, 22 Apr 2004 12:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MJO1ZC000741; Thu, 22 Apr 2004 12:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MJN0ZC000707 for ; Thu, 22 Apr 2004 12:23:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJN0jN058312 for ; Thu, 22 Apr 2004 12:23:00 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJN0gd046300 for ; Thu, 22 Apr 2004 12:23:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MJN0VX046299; Thu, 22 Apr 2004 12:23:00 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404221923.i3MJN0VX046299@xorpc.icir.org> Date: Thu, 22 Apr 2004 12:23:00 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/22 12:23:00 Modified files: ./: index.html Log message: Minor tag fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 12:29:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJU1XG001760 for ; Thu, 22 Apr 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJU1jN058409 for ; Thu, 22 Apr 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MJU1ZC000931; Thu, 22 Apr 2004 12:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3MJTaZC000914 for ; Thu, 22 Apr 2004 12:29:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJTajN058401 for ; Thu, 22 Apr 2004 12:29:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3MJTZgd046623 for ; Thu, 22 Apr 2004 12:29:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3MJTZgg046622; Thu, 22 Apr 2004 12:29:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404221929.i3MJTZgg046622@xorpc.icir.org> Date: Thu, 22 Apr 2004 12:29:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/22 12:29:35 Modified files: xorp/bgp/: route_table_cache.cc Log message: Formatting nits. assert -> XLOG_ASSERT. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Thu Apr 22 17:04:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Apr 2004 17:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3N051XG061122 for ; Thu, 22 Apr 2004 17:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3N051jN062173 for ; Thu, 22 Apr 2004 17:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3N051ZC007538; Thu, 22 Apr 2004 17:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3N04XZC007517 for ; Thu, 22 Apr 2004 17:04:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3N04XjN062163 for ; Thu, 22 Apr 2004 17:04:33 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3N04Xgd058741 for ; Thu, 22 Apr 2004 17:04:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3N04Xwv058740; Thu, 22 Apr 2004 17:04:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404230004.i3N04Xwv058740@xorpc.icir.org> Date: Thu, 22 Apr 2004 17:04:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ faq.html getting_started.html livecd.html news.html quicklinks.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/22 17:04:33 Modified files: ./: faq.html getting_started.html livecd.html news.html quicklinks.html Log message: Conformance nits spotted with nsgmls. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Fri Apr 23 4:01:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Apr 2004 04:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB22XG077588 for ; Fri, 23 Apr 2004 04:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB22jN070613 for ; Fri, 23 Apr 2004 04:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NB21ZC020841; Fri, 23 Apr 2004 04:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NB1ZZC020829 for ; Fri, 23 Apr 2004 04:01:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB1YjN070611 for ; Fri, 23 Apr 2004 04:01:34 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB1Ygd023944 for ; Fri, 23 Apr 2004 04:01:34 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3NB1YS7023943; Fri, 23 Apr 2004 04:01:34 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404231101.i3NB1YS7023943@xorpc.icir.org> Date: Fri, 23 Apr 2004 4:01:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html getting_started.html index.html livecd.html news.html people.html ./ docs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/04/23 04:01:34 Modified files: ./: contributing.html cvs.html downloads.html getting_started.html index.html livecd.html news.html people.html Added files: ./: docs.html Log message: Add documentation web page that brings all the documentation together in one (hopefully) easy to navigate place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Fri Apr 23 4:06:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Apr 2004 04:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB71XG078441 for ; Fri, 23 Apr 2004 04:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB71jN070681 for ; Fri, 23 Apr 2004 04:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NB71ZC021016; Fri, 23 Apr 2004 04:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NB6gZC021010 for ; Fri, 23 Apr 2004 04:06:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB6gjN070675 for ; Fri, 23 Apr 2004 04:06:42 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NB6ggd024438 for ; Fri, 23 Apr 2004 04:06:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3NB6f2l024436; Fri, 23 Apr 2004 04:06:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200404231106.i3NB6f2l024436@xorpc.icir.org> Date: Fri, 23 Apr 2004 4:06:41 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: mjh@xorpc.icir.org. 04/04/23 04:06:41 Modified files: xorp/docs/: index.html status.html Log message: Reference docs page _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Fri Apr 23 7:31:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Apr 2004 07:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NEW1XG012766 for ; Fri, 23 Apr 2004 07:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NEW1jN073219 for ; Fri, 23 Apr 2004 07:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NEW1ZC027031; Fri, 23 Apr 2004 07:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NEVfZC027014 for ; Fri, 23 Apr 2004 07:31:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NEVfjN073216 for ; Fri, 23 Apr 2004 07:31:41 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NEVfgd042321 for ; Fri, 23 Apr 2004 07:31:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3NEVfhX042320; Fri, 23 Apr 2004 07:31:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404231431.i3NEVfhX042320@xorpc.icir.org> Date: Fri, 23 Apr 2004 7:31:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ docs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/04/23 07:31:41 Modified files: ./: docs.html Log message: Sync logo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Fri Apr 23 12:30:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Apr 2004 12:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJV1XG063092 for ; Fri, 23 Apr 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJV1jN078751 for ; Fri, 23 Apr 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NJV1ZC005545; Fri, 23 Apr 2004 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NJUIZC005525 for ; Fri, 23 Apr 2004 12:30:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJUIjN078745 for ; Fri, 23 Apr 2004 12:30:18 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJUIgd061385 for ; Fri, 23 Apr 2004 12:30:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3NJUICC061384; Fri, 23 Apr 2004 12:30:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404231930.i3NJUICC061384@xorpc.icir.org> Date: Fri, 23 Apr 2004 12:30:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/23 12:30:18 Modified files: xorp/rib/: rib.cc Log message: Disable Redist. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Fri Apr 23 12:31:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Apr 2004 12:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJW1XG063272 for ; Fri, 23 Apr 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJW1jN078773 for ; Fri, 23 Apr 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NJW1ZC005600; Fri, 23 Apr 2004 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3NJV2ZC005551 for ; Fri, 23 Apr 2004 12:31:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJV2jN078753 for ; Fri, 23 Apr 2004 12:31:02 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3NJV1gd061443 for ; Fri, 23 Apr 2004 12:31:01 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3NJV14C061442; Fri, 23 Apr 2004 12:31:01 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404231931.i3NJV14C061442@xorpc.icir.org> Date: Fri, 23 Apr 2004 12:31:01 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ .cvsignore Makefile.am Makefile.in rt_tab_redist.cc rt_tab_redist.hh xorp/rib/ test_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/23 12:31:01 Modified files: xorp/rib/: .cvsignore Makefile.am Makefile.in rt_tab_redist.cc rt_tab_redist.hh Added files: xorp/rib/: test_redist.cc Log message: Reworking of RedistTable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:30 2005 Subject: No subject Mon Apr 26 9:35:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 09:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QGa1XG067750 for ; Mon, 26 Apr 2004 09:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QGa0jN033879 for ; Mon, 26 Apr 2004 09:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QGa0ZC000490; Mon, 26 Apr 2004 09:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QGZ1ZC000467 for ; Mon, 26 Apr 2004 09:35:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QGZ1jN033851 for ; Mon, 26 Apr 2004 09:35:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QGZ1gd047423 for ; Mon, 26 Apr 2004 09:35:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QGZ1wW047422; Mon, 26 Apr 2004 09:35:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404261635.i3QGZ1wW047422@xorpc.icir.org> Date: Mon, 26 Apr 2004 9:35:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/26 09:35:01 Modified files: xorp/pim/: README Log message: Fix a typo [Bug report by "edrt"] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 12:31:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 12:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJW1XG009939 for ; Mon, 26 Apr 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJW1hw036589 for ; Mon, 26 Apr 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QJW1ZC005888; Mon, 26 Apr 2004 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QJVsZC005881 for ; Mon, 26 Apr 2004 12:31:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJVshw036587 for ; Mon, 26 Apr 2004 12:31:54 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJVrgd062046 for ; Mon, 26 Apr 2004 12:31:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QJVrPD062045; Mon, 26 Apr 2004 12:31:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404261931.i3QJVrPD062045@xorpc.icir.org> Date: Mon, 26 Apr 2004 12:31:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/26 12:31:53 Modified files: xorp/bgp/: peer.hh Log message: Explain why we have a state (STOPPED) that is not in the specification. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 12:39:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 12:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJe1XG012083 for ; Mon, 26 Apr 2004 12:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJe1hw036760 for ; Mon, 26 Apr 2004 12:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QJe1ZC006178; Mon, 26 Apr 2004 12:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QJdFZC006121 for ; Mon, 26 Apr 2004 12:39:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJdFhw036743 for ; Mon, 26 Apr 2004 12:39:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QJdFgd062618 for ; Mon, 26 Apr 2004 12:39:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QJdF0W062617; Mon, 26 Apr 2004 12:39:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404261939.i3QJdF0W062617@xorpc.icir.org> Date: Mon, 26 Apr 2004 12:39:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 04/04/26 12:39:15 Modified files: xorp/docs/: index.html status.html Log message: Replace "XORP" CVS tag with "Date". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 14:41:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 14:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QLg1XG043659 for ; Mon, 26 Apr 2004 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QLg1hw038824 for ; Mon, 26 Apr 2004 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QLg0ZC009941; Mon, 26 Apr 2004 14:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QLfBZC009916 for ; Mon, 26 Apr 2004 14:41:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QLfBhw038808 for ; Mon, 26 Apr 2004 14:41:11 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QLfAgd071462 for ; Mon, 26 Apr 2004 14:41:10 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QLfAlm071461; Mon, 26 Apr 2004 14:41:10 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404262141.i3QLfAlm071461@xorpc.icir.org> Date: Mon, 26 Apr 2004 14:41:10 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/26 14:41:10 Modified files: xorp/rib/: test_redist.cc Log message: Fix tinderbox breakage on koala. Verbosify error messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 15:53:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 15:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QMs1XG062747 for ; Mon, 26 Apr 2004 15:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QMs0hw039926 for ; Mon, 26 Apr 2004 15:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QMs0ZC012138; Mon, 26 Apr 2004 15:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QMrsZC012123 for ; Mon, 26 Apr 2004 15:53:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QMrshw039924 for ; Mon, 26 Apr 2004 15:53:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QMrrgd075912 for ; Mon, 26 Apr 2004 15:53:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QMrr9N075911; Mon, 26 Apr 2004 15:53:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404262253.i3QMrr9N075911@xorpc.icir.org> Date: Mon, 26 Apr 2004 15:53:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/04/26 15:53:53 Modified files: xorp/cli/: cli_node.cc Log message: assert() -> XLOG_ASSERT() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 16:03:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 16:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QN41XG065410 for ; Mon, 26 Apr 2004 16:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QN41hw040128 for ; Mon, 26 Apr 2004 16:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QN41ZC012383; Mon, 26 Apr 2004 16:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3QN35ZC012356 for ; Mon, 26 Apr 2004 16:03:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QN35hw040099 for ; Mon, 26 Apr 2004 16:03:05 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3QN35gd076583 for ; Mon, 26 Apr 2004 16:03:05 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3QN34TK076582; Mon, 26 Apr 2004 16:03:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404262303.i3QN34TK076582@xorpc.icir.org> Date: Mon, 26 Apr 2004 16:03:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_redist.cc rt_tab_redist.hh test_redist.cc xorp/rib/ redist_policy.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/26 16:03:04 Modified files: xorp/rib/: rt_tab_redist.cc rt_tab_redist.hh test_redist.cc Added files: xorp/rib/: redist_policy.hh Log message: o Add redist policy. This allows route updates to be redistributed based on policy, ie protocol, igp, egp, etc. o s/RedistributorOutput/RedistOutput/ to be consistent with redist class names. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Mon Apr 26 17:33:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Apr 2004 17:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3R0Y1XG093588 for ; Mon, 26 Apr 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3R0Y1hw041329 for ; Mon, 26 Apr 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3R0Y1ZC014952; Mon, 26 Apr 2004 17:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3R0XYZC014927 for ; Mon, 26 Apr 2004 17:33:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3R0XYhw041323 for ; Mon, 26 Apr 2004 17:33:34 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3R0XYgd085808 for ; Mon, 26 Apr 2004 17:33:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3R0XY1Z085803; Mon, 26 Apr 2004 17:33:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404270033.i3R0XY1Z085803@xorpc.icir.org> Date: Mon, 26 Apr 2004 17:33:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/26 17:33:34 Modified files: xorp/rib/: rt_tab_redist.cc Log message: Shift location of policy checks so they work during initial route dump and for subsequent updates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Tue Apr 27 10:22:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Apr 2004 10:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RHN1XG030425 for ; Tue, 27 Apr 2004 10:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RHN1hw056702 for ; Tue, 27 Apr 2004 10:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RHN1ZC011116; Tue, 27 Apr 2004 10:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RHM4ZC011084 for ; Tue, 27 Apr 2004 10:22:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RHM4hw056683 for ; Tue, 27 Apr 2004 10:22:04 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RHM4gd088186 for ; Tue, 27 Apr 2004 10:22:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3RHM4vZ088185; Tue, 27 Apr 2004 10:22:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404271722.i3RHM4vZ088185@xorpc.icir.org> Date: Tue, 27 Apr 2004 10:22:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/27 10:22:04 Modified files: xorp/rib/: test_redist.cc Log message: Compilation fix for systems with signed size_t. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Tue Apr 27 11:01:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Apr 2004 11:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RI21XG040483 for ; Tue, 27 Apr 2004 11:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RI21hw057306 for ; Tue, 27 Apr 2004 11:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RI21ZC012388; Tue, 27 Apr 2004 11:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RI1xZC012382 for ; Tue, 27 Apr 2004 11:01:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RI1xhw057304 for ; Tue, 27 Apr 2004 11:01:59 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RI1xgd090649 for ; Tue, 27 Apr 2004 11:01:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3RI1xGL090648; Tue, 27 Apr 2004 11:01:59 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200404271801.i3RI1xGL090648@xorpc.icir.org> Date: Tue, 27 Apr 2004 11:01:59 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peering2.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/04/27 11:01:59 Modified files: xorp/bgp/harness/: test_peering2.sh Log message: Allow a traffic file to be supplied from the environment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Tue Apr 27 14:25:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Apr 2004 14:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RLQ1XG093403 for ; Tue, 27 Apr 2004 14:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RLQ1hw060006 for ; Tue, 27 Apr 2004 14:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RLQ1ZC018179; Tue, 27 Apr 2004 14:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3RLPaZC018164 for ; Tue, 27 Apr 2004 14:25:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RLPZhw059998 for ; Tue, 27 Apr 2004 14:25:35 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3RLPZgd000810 for ; Tue, 27 Apr 2004 14:25:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3RLPZ7N000809; Tue, 27 Apr 2004 14:25:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404272125.i3RLPZ7N000809@xorpc.icir.org> Date: Tue, 27 Apr 2004 14:25:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ipv6.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: hodson@xorpc.icir.org. 04/04/27 14:25:35 Modified files: xorp/libxorp/: ipv6.cc Log message: Move static initialization of IPv6 prefixes -- have code on darwin/ppc that fails with IPv6 objects as static class constants. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Tue Apr 27 17:07:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Apr 2004 17:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3S081XG033243 for ; Tue, 27 Apr 2004 17:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3S081hw062135 for ; Tue, 27 Apr 2004 17:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3S081ZC022845; Tue, 27 Apr 2004 17:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3S07MZC022825 for ; Tue, 27 Apr 2004 17:07:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3S07Mhw062131 for ; Tue, 27 Apr 2004 17:07:22 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3S07Mgd009629 for ; Tue, 27 Apr 2004 17:07:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3S07Mtv009628; Tue, 27 Apr 2004 17:07:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404280007.i3S07Mtv009628@xorpc.icir.org> Date: Tue, 27 Apr 2004 17:07:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ test_register.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/27 17:07:22 Modified files: xorp/rib/: test_register.cc Log message: Avoid de-referencing when things go wrong. Exposed by currently broken and uncommitted RIB code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Wed Apr 28 8:44:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Apr 2004 08:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFj1XG039896 for ; Wed, 28 Apr 2004 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFj1hw074395 for ; Wed, 28 Apr 2004 08:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFj1ZC016339; Wed, 28 Apr 2004 08:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFimZC016327 for ; Wed, 28 Apr 2004 08:44:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFimhw074390 for ; Wed, 28 Apr 2004 08:44:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFimgd008958 for ; Wed, 28 Apr 2004 08:44:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3SFimB4008957; Wed, 28 Apr 2004 08:44:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404281544.i3SFimB4008957@xorpc.icir.org> Date: Wed, 28 Apr 2004 8:44:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser_direct_cmds.hh test_rib_direct.cc test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/28 08:44:48 Modified files: xorp/rib/: parser_direct_cmds.hh test_rib_direct.cc test_rib_xrls.cc Log message: Remove unused commands for plumbing in MergedTable's and ExtIntTables. Corresponding RIB methods have deprecated for some time and tests do not use the removed commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Wed Apr 28 8:46:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Apr 2004 08:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFl1XG040350 for ; Wed, 28 Apr 2004 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFl1hw074436 for ; Wed, 28 Apr 2004 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFl1ZC016391; Wed, 28 Apr 2004 08:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFkaZC016376 for ; Wed, 28 Apr 2004 08:46:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFkahw074430 for ; Wed, 28 Apr 2004 08:46:36 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFkagd009160 for ; Wed, 28 Apr 2004 08:46:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3SFka83009159; Wed, 28 Apr 2004 08:46:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404281546.i3SFka83009159@xorpc.icir.org> Date: Wed, 28 Apr 2004 8:46:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_redist.hh rt_tab_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/28 08:46:36 Modified files: xorp/rib/: rt_tab_redist.hh rt_tab_redist.cc Log message: o Add a design note to kdoc comment. o Propagate add's and delete's to next table if present (Oops :-). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Wed Apr 28 8:48:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Apr 2004 08:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFn1XG040825 for ; Wed, 28 Apr 2004 08:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFn1hw074481 for ; Wed, 28 Apr 2004 08:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFn1ZC016481; Wed, 28 Apr 2004 08:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFmmZC016470 for ; Wed, 28 Apr 2004 08:48:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFmlhw074475 for ; Wed, 28 Apr 2004 08:48:47 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFmlgd009399 for ; Wed, 28 Apr 2004 08:48:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3SFmlwZ009398; Wed, 28 Apr 2004 08:48:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404281548.i3SFmlwZ009398@xorpc.icir.org> Date: Wed, 28 Apr 2004 8:48:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.hh rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/28 08:48:47 Modified files: xorp/rib/: rib_manager.hh rib_manager.cc Log message: Templatize some repetitive code. Zap whitespace nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Wed Apr 28 8:56:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Apr 2004 08:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFv1XG042583 for ; Wed, 28 Apr 2004 08:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFv1hw074609 for ; Wed, 28 Apr 2004 08:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFv0ZC016753; Wed, 28 Apr 2004 08:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3SFumZC016737 for ; Wed, 28 Apr 2004 08:56:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFumhw074603 for ; Wed, 28 Apr 2004 08:56:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3SFumgd010204 for ; Wed, 28 Apr 2004 08:56:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3SFum1J010203; Wed, 28 Apr 2004 08:56:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200404281556.i3SFum1J010203@xorpc.icir.org> Date: Wed, 28 Apr 2004 8:56:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc rib.hh rt_tab_base.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_merged.cc rt_tab_merged.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/04/28 08:56:48 Modified files: xorp/rib/: rib.cc rib.hh rt_tab_base.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_merged.cc rt_tab_merged.hh Log message: Remove deprecated methods from RIB :- new_merged_table(), new_extint_table(). Base tablenames of ExtIntTable and MergedTable on currently associated parents, as opposed to parents when first instantiated. The latter is confusing when debugging when additional tables are plumbed in after either table type instantiated. Add RouteTable::set_tablename() to facilitate changing table name. Store instantiated tables in a list rather than name keyed map. This makes sense with above changes and has neglible performance impact. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Thu Apr 29 16:22:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNN1XG060898 for ; Thu, 29 Apr 2004 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNN1hw098921 for ; Thu, 29 Apr 2004 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNN1RF006573; Thu, 29 Apr 2004 16:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNMDRF006552 for ; Thu, 29 Apr 2004 16:22:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNMDhw098912 for ; Thu, 29 Apr 2004 16:22:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNMCgd098727 for ; Thu, 29 Apr 2004 16:22:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNMC6W098726; Thu, 29 Apr 2004 16:22:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292322.i3TNMC6W098726@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:22:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:22:12 Modified files: xorp/libproto/: proto_node.hh Log message: * Add new methods: is_done() node_status() incr_startup_requests_n() decr_startup_requests_n() incr_shutdown_requests_n() decr_shutdown_requests_n() update_status() * Tweaks to start/stop_configuration() * Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:31 2005 Subject: No subject Thu Apr 29 16:23:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNO1XG061127 for ; Thu, 29 Apr 2004 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNO1hw098933 for ; Thu, 29 Apr 2004 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNO0RF006606; Thu, 29 Apr 2004 16:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNNsRF006598 for ; Thu, 29 Apr 2004 16:23:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNNshw098931 for ; Thu, 29 Apr 2004 16:23:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNNsgd098873 for ; Thu, 29 Apr 2004 16:23:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNNsJE098872; Thu, 29 Apr 2004 16:23:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292323.i3TNNsJE098872@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:23:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_state.cc proto_state.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:23:54 Modified files: xorp/libproto/: proto_state.cc proto_state.hh Log message: * Use ServiceBase as a base class to ProtoState * Various tweaks _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:24:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNP1XG061335 for ; Thu, 29 Apr 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNP1hw098947 for ; Thu, 29 Apr 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNP1RF006655; Thu, 29 Apr 2004 16:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNOuRF006646 for ; Thu, 29 Apr 2004 16:24:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNOuhw098942 for ; Thu, 29 Apr 2004 16:24:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNOtgd098989 for ; Thu, 29 Apr 2004 16:24:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNOtPt098988; Thu, 29 Apr 2004 16:24:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292324.i3TNOtPt098988@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:24:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:24:55 Modified files: xorp/static_routes/: static_routes_node.hh Log message: Kdoc-ify ifmgr_iftree() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:25:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQ1XG061583 for ; Thu, 29 Apr 2004 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQ1hw098983 for ; Thu, 29 Apr 2004 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNQ0RF006697; Thu, 29 Apr 2004 16:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNPMRF006670 for ; Thu, 29 Apr 2004 16:25:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNPMhw098974 for ; Thu, 29 Apr 2004 16:25:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNPMgd099072 for ; Thu, 29 Apr 2004 16:25:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNPMMm099071; Thu, 29 Apr 2004 16:25:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292325.i3TNPMMm099071@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:25:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:25:22 Modified files: xorp/fib2mrib/: fib2mrib_node.hh Log message: Kdoc-ify ifmgr_iftree() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:26:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:27:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNR2XG061840 for ; Thu, 29 Apr 2004 16:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNR2hw099007 for ; Thu, 29 Apr 2004 16:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNR1RF006771; Thu, 29 Apr 2004 16:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNQVRF006725 for ; Thu, 29 Apr 2004 16:26:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQVhw098999 for ; Thu, 29 Apr 2004 16:26:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQVgd099185 for ; Thu, 29 Apr 2004 16:26:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNQVZq099184; Thu, 29 Apr 2004 16:26:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292326.i3TNQVZq099184@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:26:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:26:31 Modified files: xorp/static_routes/: static_routes_node.cc Log message: Return error if shutdown() is called and the node not running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:26:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNR3XG061855 for ; Thu, 29 Apr 2004 16:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNR2hw099011 for ; Thu, 29 Apr 2004 16:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNR2RF006782; Thu, 29 Apr 2004 16:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNQhRF006751 for ; Thu, 29 Apr 2004 16:26:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQhhw099002 for ; Thu, 29 Apr 2004 16:26:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNQhgd099219 for ; Thu, 29 Apr 2004 16:26:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNQhbs099218; Thu, 29 Apr 2004 16:26:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292326.i3TNQhbs099218@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:26:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:26:43 Modified files: xorp/fib2mrib/: fib2mrib_node.cc Log message: Return error if shutdown() is called and the node not running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:27:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNS1XG062076 for ; Thu, 29 Apr 2004 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNS1hw099034 for ; Thu, 29 Apr 2004 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNS1RF006823; Thu, 29 Apr 2004 16:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNRmRF006809 for ; Thu, 29 Apr 2004 16:27:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNRmhw099024 for ; Thu, 29 Apr 2004 16:27:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNRmgd099345 for ; Thu, 29 Apr 2004 16:27:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNRmr6099344; Thu, 29 Apr 2004 16:27:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292327.i3TNRmr6099344@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:27:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:27:47 Modified files: xorp/static_routes/: xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: Nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:27:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNT1XG062317 for ; Thu, 29 Apr 2004 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNT0hw099045 for ; Thu, 29 Apr 2004 16:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNT0RF006862; Thu, 29 Apr 2004 16:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNS0RF006817 for ; Thu, 29 Apr 2004 16:28:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNS0hw099031 for ; Thu, 29 Apr 2004 16:28:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNRxgd099388 for ; Thu, 29 Apr 2004 16:27:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNRxD3099387; Thu, 29 Apr 2004 16:27:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292327.i3TNRxD3099387@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:27:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:27:59 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:32:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNX1XG063170 for ; Thu, 29 Apr 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNX1hw099092 for ; Thu, 29 Apr 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNX1RF006975; Thu, 29 Apr 2004 16:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNWKRF006954 for ; Thu, 29 Apr 2004 16:32:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNWKhw099086 for ; Thu, 29 Apr 2004 16:32:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNWKgd099800 for ; Thu, 29 Apr 2004 16:32:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNWKEd099799; Thu, 29 Apr 2004 16:32:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292332.i3TNWKEd099799@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:32:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc mfea_node.cc mfea_node.hh mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:32:20 Modified files: xorp/fea/: fea.cc mfea_node.cc mfea_node.hh mfea_vif.cc mfea_vif.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_vif_manager.cc xrl_mfea_vif_manager.hh Log message: * Add reliability to some of the XRL transmission operations: - sending MRIB info * Refactor the startup/shutdown procedure * Fix a recently introduced bug in obtaining the IPv6 MRIB table from the kernel * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:35:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNa1XG063809 for ; Thu, 29 Apr 2004 16:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNa0hw099139 for ; Thu, 29 Apr 2004 16:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNa0RF007078; Thu, 29 Apr 2004 16:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNZiRF007064 for ; Thu, 29 Apr 2004 16:35:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNZihw099134 for ; Thu, 29 Apr 2004 16:35:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNZigd000178 for ; Thu, 29 Apr 2004 16:35:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNZi9b000177; Thu, 29 Apr 2004 16:35:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292335.i3TNZi9b000177@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:35:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc test_mld6igmp.cc xorp_mld6igmp.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:35:44 Modified files: xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc test_mld6igmp.cc xorp_mld6igmp.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: * Add reliability to some of the XRL transmission operations: - MFEA registration, - Start/stop interface protocol operation with the MFEA, - Join/Leave multicast group through the MFEA - Sending membership change information to registered protocols * Refactor the startup/shutdown procedure * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 16:39:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 16:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNe1XG064681 for ; Thu, 29 Apr 2004 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNe1hw099173 for ; Thu, 29 Apr 2004 16:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNe1RF007213; Thu, 29 Apr 2004 16:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3TNdTRF007194 for ; Thu, 29 Apr 2004 16:39:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNdThw099167 for ; Thu, 29 Apr 2004 16:39:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3TNdTgd000521 for ; Thu, 29 Apr 2004 16:39:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3TNdTFu000520; Thu, 29 Apr 2004 16:39:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404292339.i3TNdTFu000520@xorpc.icir.org> Date: Thu, 29 Apr 2004 16:39:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc pim_node.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/29 16:39:29 Modified files: xorp/pim/: pim_node.cc pim_node.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh Log message: * Add reliability to some of the XRL transmission operations: - MFEA, RIB, and MLD/IGMP registration, - Start/stop interface protocol operation with the MFEA, - Join/Leave multicast group through the MFEA. - Add/delete MFC entries to the kernel through the MFEA. - Add/delete dataflow monitors to the kernel through the MFEA. * Added a method to PimNode to specify whether the MRIB information should be received from the MFEA or from the RIB. * Refactor the startup/shutdown procedure * Misc. cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 19:38:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 19:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2d1XG009035 for ; Thu, 29 Apr 2004 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2d0hw001325 for ; Thu, 29 Apr 2004 19:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3U2d0RF011542; Thu, 29 Apr 2004 19:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3U2ckRF011531 for ; Thu, 29 Apr 2004 19:38:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2ckhw001323 for ; Thu, 29 Apr 2004 19:38:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2ckgd031522 for ; Thu, 29 Apr 2004 19:38:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3U2cj0t031521; Thu, 29 Apr 2004 19:38:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404300238.i3U2cj0t031521@xorpc.icir.org> Date: Thu, 29 Apr 2004 19:38:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xorp_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/04/29 19:38:45 Modified files: xorp/mld6igmp/: xorp_mld6igmp.cc Log message: Sync with xorp_static_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Thu Apr 29 19:39:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Apr 2004 19:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2e1XG009225 for ; Thu, 29 Apr 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2e1hw001343 for ; Thu, 29 Apr 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3U2e1RF011573; Thu, 29 Apr 2004 19:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3U2dQRF011554 for ; Thu, 29 Apr 2004 19:39:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2dPhw001335 for ; Thu, 29 Apr 2004 19:39:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3U2dPgd031633 for ; Thu, 29 Apr 2004 19:39:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3U2dP6S031632; Thu, 29 Apr 2004 19:39:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404300239.i3U2dP6S031632@xorpc.icir.org> Date: Thu, 29 Apr 2004 19:39:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ .cvsignore Makefile.am Makefile.in xorp/pim/ xorp_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/29 19:39:25 Modified files: xorp/pim/: .cvsignore Makefile.am Makefile.in Added files: xorp/pim/: xorp_pim.cc Log message: Added xorp_pim _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 10:56:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 10:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UHv1XG085615 for ; Fri, 30 Apr 2004 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UHv1hw012622 for ; Fri, 30 Apr 2004 10:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UHv1RF003063; Fri, 30 Apr 2004 10:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UHuMRF003048 for ; Fri, 30 Apr 2004 10:56:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UHuMhw012620 for ; Fri, 30 Apr 2004 10:56:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UHuMgd027603 for ; Fri, 30 Apr 2004 10:56:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UHuMLd027602; Fri, 30 Apr 2004 10:56:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404301756.i3UHuMLd027602@xorpc.icir.org> Date: Fri, 30 Apr 2004 10:56:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/04/30 10:56:21 Modified files: xorp/libproto/: proto_node.hh Log message: Initialize forgotten variables. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 11:34:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 11:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UIZ1XG093060 for ; Fri, 30 Apr 2004 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UIZ1hw013095 for ; Fri, 30 Apr 2004 11:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UIZ1RF004027; Fri, 30 Apr 2004 11:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UIYcRF004015 for ; Fri, 30 Apr 2004 11:34:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UIYbhw013090 for ; Fri, 30 Apr 2004 11:34:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UIYbgd029434 for ; Fri, 30 Apr 2004 11:34:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UIYbVp029433; Fri, 30 Apr 2004 11:34:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404301834.i3UIYbVp029433@xorpc.icir.org> Date: Fri, 30 Apr 2004 11:34:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/04/30 11:34:37 Modified files: xorp/mld6igmp/: test_mld6igmp.cc Log message: * Bugfix * Don't increase the verbosity of the warning messages (for consistency with other programs). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:06:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN71XG060404 for ; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN71hw016411 for ; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN70RF011194; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN6NRF011179 for ; Fri, 30 Apr 2004 16:06:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN6Nhw016406 for ; Fri, 30 Apr 2004 16:06:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN6Ngd041971 for ; Fri, 30 Apr 2004 16:06:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN6N6D041970; Fri, 30 Apr 2004 16:06:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302306.i3UN6N6D041970@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:06:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:06:23 Modified files: xorp/pim/: xrl_pim_node.cc Log message: Startup and shutdown related bugfixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:07:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN81XG060705 for ; Fri, 30 Apr 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN81hw016427 for ; Fri, 30 Apr 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN80RF011238; Fri, 30 Apr 2004 16:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN7qRF011232 for ; Fri, 30 Apr 2004 16:07:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN7qhw016425 for ; Fri, 30 Apr 2004 16:07:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN7qgd042136 for ; Fri, 30 Apr 2004 16:07:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN7qd7042135; Fri, 30 Apr 2004 16:07:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302307.i3UN7qd7042135@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:07:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:07:52 Modified files: xorp/mld6igmp/: mld6igmp_vif.cc Log message: Bugfix: Don't explicitly leave the multicast groups we have joined on that interface, because this will happen automatically when we stop the vif through the MFEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:07:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN82XG060727 for ; Fri, 30 Apr 2004 16:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN81hw016431 for ; Fri, 30 Apr 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN81RF011250; Fri, 30 Apr 2004 16:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN72RF011200 for ; Fri, 30 Apr 2004 16:07:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN71hw016415 for ; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN71gd042061 for ; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN71DK042060; Fri, 30 Apr 2004 16:07:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302307.i3UN71DK042060@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:07:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xrl_mld6igmp_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:07:01 Modified files: xorp/mld6igmp/: xrl_mld6igmp_node.cc Log message: Startup and shutdown related bugfixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:08:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN91XG060939 for ; Fri, 30 Apr 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN91hw016448 for ; Fri, 30 Apr 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN90RF011285; Fri, 30 Apr 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN8fRF011275 for ; Fri, 30 Apr 2004 16:08:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN8ehw016445 for ; Fri, 30 Apr 2004 16:08:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN8egd042216 for ; Fri, 30 Apr 2004 16:08:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN8ebV042215; Fri, 30 Apr 2004 16:08:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302308.i3UN8ebV042215@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:08:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_vif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:08:40 Modified files: xorp/pim/: pim_vif.cc Log message: Add a comment about no need to expliictly leave the multicast groups that have been joined on an interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:09:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UNA1XG061169 for ; Fri, 30 Apr 2004 16:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UNA1hw016466 for ; Fri, 30 Apr 2004 16:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UNA1RF011312; Fri, 30 Apr 2004 16:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN98RF011296 for ; Fri, 30 Apr 2004 16:09:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN98hw016452 for ; Fri, 30 Apr 2004 16:09:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN98gd042274 for ; Fri, 30 Apr 2004 16:09:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN98eW042273; Fri, 30 Apr 2004 16:09:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302309.i3UN98eW042273@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:09:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:09:08 Modified files: xorp/fea/: mfea_node.cc Log message: Remove duplicated statement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 16:09:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 16:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UNA2XG061194 for ; Fri, 30 Apr 2004 16:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UNA2hw016470 for ; Fri, 30 Apr 2004 16:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UNA2RF011323; Fri, 30 Apr 2004 16:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i3UN9XRF011303 for ; Fri, 30 Apr 2004 16:09:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN9Xhw016458 for ; Fri, 30 Apr 2004 16:09:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3UN9Xgd042334 for ; Fri, 30 Apr 2004 16:09:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3UN9X6N042333; Fri, 30 Apr 2004 16:09:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200404302309.i3UN9X6N042333@xorpc.icir.org> Date: Fri, 30 Apr 2004 16:09:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/04/30 16:09:33 Modified files: xorp/fea/: xrl_mfea_node.cc Log message: Startup and shutdown related bugfixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:32 2005 Subject: No subject Fri Apr 30 17:24:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 17:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i410P1XG079273 for ; Fri, 30 Apr 2004 17:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i410P1hw017207 for ; Fri, 30 Apr 2004 17:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i410P1RF012870; Fri, 30 Apr 2004 17:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i410OIRF012862 for ; Fri, 30 Apr 2004 17:24:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i410OIhw017196 for ; Fri, 30 Apr 2004 17:24:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i410OIgd046889 for ; Fri, 30 Apr 2004 17:24:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i410OIK5046888; Fri, 30 Apr 2004 17:24:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405010024.i410OIK5046888@xorpc.icir.org> Date: Fri, 30 Apr 2004 17:24:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_subnet_route.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/30 17:24:18 Added files: xorp/bgp/: test_subnet_route.cc Log message: Profile SubnetRoutes in RefTries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Fri Apr 30 17:25:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 30 Apr 2004 17:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i410Q1XG079591 for ; Fri, 30 Apr 2004 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i410Q1hw017237 for ; Fri, 30 Apr 2004 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i410Q1RF012921; Fri, 30 Apr 2004 17:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i410P4RF012881 for ; Fri, 30 Apr 2004 17:25:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i410P4hw017212 for ; Fri, 30 Apr 2004 17:25:04 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i410P4gd046999 for ; Fri, 30 Apr 2004 17:25:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i410P4n8046998; Fri, 30 Apr 2004 17:25:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405010025.i410P4n8046998@xorpc.icir.org> Date: Fri, 30 Apr 2004 17:25:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ Makefile.am Makefile.in test_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/04/30 17:25:04 Modified files: xorp/bgp/: Makefile.am Makefile.in test_main.cc Log message: Profile SubnetRoutes in RefTries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Sat May 1 18:52:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 01 May 2004 18:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i421r1XG064915 for ; Sat, 1 May 2004 18:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i421r1hw035515 for ; Sat, 1 May 2004 18:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i421r1RF009795; Sat, 1 May 2004 18:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i421q9RF009786 for ; Sat, 1 May 2004 18:52:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i421q9hw035511 for ; Sat, 1 May 2004 18:52:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i421q9gd047408 for ; Sat, 1 May 2004 18:52:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i421q903047407; Sat, 1 May 2004 18:52:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405020152.i421q903047407@xorpc.icir.org> Date: Sat, 1 May 2004 18:52:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_subnet_route.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/01 18:52:09 Modified files: xorp/bgp/: test_subnet_route.cc Log message: g++34 copy constructor fix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:06:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N71XG023384 for ; Mon, 3 May 2004 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N71hw064269 for ; Mon, 3 May 2004 16:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43N71RF003992; Mon, 3 May 2004 16:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43N6LRF003975 for ; Mon, 3 May 2004 16:06:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N6Lhw064262 for ; Mon, 3 May 2004 16:06:21 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N6Lgd075478 for ; Mon, 3 May 2004 16:06:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43N6LG5075477; Mon, 3 May 2004 16:06:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032306.i43N6LG5075477@xorpc.icir.org> Date: Mon, 3 May 2004 16:06:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_config.hh xrl_config.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:06:21 Added files: xorp/rip/: xrl_config.hh xrl_config.cc Log message: Add methods to access and modify XRL target names of rib and fea globally. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:08:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N91XG023807 for ; Mon, 3 May 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N91hw064291 for ; Mon, 3 May 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43N91RF004061; Mon, 3 May 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43N8ARF004045 for ; Mon, 3 May 2004 16:08:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N8Ahw064281 for ; Mon, 3 May 2004 16:08:10 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N89gd075622 for ; Mon, 3 May 2004 16:08:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43N89bd075621; Mon, 3 May 2004 16:08:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032308.i43N89bd075621@xorpc.icir.org> Date: Mon, 3 May 2004 16:08:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.cc route_db.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:08:09 Modified files: xorp/rip/: xrl_port_manager.cc route_db.cc Log message: Whitespace nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:09:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NA1XG024035 for ; Mon, 3 May 2004 16:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NA1hw064308 for ; Mon, 3 May 2004 16:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NA1RF004096; Mon, 3 May 2004 16:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43N9mRF004087 for ; Mon, 3 May 2004 16:09:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N9mhw064302 for ; Mon, 3 May 2004 16:09:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43N9mgd075690 for ; Mon, 3 May 2004 16:09:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43N9mJH075689; Mon, 3 May 2004 16:09:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032309.i43N9mJH075689@xorpc.icir.org> Date: Mon, 3 May 2004 16:09:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_process_spy.hh xrl_process_spy.cc xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:09:48 Modified files: xorp/rip/: xrl_process_spy.hh xrl_process_spy.cc xrl_port_io.cc Log message: Use methods in xrl_config.hh xrl_config.cc for XRL target names. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:10:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NB1XG024250 for ; Mon, 3 May 2004 16:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NB0hw064344 for ; Mon, 3 May 2004 16:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NB0RF004134; Mon, 3 May 2004 16:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NAqRF004127 for ; Mon, 3 May 2004 16:10:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NAqhw064340 for ; Mon, 3 May 2004 16:10:52 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NAqgd075774 for ; Mon, 3 May 2004 16:10:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NAq92075773; Mon, 3 May 2004 16:10:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032310.i43NAq92075773@xorpc.icir.org> Date: Mon, 3 May 2004 16:10:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ system.hh xorp/rip/ xrl_redist_manager.hh xrl_redist_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:10:52 Modified files: xorp/rip/: system.hh Added files: xorp/rip/: xrl_redist_manager.hh xrl_redist_manager.cc Log message: Move redist container code into xrl_redist_manager.{hh,cc}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:11:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NC1XG024474 for ; Mon, 3 May 2004 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NC1hw064367 for ; Mon, 3 May 2004 16:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NC1RF004170; Mon, 3 May 2004 16:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NBxRF004164 for ; Mon, 3 May 2004 16:11:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NBxhw064363 for ; Mon, 3 May 2004 16:11:59 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NBxgd075855 for ; Mon, 3 May 2004 16:11:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NBxii075854; Mon, 3 May 2004 16:11:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032311.i43NBxii075854@xorpc.icir.org> Date: Mon, 3 May 2004 16:11:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in redist.cc redist.hh xorp_rip_common.hh xrl_rib_notifier.cc xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc ...xrl_target_ripng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:11:59 Modified files: xorp/rip/: Makefile.am Makefile.in redist.cc redist.hh xorp_rip_common.hh xrl_rib_notifier.cc xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh Log message: o Update files to use global XRL target names in xrl_config.{hh,cc}. o Update files to XrlRedistManager in xrl_redist_manager.{hh,cc}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:14:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NF1XG025143 for ; Mon, 3 May 2004 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NF1hw064390 for ; Mon, 3 May 2004 16:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NF1RF004284; Mon, 3 May 2004 16:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NE8RF004242 for ; Mon, 3 May 2004 16:14:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NE8hw064380 for ; Mon, 3 May 2004 16:14:08 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NE8gd075968 for ; Mon, 3 May 2004 16:14:08 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NE8Bf075967; Mon, 3 May 2004 16:14:08 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032314.i43NE8Bf075967@xorpc.icir.org> Date: Mon, 3 May 2004 16:14:08 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist4.xif redist6.xif redist4_xif.hh redist6_xif.hh redist4_xif.cc redist6_xif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:14:08 Modified files: xorp/xrl/interfaces/: redist4.xif redist6.xif redist4_xif.hh redist6_xif.hh redist4_xif.cc redist6_xif.cc Log message: Remove IP version string from redist4 and redist6 interface methods. It's obvious from interface name. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:14:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:15:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NF3XG025158 for ; Mon, 3 May 2004 16:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NF3hw064394 for ; Mon, 3 May 2004 16:15:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NF3RF004303; Mon, 3 May 2004 16:15:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NExRF004278 for ; Mon, 3 May 2004 16:15:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NExhw064385 for ; Mon, 3 May 2004 16:14:59 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NExgd076043 for ; Mon, 3 May 2004 16:14:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NExTV076042; Mon, 3 May 2004 16:14:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032314.i43NExTV076042@xorpc.icir.org> Date: Mon, 3 May 2004 16:14:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:14:59 Modified files: xorp/xrl/interfaces/: rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh Log message: o Remove methods for adding static routes (should now go through route redistribution from rib). o Add methods for requesting start and stop of route redistribution. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:17:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NI1XG025816 for ; Mon, 3 May 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NI1hw064437 for ; Mon, 3 May 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NI0RF004391; Mon, 3 May 2004 16:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NHHRF004366 for ; Mon, 3 May 2004 16:17:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NHHhw064431 for ; Mon, 3 May 2004 16:17:17 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NHHgd076196 for ; Mon, 3 May 2004 16:17:17 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NHHdn076195; Mon, 3 May 2004 16:17:17 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032317.i43NHHdn076195@xorpc.icir.org> Date: Mon, 3 May 2004 16:17:17 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:17:17 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in Log message: Add redist{4,6}.xif as dependency of appropriate targets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:33 2005 Subject: No subject Mon May 3 16:17:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:18:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NI4XG025831 for ; Mon, 3 May 2004 16:18:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NI4hw064442 for ; Mon, 3 May 2004 16:18:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NI3RF004402; Mon, 3 May 2004 16:18:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NHSRF004372 for ; Mon, 3 May 2004 16:17:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NHShw064433 for ; Mon, 3 May 2004 16:17:28 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NHSgd076228 for ; Mon, 3 May 2004 16:17:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NHSdE076227; Mon, 3 May 2004 16:17:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405032317.i43NHSdE076227@xorpc.icir.org> Date: Mon, 3 May 2004 16:17:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ rip.tgt rip.xrls rip_base.cc rip_base.hh ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/05/03 16:17:28 Modified files: xorp/xrl/targets/: rip.tgt rip.xrls rip_base.cc rip_base.hh ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 16:42:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:43:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Nh0XG031198 for ; Mon, 3 May 2004 16:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Nh0hw064702 for ; Mon, 3 May 2004 16:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43Nh0RF004919; Mon, 3 May 2004 16:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NgoRF004909 for ; Mon, 3 May 2004 16:42:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Ngnhw064700 for ; Mon, 3 May 2004 16:42:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Ngngd077761 for ; Mon, 3 May 2004 16:42:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NgnQF077760; Mon, 3 May 2004 16:42:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405032342.i43NgnQF077760@xorpc.icir.org> Date: Mon, 3 May 2004 16:42:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/03 16:42:49 Modified files: xorp/etc/templates/: static_routes.tp Log message: * Reformat with identation of 4 spaces instead of 2. * Uncomment the "disable {}" block. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 16:45:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 16:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Nk1XG031861 for ; Mon, 3 May 2004 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43Nk1hw064741 for ; Mon, 3 May 2004 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43Nk1RF004979; Mon, 3 May 2004 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i43NjCRF004959 for ; Mon, 3 May 2004 16:45:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NjChw064736 for ; Mon, 3 May 2004 16:45:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i43NjCgd077920 for ; Mon, 3 May 2004 16:45:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i43NjCom077919; Mon, 3 May 2004 16:45:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405032345.i43NjCom077919@xorpc.icir.org> Date: Mon, 3 May 2004 16:45:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/03 16:45:12 Modified files: xorp/fea/: fea.cc Log message: * Explicitly enable and start the MFEA * On shutdown wait for the IPv6 MFEA to shutdown as well (if the system has IPv6 multicast). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 17:08:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 17:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i44091XG036784 for ; Mon, 3 May 2004 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44091hw064947 for ; Mon, 3 May 2004 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44090RF005510; Mon, 3 May 2004 17:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4408lRF005501 for ; Mon, 3 May 2004 17:08:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4408khw064942 for ; Mon, 3 May 2004 17:08:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4408kgd079314 for ; Mon, 3 May 2004 17:08:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4408kSh079313; Mon, 3 May 2004 17:08:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405040008.i4408kSh079313@xorpc.icir.org> Date: Mon, 3 May 2004 17:08:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in fea.cc xorp/fea/ fea_dummy.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/03 17:08:46 Modified files: xorp/fea/: Makefile.am Makefile.in fea.cc Removed files: xorp/fea/: fea_dummy.cc Log message: Unify fea.cc and fea_dummy.cc: * Modify fea.cc to use #ifdef FEA_DUMMY for distinguishing between real FEA and dummy FEA * Do not compile the MFEA in FEA dummy mode because the MFEA doesn't support dummy mode (yet). * Add -DFEA_DUMMY compilation flag when compiling xorp_fea_dummy out of fea.cc * Remove fea_dummy.cc, because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 17:11:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 17:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i440C1XG037451 for ; Mon, 3 May 2004 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440C1hw064991 for ; Mon, 3 May 2004 17:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440C0RF005619; Mon, 3 May 2004 17:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440BTRF005608 for ; Mon, 3 May 2004 17:11:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440BThw064989 for ; Mon, 3 May 2004 17:11:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i440BTgd079617 for ; Mon, 3 May 2004 17:11:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i440BTTI079616; Mon, 3 May 2004 17:11:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405040011.i440BTTI079616@xorpc.icir.org> Date: Mon, 3 May 2004 17:11:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ .cvsignore Makefile.am Makefile.in xorp/mld6igmp/ xorp_igmp.cc xorp_mld.cc xorp/mld6igmp/ xorp_mld6igmp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/05/03 17:11:29 Modified files: xorp/mld6igmp/: .cvsignore Makefile.am Makefile.in Added files: xorp/mld6igmp/: xorp_igmp.cc xorp_mld.cc Removed files: xorp/mld6igmp/: xorp_mld6igmp.cc Log message: Split xorp_mld6igmp into xorp_igmp and xorp_mld (for IGMP and MLD respectively). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 17:14:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 17:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i440F1XG038101 for ; Mon, 3 May 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440F1hw065029 for ; Mon, 3 May 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440F1RF005703; Mon, 3 May 2004 17:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440ElRF005695 for ; Mon, 3 May 2004 17:14:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440Elhw065024 for ; Mon, 3 May 2004 17:14:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i440Ekgd079959 for ; Mon, 3 May 2004 17:14:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i440EkRv079958; Mon, 3 May 2004 17:14:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405040014.i440EkRv079958@xorpc.icir.org> Date: Mon, 3 May 2004 17:14:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ .cvsignore Makefile.am Makefile.in pim_node.cc xorp/pim/ xorp_pimsm4.cc xorp_pimsm6.cc xorp/pim/ xorp_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/03 17:14:46 Modified files: xorp/pim/: .cvsignore Makefile.am Makefile.in pim_node.cc Added files: xorp/pim/: xorp_pimsm4.cc xorp_pimsm6.cc Removed files: xorp/pim/: xorp_pim.cc Log message: Split xorp_pim into xorp_pimsm4 and xorp_pimsm6 (for PIM-SM IPv4 and IPv6 respectively). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Mon May 3 17:31:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 03 May 2004 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i440W1XG041781 for ; Mon, 3 May 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440W1hw065188 for ; Mon, 3 May 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440W1RF006028; Mon, 3 May 2004 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i440VRRF006009 for ; Mon, 3 May 2004 17:31:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i440VRhw065185 for ; Mon, 3 May 2004 17:31:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i440VQgd081280 for ; Mon, 3 May 2004 17:31:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i440VQx0081279; Mon, 3 May 2004 17:31:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405040031.i440VQx0081279@xorpc.icir.org> Date: Mon, 3 May 2004 17:31:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/etc/templates/ fib2mrib.tp igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/03 17:31:26 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Added files: xorp/etc/templates/: fib2mrib.tp igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Log message: Add a furst-cut templates for FIB2MRIB, MFEA, MLD, IGMP and PIM-SM _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 9:16:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 09:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i44GH1XG049597 for ; Tue, 4 May 2004 09:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44GH0hw076226 for ; Tue, 4 May 2004 09:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44GH0RF027779; Tue, 4 May 2004 09:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44GGwRF027773 for ; Tue, 4 May 2004 09:16:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44GGwhw076224 for ; Tue, 4 May 2004 09:16:58 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i44GGwgd051045 for ; Tue, 4 May 2004 09:16:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i44GGwpt051044; Tue, 4 May 2004 09:16:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405041616.i44GGwpt051044@xorpc.icir.org> Date: Tue, 4 May 2004 9:16:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ Makefile.am Makefile.in xorp/rip/ xorp_rip_main.cc xorp/rip/ xorp_rip.cc xorp_rip_common.hh xorp_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/04 09:16:58 Modified files: xorp/rip/: Makefile.am Makefile.in Added files: xorp/rip/: xorp_rip_main.cc Removed files: xorp/rip/: xorp_rip.cc xorp_rip_common.hh xorp_ripng.cc Log message: Re-arrange top-level code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 10:08:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 10:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i44H91XG060419 for ; Tue, 4 May 2004 10:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44H91hw076947 for ; Tue, 4 May 2004 10:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44H91RF029158; Tue, 4 May 2004 10:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44H8PRF029141 for ; Tue, 4 May 2004 10:08:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44H8Ohw076941 for ; Tue, 4 May 2004 10:08:24 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i44H8Ogd060488 for ; Tue, 4 May 2004 10:08:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i44H8OuY060487; Tue, 4 May 2004 10:08:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405041708.i44H8OuY060487@xorpc.icir.org> Date: Tue, 4 May 2004 10:08:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/05/04 10:08:24 Modified files: xorp/rip/tools/: xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 11:07:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 11:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i44I81XG072795 for ; Tue, 4 May 2004 11:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44I81hw077862 for ; Tue, 4 May 2004 11:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44I80RF000780; Tue, 4 May 2004 11:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44I73RF000736 for ; Tue, 4 May 2004 11:07:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44I73hw077852 for ; Tue, 4 May 2004 11:07:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i44I73gd062703 for ; Tue, 4 May 2004 11:07:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i44I73hj062702; Tue, 4 May 2004 11:07:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405041807.i44I73hj062702@xorpc.icir.org> Date: Tue, 4 May 2004 11:07:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xorp_mld.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/05/04 11:07:03 Modified files: xorp/mld6igmp/: xorp_mld.cc Log message: Compilation fix for systems without IPv6 support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 11:18:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 11:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i44IJ1XG075163 for ; Tue, 4 May 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44IJ0hw077996 for ; Tue, 4 May 2004 11:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44IJ0RF001127; Tue, 4 May 2004 11:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44IIpRF001117 for ; Tue, 4 May 2004 11:18:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i44IIphw077990 for ; Tue, 4 May 2004 11:18:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i44IIpgd063356 for ; Tue, 4 May 2004 11:18:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i44IIpSc063355; Tue, 4 May 2004 11:18:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405041818.i44IIpSc063355@xorpc.icir.org> Date: Tue, 4 May 2004 11:18:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xorp_pimsm6.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/04 11:18:51 Modified files: xorp/pim/: xorp_pimsm6.cc Log message: Compilation fix for systems without IPv6 support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 22:01:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 22:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45521XG058879 for ; Tue, 4 May 2004 22:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45521hw086376 for ; Tue, 4 May 2004 22:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45521Hx017999; Tue, 4 May 2004 22:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4551wHx017992 for ; Tue, 4 May 2004 22:01:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4551whw086373 for ; Tue, 4 May 2004 22:01:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4551wgd097542 for ; Tue, 4 May 2004 22:01:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4551wYa097541; Tue, 4 May 2004 22:01:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050501.i4551wYa097541@xorpc.icir.org> Date: Tue, 4 May 2004 22:01:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/04 22:01:58 xorp/cli/tools Update of /usr/local/share/doc/apache/cvs/xorp/cli/tools In directory xorpc.icir.org:/tmp/cvs-serv97535/tools Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/cli/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 22:10:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 22:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i455B1XG063153 for ; Tue, 4 May 2004 22:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455B0hw086456 for ; Tue, 4 May 2004 22:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455B0Hx018181; Tue, 4 May 2004 22:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455AOHx018169 for ; Tue, 4 May 2004 22:10:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455AOhw086448 for ; Tue, 4 May 2004 22:10:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i455AOgd098159 for ; Tue, 4 May 2004 22:10:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i455AOZr098158; Tue, 4 May 2004 22:10:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050510.i455AOZr098158@xorpc.icir.org> Date: Tue, 4 May 2004 22:10:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/tools/ .cvsignore Makefile.am Makefile.in send_cli_processor_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/04 22:10:24 Added files: xorp/cli/tools/: .cvsignore Makefile.am Makefile.in send_cli_processor_xrl.cc Log message: Add a first-cut implementation of a program for sending a CLI request to a module that has built-in CLI support. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 22:11:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 22:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i455C1XG063637 for ; Tue, 4 May 2004 22:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455C1hw086470 for ; Tue, 4 May 2004 22:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455C1Hx018218; Tue, 4 May 2004 22:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455B1Hx018190 for ; Tue, 4 May 2004 22:11:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455B1hw086458 for ; Tue, 4 May 2004 22:11:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i455B0gd098254 for ; Tue, 4 May 2004 22:11:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i455B0HU098252; Tue, 4 May 2004 22:11:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050511.i455B0HU098252@xorpc.icir.org> Date: Tue, 4 May 2004 22:11:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/04 22:11:00 Modified files: xorp/cli/: Makefile.am Makefile.in Log message: Added directory "tools". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 22:11:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 22:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i455C2XG063665 for ; Tue, 4 May 2004 22:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455C2hw086472 for ; Tue, 4 May 2004 22:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455C2Hx018229; Tue, 4 May 2004 22:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i455BkHx018204 for ; Tue, 4 May 2004 22:11:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i455Bkhw086466 for ; Tue, 4 May 2004 22:11:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i455Bjgd098362 for ; Tue, 4 May 2004 22:11:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i455Bjwv098361; Tue, 4 May 2004 22:11:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050511.i455Bjwv098361@xorpc.icir.org> Date: Tue, 4 May 2004 22:11:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/05/04 22:11:45 Modified files: ./: configure.in configure Log message: Added "cli/tools/Makefile" to the list of auto-generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 23:21:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 23:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i456M2XG096755 for ; Tue, 4 May 2004 23:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456M2hw087349 for ; Tue, 4 May 2004 23:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456M1Hx019568; Tue, 4 May 2004 23:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456LIHx019555 for ; Tue, 4 May 2004 23:21:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456LIhw087346 for ; Tue, 4 May 2004 23:21:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i456LIgd003495 for ; Tue, 4 May 2004 23:21:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i456LIQ3003494; Tue, 4 May 2004 23:21:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050621.i456LIQ3003494@xorpc.icir.org> Date: Tue, 4 May 2004 23:21:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/04 23:21:18 Modified files: xorp/fea/: fea.cc Log message: Temporary enable the built-in CLI access. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 23:23:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 23:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i456O1XG097797 for ; Tue, 4 May 2004 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456O1hw087378 for ; Tue, 4 May 2004 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456O1Hx019627; Tue, 4 May 2004 23:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456NUHx019612 for ; Tue, 4 May 2004 23:23:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456NUhw087371 for ; Tue, 4 May 2004 23:23:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i456NUgd003676 for ; Tue, 4 May 2004 23:23:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i456NUBu003675; Tue, 4 May 2004 23:23:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050623.i456NUBu003675@xorpc.icir.org> Date: Tue, 4 May 2004 23:23:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xorp_pimsm4.cc xorp_pimsm6.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/04 23:23:30 Modified files: xorp/pim/: xorp_pimsm4.cc xorp_pimsm6.cc Log message: Temporary enable the built-in CLI access. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 23:24:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 23:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i456P1XG098334 for ; Tue, 4 May 2004 23:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456P1hw087399 for ; Tue, 4 May 2004 23:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456P1Hx019664; Tue, 4 May 2004 23:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456OmHx019653 for ; Tue, 4 May 2004 23:24:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456Olhw087392 for ; Tue, 4 May 2004 23:24:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i456Olgd003782 for ; Tue, 4 May 2004 23:24:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i456OlWO003781; Tue, 4 May 2004 23:24:47 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050624.i456OlWO003781@xorpc.icir.org> Date: Tue, 4 May 2004 23:24:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ xorp_igmp.cc xorp_mld.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/05/04 23:24:47 Modified files: xorp/mld6igmp/: xorp_igmp.cc xorp_mld.cc Log message: Temporary enable the built-in CLI access. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 23:38:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 23:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i456d1XG005684 for ; Tue, 4 May 2004 23:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456d0hw087555 for ; Tue, 4 May 2004 23:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456d0Hx020087; Tue, 4 May 2004 23:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456cYHx020076 for ; Tue, 4 May 2004 23:38:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456cXhw087550 for ; Tue, 4 May 2004 23:38:33 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i456cXgd004981 for ; Tue, 4 May 2004 23:38:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i456cX0Y004980; Tue, 4 May 2004 23:38:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405050638.i456cX0Y004980@xorpc.icir.org> Date: Tue, 4 May 2004 23:38:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/05/04 23:38:33 Added files: xorp/libxorp/: timespent.hh Log message: A helper class and macros to instrument time spent in code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Tue May 4 23:56:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 04 May 2004 23:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i456v1XG015488 for ; Tue, 4 May 2004 23:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456v0hw087762 for ; Tue, 4 May 2004 23:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456v0Hx020507; Tue, 4 May 2004 23:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i456uBHx020493 for ; Tue, 4 May 2004 23:56:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i456uBhw087754 for ; Tue, 4 May 2004 23:56:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i456uBgd006526 for ; Tue, 4 May 2004 23:56:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i456uBrV006525; Tue, 4 May 2004 23:56:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050656.i456uBrV006525@xorpc.icir.org> Date: Tue, 4 May 2004 23:56:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_fti.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/04 23:56:11 Modified files: xorp/fea/: xrl_fti.cc Log message: A bugfix. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:34 2005 Subject: No subject Wed May 5 0:11:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 00:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i457C1XG023741 for ; Wed, 5 May 2004 00:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i457C1hw087925 for ; Wed, 5 May 2004 00:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i457C1Hx020839; Wed, 5 May 2004 00:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i457BXHx020821 for ; Wed, 5 May 2004 00:11:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i457BWhw087923 for ; Wed, 5 May 2004 00:11:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i457BWgd007996 for ; Wed, 5 May 2004 00:11:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i457BWLm007995; Wed, 5 May 2004 00:11:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050711.i457BWLm007995@xorpc.icir.org> Date: Wed, 5 May 2004 0:11:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/etc/templates/ igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/05 00:11:32 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Added files: xorp/etc/templates/: igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds Log message: Added a first-cut xorpsh template files for MFEA, MLD/IGMP and PIM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 0:34:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 00:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i457Z1XG036923 for ; Wed, 5 May 2004 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i457Z0hw088104 for ; Wed, 5 May 2004 00:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i457Z0Hx021305; Wed, 5 May 2004 00:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i457YOHx021295 for ; Wed, 5 May 2004 00:34:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i457YNhw088099 for ; Wed, 5 May 2004 00:34:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i457YMgd009865 for ; Wed, 5 May 2004 00:34:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i457YMHu009863; Wed, 5 May 2004 00:34:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405050734.i457YMHu009863@xorpc.icir.org> Date: Wed, 5 May 2004 0:34:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/05/05 00:34:22 Modified files: xorp/fib2mrib/: fib2mrib_node.cc xorp/static_routes/: static_routes_node.cc Log message: Bugfix when deleting routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 9:38:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 09:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Gd1XG075677 for ; Wed, 5 May 2004 09:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Gd1hw095386 for ; Wed, 5 May 2004 09:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Gd0Hx005191; Wed, 5 May 2004 09:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45GcOHx005175 for ; Wed, 5 May 2004 09:38:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45GcOhw095380 for ; Wed, 5 May 2004 09:38:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45GcOgd050561 for ; Wed, 5 May 2004 09:38:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45GcOe9050560; Wed, 5 May 2004 09:38:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405051638.i45GcOe9050560@xorpc.icir.org> Date: Wed, 5 May 2004 9:38:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/05/05 09:38:24 Modified files: xorp/libxorp/: timespent.hh Log message: __BGP_ -> __LIBXORP_ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 11:35:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 11:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ia1XG018706 for ; Wed, 5 May 2004 11:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ia0hw097043 for ; Wed, 5 May 2004 11:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Ia0Hx008695; Wed, 5 May 2004 11:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45IZqHx008683 for ; Wed, 5 May 2004 11:35:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45IZphw097041 for ; Wed, 5 May 2004 11:35:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45IZpgd056591 for ; Wed, 5 May 2004 11:35:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45IZpHe056590; Wed, 5 May 2004 11:35:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405051835.i45IZpHe056590@xorpc.icir.org> Date: Wed, 5 May 2004 11:35:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO plumbing.cc route_table_cache.cc route_table_cache.hh test_cache.cc test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/05 11:35:51 Modified files: xorp/bgp/: TODO plumbing.cc route_table_cache.cc route_table_cache.hh test_cache.cc test_dump.cc Log message: The cache tables keep a copy of all routes that have been modified. Adding our AS number can cause a route to be cached. When a peering is taken down the routes in the cache table need to be removed. There may be 100K+ routes, delete the routes using a timer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 11:37:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 11:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ic1XG019235 for ; Wed, 5 May 2004 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ic1hw097059 for ; Wed, 5 May 2004 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Ic1Hx008763; Wed, 5 May 2004 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Ib2Hx008747 for ; Wed, 5 May 2004 11:37:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ib2hw097057 for ; Wed, 5 May 2004 11:37:02 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ib2gd056701 for ; Wed, 5 May 2004 11:37:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45Ib2oU056700; Wed, 5 May 2004 11:37:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405051837.i45Ib2oU056700@xorpc.icir.org> Date: Wed, 5 May 2004 11:37:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/05 11:37:02 Modified files: xorp/bgp/: peer.cc Log message: Instrument the packet input code to detect path that take too long to execute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 11:46:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 11:47:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Il0XG021770 for ; Wed, 5 May 2004 11:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Il0hw097185 for ; Wed, 5 May 2004 11:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Il0Hx009096; Wed, 5 May 2004 11:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45IkjHx009071 for ; Wed, 5 May 2004 11:46:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ikjhw097181 for ; Wed, 5 May 2004 11:46:45 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Ikjgd057288 for ; Wed, 5 May 2004 11:46:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45Ikjni057287; Wed, 5 May 2004 11:46:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405051846.i45Ikjni057287@xorpc.icir.org> Date: Wed, 5 May 2004 11:46:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/05/05 11:46:44 Modified files: xorp/libxorp/: timespent.hh Log message: TIMESPENT_OVERLIMIT -> 0 not "". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 11:53:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 11:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Is1XG024120 for ; Wed, 5 May 2004 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Is1hw097307 for ; Wed, 5 May 2004 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Is0Hx009299; Wed, 5 May 2004 11:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45IrGHx009265 for ; Wed, 5 May 2004 11:53:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45IrGhw097284 for ; Wed, 5 May 2004 11:53:16 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45IrFgd057652 for ; Wed, 5 May 2004 11:53:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45IrFAT057651; Wed, 5 May 2004 11:53:15 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405051853.i45IrFAT057651@xorpc.icir.org> Date: Wed, 5 May 2004 11:53:15 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/05/05 11:53:15 Modified files: xorp/libxorp/: timespent.hh Log message: Constant name from LIMIT to TIMESPENT_LIMIT less likely to collide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 11:53:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 11:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Is2XG024124 for ; Wed, 5 May 2004 11:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Is1hw097309 for ; Wed, 5 May 2004 11:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45Is1Hx009310; Wed, 5 May 2004 11:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45IriHx009283 for ; Wed, 5 May 2004 11:53:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Irihw097298 for ; Wed, 5 May 2004 11:53:44 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45Irigd057689 for ; Wed, 5 May 2004 11:53:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45IrhYq057688; Wed, 5 May 2004 11:53:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405051853.i45IrhYq057688@xorpc.icir.org> Date: Wed, 5 May 2004 11:53:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/05 11:53:43 Modified files: xorp/bgp/: peer.cc Log message: printf -> XLOG_WARNING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 14:13:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 14:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i45LE1XG061806 for ; Wed, 5 May 2004 14:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45LE1hw099078 for ; Wed, 5 May 2004 14:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45LE1Hx012865; Wed, 5 May 2004 14:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i45LDTHx012853 for ; Wed, 5 May 2004 14:13:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i45LDThw099074 for ; Wed, 5 May 2004 14:13:29 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i45LDSgd063223 for ; Wed, 5 May 2004 14:13:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i45LDSgL063222; Wed, 5 May 2004 14:13:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405052113.i45LDSgL063222@xorpc.icir.org> Date: Wed, 5 May 2004 14:13:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/05 14:13:28 Modified files: xorp/bgp/: peer.cc Log message: Correct XLOG_WARNING message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 17:25:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 17:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Q1XG045180 for ; Wed, 5 May 2004 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Q1hw002573 for ; Wed, 5 May 2004 17:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i460Q0Hx017724; Wed, 5 May 2004 17:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i460PvHx017717 for ; Wed, 5 May 2004 17:25:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Pvhw002571 for ; Wed, 5 May 2004 17:25:57 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Pugd072531 for ; Wed, 5 May 2004 17:25:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i460Pulp072530; Wed, 5 May 2004 17:25:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405060025.i460Pulp072530@xorpc.icir.org> Date: Wed, 5 May 2004 17:25:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in route.hh xorp/rib/ route.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/05 17:25:56 Modified files: xorp/rib/: Makefile.am Makefile.in route.hh Removed files: xorp/rib/: route.cc Log message: o Remove unused RouteEntry::global_metric from route.hh. o Aggressively inline accessors and modifiers in route.hh. o Remove no longer needed route.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Wed May 5 17:29:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 May 2004 17:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i460U1XG046903 for ; Wed, 5 May 2004 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i460U1hw002606 for ; Wed, 5 May 2004 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i460U0Hx017822; Wed, 5 May 2004 17:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i460TuHx017816 for ; Wed, 5 May 2004 17:29:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Tuhw002601 for ; Wed, 5 May 2004 17:29:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i460Ttgd073008 for ; Wed, 5 May 2004 17:29:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i460TtHO073007; Wed, 5 May 2004 17:29:55 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405060029.i460TtHO073007@xorpc.icir.org> Date: Wed, 5 May 2004 17:29:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc route_table_cache.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/05 17:29:55 Modified files: xorp/bgp/: route_table_cache.cc route_table_cache.hh Log message: Sprinkle "typename" for gcc 3.4. Remove redundant reference to current. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 6:45:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 06:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Dk1XG017833 for ; Thu, 6 May 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Dk1hw011015 for ; Thu, 6 May 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46Dk0Hx005044; Thu, 6 May 2004 06:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46DjjHx005037 for ; Thu, 6 May 2004 06:45:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Djihw011009 for ; Thu, 6 May 2004 06:45:44 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Djigd035407 for ; Thu, 6 May 2004 06:45:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46DjiGm035406; Thu, 6 May 2004 06:45:44 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405061345.i46DjiGm035406@xorpc.icir.org> Date: Thu, 6 May 2004 6:45:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/06 06:45:44 Modified files: xorp/bgp/: subnet_route.hh Log message: Add kdoc comments _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 10:27:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 10:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46HS1XG059681 for ; Thu, 6 May 2004 10:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46HS1hw015083 for ; Thu, 6 May 2004 10:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46HS0Hx010354; Thu, 6 May 2004 10:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46HR3Hx010322 for ; Thu, 6 May 2004 10:27:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46HR3hw015073 for ; Thu, 6 May 2004 10:27:03 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46HR3gd050518 for ; Thu, 6 May 2004 10:27:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46HR300050517; Thu, 6 May 2004 10:27:03 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405061727.i46HR300050517@xorpc.icir.org> Date: Thu, 6 May 2004 10:27:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/06 10:27:03 Modified files: xorp/bgp/: test_dump.cc Log message: Add test that demonstrates broken DumpTable behaviour found by Atanu. Test is currently ifdef'ed out to avoid breaking tinderbox. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 10:42:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 10:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hh1XG063120 for ; Thu, 6 May 2004 10:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hh1hw015297 for ; Thu, 6 May 2004 10:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46Hh1Hx010830; Thu, 6 May 2004 10:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46HgvHx010821 for ; Thu, 6 May 2004 10:42:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hgvhw015295 for ; Thu, 6 May 2004 10:42:57 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hgvgd051451 for ; Thu, 6 May 2004 10:42:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46HgvBD051450; Thu, 6 May 2004 10:42:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405061742.i46HgvBD051450@xorpc.icir.org> Date: Thu, 6 May 2004 10:42:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh xorp/rip/ xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/06 10:42:57 Modified files: xorp/xrl/interfaces/: redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh xorp/rip/: xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh Log message: Expand information included in redist interface add_route method to include interface, virtual interface, and administrative distance. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 10:59:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 11:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I01XG066897 for ; Thu, 6 May 2004 11:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I00hw015488 for ; Thu, 6 May 2004 11:00:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46I00Hx011437; Thu, 6 May 2004 11:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46HxsHx011431 for ; Thu, 6 May 2004 10:59:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hxrhw015479 for ; Thu, 6 May 2004 10:59:53 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Hxrgd052634 for ; Thu, 6 May 2004 10:59:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46Hxr46052633; Thu, 6 May 2004 10:59:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405061759.i46Hxr46052633@xorpc.icir.org> Date: Thu, 6 May 2004 10:59:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in xorp/rib/ redist_xrl.hh redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 10:59:53 Modified files: xorp/rib/: Makefile.am Makefile.in Added files: xorp/rib/: redist_xrl.hh redist_xrl.cc Log message: Add output for Redistributor objects to send updates via redist4 and redist6 XRL interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 11:00:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 11:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I11XG067144 for ; Thu, 6 May 2004 11:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I10hw015533 for ; Thu, 6 May 2004 11:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i44LRAI0011482; Thu, 6 May 2004 11:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46I0AHx011450 for ; Thu, 6 May 2004 11:00:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I09hw015510 for ; Thu, 6 May 2004 11:00:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I09gd052714 for ; Thu, 6 May 2004 11:00:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46I09gs052713; Thu, 6 May 2004 11:00:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405061800.i46I09gs052713@xorpc.icir.org> Date: Thu, 6 May 2004 11:00:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/05/06 11:00:09 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Added timespent.hh to the list of source files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 11:01:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 11:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I21XG067371 for ; Thu, 6 May 2004 11:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I21hw015554 for ; Thu, 6 May 2004 11:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46I21Hx011524; Thu, 6 May 2004 11:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46I1QHx011499 for ; Thu, 6 May 2004 11:01:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I1Qhw015550 for ; Thu, 6 May 2004 11:01:26 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46I1Pgd052839 for ; Thu, 6 May 2004 11:01:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46I1PCm052838; Thu, 6 May 2004 11:01:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405061801.i46I1PCm052838@xorpc.icir.org> Date: Thu, 6 May 2004 11:01:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 11:01:25 Modified files: xorp/rib/: TODO Log message: Knock redist off to do list. Note that export table functionality can be achieved with redistribution code with a custom output that speaks the FTI transaction based add and delete updates. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 12:32:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 12:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JX1XG090282 for ; Thu, 6 May 2004 12:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JX1hw016736 for ; Thu, 6 May 2004 12:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46JX1Hx014366; Thu, 6 May 2004 12:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46JW5Hx014338 for ; Thu, 6 May 2004 12:32:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JW4hw016718 for ; Thu, 6 May 2004 12:32:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JW4gd057770 for ; Thu, 6 May 2004 12:32:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46JW4gb057769; Thu, 6 May 2004 12:32:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405061932.i46JW4gb057769@xorpc.icir.org> Date: Thu, 6 May 2004 12:32:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc static_routes_node.hh xrl_static_routes_node.cc xrl_static_routes_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/05/06 12:32:04 Modified files: xorp/static_routes/: static_routes_node.cc static_routes_node.hh xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: Add StaticRoutesNode as a service observer for the IfMgrXrlMirror to improve its status update mechanism. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:35 2005 Subject: No subject Thu May 6 12:32:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 12:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JX2XG090301 for ; Thu, 6 May 2004 12:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JX2hw016742 for ; Thu, 6 May 2004 12:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46JX2Hx014377; Thu, 6 May 2004 12:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46JWOHx014348 for ; Thu, 6 May 2004 12:32:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JWOhw016726 for ; Thu, 6 May 2004 12:32:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46JWOgd057825 for ; Thu, 6 May 2004 12:32:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46JWODS057824; Thu, 6 May 2004 12:32:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405061932.i46JWODS057824@xorpc.icir.org> Date: Thu, 6 May 2004 12:32:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc fib2mrib_node.hh xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/05/06 12:32:24 Modified files: xorp/fib2mrib/: fib2mrib_node.cc fib2mrib_node.hh xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: Add Fib2mribNode as a service observer for the IfMgrXrlMirror to improve its status update mechanism. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:05:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46K61XG000842 for ; Thu, 6 May 2004 13:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46K61hw017193 for ; Thu, 6 May 2004 13:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46K61Hx015175; Thu, 6 May 2004 13:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46K5BHx015164 for ; Thu, 6 May 2004 13:05:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46K5Ahw017185 for ; Thu, 6 May 2004 13:05:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46K5Agd059421 for ; Thu, 6 May 2004 13:05:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46K5AIO059420; Thu, 6 May 2004 13:05:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062005.i46K5AIO059420@xorpc.icir.org> Date: Thu, 6 May 2004 13:05:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:05:10 Modified files: xorp/fea/: Makefile.am Makefile.in Log message: * Update the list of libfeaclient libraries * Set the list of the libraries to link fea_dummy against to be same as the list of the fea libraries * Remove xrl_mfea_vif_manager.hh and xrl_mfea_vif_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:14:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KF1XG002446 for ; Thu, 6 May 2004 13:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KF1hw017308 for ; Thu, 6 May 2004 13:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KF0Hx015437; Thu, 6 May 2004 13:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KEUHx015421 for ; Thu, 6 May 2004 13:14:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KEUhw017299 for ; Thu, 6 May 2004 13:14:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KEUgd059887 for ; Thu, 6 May 2004 13:14:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KEUFF059886; Thu, 6 May 2004 13:14:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062014.i46KEUFF059886@xorpc.icir.org> Date: Thu, 6 May 2004 13:14:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc mfea_node.hh mfea_node.cc test_mfea.cc xrl_mfea_node.hh xrl_mfea_node.cc xorp/fea/ xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:14:30 Modified files: xorp/fea/: fea.cc mfea_node.hh mfea_node.cc test_mfea.cc xrl_mfea_node.hh xrl_mfea_node.cc Removed files: xorp/fea/: xrl_mfea_vif_manager.hh xrl_mfea_vif_manager.cc Log message: * Remove the old mechanism used by the MFEA for obtaining the set of interfaces from the FEA, and use the new libfeaclient mechanism. * Refactor the mechanism for setting the node status. * Add a hack to update the node status as a work-around for a race condition within the rtrmgr whenever the set of interfaces is configured on startup. * Modify MfeaNode::start_all_vifs() to start only those vifs that are enabled. * Modification to MfeaNode::get_mrib_table(): If the interface toward a a next-hop for a MRIB entry (obtained directly from the kernel by the MFEA) cannot be found, then use debug_msg() instead of XLOG_WARNING(). The reason is because if an interface is not enabled (e.g., the loopback interface), then get_mrib_table() will periodically print a warning message for the 127.0.0.1/32 routing entry. * Add "fea_target" string with the FEA target name as an argument to XrlMfeaNode constructor. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:18:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KJ1XG003159 for ; Thu, 6 May 2004 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KJ1hw017371 for ; Thu, 6 May 2004 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KJ0Hx015548; Thu, 6 May 2004 13:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KIWHx015533 for ; Thu, 6 May 2004 13:18:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KIWhw017369 for ; Thu, 6 May 2004 13:18:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KIWgd060119 for ; Thu, 6 May 2004 13:18:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KIWdC060118; Thu, 6 May 2004 13:18:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062018.i46KIWdC060118@xorpc.icir.org> Date: Thu, 6 May 2004 13:18:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in mfea.tgt mfea.xrls mfea_base.cc mfea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:18:32 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in mfea.tgt mfea.xrls mfea_base.cc mfea_base.hh Log message: Remove fea_ifmgr_client/0.1 XRL from the MFEA target. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:19:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KK1XG003352 for ; Thu, 6 May 2004 13:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KK1hw017391 for ; Thu, 6 May 2004 13:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KK1Hx015577; Thu, 6 May 2004 13:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KJcHx015568 for ; Thu, 6 May 2004 13:19:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KJbhw017379 for ; Thu, 6 May 2004 13:19:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KJbgd060195 for ; Thu, 6 May 2004 13:19:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KJbDL060194; Thu, 6 May 2004 13:19:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062019.i46KJbDL060194@xorpc.icir.org> Date: Thu, 6 May 2004 13:19:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ configure_mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:19:37 Modified files: xorp/fea/: configure_mfea Log message: Add configuration statements to explicitly configure the FEA interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:20:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KL1XG003556 for ; Thu, 6 May 2004 13:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KL1hw017416 for ; Thu, 6 May 2004 13:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KL1Hx015614; Thu, 6 May 2004 13:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KKbHx015607 for ; Thu, 6 May 2004 13:20:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KKbhw017414 for ; Thu, 6 May 2004 13:20:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KKbgd060296 for ; Thu, 6 May 2004 13:20:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KKbu7060295; Thu, 6 May 2004 13:20:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062020.i46KKbu7060295@xorpc.icir.org> Date: Thu, 6 May 2004 13:20:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:20:37 Modified files: xorp/mld6igmp/: Makefile.am Makefile.in Log message: Update the list of libfeaclient libraries _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:21:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:22:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KM0XG003735 for ; Thu, 6 May 2004 13:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KM0hw017435 for ; Thu, 6 May 2004 13:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KM0Hx015670; Thu, 6 May 2004 13:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KL8Hx015632 for ; Thu, 6 May 2004 13:21:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KL8hw017420 for ; Thu, 6 May 2004 13:21:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KL8gd060333 for ; Thu, 6 May 2004 13:21:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KL8ZP060332; Thu, 6 May 2004 13:21:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062021.i46KL8ZP060332@xorpc.icir.org> Date: Thu, 6 May 2004 13:21:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:21:08 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: * Update the list of libfeaclient libraries * Minor formatting nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:22:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KN1XG003922 for ; Thu, 6 May 2004 13:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KN1hw017452 for ; Thu, 6 May 2004 13:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KN0Hx015711; Thu, 6 May 2004 13:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KM8Hx015681 for ; Thu, 6 May 2004 13:22:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KM8hw017439 for ; Thu, 6 May 2004 13:22:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KM8gd060397 for ; Thu, 6 May 2004 13:22:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KM8ix060396; Thu, 6 May 2004 13:22:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062022.i46KM8ix060396@xorpc.icir.org> Date: Thu, 6 May 2004 13:22:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:22:08 Modified files: xorp/mld6igmp/: mld6igmp_node.cc xorp/pim/: pim_node.cc Log message: Modify start_all_vifs() to start only those vifs that are enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:22:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KN2XG003937 for ; Thu, 6 May 2004 13:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KN2hw017454 for ; Thu, 6 May 2004 13:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KN1Hx015725; Thu, 6 May 2004 13:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KMqHx015702 for ; Thu, 6 May 2004 13:22:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KMqhw017448 for ; Thu, 6 May 2004 13:22:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KMqgd060463 for ; Thu, 6 May 2004 13:22:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KMqC4060462; Thu, 6 May 2004 13:22:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062022.i46KMqC4060462@xorpc.icir.org> Date: Thu, 6 May 2004 13:22:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ test_mld6igmp.cc xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:22:52 Modified files: xorp/mld6igmp/: test_mld6igmp.cc xorp/pim/: test_pim.cc Log message: Update the FEA and MFEA related setup. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 13:23:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 13:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KO1XG004147 for ; Thu, 6 May 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KO1hw017484 for ; Thu, 6 May 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KO1Hx015778; Thu, 6 May 2004 13:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46KNSHx015757 for ; Thu, 6 May 2004 13:23:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KNRhw017473 for ; Thu, 6 May 2004 13:23:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46KNRgd060539 for ; Thu, 6 May 2004 13:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46KNRpH060538; Thu, 6 May 2004 13:23:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062023.i46KNRpH060538@xorpc.icir.org> Date: Thu, 6 May 2004 13:23:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ configure_mld6igmp xorp/pim/ configure_pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/06 13:23:27 Modified files: xorp/mld6igmp/: configure_mld6igmp xorp/pim/: configure_pim Log message: Add configuration statements to explicitly configure the FEA interfaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 14:48:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 14:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Ln1XG025182 for ; Thu, 6 May 2004 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Ln1hw018791 for ; Thu, 6 May 2004 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46Ln1Hx018185; Thu, 6 May 2004 14:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46LmcHx018173 for ; Thu, 6 May 2004 14:48:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Lmchw018785 for ; Thu, 6 May 2004 14:48:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Lmcgd074721 for ; Thu, 6 May 2004 14:48:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46Lmca3074720; Thu, 6 May 2004 14:48:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405062148.i46Lmca3074720@xorpc.icir.org> Date: Thu, 6 May 2004 14:48:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/06 14:48:38 Modified files: xorp/fea/: mfea_node.cc Log message: If there are no modules interested in the MRIB, then don't get (periodically) the MRIB table from the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:03:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N41XG052792 for ; Thu, 6 May 2004 16:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N41hw019923 for ; Thu, 6 May 2004 16:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N40Hx020154; Thu, 6 May 2004 16:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N3RHx020071 for ; Thu, 6 May 2004 16:03:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N3Fhw019910 for ; Thu, 6 May 2004 16:03:15 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N3Fgd077899 for ; Thu, 6 May 2004 16:03:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N3Fwm077898; Thu, 6 May 2004 16:03:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062303.i46N3Fwm077898@xorpc.icir.org> Date: Thu, 6 May 2004 16:03:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:03:15 Modified files: xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Require same cookie as provided on redist_enable for redist_disable. Minor name changes in redist calls and comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:03:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N42XG052819 for ; Thu, 6 May 2004 16:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N42hw019927 for ; Thu, 6 May 2004 16:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N42Hx020165; Thu, 6 May 2004 16:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N3sHx020120 for ; Thu, 6 May 2004 16:03:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N3shw019920 for ; Thu, 6 May 2004 16:03:54 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N3sgd077956 for ; Thu, 6 May 2004 16:03:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N3sKC077955; Thu, 6 May 2004 16:03:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062303.i46N3sKC077955@xorpc.icir.org> Date: Thu, 6 May 2004 16:03:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_redist_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:03:54 Modified files: xorp/rip/: xrl_redist_manager.cc Log message: Sync with rib redist_disable XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:05:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N61XG053314 for ; Thu, 6 May 2004 16:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N61hw019971 for ; Thu, 6 May 2004 16:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N61Hx020251; Thu, 6 May 2004 16:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N5PHx020233 for ; Thu, 6 May 2004 16:05:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N5Ohw019966 for ; Thu, 6 May 2004 16:05:24 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N5Ogd078087 for ; Thu, 6 May 2004 16:05:24 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N5Oog078086; Thu, 6 May 2004 16:05:24 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062305.i46N5Oog078086@xorpc.icir.org> Date: Thu, 6 May 2004 16:05:24 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ parser_direct_cmds.hh parser_xrl_cmds.hh test_rib_direct.cc test_rib_xrls.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:05:24 Modified files: xorp/rib/: parser_direct_cmds.hh parser_xrl_cmds.hh test_rib_direct.cc test_rib_xrls.cc Log message: Remove redist related commands. They don't make much sense in the context of current redist code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:06:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:07:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N70XG053527 for ; Thu, 6 May 2004 16:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N70hw019986 for ; Thu, 6 May 2004 16:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N70Hx020274; Thu, 6 May 2004 16:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N64Hx020262 for ; Thu, 6 May 2004 16:06:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N63hw019975 for ; Thu, 6 May 2004 16:06:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N63gd078129 for ; Thu, 6 May 2004 16:06:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N63Lx078128; Thu, 6 May 2004 16:06:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062306.i46N63Lx078128@xorpc.icir.org> Date: Thu, 6 May 2004 16:06:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.hh rib_manager.cc dummy_rib_manager.hh dummy_rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:06:03 Modified files: xorp/rib/: rib_manager.hh rib_manager.cc dummy_rib_manager.hh dummy_rib_manager.cc Log message: Add methods for add and deleting route redistributions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:07:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N81XG053790 for ; Thu, 6 May 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N81hw020004 for ; Thu, 6 May 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N80Hx020321; Thu, 6 May 2004 16:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N73Hx020285 for ; Thu, 6 May 2004 16:07:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N73hw019990 for ; Thu, 6 May 2004 16:07:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N73gd078230 for ; Thu, 6 May 2004 16:07:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N73FV078228; Thu, 6 May 2004 16:07:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062307.i46N73FV078228@xorpc.icir.org> Date: Thu, 6 May 2004 16:07:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.hh rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:07:03 Modified files: xorp/rib/: rib.hh rib.cc Log message: Remove add and delete redistribution methods from rib class - now handled by RibManager. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:07:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N81XG053805 for ; Thu, 6 May 2004 16:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N81hw020006 for ; Thu, 6 May 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N81Hx020332; Thu, 6 May 2004 16:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N7mHx020310 for ; Thu, 6 May 2004 16:07:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N7mhw020002 for ; Thu, 6 May 2004 16:07:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N7mgd078308 for ; Thu, 6 May 2004 16:07:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N7mea078307; Thu, 6 May 2004 16:07:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062307.i46N7mea078307@xorpc.icir.org> Date: Thu, 6 May 2004 16:07:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.hh xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:07:48 Modified files: xorp/rib/: xrl_target.hh xrl_target.cc Log message: Sync interface with RIB xrls. Use RibManager to add and delete route redistributions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:08:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N91XG054037 for ; Thu, 6 May 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N91hw020022 for ; Thu, 6 May 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N91Hx020370; Thu, 6 May 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N8WHx020350 for ; Thu, 6 May 2004 16:08:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N8Whw020016 for ; Thu, 6 May 2004 16:08:32 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N8Wgd078403 for ; Thu, 6 May 2004 16:08:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N8WkD078402; Thu, 6 May 2004 16:08:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062308.i46N8WkD078402@xorpc.icir.org> Date: Thu, 6 May 2004 16:08:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:08:32 Modified files: xorp/rib/: Makefile.am Makefile.in Log message: Add xrl/interfaces/libredist{4,6}xif.a to linkage elements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:09:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:10:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NA0XG054273 for ; Thu, 6 May 2004 16:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NA0hw020039 for ; Thu, 6 May 2004 16:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46NA0Hx020415; Thu, 6 May 2004 16:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46N9lHx020404 for ; Thu, 6 May 2004 16:09:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N9lhw020029 for ; Thu, 6 May 2004 16:09:47 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46N9lgd078458 for ; Thu, 6 May 2004 16:09:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46N9lFR078457; Thu, 6 May 2004 16:09:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062309.i46N9lFR078457@xorpc.icir.org> Date: Thu, 6 May 2004 16:09:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/pim/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:09:47 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Update linkage for test_pim (it depends on pieces of the rib that have recently been updated). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:36 2005 Subject: No subject Thu May 6 16:10:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NB1XG054534 for ; Thu, 6 May 2004 16:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NB1hw020068 for ; Thu, 6 May 2004 16:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46NB0Hx020487; Thu, 6 May 2004 16:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46NAxHx020481 for ; Thu, 6 May 2004 16:10:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NAxhw020066 for ; Thu, 6 May 2004 16:10:59 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NAwgd078559 for ; Thu, 6 May 2004 16:10:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46NAw6t078558; Thu, 6 May 2004 16:10:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062310.i46NAw6t078558@xorpc.icir.org> Date: Thu, 6 May 2004 16:10:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:10:58 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: Add "import" configuration statement for setting up route redistribution into rip and ripng. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 16:40:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 16:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Nf1XG061202 for ; Thu, 6 May 2004 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46Nf1hw020560 for ; Thu, 6 May 2004 16:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46Nf1Hx021360; Thu, 6 May 2004 16:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i46NeTHx021343 for ; Thu, 6 May 2004 16:40:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NeThw020558 for ; Thu, 6 May 2004 16:40:29 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i46NeTgd079953 for ; Thu, 6 May 2004 16:40:29 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i46NeT4t079952; Thu, 6 May 2004 16:40:29 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405062340.i46NeT4t079952@xorpc.icir.org> Date: Thu, 6 May 2004 16:40:29 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ next_hop_resolver.cc next_hop_resolver.hh process_watch.cc process_watch.hh rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: hodson@xorpc.icir.org. 04/05/06 16:40:29 Modified files: xorp/bgp/: next_hop_resolver.cc next_hop_resolver.hh process_watch.cc process_watch.hh rib_ipc_handler.cc rib_ipc_handler.hh Log message: Move xrl interface includes from headers to implementation files. Noticed changing RIB xrl interface resulted in rebuilding most of the objects in bgp. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 18:08:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 18:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47191XG099166 for ; Thu, 6 May 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47191hw021756 for ; Thu, 6 May 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47190Hx023454; Thu, 6 May 2004 18:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4718rHx023444 for ; Thu, 6 May 2004 18:08:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4718rhw021750 for ; Thu, 6 May 2004 18:08:53 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4718rgd020804 for ; Thu, 6 May 2004 18:08:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4718q2W020803; Thu, 6 May 2004 18:08:52 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405070108.i4718q2W020803@xorpc.icir.org> Date: Thu, 6 May 2004 18:08:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ aspath.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/06 18:08:52 Modified files: xorp/bgp/: aspath.cc Log message: The assert for AS types missed the AS_NONE case. Triggered when trying to print a static route. Also changed assert -> XLOG_ASSERT. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 18:59:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 19:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47201XG010448 for ; Thu, 6 May 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47201hw022232 for ; Thu, 6 May 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47201Hx024533; Thu, 6 May 2004 19:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i471xmHx024517 for ; Thu, 6 May 2004 18:59:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i471xmhw022219 for ; Thu, 6 May 2004 18:59:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i471xmgd025900 for ; Thu, 6 May 2004 18:59:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i471xmeq025899; Thu, 6 May 2004 18:59:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405070159.i471xmeq025899@xorpc.icir.org> Date: Thu, 6 May 2004 18:59:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/05/06 18:59:48 Modified files: xorp/static_routes/: xrl_static_routes_node.cc Log message: * If a registration XRL failed because the other side rejected it, then this is a fatal error. * If a route change failed because the other side rejected it, then send the next route change. * If a route change XRL returns a communication error, then restart the timer to try again only if that timer was not running already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 19:01:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 19:02:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47220XG010874 for ; Thu, 6 May 2004 19:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47220hw022277 for ; Thu, 6 May 2004 19:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47220Hx024594; Thu, 6 May 2004 19:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4721hHx024578 for ; Thu, 6 May 2004 19:01:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4721ghw022267 for ; Thu, 6 May 2004 19:01:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4721ggd026082 for ; Thu, 6 May 2004 19:01:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4721gFH026081; Thu, 6 May 2004 19:01:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405070201.i4721gFH026081@xorpc.icir.org> Date: Thu, 6 May 2004 19:01:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ xrl_fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/05/06 19:01:42 Modified files: xorp/fib2mrib/: xrl_fib2mrib_node.cc Log message: * If a registration XRL failed because the other side rejected it, then this is a fatal error. * If a route change failed because the other side rejected it, then send the next route change. * If a route change XRL returns a communication error, then restart the timer to try again only if that timer was not running already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 19:01:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 19:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47221XG010892 for ; Thu, 6 May 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47221hw022281 for ; Thu, 6 May 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47221Hx024605; Thu, 6 May 2004 19:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4721rHx024586 for ; Thu, 6 May 2004 19:01:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4721rhw022275 for ; Thu, 6 May 2004 19:01:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4721rgd026131 for ; Thu, 6 May 2004 19:01:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4721rPK026130; Thu, 6 May 2004 19:01:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405070201.i4721rPK026130@xorpc.icir.org> Date: Thu, 6 May 2004 19:01:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/05/06 19:01:52 Modified files: xorp/static_routes/: xrl_static_routes_node.cc Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 19:06:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 19:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47271XG011982 for ; Thu, 6 May 2004 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47270hw022341 for ; Thu, 6 May 2004 19:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47270Hx024719; Thu, 6 May 2004 19:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4726HHx024696 for ; Thu, 6 May 2004 19:06:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4726Ghw022335 for ; Thu, 6 May 2004 19:06:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4726Ggd026499 for ; Thu, 6 May 2004 19:06:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4726GD3026498; Thu, 6 May 2004 19:06:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405070206.i4726GD3026498@xorpc.icir.org> Date: Thu, 6 May 2004 19:06:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_fti.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/06 19:06:16 Modified files: xorp/fea/: xrl_fti.cc Log message: * Bugfix in scheduling the sending of the routes to the FIB clients * If a FIB client rejected a route change, then print an error message and continue with the next route change in the queue. * If a route change XRL returns a communication error, then restart the timer to try again only if that timer was not running already. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 19:52:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 19:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i472r1XG022118 for ; Thu, 6 May 2004 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i472r1hw022789 for ; Thu, 6 May 2004 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i472r0Hx025742; Thu, 6 May 2004 19:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i472qJHx025733 for ; Thu, 6 May 2004 19:52:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i472qIhw022778 for ; Thu, 6 May 2004 19:52:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i472qIgd030582 for ; Thu, 6 May 2004 19:52:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i472qIDj030581; Thu, 6 May 2004 19:52:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405070252.i472qIDj030581@xorpc.icir.org> Date: Thu, 6 May 2004 19:52:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/05/06 19:52:18 Modified files: xorp/fib2mrib/: fib2mrib_node.cc fib2mrib_node.hh Log message: * Reimplement the fib2mrib routes storage to use a multimap instead of a linked list. The new implemenation makes a huge performace difference for full-feed forwarding table. * Refine the replace_route() implementation to select more carefully the particular route to replace. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 20:03:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 20:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47340XG024520 for ; Thu, 6 May 2004 20:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47340hw022892 for ; Thu, 6 May 2004 20:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47340Hx025964; Thu, 6 May 2004 20:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4733dHx025949 for ; Thu, 6 May 2004 20:03:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4733dhw022890 for ; Thu, 6 May 2004 20:03:39 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4733cgd031432 for ; Thu, 6 May 2004 20:03:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4733cue031431; Thu, 6 May 2004 20:03:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405070303.i4733cue031431@xorpc.icir.org> Date: Thu, 6 May 2004 20:03:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/06 20:03:38 Modified files: xorp/bgp/: bgp_trie.cc Log message: It is now fatal if the destructor is called and routes are present. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 20:09:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 20:10:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i473A0XG025875 for ; Thu, 6 May 2004 20:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i473A0hw022959 for ; Thu, 6 May 2004 20:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i473A0Hx026070; Thu, 6 May 2004 20:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4739CHx026048 for ; Thu, 6 May 2004 20:09:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4739Chw022949 for ; Thu, 6 May 2004 20:09:12 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4739Cgd032048 for ; Thu, 6 May 2004 20:09:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4739CuU032047; Thu, 6 May 2004 20:09:12 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405070309.i4739CuU032047@xorpc.icir.org> Date: Thu, 6 May 2004 20:09:12 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/06 20:09:12 Modified files: xorp/bgp/: plumbing.cc plumbing.hh Log message: Add a flush method to remove routes from the RIB_IN. Will only operate on static routes in the rib_ipc_handler. Calls on other RIB_INs will cause an assert. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 20:09:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i473A1XG025896 for ; Thu, 6 May 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i473A1hw022963 for ; Thu, 6 May 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i473A1Hx026081; Thu, 6 May 2004 20:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4739jHx026060 for ; Thu, 6 May 2004 20:09:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4739jhw022954 for ; Thu, 6 May 2004 20:09:45 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4739jgd032090 for ; Thu, 6 May 2004 20:09:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4739jaU032089; Thu, 6 May 2004 20:09:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405070309.i4739jaU032089@xorpc.icir.org> Date: Thu, 6 May 2004 20:09:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc route_table_ribin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/06 20:09:45 Modified files: xorp/bgp/: route_table_ribin.cc route_table_ribin.hh Log message: Add a flush method to remove routes from the RIB_IN. Will only operate on static routes in the rib_ipc_handler. Calls on other RIB_INs will cause an assert. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Thu May 6 20:12:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 May 2004 20:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i473D1XG026883 for ; Thu, 6 May 2004 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i473D1hw023014 for ; Thu, 6 May 2004 20:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i473D0Hx026160; Thu, 6 May 2004 20:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i473ClHx026152 for ; Thu, 6 May 2004 20:12:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i473Clhw023012 for ; Thu, 6 May 2004 20:12:47 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i473Clgd032441 for ; Thu, 6 May 2004 20:12:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i473ClSt032440; Thu, 6 May 2004 20:12:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405070312.i473ClSt032440@xorpc.icir.org> Date: Thu, 6 May 2004 20:12:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/06 20:12:47 Modified files: xorp/bgp/: rib_ipc_handler.cc Log message: Flush static routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 2:17:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 02:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i479I1XG091572 for ; Fri, 7 May 2004 02:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i479I1hw026624 for ; Fri, 7 May 2004 02:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i479I0Hx003229; Fri, 7 May 2004 02:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i479H3Hx003204 for ; Fri, 7 May 2004 02:17:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i479H3hw026616 for ; Fri, 7 May 2004 02:17:03 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i479H2gd060006 for ; Fri, 7 May 2004 02:17:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i479H2hN060005; Fri, 7 May 2004 02:17:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405070917.i479H2hN060005@xorpc.icir.org> Date: Fri, 7 May 2004 2:17:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_deletion.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/07 02:17:02 Modified files: xorp/bgp/: route_table_deletion.hh Log message: Add top level kdoc comment for DeletionTable _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 2:23:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 02:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i479O2XG092661 for ; Fri, 7 May 2004 02:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i479O1hw026690 for ; Fri, 7 May 2004 02:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i479O1Hx003373; Fri, 7 May 2004 02:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i479NvHx003365 for ; Fri, 7 May 2004 02:23:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i479Nvhw026688 for ; Fri, 7 May 2004 02:23:57 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i479Nvgd060597 for ; Fri, 7 May 2004 02:23:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i479NuEg060596; Fri, 7 May 2004 02:23:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405070923.i479NuEg060596@xorpc.icir.org> Date: Fri, 7 May 2004 2:23:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ internal_message.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/07 02:23:56 Modified files: xorp/bgp/: internal_message.hh Log message: Add top level kdoc comment for InternalMessage _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 4:45:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 04:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Bk1XG017818 for ; Fri, 7 May 2004 04:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Bk1hw028071 for ; Fri, 7 May 2004 04:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47Bk0Hx007712; Fri, 7 May 2004 04:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47Bj8Hx007692 for ; Fri, 7 May 2004 04:45:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Bj7hw028054 for ; Fri, 7 May 2004 04:45:07 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Bj7gd071351 for ; Fri, 7 May 2004 04:45:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47Bj7wL071350; Fri, 7 May 2004 04:45:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405071145.i47Bj7wL071350@xorpc.icir.org> Date: Fri, 7 May 2004 4:45:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh route_table_base.cc route_table_base.hh route_table_decision.cc route_table_decision.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc ...route_table_fanout.hh ...route_table_ribin.cc ...test_dump.cc ...test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/07 04:45:07 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh route_table_base.cc route_table_base.hh route_table_decision.cc route_table_decision.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_ribin.cc test_dump.cc test_dump.reference Log message: Enable new DumpTable test, and update reference file. Fix three different possible ways the wrong thing could happen during a route dump when deleted routes caused by a peer going down get intermingled with routes being dumped to a new peer. Ideally we would have more isolation tests for these cases - currently we're only testing one of the three paths I fixed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 5:18:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 05:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47CJ1XG023602 for ; Fri, 7 May 2004 05:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47CJ1hw028409 for ; Fri, 7 May 2004 05:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47CJ1Hx008687; Fri, 7 May 2004 05:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47CIvHx008681 for ; Fri, 7 May 2004 05:18:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47CIvhw028407 for ; Fri, 7 May 2004 05:18:57 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47CIvgd074213 for ; Fri, 7 May 2004 05:18:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47CIvYw074212; Fri, 7 May 2004 05:18:57 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405071218.i47CIvYw074212@xorpc.icir.org> Date: Fri, 7 May 2004 5:18:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/07 05:18:57 Modified files: xorp/bgp/: dump_iterators.cc Log message: compilation fix for gcc34 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 9:21:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 09:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GM1XG067261 for ; Fri, 7 May 2004 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GM1hw032232 for ; Fri, 7 May 2004 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47GM1Hx013668; Fri, 7 May 2004 09:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47GLdHx013657 for ; Fri, 7 May 2004 09:21:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GLchw032228 for ; Fri, 7 May 2004 09:21:38 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GLcgd093615 for ; Fri, 7 May 2004 09:21:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47GLcUd093614; Fri, 7 May 2004 09:21:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405071621.i47GLcUd093614@xorpc.icir.org> Date: Fri, 7 May 2004 9:21:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_redist_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/07 09:21:38 Modified files: xorp/rip/: xrl_redist_manager.cc Log message: o Fix misplacement of new route redistributors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 9:34:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 09:35:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GZ0XG069509 for ; Fri, 7 May 2004 09:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GZ0hw032372 for ; Fri, 7 May 2004 09:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47GZ0Hx013943; Fri, 7 May 2004 09:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47GYvHx013934 for ; Fri, 7 May 2004 09:34:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GYuhw032366 for ; Fri, 7 May 2004 09:34:56 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47GYugd094438 for ; Fri, 7 May 2004 09:34:56 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47GYuVp094437; Fri, 7 May 2004 09:34:56 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405071634.i47GYuVp094437@xorpc.icir.org> Date: Fri, 7 May 2004 9:34:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/05/07 09:34:56 Modified files: xorp/rip/tools/: xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 13:48:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 13:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Kn1XG014137 for ; Fri, 7 May 2004 13:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Kn1hw035407 for ; Fri, 7 May 2004 13:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47Kn1Hx020747; Fri, 7 May 2004 13:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47KmmHx020735 for ; Fri, 7 May 2004 13:48:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Kmmhw035405 for ; Fri, 7 May 2004 13:48:48 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47Kmmgd006747 for ; Fri, 7 May 2004 13:48:48 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47KmmWR006746; Fri, 7 May 2004 13:48:48 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405072048.i47KmmWR006746@xorpc.icir.org> Date: Fri, 7 May 2004 13:48:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc test_dump.cc test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/07 13:48:48 Modified files: xorp/bgp/: dump_iterators.cc test_dump.cc test_dump.reference Log message: Add another test case. Annotate code paths through route_change_is_valid. Comment the ones for which we still have no unit tests. Quite a few actually. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:37 2005 Subject: No subject Fri May 7 14:03:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 14:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47L41XG016735 for ; Fri, 7 May 2004 14:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47L41hw035836 for ; Fri, 7 May 2004 14:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47L40Hx021087; Fri, 7 May 2004 14:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47L34Hx021071 for ; Fri, 7 May 2004 14:03:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47L33hw035811 for ; Fri, 7 May 2004 14:03:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47L33gd007315 for ; Fri, 7 May 2004 14:03:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47L33h9007314; Fri, 7 May 2004 14:03:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405072103.i47L33h9007314@xorpc.icir.org> Date: Fri, 7 May 2004 14:03:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ netlink_socket.cc routing_socket.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/07 14:03:03 Modified files: xorp/fea/: netlink_socket.cc routing_socket.cc Log message: Increase the receiving buffer size of the routing/netlink sockets to avoid loss of data from the kernel. This appears to fix the problem of missing routes as seen by the FEA observer (and fib2mrib). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Fri May 7 16:08:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 16:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47N92XG045314 for ; Fri, 7 May 2004 16:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47N91hw037232 for ; Fri, 7 May 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47N91Hx023841; Fri, 7 May 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47N8AHx023820 for ; Fri, 7 May 2004 16:08:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47N8Ahw037214 for ; Fri, 7 May 2004 16:08:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47N89gd011894 for ; Fri, 7 May 2004 16:08:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47N89BQ011893; Fri, 7 May 2004 16:08:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405072308.i47N89BQ011893@xorpc.icir.org> Date: Fri, 7 May 2004 16:08:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll op_commands.ll template.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/07 16:08:09 Modified files: xorp/rtrmgr/: boot.ll op_commands.ll template.ll Log message: Remove "#define YY_NO_UNPUT" and use "%option nounput" to omit the unused unput() routing from the output. The latter is the right mechanism to do it, especially because the former is BSD-specific, and doesn't appear to work with GNU "flex" (e.g., flex 2.5.31). E.g., see file /usr/src/usr.bin/lex/NEWS on FreeBSD, and search for "unput". [Bug report and fix by Brian Warner ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Fri May 7 16:29:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 16:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NU1XG048966 for ; Fri, 7 May 2004 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NU0hw037644 for ; Fri, 7 May 2004 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47NU0Hx024279; Fri, 7 May 2004 16:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47NT9Hx024264 for ; Fri, 7 May 2004 16:29:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NT9hw037634 for ; Fri, 7 May 2004 16:29:09 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NT9gd013010 for ; Fri, 7 May 2004 16:29:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47NT9Qq013009; Fri, 7 May 2004 16:29:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405072329.i47NT9Qq013009@xorpc.icir.org> Date: Fri, 7 May 2004 16:29:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/07 16:29:09 Modified files: xorp/rib/: rib.cc Log message: Don't fail redist table add if redist table already exists. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Fri May 7 16:31:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 07 May 2004 16:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NW1XG049356 for ; Fri, 7 May 2004 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NW1hw037688 for ; Fri, 7 May 2004 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47NW1Hx024324; Fri, 7 May 2004 16:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i47NVRHx024315 for ; Fri, 7 May 2004 16:31:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NVRhw037686 for ; Fri, 7 May 2004 16:31:27 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i47NVRgd013211 for ; Fri, 7 May 2004 16:31:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i47NVRxR013210; Fri, 7 May 2004 16:31:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405072331.i47NVRxR013210@xorpc.icir.org> Date: Fri, 7 May 2004 16:31:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/07 16:31:27 Modified files: xorp/rib/: rib_manager.cc Log message: Hard-wire "static" origin table into each RIB. Temporary measure to allow statics to be distributed into other protocols without making them depend on static_routes process explicitly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Sat May 8 4:59:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 May 2004 05:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i48C01XG082361 for ; Sat, 8 May 2004 05:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48C01hw047545 for ; Sat, 8 May 2004 05:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48C01E5009806; Sat, 8 May 2004 05:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48BxEE5009789 for ; Sat, 8 May 2004 04:59:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48BxEhw047532 for ; Sat, 8 May 2004 04:59:14 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i48BxEgd074323 for ; Sat, 8 May 2004 04:59:14 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i48BxEN0074321; Sat, 8 May 2004 04:59:14 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405081159.i48BxEN0074321@xorpc.icir.org> Date: Sat, 8 May 2004 4:59:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 04/05/08 04:59:13 Modified files: xorp/etc/templates/: bgp.tp Log message: Fix specification of which config parameters are mandatory _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Sat May 8 6:05:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 May 2004 06:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i48D60XG093679 for ; Sat, 8 May 2004 06:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48D60hw048144 for ; Sat, 8 May 2004 06:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48D60E5011172; Sat, 8 May 2004 06:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48D5iE5011165 for ; Sat, 8 May 2004 06:05:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48D5ihw048141 for ; Sat, 8 May 2004 06:05:44 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i48D5igd082005 for ; Sat, 8 May 2004 06:05:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i48D5ioD082004; Sat, 8 May 2004 06:05:44 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405081305.i48D5ioD082004@xorpc.icir.org> Date: Sat, 8 May 2004 6:05:43 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc test_dump.cc test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/08 06:05:43 Modified files: xorp/bgp/: dump_iterators.cc test_dump.cc test_dump.reference Log message: Add a very specific test case for one of the race conditions fixed yesterday. Yesterday's fix works as advertised :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Sat May 8 9:46:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 08 May 2004 09:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i48Gl2XG032946 for ; Sat, 8 May 2004 09:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48Gl1hw051351 for ; Sat, 8 May 2004 09:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48Gl1E5014588; Sat, 8 May 2004 09:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i48GkXE5014577 for ; Sat, 8 May 2004 09:46:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i48GkXhw051349 for ; Sat, 8 May 2004 09:46:33 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i48GkXgd098051 for ; Sat, 8 May 2004 09:46:33 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i48GkWfH098050; Sat, 8 May 2004 09:46:33 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405081646.i48GkWfH098050@xorpc.icir.org> Date: Sat, 8 May 2004 9:46:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc route_table_dump.cc test_dump.cc test_dump.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/08 09:46:32 Modified files: xorp/bgp/: dump_iterators.cc route_table_dump.cc test_dump.cc test_dump.reference Log message: Add seven more unit tests, each testing a different possible race condition of route addition and deletion during the process of dumping routes to a new peer. All the 40 different code path fragments through route_change_is_valid are covered by unit tests, and so all the branches have been run at least once. Adding these tests revealed two more bugs, which are now fixed. I can't think of any more tests to add, so hopefully BGP will be more stable now when peers are flapping. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 7:41:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 07:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AEg1XG016852 for ; Mon, 10 May 2004 07:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AEg1hw078721 for ; Mon, 10 May 2004 07:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4AEg0E5002733; Mon, 10 May 2004 07:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4AEfBE5002715 for ; Mon, 10 May 2004 07:41:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AEfAhw078711 for ; Mon, 10 May 2004 07:41:10 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AEfAgd083030 for ; Mon, 10 May 2004 07:41:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4AEfAO6083029; Mon, 10 May 2004 07:41:10 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405101441.i4AEfAO6083029@xorpc.icir.org> Date: Mon, 10 May 2004 7:41:10 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/10 07:41:10 Modified files: xorp/rtrmgr/: main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh xrl_rtrmgr_interface.cc Log message: Add framework for a save hook, to be executed when the router config file is saved. Needed to preserve config files saved to memory filesystem when running off a live CD. Not yet fully functional. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 13:54:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 13:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AKt1XG095421 for ; Mon, 10 May 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AKt1hw085106 for ; Mon, 10 May 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4AKt1E5012672; Mon, 10 May 2004 13:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4AKsxE5012666 for ; Mon, 10 May 2004 13:54:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AKswhw085101 for ; Mon, 10 May 2004 13:54:58 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4AKswgd005880 for ; Mon, 10 May 2004 13:54:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4AKswNZ005879; Mon, 10 May 2004 13:54:58 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405102054.i4AKswNZ005879@xorpc.icir.org> Date: Mon, 10 May 2004 13:54:58 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ xorp.xml Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/10 13:54:58 Modified files: other/testbed/config/: xorp.xml Log message: Add xorp12 to the testbed configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 14:48:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 14:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALn1XG007483 for ; Mon, 10 May 2004 14:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALn0hw085854 for ; Mon, 10 May 2004 14:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALn0E5014394; Mon, 10 May 2004 14:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALmtE5014388 for ; Mon, 10 May 2004 14:48:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALmthw085852 for ; Mon, 10 May 2004 14:48:55 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALmsgd008473 for ; Mon, 10 May 2004 14:48:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4ALms1S008472; Mon, 10 May 2004 14:48:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405102148.i4ALms1S008472@xorpc.icir.org> Date: Mon, 10 May 2004 14:48:54 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config9.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/10 14:48:54 Added files: other/testbed/config/: config9.xt Log message: Configuration with xorp12 in a star network. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 14:50:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 14:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALp1XG007946 for ; Mon, 10 May 2004 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALp1hw085897 for ; Mon, 10 May 2004 14:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALp0E5014486; Mon, 10 May 2004 14:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALocE5014467 for ; Mon, 10 May 2004 14:50:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALochw085893 for ; Mon, 10 May 2004 14:50:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALocgd008604 for ; Mon, 10 May 2004 14:50:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4ALocXc008603; Mon, 10 May 2004 14:50:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405102150.i4ALocXc008603@xorpc.icir.org> Date: Mon, 10 May 2004 14:50:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config9.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/10 14:50:38 Modified files: other/testbed/config/: config9.xt Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 14:58:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALx1XG009729 for ; Mon, 10 May 2004 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALx1hw086002 for ; Mon, 10 May 2004 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALx0E5014719; Mon, 10 May 2004 14:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ALwjE5014712 for ; Mon, 10 May 2004 14:58:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALwjhw085995 for ; Mon, 10 May 2004 14:58:45 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ALwjgd008967 for ; Mon, 10 May 2004 14:58:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4ALwjZB008966; Mon, 10 May 2004 14:58:45 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405102158.i4ALwjZB008966@xorpc.icir.org> Date: Mon, 10 May 2004 14:58:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config9.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/10 14:58:45 Modified files: other/testbed/config/: config9.xt Log message: Fix another typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 17:44:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 17:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B0j1XG056968 for ; Mon, 10 May 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B0j1hw087933 for ; Mon, 10 May 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4B0j0E5019349; Mon, 10 May 2004 17:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4B0icE5019315 for ; Mon, 10 May 2004 17:44:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B0ibhw087927 for ; Mon, 10 May 2004 17:44:37 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B0ibgd032382 for ; Mon, 10 May 2004 17:44:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4B0ib6x032381; Mon, 10 May 2004 17:44:37 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405110044.i4B0ib6x032381@xorpc.icir.org> Date: Mon, 10 May 2004 17:44:37 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh peer.hh xrl_target.cc xrl_target.hh xorp/etc/templates/ bgp.tp xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/05/10 17:44:37 Modified files: xorp/bgp/: bgp.cc bgp.hh peer.hh xrl_target.cc xrl_target.hh xorp/etc/templates/: bgp.tp xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Enabling and disabling peerings through the router manager should now work. http://www.xorp.org/bugzilla/show_bug.cgi?id=13 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Mon May 10 18:14:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 10 May 2004 18:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B1F1XG064181 for ; Mon, 10 May 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B1F1hw088299 for ; Mon, 10 May 2004 18:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4B1F1E5020084; Mon, 10 May 2004 18:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4B1EuE5020076 for ; Mon, 10 May 2004 18:14:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B1Euhw088294 for ; Mon, 10 May 2004 18:14:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4B1Eugd036137 for ; Mon, 10 May 2004 18:14:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4B1EuIi036136; Mon, 10 May 2004 18:14:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405110114.i4B1EuIi036136@xorpc.icir.org> Date: Mon, 10 May 2004 18:14:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc peer.cc peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/10 18:14:56 Modified files: xorp/bgp/: bgp.cc peer.cc peer.hh Log message: Enabling and disabling peerings through the router manager should now work. http://www.xorp.org/bugzilla/show_bug.cgi?id=13 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Tue May 11 9:50:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 May 2004 09:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BGp1NG012797 for ; Tue, 11 May 2004 09:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BGp1hw000335 for ; Tue, 11 May 2004 09:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4BGp0E5012744; Tue, 11 May 2004 09:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4BGowE5012738 for ; Tue, 11 May 2004 09:50:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BGowhw000333 for ; Tue, 11 May 2004 09:50:58 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BGowgd032341 for ; Tue, 11 May 2004 09:50:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4BGowSM032340; Tue, 11 May 2004 09:50:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405111650.i4BGowSM032340@xorpc.icir.org> Date: Tue, 11 May 2004 9:50:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/11 09:50:58 Modified files: xorp/rtrmgr/: master_conf_tree.cc master_conf_tree.hh module_manager.cc module_manager.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh Log message: rtrmgr config file save hook now works. If a program is specified on the xorp_rtrmgr command line using the -s flag, then this program will be run after the xorp config file is saved. The first parameter is the filename of the saved config file. The userid used to execute the program is that of the user that requested the rtrmgr to save the config, and the GID is that of group "xorp". This is intended to be used when running XORP from a LiveCD, where any files saved to the memory filesystem would otherwise be lost. The program run by the save hook can preserve the config files in stable storage (such as on a floppy), and when the router restarts, the preserved files can be restored. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Tue May 11 13:10:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 May 2004 13:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BKB1NG020597 for ; Tue, 11 May 2004 13:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BKB1hw002991 for ; Tue, 11 May 2004 13:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4BKB1E5018695; Tue, 11 May 2004 13:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4BKA3E5018677 for ; Tue, 11 May 2004 13:10:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BKA2hw002965 for ; Tue, 11 May 2004 13:10:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4BKA2gd042518 for ; Tue, 11 May 2004 13:10:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4BKA2GW042517; Tue, 11 May 2004 13:10:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405112010.i4BKA2GW042517@xorpc.icir.org> Date: Tue, 11 May 2004 13:10:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/11 13:10:02 Modified files: xorp/fea/: fticonfig.cc Log message: Move the code for restoring the unicast forwarding state from the FtiConfig destructor to method FtiConfig::stop() (which method is called from within the FtiConfig destructor). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Wed May 12 1:22:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 01:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8N2NG055770 for ; Wed, 12 May 2004 01:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8N1hw011365 for ; Wed, 12 May 2004 01:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8N1E5006085; Wed, 12 May 2004 01:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8MvE5006078 for ; Wed, 12 May 2004 01:22:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Muhw011363 for ; Wed, 12 May 2004 01:22:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Mugd004643 for ; Wed, 12 May 2004 01:22:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4C8Mu2r004642; Wed, 12 May 2004 01:22:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405120822.i4C8Mu2r004642@xorpc.icir.org> Date: Wed, 12 May 2004 1:22:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib.xif rib_xif.hh rib_xif.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/05/12 01:22:56 Modified files: xorp/xrl/interfaces/: rib.xif rib_xif.hh rib_xif.cc Log message: Added XRL interface to enable/disable transaction-based route redistribution from one routing protocol to another. The new XRLs are redist_transaction_enable{4,6} and redist_transaction_disable{4,6}. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Wed May 12 1:25:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 01:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Q1NG056007 for ; Wed, 12 May 2004 01:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Q1hw011420 for ; Wed, 12 May 2004 01:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8Q1E5006164; Wed, 12 May 2004 01:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8PpE5006155 for ; Wed, 12 May 2004 01:25:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Pphw011418 for ; Wed, 12 May 2004 01:25:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Ppgd004944 for ; Wed, 12 May 2004 01:25:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4C8PpUx004943; Wed, 12 May 2004 01:25:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405120825.i4C8PpUx004943@xorpc.icir.org> Date: Wed, 12 May 2004 1:25:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ Makefile.am Makefile.in xorp/xrl/interfaces/ redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif ...redist_transaction6_xif.cc ...redist_transaction6_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/05/12 01:25:51 Modified files: xorp/xrl/interfaces/: Makefile.am Makefile.in Added files: xorp/xrl/interfaces/: redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.cc redist_transaction6_xif.hh Log message: Added new XRL interface for sending transaction-based route redistribution to interested parties. The new XRL interfaces are redist_transaction4/0.1 and redist_transaction6/0.1 for IPv4 and IPv6 respectively. This interface is very similar to redist4/0.1 and redist6/0.1, except that the sender sends start_transaction and commit_transaction XRLs before and after a batch of add/delete route commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Wed May 12 1:27:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 01:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8S1NG056150 for ; Wed, 12 May 2004 01:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8S1hw011446 for ; Wed, 12 May 2004 01:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8S1E5006227; Wed, 12 May 2004 01:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8RME5006207 for ; Wed, 12 May 2004 01:27:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8RLhw011437 for ; Wed, 12 May 2004 01:27:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8RLgd005098 for ; Wed, 12 May 2004 01:27:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4C8RLKU005097; Wed, 12 May 2004 01:27:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405120827.i4C8RLKU005097@xorpc.icir.org> Date: Wed, 12 May 2004 1:27:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/12 01:27:21 Modified files: xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Regenerate to include the new transaction-based route redistribution enable/disable XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:38 2005 Subject: No subject Wed May 12 1:28:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 01:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8T1NG056244 for ; Wed, 12 May 2004 01:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8T1hw011459 for ; Wed, 12 May 2004 01:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8T1E5006255; Wed, 12 May 2004 01:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8SpE5006245 for ; Wed, 12 May 2004 01:28:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Sphw011457 for ; Wed, 12 May 2004 01:28:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8Sogd005309 for ; Wed, 12 May 2004 01:28:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4C8Soa2005308; Wed, 12 May 2004 01:28:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405120828.i4C8Soa2005308@xorpc.icir.org> Date: Wed, 12 May 2004 1:28:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh redist_xrl.cc redist_xrl.hh rib_manager.cc rib_manager.hh xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/12 01:28:50 Modified files: xorp/rib/: Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh redist_xrl.cc redist_xrl.hh rib_manager.cc rib_manager.hh xrl_target.cc xrl_target.hh Log message: Added support for transaction-based route redistiribution. The new code is not tested yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 1:56:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 01:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8v1NG057900 for ; Wed, 12 May 2004 01:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8v1hw011776 for ; Wed, 12 May 2004 01:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8v1E5006961; Wed, 12 May 2004 01:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4C8u1E5006937 for ; Wed, 12 May 2004 01:56:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8u1hw011772 for ; Wed, 12 May 2004 01:56:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4C8u1gd007903 for ; Wed, 12 May 2004 01:56:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4C8u1MP007902; Wed, 12 May 2004 01:56:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405120856.i4C8u1MP007902@xorpc.icir.org> Date: Wed, 12 May 2004 1:56:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/12 01:56:01 Modified files: xorp/pim/: Makefile.am Makefile.in Log message: Add libredisttransaction4xif.a and libredisttransaction6xif.a to the list of libraries to link against. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 13:30:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 13:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CKV1NG009375 for ; Wed, 12 May 2004 13:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CKV1oj021794 for ; Wed, 12 May 2004 13:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CKV0E5026344; Wed, 12 May 2004 13:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CKU3E5026303 for ; Wed, 12 May 2004 13:30:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CKU3oj021765 for ; Wed, 12 May 2004 13:30:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CKU3gd060616 for ; Wed, 12 May 2004 13:30:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CKU3R2060615; Wed, 12 May 2004 13:30:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122030.i4CKU3R2060615@xorpc.icir.org> Date: Wed, 12 May 2004 13:30:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/12 13:30:03 Modified files: xorp/rib/: redist_xrl.cc Log message: If there is transaction error, then drop the add/delete routes instead of trying to resend them. [Note: this is a first-cut handling for transaction errors] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 14:42:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 14:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLh1NG037024 for ; Wed, 12 May 2004 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLh0oj022732 for ; Wed, 12 May 2004 14:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLh0oq028354; Wed, 12 May 2004 14:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLgRoq028342 for ; Wed, 12 May 2004 14:42:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLgRoj022722 for ; Wed, 12 May 2004 14:42:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLgRgd063434 for ; Wed, 12 May 2004 14:42:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CLgRGt063433; Wed, 12 May 2004 14:42:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122142.i4CLgRGt063433@xorpc.icir.org> Date: Wed, 12 May 2004 14:42:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/12 14:42:27 Modified files: xorp/rib/: redist_xrl.cc Log message: If we use transaction-based output, then the task count when we run start_running_tasks() must be 2. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 14:55:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 14:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLu1NG039876 for ; Wed, 12 May 2004 14:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLu0oj022884 for ; Wed, 12 May 2004 14:56:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLu0oq028570; Wed, 12 May 2004 14:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLtMoq028552 for ; Wed, 12 May 2004 14:55:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLtMoj022879 for ; Wed, 12 May 2004 14:55:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLtMgd063938 for ; Wed, 12 May 2004 14:55:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CLtMhu063937; Wed, 12 May 2004 14:55:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122155.i4CLtMhu063937@xorpc.icir.org> Date: Wed, 12 May 2004 14:55:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc rib.hh rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/12 14:55:22 Modified files: xorp/rib/: rib.cc rib.hh rib_manager.cc Log message: Plug-in a redist table for all routing entries between the (route) registration table and the export table. The interested parties can register for route redistribution from this table by using the keyword "all" as the from_protocol. For now, the export table is still in place, but will be removed later because interested parties (e.g., FEA, PIM) can use this redist table instead. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 14:57:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 14:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLw1NG040319 for ; Wed, 12 May 2004 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLw1oj022901 for ; Wed, 12 May 2004 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLw0oq028632; Wed, 12 May 2004 14:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLvGoq028621 for ; Wed, 12 May 2004 14:57:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLvFoj022898 for ; Wed, 12 May 2004 14:57:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLvFgd064051 for ; Wed, 12 May 2004 14:57:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CLvF6b064050; Wed, 12 May 2004 14:57:15 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122157.i4CLvF6b064050@xorpc.icir.org> Date: Wed, 12 May 2004 14:57:15 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist_transaction4.xif redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/05/12 14:57:15 Modified files: xorp/xrl/interfaces/: redist_transaction4.xif redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.hh Log message: Add a Kdoc comment. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 14:58:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLx1NG040552 for ; Wed, 12 May 2004 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLx1oj022911 for ; Wed, 12 May 2004 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLx1oq028679; Wed, 12 May 2004 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLwfoq028655 for ; Wed, 12 May 2004 14:58:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLweoj022909 for ; Wed, 12 May 2004 14:58:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLwegd064134 for ; Wed, 12 May 2004 14:58:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CLwe6V064133; Wed, 12 May 2004 14:58:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122158.i4CLwe6V064133@xorpc.icir.org> Date: Wed, 12 May 2004 14:58:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in pim.tgt pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/12 14:58:40 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in pim.tgt pim.xrls pim_base.cc pim_base.hh Log message: Modify the PIM target to use the redist_transaction[4,6].xif XRL interfaces to obtain the MRIB routes from the RIB instead of the fti.xif XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 14:59:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 15:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CM01NG040760 for ; Wed, 12 May 2004 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CM01oj022930 for ; Wed, 12 May 2004 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CM01oq028735; Wed, 12 May 2004 15:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CLxZoq028719 for ; Wed, 12 May 2004 14:59:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLxZoj022920 for ; Wed, 12 May 2004 14:59:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CLxZgd064190 for ; Wed, 12 May 2004 14:59:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CLxZ0T064189; Wed, 12 May 2004 14:59:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122159.i4CLxZ0T064189@xorpc.icir.org> Date: Wed, 12 May 2004 14:59:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/12 14:59:35 Modified files: xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh Log message: Use the redist_transaction[4,6] XRL interface to obtain the MRIB routes from RIB instead of the fti.xif XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 16:58:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CNx1NG066469 for ; Wed, 12 May 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CNx1ZS024173 for ; Wed, 12 May 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CNx1oq002029; Wed, 12 May 2004 16:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4CNwnoq002021 for ; Wed, 12 May 2004 16:58:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CNwnZS024170 for ; Wed, 12 May 2004 16:58:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4CNwngd069377 for ; Wed, 12 May 2004 16:58:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4CNwnBr069376; Wed, 12 May 2004 16:58:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405122358.i4CNwnBr069376@xorpc.icir.org> Date: Wed, 12 May 2004 16:58:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in fea.tp xorp/etc/templates/ interfaces.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/12 16:58:49 Modified files: xorp/etc/templates/: Makefile.am Makefile.in fea.tp Added files: xorp/etc/templates/: interfaces.tp Log message: * Move the interfaces {} template section from fea.tp to interfaces.tp, and change it to "provides interfaces". * Add new fea {} template section which for now contains statements to enable/disable the unicast forwarding. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 17:01:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 17:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D021NG067144 for ; Wed, 12 May 2004 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D020ZS024228 for ; Wed, 12 May 2004 17:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D020oq002158; Wed, 12 May 2004 17:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D01uoq002149 for ; Wed, 12 May 2004 17:01:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D01uZS024226 for ; Wed, 12 May 2004 17:01:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D01ugd069713 for ; Wed, 12 May 2004 17:01:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D01ubf069712; Wed, 12 May 2004 17:01:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130001.i4D01ubf069712@xorpc.icir.org> Date: Wed, 12 May 2004 17:01:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot config.boot.sample config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/12 17:01:56 Modified files: xorp/rtrmgr/: config.boot config.boot.sample config.boot.xorp0 Log message: Added sample fea {} configuration sections to enable unicast forwarding _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 17:05:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 17:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D061NG068054 for ; Wed, 12 May 2004 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D061ZS024282 for ; Wed, 12 May 2004 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D061oq002271; Wed, 12 May 2004 17:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D05Voq002255 for ; Wed, 12 May 2004 17:05:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D05VZS024279 for ; Wed, 12 May 2004 17:05:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D05Vgd070035 for ; Wed, 12 May 2004 17:05:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D05Vla070034; Wed, 12 May 2004 17:05:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130005.i4D05Vla070034@xorpc.icir.org> Date: Wed, 12 May 2004 17:05:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot config.boot.sample config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/12 17:05:31 Modified files: xorp/rtrmgr/: config.boot config.boot.sample config.boot.xorp0 Log message: Trim ";" at end of lines, because it is not really needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 17:14:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 17:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0F1NG070086 for ; Wed, 12 May 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0F0ZS024357 for ; Wed, 12 May 2004 17:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D0F0oq002530; Wed, 12 May 2004 17:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D0Ecoq002519 for ; Wed, 12 May 2004 17:14:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0EcZS024352 for ; Wed, 12 May 2004 17:14:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0Ecgd070931 for ; Wed, 12 May 2004 17:14:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D0EcpP070930; Wed, 12 May 2004 17:14:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405130014.i4D0EcpP070930@xorpc.icir.org> Date: Wed, 12 May 2004 17:14:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/12 17:14:38 Modified files: xorp/bgp/: peer.cc Log message: When debugging is enabled print the whole output packet as opposed to just the type. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 17:39:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 17:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0e1NG075101 for ; Wed, 12 May 2004 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0e1ZS024665 for ; Wed, 12 May 2004 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D0e1oq003272; Wed, 12 May 2004 17:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D0dvoq003263 for ; Wed, 12 May 2004 17:39:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0duZS024660 for ; Wed, 12 May 2004 17:39:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D0dugd073859 for ; Wed, 12 May 2004 17:39:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D0dubN073858; Wed, 12 May 2004 17:39:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405130039.i4D0dubN073858@xorpc.icir.org> Date: Wed, 12 May 2004 17:39:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/12 17:39:56 Modified files: xorp/bgp/: peer.cc Log message: When debugging in enabled print the notification packet sent. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 18:43:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 18:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D1i1NG086499 for ; Wed, 12 May 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D1i1ZS025343 for ; Wed, 12 May 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D1i1oq004751; Wed, 12 May 2004 18:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D1htoq004744 for ; Wed, 12 May 2004 18:43:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D1htZS025340 for ; Wed, 12 May 2004 18:43:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D1hsgd081841 for ; Wed, 12 May 2004 18:43:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D1hsdS081840; Wed, 12 May 2004 18:43:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130143.i4D1hsdS081840@xorpc.icir.org> Date: Wed, 12 May 2004 18:43:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/12 18:43:54 Modified files: xorp/rib/: redist_xrl.cc Log message: * Refactor some of the transaction-related stuff to fix some transient errors. * Replace the error messages to use XLOG_ERROR() instead of XLOG_INFO() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Wed May 12 23:06:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 May 2004 23:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D671NG032044 for ; Wed, 12 May 2004 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D671ZS028017 for ; Wed, 12 May 2004 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D671oq009572; Wed, 12 May 2004 23:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D66Roq009559 for ; Wed, 12 May 2004 23:06:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D66RZS028010 for ; Wed, 12 May 2004 23:06:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D66Rgd002595 for ; Wed, 12 May 2004 23:06:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D66R8Z002594; Wed, 12 May 2004 23:06:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130606.i4D66R8Z002594@xorpc.icir.org> Date: Wed, 12 May 2004 23:06:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif ...redist_transaction6_xif.cc ...redist_transaction6_xif.hh xorp/xrl/targets/ pim.xrls pim_base.cc pim_base.hh xorp/rib/ redist_xrl.cc xorp/pim/ xrl_pim_node.hh xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/12 23:06:27 Modified files: xorp/xrl/interfaces/: redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.cc redist_transaction6_xif.hh xorp/xrl/targets/: pim.xrls pim_base.cc pim_base.hh xorp/rib/: redist_xrl.cc xorp/pim/: xrl_pim_node.hh xrl_pim_node.cc Log message: Added argument protocol_origin:txt to the add_route redist_transaction{4,6} XRL interface. The protocol_origin contains the name of the protocol that originated the routing entry. Note that the value of protocol_origin may be different from the "cookie" argument which is used to identify the redistribution source. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Thu May 13 0:13:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 00:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D7E1NG043700 for ; Thu, 13 May 2004 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D7E1ZS028713 for ; Thu, 13 May 2004 00:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D7E1oq010986; Thu, 13 May 2004 00:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D7DRoq010972 for ; Thu, 13 May 2004 00:13:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D7DRZS028709 for ; Thu, 13 May 2004 00:13:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D7DRgd008543 for ; Thu, 13 May 2004 00:13:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D7DRwI008542; Thu, 13 May 2004 00:13:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130713.i4D7DRwI008542@xorpc.icir.org> Date: Thu, 13 May 2004 0:13:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/13 00:13:27 Modified files: xorp/rib/: redist_xrl.cc Log message: Initialize _n_tasks to zero. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Thu May 13 1:00:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 01:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D811NG051848 for ; Thu, 13 May 2004 01:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D810ZS029290 for ; Thu, 13 May 2004 01:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D810oq011987; Thu, 13 May 2004 01:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D80qoq011978 for ; Thu, 13 May 2004 01:00:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D80qZS029284 for ; Thu, 13 May 2004 01:00:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D80qgd013186 for ; Thu, 13 May 2004 01:00:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D80qw0013185; Thu, 13 May 2004 01:00:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130800.i4D80qw0013185@xorpc.icir.org> Date: Thu, 13 May 2004 1:00:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist4.xif redist6.xif redist_transaction4.xif redist_transaction6.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/05/13 01:00:52 Modified files: xorp/xrl/interfaces/: redist4.xif redist6.xif redist_transaction4.xif redist_transaction6.xif Log message: Add header comments and XORP CVS tags. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Thu May 13 1:05:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 01:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D861NG052767 for ; Thu, 13 May 2004 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D861ZS029371 for ; Thu, 13 May 2004 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D861oq012141; Thu, 13 May 2004 01:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D85boq012130 for ; Thu, 13 May 2004 01:05:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D85bZS029365 for ; Thu, 13 May 2004 01:05:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D85bgd013729 for ; Thu, 13 May 2004 01:05:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D85bns013728; Thu, 13 May 2004 01:05:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130805.i4D85bns013728@xorpc.icir.org> Date: Thu, 13 May 2004 1:05:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/13 01:05:37 Modified files: xorp/xrl/targets/: Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Log message: Add redist_transaction4.xif and redist_transaction6.xif to the set of XRL interfaces supported by the FEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Thu May 13 1:06:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 01:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D872NG052940 for ; Thu, 13 May 2004 01:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D871ZS029381 for ; Thu, 13 May 2004 01:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D871oq012180; Thu, 13 May 2004 01:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4D86soq012172 for ; Thu, 13 May 2004 01:06:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D86sZS029379 for ; Thu, 13 May 2004 01:06:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4D86sgd013881 for ; Thu, 13 May 2004 01:06:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4D86s23013880; Thu, 13 May 2004 01:06:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405130806.i4D86s23013880@xorpc.icir.org> Date: Thu, 13 May 2004 1:06:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/13 01:06:54 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh Log message: Add support for the redist_transaction4.xif and redist_transaction6.xif XRL interfaces for receiving add/delete routes from the RIB. For now the new interface is not used. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:39 2005 Subject: No subject Thu May 13 11:43:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 11:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIi1NG066474 for ; Thu, 13 May 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIi1Xm039657 for ; Thu, 13 May 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DIi0oq028923; Thu, 13 May 2004 11:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DIhXoq028898 for ; Thu, 13 May 2004 11:43:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIhXXm039647 for ; Thu, 13 May 2004 11:43:33 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIhXgd066581 for ; Thu, 13 May 2004 11:43:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4DIhXM0066580; Thu, 13 May 2004 11:43:33 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405131843.i4DIhXM0066580@xorpc.icir.org> Date: Thu, 13 May 2004 11:43:33 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/13 11:43:33 Modified files: xorp/bgp/: xrl_shell_funcs.sh Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Thu May 13 11:49:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 11:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIo0NG067747 for ; Thu, 13 May 2004 11:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DIo0Xm039734 for ; Thu, 13 May 2004 11:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DIo0oq029113; Thu, 13 May 2004 11:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DInIoq029093 for ; Thu, 13 May 2004 11:49:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DInIXm039726 for ; Thu, 13 May 2004 11:49:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DInIgd066852 for ; Thu, 13 May 2004 11:49:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4DInIr1066851; Thu, 13 May 2004 11:49:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405131849.i4DInIr1066851@xorpc.icir.org> Date: Thu, 13 May 2004 11:49:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc peer.cc peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/13 11:49:18 Modified files: xorp/bgp/: bgp.cc peer.cc peer.hh Log message: Enabling and disabling a peer through the router manager recently stopped working. The "set_peer_state" call was just toggling a variable and expecting an "activate", to commit the change. The router manager only calls "activate" once during initial configuration. Therefore "set_peer_state" know only expects a single call to activate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Thu May 13 12:58:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 12:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DJx1NG079906 for ; Thu, 13 May 2004 12:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DJx1Xm040704 for ; Thu, 13 May 2004 12:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DJx0oq000939; Thu, 13 May 2004 12:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DJwboq000923 for ; Thu, 13 May 2004 12:58:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DJwaXm040701 for ; Thu, 13 May 2004 12:58:36 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DJwagd070219 for ; Thu, 13 May 2004 12:58:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4DJwaK1070218; Thu, 13 May 2004 12:58:36 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405131958.i4DJwaK1070218@xorpc.icir.org> Date: Thu, 13 May 2004 12:58:36 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc route_table_decision.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/13 12:58:36 Modified files: xorp/bgp/: route_table_decision.cc route_table_decision.hh Log message: Avoid linear scan through list of peers with each route dumped. Disable some costly and now unneeded assert statements. Remove obsolete codepath indicators that hindered readability. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Thu May 13 13:31:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 13:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DKW1NG085689 for ; Thu, 13 May 2004 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DKW1Xm041155 for ; Thu, 13 May 2004 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DKW0oq001795; Thu, 13 May 2004 13:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4DKVloq001782 for ; Thu, 13 May 2004 13:31:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DKVkXm041153 for ; Thu, 13 May 2004 13:31:46 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4DKVkgd071575 for ; Thu, 13 May 2004 13:31:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4DKVksN071574; Thu, 13 May 2004 13:31:46 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405132031.i4DKVksN071574@xorpc.icir.org> Date: Thu, 13 May 2004 13:31:46 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_ribin.cc test_dump.cc test_dump.reference test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/13 13:31:46 Modified files: xorp/bgp/: route_table_ribin.cc test_dump.cc test_dump.reference test_ribin.cc Log message: Fix route dump bug, and add unit test. Note to self: only dump routes if they actually won at decision! _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Thu May 13 18:45:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 May 2004 18:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4E1k1NG062369 for ; Thu, 13 May 2004 18:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4E1k1Xm045000 for ; Thu, 13 May 2004 18:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4E1k1oq009860; Thu, 13 May 2004 18:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4E1jdoq009850 for ; Thu, 13 May 2004 18:45:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4E1jdXm044998 for ; Thu, 13 May 2004 18:45:39 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4E1jdgd010481 for ; Thu, 13 May 2004 18:45:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4E1jdSX010477; Thu, 13 May 2004 18:45:39 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405140145.i4E1jdSX010477@xorpc.icir.org> Date: Thu, 13 May 2004 18:45:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/05/13 18:45:38 Modified files: xorp/bgp/: bgp.cc xorp/bgp/harness/: test_peering1.sh Log message: Fix the originating of IPv6 routes and add a test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 11:30:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 11:31:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIV2NG042899 for ; Fri, 14 May 2004 11:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIV2Xm059802 for ; Fri, 14 May 2004 11:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EIV1oq002574; Fri, 14 May 2004 11:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EIU8oq002539 for ; Fri, 14 May 2004 11:30:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIU8Xm059787 for ; Fri, 14 May 2004 11:30:08 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIU8gd066934 for ; Fri, 14 May 2004 11:30:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4EIU8Lq066933; Fri, 14 May 2004 11:30:08 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405141830.i4EIU8Lq066933@xorpc.icir.org> Date: Fri, 14 May 2004 11:30:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp_trie.cc bgp_trie.hh route_table_cache.hh route_table_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/14 11:30:08 Modified files: xorp/bgp/: bgp_trie.cc bgp_trie.hh route_table_cache.hh route_table_deletion.cc Log message: re-implement BgpTrie as a subclass of RefTrie. Use delete_self() rather than delete to allow delayed deletion without invalidating any iterators. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 11:30:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 11:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIW1NG043072 for ; Fri, 14 May 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIW1Xm059824 for ; Fri, 14 May 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EIW1oq002608; Fri, 14 May 2004 11:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EIV0oq002567 for ; Fri, 14 May 2004 11:31:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIV0Xm059799 for ; Fri, 14 May 2004 11:31:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EIUxgd067011 for ; Fri, 14 May 2004 11:30:59 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4EIUxvo067010; Fri, 14 May 2004 11:30:59 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405141830.i4EIUxvo067010@xorpc.icir.org> Date: Fri, 14 May 2004 11:30:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ref_trie.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: mjh@xorpc.icir.org. 04/05/14 11:30:59 Modified files: xorp/libxorp/: ref_trie.hh Log message: Add delayed deletion method delete_self() to avoid invalidating iterators when deleting the trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 13:45:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 13:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EKk1NG066370 for ; Fri, 14 May 2004 13:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EKk1Xm061813 for ; Fri, 14 May 2004 13:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EKk0oq005898; Fri, 14 May 2004 13:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EKjwoq005892 for ; Fri, 14 May 2004 13:45:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EKjwXm061811 for ; Fri, 14 May 2004 13:45:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EKjvgd088019 for ; Fri, 14 May 2004 13:45:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4EKjveB088018; Fri, 14 May 2004 13:45:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405142045.i4EKjveB088018@xorpc.icir.org> Date: Fri, 14 May 2004 13:45:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.hh redist_xrl.cc rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/14 13:45:57 Modified files: xorp/rib/: redist_xrl.hh redist_xrl.cc rib_manager.cc Log message: Split the transaction/non-transaction based redistribution code by adding a new RedistTransactionXrlOutput class that uses RedistXrlOutput as a base class. [Based on a patch by Orion with few small extra modifications by myself] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 14:34:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 14:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ELZ1NG075007 for ; Fri, 14 May 2004 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ELZ1Xm062544 for ; Fri, 14 May 2004 14:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ELZ0oq006994; Fri, 14 May 2004 14:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ELYwoq006988 for ; Fri, 14 May 2004 14:34:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ELYwXm062538 for ; Fri, 14 May 2004 14:34:58 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ELYwgd089844 for ; Fri, 14 May 2004 14:34:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4ELYwr6089841; Fri, 14 May 2004 14:34:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405142134.i4ELYwr6089841@xorpc.icir.org> Date: Fri, 14 May 2004 14:34:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/14 14:34:57 Modified files: xorp/bgp/: route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh Log message: re-write final completion and self-deletion behaviour of dump table. The jist of the problem is that when the dump is complete, the DumpTable has to remain around until all DeletionTables that were in place at any time in the dump have finished, or we can't ensure downstream consistency. When the last of those DeletionTables goes away, DumpTable previously deleted itself. BUT it can't do so. There may be deleted routes in the FanoutTable queue. So we need to record that it can now delete itself, and only do so when the queue upstream is finally empty. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 15:21:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 15:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EMM1NG083368 for ; Fri, 14 May 2004 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EMM1Xm063230 for ; Fri, 14 May 2004 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EMM1oq008105; Fri, 14 May 2004 15:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4EMLKoq008090 for ; Fri, 14 May 2004 15:21:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EMLJXm063222 for ; Fri, 14 May 2004 15:21:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4EMLJgd092221 for ; Fri, 14 May 2004 15:21:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4EMLJVv092220; Fri, 14 May 2004 15:21:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405142221.i4EMLJVv092220@xorpc.icir.org> Date: Fri, 14 May 2004 15:21:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config10.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 04/05/14 15:21:19 Added files: other/testbed/config/: config10.xt Log message: Update config9.xt to add a chain of routers between xorp6 and xorp7 (for multicast testing purpose). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Fri May 14 20:04:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 14 May 2004 20:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4F351NG032950 for ; Fri, 14 May 2004 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4F351Xm066744 for ; Fri, 14 May 2004 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4F350oq013160; Fri, 14 May 2004 20:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4F342oq013135 for ; Fri, 14 May 2004 20:04:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4F341Xm066732 for ; Fri, 14 May 2004 20:04:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4F341gd010758 for ; Fri, 14 May 2004 20:04:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4F3417K010757; Fri, 14 May 2004 20:04:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405150304.i4F3417K010757@xorpc.icir.org> Date: Fri, 14 May 2004 20:04:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.hh redist_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/14 20:04:01 Modified files: xorp/rib/: redist_xrl.hh redist_xrl.cc Log message: Add an upper-limit of the transaction size for transaction-based route redistribution (currently the limit is set to 100 add/delete requests). Previously, the "commit_transaction" XRL was sent once the queue of add/delete requests has become empty. However, if there is a constant suppy of add/delete requests such that the queue is never empty, then the "commit_transaction" XRL would never be sent, and the FEA would never apply those route changes to the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 4:06:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 04:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FB72NG021064 for ; Sat, 15 May 2004 04:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FB72Xm074941 for ; Sat, 15 May 2004 04:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FB71Oo020646; Sat, 15 May 2004 04:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FB6wOo020640 for ; Sat, 15 May 2004 04:06:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FB6wXm074939 for ; Sat, 15 May 2004 04:06:58 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FB6wgd043146 for ; Sat, 15 May 2004 04:06:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FB6wei043145; Sat, 15 May 2004 04:06:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405151106.i4FB6wei043145@xorpc.icir.org> Date: Sat, 15 May 2004 4:06:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer_route_pair.hh plumbing.cc route_table_dump.cc route_table_fanout.cc route_table_fanout.hh route_table_ribin.hh test_dump.cc test_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/15 04:06:58 Modified files: xorp/bgp/: peer_route_pair.hh plumbing.cc route_table_dump.cc route_table_fanout.cc route_table_fanout.hh route_table_ribin.hh test_dump.cc test_fanout.cc Log message: changes so that FanoutTable can explicitly track the genid of all the peerings. Implicit tracking is too likely to be buggy. add new replace_next_table method to FanoutTable - previously we used remove_next_table followed by add_next_table, but that had the side effect of skipping the fanout table queue, which is most likely not what is desired. rename PeerRoutePair to PeerTableInfo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 8:12:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 08:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FFD2NG064098 for ; Sat, 15 May 2004 08:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FFD1Xm078763 for ; Sat, 15 May 2004 08:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FFD1Oo026383; Sat, 15 May 2004 08:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FFCIOo026337 for ; Sat, 15 May 2004 08:12:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FFCIXm078759 for ; Sat, 15 May 2004 08:12:18 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FFCIgd063734 for ; Sat, 15 May 2004 08:12:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FFCI2H063733; Sat, 15 May 2004 08:12:18 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405151512.i4FFCI2H063733@xorpc.icir.org> Date: Sat, 15 May 2004 8:12:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc ...route_table_deletion.hh ...route_table_dump.cc ...route_table_dump.hh ...route_table_fanout.cc ...route_table_fanout.hh ...route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh ...subnet_route.hh ...test_decision.cc ...test_dump.cc ...test_filter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/15 08:12:18 Modified files: xorp/bgp/: plumbing.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh subnet_route.hh test_decision.cc test_dump.cc test_filter.cc Log message: Keep much better track of the genid associated with routes: - lookup_route now also returns the genid - CacheTable stores the genid along with the route. - DecisionTable keeps track of the current genid with each peer. - nowhere should GENID_UNKNOWN be passed downstream. The DumpTable is critically dependent on the genid information for it's correctness. When it was first added, genid was only a hint, and so there were cases that weren't handled properly. These changes should mean that wherever it's present, it's actually correct. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 9:05:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 09:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FG61NG074676 for ; Sat, 15 May 2004 09:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FG61Xm079315 for ; Sat, 15 May 2004 09:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FG60Oo027236; Sat, 15 May 2004 09:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FG5MOo027219 for ; Sat, 15 May 2004 09:05:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FG5MXm079303 for ; Sat, 15 May 2004 09:05:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FG5Mgd066866 for ; Sat, 15 May 2004 09:05:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FG5MX8066865; Sat, 15 May 2004 09:05:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405151605.i4FG5MX8066865@xorpc.icir.org> Date: Sat, 15 May 2004 9:05:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh peer_route_pair.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc test_dump.cc test_ribin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/15 09:05:22 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh peer_route_pair.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc test_dump.cc test_ribin.cc Log message: Initialize the DumpTable with the genids of the peers to dump, rather than deducing this information from the routes that are dumped. Should be the same, but it's clearer what is supposed to happen. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 9:37:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 09:38:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FGc0NG080287 for ; Sat, 15 May 2004 09:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FGc0Xm079652 for ; Sat, 15 May 2004 09:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FGc0Oo027772; Sat, 15 May 2004 09:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FGbwOo027766 for ; Sat, 15 May 2004 09:37:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FGbwXm079650 for ; Sat, 15 May 2004 09:37:58 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FGbwgd068881 for ; Sat, 15 May 2004 09:37:58 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FGbw7F068880; Sat, 15 May 2004 09:37:58 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405151637.i4FGbw7F068880@xorpc.icir.org> Date: Sat, 15 May 2004 9:37:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/15 09:37:58 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh Log message: add missing typenames for gcc3.4 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 11:31:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 11:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FIW1NG013408 for ; Sat, 15 May 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FIW1Xm080884 for ; Sat, 15 May 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FIW0Oo029749; Sat, 15 May 2004 11:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FIVgOo029740 for ; Sat, 15 May 2004 11:31:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FIVgXm080879 for ; Sat, 15 May 2004 11:31:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FIVggd074331 for ; Sat, 15 May 2004 11:31:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FIVgWB074330; Sat, 15 May 2004 11:31:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405151831.i4FIVgWB074330@xorpc.icir.org> Date: Sat, 15 May 2004 11:31:41 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh plumbing.cc plumbing.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/ print_routes.cc print_routes.hh xorp/libxorp/ callback_debug.hh callback_nodebug.hh xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/05/15 11:31:41 Modified files: xorp/bgp/: bgp.cc bgp.hh plumbing.cc plumbing.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/: print_routes.cc print_routes.hh xorp/libxorp/: callback_debug.hh callback_nodebug.hh xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh Log message: Support for getting multicast routing tables and slight refactoring. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 12:50:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 12:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FJp0NG040599 for ; Sat, 15 May 2004 12:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FJp0Xm081700 for ; Sat, 15 May 2004 12:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FJp0Oo001067; Sat, 15 May 2004 12:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FJodOo001054 for ; Sat, 15 May 2004 12:50:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FJocXm081697 for ; Sat, 15 May 2004 12:50:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FJocgd077461 for ; Sat, 15 May 2004 12:50:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FJocUq077460; Sat, 15 May 2004 12:50:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405151950.i4FJocUq077460@xorpc.icir.org> Date: Sat, 15 May 2004 12:50:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.hh plumbing.cc plumbing.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/15 12:50:38 Modified files: xorp/bgp/: bgp.hh plumbing.cc plumbing.hh Log message: gcc 2.95 isn't happy with templatised methods with no arguments gcc 3.4 is. Add a dummy argument to keep the compiler happy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 15:27:55 2004 Return-Path: pavlin@icir.org Delivery-Date: Sat, 15 May 2004 15:27:56 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FMRuNG069726 for ; Sat, 15 May 2004 15:27:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FMRuXm083349; Sat, 15 May 2004 15:27:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FMRtr6098282; Sat, 15 May 2004 15:27:55 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200405152227.i4FMRtr6098282@possum.icir.org> To: atanu@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh plumbing.cc plumbing.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/ print_routes.cc print_routes.hh xorp/libxorp/ callback_debug.hh callback_nodebug.hh xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh In-Reply-To: Message from Atanu Ghosh of "Sat, 15 May 2004 11:31:41." <200405151831.i4FIVgWB074330@xorpc.icir.org> Date: Sat, 15 May 2004 15:27:55 -0700 From: Pavlin Radoslavov > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Repository: xorp/xrl/targets/ > Changes by: atanu@xorpc.icir.org. 04/05/15 11:31:41 > > Modified files: > xorp/bgp/: bgp.cc bgp.hh plumbing.cc plumbing.hh xrl_target.cc > xrl_target.hh > xorp/bgp/tools/: print_routes.cc print_routes.hh > xorp/libxorp/: callback_debug.hh callback_nodebug.hh > xorp/mibs/: bgp4_mib_1657_bgp4pathattrtable.cc > xorp/xrl/interfaces/: bgp.xif bgp_xif.cc bgp_xif.hh > xorp/xrl/targets/: bgp.xrls bgp_base.cc bgp_base.hh > > Log message: > Support for getting multicast routing tables and slight refactoring. It looks that one of the changes is that libxorp/callback_debug.hh and libxorp/callback_nodebug.hh have been regenerated with new arguments (e.g., "-l 15" instead of "-l 13"). However, the libxorp/Makefile.am file still contains the original "-l 13" argument. Is "-l 15" now mandatory which means that libxorp/Makefile.am has to be updated as well, or the above two files were commited by accident? Pavlin From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 16:10:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 16:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNB1NG077552 for ; Sat, 15 May 2004 16:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNB1Xm083840 for ; Sat, 15 May 2004 16:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNB0Oo004198; Sat, 15 May 2004 16:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNAkOo004182 for ; Sat, 15 May 2004 16:10:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNAkXm083836 for ; Sat, 15 May 2004 16:10:46 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNAkgd084905 for ; Sat, 15 May 2004 16:10:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FNAkJt084904; Sat, 15 May 2004 16:10:46 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405152310.i4FNAkJt084904@xorpc.icir.org> Date: Sat, 15 May 2004 16:10:46 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc dump_iterators.hh route_table_ribin.cc test_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/15 16:10:46 Modified files: xorp/bgp/: dump_iterators.cc dump_iterators.hh route_table_ribin.cc test_dump.cc Log message: Complete re-write of DumpIterators. Should work better, and be more comprehensible. Previous code had evolved into incomprehensibility, and still didn't cover all the cases it needed to. Minor mods to test_dump - just to give the DumpTable the input it would normally get from the plumbing. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:40 2005 Subject: No subject Sat May 15 16:12:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 16:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FND1NG077919 for ; Sat, 15 May 2004 16:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FND1Xm083857 for ; Sat, 15 May 2004 16:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FND1Oo004233; Sat, 15 May 2004 16:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNCIOo004220 for ; Sat, 15 May 2004 16:12:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNCIXm083851 for ; Sat, 15 May 2004 16:12:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNCIgd084991 for ; Sat, 15 May 2004 16:12:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FNCIFl084990; Sat, 15 May 2004 16:12:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405152312.i4FNCIFl084990@xorpc.icir.org> Date: Sat, 15 May 2004 16:12:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/15 16:12:18 Modified files: xorp/fea/: xrl_target.cc Log message: Don't add routes for directly-connected subnets (i.e., if the protocol origin is "connected"), because that should be managed by the underlying system. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sat May 15 16:16:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 16:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNH1NG078624 for ; Sat, 15 May 2004 16:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNH1Xm083908 for ; Sat, 15 May 2004 16:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNH0Oo004298; Sat, 15 May 2004 16:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNGNOo004286 for ; Sat, 15 May 2004 16:16:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNGNXm083902 for ; Sat, 15 May 2004 16:16:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNGNgd085239 for ; Sat, 15 May 2004 16:16:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FNGNuk085238; Sat, 15 May 2004 16:16:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405152316.i4FNGNuk085238@xorpc.icir.org> Date: Sat, 15 May 2004 16:16:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ main_rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/05/15 16:16:23 Modified files: xorp/rib/: main_rib.cc Log message: Switch the RIB to use the new redist interface to send the add/delete routes to the FEA. The new interface appears to work. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sat May 15 16:58:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNx1NG085900 for ; Sat, 15 May 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNx1Xm084313 for ; Sat, 15 May 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNx0Oo004868; Sat, 15 May 2004 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4FNwgOo004861 for ; Sat, 15 May 2004 16:58:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNwgXm084309 for ; Sat, 15 May 2004 16:58:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4FNwfgd086782 for ; Sat, 15 May 2004 16:58:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4FNwfYQ086781; Sat, 15 May 2004 16:58:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405152358.i4FNwfYQ086781@xorpc.icir.org> Date: Sat, 15 May 2004 16:58:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc mfea_node_cli.cc xorp/libproto/ proto_state.hh proto_state.cc xorp/mld6igmp/ mld6igmp_node.cc mld6igmp_node_cli.cc xorp/pim/ pim_node.cc pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/15 16:58:41 Modified files: xorp/fea/: mfea_node.cc mfea_node_cli.cc xorp/libproto/: proto_state.hh proto_state.cc xorp/mld6igmp/: mld6igmp_node.cc mld6igmp_node_cli.cc xorp/pim/: pim_node.cc pim_node_cli.cc Log message: Rename ProtoState::state_string() to state_str() and change it to return a C++ string instead of a C-type string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sat May 15 17:26:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 17:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G0R1NG090828 for ; Sat, 15 May 2004 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G0R1Xm084600 for ; Sat, 15 May 2004 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G0R0Oo005411; Sat, 15 May 2004 17:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G0QPOo005396 for ; Sat, 15 May 2004 17:26:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G0QPXm084598 for ; Sat, 15 May 2004 17:26:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G0QPgd088277 for ; Sat, 15 May 2004 17:26:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4G0QPGN088276; Sat, 15 May 2004 17:26:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405160026.i4G0QPGN088276@xorpc.icir.org> Date: Sat, 15 May 2004 17:26:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc test_peer.cc xorp/fea/ fea_click.cc test_fea.cc xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/05/15 17:26:25 Modified files: xorp/bgp/harness/: coord.cc test_peer.cc xorp/fea/: fea_click.cc test_fea.cc xorp/libxipc/: call_xrl.cc Log message: When it comes to specifying the finder hostname, replace the hard-coded "localhost" with the pre-defined constant FINDER_DEFAULT_HOST [Approved by Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sat May 15 19:50:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 19:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2p2NG016257 for ; Sat, 15 May 2004 19:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2p1Xm086083 for ; Sat, 15 May 2004 19:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G2p1Oo007503; Sat, 15 May 2004 19:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G2opOo007495 for ; Sat, 15 May 2004 19:50:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2opXm086079 for ; Sat, 15 May 2004 19:50:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2opgd096946 for ; Sat, 15 May 2004 19:50:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4G2oplw096945; Sat, 15 May 2004 19:50:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405160250.i4G2oplw096945@xorpc.icir.org> Date: Sat, 15 May 2004 19:50:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/15 19:50:50 Modified files: xorp/rtrmgr/: conf_tree.cc Log message: Bug fix: add missing { } around a block. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sat May 15 19:52:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 15 May 2004 19:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2r1NG016624 for ; Sat, 15 May 2004 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2r1Xm086100 for ; Sat, 15 May 2004 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G2r1Oo007548; Sat, 15 May 2004 19:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G2qEOo007531 for ; Sat, 15 May 2004 19:52:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2qEXm086094 for ; Sat, 15 May 2004 19:52:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G2qDgd097050 for ; Sat, 15 May 2004 19:52:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4G2qD7J097049; Sat, 15 May 2004 19:52:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405160252.i4G2qD7J097049@xorpc.icir.org> Date: Sat, 15 May 2004 19:52:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/15 19:52:13 Modified files: xorp/rtrmgr/: template_tree_node.cc Log message: Bug fix: catch InvalidString instead of BadMac when we have an EtherMac constructor from a string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sun May 16 0:15:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 May 2004 00:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G7G2NG062880 for ; Sun, 16 May 2004 00:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G7G1Xm088890 for ; Sun, 16 May 2004 00:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G7G1Oo011636; Sun, 16 May 2004 00:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4G7FIOo011624 for ; Sun, 16 May 2004 00:15:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G7FIXm088885 for ; Sun, 16 May 2004 00:15:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4G7FIgd011543 for ; Sun, 16 May 2004 00:15:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4G7FIPx011542; Sun, 16 May 2004 00:15:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405160715.i4G7FIPx011542@xorpc.icir.org> Date: Sun, 16 May 2004 0:15:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot config.boot.sample config.boot.xorp0 xorp/etc/templates/ bgp.cmds bgp.tp fea.cmds fea.tp igmp.cmds interfaces.tp mfea.cmds mfea6.cmds mld.cmds ospf.tp pim.cmds pim6.cmds pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp ...static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/16 00:15:18 Modified files: xorp/rtrmgr/: config.boot config.boot.sample config.boot.xorp0 xorp/etc/templates/: bgp.cmds bgp.tp fea.cmds fea.tp igmp.cmds interfaces.tp mfea.cmds mfea6.cmds mld.cmds ospf.tp pim.cmds pim6.cmds pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp static_routes.tp Log message: Rtrmgr template and config files edits: * Use 4-space indentation * Use "-" instead of "_" in the names of template nodes and configuration statements * Rename "protocols static_routes" to "protocols static" [ Changes are based on the rough consensus we had during the last XORP meeting ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sun May 16 19:05:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 May 2004 19:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H262NG072836 for ; Sun, 16 May 2004 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H262Xm003224 for ; Sun, 16 May 2004 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4H261Oo001849; Sun, 16 May 2004 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4H25COo001835 for ; Sun, 16 May 2004 19:05:12 -0700 (PDT) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H25CXm003211; Sun, 16 May 2004 19:05:12 -0700 (PDT) (envelope-from atanu@icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H25CNG072487; Sun, 16 May 2004 19:05:12 -0700 (PDT) (envelope-from atanu@tigger.icir.org) To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc bgp.hh plumbing.cc plumbing.hh xrl_target.cc xrl_target.hh xorp/bgp/tools/ print_routes.cc print_routes.hh xorp/libxorp/ callback_debug.hh callback_nodebug.hh xorp/mibs/ bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/ bgp.xif bgp_xif.cc bgp_xif.hh xorp/xrl/targets/ bgp.xrls bgp_base.cc bgp_base.hh In-Reply-To: Message from Pavlin Radoslavov of "Sat, 15 May 2004 15:27:55 PDT." <200405152227.i4FMRtr6098282@possum.icir.org> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Mailer: MH-E 7.4.2; nmh 1.0.3; XEmacs 21.4 (patch 14) Date: Sun, 16 May 2004 19:05:12 -0700 Message-ID: <72486.1084759512@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >>>>> "Pavlin" == Pavlin Radoslavov writes: >> CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: >> xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/05/15 >> 11:31:41 >> >> Modified files: xorp/bgp/: bgp.cc bgp.hh plumbing.cc plumbing.hh >> xrl_target.cc xrl_target.hh xorp/bgp/tools/: print_routes.cc >> print_routes.hh xorp/libxorp/: callback_debug.hh >> callback_nodebug.hh xorp/mibs/: >> bgp4_mib_1657_bgp4pathattrtable.cc xorp/xrl/interfaces/: bgp.xif >> bgp_xif.cc bgp_xif.hh xorp/xrl/targets/: bgp.xrls bgp_base.cc >> bgp_base.hh >> >> Log message: Support for getting multicast routing tables and >> slight refactoring. Pavlin> It looks that one of the changes is that Pavlin> libxorp/callback_debug.hh and libxorp/callback_nodebug.hh Pavlin> have been regenerated with new arguments (e.g., "-l 15" Pavlin> instead of "-l 13"). However, the libxorp/Makefile.am file Pavlin> still contains the original "-l 13" argument. Pavlin> Is "-l 15" now mandatory which means that Pavlin> libxorp/Makefile.am has to be updated as well, or the above Pavlin> two files were commited by accident? We now need "-l 15", I didn't notice that the makefile needed to be updated. Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Sun May 16 19:07:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 16 May 2004 19:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H281NG073662 for ; Sun, 16 May 2004 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H281Xm003258 for ; Sun, 16 May 2004 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4H280Oo001902; Sun, 16 May 2004 19:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4H27tOo001895 for ; Sun, 16 May 2004 19:07:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H27tXm003255 for ; Sun, 16 May 2004 19:07:55 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4H27tgd080190 for ; Sun, 16 May 2004 19:07:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4H27tnS080189; Sun, 16 May 2004 19:07:55 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405170207.i4H27tnS080189@xorpc.icir.org> Date: Sun, 16 May 2004 19:07:55 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/05/16 19:07:55 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Callbacks can now deal with 15 arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 9:41:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 09:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HGg1NG045777 for ; Mon, 17 May 2004 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HGg1Xm015526 for ; Mon, 17 May 2004 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HGg1Oo020648; Mon, 17 May 2004 09:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HGfnOo020633 for ; Mon, 17 May 2004 09:41:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HGfnXm015524 for ; Mon, 17 May 2004 09:41:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HGfngd050729 for ; Mon, 17 May 2004 09:41:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HGfnGu050728; Mon, 17 May 2004 09:41:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405171641.i4HGfnGu050728@xorpc.icir.org> Date: Mon, 17 May 2004 9:41:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ coord.cc test_peer.cc xorp/libxipc/ call_xrl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: atanu@xorpc.icir.org. 04/05/17 09:41:49 Modified files: xorp/bgp/harness/: coord.cc test_peer.cc xorp/libxipc/: call_xrl.cc Log message: Finder host variable no longer on the the stack. Previously it was getting trashed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 11:00:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 11:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HI11NG075709 for ; Mon, 17 May 2004 11:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HI11Xm017035 for ; Mon, 17 May 2004 11:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HI11Oo023010; Mon, 17 May 2004 11:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HI0tOo023003 for ; Mon, 17 May 2004 11:00:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HI0sXm017027 for ; Mon, 17 May 2004 11:00:54 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HI0sgd055089 for ; Mon, 17 May 2004 11:00:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HI0s45055088; Mon, 17 May 2004 11:00:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405171800.i4HI0s45055088@xorpc.icir.org> Date: Mon, 17 May 2004 11:00:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/05/17 11:00:54 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: Replace \fbox with \framebox[\textwidth][l] to give consistent width boxes for command-line examples. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 11:17:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 11:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HII1NG079610 for ; Mon, 17 May 2004 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HII0Xm017287 for ; Mon, 17 May 2004 11:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HII0Oo023582; Mon, 17 May 2004 11:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HIHQOo023567 for ; Mon, 17 May 2004 11:17:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HIHQXm017278 for ; Mon, 17 May 2004 11:17:26 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HIHPgd055880 for ; Mon, 17 May 2004 11:17:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HIHPN7055879; Mon, 17 May 2004 11:17:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405171817.i4HIHPN7055879@xorpc.icir.org> Date: Mon, 17 May 2004 11:17:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/05/17 11:17:25 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: Change 'cost' tags to 'metric' for consistency. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 12:30:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 12:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HJV1NG007811 for ; Mon, 17 May 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HJV1Xm018514 for ; Mon, 17 May 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HJV1Oo025701; Mon, 17 May 2004 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HJUcOo025686 for ; Mon, 17 May 2004 12:30:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HJUbXm018509 for ; Mon, 17 May 2004 12:30:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HJUbgd059143 for ; Mon, 17 May 2004 12:30:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HJUbVs059142; Mon, 17 May 2004 12:30:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405171930.i4HJUbVs059142@xorpc.icir.org> Date: Mon, 17 May 2004 12:30:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea_click.cc test_fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/17 12:30:37 Modified files: xorp/fea/: fea_click.cc test_fea.cc Log message: Bug fix: assign the default finder hostname to a C++ string instead of a pointer to C-type string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 13:54:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 13:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HKt1NG026421 for ; Mon, 17 May 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HKt1Xm019951 for ; Mon, 17 May 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HKt1Oo027899; Mon, 17 May 2004 13:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HKsAOo027882 for ; Mon, 17 May 2004 13:54:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HKs9Xm019921 for ; Mon, 17 May 2004 13:54:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HKs9gd062462 for ; Mon, 17 May 2004 13:54:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HKs9JR062461; Mon, 17 May 2004 13:54:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405172054.i4HKs9JR062461@xorpc.icir.org> Date: Mon, 17 May 2004 13:54:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.cc mrib_table.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/05/17 13:54:09 Modified files: xorp/mrt/: mrib_table.cc mrib_table.hh Log message: Add a mechanism for updating the vif index of a Mrib entry that can be either in the main table or in the unprocessed transactions queue. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 14:06:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 14:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HL71NG029101 for ; Mon, 17 May 2004 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HL71Xm020178 for ; Mon, 17 May 2004 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HL71Oo028234; Mon, 17 May 2004 14:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HL6gOo028213 for ; Mon, 17 May 2004 14:06:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HL6gXm020172 for ; Mon, 17 May 2004 14:06:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HL6ggd063072 for ; Mon, 17 May 2004 14:06:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HL6gYN063071; Mon, 17 May 2004 14:06:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405172106.i4HL6gYN063071@xorpc.icir.org> Date: Mon, 17 May 2004 14:06:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/17 14:06:42 Modified files: xorp/pim/: pim_node.hh Log message: Remove methods PimNode::add_mrib_entry() and delete_mrib_entry(), because they are not needed, and because they bypass the transaction-based wrapping about the mrib table manipulation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 16:50:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HNp1NG065666 for ; Mon, 17 May 2004 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HNp0im022560 for ; Mon, 17 May 2004 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HNp0Cd002404; Mon, 17 May 2004 16:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4HNoACd002386 for ; Mon, 17 May 2004 16:50:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HNo9im022552 for ; Mon, 17 May 2004 16:50:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4HNo9gd069705 for ; Mon, 17 May 2004 16:50:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4HNo9xt069704; Mon, 17 May 2004 16:50:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405172350.i4HNo9xt069704@xorpc.icir.org> Date: Mon, 17 May 2004 16:50:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrib_table.hh pim_mrib_table.cc pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/17 16:50:09 Modified files: xorp/pim/: pim_mrib_table.hh pim_mrib_table.cc pim_node.cc Log message: Add a mechanism to store unresolved destination prefixes whose next-hop vif name was not resolved (e.g., the vif was unknown). Those stored prefixes will be resolved once the vif with the matching name appears. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 17:05:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 17:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I061NG068981 for ; Mon, 17 May 2004 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I061im022779 for ; Mon, 17 May 2004 17:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I061Cd002774; Mon, 17 May 2004 17:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I05ECd002749 for ; Mon, 17 May 2004 17:05:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I05Dim022767 for ; Mon, 17 May 2004 17:05:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I05Dgd070971 for ; Mon, 17 May 2004 17:05:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I05Dqk070968; Mon, 17 May 2004 17:05:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180005.i4I05Dqk070968@xorpc.icir.org> Date: Mon, 17 May 2004 17:05:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ module_command.cc module_command.hh task.cc task.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/17 17:05:13 Modified files: xorp/rtrmgr/: module_command.cc module_command.hh task.cc task.hh Log message: Add support for "%modinfo: startupmethod" to specify the optional XRL that should be sent to a process once it has started to explicitly activate it. Currently, the "startupmethod" XRL is sent once the process is in PROC_STARTUP state. The reason we sometime need this explicit activation XRL is when more than one modules are linked within the same binary. For example, the xorp_fea binary contains the MFEA. However, currently even if the MFEA is not needed (e.g., multicast is not configured), then the xorp_fea will still have to call the MFEA startup() method to activate it so its state becomes PROC_READY (just in case it is needed) which is wrong. With the explicit "startupmethod", the MFEA can stay in PROC_STARTUP state until it receives this explicit startup XRL. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 18:06:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 18:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I171NG088493 for ; Mon, 17 May 2004 18:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I171im023561 for ; Mon, 17 May 2004 18:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I171Cd004045; Mon, 17 May 2004 18:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I16oCd004036 for ; Mon, 17 May 2004 18:06:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I16oim023559 for ; Mon, 17 May 2004 18:06:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I16ogd077460 for ; Mon, 17 May 2004 18:06:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I16ov7077459; Mon, 17 May 2004 18:06:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180106.i4I16ov7077459@xorpc.icir.org> Date: Mon, 17 May 2004 18:06:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fea.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp static_routes.tp xorp/rtrmgr/ boot.ll boot.yy conf_tree.cc template.ll template.yy template_tree.cc template_tree_node.cc template_tree_node.hh y.boot_tab.cc y.tplt_tab.cc y.tplt_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/17 18:06:50 Modified files: xorp/etc/templates/: bgp.tp fea.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp static_routes.tp xorp/rtrmgr/: boot.ll boot.yy conf_tree.cc template.ll template.yy template_tree.cc template_tree_node.cc template_tree_node.hh y.boot_tab.cc y.tplt_tab.cc y.tplt_tab.h Log message: Template keywords renaming (for naming consistency with libxorp and the XRLs): ipv4_prefix -> ipv4net ipv6_prefix -> ipv6net uint -> u32 int -> i32 text -> txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:41 2005 Subject: No subject Mon May 17 18:19:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 18:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1K1NG091292 for ; Mon, 17 May 2004 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1K1im023713 for ; Mon, 17 May 2004 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I1K1Cd004345; Mon, 17 May 2004 18:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I1JYCd004333 for ; Mon, 17 May 2004 18:19:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1JYim023707 for ; Mon, 17 May 2004 18:19:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1JYgd078981 for ; Mon, 17 May 2004 18:19:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I1JYh7078980; Mon, 17 May 2004 18:19:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180119.i4I1JYh7078980@xorpc.icir.org> Date: Mon, 17 May 2004 18:19:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/17 18:19:34 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Template keywords renaming (for naming consistency with libxorp and the XRLs): ipv4_prefix -> ipv4net ipv6_prefix -> ipv6net uint -> u32 int -> i32 text -> txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Mon May 17 18:26:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 18:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1R1NG092852 for ; Mon, 17 May 2004 18:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1R1im023815 for ; Mon, 17 May 2004 18:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I1R1Cd004514; Mon, 17 May 2004 18:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I1QWCd004502 for ; Mon, 17 May 2004 18:26:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1QWim023807 for ; Mon, 17 May 2004 18:26:32 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I1QWgd079667 for ; Mon, 17 May 2004 18:26:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I1QWnT079666; Mon, 17 May 2004 18:26:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405180126.i4I1QWnT079666@xorpc.icir.org> Date: Mon, 17 May 2004 18:26:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: atanu@xorpc.icir.org. 04/05/17 18:26:32 Modified files: xorp/bgp/tools/: print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_routes.cc Log message: Print IPv6 and multicast routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Mon May 17 20:35:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 20:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I3a1NG016228 for ; Mon, 17 May 2004 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I3a1im025418 for ; Mon, 17 May 2004 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I3a1Cd006876; Mon, 17 May 2004 20:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I3ZICd006866 for ; Mon, 17 May 2004 20:35:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I3ZHim025414 for ; Mon, 17 May 2004 20:35:17 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I3ZHgd089542 for ; Mon, 17 May 2004 20:35:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I3ZH2E089541; Mon, 17 May 2004 20:35:17 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405180335.i4I3ZH2E089541@xorpc.icir.org> Date: Mon, 17 May 2004 20:35:17 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ xorpsh_print_routes.cc xorp/etc/templates/ bgp.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/05/17 20:35:17 Modified files: xorp/bgp/tools/: xorpsh_print_routes.cc xorp/etc/templates/: bgp.cmds Log message: Enable printing of IPv6 and multicast routes from within the xorpsh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Mon May 17 23:16:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 23:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6H1NG058539 for ; Mon, 17 May 2004 23:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6H1im027276 for ; Mon, 17 May 2004 23:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I6H0Cd009858; Mon, 17 May 2004 23:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I6GfCd009846 for ; Mon, 17 May 2004 23:16:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6Gfim027270 for ; Mon, 17 May 2004 23:16:41 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6Gfgd095696 for ; Mon, 17 May 2004 23:16:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I6GeZw095695; Mon, 17 May 2004 23:16:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405180616.i4I6GeZw095695@xorpc.icir.org> Date: Mon, 17 May 2004 23:16:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.hh xorpsh_print_routes.cc xorp/etc/templates/ bgp.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/05/17 23:16:40 Modified files: xorp/bgp/tools/: print_routes.hh xorpsh_print_routes.cc xorp/etc/templates/: bgp.cmds Log message: Printing ipv6 and multicast routes. Correct the mismatch between the xorpsh commands files and xorp_print_routes. Modify the formatting to compensate for larger ipv6 addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Mon May 17 23:54:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 May 2004 23:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6t1NG066918 for ; Mon, 17 May 2004 23:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6t0im027716 for ; Mon, 17 May 2004 23:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I6t0Cd010763; Mon, 17 May 2004 23:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I6stCd010756 for ; Mon, 17 May 2004 23:54:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6stim027708 for ; Mon, 17 May 2004 23:54:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I6stgd096183 for ; Mon, 17 May 2004 23:54:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I6stUx096182; Mon, 17 May 2004 23:54:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180654.i4I6stUx096182@xorpc.icir.org> Date: Mon, 17 May 2004 23:54:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/17 23:54:55 Modified files: xorp/pim/: xrl_pim_node.cc Log message: Add a mechanism to store unresolved destination prefixes whose next-hop vif name was not resolved (e.g., the vif was unknown). Those stored prefixes will be resolved once the vif with the matching name appears. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 0:11:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 00:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7C1NG070786 for ; Tue, 18 May 2004 00:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7C0im027950 for ; Tue, 18 May 2004 00:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7C0Cd011189; Tue, 18 May 2004 00:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7B9Cd011174 for ; Tue, 18 May 2004 00:11:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7B9im027941 for ; Tue, 18 May 2004 00:11:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7B9gd096870 for ; Tue, 18 May 2004 00:11:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I7B9wj096869; Tue, 18 May 2004 00:11:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180711.i4I7B9wj096869@xorpc.icir.org> Date: Tue, 18 May 2004 0:11:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp static_routes.tp xorp/rtrmgr/ TODO module_command.cc module_command.hh xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/18 00:11:09 Modified files: xorp/etc/templates/: bgp.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp rip.tp ripng.tp snmp.tp static_routes.tp xorp/rtrmgr/: TODO module_command.cc module_command.hh xorp/docs/rtrmgr/: rtrmgr.tex Log message: * Rename following rtrmgr template keywords (to improve readability): startcommit -> start_commit endcommit -> end_commit statusmethod -> status_method startupmethod -> startup_method shutdownmethod -> shutdown_method * Add text to docs/rtrmgr/rtrmgr.tex with explanation about the new "%modinfo: startup_method" subcpmmand. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 0:45:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 00:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7k1NG083806 for ; Tue, 18 May 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7k1im028366 for ; Tue, 18 May 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7k1Cd011974; Tue, 18 May 2004 00:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7jKCd011961 for ; Tue, 18 May 2004 00:45:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7jKim028359 for ; Tue, 18 May 2004 00:45:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7jKgd099690 for ; Tue, 18 May 2004 00:45:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I7jKiw099689; Tue, 18 May 2004 00:45:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180745.i4I7jKiw099689@xorpc.icir.org> Date: Tue, 18 May 2004 0:45:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/18 00:45:20 Modified files: xorp/etc/templates/: igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Log message: Added startup_method subcommand. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 0:47:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 00:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7m1NG084181 for ; Tue, 18 May 2004 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7m0im028382 for ; Tue, 18 May 2004 00:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7m0Cd012014; Tue, 18 May 2004 00:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4I7lLCd012001 for ; Tue, 18 May 2004 00:47:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7lLim028378 for ; Tue, 18 May 2004 00:47:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4I7lLgd099922 for ; Tue, 18 May 2004 00:47:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4I7lLSY099921; Tue, 18 May 2004 00:47:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405180747.i4I7lLSY099921@xorpc.icir.org> Date: Tue, 18 May 2004 0:47:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc xorp/mld6igmp/ xorp_igmp.cc xorp_mld.cc xorp/pim/ xorp_pimsm4.cc xorp_pimsm6.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/18 00:47:21 Modified files: xorp/fea/: fea.cc xorp/mld6igmp/: xorp_igmp.cc xorp_mld.cc xorp/pim/: xorp_pimsm4.cc xorp_pimsm6.cc Log message: Don't call startup() method uncoditionally; instead, assume that the appropriate startup_method XRL from the rtrmgr template files will be called. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 9:21:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 09:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IGM1NG090208 for ; Tue, 18 May 2004 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IGM1im037170 for ; Tue, 18 May 2004 09:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IGM1Cd024960; Tue, 18 May 2004 09:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IGL8Cd024925 for ; Tue, 18 May 2004 09:21:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IGL7im037159 for ; Tue, 18 May 2004 09:21:07 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IGL7gd041025 for ; Tue, 18 May 2004 09:21:07 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4IGL7tR041024; Tue, 18 May 2004 09:21:07 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405181621.i4IGL7tR041024@xorpc.icir.org> Date: Tue, 18 May 2004 9:21:07 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/18 09:21:07 Modified files: xorp/bgp/: dump_iterators.cc route_table_dump.cc Log message: Fix bug in new DumpIterator code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 14:01:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 14:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IL21NG051783 for ; Tue, 18 May 2004 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IL21im041227 for ; Tue, 18 May 2004 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IL212w003876; Tue, 18 May 2004 14:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IL1q2w003867 for ; Tue, 18 May 2004 14:01:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IL1qim041222 for ; Tue, 18 May 2004 14:01:52 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IL1qgd053818 for ; Tue, 18 May 2004 14:01:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4IL1pPH053817; Tue, 18 May 2004 14:01:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405182101.i4IL1pPH053817@xorpc.icir.org> Date: Tue, 18 May 2004 14:01:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/05/18 14:01:51 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: Add help strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 14:35:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 14:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ILa1NG059202 for ; Tue, 18 May 2004 14:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ILa1im041681 for ; Tue, 18 May 2004 14:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ILa12w004806; Tue, 18 May 2004 14:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4ILZm2w004797 for ; Tue, 18 May 2004 14:35:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ILZmim041675 for ; Tue, 18 May 2004 14:35:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4ILZlgd055057 for ; Tue, 18 May 2004 14:35:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4ILZl6g055056; Tue, 18 May 2004 14:35:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405182135.i4ILZl6g055056@xorpc.icir.org> Date: Tue, 18 May 2004 14:35:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc redist_xrl.hh rt_tab_redist.cc rt_tab_redist.hh test_redist.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/05/18 14:35:47 Modified files: xorp/rib/: redist_xrl.cc redist_xrl.hh rt_tab_redist.cc rt_tab_redist.hh test_redist.cc Log message: Additional messages for starting and ending initial route dump that occurs with redist table when it starts announcing routes to interested parties. This allows for "show rib routes" commands like show all ipv4 routes, show rip ipv4 routes, show ebgp multicast routes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 15:13:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 15:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IME1NG067533 for ; Tue, 18 May 2004 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IME0im042272 for ; Tue, 18 May 2004 15:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IME02w005825; Tue, 18 May 2004 15:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IMDA2w005788 for ; Tue, 18 May 2004 15:13:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMDAim042256 for ; Tue, 18 May 2004 15:13:10 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMD9gd056599 for ; Tue, 18 May 2004 15:13:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4IMD9aT056598; Tue, 18 May 2004 15:13:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405182213.i4IMD9aT056598@xorpc.icir.org> Date: Tue, 18 May 2004 15:13:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_mirror.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/05/18 15:13:09 Modified files: xorp/libfeaclient/: ifmgr_xrl_mirror.cc Log message: Fix destructor so it is safe to invoke if startup() has not been called. Cores in the wild found by Pavlin. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 15:15:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 15:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMG1NG067998 for ; Tue, 18 May 2004 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMG1im042316 for ; Tue, 18 May 2004 15:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IMG12w005898; Tue, 18 May 2004 15:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IMFI2w005864 for ; Tue, 18 May 2004 15:15:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMFIim042306 for ; Tue, 18 May 2004 15:15:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMFIgd056732 for ; Tue, 18 May 2004 15:15:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4IMFIYQ056731; Tue, 18 May 2004 15:15:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405182215.i4IMFIYQ056731@xorpc.icir.org> Date: Tue, 18 May 2004 15:15:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc xorp/mld6igmp/ mld6igmp_node.cc xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/18 15:15:18 Modified files: xorp/fea/: mfea_node.cc xorp/mld6igmp/: mld6igmp_node.cc xorp/pim/: pim_node.cc Log message: Reimplement delete_all_vifs() method to delete properly all vifs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 15:21:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 15:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMM1NG069320 for ; Tue, 18 May 2004 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMM0im042408 for ; Tue, 18 May 2004 15:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IMM02w006108; Tue, 18 May 2004 15:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4IMLH2w006073 for ; Tue, 18 May 2004 15:21:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMLHim042405 for ; Tue, 18 May 2004 15:21:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4IMLHgd056973 for ; Tue, 18 May 2004 15:21:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4IMLHvl056972; Tue, 18 May 2004 15:21:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405182221.i4IMLHvl056972@xorpc.icir.org> Date: Tue, 18 May 2004 15:21:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fea.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/18 15:21:17 Modified files: xorp/fea/: fea.cc Log message: Fix the MFEA-related behavior in case the MFEA is not explicitly activated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Tue May 18 21:48:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 May 2004 21:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J4n1NG049021 for ; Tue, 18 May 2004 21:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J4n1im047540 for ; Tue, 18 May 2004 21:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4J4n12w014968; Tue, 18 May 2004 21:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4J4mf2w014955 for ; Tue, 18 May 2004 21:48:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J4mfim047538 for ; Tue, 18 May 2004 21:48:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J4megd084571 for ; Tue, 18 May 2004 21:48:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4J4meND084570; Tue, 18 May 2004 21:48:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405190448.i4J4meND084570@xorpc.icir.org> Date: Tue, 18 May 2004 21:48:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_state.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/05/18 21:48:40 Modified files: xorp/libproto/: proto_state.cc Log message: Fix the ProtoState::shutdown() behavior so now it is OK to call shutdown() while in SHUTTING_DOWN state. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Wed May 19 1:46:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 01:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J8l1NG091633 for ; Wed, 19 May 2004 01:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J8l1im050501 for ; Wed, 19 May 2004 01:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4J8l02w019921; Wed, 19 May 2004 01:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4J8kg2w019913 for ; Wed, 19 May 2004 01:46:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J8kgim050494 for ; Wed, 19 May 2004 01:46:42 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4J8kggd003610 for ; Wed, 19 May 2004 01:46:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4J8kgAo003609; Wed, 19 May 2004 01:46:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405190846.i4J8kgAo003609@xorpc.icir.org> Date: Wed, 19 May 2004 1:46:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/19 01:46:42 Modified files: xorp/bgp/: route_table_dump.cc Log message: Fix dump bug (bad assumption on my part about order of execution during peer shutdown). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Wed May 19 3:25:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 03:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAQ1NG010397 for ; Wed, 19 May 2004 03:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAQ1im052262 for ; Wed, 19 May 2004 03:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JAQ02w022092; Wed, 19 May 2004 03:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JAPL2w022065 for ; Wed, 19 May 2004 03:25:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAPLim052251 for ; Wed, 19 May 2004 03:25:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAPLgd011781 for ; Wed, 19 May 2004 03:25:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JAPLXV011780; Wed, 19 May 2004 03:25:21 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405191025.i4JAPLXV011780@xorpc.icir.org> Date: Wed, 19 May 2004 3:25:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ internal_message.cc internal_message.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/19 03:25:21 Modified files: xorp/bgp/: internal_message.cc internal_message.hh Log message: Removed unused methods relating to igp metric. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Wed May 19 3:27:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 03:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAS1NG010763 for ; Wed, 19 May 2004 03:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAS1im052285 for ; Wed, 19 May 2004 03:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JAS12w022170; Wed, 19 May 2004 03:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JAR32w022130 for ; Wed, 19 May 2004 03:27:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAR2im052279 for ; Wed, 19 May 2004 03:27:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JAR2gd011971 for ; Wed, 19 May 2004 03:27:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JAR2RW011968; Wed, 19 May 2004 03:27:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405191027.i4JAR2RW011968@xorpc.icir.org> Date: Wed, 19 May 2004 3:27:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_nhlookup.cc subnet_route.cc subnet_route.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/19 03:27:02 Modified files: xorp/bgp/: route_table_nhlookup.cc subnet_route.cc subnet_route.hh Log message: Record in the SubnetRoute itself whether or not the nexthop resolved. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:42 2005 Subject: No subject Wed May 19 6:23:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 06:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JDO1NG041409 for ; Wed, 19 May 2004 06:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JDO1im054486 for ; Wed, 19 May 2004 06:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JDO12w027478; Wed, 19 May 2004 06:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JDNB2w027453 for ; Wed, 19 May 2004 06:23:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JDNAim054474 for ; Wed, 19 May 2004 06:23:10 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JDNAgd025994 for ; Wed, 19 May 2004 06:23:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JDNA6J025993; Wed, 19 May 2004 06:23:10 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405191323.i4JDNA6J025993@xorpc.icir.org> Date: Wed, 19 May 2004 6:23:10 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_fanout.cc test_dump.cc test_fanout.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/19 06:23:10 Modified files: xorp/bgp/: route_table_fanout.cc test_dump.cc test_fanout.cc Log message: Add a sanity check - routes whose nexthop didn't resolve should NEVER reach the FanoutTable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Wed May 19 10:37:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 10:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JHc1NG087870 for ; Wed, 19 May 2004 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JHc1im059371 for ; Wed, 19 May 2004 10:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JHc12w004181; Wed, 19 May 2004 10:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JHb42w004155 for ; Wed, 19 May 2004 10:37:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JHb4im059357 for ; Wed, 19 May 2004 10:37:04 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JHb3gd045102 for ; Wed, 19 May 2004 10:37:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JHb3Oe045101; Wed, 19 May 2004 10:37:03 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405191737.i4JHb3Oe045101@xorpc.icir.org> Date: Wed, 19 May 2004 10:37:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_dump.cc route_table_fanout.cc route_table_ribin.cc subnet_route.cc test_decision.reference test_main.cc test_ribin.reference Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/19 10:37:03 Modified files: xorp/bgp/: route_table_dump.cc route_table_fanout.cc route_table_ribin.cc subnet_route.cc test_decision.reference test_main.cc test_ribin.reference Log message: Fix two bugs: - peering_is_down *can* be called on a peering that is up! It only indicates that there is a DeletionTable that is active. Fix broken assumption in DumpTable. - when a BGP nexthop changes, RibIn used to send a replace(x, x) to force the nexthop lookup and decision to be revisited. This isn't safe - using the same route as both halves of the replace can cause us to get confused about what the meaning of the flags is. For example, when we set not winner on the old route and winner on the new one. Instead, get RibIn to send delete and then add. This is less efficient, but more likely to work correctly. Hopefully these fix today's tinderbox breakage. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Wed May 19 12:19:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 12:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJK1NG016098 for ; Wed, 19 May 2004 12:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJK1im060869 for ; Wed, 19 May 2004 12:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JJK12w007143; Wed, 19 May 2004 12:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JJJ62w007117 for ; Wed, 19 May 2004 12:19:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJJ6im060842 for ; Wed, 19 May 2004 12:19:06 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJJ6gd049580 for ; Wed, 19 May 2004 12:19:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JJJ6c0049579; Wed, 19 May 2004 12:19:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405191919.i4JJJ6c0049579@xorpc.icir.org> Date: Wed, 19 May 2004 12:19:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_rib1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/05/19 12:19:06 Modified files: xorp/bgp/harness/: test_rib1.sh Log message: Remove "no_fea" call on the RIB process. In anticipation of this interface being removed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Wed May 19 12:48:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 12:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJn1NG021787 for ; Wed, 19 May 2004 12:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJn0im061254 for ; Wed, 19 May 2004 12:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JJn02w007850; Wed, 19 May 2004 12:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4JJmY2w007833 for ; Wed, 19 May 2004 12:48:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJmYim061249 for ; Wed, 19 May 2004 12:48:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4JJmYgd051224 for ; Wed, 19 May 2004 12:48:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4JJmYt0051223; Wed, 19 May 2004 12:48:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405191948.i4JJmYt0051223@xorpc.icir.org> Date: Wed, 19 May 2004 12:48:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.hh xorp/mld6igmp/ mld6igmp_node.hh xorp/pim/ pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/19 12:48:34 Modified files: xorp/fea/: mfea_node.hh xorp/mld6igmp/: mld6igmp_node.hh xorp/pim/: pim_node.hh Log message: Kdoc-related nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Wed May 19 20:17:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 20:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3I1NG008736 for ; Wed, 19 May 2004 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3I1im067556 for ; Wed, 19 May 2004 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4K3I02w018659; Wed, 19 May 2004 20:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4K3Hk2w018652 for ; Wed, 19 May 2004 20:17:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3Hkim067552 for ; Wed, 19 May 2004 20:17:46 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3Hkgd099185 for ; Wed, 19 May 2004 20:17:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4K3HkCf099184; Wed, 19 May 2004 20:17:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405200317.i4K3HkCf099184@xorpc.icir.org> Date: Wed, 19 May 2004 20:17:46 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.9 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/19 20:17:46 Added files: other/testbed/config/: XORP-4.9 Log message: Generic FreeBSD 4.9 Configuration. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Wed May 19 20:18:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 May 2004 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3J1NG008937 for ; Wed, 19 May 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3J1im067569 for ; Wed, 19 May 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4K3J12w018684; Wed, 19 May 2004 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4K3IV2w018672 for ; Wed, 19 May 2004 20:18:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3IVim067561 for ; Wed, 19 May 2004 20:18:31 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4K3IVgd099281 for ; Wed, 19 May 2004 20:18:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4K3IVHl099280; Wed, 19 May 2004 20:18:31 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405200318.i4K3IVHl099280@xorpc.icir.org> Date: Wed, 19 May 2004 20:18:31 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.9 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/19 20:18:31 Modified files: other/testbed/config/: XORP-4.9 Log message: Deltas for the testbed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 8:53:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 08:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KFs1NG042754 for ; Thu, 20 May 2004 08:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KFs1im078650 for ; Thu, 20 May 2004 08:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KFs02w005902; Thu, 20 May 2004 08:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KFrs2w005895 for ; Thu, 20 May 2004 08:53:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KFrsim078648 for ; Thu, 20 May 2004 08:53:54 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KFrsgd060224 for ; Thu, 20 May 2004 08:53:54 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KFrs2u060223; Thu, 20 May 2004 08:53:54 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405201553.i4KFrs2u060223@xorpc.icir.org> Date: Thu, 20 May 2004 8:53:54 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.cc print_routes.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: hodson@xorpc.icir.org. 04/05/20 08:53:54 Modified files: xorp/bgp/tools/: print_routes.cc print_routes.hh Log message: Fix compilation on gcc-3.3. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 13:52:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 13:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKr1NG094728 for ; Thu, 20 May 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKr1im083386 for ; Thu, 20 May 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KKr12w013777; Thu, 20 May 2004 13:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KKqM2w013753 for ; Thu, 20 May 2004 13:52:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKqMim083371 for ; Thu, 20 May 2004 13:52:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKqMgd086966 for ; Thu, 20 May 2004 13:52:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KKqMN7086965; Thu, 20 May 2004 13:52:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405202052.i4KKqMN7086965@xorpc.icir.org> Date: Thu, 20 May 2004 13:52:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_config.cc mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/05/20 13:52:22 Modified files: xorp/fea/: mfea_config.cc mfea_node.hh xrl_mfea_node.cc xrl_mfea_node.hh xorp/libproto/: proto_node.hh Log message: Kdoc-related nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 13:57:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 13:58:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKw0NG095785 for ; Thu, 20 May 2004 13:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKw0im083515 for ; Thu, 20 May 2004 13:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KKw02w013985; Thu, 20 May 2004 13:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KKvV2w013947 for ; Thu, 20 May 2004 13:57:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKvUim083503 for ; Thu, 20 May 2004 13:57:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKvUgd087231 for ; Thu, 20 May 2004 13:57:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KKvUiU087230; Thu, 20 May 2004 13:57:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405202057.i4KKvUiU087230@xorpc.icir.org> Date: Thu, 20 May 2004 13:57:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/20 13:57:30 Modified files: xorp/fea/: mfea_node.cc Log message: * Remove a hack for updating the node status on startup that was needed because of a race condition on startup. Now this hack is not needed, because the rtrmgr uses "startup_method" XRL to activate the MFEA. * Consistency-triggered replacement of ProtoUnit::stop() with ProtoNode::stop() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 13:59:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 14:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KL01NG096222 for ; Thu, 20 May 2004 14:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KL01im083569 for ; Thu, 20 May 2004 14:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KL012w014035; Thu, 20 May 2004 14:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KKx72w014009 for ; Thu, 20 May 2004 13:59:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKx7im083545 for ; Thu, 20 May 2004 13:59:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KKx7gd087339 for ; Thu, 20 May 2004 13:59:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KKx7mg087338; Thu, 20 May 2004 13:59:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405202059.i4KKx7mg087338@xorpc.icir.org> Date: Thu, 20 May 2004 13:59:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ mld6igmp_node.cc xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/20 13:59:07 Modified files: xorp/mld6igmp/: mld6igmp_node.cc xorp/pim/: pim_node.cc Log message: Consistency-triggered replacement of ProtoUnit::stop() with ProtoNode::stop() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 15:18:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 15:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KMJ1NG010920 for ; Thu, 20 May 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KMJ1im084878 for ; Thu, 20 May 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KMJ02w016196; Thu, 20 May 2004 15:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KMIK2w016185 for ; Thu, 20 May 2004 15:18:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KMIKim084872 for ; Thu, 20 May 2004 15:18:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KMIKgd090397 for ; Thu, 20 May 2004 15:18:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KMIKA3090396; Thu, 20 May 2004 15:18:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405202218.i4KMIKA3090396@xorpc.icir.org> Date: Thu, 20 May 2004 15:18:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc xorp/rib/ Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc rib.cc rib.hh rib_manager.cc rib_manager.hh test_register.cc test_register_xrls.cc test_rib_xrls.cc vifmanager.cc ...vifmanager.hh ...xrl_target.cc ...xrl_target.hh xorp/xrl/targets/ Makefile.am Makefile.in rib.tgt rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/20 15:18:19 Modified files: xorp/pim/: test_pim.cc xorp/rib/: Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc rib.cc rib.hh rib_manager.cc rib_manager.hh test_register.cc test_register_xrls.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc xrl_target.hh xorp/xrl/targets/: Makefile.am Makefile.in rib.tgt rib.xrls rib_base.cc rib_base.hh Log message: Replace inside RIB the old XRL interface (fea_ifmgr.xif) for obtaining the set of network interfaces from the FEA with the new mechanism implemented in libfeaclient. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 16:45:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 16:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KNk1NG021164 for ; Thu, 20 May 2004 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KNk1im086086 for ; Thu, 20 May 2004 16:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KNk12w018258; Thu, 20 May 2004 16:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4KNjm2w018250 for ; Thu, 20 May 2004 16:45:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KNjmim086081 for ; Thu, 20 May 2004 16:45:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4KNjmgd093854 for ; Thu, 20 May 2004 16:45:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4KNjmRW093853; Thu, 20 May 2004 16:45:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405202345.i4KNjmRW093853@xorpc.icir.org> Date: Thu, 20 May 2004 16:45:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc xrl_rib_shell_funcs.sh xorp/rib/ TODO dummy_rib_manager.cc dummy_rib_manager.hh rib_manager.cc rib_manager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/20 16:45:48 Modified files: xorp/pim/: test_pim.cc xrl_rib_shell_funcs.sh xorp/rib/: TODO dummy_rib_manager.cc dummy_rib_manager.hh rib_manager.cc rib_manager.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Remove the no_fea mechanism for disabling the communication from the RIB to the FEA, because it is obsoleted and unnecessary (e.g., either use xorp_fea_dummy or don't add at all the FEA as a RIB client). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 17:02:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 17:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L031NG022603 for ; Thu, 20 May 2004 17:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L030im086327 for ; Thu, 20 May 2004 17:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L0302w018764; Thu, 20 May 2004 17:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L02u2w018758 for ; Thu, 20 May 2004 17:02:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L02uim086325 for ; Thu, 20 May 2004 17:02:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L02ugd094955 for ; Thu, 20 May 2004 17:02:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L02uUh094954; Thu, 20 May 2004 17:02:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405210002.i4L02uUh094954@xorpc.icir.org> Date: Thu, 20 May 2004 17:02:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ xrl_target.hh xorp/xrl/interfaces/ rib.xif rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/05/20 17:02:56 Modified files: xorp/rib/: xrl_target.hh xorp/xrl/interfaces/: rib.xif rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.hh Log message: * Add few Kdoc comments * Copy some missing Kdoc comments from the RIB XRL interface to rib/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 18:05:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 18:06:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L163NG032004 for ; Thu, 20 May 2004 18:06:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L162im087172 for ; Thu, 20 May 2004 18:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L1612w020271; Thu, 20 May 2004 18:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L1582w020245 for ; Thu, 20 May 2004 18:05:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L158im087164 for ; Thu, 20 May 2004 18:05:08 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L158gd010550 for ; Thu, 20 May 2004 18:05:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L158KN010537; Thu, 20 May 2004 18:05:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405210105.i4L158KN010537@xorpc.icir.org> Date: Thu, 20 May 2004 18:05:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.9-smp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/20 18:05:02 Added files: other/testbed/config/: XORP-4.9-smp Log message: Copy of the XORP-4.9 config. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 18:08:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 18:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L191NG032492 for ; Thu, 20 May 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L191im087220 for ; Thu, 20 May 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L1902w020364; Thu, 20 May 2004 18:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L1832w020338 for ; Thu, 20 May 2004 18:08:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L183im087203 for ; Thu, 20 May 2004 18:08:03 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L182gd010882 for ; Thu, 20 May 2004 18:08:02 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L182R7010877; Thu, 20 May 2004 18:08:02 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405210108.i4L182R7010877@xorpc.icir.org> Date: Thu, 20 May 2004 18:08:02 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ XORP-4.9-smp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/config/ Changes by: atanu@xorpc.icir.org. 04/05/20 18:08:02 Modified files: other/testbed/config/: XORP-4.9-smp Log message: Enable SMP and disable device polling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 20:02:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 20:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L331NG055940 for ; Thu, 20 May 2004 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L331im088650 for ; Thu, 20 May 2004 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L3312w022787; Thu, 20 May 2004 20:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L32h2w022780 for ; Thu, 20 May 2004 20:02:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L32him088648 for ; Thu, 20 May 2004 20:02:43 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L32hgd038637 for ; Thu, 20 May 2004 20:02:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L32hQg038636; Thu, 20 May 2004 20:02:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405210302.i4L32hQg038636@xorpc.icir.org> Date: Thu, 20 May 2004 20:02:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ rib_ipc_handler.cc rib_ipc_handler.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/20 20:02:43 Modified files: xorp/bgp/: rib_ipc_handler.cc rib_ipc_handler.hh Log message: Allow a fixed window of route add/delete XRLs to be in flight from BGP to the RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 21:46:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 21:47:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4l0NG072198 for ; Thu, 20 May 2004 21:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4l0im090057 for ; Thu, 20 May 2004 21:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L4l02w024845; Thu, 20 May 2004 21:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L4ka2w024835 for ; Thu, 20 May 2004 21:46:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4kaim090047 for ; Thu, 20 May 2004 21:46:36 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4kagd045138 for ; Thu, 20 May 2004 21:46:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L4kauR045137; Thu, 20 May 2004 21:46:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405210446.i4L4kauR045137@xorpc.icir.org> Date: Thu, 20 May 2004 21:46:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 04/05/20 21:46:36 Modified files: ./: configure.in configure Log message: Probe for GNU make under well known names and fix the info message at the end of configure if GNU make is not found. Reported by: Mark Handley http://www.xorp.org/bugzilla/show_bug.cgi?id=21 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Thu May 20 21:56:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 May 2004 21:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4v1NG073752 for ; Thu, 20 May 2004 21:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4v0im090184 for ; Thu, 20 May 2004 21:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L4v02w025068; Thu, 20 May 2004 21:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L4uo2w025062 for ; Thu, 20 May 2004 21:56:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4uoim090178 for ; Thu, 20 May 2004 21:56:50 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L4uogd045822 for ; Thu, 20 May 2004 21:56:50 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L4uouN045821; Thu, 20 May 2004 21:56:50 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405210456.i4L4uouN045821@xorpc.icir.org> Date: Thu, 20 May 2004 21:56:49 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/tools/ Changes by: hodson@xorpc.icir.org. 04/05/20 21:56:49 Modified files: xorp/bgp/tools/: print_routes.cc Log message: Compilation fix for gcc-33. No really... _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Fri May 21 0:59:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 01:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L801NG001981 for ; Fri, 21 May 2004 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L801im092419 for ; Fri, 21 May 2004 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L8002w028742; Fri, 21 May 2004 01:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L7xc2w028729 for ; Fri, 21 May 2004 00:59:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L7xcim092408 for ; Fri, 21 May 2004 00:59:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L7xcgd060234 for ; Fri, 21 May 2004 00:59:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L7xcmb060233; Fri, 21 May 2004 00:59:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405210759.i4L7xcmb060233@xorpc.icir.org> Date: Fri, 21 May 2004 0:59:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_parse_ifaddrs.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/21 00:59:38 Modified files: xorp/fea/: ifconfig_parse_ifaddrs.cc Log message: Bug fix: if the interface is p2p, then check whether the address family of the destination address is valid before assigning it as the address of the other side of the tunnel. Note that this is done only for IPv6. This check is based on the FreeBSD "ifconfig" source code and eliminates some bogus IPv6 p2p addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:43 2005 Subject: No subject Fri May 21 0:59:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 01:00:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L808NG002020 for ; Fri, 21 May 2004 01:00:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L808im092452 for ; Fri, 21 May 2004 01:00:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L8082w028755; Fri, 21 May 2004 01:00:08 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L7xr2w028736 for ; Fri, 21 May 2004 00:59:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L7xqim092410 for ; Fri, 21 May 2004 00:59:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L7xqgd060291 for ; Fri, 21 May 2004 00:59:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L7xqtm060290; Fri, 21 May 2004 00:59:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405210759.i4L7xqtm060290@xorpc.icir.org> Date: Fri, 21 May 2004 0:59:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/21 00:59:52 xorp/fea/tools Update of /usr/local/share/doc/apache/cvs/xorp/fea/tools In directory xorpc.icir.org:/tmp/cvs-serv60284/tools Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/fea/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 1:08:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 01:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L891NG003402 for ; Fri, 21 May 2004 01:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L891im092545 for ; Fri, 21 May 2004 01:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L8912w028980; Fri, 21 May 2004 01:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L8852w028945 for ; Fri, 21 May 2004 01:08:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L885im092531 for ; Fri, 21 May 2004 01:08:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L885gd061123 for ; Fri, 21 May 2004 01:08:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L8848C061120; Fri, 21 May 2004 01:08:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405210808.i4L8848C061120@xorpc.icir.org> Date: Fri, 21 May 2004 1:08:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure xorp/etc/templates/ fea.cmds xorp/rtrmgr/ Makefile.am Makefile.in xorp/fea/ Makefile.am Makefile.in xorp/fea/tools/ .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh xorp/rtrmgr/tools/ .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/21 01:08:04 Modified files: ./: configure.in configure xorp/etc/templates/: fea.cmds xorp/rtrmgr/: Makefile.am Makefile.in xorp/fea/: Makefile.am Makefile.in Added files: xorp/fea/tools/: .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh Removed files: xorp/rtrmgr/tools/: .cvsignore Makefile.am Makefile.in show_interfaces.cc show_interfaces.hh Log message: * Move rtrmgr/tools/show_interfaces to fea/tools * Reimplement show_interfaces by using libfeaclient to obtain the network interface information, and by cleaning-up a bit the output format. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 2:20:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 02:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L9L1NG015406 for ; Fri, 21 May 2004 02:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L9L1im093804 for ; Fri, 21 May 2004 02:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L9L02w000507; Fri, 21 May 2004 02:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4L9KW2w000493 for ; Fri, 21 May 2004 02:20:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L9KVim093800 for ; Fri, 21 May 2004 02:20:31 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4L9KVgd067125 for ; Fri, 21 May 2004 02:20:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4L9KVqi067124; Fri, 21 May 2004 02:20:31 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405210920.i4L9KVqi067124@xorpc.icir.org> Date: Fri, 21 May 2004 2:20:31 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ dump_iterators.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/21 02:20:31 Modified files: xorp/bgp/: dump_iterators.cc Log message: Fix bad assertion. We don't *always* keep track of the GenID of DeletionTables (or we'd never be able to remove the DumpTable of a peer that flaps continuously), so we shouldn't always assume that when a DeletionTable terminates, we'll have a record of it's existence in the DumpIterators. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 12:32:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 12:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJX2NG016434 for ; Fri, 21 May 2004 12:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJX2im003360 for ; Fri, 21 May 2004 12:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LJX12w015536; Fri, 21 May 2004 12:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LJWg2w015527 for ; Fri, 21 May 2004 12:32:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJWgim003355 for ; Fri, 21 May 2004 12:32:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJWggd009577 for ; Fri, 21 May 2004 12:32:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4LJWgxp009576; Fri, 21 May 2004 12:32:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405211932.i4LJWgxp009576@xorpc.icir.org> Date: Fri, 21 May 2004 12:32:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/21 12:32:42 Modified files: xorp/fea/: test_config_interface.sh Log message: Replace test interface fxp0 with xl0 for host "carp". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 12:34:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 12:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJZ1NG016748 for ; Fri, 21 May 2004 12:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJZ1im003382 for ; Fri, 21 May 2004 12:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LJZ12w015616; Fri, 21 May 2004 12:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LJYD2w015592 for ; Fri, 21 May 2004 12:34:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJYCim003374 for ; Fri, 21 May 2004 12:34:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LJYCgd009647 for ; Fri, 21 May 2004 12:34:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4LJYCvd009646; Fri, 21 May 2004 12:34:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405211934.i4LJYCvd009646@xorpc.icir.org> Date: Fri, 21 May 2004 12:34:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/05/21 12:34:12 Modified files: xorp/fea/: test_config_interface.sh Log message: For NetBSD the test interface name should be ex0 instead of xl0 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 15:14:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 15:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMF1NG041354 for ; Fri, 21 May 2004 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMF1im005585 for ; Fri, 21 May 2004 15:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LMF12w019459; Fri, 21 May 2004 15:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LMEQ2w019439 for ; Fri, 21 May 2004 15:14:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMEQim005574 for ; Fri, 21 May 2004 15:14:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMEQgd015113 for ; Fri, 21 May 2004 15:14:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4LMEQvs015112; Fri, 21 May 2004 15:14:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405212214.i4LMEQvs015112@xorpc.icir.org> Date: Fri, 21 May 2004 15:14:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/tools/ show_interfaces.cc show_interfaces.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/21 15:14:26 Modified files: xorp/fea/tools/: show_interfaces.cc show_interfaces.hh Log message: * Add support for printing information about a single network interface (by ising command-line option -i ). * Replace printf() with fprintf(stdout, ...) * Add function usage() to print usage information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 15:23:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 15:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMO1NG042756 for ; Fri, 21 May 2004 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMO1im005715 for ; Fri, 21 May 2004 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LMO12w019731; Fri, 21 May 2004 15:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4LMN92w019711 for ; Fri, 21 May 2004 15:23:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMN9im005697 for ; Fri, 21 May 2004 15:23:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4LMN9gd015429 for ; Fri, 21 May 2004 15:23:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4LMN9AQ015428; Fri, 21 May 2004 15:23:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405212223.i4LMN9AQ015428@xorpc.icir.org> Date: Fri, 21 May 2004 15:23:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/21 15:23:09 Modified files: xorp/etc/templates/: fea.cmds Log message: * Rename xorpsh command "show interface" to "show interfaces" (for consistency with other router vendors). * Remove "show vif" xorpsh command, because it is redundant. If it is really needed we can add it back later once we have proper support for it. * Remove "brief" "detail" and "extensive" optional paramenters to "show interfaces", because for now we don't support various granularity of printing the network interface information * Split the original "show interfaces $(interfaces.interface.*)" into "show interfaces" and "show interfaces $(interfaces.interface.*)" The former is suppose to print info about all network interfaces; the latter is suppose to print info about a single network interface. However, currently the latter is still printing the info about all network interfaces because of the additional complexity of passing the appropriate network arguments to the executional binary. E.g., currently "show interfaces foo" is passed as arguments to the show_interfaces binary program, while I'd like to be able to pass only, say, "-i foo" as arguments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Fri May 21 23:09:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 May 2004 23:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4M6A1NG025048 for ; Fri, 21 May 2004 23:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4M6A0im010852 for ; Fri, 21 May 2004 23:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4M6A02w028345; Fri, 21 May 2004 23:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4M6982w028335 for ; Fri, 21 May 2004 23:09:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4M697im010844 for ; Fri, 21 May 2004 23:09:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4M697gd043020 for ; Fri, 21 May 2004 23:09:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4M697bk043019; Fri, 21 May 2004 23:09:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405220609.i4M697bk043019@xorpc.icir.org> Date: Fri, 21 May 2004 23:09:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc module_manager.cc randomness.cc template_tree.cc template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/05/21 23:09:07 Modified files: xorp/rtrmgr/: conf_tree_node.cc main_rtrmgr.cc master_conf_tree.cc module_manager.cc randomness.cc template_tree.cc template_tree_node.cc Log message: No longer generate debugging output by default. 1) printf -> debug_msg 2) fprintf(stderr, -> XLOG_ERROR _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 11:14:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 11:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MIF1NG069110 for ; Sat, 22 May 2004 11:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MIF0im021929 for ; Sat, 22 May 2004 11:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MIF02w011234; Sat, 22 May 2004 11:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MIEV2w011226 for ; Sat, 22 May 2004 11:14:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MIEUim021917 for ; Sat, 22 May 2004 11:14:31 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MIEUgd091033 for ; Sat, 22 May 2004 11:14:30 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MIEUkN091032; Sat, 22 May 2004 11:14:30 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405221814.i4MIEUkN091032@xorpc.icir.org> Date: Sat, 22 May 2004 11:14:30 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ userdb.cc util.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/22 11:14:30 Modified files: xorp/rtrmgr/: userdb.cc util.cc Log message: Don't generate spurious warnings if XORP build directory no longer exists. Do warn if group xorp doesn't exist. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 14:35:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 14:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLa2NG006762 for ; Sat, 22 May 2004 14:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLa2im023966 for ; Sat, 22 May 2004 14:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MLa12w014326; Sat, 22 May 2004 14:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MLZ32w014302 for ; Sat, 22 May 2004 14:35:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLZ2im023942 for ; Sat, 22 May 2004 14:35:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLZ2gd097592 for ; Sat, 22 May 2004 14:35:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MLZ2U2097591; Sat, 22 May 2004 14:35:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222135.i4MLZ2U2097591@xorpc.icir.org> Date: Sat, 22 May 2004 14:35:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/22 14:35:02 Modified files: xorp/rtrmgr/: slave_conf_tree_node.cc Log message: Disable debugging output _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 14:35:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 14:36:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLa9NG006794 for ; Sat, 22 May 2004 14:36:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLa9im023971 for ; Sat, 22 May 2004 14:36:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MLa92w014338; Sat, 22 May 2004 14:36:09 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MLZh2w014315 for ; Sat, 22 May 2004 14:35:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLZgim023963 for ; Sat, 22 May 2004 14:35:43 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MLZggd097647 for ; Sat, 22 May 2004 14:35:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MLZgt0097646; Sat, 22 May 2004 14:35:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222135.i4MLZgt0097646@xorpc.icir.org> Date: Sat, 22 May 2004 14:35:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.yy y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/22 14:35:42 Modified files: xorp/rtrmgr/: template.yy y.tplt_tab.cc Log message: Fix parser error that prevented mandatory attributes being interpreted if they were listed one per line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 15:55:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 15:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MMu1NG024224 for ; Sat, 22 May 2004 15:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MMu1im024738 for ; Sat, 22 May 2004 15:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MMu12w015598; Sat, 22 May 2004 15:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MMt62w015585 for ; Sat, 22 May 2004 15:55:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MMt5im024718 for ; Sat, 22 May 2004 15:55:05 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MMt5gd099745 for ; Sat, 22 May 2004 15:55:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MMt511099744; Sat, 22 May 2004 15:55:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222255.i4MMt511099744@xorpc.icir.org> Date: Sat, 22 May 2004 15:55:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/22 15:55:05 Modified files: xorp/bgp/: route_table_cache.cc Log message: Add additional sanity check _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 16:24:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 16:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNP1NG029998 for ; Sat, 22 May 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNP1im025050 for ; Sat, 22 May 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNP12w016037; Sat, 22 May 2004 16:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNO22w016012 for ; Sat, 22 May 2004 16:24:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNO2im025033 for ; Sat, 22 May 2004 16:24:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNO2gd000911 for ; Sat, 22 May 2004 16:24:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MNO2tU000910; Sat, 22 May 2004 16:24:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222324.i4MNO2tU000910@xorpc.icir.org> Date: Sat, 22 May 2004 16:24:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/22 16:24:02 Modified files: xorp/bgp/: plumbing.cc Log message: Call peering_came_in(), even when the peering is coming up for the first time. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 16:37:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 16:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNc1NG032303 for ; Sat, 22 May 2004 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNc1im025199 for ; Sat, 22 May 2004 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNc12w016249; Sat, 22 May 2004 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNbQ2w016234 for ; Sat, 22 May 2004 16:37:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNbQim025189 for ; Sat, 22 May 2004 16:37:26 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNbQgd001420 for ; Sat, 22 May 2004 16:37:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MNbQYB001419; Sat, 22 May 2004 16:37:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222337.i4MNbQYB001419@xorpc.icir.org> Date: Sat, 22 May 2004 16:37:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp interfaces.tp snmp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 04/05/22 16:37:26 Modified files: xorp/etc/templates/: bgp.tp interfaces.tp snmp.tp Log message: Fix illegal template commands _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 16:38:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 16:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNd1NG032489 for ; Sat, 22 May 2004 16:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNd1im025212 for ; Sat, 22 May 2004 16:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNd12w016279; Sat, 22 May 2004 16:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNc22w016259 for ; Sat, 22 May 2004 16:38:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNc1im025201 for ; Sat, 22 May 2004 16:38:01 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNc1gd001462 for ; Sat, 22 May 2004 16:38:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MNc1Uv001461; Sat, 22 May 2004 16:38:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222338.i4MNc1Uv001461@xorpc.icir.org> Date: Sat, 22 May 2004 16:38:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/05/22 16:38:01 Modified files: xorp/rtrmgr/: template_commands.cc Log message: improved diagnostic for illegal template commands _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 16:46:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 16:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNl1NG033935 for ; Sat, 22 May 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNl0im025294 for ; Sat, 22 May 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNl02w016387; Sat, 22 May 2004 16:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4MNkF2w016372 for ; Sat, 22 May 2004 16:46:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNkFim025290 for ; Sat, 22 May 2004 16:46:15 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4MNkFgd001891 for ; Sat, 22 May 2004 16:46:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4MNkFwZ001890; Sat, 22 May 2004 16:46:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405222346.i4MNkFwZ001890@xorpc.icir.org> Date: Sat, 22 May 2004 16:46:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 04/05/22 16:46:15 Modified files: xorp/etc/templates/: bgp.tp Log message: reverse unintended commit of bgp.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 18:10:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 18:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1B1NG054620 for ; Sat, 22 May 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1B1im026075 for ; Sat, 22 May 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N1B12w017593; Sat, 22 May 2004 18:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N1AN2w017583 for ; Sat, 22 May 2004 18:10:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1ANim026069 for ; Sat, 22 May 2004 18:10:23 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1ANgd006348 for ; Sat, 22 May 2004 18:10:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4N1ANog006347; Sat, 22 May 2004 18:10:23 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405230110.i4N1ANog006347@xorpc.icir.org> Date: Sat, 22 May 2004 18:10:23 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_io.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: atanu@xorpc.icir.org. 04/05/22 18:10:23 Modified files: xorp/rip/: xrl_port_io.cc Log message: Disable DEBUG_LOGGING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 18:19:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 18:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1K1NG056231 for ; Sat, 22 May 2004 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1K1im026166 for ; Sat, 22 May 2004 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N1K12w017713; Sat, 22 May 2004 18:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N1Jp2w017706 for ; Sat, 22 May 2004 18:19:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1Jpim026159 for ; Sat, 22 May 2004 18:19:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N1Jpgd006926 for ; Sat, 22 May 2004 18:19:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4N1Jo9x006923; Sat, 22 May 2004 18:19:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405230119.i4N1Jo9x006923@xorpc.icir.org> Date: Sat, 22 May 2004 18:19:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_process_spy.cc xrl_rib_notifier.cc xrl_target_rip.cc xrl_target_ripng.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: atanu@xorpc.icir.org. 04/05/22 18:19:50 Modified files: xorp/rip/: xrl_process_spy.cc xrl_rib_notifier.cc xrl_target_rip.cc xrl_target_ripng.cc Log message: Disable DEBUG_LOGGING. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 19:54:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 19:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N2t1NG078885 for ; Sat, 22 May 2004 19:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N2t1im027045 for ; Sat, 22 May 2004 19:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N2t12w019221; Sat, 22 May 2004 19:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N2sO2w019211 for ; Sat, 22 May 2004 19:54:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N2sOim027039 for ; Sat, 22 May 2004 19:54:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N2sOgd012136 for ; Sat, 22 May 2004 19:54:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4N2sOlR012135; Sat, 22 May 2004 19:54:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405230254.i4N2sOlR012135@xorpc.icir.org> Date: Sat, 22 May 2004 19:54:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ plumbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/22 19:54:24 Modified files: xorp/bgp/: plumbing.cc Log message: Re-order the startup sequence in add_peering() to be much closer to that in peering_came_up(). Should avoid confusing the DumpTable which expects the latter ordering. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sat May 22 21:03:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 May 2004 21:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N441NG096743 for ; Sat, 22 May 2004 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N441im027741 for ; Sat, 22 May 2004 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N4402w020274; Sat, 22 May 2004 21:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4N4372w020265 for ; Sat, 22 May 2004 21:03:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N437im027735 for ; Sat, 22 May 2004 21:03:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4N437gd015513 for ; Sat, 22 May 2004 21:03:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4N437kI015512; Sat, 22 May 2004 21:03:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405230403.i4N437kI015512@xorpc.icir.org> Date: Sat, 22 May 2004 21:03:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/22 21:03:06 Modified files: xorp/bgp/: peer.cc Log message: Don't generate an error message when the peer drops the session. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:44 2005 Subject: No subject Sun May 23 4:10:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 04:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBB1NG079022 for ; Sun, 23 May 2004 04:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBB1im032099 for ; Sun, 23 May 2004 04:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBB12w027129; Sun, 23 May 2004 04:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBAl2w027122 for ; Sun, 23 May 2004 04:10:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBAlim032096 for ; Sun, 23 May 2004 04:10:47 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBAlgd039756 for ; Sun, 23 May 2004 04:10:47 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NBAlCv039755; Sun, 23 May 2004 04:10:47 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405231110.i4NBAlCv039755@xorpc.icir.org> Date: Sun, 23 May 2004 4:10:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/05/23 04:10:47 other/LiveCD Update of /usr/local/share/doc/apache/cvs/other/LiveCD In directory xorpc.icir.org:/tmp/cvs-serv39749/LiveCD Log Message: Directory /usr/local/share/doc/apache/cvs/other/LiveCD added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 4:12:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 04:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBD1NG079391 for ; Sun, 23 May 2004 04:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBD1im032118 for ; Sun, 23 May 2004 04:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBD12w027176; Sun, 23 May 2004 04:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBCJ2w027157 for ; Sun, 23 May 2004 04:12:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBCJim032110 for ; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBCJgd039847 for ; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NBCJRV039846; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405231112.i4NBCJRV039846@xorpc.icir.org> Date: Sun, 23 May 2004 4:12:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/23 04:12:19 other/LiveCD/files Update of /usr/local/share/doc/apache/cvs/other/LiveCD/files In directory xorpc.icir.org:/tmp/cvs-serv39839/files Log Message: Directory /usr/local/share/doc/apache/cvs/other/LiveCD/files added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 4:12:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 04:13:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBD2NG079418 for ; Sun, 23 May 2004 04:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBD2im032120 for ; Sun, 23 May 2004 04:13:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBD22w027187; Sun, 23 May 2004 04:13:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBCK2w027159 for ; Sun, 23 May 2004 04:12:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBCJim032112 for ; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBCJgd039855 for ; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NBCJj3039854; Sun, 23 May 2004 04:12:19 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405231112.i4NBCJj3039854@xorpc.icir.org> Date: Sun, 23 May 2004 4:12:19 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/original_docs/ Changes by: mjh@xorpc.icir.org. 04/05/23 04:12:19 other/LiveCD/original_docs Update of /usr/local/share/doc/apache/cvs/other/LiveCD/original_docs In directory xorpc.icir.org:/tmp/cvs-serv39839/original_docs Log Message: Directory /usr/local/share/doc/apache/cvs/other/LiveCD/original_docs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 4:15:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 04:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBG1NG079953 for ; Sun, 23 May 2004 04:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBG1im032158 for ; Sun, 23 May 2004 04:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBG12w027238; Sun, 23 May 2004 04:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NBFM2w027228 for ; Sun, 23 May 2004 04:15:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBFMim032153 for ; Sun, 23 May 2004 04:15:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NBFMgd040099 for ; Sun, 23 May 2004 04:15:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NBFMNZ040098; Sun, 23 May 2004 04:15:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405231115.i4NBFMNZ040098@xorpc.icir.org> Date: Sun, 23 May 2004 4:15:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ README config livecd.sh other/LiveCD/files/ LIVECD.raiz.dist boot.catalog fstab loader.conf motd patch_generic patch_group patch_master.passwd patch_rc rc.conf rc.live splash.bmp xorp.sh xorp_load.py other/LiveCD/original_docs/ README.download.english README.english README.english.new_struc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/original_docs/ Changes by: mjh@xorpc.icir.org. 04/05/23 04:15:22 Added files: other/LiveCD/: README config livecd.sh other/LiveCD/files/: LIVECD.raiz.dist boot.catalog fstab loader.conf motd patch_generic patch_group patch_master.passwd patch_rc rc.conf rc.live splash.bmp xorp.sh xorp_load.py other/LiveCD/original_docs/: README.download.english README.english README.english.new_struc Log message: First pass at FreeBSD-based LiveCD creation toolkit. Still pretty clunky, but does actually work (at least on FreeBSD 4.9-RELEASE). Probably not worthwhile testing yet - this is a moving target right now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 8:24:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 08:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NFP1NG023711 for ; Sun, 23 May 2004 08:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NFP1im034604 for ; Sun, 23 May 2004 08:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NFP02w002798; Sun, 23 May 2004 08:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NFOF2w002784 for ; Sun, 23 May 2004 08:24:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NFOFim034595 for ; Sun, 23 May 2004 08:24:15 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NFOFgd055776 for ; Sun, 23 May 2004 08:24:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NFOFrS055775; Sun, 23 May 2004 08:24:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405231524.i4NFOFrS055775@xorpc.icir.org> Date: Sun, 23 May 2004 8:24:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/05/23 08:24:14 Modified files: xorp/libxipc/: finder.hh Log message: Remove duplicated constant. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 10:03:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 10:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NH41NG041188 for ; Sun, 23 May 2004 10:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NH41im035620 for ; Sun, 23 May 2004 10:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NH412w004417; Sun, 23 May 2004 10:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4NH3h2w004405 for ; Sun, 23 May 2004 10:03:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NH3him035610 for ; Sun, 23 May 2004 10:03:43 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4NH3hgd060641 for ; Sun, 23 May 2004 10:03:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4NH3hFv060640; Sun, 23 May 2004 10:03:43 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405231703.i4NH3hFv060640@xorpc.icir.org> Date: Sun, 23 May 2004 10:03:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/23 10:03:42 Added files: other/LiveCD/files/: xorp-makeconfig.sh Log message: A start at an interactive script check the floppy is usable, to set passwords, and to create an initial xorp config file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Sun May 23 18:22:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 23 May 2004 18:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4O1N1NG030483 for ; Sun, 23 May 2004 18:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4O1N1im040778 for ; Sun, 23 May 2004 18:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4O1N12w013087; Sun, 23 May 2004 18:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4O1Mb2w013073 for ; Sun, 23 May 2004 18:22:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4O1Maim040774 for ; Sun, 23 May 2004 18:22:36 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4O1Magd084000 for ; Sun, 23 May 2004 18:22:36 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4O1MaOv083999; Sun, 23 May 2004 18:22:36 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405240122.i4O1MaOv083999@xorpc.icir.org> Date: Sun, 23 May 2004 18:22:36 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc xorp/bgp/harness/ coord.cc test_peer.cc xorp/cli/ test_cli.cc xorp/cli/tools/ send_cli_processor_xrl.cc xorp/fea/ fea.cc test_mfea.cc xorp/fea/tools/ show_interfaces.cc xorp/fib2mrib/ xorp_fib2mrib.cc xorp/libfeaclient/ test_remote_copy.cc xorp/libxipc/ call_xrl.cc finder_client.cc xrl_router.cc xrl_router.hh xorp/mld6igmp/ test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xorp/pim/ test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xorp/rib/ main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rip/ xorp_rip_main.cc xorp/rtrmgr/ main_rtrmgr.cc xorpsh_main.cc xorp/static_routes/ xorp_static_routes.cc xorp/xrl/tests/ test_generated.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 04/05/23 18:22:36 Modified files: xorp/bgp/: bgp.cc xorp/bgp/harness/: coord.cc test_peer.cc xorp/cli/: test_cli.cc xorp/cli/tools/: send_cli_processor_xrl.cc xorp/fea/: fea.cc test_mfea.cc xorp/fea/tools/: show_interfaces.cc xorp/fib2mrib/: xorp_fib2mrib.cc xorp/libfeaclient/: test_remote_copy.cc xorp/libxipc/: call_xrl.cc finder_client.cc xrl_router.cc xrl_router.hh xorp/mld6igmp/: test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xorp/pim/: test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xorp/rib/: main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rip/: xorp_rip_main.cc xorp/rtrmgr/: main_rtrmgr.cc xorpsh_main.cc xorp/static_routes/: xorp_static_routes.cc xorp/xrl/tests/: test_generated.cc Log message: o Add XrlRouter::failed() method. o Remove timers that wait for XrlRouter::ready() for a fixed time. Time is now determined by XrlRouter which will indicate readiness or failure through XrlRouter::ready() and XrlRouter::ready(). o Swap out custom XrlRouter wait loops for wait_until_xrl_router_is_ready(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 10:35:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 10:36:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OHa3NG010428 for ; Mon, 24 May 2004 10:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OHa3im051900 for ; Mon, 24 May 2004 10:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OHa12w003401; Mon, 24 May 2004 10:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OHZm2w003389 for ; Mon, 24 May 2004 10:35:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OHZlim051896 for ; Mon, 24 May 2004 10:35:47 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OHZlgd054079 for ; Mon, 24 May 2004 10:35:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OHZlOg054078; Mon, 24 May 2004 10:35:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405241735.i4OHZlOg054078@xorpc.icir.org> Date: Mon, 24 May 2004 10:35:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc ...common_xif.hh ...coord_xif.cc ...coord_xif.hh ...datain_xif.cc ...datain_xif.hh ...fea_fib_client_xif.cc ...fea_fib_xif.cc ...fea_ifmgr_client_xif.cc ...fea_ifmgr_mirror_xif.cc ...fea_ifmgr_mirror_xif.hh ...fea_ifmgr_replicator_xif.cc ...fea_ifmgr_replicator_xif.hh ...fea_ifmgr_xif.cc ...fea_rawpkt_client_xif.cc ...fea_rawpkt_client_xif.hh ...fea_rawpkt_xif.cc ...fea_rawpkt_xif.hh ...fib2mrib_xif.cc ...finder_client_xif.cc ...finder_client_xif.hh ...finder_event_notifier_xif.cc ...finder_event_notifier_xif.hh ...finder_event_observer_xif.cc ...finder_event_observer_xif.hh ...finder_xif.cc ...finder_xif.hh ...fti_xif.cc ...fti_xif.hh ...mfea_client_xif.cc ...mfea_client_x! if.hh ...m! fea_xif.cc ...mfea_xif.hh ...mld6igmp_client_xif.cc ...mld6igmp_client_xif.hh ...mld6igmp_xif.cc ...mld6igmp_xif.hh ...ospf_xif.cc ...ospf_xif.hh ...pim_xif.cc ...redist4_xif.cc ...redist6_xif.cc ...redist_transaction4_xif.cc ...redist_transaction6_xif.cc ...rib_client_xif.cc ...rib_client_xif.hh ...rib_xif.cc ...rip_xif.cc ...ripng_xif.cc ...rtrmgr_client_xif.cc ...rtrmgr_client_xif.hh ...rtrmgr_xif.cc ...socket4_locator_xif.cc ...socket4_locator_xif.hh ...socket4_user_xif.cc ...socket4_user_xif.hh ...socket4_xif.cc ...socket6_locator_xif.cc ...socket6_user_xif.cc ...socket6_xif.cc ...static_routes_xif.cc ...test_peer_xif.cc ...test_peer_xif.hh ...test_xif.cc ...test_xif.hh ...xorp_if_mib_xif.cc ...xorp_if_mib_xif.hh xorp/xrl/scripts/ clnt-gen tgt-gen xorp/xrl/targets/ bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh ! demo_fea_ifmgr_client_base.cc ...demo_fea_ifmgr_client_bas! e.hh .. Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/05/24 10:35:47 Modified files: xorp/xrl/interfaces/: bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_fib_client_xif.cc fea_fib_xif.cc fea_ifmgr_client_xif.cc fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator_xif.cc fea_ifmgr_replicator_xif.hh fea_ifmgr_xif.cc fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh fib2mrib_xif.cc finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc redist4_xif.cc redist6_xif.cc redist_transaction4_xif.cc redist_transaction6_xif.cc rib_client_xif.cc rib_client_xif.hh rib_xif.cc rip_xif.cc ripng_xif.cc rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc socket4_locator_xif.cc socket4_locator_xif.hh socket4_user_xif.cc socket4_user_xif.hh socket4_xif.cc socket6_locator_xif.cc socket6_user_xif.cc socket6_xif.cc static_routes_xif.cc test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp_if_mib_xif.cc xorp_if_mib_xif.hh xorp/xrl/scripts/: clnt-gen tgt-gen xorp/xrl/targets/: bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli_base.cc cli_base.hh coord_base.cc coord_base.hh demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea_base.cc fea_base.hh fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh fib2mrib_base.cc fib2mrib_base.hh finder_base.cc finder_base.hh finder_client_base.cc finder_client_base.hh mfea_base.cc mfea_base.hh mld6igmp_base.cc mld6igmp_base.hh ospf_base.cc ospf_base.hh pim_base.cc pim_base.hh rib_base.cc rib_base.hh ribclient_base.cc ribclient_base.hh rip_base.cc rip_base.hh ripng_base.cc ripng_base.hh rtrmgr_base.cc rtrmgr_base.hh socket_server_base.cc socket_server_base.hh static_routes_base.cc static_routes_base.hh test_base.cc test_base.hh test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh test_finder_events_base.cc test_finder_events_base.hh test_peer_base.cc test_peer_base.hh test_socket4_base.cc test_socket4_base.hh test_socket6_base.cc test_socket6_base.hh xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh_base.cc xorpsh_base.hh Log message: Minor re-arrangment of generated code to reduce duplicate string components. Has small performance impact in case of error handling. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 11:43:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 11:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OIi1NG033643 for ; Mon, 24 May 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OIi1im052656 for ; Mon, 24 May 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OIi02w005312; Mon, 24 May 2004 11:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OIhO2w005298 for ; Mon, 24 May 2004 11:43:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OIhOim052653 for ; Mon, 24 May 2004 11:43:24 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OIhOgd056976 for ; Mon, 24 May 2004 11:43:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OIhOPx056975; Mon, 24 May 2004 11:43:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405241843.i4OIhOPx056975@xorpc.icir.org> Date: Mon, 24 May 2004 11:43:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ register_server.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 04/05/24 11:43:24 Modified files: xorp/rib/: register_server.cc Log message: printf -> debug_msg _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 12:01:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 12:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJ21NG042499 for ; Mon, 24 May 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJ21im052877 for ; Mon, 24 May 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OJ212w005806; Mon, 24 May 2004 12:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OJ1s2w005798 for ; Mon, 24 May 2004 12:01:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJ1rim052875 for ; Mon, 24 May 2004 12:01:53 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJ1rgd057778 for ; Mon, 24 May 2004 12:01:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OJ1rxs057777; Mon, 24 May 2004 12:01:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405241901.i4OJ1rxs057777@xorpc.icir.org> Date: Mon, 24 May 2004 12:01:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp_messenger.hh finder_tcp_messenger.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/05/24 12:01:52 Modified files: xorp/libxipc/: finder_tcp_messenger.hh finder_tcp_messenger.cc Log message: Add auto shutoff to FinderTcpAutoConnector so if it has not established a conneciton within a period of time, it ceases continuing to connection attempts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 12:10:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 12:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJB1NG044088 for ; Mon, 24 May 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJB1im053002 for ; Mon, 24 May 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OJB12w006025; Mon, 24 May 2004 12:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OJA42w006003 for ; Mon, 24 May 2004 12:10:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJA3im052980 for ; Mon, 24 May 2004 12:10:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OJA3gd058256 for ; Mon, 24 May 2004 12:10:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OJA3GS058255; Mon, 24 May 2004 12:10:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405241910.i4OJA3GS058255@xorpc.icir.org> Date: Mon, 24 May 2004 12:10:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ xrl_router.cc xrl_router.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/05/24 12:10:03 Modified files: xorp/libxipc/: xrl_router.cc xrl_router.hh Log message: Use TCP autoconnector to decide XrlRouter::failed(). Using an individual messenger generates the failure too early if process is started without a running Finder. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 14:45:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 14:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OLk2NG075543 for ; Mon, 24 May 2004 14:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OLk1im054824 for ; Mon, 24 May 2004 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OLk12w010347; Mon, 24 May 2004 14:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OLjV2w010319 for ; Mon, 24 May 2004 14:45:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OLjVim054802 for ; Mon, 24 May 2004 14:45:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OLjVgd064132 for ; Mon, 24 May 2004 14:45:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OLjV2p064131; Mon, 24 May 2004 14:45:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405242145.i4OLjV2p064131@xorpc.icir.org> Date: Mon, 24 May 2004 14:45:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/05/24 14:45:31 Modified files: ./: BUILD_NOTES Log message: Add a note for FreeBSD-5.2 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Mon May 24 15:43:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 May 2004 15:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OMi1NG088681 for ; Mon, 24 May 2004 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OMi1im055516 for ; Mon, 24 May 2004 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OMi12w011888; Mon, 24 May 2004 15:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4OMhV2w011875 for ; Mon, 24 May 2004 15:43:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OMhUim055503 for ; Mon, 24 May 2004 15:43:30 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4OMhUgd065816 for ; Mon, 24 May 2004 15:43:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4OMhU9M065815; Mon, 24 May 2004 15:43:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405242243.i4OMhU9M065815@xorpc.icir.org> Date: Mon, 24 May 2004 15:43:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/status_2004_02/ xorp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/slides/status_2004_02/ Changes by: atanu@xorpc.icir.org. 04/05/24 15:43:30 Modified files: xorp/docs/slides/status_2004_02/: xorp.tex Log message: Update the date of the 1.0 Release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 7:00:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 07:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PE11NG081512 for ; Tue, 25 May 2004 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PE11im065914 for ; Tue, 25 May 2004 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PE112w003413; Tue, 25 May 2004 07:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PE022w003380 for ; Tue, 25 May 2004 07:00:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PE02im065892 for ; Tue, 25 May 2004 07:00:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PE02gd057745 for ; Tue, 25 May 2004 07:00:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PE019e057738; Tue, 25 May 2004 07:00:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251400.i4PE019e057738@xorpc.icir.org> Date: Tue, 25 May 2004 7:00:00 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 07:00:00 Modified files: other/LiveCD/files/: xorp-makeconfig.sh Log message: Add code to preserve ssh host keys, and to create a basic xorp config file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 7:28:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 07:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PET1NG086443 for ; Tue, 25 May 2004 07:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PET1im066221 for ; Tue, 25 May 2004 07:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PET02w003997; Tue, 25 May 2004 07:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PESR2w003978 for ; Tue, 25 May 2004 07:28:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PESRim066210 for ; Tue, 25 May 2004 07:28:27 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PESRgd060192 for ; Tue, 25 May 2004 07:28:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PESR0R060191; Tue, 25 May 2004 07:28:27 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251428.i4PESR0R060191@xorpc.icir.org> Date: Tue, 25 May 2004 7:28:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 07:28:27 Modified files: other/LiveCD/files/: xorp.sh Log message: Run xorp-makeconfig when starting _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 7:30:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 07:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PEV1NG086828 for ; Tue, 25 May 2004 07:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PEV1im066267 for ; Tue, 25 May 2004 07:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PEV12w004064; Tue, 25 May 2004 07:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PEUT2w004043 for ; Tue, 25 May 2004 07:30:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PEUTim066254 for ; Tue, 25 May 2004 07:30:29 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PEUTgd060413 for ; Tue, 25 May 2004 07:30:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PEUTf8060412; Tue, 25 May 2004 07:30:29 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251430.i4PEUTf8060412@xorpc.icir.org> Date: Tue, 25 May 2004 7:30:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/05/25 07:30:29 Modified files: other/LiveCD/: livecd.sh Log message: install xorp-makeconfig.sh on the CD _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 10:08:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 10:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PH92NG015228 for ; Tue, 25 May 2004 10:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PH92im068195 for ; Tue, 25 May 2004 10:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PH902w007944; Tue, 25 May 2004 10:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PH8d2w007936 for ; Tue, 25 May 2004 10:08:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PH8dim068192 for ; Tue, 25 May 2004 10:08:39 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PH8dgd070632 for ; Tue, 25 May 2004 10:08:39 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PH8dvx070631; Tue, 25 May 2004 10:08:39 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251708.i4PH8dvx070631@xorpc.icir.org> Date: Tue, 25 May 2004 10:08:39 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 10:08:39 Modified files: other/LiveCD/files/: xorp-makeconfig.sh Log message: Only create a new config if we're doing config on a floppy with no manifest _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 10:38:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 10:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHe1NG021904 for ; Tue, 25 May 2004 10:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHe1im068543 for ; Tue, 25 May 2004 10:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHe12w008885; Tue, 25 May 2004 10:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHcu2w008832 for ; Tue, 25 May 2004 10:38:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHctim068532 for ; Tue, 25 May 2004 10:38:55 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHctgd071983 for ; Tue, 25 May 2004 10:38:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PHctFb071982; Tue, 25 May 2004 10:38:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251738.i4PHctFb071982@xorpc.icir.org> Date: Tue, 25 May 2004 10:38:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ patch_generic Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 10:38:55 Modified files: other/LiveCD/files/: patch_generic Log message: Remove a load of ISDN devices that we don't know how to configure, and which clutter up the set of available network devices. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:45 2005 Subject: No subject Tue May 25 10:42:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 10:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHh1NG022566 for ; Tue, 25 May 2004 10:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHh1im068591 for ; Tue, 25 May 2004 10:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHh12w009022; Tue, 25 May 2004 10:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHgS2w009003 for ; Tue, 25 May 2004 10:42:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHgRim068586 for ; Tue, 25 May 2004 10:42:27 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHgRgd072215 for ; Tue, 25 May 2004 10:42:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PHgRHr072214; Tue, 25 May 2004 10:42:27 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251742.i4PHgRHr072214@xorpc.icir.org> Date: Tue, 25 May 2004 10:42:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 10:42:27 Modified files: other/LiveCD/files/: xorp-makeconfig.sh Log message: set the console terminal type if it's not already set _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 10:43:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 10:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHi1NG022796 for ; Tue, 25 May 2004 10:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHi0im068607 for ; Tue, 25 May 2004 10:44:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHi02w009059; Tue, 25 May 2004 10:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PHh22w009034 for ; Tue, 25 May 2004 10:43:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHh2im068593 for ; Tue, 25 May 2004 10:43:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PHh2gd072242 for ; Tue, 25 May 2004 10:43:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PHh2iD072241; Tue, 25 May 2004 10:43:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405251743.i4PHh2iD072241@xorpc.icir.org> Date: Tue, 25 May 2004 10:43:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/25 10:43:02 Modified files: other/LiveCD/files/: xorp-makeconfig.sh Log message: remove bogon _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 15:40:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 15:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PMf1NG085744 for ; Tue, 25 May 2004 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PMf0im072234 for ; Tue, 25 May 2004 15:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PMf0Pb017284; Tue, 25 May 2004 15:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4PMeePb017277 for ; Tue, 25 May 2004 15:40:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PMedim072232 for ; Tue, 25 May 2004 15:40:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4PMedgd084030 for ; Tue, 25 May 2004 15:40:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4PMedk0084029; Tue, 25 May 2004 15:40:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405252240.i4PMedk0084029@xorpc.icir.org> Date: Tue, 25 May 2004 15:40:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/25 15:40:39 Modified files: xorp/cli/: cli_node_net.cc Log message: Get the terminal size on startup if we use stdio input (e.g., xorpsh). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 21:24:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 21:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4P1NG064162 for ; Tue, 25 May 2004 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4P1PA075877 for ; Tue, 25 May 2004 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4P0Pb024697; Tue, 25 May 2004 21:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4OXPb024686 for ; Tue, 25 May 2004 21:24:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4OXPA075871 for ; Tue, 25 May 2004 21:24:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4OXgd009738 for ; Tue, 25 May 2004 21:24:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4Q4OXpK009735; Tue, 25 May 2004 21:24:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405260424.i4Q4OXpK009735@xorpc.icir.org> Date: Tue, 25 May 2004 21:24:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc op_commands.yy y.opcmd_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/25 21:24:33 Modified files: xorp/rtrmgr/: op_commands.hh op_commands.cc op_commands.yy y.opcmd_tab.cc Log message: Xorpsh operation command template related changes: Implement support for specifying positional arguments to the binary command. E.g., $0 is replaced with all arguments, $1 is replaced with the first argument, $2 is replaced with the second argument, etc. For example, originally if the template is: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces" %help: HELP; then when "fea/tools/show_interfaces" is called, xorpsh will call it with three arguments: "show", "interfaces", and the particular interface name. With the new positional argument support the template %command should explicitly contain $0 to suppy all arguments as above: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces $0" %help: HELP; If we want to call "show_interface" with argument "-i ", then the template should be: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces -i $3" %help: HELP; _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 21:25:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 21:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4Q1NG064414 for ; Tue, 25 May 2004 21:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4Q0PA075910 for ; Tue, 25 May 2004 21:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4Q0Pb024719; Tue, 25 May 2004 21:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4PAPb024708 for ; Tue, 25 May 2004 21:25:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4PAPA075898 for ; Tue, 25 May 2004 21:25:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4P9gd009833 for ; Tue, 25 May 2004 21:25:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4Q4P9Ma009832; Tue, 25 May 2004 21:25:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405260425.i4Q4P9Ma009832@xorpc.icir.org> Date: Tue, 25 May 2004 21:25:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds fea.cmds igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/25 21:25:09 Modified files: xorp/etc/templates/: bgp.cmds fea.cmds igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds Log message: Xorpsh operation command template related changes: Implement support for specifying positional arguments to the binary command. E.g., $0 is replaced with all arguments, $1 is replaced with the first argument, $2 is replaced with the second argument, etc. For example, originally if the template is: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces" %help: HELP; then when "fea/tools/show_interfaces" is called, xorpsh will call it with three arguments: "show", "interfaces", and the particular interface name. With the new positional argument support the template %command should explicitly contain $0 to suppy all arguments as above: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces $0" %help: HELP; If we want to call "show_interface" with argument "-i ", then the template should be: show interfaces $(interfaces.interface.*) { %command: "fea/tools/show_interfaces -i $3" %help: HELP; _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 21:49:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 21:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4o1NG069666 for ; Tue, 25 May 2004 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4o1PA076139 for ; Tue, 25 May 2004 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4o1Pb025198; Tue, 25 May 2004 21:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q4nMPb025185 for ; Tue, 25 May 2004 21:49:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4nLPA076126 for ; Tue, 25 May 2004 21:49:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q4nLgd011281 for ; Tue, 25 May 2004 21:49:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4Q4nL1i011280; Tue, 25 May 2004 21:49:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405260449.i4Q4nL1i011280@xorpc.icir.org> Date: Tue, 25 May 2004 21:49:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/25 21:49:21 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Update the documentation to provide information about positional arguments for the "%command" xorpsh template operational command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Tue May 25 23:03:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 May 2004 23:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q641NG085938 for ; Tue, 25 May 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q641PA076955 for ; Tue, 25 May 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q641Pb026588; Tue, 25 May 2004 23:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4Q63MPb026561 for ; Tue, 25 May 2004 23:03:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q63LPA076953 for ; Tue, 25 May 2004 23:03:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4Q63Lgd016613 for ; Tue, 25 May 2004 23:03:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4Q63LSu016612; Tue, 25 May 2004 23:03:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405260603.i4Q63LSu016612@xorpc.icir.org> Date: Tue, 25 May 2004 23:03:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/tools/ Changes by: pavlin@xorpc.icir.org. 04/05/25 23:03:21 Modified files: xorp/fea/tools/: show_interfaces.cc Log message: Don't consider it an error if the CLI command itself is not supplied as a command-line option. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 5:10:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 05:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCB2NG055890 for ; Wed, 26 May 2004 05:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCB2PA081316 for ; Wed, 26 May 2004 05:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCB0Pb005647; Wed, 26 May 2004 05:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCARPb005622 for ; Wed, 26 May 2004 05:10:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCARPA081312 for ; Wed, 26 May 2004 05:10:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCARgd046923 for ; Wed, 26 May 2004 05:10:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QCARTr046920; Wed, 26 May 2004 05:10:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405261210.i4QCARTr046920@xorpc.icir.org> Date: Wed, 26 May 2004 5:10:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/26 05:10:26 Modified files: xorp/cli/: cli_node_net.cc Log message: Compilation fix: add missing #include _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 5:41:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 05:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCg1NG061378 for ; Wed, 26 May 2004 05:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCg0PA081652 for ; Wed, 26 May 2004 05:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCg0Pb006356; Wed, 26 May 2004 05:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCfKPb006337 for ; Wed, 26 May 2004 05:41:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCfJPA081646 for ; Wed, 26 May 2004 05:41:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCfJgd050975 for ; Wed, 26 May 2004 05:41:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QCfJWb050974; Wed, 26 May 2004 05:41:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405261241.i4QCfJWb050974@xorpc.icir.org> Date: Wed, 26 May 2004 5:41:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/26 05:41:19 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Remove unused variable (spotted by gcc-2.95.4) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 5:48:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 05:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCn1NG062644 for ; Wed, 26 May 2004 05:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCn1PA081727 for ; Wed, 26 May 2004 05:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCn0Pb006465; Wed, 26 May 2004 05:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QCmMPb006452 for ; Wed, 26 May 2004 05:48:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCmMPA081721 for ; Wed, 26 May 2004 05:48:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QCmMgd051881 for ; Wed, 26 May 2004 05:48:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QCmMcA051880; Wed, 26 May 2004 05:48:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405261248.i4QCmMcA051880@xorpc.icir.org> Date: Wed, 26 May 2004 5:48:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.yy y.opcmd_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/26 05:48:22 Modified files: xorp/rtrmgr/: op_commands.yy y.opcmd_tab.cc Log message: gcc-2.95.4 compilation problem work-around: It apprears that gcc-2.95.4 doesn't like method string::clear(), hence replace all usages of the above method with string::erase() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 7:49:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 07:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEo1NG084088 for ; Wed, 26 May 2004 07:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEo1PA083219 for ; Wed, 26 May 2004 07:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QEo1Pb009182; Wed, 26 May 2004 07:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QEnrPb009174 for ; Wed, 26 May 2004 07:49:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEnrPA083214 for ; Wed, 26 May 2004 07:49:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEnrgd061619 for ; Wed, 26 May 2004 07:49:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QEnrIp061618; Wed, 26 May 2004 07:49:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405261449.i4QEnrIp061618@xorpc.icir.org> Date: Wed, 26 May 2004 7:49:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/26 07:49:53 Modified files: xorp/cli/: cli_client.cc Log message: Bugfix: properly calculate CliClient::window_lines_n() in case of an empty line. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 7:51:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 07:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEq0NG084458 for ; Wed, 26 May 2004 07:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEq0PA083263 for ; Wed, 26 May 2004 07:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QEq0Pb009230; Wed, 26 May 2004 07:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QEp1Pb009206 for ; Wed, 26 May 2004 07:51:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEp1PA083250 for ; Wed, 26 May 2004 07:51:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QEp1gd061746 for ; Wed, 26 May 2004 07:51:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QEp167061745; Wed, 26 May 2004 07:51:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405261451.i4QEp167061745@xorpc.icir.org> Date: Wed, 26 May 2004 7:51:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ test_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/26 07:51:01 Modified files: xorp/cli/: test_cli.cc Log message: Add another test CLI command "print2 newline" that is same as CLI command print2, but prints an extra empty line at the end. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 8:04:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 08:05:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QF50NG086794 for ; Wed, 26 May 2004 08:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QF50PA083467 for ; Wed, 26 May 2004 08:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QF50Pb009532; Wed, 26 May 2004 08:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QF49Pb009511 for ; Wed, 26 May 2004 08:04:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QF49PA083458 for ; Wed, 26 May 2004 08:04:09 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QF49gd062804 for ; Wed, 26 May 2004 08:04:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QF49dr062803; Wed, 26 May 2004 08:04:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405261504.i4QF49dr062803@xorpc.icir.org> Date: Wed, 26 May 2004 8:04:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/05/26 08:04:09 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Fix unsigned format error for a size_T on Mac. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 10:41:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 10:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QHh2NG014884 for ; Wed, 26 May 2004 10:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QHh2PA085546 for ; Wed, 26 May 2004 10:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QHh0Pb013920; Wed, 26 May 2004 10:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QHg0Pb013885 for ; Wed, 26 May 2004 10:42:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QHg0PA085536 for ; Wed, 26 May 2004 10:42:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QHg0gd072473 for ; Wed, 26 May 2004 10:42:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QHg0JW072472; Wed, 26 May 2004 10:42:00 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405261742.i4QHg0JW072472@xorpc.icir.org> Date: Wed, 26 May 2004 10:41:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh other/LiveCD/files/ rc.live Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/26 10:41:59 Modified files: other/LiveCD/: config livecd.sh other/LiveCD/files/: rc.live Log message: debugging _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 12:05:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJ61NG048643 for ; Wed, 26 May 2004 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJ61PA086678 for ; Wed, 26 May 2004 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJ60B8016474; Wed, 26 May 2004 12:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJ53B8016442 for ; Wed, 26 May 2004 12:05:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJ53PA086654 for ; Wed, 26 May 2004 12:05:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJ53gd076245 for ; Wed, 26 May 2004 12:05:03 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QJ53k2076244; Wed, 26 May 2004 12:05:03 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405261905.i4QJ53k2076244@xorpc.icir.org> Date: Wed, 26 May 2004 12:05:03 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ util.hh util.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/05/26 12:05:03 Modified files: xorp/rtrmgr/: util.hh util.cc Log message: Add unquote methods. Methods that can be used to remove quotes from the start and end of strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:46 2005 Subject: No subject Wed May 26 12:17:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 12:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJI1NG057152 for ; Wed, 26 May 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJI1PA086827 for ; Wed, 26 May 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJI1B8016818; Wed, 26 May 2004 12:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJHrB8016811 for ; Wed, 26 May 2004 12:17:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJHrPA086825 for ; Wed, 26 May 2004 12:17:53 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJHrgd076936 for ; Wed, 26 May 2004 12:17:53 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QJHr9r076935; Wed, 26 May 2004 12:17:53 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405261917.i4QJHr9r076935@xorpc.icir.org> Date: Wed, 26 May 2004 12:17:53 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/05/26 12:17:53 Modified files: xorp/rtrmgr/: conf_tree.cc Log message: Use unquote() where appropriate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 12:18:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 12:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJJ1NG057391 for ; Wed, 26 May 2004 12:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJJ0PA086842 for ; Wed, 26 May 2004 12:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJJ0B8016846; Wed, 26 May 2004 12:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJINB8016835 for ; Wed, 26 May 2004 12:18:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJINPA086833 for ; Wed, 26 May 2004 12:18:23 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJINgd076980 for ; Wed, 26 May 2004 12:18:23 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QJINar076979; Wed, 26 May 2004 12:18:23 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405261918.i4QJINar076979@xorpc.icir.org> Date: Wed, 26 May 2004 12:18:23 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc slave_conf_tree_node.cc template_commands.cc template_commands.hh template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/05/26 12:18:23 Modified files: xorp/rtrmgr/: conf_tree_node.cc slave_conf_tree_node.cc template_commands.cc template_commands.hh template_tree_node.cc Log message: Add support for "%allow-range" for range of integer values. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 12:21:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 12:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJM1NG058119 for ; Wed, 26 May 2004 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJM1PA086908 for ; Wed, 26 May 2004 12:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJM1B8016947; Wed, 26 May 2004 12:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QJLkB8016937 for ; Wed, 26 May 2004 12:21:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJLkPA086904 for ; Wed, 26 May 2004 12:21:46 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QJLkgd077169 for ; Wed, 26 May 2004 12:21:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4QJLk1D077168; Wed, 26 May 2004 12:21:46 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405261921.i4QJLk1D077168@xorpc.icir.org> Date: Wed, 26 May 2004 12:21:46 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ interfaces.tp rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/05/26 12:21:46 Modified files: xorp/etc/templates/: interfaces.tp rip.tp ripng.tp Log message: Add obvious allow-range restrictions. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 14:03:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 14:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QL41NG079844 for ; Wed, 26 May 2004 14:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QL41PA088240 for ; Wed, 26 May 2004 14:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QL41B8019854; Wed, 26 May 2004 14:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QL3pB8019847 for ; Wed, 26 May 2004 14:03:51 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QL3nPA088237; Wed, 26 May 2004 14:03:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QL3nSI013969; Wed, 26 May 2004 14:03:49 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200405262103.i4QL3nSI013969@possum.icir.org> To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh other/LiveCD/files/ rc.live In-Reply-To: Message from Mark Handley of "Wed, 26 May 2004 10:41:59." <200405261742.i4QHg0JW072472@xorpc.icir.org> Date: Wed, 26 May 2004 14:03:49 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: other > Repository: other/LiveCD/files/ > Changes by: mjh@xorpc.icir.org. 04/05/26 10:41:59 > > Modified files: > other/LiveCD/: config livecd.sh > other/LiveCD/files/: rc.live > > Log message: > debugging Mark, The change with this commit to LiveCD/config is: -XORPSRCDIR=/usr/local/xorp/src +XORPSRCDIR=/home/echidna/u0/mjh/xorp/xorp Was it intentional that XORPSRCDIR would have a value that points into your home directory, or was that file commited by accident? Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 22:41:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 14:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLg1NG086746 for ; Wed, 26 May 2004 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLg1PA088799 for ; Wed, 26 May 2004 14:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLg0B8021114; Wed, 26 May 2004 14:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLfTB8021093 for ; Wed, 26 May 2004 14:41:29 -0700 (PDT) Received: from bells.cs.ucl.ac.uk (bells.cs.ucl.ac.uk [128.16.5.31]) by wyvern.icir.org (8.12.9p1/8.12.8) with SMTP id i4QLfSPA088797; Wed, 26 May 2004 14:41:29 -0700 (PDT) (envelope-from M.Handley@cs.ucl.ac.uk) Received: from host81-153-253-19.range81-153.btcentralplus.com by bells.cs.ucl.ac.uk with Internet SMTP id ; Wed, 26 May 2004 22:41:16 +0100 From: Mark Handley X-Organisation: UCL To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh other/LiveCD/files/ rc.live In-reply-to: Your message of "Wed, 26 May 2004 14:03:49 PDT." <200405262103.i4QL3nSI013969@possum.icir.org> Date: Wed, 26 May 2004 22:41:11 +0100 Message-ID: <1015.1085607671@cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >The change with this commit to LiveCD/config is: > >-XORPSRCDIR=/usr/local/xorp/src >+XORPSRCDIR=/home/echidna/u0/mjh/xorp/xorp > >Was it intentional that XORPSRCDIR would have a value that points >into your home directory, or was that file commited by accident? It doesn't matter because config is regenerated unless config.ok exists. Probably config shouldn't even be in CVS. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 22:42:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 14:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLi2NG087111 for ; Wed, 26 May 2004 14:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLi1PA088821 for ; Wed, 26 May 2004 14:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLi1B8021177; Wed, 26 May 2004 14:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLhBB8021154 for ; Wed, 26 May 2004 14:43:11 -0700 (PDT) Received: from bells.cs.ucl.ac.uk (bells.cs.ucl.ac.uk [128.16.5.31]) by wyvern.icir.org (8.12.9p1/8.12.8) with SMTP id i4QLhAPA088811; Wed, 26 May 2004 14:43:10 -0700 (PDT) (envelope-from M.Handley@cs.ucl.ac.uk) Received: from host81-153-253-19.range81-153.btcentralplus.com by bells.cs.ucl.ac.uk with Internet SMTP id ; Wed, 26 May 2004 22:42:54 +0100 From: Mark Handley X-Organisation: UCL To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh other/LiveCD/files/ rc.live In-reply-to: Your message of "Wed, 26 May 2004 14:03:49 PDT." <200405262103.i4QL3nSI013969@possum.icir.org> Date: Wed, 26 May 2004 22:42:47 +0100 Message-ID: <1023.1085607767@cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >The change with this commit to LiveCD/config is: BTW, it probably isn't worth your time looking at the LiveCD stuff yet. Too many features don't quite work right. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 14:47:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 14:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLm1NG087845 for ; Wed, 26 May 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLm1PA088883 for ; Wed, 26 May 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLm1B8021318; Wed, 26 May 2004 14:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4QLlfB8021304 for ; Wed, 26 May 2004 14:47:41 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLlfPA088881; Wed, 26 May 2004 14:47:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i4QLldSI014957; Wed, 26 May 2004 14:47:39 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200405262147.i4QLldSI014957@possum.icir.org> To: Mark Handley cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh other/LiveCD/files/ rc.live In-Reply-To: Message from Mark Handley of "Wed, 26 May 2004 22:42:47 BST." <1023.1085607767@cs.ucl.ac.uk> Date: Wed, 26 May 2004 14:47:39 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > > >The change with this commit to LiveCD/config is: > > BTW, it probably isn't worth your time looking at the LiveCD stuff > yet. Too many features don't quite work right. Agree, though in general I always do "cvs diff" for any commits to the CVS tree so I can have a rough feeling what is going on. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Wed May 26 21:15:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 May 2004 21:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4R4G1NG078722 for ; Wed, 26 May 2004 21:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4R4G1PA093545 for ; Wed, 26 May 2004 21:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4R4G0B8000361; Wed, 26 May 2004 21:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4R4FBB8000342 for ; Wed, 26 May 2004 21:15:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4R4FAPA093541 for ; Wed, 26 May 2004 21:15:10 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4R4F9gd009886 for ; Wed, 26 May 2004 21:15:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4R4F9uu009883; Wed, 26 May 2004 21:15:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405270415.i4R4F9uu009883@xorpc.icir.org> Date: Wed, 26 May 2004 21:15:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ port.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/26 21:15:09 Modified files: xorp/rip/: port.cc Log message: Only fast forward triggered update output if running. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Thu May 27 9:50:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 May 2004 09:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4RGp1NG011509 for ; Thu, 27 May 2004 09:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4RGp1PA002057 for ; Thu, 27 May 2004 09:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4RGp1bC018470; Thu, 27 May 2004 09:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4RGopbC018456 for ; Thu, 27 May 2004 09:50:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4RGopPA002055 for ; Thu, 27 May 2004 09:50:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4RGopgd067350 for ; Thu, 27 May 2004 09:50:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4RGopHf067349; Thu, 27 May 2004 09:50:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405271650.i4RGopHf067349@xorpc.icir.org> Date: Thu, 27 May 2004 9:50:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ patch_generic Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/27 09:50:51 Modified files: other/LiveCD/files/: patch_generic Log message: Enable device polling, set HZ to 1000. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Thu May 27 21:54:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 May 2004 21:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S4t1NG038377 for ; Thu, 27 May 2004 21:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S4t0PA009812 for ; Thu, 27 May 2004 21:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4S4t0eC006509; Thu, 27 May 2004 21:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4S4sheC006500 for ; Thu, 27 May 2004 21:54:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S4shPA009806 for ; Thu, 27 May 2004 21:54:43 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S4sggd007044 for ; Thu, 27 May 2004 21:54:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4S4sgRc007043; Thu, 27 May 2004 21:54:42 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405280454.i4S4sgRc007043@xorpc.icir.org> Date: Thu, 27 May 2004 21:54:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp_messenger.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/05/27 21:54:42 Modified files: xorp/libxipc/: finder_tcp_messenger.cc Log message: Fix reset of consecutive error counter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Thu May 27 22:00:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 May 2004 22:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S511NG039530 for ; Thu, 27 May 2004 22:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S510PA009910 for ; Thu, 27 May 2004 22:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4S510eC006651; Thu, 27 May 2004 22:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4S50ceC006638 for ; Thu, 27 May 2004 22:00:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S50cPA009906 for ; Thu, 27 May 2004 22:00:38 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4S50cgd007666 for ; Thu, 27 May 2004 22:00:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4S50c3A007665; Thu, 27 May 2004 22:00:38 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405280500.i4S50c3A007665@xorpc.icir.org> Date: Thu, 27 May 2004 22:00:38 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc xorp/bgp/harness/ coord.cc test_peer.cc xorp/cli/ test_cli.cc xorp/cli/tools/ send_cli_processor_xrl.cc xorp/fea/ fea.cc test_mfea.cc xorp/fea/tools/ show_interfaces.cc xorp/fib2mrib/ xorp_fib2mrib.cc xorp/libxipc/ xrl_router.cc xrl_router.hh xorp/mld6igmp/ test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xorp/pim/ test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xorp/rib/ main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rip/ xorp_rip_main.cc xorp/rtrmgr/ main_rtrmgr.cc xorp/static_routes/ xorp_static_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: hodson@xorpc.icir.org. 04/05/27 22:00:38 Modified files: xorp/bgp/: bgp.cc xorp/bgp/harness/: coord.cc test_peer.cc xorp/cli/: test_cli.cc xorp/cli/tools/: send_cli_processor_xrl.cc xorp/fea/: fea.cc test_mfea.cc xorp/fea/tools/: show_interfaces.cc xorp/fib2mrib/: xorp_fib2mrib.cc xorp/libxipc/: xrl_router.cc xrl_router.hh xorp/mld6igmp/: test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xorp/pim/: test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xorp/rib/: main_rib.cc test_register_xrls.cc test_rib_xrls.cc xorp/rip/: xorp_rip_main.cc xorp/rtrmgr/: main_rtrmgr.cc xorp/static_routes/: xorp_static_routes.cc Log message: o Move oft cut-and-paste route wait_until_xrl_router_is_ready() into libxipc. o Exit cleanly rather than dump core if xrl router does not become ready. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 11:26:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 11:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SIR1NG010208 for ; Fri, 28 May 2004 11:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SIR1PA019154 for ; Fri, 28 May 2004 11:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SIR0Yq024768; Fri, 28 May 2004 11:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SIQUYq024754 for ; Fri, 28 May 2004 11:26:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SIQUPA019146 for ; Fri, 28 May 2004 11:26:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SIQTgd063859 for ; Fri, 28 May 2004 11:26:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4SIQTTa063858; Fri, 28 May 2004 11:26:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405281826.i4SIQTTa063858@xorpc.icir.org> Date: Fri, 28 May 2004 11:26:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh ...module_command.cc ...module_command.hh ...module_manager.cc ...module_manager.hh ...slave_conf_tree.cc ...slave_conf_tree.hh ...slave_conf_tree_node.cc ...slave_conf_tree_node.hh ...task.cc ...task.hh ...template_commands.cc ...template_tree.cc ...template_tree.hh ...template_tree_node.cc ...template_tree_node.hh ...test_sample_config.cc ...test_templates.cc ...userdb.cc ...userdb.hh ...util.cc ...xorp_client.cc ...xorpsh_main.cc ...xorpsh_main.hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh ...xrl_xorpsh_interface.cc ...xrl_xorpsh_interface.hh ...xrldb.cc ...xrldb.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/28 11:26:29 Modified files: xorp/rtrmgr/: cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh module_manager.cc module_manager.hh slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh task.cc task.hh template_commands.cc template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_sample_config.cc test_templates.cc userdb.cc userdb.hh util.cc xorp_client.cc xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh Log message: * Add -v command-line option to print verbose information when running, and implement the appropriate support for it. * Replace printf() debug output with debug_msg() or XLOG_TRACE(_verbose, ...) as appropriate, and remove the #ifdef DEBUG_* statements which are not needed anymore. * Replace methods like Foo::print() that print various info with Foo::bar_str() that return a string with that info. * Remove -d command-line option which prints various default values on startup, because it is redundant (the same values can be printed with the -h option). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 15:28:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 15:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMT1NG064371 for ; Fri, 28 May 2004 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMT1PA021958 for ; Fri, 28 May 2004 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SMT0Yq001129; Fri, 28 May 2004 15:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SMS1Yq001104 for ; Fri, 28 May 2004 15:28:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMS1PA021946 for ; Fri, 28 May 2004 15:28:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMS1gd072139 for ; Fri, 28 May 2004 15:28:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4SMS1n1072138; Fri, 28 May 2004 15:28:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405282228.i4SMS1n1072138@xorpc.icir.org> Date: Fri, 28 May 2004 15:28:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh ...module_command.cc ...module_command.hh ...module_manager.cc ...module_manager.hh ...op_commands.cc ...op_commands.hh ...popen.cc ...randomness.cc ...randomness.hh ...rtrmgr_error.hh ...slave_conf_tree.cc ...slave_conf_tree.hh ...slave_conf_tree_node.cc ...slave_conf_tree_node.hh ...slave_module_manager.cc ...task.cc ...task.hh ...template_commands.cc ...template_commands.hh ...template_tree.cc ...template_tree.hh ...template_tree_node.cc ...template_tree_node.hh ...test_module_manager.cc ...test_sample_config.cc ...test_templates.cc ...unexpanded_xrl.cc ...unexpanded_xrl.hh ...userdb.cc ...userdb.hh ...util.cc ...xorp_client.cc ...xorp_client.hh ...xorpsh_main.cc ...! xorpsh_main! .hh ...xrl_rtrmgr_interface.cc ...xrl_rtrmgr_interface.hh ...xrl_xorpsh_interface.cc ...xrl_xorpsh_interface.hh ...xrldb.cc ...xrldb.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/28 15:28:01 Modified files: xorp/rtrmgr/: cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh module_manager.cc module_manager.hh op_commands.cc op_commands.hh popen.cc randomness.cc randomness.hh rtrmgr_error.hh slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh slave_module_manager.cc task.cc task.hh template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_module_manager.cc test_sample_config.cc test_templates.cc unexpanded_xrl.cc unexpanded_xrl.hh userdb.cc userdb.hh util.cc xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh Log message: Cleanup the list of included files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 15:34:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 15:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMZ1NG065405 for ; Fri, 28 May 2004 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMZ1PA022035 for ; Fri, 28 May 2004 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SMZ1Yq001298; Fri, 28 May 2004 15:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SMYiYq001291 for ; Fri, 28 May 2004 15:34:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMYiPA022030 for ; Fri, 28 May 2004 15:34:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SMYigd072432 for ; Fri, 28 May 2004 15:34:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4SMYilg072431; Fri, 28 May 2004 15:34:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405282234.i4SMYilg072431@xorpc.icir.org> Date: Fri, 28 May 2004 15:34:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/28 15:34:44 Modified files: xorp/rtrmgr/: TODO Log message: Move TODO entries to section DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 16:12:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 16:13:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SND7NG072382 for ; Fri, 28 May 2004 16:13:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SND7PA022438 for ; Fri, 28 May 2004 16:13:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SND0Yq002222; Fri, 28 May 2004 16:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4SNCRYq002203 for ; Fri, 28 May 2004 16:12:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SNCRPA022435 for ; Fri, 28 May 2004 16:12:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4SNCRgd073808 for ; Fri, 28 May 2004 16:12:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4SNCQom073807; Fri, 28 May 2004 16:12:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405282312.i4SNCQom073807@xorpc.icir.org> Date: Fri, 28 May 2004 16:12:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/28 16:12:26 Modified files: xorp/etc/templates/: bgp.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp static_routes.tp Log message: Replace all "disable: bool" template/config statements with the reversed "enabled: bool". The replacement is based on a semi-rough concensus with the following arguments in support of the replacement: * By default, everything is disabled, hence implementing the "disable" logic is like negating-the-negation, which can be confusing. * There is a preference that this should be a state rather than a verb, hence "enabled" instead of "enable". * In our configuration style we are not following _exactly_ any particular router vendor, hence we should try to improve our configuration/template style if there is space for improvement. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 17:06:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 17:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T071NG099234 for ; Fri, 28 May 2004 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T071PA023042 for ; Fri, 28 May 2004 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4T071Yq003417; Fri, 28 May 2004 17:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4T069Yq003396 for ; Fri, 28 May 2004 17:06:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T069PA023034 for ; Fri, 28 May 2004 17:06:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T069gd084978 for ; Fri, 28 May 2004 17:06:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4T069lf084977; Fri, 28 May 2004 17:06:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405290006.i4T069lf084977@xorpc.icir.org> Date: Fri, 28 May 2004 17:06:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.yy op_commands.yy template.yy y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/28 17:06:08 Modified files: xorp/rtrmgr/: boot.yy op_commands.yy template.yy y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Log message: Add #include "libxorp/xorp.h" to fix a compilation error for gcc-2.95.4 on FreeBSD-4.8 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Fri May 28 18:43:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 May 2004 18:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T1i1NG024355 for ; Fri, 28 May 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T1i1PA023962 for ; Fri, 28 May 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4T1i1Yq005122; Fri, 28 May 2004 18:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4T1h5Yq005100 for ; Fri, 28 May 2004 18:43:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T1h5PA023959 for ; Fri, 28 May 2004 18:43:05 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4T1h5gd092737 for ; Fri, 28 May 2004 18:43:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4T1h5p5092736; Fri, 28 May 2004 18:43:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405290143.i4T1h5p5092736@xorpc.icir.org> Date: Fri, 28 May 2004 18:43:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc peer.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/28 18:43:05 Modified files: xorp/bgp/: peer.cc peer.hh Log message: We are incorrectly processing notifications that we receive. Its not clear why we are receiving notifications so augment the warning message and defer fixing the problem until we have a better understanding of the problem. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Sat May 29 12:55:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 12:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TJu2NG030832 for ; Sat, 29 May 2004 12:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TJu1PA037796 for ; Sat, 29 May 2004 12:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4TJu1Yq023745; Sat, 29 May 2004 12:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4TJtZYq023739 for ; Sat, 29 May 2004 12:55:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TJtYPA037793 for ; Sat, 29 May 2004 12:55:34 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TJtYgd058948 for ; Sat, 29 May 2004 12:55:34 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4TJtYqv058947; Sat, 29 May 2004 12:55:34 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405291955.i4TJtYqv058947@xorpc.icir.org> Date: Sat, 29 May 2004 12:55:34 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: atanu@xorpc.icir.org. 04/05/29 12:55:34 Modified files: xorp/bgp/: peer.cc xorp/libxorp/: timespent.hh Log message: The BGP process is occassionally failing to return to the main eventloop for 695 seconds. Add some more debugging macros and enable the checks by default. Also bump the limit from 1 second to 10 seconds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Sat May 29 15:47:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 15:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TMm1NG066880 for ; Sat, 29 May 2004 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TMm1PA039430 for ; Sat, 29 May 2004 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4TMm1Yq026451; Sat, 29 May 2004 15:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4TMlFYq026437 for ; Sat, 29 May 2004 15:47:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TMlEPA039422 for ; Sat, 29 May 2004 15:47:14 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4TMlEgd064104 for ; Sat, 29 May 2004 15:47:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4TMlEjt064103; Sat, 29 May 2004 15:47:14 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405292247.i4TMlEjt064103@xorpc.icir.org> Date: Sat, 29 May 2004 15:47:14 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/05/29 15:47:14 Modified files: xorp/rtrmgr/: template_tree_node.cc Log message: Cast to resolve the size_t != int problem on the Mac OS X. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:47 2005 Subject: No subject Sat May 29 17:49:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 17:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U0o1NG092124 for ; Sat, 29 May 2004 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U0o1PA040512 for ; Sat, 29 May 2004 17:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U0o0Yq028218; Sat, 29 May 2004 17:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U0nrYq028211 for ; Sat, 29 May 2004 17:49:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U0nrPA040505 for ; Sat, 29 May 2004 17:49:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U0nrgd069350 for ; Sat, 29 May 2004 17:49:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U0nrxU069349; Sat, 29 May 2004 17:49:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300049.i4U0nrxU069349@xorpc.icir.org> Date: Sat, 29 May 2004 17:49:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll op_commands.ll template.ll Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/29 17:49:53 Modified files: xorp/rtrmgr/: boot.ll op_commands.ll template.ll Log message: Change the type of bootlval opcmdlval and tpltlval from "extern void*" to the more appropriate "extern char*" (e.g., those variables are used as pointers to C strings, and YYSTYPE is defined as "char*"). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 18:17:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 18:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1I1NG097126 for ; Sat, 29 May 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1I1PA040771 for ; Sat, 29 May 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U1I0Yq028626; Sat, 29 May 2004 18:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U1HmYq028620 for ; Sat, 29 May 2004 18:17:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1HmPA040769 for ; Sat, 29 May 2004 18:17:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1Hmgd071166 for ; Sat, 29 May 2004 18:17:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U1HmvZ071165; Sat, 29 May 2004 18:17:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300117.i4U1HmvZ071165@xorpc.icir.org> Date: Sat, 29 May 2004 18:17:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ .cvsignore Makefile.am Makefile.in xorp/rtrmgr/ lex.boot.cc lex.opcmd.cc lex.tplt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/29 18:17:48 Modified files: xorp/rtrmgr/: .cvsignore Makefile.am Makefile.in Added files: xorp/rtrmgr/: lex.boot.cc lex.opcmd.cc lex.tplt.cc Log message: For portability reasons, don't build the lex generated files automatically; instead, add them to the CVS repository. Hence, if you touch the .ll files, you need to explicitly "gmake lex" to run flex. The portability problem appears with flex-2.5.31 (e.g., available on Linux Debian machine) which generates a parser that doesn't work properly, while the lastest stable version flex-2.5.4 appears OK. [Bug report by Emmanuel QUEMENER ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 18:44:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 18:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1j1NG002900 for ; Sat, 29 May 2004 18:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1j0PA041010 for ; Sat, 29 May 2004 18:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U1j0Yq029053; Sat, 29 May 2004 18:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U1iZYq029041 for ; Sat, 29 May 2004 18:44:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1iZPA041002 for ; Sat, 29 May 2004 18:44:35 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U1iZgd079020 for ; Sat, 29 May 2004 18:44:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U1iZE6079019; Sat, 29 May 2004 18:44:35 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300144.i4U1iZE6079019@xorpc.icir.org> Date: Sat, 29 May 2004 18:44:35 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/05/29 18:44:35 Modified files: xorp/bgp/harness/: NOTES Log message: Fix typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 19:00:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 19:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U211NG009157 for ; Sat, 29 May 2004 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U211PA041169 for ; Sat, 29 May 2004 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U211Yq029258; Sat, 29 May 2004 19:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U202Yq029239 for ; Sat, 29 May 2004 19:00:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U202PA041148 for ; Sat, 29 May 2004 19:00:02 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U201gd079991 for ; Sat, 29 May 2004 19:00:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U201GW079990; Sat, 29 May 2004 19:00:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300200.i4U201GW079990@xorpc.icir.org> Date: Sat, 29 May 2004 19:00:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 04/05/29 19:00:01 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Update the documentation to reflect that withdraws are saved in the trie to allow replay. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 20:37:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 20:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3c1NG042015 for ; Sat, 29 May 2004 20:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3c1PA042056 for ; Sat, 29 May 2004 20:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U3c0Yq000628; Sat, 29 May 2004 20:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U3b4Yq000605 for ; Sat, 29 May 2004 20:37:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3b4PA042050 for ; Sat, 29 May 2004 20:37:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3b4gd085517 for ; Sat, 29 May 2004 20:37:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U3b4Ij085516; Sat, 29 May 2004 20:37:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300337.i4U3b4Ij085516@xorpc.icir.org> Date: Sat, 29 May 2004 20:37:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ xrl_cli_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/29 20:37:03 Modified files: xorp/cli/: xrl_cli_node.cc Log message: Print an error if the processing of a CLI command fails. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 20:41:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 20:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3g0NG043454 for ; Sat, 29 May 2004 20:42:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3g0PA042107 for ; Sat, 29 May 2004 20:42:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U3g0Yq000723; Sat, 29 May 2004 20:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U3fNYq000713 for ; Sat, 29 May 2004 20:41:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3fNPA042102 for ; Sat, 29 May 2004 20:41:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U3fNgd085808 for ; Sat, 29 May 2004 20:41:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U3fN7W085807; Sat, 29 May 2004 20:41:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300341.i4U3fN7W085807@xorpc.icir.org> Date: Sat, 29 May 2004 20:41:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.cc xorp/pim/ xrl_pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/29 20:41:23 Modified files: xorp/fea/: xrl_mfea_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.cc xorp/pim/: xrl_pim_node.cc Log message: Perform better processing of XRL errors. E.g., if there is an error because the receiving side rejected the command, then print an error and continue with the next command. However, in some cases when the receiving side must not reject it, then use XLOG_FATAL(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 21:15:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 21:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U4G1NG051814 for ; Sat, 29 May 2004 21:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U4G1PA042408 for ; Sat, 29 May 2004 21:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U4G1Yq001070; Sat, 29 May 2004 21:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U4F9Yq001061 for ; Sat, 29 May 2004 21:15:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U4F9PA042404 for ; Sat, 29 May 2004 21:15:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U4F9gd088158 for ; Sat, 29 May 2004 21:15:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U4F9Df088157; Sat, 29 May 2004 21:15:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300415.i4U4F9Df088157@xorpc.icir.org> Date: Sat, 29 May 2004 21:15:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/29 21:15:08 Modified files: xorp/pim/: pim_mfc.cc Log message: Fix PimMfc::delete_mfc_from_kernel() such that it doesn't call delete_all_dataflow_monitor(), because the deletion of the MFC entry itself will remove all associated dataflow monitors. In addition, due to the output queueing of the add/delete dataflow or MFC commands, the "delete MFC" command may actually reach the MFEA before the "delete dataflow" command, which is an (ignorable) error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 23:00:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 23:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U611NG071451 for ; Sat, 29 May 2004 23:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U611PA043428 for ; Sat, 29 May 2004 23:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U611Yq002539; Sat, 29 May 2004 23:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U60rYq002527 for ; Sat, 29 May 2004 23:00:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U60qPA043426 for ; Sat, 29 May 2004 23:00:52 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U60qgd091243 for ; Sat, 29 May 2004 23:00:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U60qP8091242; Sat, 29 May 2004 23:00:52 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300600.i4U60qP8091242@xorpc.icir.org> Date: Sat, 29 May 2004 23:00:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ peer.cc peer.hh xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: atanu@xorpc.icir.org. 04/05/29 23:00:52 Modified files: xorp/bgp/harness/: peer.cc peer.hh xorp/docs/test_harness/: test_harness.tex Log message: Enable the sending of notify, open and keepalive packets, not just update packets. Add a new "assert connected" command that allows testing for the existence of a TCP session. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 23:32:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 23:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6X1NG090289 for ; Sat, 29 May 2004 23:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6X0PA043707 for ; Sat, 29 May 2004 23:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U6X0Yq003027; Sat, 29 May 2004 23:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U6WcYq003020 for ; Sat, 29 May 2004 23:32:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6WcPA043704 for ; Sat, 29 May 2004 23:32:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6Wcgd091684 for ; Sat, 29 May 2004 23:32:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U6WcqC091683; Sat, 29 May 2004 23:32:38 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300632.i4U6WcqC091683@xorpc.icir.org> Date: Sat, 29 May 2004 23:32:38 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/29 23:32:38 Modified files: xorp/bgp/: peer.cc Log message: Add the peername to the XLOG_* messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sat May 29 23:39:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 May 2004 23:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6e1NG091972 for ; Sat, 29 May 2004 23:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6e1PA043769 for ; Sat, 29 May 2004 23:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U6e1Yq003272; Sat, 29 May 2004 23:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U6d1Yq003254 for ; Sat, 29 May 2004 23:39:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6d0PA043762 for ; Sat, 29 May 2004 23:39:00 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U6d0gd091765 for ; Sat, 29 May 2004 23:39:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U6d0hE091764; Sat, 29 May 2004 23:39:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300639.i4U6d0hE091764@xorpc.icir.org> Date: Sat, 29 May 2004 23:39:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/29 23:39:00 Modified files: xorp/bgp/: peer.cc Log message: Move the setting of the saved error to one place. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sun May 30 0:03:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 00:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U741NG097548 for ; Sun, 30 May 2004 00:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U741PA044026 for ; Sun, 30 May 2004 00:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U741Yq003713; Sun, 30 May 2004 00:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U73vYq003707 for ; Sun, 30 May 2004 00:03:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U73uPA044024 for ; Sun, 30 May 2004 00:03:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U73ugd092104 for ; Sun, 30 May 2004 00:03:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U73uMR092103; Sun, 30 May 2004 00:03:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405300703.i4U73uMR092103@xorpc.icir.org> Date: Sun, 30 May 2004 0:03:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/05/30 00:03:56 Modified files: xorp/bgp/: peer.cc xorp/bgp/harness/: test_peering1.sh Log message: Don't send a notify in response to a notify. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sun May 30 2:57:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 02:58:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U9w3NG041666 for ; Sun, 30 May 2004 02:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U9w3PA046291 for ; Sun, 30 May 2004 02:58:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U9w1Yq006019; Sun, 30 May 2004 02:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4U9vHYq006003 for ; Sun, 30 May 2004 02:57:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U9vGPA046286 for ; Sun, 30 May 2004 02:57:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4U9vGgd095047 for ; Sun, 30 May 2004 02:57:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4U9vGZc095046; Sun, 30 May 2004 02:57:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405300957.i4U9vGZc095046@xorpc.icir.org> Date: Sun, 30 May 2004 2:57:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.hh pim_mfc.cc pim_mre_track_state.hh pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/05/30 02:57:16 Modified files: xorp/pim/: pim_mfc.hh pim_mfc.cc pim_mre_track_state.hh pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Add new output state to the state-dependency tracking machinery: OUTPUT_STATE_UPDATE_SPTBIT_MFC. This state is used on PimMre entries to recompute and eventually set the SPT bit for the corresponding (S,G) entries. Note that the spec says that the recomputation by calling Update_SPTbit(S,G,iif) should happen when a packet arrives. However, given that we do not forward the data packets in user space, we need to emulate that by triggering the recomputation whenever some of the input statements have changed. Also, note that this recomputation is not needed if there is not underlying PimMfc entry; the lack of such entry will anyway trigger a system uncall once the first multicast packet is received for forwarding. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sun May 30 3:06:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 03:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UA71NG043775 for ; Sun, 30 May 2004 03:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UA71PA046438 for ; Sun, 30 May 2004 03:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UA71Yq006124; Sun, 30 May 2004 03:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UA65Yq006113 for ; Sun, 30 May 2004 03:06:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UA65PA046420 for ; Sun, 30 May 2004 03:06:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UA65gd095283 for ; Sun, 30 May 2004 03:06:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UA65Ut095282; Sun, 30 May 2004 03:06:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405301006.i4UA65Ut095282@xorpc.icir.org> Date: Sun, 30 May 2004 3:06:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/30 03:06:05 Modified files: xorp/pim/: pim_mfc.cc Log message: Remove code in PimMfc::recompute_iif_olist_mfc() that unnecessary removes the PimMfc entry if its old olist was NULL. Originally, the code was needed so once the PimMfc entry is deleted, then the NOCACHE upcall will not only recreate it, but will also trigger recomputation of the SPT bit for the corresponding (S,G) entry. However, the side effect of removing a PimMfc entry was that the (S,G) KeepAlive timer was automatically cancelled. The KeepAlive timer cancellation would eventually affect the (S,G) routing state and would result in other various side effects and undesired behavior. Now this code can be removed, because the state-dependency tracking machinery takes care of the SPT bit so we don't need to re-create the PimMfc entry just to update that bit. [Bug report by Marian Durkovic ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sun May 30 3:24:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 03:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAP1NG047855 for ; Sun, 30 May 2004 03:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAP1PA046642 for ; Sun, 30 May 2004 03:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UAP1Yq006400; Sun, 30 May 2004 03:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UAORYq006385 for ; Sun, 30 May 2004 03:24:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAOQPA046632 for ; Sun, 30 May 2004 03:24:26 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAOQgd095507 for ; Sun, 30 May 2004 03:24:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UAOQUg095506; Sun, 30 May 2004 03:24:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405301024.i4UAOQUg095506@xorpc.icir.org> Date: Sun, 30 May 2004 3:24:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_deletion.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/05/30 03:24:26 Modified files: xorp/bgp/: route_table_deletion.cc Log message: Fix to route_used() in DeletionTable. Should not pass on upstream if the route is in the DeletionTable's trie. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:48 2005 Subject: No subject Sun May 30 3:42:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 03:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAh0NG051136 for ; Sun, 30 May 2004 03:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAh0PA046843 for ; Sun, 30 May 2004 03:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UAh0Yq006622; Sun, 30 May 2004 03:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UAgWYq006615 for ; Sun, 30 May 2004 03:42:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAgWPA046839 for ; Sun, 30 May 2004 03:42:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UAgWgd095716 for ; Sun, 30 May 2004 03:42:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UAgWf1095715; Sun, 30 May 2004 03:42:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405301042.i4UAgWf1095715@xorpc.icir.org> Date: Sun, 30 May 2004 3:42:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/05/30 03:42:31 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 11:38:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 11:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UId1NG033118 for ; Sun, 30 May 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UId1PA051414 for ; Sun, 30 May 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UId0Yq014871; Sun, 30 May 2004 11:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UIcaYq014859 for ; Sun, 30 May 2004 11:38:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIcZPA051408 for ; Sun, 30 May 2004 11:38:35 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIcZgd005890 for ; Sun, 30 May 2004 11:38:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UIcZD6005889; Sun, 30 May 2004 11:38:35 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405301838.i4UIcZD6005889@xorpc.icir.org> Date: Sun, 30 May 2004 11:38:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ patch_rc xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/30 11:38:35 Modified files: other/LiveCD/files/: patch_rc xorp.sh Log message: Delay sshd startup until after the sshd host keys have been copied in from floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 11:46:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 11:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIl1NG034516 for ; Sun, 30 May 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIl1PA051523 for ; Sun, 30 May 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UIl1Yq015000; Sun, 30 May 2004 11:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UIkuYq014993 for ; Sun, 30 May 2004 11:46:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIkuPA051520 for ; Sun, 30 May 2004 11:46:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UIkugd006273 for ; Sun, 30 May 2004 11:46:56 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UIkupe006272; Sun, 30 May 2004 11:46:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200405301846.i4UIkupe006272@xorpc.icir.org> Date: Sun, 30 May 2004 11:46:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/05/30 11:46:56 Modified files: other/LiveCD/files/: xorp.sh Log message: Run pwd_mkdb after copying in master password file from floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 12:27:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UJS1NG041575 for ; Sun, 30 May 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UJS1PA051950 for ; Sun, 30 May 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UJS1Yq015669; Sun, 30 May 2004 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UJRMYq015653 for ; Sun, 30 May 2004 12:27:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UJRLPA051939 for ; Sun, 30 May 2004 12:27:21 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UJRLgd007730 for ; Sun, 30 May 2004 12:27:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UJRLRu007729; Sun, 30 May 2004 12:27:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405301927.i4UJRLRu007729@xorpc.icir.org> Date: Sun, 30 May 2004 12:27:21 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ add_static addr_status delete_static Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/05/30 12:27:21 Removed files: xorp/rip/tools/: add_static addr_status delete_static Log message: Remove deprecated scripts. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 15:51:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 15:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UMq2NG076908 for ; Sun, 30 May 2004 15:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UMq2PA053935 for ; Sun, 30 May 2004 15:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UMq0Yq018512; Sun, 30 May 2004 15:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UMp5Yq018500 for ; Sun, 30 May 2004 15:51:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UMp5PA053926 for ; Sun, 30 May 2004 15:51:05 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UMp4gd014118 for ; Sun, 30 May 2004 15:51:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UMp4UN014117; Sun, 30 May 2004 15:51:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200405302251.i4UMp4UN014117@xorpc.icir.org> Date: Sun, 30 May 2004 15:51:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/05/30 15:51:04 Modified files: xorp/bgp/: peer.cc Log message: Some more debugging. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 16:17:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 16:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNI1NG087457 for ; Sun, 30 May 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNI0PA054203 for ; Sun, 30 May 2004 16:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNI0Yq018958; Sun, 30 May 2004 16:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNHYYq018947 for ; Sun, 30 May 2004 16:17:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNHYPA054201 for ; Sun, 30 May 2004 16:17:34 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNHXgd015203 for ; Sun, 30 May 2004 16:17:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UNHXTw015202; Sun, 30 May 2004 16:17:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405302317.i4UNHXTw015202@xorpc.icir.org> Date: Sun, 30 May 2004 16:17:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ bgp.xif bgp_xif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: hodson@xorpc.icir.org. 04/05/30 16:17:33 Modified files: xorp/xrl/interfaces/: bgp.xif bgp_xif.hh Log message: Fix warnings from clnt-gen. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 16:20:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 16:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNL1NG087989 for ; Sun, 30 May 2004 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNL1PA054245 for ; Sun, 30 May 2004 16:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNL1Yq019003; Sun, 30 May 2004 16:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNK3Yq018995 for ; Sun, 30 May 2004 16:20:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNK3PA054222 for ; Sun, 30 May 2004 16:20:03 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNK2gd015415 for ; Sun, 30 May 2004 16:20:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UNK2RA015414; Sun, 30 May 2004 16:20:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405302320.i4UNK2RA015414@xorpc.icir.org> Date: Sun, 30 May 2004 16:20:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ bgp.xrls bgp_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/05/30 16:20:02 Modified files: xorp/xrl/targets/: bgp.xrls bgp_base.hh Log message: Regenerate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 16:43:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNi1NG091525 for ; Sun, 30 May 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNi1PA054460 for ; Sun, 30 May 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNi1Yq019366; Sun, 30 May 2004 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4UNhHYq019360 for ; Sun, 30 May 2004 16:43:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNhHPA054453 for ; Sun, 30 May 2004 16:43:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4UNhGgd016462 for ; Sun, 30 May 2004 16:43:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4UNhGCf016461; Sun, 30 May 2004 16:43:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405302343.i4UNhGCf016461@xorpc.icir.org> Date: Sun, 30 May 2004 16:43:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/30 16:43:16 Modified files: xorp/etc/templates/: bgp.cmds Log message: Replace "ipv4" and "ipv6" with "IPv4" and "IPv6" respectively inside the command help strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 19:31:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 19:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2W2NG018617 for ; Sun, 30 May 2004 19:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2W2PA056232 for ; Sun, 30 May 2004 19:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V2W1Yq022063; Sun, 30 May 2004 19:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V2VgYq022051 for ; Sun, 30 May 2004 19:31:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2VfPA056228 for ; Sun, 30 May 2004 19:31:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2Vfgd031522 for ; Sun, 30 May 2004 19:31:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V2VfM4031521; Sun, 30 May 2004 19:31:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310231.i4V2VfM4031521@xorpc.icir.org> Date: Sun, 30 May 2004 19:31:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ xrl_rtrmgr_interface.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/30 19:31:41 Modified files: xorp/rtrmgr/: xrl_rtrmgr_interface.cc Log message: * Replace XLOG_TRACE() with debug_msg() * Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 19:32:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 19:33:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2X0NG018802 for ; Sun, 30 May 2004 19:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2X0PA056245 for ; Sun, 30 May 2004 19:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V2X0Yq022099; Sun, 30 May 2004 19:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V2WGYq022080 for ; Sun, 30 May 2004 19:32:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2WGPA056237 for ; Sun, 30 May 2004 19:32:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V2WGgd031602 for ; Sun, 30 May 2004 19:32:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V2WG8n031601; Sun, 30 May 2004 19:32:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310232.i4V2WG8n031601@xorpc.icir.org> Date: Sun, 30 May 2004 19:32:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh conf_tree_node.cc slave_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/30 19:32:16 Modified files: xorp/rtrmgr/: cli.cc cli.hh conf_tree_node.cc slave_conf_tree.cc Log message: Editorial nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 21:06:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 21:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V471NG035059 for ; Sun, 30 May 2004 21:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V471PA057239 for ; Sun, 30 May 2004 21:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V471Yq023585; Sun, 30 May 2004 21:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V46fYq023579 for ; Sun, 30 May 2004 21:06:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V46fPA057237 for ; Sun, 30 May 2004 21:06:41 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V46fgd038213 for ; Sun, 30 May 2004 21:06:41 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V46fBO038212; Sun, 30 May 2004 21:06:41 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405310406.i4V46fBO038212@xorpc.icir.org> Date: Sun, 30 May 2004 21:06:41 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh xorp/rip/ xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rip/tools/ show_peer_stats.cc show_stats.cc xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/05/30 21:06:41 Modified files: xorp/xrl/interfaces/: rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh xorp/rip/: xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rip/tools/: show_peer_stats.cc show_stats.cc xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Log message: o Add XRL method to get active RIP addresses. o Regenerate interface and target files, implement method in RIP. o Add corresponding code to rip/tools/show_stats.cc. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 21:07:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 21:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V481NG035244 for ; Sun, 30 May 2004 21:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V481PA057254 for ; Sun, 30 May 2004 21:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V481Yq023615; Sun, 30 May 2004 21:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V474Yq023596 for ; Sun, 30 May 2004 21:07:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V474PA057244 for ; Sun, 30 May 2004 21:07:04 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V474gd038241 for ; Sun, 30 May 2004 21:07:04 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V474H6038240; Sun, 30 May 2004 21:07:04 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405310407.i4V474H6038240@xorpc.icir.org> Date: Sun, 30 May 2004 21:07:04 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/05/30 21:07:04 Added files: xorp/etc/templates/: rip.cmds Log message: Add basic RIP commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Sun May 30 23:15:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 May 2004 23:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V6G1NG057275 for ; Sun, 30 May 2004 23:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V6G1PA058604 for ; Sun, 30 May 2004 23:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V6G1Yq025475; Sun, 30 May 2004 23:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V6FOYq025461 for ; Sun, 30 May 2004 23:15:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V6FOPA058599 for ; Sun, 30 May 2004 23:15:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V6FOgd051861 for ; Sun, 30 May 2004 23:15:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V6FOUN051860; Sun, 30 May 2004 23:15:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310615.i4V6FOUN051860@xorpc.icir.org> Date: Sun, 30 May 2004 23:15:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/05/30 23:15:24 Modified files: xorp/cli/: cli_client.cc Log message: Print more meaningful error message if the failed command is not executable (e.g., if it is only a path with no children). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 0:02:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 00:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V731NG066058 for ; Mon, 31 May 2004 00:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V731PA059072 for ; Mon, 31 May 2004 00:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V730Yq026357; Mon, 31 May 2004 00:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V726Yq026332 for ; Mon, 31 May 2004 00:02:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V726PA059058 for ; Mon, 31 May 2004 00:02:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V726gd055658 for ; Mon, 31 May 2004 00:02:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V726NO055657; Mon, 31 May 2004 00:02:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310702.i4V726NO055657@xorpc.icir.org> Date: Mon, 31 May 2004 0:02:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 00:02:06 Modified files: xorp/rtrmgr/: cli.cc Log message: * Change all remaining "Error:" error messages to "ERROR:" (for consistency). * Change the "edit" node in configuration mode to be executable, so method RouterCLI::edit_func() is invoked. This is needed so we can process all bogus commands like "edit no-such-element" and print the appropriate error message instead of relying on the default CLI error message. * Refactor RouterCLI::edit_func() such that it prints a proper error message (if an error), and processes editing error commands like "edit no-such-element". * Fix RouterCLI::add_edit_subtree() such that when it creates the command subtree it doesn't include the template nodes (i.e., only the existing configuration nodes are included). [This fixes Bugzilla bug #23] * Few nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 0:59:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 01:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V801NG077548 for ; Mon, 31 May 2004 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V801PA059715 for ; Mon, 31 May 2004 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V801Yq027333; Mon, 31 May 2004 01:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V7x1Yq027299 for ; Mon, 31 May 2004 00:59:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V7x0PA059686 for ; Mon, 31 May 2004 00:59:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V7x0gd060188 for ; Mon, 31 May 2004 00:59:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V7x0ZQ060187; Mon, 31 May 2004 00:59:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310759.i4V7x0ZQ060187@xorpc.icir.org> Date: Mon, 31 May 2004 0:59:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 00:59:00 Modified files: xorp/rtrmgr/: cli.cc Log message: Clean-up the error messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 1:18:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 01:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V8J1NG080870 for ; Mon, 31 May 2004 01:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V8J0PA059946 for ; Mon, 31 May 2004 01:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V8J0Yq027702; Mon, 31 May 2004 01:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4V8IgYq027688 for ; Mon, 31 May 2004 01:18:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V8IgPA059942 for ; Mon, 31 May 2004 01:18:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4V8Ifgd061930 for ; Mon, 31 May 2004 01:18:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4V8IfBw061929; Mon, 31 May 2004 01:18:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200405310818.i4V8IfBw061929@xorpc.icir.org> Date: Mon, 31 May 2004 1:18:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 01:18:41 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: Increase the config output space indentation from 2 to 4 spaces. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 14:24:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 14:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i4VLP1NG017843 for ; Mon, 31 May 2004 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4VLP1PA068610 for ; Mon, 31 May 2004 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4VLP0Yq012975; Mon, 31 May 2004 14:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i4VLOAYq012959 for ; Mon, 31 May 2004 14:24:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i4VLOAPA068600 for ; Mon, 31 May 2004 14:24:10 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i4VLO9gd011547 for ; Mon, 31 May 2004 14:24:09 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i4VLO9A4011546; Mon, 31 May 2004 14:24:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200405312124.i4VLO9A4011546@xorpc.icir.org> Date: Mon, 31 May 2004 14:24:09 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/05/31 14:24:09 Modified files: xorp/rip/: TODO Log message: Remove some completed items. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 21:24:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 21:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i514P1NG005635 for ; Mon, 31 May 2004 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514P1PA072925 for ; Mon, 31 May 2004 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514P0Yq019850; Mon, 31 May 2004 21:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514OeYq019839 for ; Mon, 31 May 2004 21:24:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514OePA072914 for ; Mon, 31 May 2004 21:24:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i514Odgd038474 for ; Mon, 31 May 2004 21:24:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i514OdwU038473; Mon, 31 May 2004 21:24:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010424.i514OdwU038473@xorpc.icir.org> Date: Mon, 31 May 2004 21:24:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 21:24:39 Modified files: xorp/rtrmgr/: cli.hh Log message: Nitlets _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:49 2005 Subject: No subject Mon May 31 21:31:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 21:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i514W1NG007185 for ; Mon, 31 May 2004 21:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514W1PA073032 for ; Mon, 31 May 2004 21:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514W1Yq020020; Mon, 31 May 2004 21:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514VHYq019996 for ; Mon, 31 May 2004 21:31:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514VHPA073021 for ; Mon, 31 May 2004 21:31:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i514VHgd039135 for ; Mon, 31 May 2004 21:31:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i514VH0U039134; Mon, 31 May 2004 21:31:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010431.i514VH0U039134@xorpc.icir.org> Date: Mon, 31 May 2004 21:31:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 21:31:17 Modified files: xorp/rtrmgr/: cli.cc Log message: Nitlets. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Mon May 31 21:39:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 21:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i514e1NG008917 for ; Mon, 31 May 2004 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514e1PA073108 for ; Mon, 31 May 2004 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514e1Yq020168; Mon, 31 May 2004 21:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514dtYq020160 for ; Mon, 31 May 2004 21:39:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514dtPA073101 for ; Mon, 31 May 2004 21:39:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i514dsgd039659 for ; Mon, 31 May 2004 21:39:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i514dst4039658; Mon, 31 May 2004 21:39:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010439.i514dst4039658@xorpc.icir.org> Date: Mon, 31 May 2004 21:39:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/05/31 21:39:54 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: Add new "create" configuration-mode command that is used to invoke the xorpsh built-in configuration creation+editing mode. Previously, typing just a template path (e.g., "protocols bgp") would invoke that mode. Now we must use the command "create". E.g., "create protocols bgp" or "create protocols bgp {" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Mon May 31 21:49:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 21:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i514o1NG010980 for ; Mon, 31 May 2004 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514o1PA073232 for ; Mon, 31 May 2004 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514o1Yq020318; Mon, 31 May 2004 21:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514n5Yq020301 for ; Mon, 31 May 2004 21:49:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514n5PA073208 for ; Mon, 31 May 2004 21:49:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i514n5gd040368 for ; Mon, 31 May 2004 21:49:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i514n5gB040367; Mon, 31 May 2004 21:49:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010449.i514n5gB040367@xorpc.icir.org> Date: Mon, 31 May 2004 21:49:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/31 21:49:05 Modified files: xorp/etc/templates/: igmp.tp mfea4.tp mfea6.tp mld.tp pimsm4.tp pimsm6.tp Log message: Replace all "enable: bool" template/config statements with "enabled: bool" (for consistency with the rest of the templates). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Mon May 31 21:54:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 May 2004 21:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i514t1NG012054 for ; Mon, 31 May 2004 21:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514t1PA073308 for ; Mon, 31 May 2004 21:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514t1Yq020427; Mon, 31 May 2004 21:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i514swYq020421 for ; Mon, 31 May 2004 21:54:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i514svPA073302 for ; Mon, 31 May 2004 21:54:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i514svgd040802 for ; Mon, 31 May 2004 21:54:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i514svfk040801; Mon, 31 May 2004 21:54:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010454.i514svfk040801@xorpc.icir.org> Date: Mon, 31 May 2004 21:54:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/05/31 21:54:57 Modified files: xorp/etc/templates/: pimsm4.tp pimsm6.tp Log message: Bug fix: "@.enable" -> "@.enabled" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 1:12:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 01:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i518D1NG047193 for ; Tue, 1 Jun 2004 01:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i518D1PA075406 for ; Tue, 1 Jun 2004 01:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i518D1Yq024371; Tue, 1 Jun 2004 01:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i518CqYq024364 for ; Tue, 1 Jun 2004 01:12:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i518CqPA075404 for ; Tue, 1 Jun 2004 01:12:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i518Cqgd056863 for ; Tue, 1 Jun 2004 01:12:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i518Cql2056862; Tue, 1 Jun 2004 01:12:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406010812.i518Cql2056862@xorpc.icir.org> Date: Tue, 1 Jun 2004 1:12:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 01:12:52 Modified files: xorp/rtrmgr/: cli.cc Log message: If an invalid argument is supplied in configuration mode, then print the appropriate argument type in the error message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 4:44:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 04:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bj1NG085303 for ; Tue, 1 Jun 2004 04:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bj1PA078322 for ; Tue, 1 Jun 2004 04:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Bj1Yq029422; Tue, 1 Jun 2004 04:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51BiNYq029380 for ; Tue, 1 Jun 2004 04:44:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51BiMPA078307 for ; Tue, 1 Jun 2004 04:44:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51BiMgd074329 for ; Tue, 1 Jun 2004 04:44:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51BiMQR074328; Tue, 1 Jun 2004 04:44:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406011144.i51BiMQR074328@xorpc.icir.org> Date: Tue, 1 Jun 2004 4:44:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_command.cc cli_command.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/01 04:44:22 Modified files: xorp/cli/: cli_command.cc cli_command.hh Log message: Change the format of the DYNAMIC_CHILDREN_CALLBACK method to have one more argument "bool& can_pipe", that is set to true if the built-in pipe commands should be added to the set of children nodes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 4:46:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 04:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bl1NG085655 for ; Tue, 1 Jun 2004 04:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bl1PA078360 for ; Tue, 1 Jun 2004 04:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Bl1Yq029623; Tue, 1 Jun 2004 04:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51BkqYq029576 for ; Tue, 1 Jun 2004 04:46:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51BkpPA078358 for ; Tue, 1 Jun 2004 04:46:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bkpgd074594 for ; Tue, 1 Jun 2004 04:46:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51Bkp6x074593; Tue, 1 Jun 2004 04:46:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406011146.i51Bkp6x074593@xorpc.icir.org> Date: Tue, 1 Jun 2004 4:46:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.hh op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 04:46:51 Modified files: xorp/rtrmgr/: op_commands.hh op_commands.cc Log message: * Change OpCommandList::top_level_commands() to return a map of strings with the top-level commands and their corresponding help strings. * Change the format of the DYNAMIC_CHILDREN_CALLBACK methods to have one more argument "bool& can_pipe", that is set to true if the built-in pipe commands should be added to the set of children nodes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 4:49:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 04:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bo1NG086189 for ; Tue, 1 Jun 2004 04:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Bo1PA078399 for ; Tue, 1 Jun 2004 04:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Bo1Yq029812; Tue, 1 Jun 2004 04:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51BnDYq029796 for ; Tue, 1 Jun 2004 04:49:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51BnDPA078383 for ; Tue, 1 Jun 2004 04:49:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51BnCgd074837 for ; Tue, 1 Jun 2004 04:49:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51BnCZ7074836; Tue, 1 Jun 2004 04:49:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406011149.i51BnCZ7074836@xorpc.icir.org> Date: Tue, 1 Jun 2004 4:49:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 04:49:12 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: * Specify each CliCommand whether it supports or doesn't support the built-in CLI pipe commands. * Now the return value of op_cmd_list()->top_level_commands() is a map of strings instead of a set of strings. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 10:13:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 10:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51HE1NG043679 for ; Tue, 1 Jun 2004 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51HE1PA082770 for ; Tue, 1 Jun 2004 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51HE0Yq008276; Tue, 1 Jun 2004 10:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51HDRYq008257 for ; Tue, 1 Jun 2004 10:13:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51HDQPA082765 for ; Tue, 1 Jun 2004 10:13:26 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51HDQgd099049 for ; Tue, 1 Jun 2004 10:13:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51HDQa5099048; Tue, 1 Jun 2004 10:13:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406011713.i51HDQa5099048@xorpc.icir.org> Date: Tue, 1 Jun 2004 10:13:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/06/01 10:13:26 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Fix gcc 2.95 compilation failure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 01 19:55:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 11:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Iu1NG087213 for ; Tue, 1 Jun 2004 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Iu0PA084099 for ; Tue, 1 Jun 2004 11:56:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Iu0Yq010900; Tue, 1 Jun 2004 11:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51ItdYq010877 for ; Tue, 1 Jun 2004 11:55:39 -0700 (PDT) Received: from aardvark.cs.ucl.ac.uk (aardvark.cs.ucl.ac.uk [128.16.11.150]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51ItcPA084095; Tue, 1 Jun 2004 11:55:38 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (localhost [127.0.0.1]) by aardvark.cs.ucl.ac.uk (8.12.9p2/8.12.8) with ESMTP id i51ItbxF011012; Tue, 1 Jun 2004 19:55:37 +0100 (BST) (envelope-from mjh@aardvark.cs.ucl.ac.uk) From: Mark Handley X-Organisation: UCL To: pavlin@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh In-reply-to: Your message of "Mon, 31 May 2004 21:39:54." <200406010439.i514dst4039658@xorpc.icir.org> Date: Tue, 01 Jun 2004 19:55:37 +0100 Message-ID: <11011.1086116137@aardvark.cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > Add new "create" configuration-mode command that is used to > invoke the xorpsh built-in configuration creation+editing mode. > > Previously, typing just a template path (e.g., "protocols bgp") > would invoke that mode. Now we must use the command "create". > E.g., "create protocols bgp" or "create protocols bgp {" Personally I rather liked the old behaviour :-) I agree that the mode change entering direct entry mode was confusing. I'd probably have solved this by printing a message "[Entering create mode]" or something similar. However, given that you've changed it, I thought I should probably see what Juniper do. It's not easy to find the right documentation, but here it is: http://www.juniper.net/techpubs/software/junos/junos63/swconfig63-system-basics/frameset.htm Somehow I must have been rather confused when I coded the old behaviour. Basically Juniper use both the "set" and "edit" commands to extend the current configuration, as well as to navigate it. Now, the current solution with "create" is definitely workable. But it leads to the question of whether we want to be more Juniper-like, or whether we're happy with the current solution for this release? - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 12:13:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 12:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JE1NG091338 for ; Tue, 1 Jun 2004 12:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JE0PA084346 for ; Tue, 1 Jun 2004 12:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51JE0Yq011542; Tue, 1 Jun 2004 12:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51JDeYq011533 for ; Tue, 1 Jun 2004 12:13:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JDePA084341 for ; Tue, 1 Jun 2004 12:13:40 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JDegd005201 for ; Tue, 1 Jun 2004 12:13:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51JDe9h005200; Tue, 1 Jun 2004 12:13:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406011913.i51JDe9h005200@xorpc.icir.org> Date: Tue, 1 Jun 2004 12:13:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp_load.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/01 12:13:40 Modified files: other/LiveCD/files/: xorp_load.py Log message: Fix permissions on files copied in. This keeps sshd happy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 12:37:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 12:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jc1NG096649 for ; Tue, 1 Jun 2004 12:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jc0PA084673 for ; Tue, 1 Jun 2004 12:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Jc0Yq012241; Tue, 1 Jun 2004 12:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51JbTYq012224 for ; Tue, 1 Jun 2004 12:37:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JbTPA084667 for ; Tue, 1 Jun 2004 12:37:29 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JbSgd006407 for ; Tue, 1 Jun 2004 12:37:29 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51JbSW9006406; Tue, 1 Jun 2004 12:37:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406011937.i51JbSW9006406@xorpc.icir.org> Date: Tue, 1 Jun 2004 12:37:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ test_peer.cc test_peer.hh xorp/docs/test_harness/ test_harness.tex xorp/xrl/interfaces/ test_peer.xif test_peer_xif.cc test_peer_xif.hh xorp/xrl/targets/ test_peer.xrls test_peer_base.cc test_peer_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: atanu@xorpc.icir.org. 04/06/01 12:37:28 Modified files: xorp/bgp/harness/: test_peer.cc test_peer.hh xorp/docs/test_harness/: test_harness.tex xorp/xrl/interfaces/: test_peer.xif test_peer_xif.cc test_peer_xif.hh xorp/xrl/targets/: test_peer.xrls test_peer_base.cc test_peer_base.hh Log message: Add a test_peer command "bind" only, used to verify that the BGP connects are non-blocking. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 12:49:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 12:50:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jo0NG005139 for ; Tue, 1 Jun 2004 12:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jo0PA084817 for ; Tue, 1 Jun 2004 12:50:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Jo0Yq012588; Tue, 1 Jun 2004 12:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51JnwYq012582 for ; Tue, 1 Jun 2004 12:49:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51JnwPA084815 for ; Tue, 1 Jun 2004 12:49:58 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jnwgd006930 for ; Tue, 1 Jun 2004 12:49:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51Jnw5S006929; Tue, 1 Jun 2004 12:49:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406011949.i51Jnw5S006929@xorpc.icir.org> Date: Tue, 1 Jun 2004 12:49:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/01 12:49:58 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Expand PATH when looking for executables. There some host commands that may be useful from with xorpsh that reside in different places depending on OS varient and version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 12:51:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 12:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jq1NG005574 for ; Tue, 1 Jun 2004 12:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jq0PA084869 for ; Tue, 1 Jun 2004 12:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Jq0Yq012655; Tue, 1 Jun 2004 12:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Jp3Yq012630 for ; Tue, 1 Jun 2004 12:51:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jp2PA084854 for ; Tue, 1 Jun 2004 12:51:02 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Jp2gd007032 for ; Tue, 1 Jun 2004 12:51:02 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51Jp2Ap007031; Tue, 1 Jun 2004 12:51:02 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406011951.i51Jp2Ap007031@xorpc.icir.org> Date: Tue, 1 Jun 2004 12:51:02 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ host.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/06/01 12:51:02 Added files: xorp/etc/templates/: host.cmds Log message: Add small selection of host commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 13:55:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 13:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Ku1NG025476 for ; Tue, 1 Jun 2004 13:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Ku1PA085736 for ; Tue, 1 Jun 2004 13:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51Ku0Yq014216; Tue, 1 Jun 2004 13:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51KtkYq014201 for ; Tue, 1 Jun 2004 13:55:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51KtkPA085732 for ; Tue, 1 Jun 2004 13:55:46 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51Ktkgd009860 for ; Tue, 1 Jun 2004 13:55:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51KtkWd009859; Tue, 1 Jun 2004 13:55:46 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406012055.i51KtkWd009859@xorpc.icir.org> Date: Tue, 1 Jun 2004 13:55:45 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/06/01 13:55:45 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Log message: Add host.cmds and rip.cmds. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 01 16:08:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51N91NG054467 for ; Tue, 1 Jun 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51N91PA087850 for ; Tue, 1 Jun 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51N91Yq017926; Tue, 1 Jun 2004 16:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51N8kYq017917 for ; Tue, 1 Jun 2004 16:08:47 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51N8kPA087847; Tue, 1 Jun 2004 16:08:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i51N8cSI046533; Tue, 1 Jun 2004 16:08:38 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200406012308.i51N8cSI046533@possum.icir.org> To: Mark Handley cc: pavlin@icir.org, xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh In-Reply-To: Message from Mark Handley of "Tue, 01 Jun 2004 19:55:37 BST." <11011.1086116137@aardvark.cs.ucl.ac.uk> Date: Tue, 01 Jun 2004 16:08:38 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > > > Add new "create" configuration-mode command that is used to > > invoke the xorpsh built-in configuration creation+editing mode. > > > > Previously, typing just a template path (e.g., "protocols bgp") > > would invoke that mode. Now we must use the command "create". > > E.g., "create protocols bgp" or "create protocols bgp {" > > > Personally I rather liked the old behaviour :-) I agree that the mode > change entering direct entry mode was confusing. I'd probably have > solved this by printing a message "[Entering create mode]" or > something similar. What I didn't like about the original behavior was that node names from the template hierarchy were added at the same level as other commands like "show", "set", etc. E.g., a level at the hierarcy would look like: delete Delete a configuration element edit Edit a sub-element exit Exit from this configuration level help Provide help with commands interface Configure network interface load Load configuration from a file quit Quit from this level In other words, the command "interface" above appears together with the standard CLI commands. This may create potential name collision problems: e.g., if your template hierarchy contains somewhere a node named "load", then this will be a problem if this node name is added to the CLI hierarchy along with the existing "load" command above. In addition, by putting everything under the "create" sub-hierarcy we have much better consistency, because we don't interleave the default system commands with the template-derived commands/names. > > However, given that you've changed it, I thought I should probably see > what Juniper do. It's not easy to find the right documentation, but > here it is: > > http://www.juniper.net/techpubs/software/junos/junos63/swconfig63-system-basics/frameset.htm > > Somehow I must have been rather confused when I coded the old behaviour. > Basically Juniper use both the "set" and "edit" commands to extend the > current configuration, as well as to navigate it. I think that our "edit" is practically same as Juniper's. What is different between our "set" and Juniper's is that in Juniper "set" can be used to create new configuration branches (e.g., start configuring new protocols that weren't in the configuration yet). In our case, "set" can be used only to set/modify things that are already in the hierarchy. On the other hand, the editing-mode we have (i.e., the one that is now under the "create" command) is something that doesn't exist in Juniper, and in our case it is the mode we have to use to create new subtrees in the configuration hierarchy (i.e., configure new protocols, etc). > Now, the current solution with "create" is definitely workable. But > it leads to the question of whether we want to be more Juniper-like, > or whether we're happy with the current solution for this release? What differentiates us from Juniper is: * They have two editing commands/modes: "edit" and "set", while we have three: "edit", "set", and "create". * Juniper's "set" mode is the union of our "set" and "create": i.e., in Juniper you can use "set" to set new values or to create new nodes. In our case we separate those functionalities. However, our "create" mode provides extra "editor-like" functionalities that Juniper doesn't. I have to mention here that last week during the XORP meeting we (Atanu, Orion and me) discussed briefly those configuration modes, and we came to the conclusion that our "create" mode behaves differently from anything Juniper has hence it deserves to be separate. Hence, I believe the only question remains whether we should modify our "set" mode to support creating of new subtree branches (as Juniper does), which of course will duplicate some of the functionalities of our "create" mode. My guess is that this won't be a trivial few-lines change. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 16:31:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 16:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i51NW1NG059495 for ; Tue, 1 Jun 2004 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51NW1PA088116 for ; Tue, 1 Jun 2004 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51NW1Yq018584; Tue, 1 Jun 2004 16:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i51NVvYq018559 for ; Tue, 1 Jun 2004 16:31:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i51NVNPA088112 for ; Tue, 1 Jun 2004 16:31:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i51NVNgd015112 for ; Tue, 1 Jun 2004 16:31:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i51NVNZO015111; Tue, 1 Jun 2004 16:31:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406012331.i51NVNZO015111@xorpc.icir.org> Date: Tue, 1 Jun 2004 16:31:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 16:31:23 Modified files: xorp/rtrmgr/: cli.cc Log message: Disable the pipe support for the top-level "show" operation command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 18:23:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 18:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i521O1NG077550 for ; Tue, 1 Jun 2004 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i521O1PA089496 for ; Tue, 1 Jun 2004 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i521O1Yq021230; Tue, 1 Jun 2004 18:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i521NsYq021219 for ; Tue, 1 Jun 2004 18:23:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i521NsPA089494 for ; Tue, 1 Jun 2004 18:23:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i521Nsgd025222 for ; Tue, 1 Jun 2004 18:23:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i521NsIf025221; Tue, 1 Jun 2004 18:23:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406020123.i521NsIf025221@xorpc.icir.org> Date: Tue, 1 Jun 2004 18:23:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh op_commands.cc op_commands.hh op_commands.yy y.opcmd_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 18:23:54 Modified files: xorp/rtrmgr/: cli.cc cli.hh op_commands.cc op_commands.hh op_commands.yy y.opcmd_tab.cc Log message: Allow the %command string in the operational command template to be an empty string. Such template entries can be useful as intermediate nodes in the operational command tree. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:50 2005 Subject: No subject Tue Jun 1 19:38:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 19:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i522d1NG080903 for ; Tue, 1 Jun 2004 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i522d1PA090321 for ; Tue, 1 Jun 2004 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i522d0Yq022720; Tue, 1 Jun 2004 19:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i522cgYq022713 for ; Tue, 1 Jun 2004 19:38:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i522cgPA090318 for ; Tue, 1 Jun 2004 19:38:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i522cggd031706 for ; Tue, 1 Jun 2004 19:38:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i522cgAK031705; Tue, 1 Jun 2004 19:38:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406020238.i522cgAK031705@xorpc.icir.org> Date: Tue, 1 Jun 2004 19:38:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds host.cmds igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds rip.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/01 19:38:42 Modified files: xorp/etc/templates/: bgp.cmds host.cmds igmp.cmds mfea.cmds mfea6.cmds mld.cmds pim.cmds pim6.cmds rip.cmds Log message: Add template entries for the following "show" commands, which are needed for the purpose of the help string inside the CLI: show bgp show host show igmp show mfea show mfea6 show mld show pim show pim6 show rip _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Tue Jun 1 20:49:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 20:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i523o2NG092473 for ; Tue, 1 Jun 2004 20:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i523o1PA091104 for ; Tue, 1 Jun 2004 20:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i523o1Yq024097; Tue, 1 Jun 2004 20:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i523nhYq024082 for ; Tue, 1 Jun 2004 20:49:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i523nhPA091095 for ; Tue, 1 Jun 2004 20:49:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i523nhgd036564 for ; Tue, 1 Jun 2004 20:49:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i523nhXR036563; Tue, 1 Jun 2004 20:49:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406020349.i523nhXR036563@xorpc.icir.org> Date: Tue, 1 Jun 2004 20:49:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in xorp/etc/templates/ xorpsh.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/01 20:49:43 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Added files: xorp/etc/templates/: xorpsh.cmds Log message: Added a new file xorpsh.cmds that should be used to various internal operational commands needed by xorpsh itself. For now it contains only the top-level "show" command and its help. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Tue Jun 1 20:57:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 20:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i523w1NG093859 for ; Tue, 1 Jun 2004 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i523w0PA091204 for ; Tue, 1 Jun 2004 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i523w0Yq024230; Tue, 1 Jun 2004 20:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i523vWYq024222 for ; Tue, 1 Jun 2004 20:57:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i523vWPA091197 for ; Tue, 1 Jun 2004 20:57:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i523vWgd037139 for ; Tue, 1 Jun 2004 20:57:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i523vWOw037138; Tue, 1 Jun 2004 20:57:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406020357.i523vWOw037138@xorpc.icir.org> Date: Tue, 1 Jun 2004 20:57:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc op_commands.cc op_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/01 20:57:32 Modified files: xorp/rtrmgr/: cli.cc op_commands.cc op_commands.hh Log message: * Bugfix in executing the correct operational commands: Originally, OpCommandList::prefix_matches() and OpCommand::prefix_matches() were used to find the particular operational command to execute. However, the search is prefix-based, and doesn't do exact matching. For example, if the template file contains an entry for command "show foo bar", and then an entry for "show foo", if the user types "show foo", the executed command is actually the one that corresponds to the "show foo bar" command, which is wrong. The solution is to rename prefix_matches() to command_match() and to use an extra third argument to it "bool exact_match" which specifies whether we are looking for exact match or for a prefix match. * Bugfix in OpCommandList::top_level_commands() in creating the map of top-level commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Tue Jun 1 21:15:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Jun 2004 21:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i524G1NG096945 for ; Tue, 1 Jun 2004 21:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i524G0PA091427 for ; Tue, 1 Jun 2004 21:16:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i524G0Yq024644; Tue, 1 Jun 2004 21:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i524FaYq024625 for ; Tue, 1 Jun 2004 21:15:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i524FaPA091423 for ; Tue, 1 Jun 2004 21:15:36 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i524FZgd038318 for ; Tue, 1 Jun 2004 21:15:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i524FZrI038317; Tue, 1 Jun 2004 21:15:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406020415.i524FZrI038317@xorpc.icir.org> Date: Tue, 1 Jun 2004 21:15:35 () To: xorp-cvs@icir.org Reply-To: status@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.hh cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: status@xorpc.icir.org. 04/06/01 21:15:35 Modified files: xorp/rtrmgr/: cli.hh cli.cc Log message: Replace splitpath with library routine split(). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Wed Jun 2 10:36:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jun 2004 10:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i52Hb1NG044806 for ; Wed, 2 Jun 2004 10:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52Hb0PA002578 for ; Wed, 2 Jun 2004 10:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52Hb0Yq013577; Wed, 2 Jun 2004 10:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52HaKYq013563 for ; Wed, 2 Jun 2004 10:36:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52HaJPA002575 for ; Wed, 2 Jun 2004 10:36:19 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i52HaIgd000237 for ; Wed, 2 Jun 2004 10:36:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i52HaIKd000236; Wed, 2 Jun 2004 10:36:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406021736.i52HaIKd000236@xorpc.icir.org> Date: Wed, 2 Jun 2004 10:36:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/02 10:36:18 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Add subsection for %allow-range. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Wed Jun 2 11:28:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jun 2004 11:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IT1NG054821 for ; Wed, 2 Jun 2004 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IT1PA003310 for ; Wed, 2 Jun 2004 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52IT0Yq015168; Wed, 2 Jun 2004 11:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52ISHYq015142 for ; Wed, 2 Jun 2004 11:28:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52ISHPA003307 for ; Wed, 2 Jun 2004 11:28:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i52ISHgd002585 for ; Wed, 2 Jun 2004 11:28:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i52ISGNo002584; Wed, 2 Jun 2004 11:28:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406021828.i52ISGNo002584@xorpc.icir.org> Date: Wed, 2 Jun 2004 11:28:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ Makefile.am Makefile.in xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/06/02 11:28:16 Modified files: xorp/fib2mrib/: Makefile.am Makefile.in xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: * Fix the logic for registering with the FEA. First test (through the FEA) whether the underlying system supports IPv4 or IPv6, and only if "yes", then register with the FEA interest in the IPv4 or IPv6 routes respectively. This fixes start-up error on systems that don't support IPv6. * Fix some of the logic for handling XRL errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Wed Jun 2 11:33:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jun 2004 11:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IY1NG055733 for ; Wed, 2 Jun 2004 11:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IY1PA003394 for ; Wed, 2 Jun 2004 11:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52IY1Yq015329; Wed, 2 Jun 2004 11:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52IXPYq015297 for ; Wed, 2 Jun 2004 11:33:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IXPPA003388 for ; Wed, 2 Jun 2004 11:33:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i52IXPgd002948 for ; Wed, 2 Jun 2004 11:33:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i52IXP1c002947; Wed, 2 Jun 2004 11:33:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406021833.i52IXP1c002947@xorpc.icir.org> Date: Wed, 2 Jun 2004 11:33:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_mfea_node.cc xorp/mld6igmp/ xrl_mld6igmp_node.cc xorp/pim/ xrl_pim_node.cc xorp/static_routes/ xrl_static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/06/02 11:33:25 Modified files: xorp/fea/: xrl_mfea_node.cc xorp/mld6igmp/: xrl_mld6igmp_node.cc xorp/pim/: xrl_pim_node.cc xorp/static_routes/: xrl_static_routes_node.cc Log message: Fix some of the logic for handling XRL errors, and print few extra XLOG_ERROR() messages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Wed Jun 2 15:52:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jun 2004 15:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i52Mr2NG001750 for ; Wed, 2 Jun 2004 15:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52Mr1PA006702 for ; Wed, 2 Jun 2004 15:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52Mr1Yq022622; Wed, 2 Jun 2004 15:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i52MqfYq022604 for ; Wed, 2 Jun 2004 15:52:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i52MqfPA006696 for ; Wed, 2 Jun 2004 15:52:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i52Mqfgd018608 for ; Wed, 2 Jun 2004 15:52:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i52MqftQ018607; Wed, 2 Jun 2004 15:52:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406022252.i52MqftQ018607@xorpc.icir.org> Date: Wed, 2 Jun 2004 15:52:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc ...fticonfig_entry_observer.cc ...fticonfig_entry_observer.hh ...fticonfig_entry_observer_dummy.cc ...fticonfig_entry_observer_netlink.cc ...fticonfig_entry_observer_rtsock.cc ...fticonfig_entry_set.cc ...fticonfig_entry_set.hh ...fticonfig_entry_set_dummy.cc ...fticonfig_entry_set_netlink.cc ...fticonfig_entry_set_rtsock.cc ...fticonfig_table_get.cc ...fticonfig_table_get.hh ...fticonfig_table_get_dummy.cc ...fticonfig_table_get_netlink.cc ...fticonfig_table_get_sysctl.cc ...fticonfig_table_observer.cc ...fticonfig_table_observer.hh ...fticonfig_table_observer_dummy.cc ...fticonfig_table_observer_netlink.cc ...fticonfig_table_observer_rtsock.cc ...fticonfig_table_set.cc ...fticonfig_table_set.hh ...fticonfig! _table_set_! dummy.cc ...fticonfig_table_set_netlink.cc ...fticonfig_table_set_rtsock.cc ...ifconfig.cc ...ifconfig.hh ...ifconfig_get.cc ...ifconfig_get.hh ...ifconfig_get_dummy.cc ...ifconfig_get_getifaddrs.cc ...ifconfig_get_ioctl.cc ...ifconfig_get_netlink.cc ...ifconfig_get_proc_linux.cc ...ifconfig_get_sysctl.cc ...ifconfig_observer.cc ...ifconfig_observer.hh ...ifconfig_observer_dummy.cc ...ifconfig_observer_netlink.cc ...ifconfig_observer_rtsock.cc ...ifconfig_set.cc ...ifconfig_set.hh ...ifconfig_set_dummy.cc ...ifconfig_set_ioctl.cc ...ifconfig_set_netlink.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/02 15:52:41 Modified files: xorp/fea/: fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_set.cc fticonfig_table_set.hh fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_get.cc ifconfig_get.hh ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Add flag _is_running to IfConfig, FtiConfig and friends that is used to prevent an element from being shutdown multiple times in a row. This fixes a graceful FEA shutdown problem on Linux. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Wed Jun 2 17:41:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Jun 2004 17:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i530g1NG020533 for ; Wed, 2 Jun 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i530g1PA007818 for ; Wed, 2 Jun 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i530g0Yq025327; Wed, 2 Jun 2004 17:42:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i530fYYq025315 for ; Wed, 2 Jun 2004 17:41:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i530fYPA007815 for ; Wed, 2 Jun 2004 17:41:34 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i530fYgd025515 for ; Wed, 2 Jun 2004 17:41:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i530fYCU025514; Wed, 2 Jun 2004 17:41:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406030041.i530fYCU025514@xorpc.icir.org> Date: Wed, 2 Jun 2004 17:41:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.cmds xorp/rip/tools/ Makefile.am Makefile.in show_peer_stats.cc show_stats.cc xorp/rip/tools/ common.cc common.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/06/02 17:41:34 Modified files: xorp/etc/templates/: rip.cmds xorp/rip/tools/: Makefile.am Makefile.in show_peer_stats.cc show_stats.cc Added files: xorp/rip/tools/: common.cc common.hh Log message: Use positional arguments for rip commands. Factor out common code in rip commands. Change command line parsing to deal with cleaner input from xorpsh (yay!). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 0:02:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 00:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i53731NG094438 for ; Thu, 3 Jun 2004 00:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53730PA012049 for ; Thu, 3 Jun 2004 00:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53730Yq002973; Thu, 3 Jun 2004 00:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5372vYq002965 for ; Thu, 3 Jun 2004 00:02:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5372uPA012047 for ; Thu, 3 Jun 2004 00:02:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5372ugd065879 for ; Thu, 3 Jun 2004 00:02:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5372ukA065878; Thu, 3 Jun 2004 00:02:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406030702.i5372ukA065878@xorpc.icir.org> Date: Thu, 3 Jun 2004 0:02:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template.yy template_tree.cc y.tplt_tab.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/03 00:02:56 Modified files: xorp/rtrmgr/: template.yy template_tree.cc y.tplt_tab.cc Log message: Close the template files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 9:45:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 10:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i53H32NG098595 for ; Thu, 3 Jun 2004 10:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53H31Qc000437 for ; Thu, 3 Jun 2004 10:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53H31Yq017538; Thu, 3 Jun 2004 10:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53H25Yq017518 for ; Thu, 3 Jun 2004 10:02:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53H25Qc000391 for ; Thu, 3 Jun 2004 10:02:05 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i53Gkegd012352 for ; Thu, 3 Jun 2004 09:47:00 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i53Gk9Ei012328; Thu, 3 Jun 2004 09:46:09 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406031646.i53Gk9Ei012328@xorpc.icir.org> Date: Thu, 3 Jun 2004 9:45:44 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_mirror.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/06/03 09:45:44 Modified files: xorp/libfeaclient/: ifmgr_xrl_mirror.cc Log message: Address race conditions in startup and shutdown. Suppress update notifications when shutting down, move interface tree clear up code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 10:24:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 10:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HP1NG002576 for ; Thu, 3 Jun 2004 10:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HP1Qc000765 for ; Thu, 3 Jun 2004 10:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53HP1Yq018152; Thu, 3 Jun 2004 10:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53HOXYq018136 for ; Thu, 3 Jun 2004 10:24:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HOXQc000758 for ; Thu, 3 Jun 2004 10:24:33 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HOXgd014153 for ; Thu, 3 Jun 2004 10:24:33 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i53HOX8F014152; Thu, 3 Jun 2004 10:24:33 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406031724.i53HOX8F014152@xorpc.icir.org> Date: Thu, 3 Jun 2004 10:24:32 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp_load.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/03 10:24:32 Modified files: other/LiveCD/files/: xorp_load.py Log message: When called from save hook on rtrmgr, add new previously unknown saved files to the manifest and copy them to the floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 10:27:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 10:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HS1NG003251 for ; Thu, 3 Jun 2004 10:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HS0Qc000818 for ; Thu, 3 Jun 2004 10:28:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53HS0Yq018280; Thu, 3 Jun 2004 10:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53HRYYq018263 for ; Thu, 3 Jun 2004 10:27:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HRYQc000816 for ; Thu, 3 Jun 2004 10:27:34 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i53HRYgd014280 for ; Thu, 3 Jun 2004 10:27:34 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i53HRYKX014279; Thu, 3 Jun 2004 10:27:34 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406031727.i53HRYKX014279@xorpc.icir.org> Date: Thu, 3 Jun 2004 10:27:34 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/06/03 10:27:34 Modified files: xorp/libfeaclient/: ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh Log message: Add CallbackSafeObject as base of IfMgrManagedXrlReplicator -- this allows IfMgrManagedXrlReplicator objects to be safely destructed with outstanding callbacks. Fix a memory leak. Pavlin originated fixes (5* today ;-). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 11:21:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 11:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i53IM1NG021063 for ; Thu, 3 Jun 2004 11:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53IM1Qc001594 for ; Thu, 3 Jun 2004 11:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53IM0Yq019760; Thu, 3 Jun 2004 11:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i53ILJYq019738 for ; Thu, 3 Jun 2004 11:21:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i53ILIQc001586 for ; Thu, 3 Jun 2004 11:21:18 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i53ILIgd016832 for ; Thu, 3 Jun 2004 11:21:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i53ILIKh016831; Thu, 3 Jun 2004 11:21:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406031821.i53ILIKh016831@xorpc.icir.org> Date: Thu, 3 Jun 2004 11:21:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_replicator.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/06/03 11:21:18 Modified files: xorp/libfeaclient/: ifmgr_xrl_replicator.hh Log message: To be safe shift placement of CallbackSafeObject higher up class chain. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 19:34:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 19:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i542Z1NG016909 for ; Thu, 3 Jun 2004 19:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542Z1Qc007763 for ; Thu, 3 Jun 2004 19:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542Z1Yq002643; Thu, 3 Jun 2004 19:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542YQYq002621 for ; Thu, 3 Jun 2004 19:34:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542YPQc007755 for ; Thu, 3 Jun 2004 19:34:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i542YPgd044491 for ; Thu, 3 Jun 2004 19:34:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i542YPVA044490; Thu, 3 Jun 2004 19:34:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040234.i542YPVA044490@xorpc.icir.org> Date: Thu, 3 Jun 2004 19:34:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ routing_socket_utils.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/03 19:34:25 Modified files: xorp/fea/: routing_socket_utils.cc Log message: Modify an XLOG_ERROR() message to provide slightly better info. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 19:37:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 19:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i542c1NG017453 for ; Thu, 3 Jun 2004 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542c1Qc007811 for ; Thu, 3 Jun 2004 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542c1Yq002756; Thu, 3 Jun 2004 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542bAYq002723 for ; Thu, 3 Jun 2004 19:37:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542bAQc007803 for ; Thu, 3 Jun 2004 19:37:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i542bAgd044701 for ; Thu, 3 Jun 2004 19:37:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i542bAMB044700; Thu, 3 Jun 2004 19:37:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040237.i542bAMB044700@xorpc.icir.org> Date: Thu, 3 Jun 2004 19:37:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.am xorp/pim/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/03 19:37:10 Modified files: xorp/mld6igmp/: Makefile.am xorp/pim/: Makefile.am Log message: Fix a compilation linkage problem: add libxorp.a to the end of the list of libraries to link against test_mld6igmp and test_pim. Othewise, we would have to interleave the very long list of libraries inside LDADD with the test_mld6igmp_LDADD/test_pim_LDADD libraries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 19:37:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 19:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i542c2NG017468 for ; Thu, 3 Jun 2004 19:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542c1Qc007813 for ; Thu, 3 Jun 2004 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542c1Yq002767; Thu, 3 Jun 2004 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i542bTYq002735 for ; Thu, 3 Jun 2004 19:37:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i542bTQc007806 for ; Thu, 3 Jun 2004 19:37:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i542bTgd044746 for ; Thu, 3 Jun 2004 19:37:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i542bTHr044745; Thu, 3 Jun 2004 19:37:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040237.i542bTHr044745@xorpc.icir.org> Date: Thu, 3 Jun 2004 19:37:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ Makefile.in xorp/pim/ Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/03 19:37:29 Modified files: xorp/mld6igmp/: Makefile.in xorp/pim/: Makefile.in Log message: Regenerate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 21:44:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 21:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i544j1NG039402 for ; Thu, 3 Jun 2004 21:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544j1Qc009210 for ; Thu, 3 Jun 2004 21:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544j1Yq005410; Thu, 3 Jun 2004 21:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544i7Yq005388 for ; Thu, 3 Jun 2004 21:44:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544i7Qc009201 for ; Thu, 3 Jun 2004 21:44:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i544i7gd052581 for ; Thu, 3 Jun 2004 21:44:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i544i7FO052580; Thu, 3 Jun 2004 21:44:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040444.i544i7FO052580@xorpc.icir.org> Date: Thu, 3 Jun 2004 21:44:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/03 21:44:07 Modified files: xorp/etc/templates/: bgp.tp Log message: Add "targetname" as mandatory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 21:46:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 21:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l1NG039789 for ; Thu, 3 Jun 2004 21:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l1Qc009250 for ; Thu, 3 Jun 2004 21:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544l1Yq005455; Thu, 3 Jun 2004 21:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544k7Yq005437 for ; Thu, 3 Jun 2004 21:46:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544k7Qc009241 for ; Thu, 3 Jun 2004 21:46:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i544k7gd052814 for ; Thu, 3 Jun 2004 21:46:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i544k7j6052813; Thu, 3 Jun 2004 21:46:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040446.i544k7j6052813@xorpc.icir.org> Date: Thu, 3 Jun 2004 21:46:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/03 21:46:07 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: * Add "targetname" as %mandatory. * Minor space nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:51 2005 Subject: No subject Thu Jun 3 21:46:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 21:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l2NG039810 for ; Thu, 3 Jun 2004 21:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l2Qc009252 for ; Thu, 3 Jun 2004 21:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544l2Yq005466; Thu, 3 Jun 2004 21:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544kXYq005447 for ; Thu, 3 Jun 2004 21:46:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544kXQc009246 for ; Thu, 3 Jun 2004 21:46:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i544kXgd052869 for ; Thu, 3 Jun 2004 21:46:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i544kXGg052868; Thu, 3 Jun 2004 21:46:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040446.i544kXGg052868@xorpc.icir.org> Date: Thu, 3 Jun 2004 21:46:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ xorpsh.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/03 21:46:33 Modified files: xorp/etc/templates/: xorpsh.cmds Log message: Improve the help string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Thu Jun 3 21:47:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 21:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i544m1NG039975 for ; Thu, 3 Jun 2004 21:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544m1Qc009273 for ; Thu, 3 Jun 2004 21:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544m1Yq005498; Thu, 3 Jun 2004 21:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i544l6Yq005478 for ; Thu, 3 Jun 2004 21:47:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l6Qc009258 for ; Thu, 3 Jun 2004 21:47:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i544l6gd052938 for ; Thu, 3 Jun 2004 21:47:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i544l5LZ052937; Thu, 3 Jun 2004 21:47:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040447.i544l5LZ052937@xorpc.icir.org> Date: Thu, 3 Jun 2004 21:47:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp snmp.tp static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/03 21:47:05 Modified files: xorp/etc/templates/: fea.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp snmp.tp static_routes.tp Log message: * Add configuration-mode help statements * Formatting _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Thu Jun 3 21:57:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Jun 2004 22:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i545X1NG045030 for ; Thu, 3 Jun 2004 22:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i545X1MV000305 for ; Thu, 3 Jun 2004 22:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i545X0Yq006458; Thu, 3 Jun 2004 22:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i545W7Yq006440 for ; Thu, 3 Jun 2004 22:32:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i545W7MV000298 for ; Thu, 3 Jun 2004 22:32:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i544w2gd053620 for ; Thu, 3 Jun 2004 21:58:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i544vW16053576; Thu, 3 Jun 2004 21:57:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406040457.i544vW16053576@xorpc.icir.org> Date: Thu, 3 Jun 2004 21:57:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/03 21:57:07 Modified files: xorp/etc/templates/: static_routes.tp Log message: Fix a typo in a help string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 2:51:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 02:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i549q1NG093050 for ; Fri, 4 Jun 2004 02:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i549q1MV003513 for ; Fri, 4 Jun 2004 02:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i549q1Yq012058; Fri, 4 Jun 2004 02:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i549pbYq012040 for ; Fri, 4 Jun 2004 02:51:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i549pbMV003510 for ; Fri, 4 Jun 2004 02:51:37 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i549pbgd075528 for ; Fri, 4 Jun 2004 02:51:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i549pbSU075527; Fri, 4 Jun 2004 02:51:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406040951.i549pbSU075527@xorpc.icir.org> Date: Fri, 4 Jun 2004 2:51:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/06/04 02:51:37 Modified files: xorp/rtrmgr/: config.boot Log message: XORP config files are supposed to start with "/*XORP" so we can identify them, and avoid the risk of rtrmgr overwriting something it shouldn't. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 4:38:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 04:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Bd1NG012864 for ; Fri, 4 Jun 2004 04:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Bd0MV004835 for ; Fri, 4 Jun 2004 04:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Bd0Yq014142; Fri, 4 Jun 2004 04:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54BcCYq014123 for ; Fri, 4 Jun 2004 04:38:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54BcCMV004827 for ; Fri, 4 Jun 2004 04:38:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54BcCgd083631 for ; Fri, 4 Jun 2004 04:38:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54BcCaK083630; Fri, 4 Jun 2004 04:38:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406041138.i54BcCaK083630@xorpc.icir.org> Date: Fri, 4 Jun 2004 4:38:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 04:38:12 Modified files: xorp/rtrmgr/: template_commands.cc Log message: Bug fix in XrlAction::expand_xrl_variables(). This fixes a coredump problem that could be triggered with certain configurations (e.g., if the configuration included fib2mrib), and if the compiler was gcc-2.95.4. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 04 05:00:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 05:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54C11NG016679 for ; Fri, 4 Jun 2004 05:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54C10MV005087 for ; Fri, 4 Jun 2004 05:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54C10Yq015991; Fri, 4 Jun 2004 05:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54C0wYq015984 for ; Fri, 4 Jun 2004 05:00:58 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54C0uMV005081; Fri, 4 Jun 2004 05:00:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i54C0uKh073607; Fri, 4 Jun 2004 05:00:56 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200406041200.i54C0uKh073607@possum.icir.org> To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot In-Reply-To: Message from Mark Handley of "Fri, 04 Jun 2004 02:51:37." <200406040951.i549pbSU075527@xorpc.icir.org> Date: Fri, 04 Jun 2004 05:00:56 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Repository: xorp/rtrmgr/ > Changes by: mjh@xorpc.icir.org. 04/06/04 02:51:37 > > Modified files: > xorp/rtrmgr/: config.boot > > Log message: > XORP config files are supposed to start with "/*XORP" so we can > identify them, and avoid the risk of rtrmgr overwriting something it > shouldn't. Mark, For consistency with the XORP coding style, can we add spaces after the beginning and before the end of the comment (the same applies also for the auto-generated header when the configuration is saved from within xorpsh). E.g.,: OLD: /*XORP Configuration File*/ NEW: /* XORP Configuration File */ Also, while on the subject, when a file is saved from within xorpsh, what about we start using now a simple template header with some basic info about that file. E.g., off the top of my head: /* * XORP Configuration File * * XORP Version: 1.0 * File Format Version: 1.0 * Generated: Fri Jun 4 04:47:49 PDT 2004 * Created by: mjh */ The "XORP Version" string may be useful if we ask someone to save their configuration file from within xorpsh and send it to us. The "File Format Version" string eventually corresponds to the configuration file format that should be independent from the XORP release version. Thus if, say, in the future something about the file format changes, then we may be able to use it for backward compatibility support. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 04 13:45:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 05:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Cl1NG024644 for ; Fri, 4 Jun 2004 05:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Cl1MV005653 for ; Fri, 4 Jun 2004 05:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Cl1Yq017218; Fri, 4 Jun 2004 05:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Ck3Yq017194 for ; Fri, 4 Jun 2004 05:46:03 -0700 (PDT) Received: from aardvark.cs.ucl.ac.uk (aardvark.cs.ucl.ac.uk [128.16.11.150]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Ck2MV005647; Fri, 4 Jun 2004 05:46:02 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (localhost [127.0.0.1]) by aardvark.cs.ucl.ac.uk (8.12.9p2/8.12.8) with ESMTP id i54CjxxF045703; Fri, 4 Jun 2004 13:45:59 +0100 (BST) (envelope-from mjh@aardvark.cs.ucl.ac.uk) From: Mark Handley X-Organisation: UCL To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot In-reply-to: Your message of "Fri, 04 Jun 2004 05:00:56 PDT." <200406041200.i54C0uKh073607@possum.icir.org> Date: Fri, 04 Jun 2004 13:45:59 +0100 Message-ID: <45702.1086353159@aardvark.cs.ucl.ac.uk> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >For consistency with the XORP coding style, can we add spaces after >the beginning and before the end of the comment (the same applies >also for the auto-generated header when the configuration is saved >from within xorpsh). E.g.,: >OLD: /*XORP Configuration File*/ >NEW: /* XORP Configuration File */ I'd be OK with this. I was thinking of this as the equivalent of the postscript comment: %!PS The sole purpose is to have a tag at the start of the file, so that if the user gets brain-fade, they can't overwrite anything that isn't already a XORP config file. Currently it searches for only /*XORP, but we should probably be more liberal than this. >Also, while on the subject, when a file is saved from within xorpsh, >what about we start using now a simple template header with some >basic info about that file. E.g., off the top of my head: > >/* > * XORP Configuration File > * > * XORP Version: 1.0 > * File Format Version: 1.0 > * Generated: Fri Jun 4 04:47:49 PDT 2004 > * Created by: mjh > */ > >The "XORP Version" string may be useful if we ask someone to save >their configuration file from within xorpsh and send it to us. > >The "File Format Version" string eventually corresponds to the >configuration file format that should be independent from the XORP >release version. Thus if, say, in the future something about the >file format changes, then we may be able to use it for backward >compatibility support. Good idea. I think both of these can wait til after the release - they're good suggestions, but not critical. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 5:49:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 05:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Co1NG025160 for ; Fri, 4 Jun 2004 05:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Co1MV005667 for ; Fri, 4 Jun 2004 05:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Co1Yq017279; Fri, 4 Jun 2004 05:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54CnEYq017268 for ; Fri, 4 Jun 2004 05:49:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54CnEMV005661 for ; Fri, 4 Jun 2004 05:49:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54CnEgd089338 for ; Fri, 4 Jun 2004 05:49:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54CnDZm089329; Fri, 4 Jun 2004 05:49:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406041249.i54CnDZm089329@xorpc.icir.org> Date: Fri, 4 Jun 2004 5:49:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ command_tree.hh command_tree.cc slave_conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 05:49:13 Modified files: xorp/rtrmgr/: command_tree.hh command_tree.cc slave_conf_tree_node.cc Log message: Fix a problem with instanting the inner command tree by xorpsh where a parent intermediate command node uses the config/template tree nodes from its first child. This fixes the "set" commands help mismatch problem when, say "set fea?" will print the help for "set fea enable-unicast-forwarding4" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 6:38:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 06:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Dd1NG033722 for ; Fri, 4 Jun 2004 06:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Dd0MV006295 for ; Fri, 4 Jun 2004 06:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Dd0Yq018197; Fri, 4 Jun 2004 06:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54DcYYq018190 for ; Fri, 4 Jun 2004 06:38:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54DcYMV006291 for ; Fri, 4 Jun 2004 06:38:34 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54DcYgd093323 for ; Fri, 4 Jun 2004 06:38:34 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54DcYeF093322; Fri, 4 Jun 2004 06:38:34 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406041338.i54DcYeF093322@xorpc.icir.org> Date: Fri, 4 Jun 2004 6:38:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ loader.conf splash.bmp xorp-makeconfig.sh xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/04 06:38:34 Modified files: other/LiveCD/files/: loader.conf splash.bmp xorp-makeconfig.sh xorp.sh Log message: Bug fixes, and better handling of startup without a floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 12:37:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 12:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Jc2NG097687 for ; Fri, 4 Jun 2004 12:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Jc1kR001579 for ; Fri, 4 Jun 2004 12:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Jc1Yq026985; Fri, 4 Jun 2004 12:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54JbnYq026953 for ; Fri, 4 Jun 2004 12:37:49 -0700 (PDT) Received: from [192.150.187.86] (wol.icir.org [192.150.187.86]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54JbUkR001575; Fri, 4 Jun 2004 12:37:30 -0700 (PDT) (envelope-from orion@icir.org) In-Reply-To: <45702.1086353159@aardvark.cs.ucl.ac.uk> References: <45702.1086353159@aardvark.cs.ucl.ac.uk> Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <9E2F34C8-B65E-11D8-A3A9-000A95DA7C7A@icir.org> Content-Transfer-Encoding: 7bit Cc: xorp-cvs@icir.org From: Orion Hodson Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot Date: Fri, 4 Jun 2004 12:37:30 -0700 To: Mark Handley X-Mailer: Apple Mail (2.618) Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Jun 4, 2004, at 05:45, Mark Handley wrote: > I'd be OK with this. I was thinking of this as the equivalent of the > postscript comment: %!PS > > The sole purpose is to have a tag at the start of the file, so that if > the user gets brain-fade, they can't overwrite anything that isn't > already a XORP config file. > > Currently it searches for only /*XORP, but we should probably be more > liberal than this. The magic comment does not feel familiar. A user can craft config files in a text editor that will load via xorpsh and then not be writable from within xorpsh. AFAIK, %!PS is not a strict requirement for any postscript interpreters to parse a file (or write a file) - it'd be nice for editors to into a XORP mode when they see the magic comment. Principle of least astonishment might dictate informing the user that they are about to overwrite an existing file, point them at the full path of the file to be overwritten, and prompt for a modal response to 'are you sure punk?'. Orion ------------------------------------------------------------------------ Orion Hodson, Researcher XORP Router Project http://www.xorp.org/ International Computer Science Institute http://www.icsi.berkeley.edu/ 1947 Center St, Berkeley, CA94704 Tel (510) 666-2927 Fax (510) 666-2956 ------------------------------------------------------------------------ _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 15:12:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MD1NG025755 for ; Fri, 4 Jun 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MD1kR003708 for ; Fri, 4 Jun 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54MD0Yq000696; Fri, 4 Jun 2004 15:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54MC4Yq000663 for ; Fri, 4 Jun 2004 15:12:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MC4kR003702 for ; Fri, 4 Jun 2004 15:12:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MC3gd020838 for ; Fri, 4 Jun 2004 15:12:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54MC3oN020837; Fri, 4 Jun 2004 15:12:03 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406042212.i54MC3oN020837@xorpc.icir.org> Date: Fri, 4 Jun 2004 15:12:03 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 15:12:03 Modified files: xorp/rtrmgr/: conf_tree_node.cc Log message: Bug fix: Replace bogus statement "result != foo()" where "result" is a string with "result += foo()" to append to the string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 15:42:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 15:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Mh1NG030939 for ; Fri, 4 Jun 2004 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Mh1kR004059 for ; Fri, 4 Jun 2004 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Mh1Yq001381; Fri, 4 Jun 2004 15:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54MgOYq001353 for ; Fri, 4 Jun 2004 15:42:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MgOkR004050 for ; Fri, 4 Jun 2004 15:42:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54MgOgd021921 for ; Fri, 4 Jun 2004 15:42:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54MgOGU021920; Fri, 4 Jun 2004 15:42:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406042242.i54MgOGU021920@xorpc.icir.org> Date: Fri, 4 Jun 2004 15:42:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 15:42:24 Modified files: xorp/rtrmgr/: master_conf_tree.cc Log message: Bug fix in cleaning the _commit_in_progress flag: if there is an early error, the flag is not reset to false, which may result in blocking the rtrmgr on exiting. To replicate: 1. Start rtrmgr -b foo.boot 2. Start xorpsh 3. Enter xorpsh configure mode 4. load foo.boot 5. load foo2.boot where the loading of foo2.boot must result in an error 6. Stop rtrmgr with Ctrl-C. The rtrmgr would print the following error: "Commit failed in deciding startups", and then it would go into an endless loop waiting for _commit_in_progress to become false before exiting cleanly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 16:34:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 16:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NZ1NG040036 for ; Fri, 4 Jun 2004 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NZ1kR004630 for ; Fri, 4 Jun 2004 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54NZ1Yq002668; Fri, 4 Jun 2004 16:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54NYkYq002659 for ; Fri, 4 Jun 2004 16:34:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NYkkR004625 for ; Fri, 4 Jun 2004 16:34:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NYkgd023942 for ; Fri, 4 Jun 2004 16:34:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54NYkXU023941; Fri, 4 Jun 2004 16:34:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406042334.i54NYkXU023941@xorpc.icir.org> Date: Fri, 4 Jun 2004 16:34:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ master_conf_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 16:34:46 Modified files: xorp/rtrmgr/: master_conf_tree.cc Log message: Bug fix in loading configuration from a file (e.g., when we use "load " within xorpsh: add the default value for the missing configuration nodes. Previously, the loading from a file could fail with an error like: [Node "interfaces" has no configured mandatory child node "targetname"] even though the mandatory "targetname" has a default value in the template. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 16:36:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 16:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nb1NG040425 for ; Fri, 4 Jun 2004 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nb1kR004664 for ; Fri, 4 Jun 2004 16:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Nb1Yq002723; Fri, 4 Jun 2004 16:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54NaOYq002696 for ; Fri, 4 Jun 2004 16:36:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NaOkR004661 for ; Fri, 4 Jun 2004 16:36:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NaOgd024059 for ; Fri, 4 Jun 2004 16:36:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54NaONX024058; Fri, 4 Jun 2004 16:36:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406042336.i54NaONX024058@xorpc.icir.org> Date: Fri, 4 Jun 2004 16:36:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/04 16:36:24 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 16:56:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 16:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nv1NG043979 for ; Fri, 4 Jun 2004 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nv0kR004898 for ; Fri, 4 Jun 2004 16:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Nv0Yq003140; Fri, 4 Jun 2004 16:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54NuBYq003105 for ; Fri, 4 Jun 2004 16:56:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NuBkR004886 for ; Fri, 4 Jun 2004 16:56:11 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NuBgd024943 for ; Fri, 4 Jun 2004 16:56:11 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54NuBkC024942; Fri, 4 Jun 2004 16:56:11 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406042356.i54NuBkC024942@xorpc.icir.org> Date: Fri, 4 Jun 2004 16:56:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/04 16:56:11 Modified files: xorp/bgp/: TODO Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Fri Jun 4 16:58:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Jun 2004 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nx1NG044341 for ; Fri, 4 Jun 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nx1kR004936 for ; Fri, 4 Jun 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54Nx1Yq003226; Fri, 4 Jun 2004 16:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i54NwbYq003210 for ; Fri, 4 Jun 2004 16:58:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i54NwbkR004928 for ; Fri, 4 Jun 2004 16:58:37 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i54Nwagd025091 for ; Fri, 4 Jun 2004 16:58:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i54Nwa8W025090; Fri, 4 Jun 2004 16:58:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406042358.i54Nwa8W025090@xorpc.icir.org> Date: Fri, 4 Jun 2004 16:58:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness/ xrl_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/06/04 16:58:36 Modified files: xorp/bgp/harness/: xrl_shell_funcs.sh Log message: Add "bind" and "reset" to match documentation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Sat Jun 5 18:02:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jun 2004 18:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i56131NG019777 for ; Sat, 5 Jun 2004 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i56131kR024191 for ; Sat, 5 Jun 2004 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i56131Yq000631; Sat, 5 Jun 2004 18:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i56127Yq000596 for ; Sat, 5 Jun 2004 18:02:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i56127kR024185 for ; Sat, 5 Jun 2004 18:02:07 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i56127gd011258 for ; Sat, 5 Jun 2004 18:02:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i56127eB011257; Sat, 5 Jun 2004 18:02:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406060102.i56127eB011257@xorpc.icir.org> Date: Sat, 5 Jun 2004 18:02:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ ifmgr_xrl_replicator.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: hodson@xorpc.icir.org. 04/06/05 18:02:07 Modified files: xorp/libfeaclient/: ifmgr_xrl_replicator.cc Log message: When a replication command does not execute correctly, log the command that failed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Sat Jun 5 19:06:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jun 2004 19:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i56271NG031011 for ; Sat, 5 Jun 2004 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i56271kR024910 for ; Sat, 5 Jun 2004 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i56271Yq001578; Sat, 5 Jun 2004 19:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5626nYq001563 for ; Sat, 5 Jun 2004 19:06:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5626nkR024907 for ; Sat, 5 Jun 2004 19:06:49 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5626mgd015090 for ; Sat, 5 Jun 2004 19:06:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5626mhU015089; Sat, 5 Jun 2004 19:06:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406060206.i5626mhU015089@xorpc.icir.org> Date: Sat, 5 Jun 2004 19:06:48 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.cc xrl_port_manager.hh xrl_target_common.hh xorp/rip/tools/ show_stats.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: hodson@xorpc.icir.org. 04/06/05 19:06:48 Modified files: xorp/rip/: xrl_port_manager.cc xrl_port_manager.hh xrl_target_common.hh xorp/rip/tools/: show_stats.cc Log message: Add support to show status of a rip address to the show_stats operational command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:52 2005 Subject: No subject Sat Jun 5 19:12:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 05 Jun 2004 19:13:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i562D0NG032062 for ; Sat, 5 Jun 2004 19:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i562D0kR024976 for ; Sat, 5 Jun 2004 19:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i562D0Yq001670; Sat, 5 Jun 2004 19:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i562CQYq001660 for ; Sat, 5 Jun 2004 19:12:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i562CQkR024967 for ; Sat, 5 Jun 2004 19:12:26 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i562CPgd015418 for ; Sat, 5 Jun 2004 19:12:25 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i562CPST015417; Sat, 5 Jun 2004 19:12:25 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406060212.i562CPST015417@xorpc.icir.org> Date: Sat, 5 Jun 2004 19:12:25 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/06/05 19:12:25 Modified files: xorp/etc/templates/: rip.cmds Log message: Add rip status command (same as rip statistics but with -b flag). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Sun Jun 6 17:46:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 06 Jun 2004 17:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i570l1NG069748 for ; Sun, 6 Jun 2004 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i570l1kR039997 for ; Sun, 6 Jun 2004 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i570l1Yq024876; Sun, 6 Jun 2004 17:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i570kWYq024863 for ; Sun, 6 Jun 2004 17:46:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i570kWkR039991 for ; Sun, 6 Jun 2004 17:46:32 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i570kWgd085589 for ; Sun, 6 Jun 2004 17:46:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i570kWHu085588; Sun, 6 Jun 2004 17:46:32 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406070046.i570kWHu085588@xorpc.icir.org> Date: Sun, 6 Jun 2004 17:46:32 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xorp_rip_main.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/06/06 17:46:32 Modified files: xorp/rip/: xorp_rip_main.cc Log message: Remove extraneous output during shutdown. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 11:15:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 11:18:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57II9NG057882 for ; Mon, 7 Jun 2004 11:18:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57II9kR054112 for ; Mon, 7 Jun 2004 11:18:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57II9Yq018472; Mon, 7 Jun 2004 11:18:09 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57IF7Yq018350 for ; Mon, 7 Jun 2004 11:15:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IF6kR054072 for ; Mon, 7 Jun 2004 11:15:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IF6gd069959 for ; Mon, 7 Jun 2004 11:15:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57IF6ad069958; Mon, 7 Jun 2004 11:15:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406071815.i57IF6ad069958@xorpc.icir.org> Date: Mon, 7 Jun 2004 11:15:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ fea.tp interfaces.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/07 11:15:06 Modified files: xorp/etc/templates/: fea.tp interfaces.tp Log message: * Bug fix: the "targetname" node should be "set-only", hence replace %create with %set for that node. * Add a help string for node "targetname". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 11:16:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 11:18:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IIBNG057909 for ; Mon, 7 Jun 2004 11:18:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IIAkR054114 for ; Mon, 7 Jun 2004 11:18:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57IIAYq018484; Mon, 7 Jun 2004 11:18:10 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57IG6Yq018387 for ; Mon, 7 Jun 2004 11:16:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IG5kR054089 for ; Mon, 7 Jun 2004 11:16:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IG5gd070055 for ; Mon, 7 Jun 2004 11:16:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57IG5V5070054; Mon, 7 Jun 2004 11:16:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406071816.i57IG5V5070054@xorpc.icir.org> Date: Mon, 7 Jun 2004 11:16:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/07 11:16:05 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: Add a missing node "targetname" with command %set inside and a help string. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 11:16:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 11:18:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IIBNG057924 for ; Mon, 7 Jun 2004 11:18:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IIBkR054116 for ; Mon, 7 Jun 2004 11:18:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57IIBYq018496; Mon, 7 Jun 2004 11:18:11 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57IGQYq018409 for ; Mon, 7 Jun 2004 11:16:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IGQkR054093 for ; Mon, 7 Jun 2004 11:16:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57IGQgd070110 for ; Mon, 7 Jun 2004 11:16:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57IGQuv070109; Mon, 7 Jun 2004 11:16:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406071816.i57IGQuv070109@xorpc.icir.org> Date: Mon, 7 Jun 2004 11:16:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp fib2mrib.tp igmp.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp snmp.tp static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/07 11:16:26 Modified files: xorp/etc/templates/: bgp.tp fib2mrib.tp igmp.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rib.tp snmp.tp static_routes.tp Log message: Add help string for node "targetname" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 11:50:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 11:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Ip1NG065257 for ; Mon, 7 Jun 2004 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Ip0kR054564 for ; Mon, 7 Jun 2004 11:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Ip0Yq019461; Mon, 7 Jun 2004 11:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Io5Yq019423 for ; Mon, 7 Jun 2004 11:50:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Io5kR054538 for ; Mon, 7 Jun 2004 11:50:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Io4gd071405 for ; Mon, 7 Jun 2004 11:50:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57Io4BB071404; Mon, 7 Jun 2004 11:50:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406071850.i57Io4BB071404@xorpc.icir.org> Date: Mon, 7 Jun 2004 11:50:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ slave_conf_tree_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/07 11:50:04 Modified files: xorp/rtrmgr/: slave_conf_tree_node.cc Log message: Bug fix in SlaveConfigTreeNode::build_command_tree() [This should fix Bugzilla bug #27] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 12:36:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 12:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Jb1NG075228 for ; Mon, 7 Jun 2004 12:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Jb1kR055149 for ; Mon, 7 Jun 2004 12:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Jb0Yq020756; Mon, 7 Jun 2004 12:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57JanYq020749 for ; Mon, 7 Jun 2004 12:36:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57JankR055147 for ; Mon, 7 Jun 2004 12:36:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Jangd073363 for ; Mon, 7 Jun 2004 12:36:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57Jang0073362; Mon, 7 Jun 2004 12:36:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406071936.i57Jang0073362@xorpc.icir.org> Date: Mon, 7 Jun 2004 12:36:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/07 12:36:49 Modified files: xorp/rtrmgr/: cli.cc Log message: * Bug fix: call "com->set_can_pipe()" after an XLOG_FATAL()-centric test whether com is not NULL. * Bug fix in xorpsh "create" mode when we use a create command like "create interfaces interface lnc1 vif lnc 1 address" that has too many arguments. [This should fix Bugzilla bug #29] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 13:33:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 13:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57KY1NG087729 for ; Mon, 7 Jun 2004 13:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57KY0kR055990 for ; Mon, 7 Jun 2004 13:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57KY0Yq022258; Mon, 7 Jun 2004 13:34:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57KXDYq022229 for ; Mon, 7 Jun 2004 13:33:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57KXDkR055983 for ; Mon, 7 Jun 2004 13:33:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57KXCgd075662 for ; Mon, 7 Jun 2004 13:33:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57KXCsD075661; Mon, 7 Jun 2004 13:33:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406072033.i57KXCsD075661@xorpc.icir.org> Date: Mon, 7 Jun 2004 13:33:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/07 13:33:12 Modified files: xorp/rtrmgr/: template_tree.cc Log message: Bug fix in TemplateTree::find_node() when searching for a template tree node. This should fix the following two problems (at least): * Currently, the rtrmgr does not catch bogus configuration statements like "foo" below: interfaces { interface rl0 { default-system-config } foo } * Currently, command "create interfaces foo" will crash xorpsh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 15:25:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 15:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MQ1NG018418 for ; Mon, 7 Jun 2004 15:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MQ1kR057509 for ; Mon, 7 Jun 2004 15:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57MQ1Yq025452; Mon, 7 Jun 2004 15:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57MPdYq025436 for ; Mon, 7 Jun 2004 15:25:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MPckR057507 for ; Mon, 7 Jun 2004 15:25:38 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MPcgd079583 for ; Mon, 7 Jun 2004 15:25:38 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57MPcfB079582; Mon, 7 Jun 2004 15:25:38 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406072225.i57MPcfB079582@xorpc.icir.org> Date: Mon, 7 Jun 2004 15:25:38 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/06/07 15:25:38 Modified files: other/LiveCD/: livecd.sh Log message: Reorder how we create the MFS tarfile for /usr/local/xorp, so the right thing happens if you don't start from scratch reinstalling XORP on the liveCD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 15:57:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 15:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Mw1NG026279 for ; Mon, 7 Jun 2004 15:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Mw1kR057854 for ; Mon, 7 Jun 2004 15:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Mw1Yq026194; Mon, 7 Jun 2004 15:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57MvmYq026183 for ; Mon, 7 Jun 2004 15:57:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MvmkR057850 for ; Mon, 7 Jun 2004 15:57:48 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Mvmgd080655 for ; Mon, 7 Jun 2004 15:57:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57MvmXb080654; Mon, 7 Jun 2004 15:57:48 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406072257.i57MvmXb080654@xorpc.icir.org> Date: Mon, 7 Jun 2004 15:57:48 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/07 15:57:48 Modified files: xorp/bgp/: peer.cc Log message: If an event such as close or connection retry occurs while we are in the CONNECT state; tidy up the outstanding file descriptor. [Bugzilla BUG ID #32] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 15:59:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 16:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N01NG032421 for ; Mon, 7 Jun 2004 16:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N01kR057885 for ; Mon, 7 Jun 2004 16:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57N00Yq026277; Mon, 7 Jun 2004 16:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57MxEYq026246 for ; Mon, 7 Jun 2004 15:59:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MxEkR057873 for ; Mon, 7 Jun 2004 15:59:14 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57MxDgd080715 for ; Mon, 7 Jun 2004 15:59:13 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57MxDkW080714; Mon, 7 Jun 2004 15:59:13 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406072259.i57MxDkW080714@xorpc.icir.org> Date: Mon, 7 Jun 2004 15:59:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/06/07 15:59:13 Modified files: xorp/rib/: rib.cc Log message: Catch IPvX::InvalidCast when deleting vif addresses. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 16:01:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 16:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N21NG033055 for ; Mon, 7 Jun 2004 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N20kR057931 for ; Mon, 7 Jun 2004 16:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57N20Yq026323; Mon, 7 Jun 2004 16:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57N1bYq026310 for ; Mon, 7 Jun 2004 16:01:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N1bkR057928 for ; Mon, 7 Jun 2004 16:01:37 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57N1bgd080887 for ; Mon, 7 Jun 2004 16:01:37 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57N1b37080886; Mon, 7 Jun 2004 16:01:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406072301.i57N1b37080886@xorpc.icir.org> Date: Mon, 7 Jun 2004 16:01:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/06/07 16:01:37 Modified files: xorp/rib/: rib_manager.cc Log message: Use | rather short-circuit || to add and delete rib vifs. A failure in adding or deleting a vif from one rib should not prevent add or delete being called on other ribs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 16:43:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Ni1NG044365 for ; Mon, 7 Jun 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Ni1kR058366 for ; Mon, 7 Jun 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Ni1Yq027245; Mon, 7 Jun 2004 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57NhOYq027234 for ; Mon, 7 Jun 2004 16:43:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57NhOkR058360 for ; Mon, 7 Jun 2004 16:43:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57NhNgd082758 for ; Mon, 7 Jun 2004 16:43:23 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57NhNwD082756; Mon, 7 Jun 2004 16:43:23 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406072343.i57NhNwD082756@xorpc.icir.org> Date: Mon, 7 Jun 2004 16:43:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/07 16:43:23 Modified files: other/LiveCD/files/: xorp.sh Log message: run rtrmgr with the save hook set to xorp_load.py _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 16:51:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 16:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Nq1NG047990 for ; Mon, 7 Jun 2004 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Nq1kR058476 for ; Mon, 7 Jun 2004 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Nq1Yq027418; Mon, 7 Jun 2004 16:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i57Np9Yq027390 for ; Mon, 7 Jun 2004 16:51:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Np8kR058466 for ; Mon, 7 Jun 2004 16:51:08 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i57Np8gd083227 for ; Mon, 7 Jun 2004 16:51:08 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i57Np81P083226; Mon, 7 Jun 2004 16:51:08 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406072351.i57Np81P083226@xorpc.icir.org> Date: Mon, 7 Jun 2004 16:51:08 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp-makeconfig.sh xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/07 16:51:08 Modified files: other/LiveCD/files/: xorp-makeconfig.sh xorp.sh Log message: Fix permissions on floppy so users in group xorp can write config files back to the floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 17:21:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 17:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i580M1NG060185 for ; Mon, 7 Jun 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i580M1kR058825 for ; Mon, 7 Jun 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i580M0Yq028253; Mon, 7 Jun 2004 17:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i580LbYq028240 for ; Mon, 7 Jun 2004 17:21:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i580LakR058819 for ; Mon, 7 Jun 2004 17:21:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i580Lagd085797 for ; Mon, 7 Jun 2004 17:21:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i580LaSb085796; Mon, 7 Jun 2004 17:21:36 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406080021.i580LaSb085796@xorpc.icir.org> Date: Mon, 7 Jun 2004 17:21:36 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ peer.cc xorp/bgp/harness/ test_peering1.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/harness/ Changes by: atanu@xorpc.icir.org. 04/06/07 17:21:36 Modified files: xorp/bgp/: peer.cc xorp/bgp/harness/: test_peering1.sh Log message: If an event such as close or connection retry occurs while we are in the CONNECT state; tidy up the outstanding file descriptor. [Bugzilla BUG ID #32] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 17:23:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 17:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i580O1NG060658 for ; Mon, 7 Jun 2004 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i580O1kR058852 for ; Mon, 7 Jun 2004 17:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i580O1Yq028343; Mon, 7 Jun 2004 17:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i580NUYq028302 for ; Mon, 7 Jun 2004 17:23:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i580NUkR058846 for ; Mon, 7 Jun 2004 17:23:30 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i580NUgd085968 for ; Mon, 7 Jun 2004 17:23:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i580NUnC085967; Mon, 7 Jun 2004 17:23:30 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406080023.i580NUnC085967@xorpc.icir.org> Date: Mon, 7 Jun 2004 17:23:30 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/07 17:23:30 Modified files: xorp/bgp/: bgp.cc Log message: Only stop listening for incoming connections if no peerings are enabled. [Bugzilla BUG ID #31] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 18:00:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 18:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58111NG074736 for ; Mon, 7 Jun 2004 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58111kR059313 for ; Mon, 7 Jun 2004 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58111Yq029301; Mon, 7 Jun 2004 18:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5810CYq029288 for ; Mon, 7 Jun 2004 18:00:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5810BkR059298 for ; Mon, 7 Jun 2004 18:00:11 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5810Bgd089776 for ; Mon, 7 Jun 2004 18:00:11 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5810B5l089775; Mon, 7 Jun 2004 18:00:11 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406080100.i5810B5l089775@xorpc.icir.org> Date: Mon, 7 Jun 2004 18:00:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/07 18:00:11 Modified files: xorp/rtrmgr/: config.boot.sample config.boot.xorp0 Log message: "peer-ip" no longer used in BGP should fix the tinderbox failure. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Mon Jun 7 18:04:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Jun 2004 18:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58151NG075583 for ; Mon, 7 Jun 2004 18:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58151kR059358 for ; Mon, 7 Jun 2004 18:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58150Yq029415; Mon, 7 Jun 2004 18:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5814SYq029403 for ; Mon, 7 Jun 2004 18:04:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5814SkR059345 for ; Mon, 7 Jun 2004 18:04:28 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5814Sgd090237 for ; Mon, 7 Jun 2004 18:04:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5814SS3090236; Mon, 7 Jun 2004 18:04:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406080104.i5814SS3090236@xorpc.icir.org> Date: Mon, 7 Jun 2004 18:04:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config other/LiveCD/files/ xorp_load.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/07 18:04:28 Modified files: other/LiveCD/: config other/LiveCD/files/: xorp_load.py Log message: Don't try and set file owner/permissions on a DOS floppy _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Tue Jun 8 1:49:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 01:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i588o1NG061384 for ; Tue, 8 Jun 2004 01:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i588o1uk064798 for ; Tue, 8 Jun 2004 01:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i588o1Yq008925; Tue, 8 Jun 2004 01:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i588nVYq008913 for ; Tue, 8 Jun 2004 01:49:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i588nVuk064790 for ; Tue, 8 Jun 2004 01:49:31 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i588nVgd025128 for ; Tue, 8 Jun 2004 01:49:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i588nVcT025127; Tue, 8 Jun 2004 01:49:31 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406080849.i588nVcT025127@xorpc.icir.org> Date: Tue, 8 Jun 2004 1:49:31 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/06/08 01:49:31 Modified files: other/LiveCD/: livecd.sh Log message: Make dialog larger so error message fits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:53 2005 Subject: No subject Tue Jun 8 3:02:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 03:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58A31NG075300 for ; Tue, 8 Jun 2004 03:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58A31uk066070 for ; Tue, 8 Jun 2004 03:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58A31Yq010384; Tue, 8 Jun 2004 03:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58A22Yq010362 for ; Tue, 8 Jun 2004 03:02:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58A22uk066057 for ; Tue, 8 Jun 2004 03:02:02 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58A22gd030832 for ; Tue, 8 Jun 2004 03:02:02 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58A22BR030831; Tue, 8 Jun 2004 03:02:02 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406081002.i58A22BR030831@xorpc.icir.org> Date: Tue, 8 Jun 2004 3:02:02 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ config livecd.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/06/08 03:02:02 Modified files: other/LiveCD/: config livecd.sh Log message: Burn faster. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 5:33:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 05:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58CY2NG002284 for ; Tue, 8 Jun 2004 05:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58CY1uk067938 for ; Tue, 8 Jun 2004 05:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58CY1Yq015397; Tue, 8 Jun 2004 05:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58CXnYq015374 for ; Tue, 8 Jun 2004 05:33:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58CXnuk067935 for ; Tue, 8 Jun 2004 05:33:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58CXngd043375 for ; Tue, 8 Jun 2004 05:33:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58CXn2c043374; Tue, 8 Jun 2004 05:33:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406081233.i58CXn2c043374@xorpc.icir.org> Date: Tue, 8 Jun 2004 5:33:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_dataflow.cc mfea_dataflow.hh mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh xrl_mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/08 05:33:49 Modified files: xorp/fea/: mfea_dataflow.cc mfea_dataflow.hh mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh xrl_mfea_node.cc Log message: If there is an error when adding/deleting a dataflow monitor, then return-by-reference a string with a meaningful error message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 7:09:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 07:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58EA1NG019101 for ; Tue, 8 Jun 2004 07:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58EA1uk069181 for ; Tue, 8 Jun 2004 07:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58EA1Yq017614; Tue, 8 Jun 2004 07:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58E92Yq017584 for ; Tue, 8 Jun 2004 07:09:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58E92uk069166 for ; Tue, 8 Jun 2004 07:09:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58E92gd051644 for ; Tue, 8 Jun 2004 07:09:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58E91dc051643; Tue, 8 Jun 2004 07:09:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406081409.i58E91dc051643@xorpc.icir.org> Date: Tue, 8 Jun 2004 7:09:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/08 07:09:01 Modified files: xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh Log message: Bugfix: currently, there are two independent queues with the XRL requests to add/delete MFC or dataflow monitors with the MFEA: one for the MFC requests, and one for the dataflow monitors. However, then some requests may be reordered: e.g., adding a dataflow monitoring request may be sent before the adding of the corresponding MFC entry, which is an error. The solution is to use a single queue for both MFC and dataflow monitor requests so no reordering can happen. [Bug report by Philippe Van Hecke ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 9:24:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 09:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58GP2NG045349 for ; Tue, 8 Jun 2004 09:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58GP1uk072396 for ; Tue, 8 Jun 2004 09:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58GP1Yq021276; Tue, 8 Jun 2004 09:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58GOCYq021245 for ; Tue, 8 Jun 2004 09:24:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58GOBuk072382 for ; Tue, 8 Jun 2004 09:24:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58GOBgd062144 for ; Tue, 8 Jun 2004 09:24:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58GOBfF062143; Tue, 8 Jun 2004 09:24:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406081624.i58GOBfF062143@xorpc.icir.org> Date: Tue, 8 Jun 2004 9:24:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/08 09:24:11 Modified files: xorp/cli/: cli_node_net.cc Log message: Bug fix: if the window width or height changes, explicitly test whether the new values are valid. E.g., if the built-in telnet-based CLI is used, and if emacs is used to connect to it: M-x shell telnet localhost 12000 then the reported terminal width and height are 0. [Bug report by Meenakshi Kaushik ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 12:06:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 12:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58J71NG077754 for ; Tue, 8 Jun 2004 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58J71uk074620 for ; Tue, 8 Jun 2004 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58J71Yq025967; Tue, 8 Jun 2004 12:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58J6RYq025957 for ; Tue, 8 Jun 2004 12:06:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58J6Ruk074617 for ; Tue, 8 Jun 2004 12:06:27 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58J6Rgd069866 for ; Tue, 8 Jun 2004 12:06:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58J6R5q069865; Tue, 8 Jun 2004 12:06:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406081906.i58J6R5q069865@xorpc.icir.org> Date: Tue, 8 Jun 2004 12:06:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ template_tree_node.cc template_tree_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/08 12:06:27 Modified files: xorp/rtrmgr/: template_tree_node.cc template_tree_node.hh Log message: o Check array bounds before accessing entries in split_up_varnames. Bugzilla ID: 33 Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 15:37:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 15:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mc1NG014690 for ; Tue, 8 Jun 2004 15:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mc1uk077243 for ; Tue, 8 Jun 2004 15:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58Mc1Yq001722; Tue, 8 Jun 2004 15:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58MblYq001710 for ; Tue, 8 Jun 2004 15:37:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mbkuk077241 for ; Tue, 8 Jun 2004 15:37:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mbkgd077951 for ; Tue, 8 Jun 2004 15:37:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58MbkxO077950; Tue, 8 Jun 2004 15:37:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406082237.i58MbkxO077950@xorpc.icir.org> Date: Tue, 8 Jun 2004 15:37:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/08 15:37:46 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 15:42:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 15:43:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mh0NG015585 for ; Tue, 8 Jun 2004 15:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mh0uk077312 for ; Tue, 8 Jun 2004 15:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58Mh0Yq001831; Tue, 8 Jun 2004 15:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58Mg9Yq001818 for ; Tue, 8 Jun 2004 15:42:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mg9uk077305 for ; Tue, 8 Jun 2004 15:42:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mg9gd078122 for ; Tue, 8 Jun 2004 15:42:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58Mg9YA078121; Tue, 8 Jun 2004 15:42:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406082242.i58Mg9YA078121@xorpc.icir.org> Date: Tue, 8 Jun 2004 15:42:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/08 15:42:09 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 15:52:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 15:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mr1NG017359 for ; Tue, 8 Jun 2004 15:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mr1uk077448 for ; Tue, 8 Jun 2004 15:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58Mr1Yq002052; Tue, 8 Jun 2004 15:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i58Mr0Yq002046 for ; Tue, 8 Jun 2004 15:53:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mqxuk077446 for ; Tue, 8 Jun 2004 15:52:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i58Mqxgd078472 for ; Tue, 8 Jun 2004 15:52:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i58Mqxjq078471; Tue, 8 Jun 2004 15:52:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406082252.i58Mqxjq078471@xorpc.icir.org> Date: Tue, 8 Jun 2004 15:52:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/08 15:52:59 Modified files: ./: TODO Log message: Add a TODO entry: "Add MD5 checksums for release tarballs." _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 19:01:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 19:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59221NG055990 for ; Tue, 8 Jun 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59221uk079779 for ; Tue, 8 Jun 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59221Yq006428; Tue, 8 Jun 2004 19:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5921oYq006421 for ; Tue, 8 Jun 2004 19:01:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5921ouk079777 for ; Tue, 8 Jun 2004 19:01:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5921ogd092129 for ; Tue, 8 Jun 2004 19:01:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5921oB6092128; Tue, 8 Jun 2004 19:01:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406090201.i5921oB6092128@xorpc.icir.org> Date: Tue, 8 Jun 2004 19:01:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ mfea.cmds mfea6.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/08 19:01:50 Modified files: xorp/etc/templates/: mfea.cmds mfea6.cmds Log message: Comment-out xorpsh commands "show mfea mrib" and "show mfea6 mrib", because when we run everything through the rtrmgr, the MFEA is not used to get the routes from the kernel. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 19:43:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 19:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i592i1NG065163 for ; Tue, 8 Jun 2004 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i592i1CJ080249 for ; Tue, 8 Jun 2004 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i592i1Yq007265; Tue, 8 Jun 2004 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i592hUYq007248 for ; Tue, 8 Jun 2004 19:43:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i592hTCJ080246 for ; Tue, 8 Jun 2004 19:43:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i592hTgd095070 for ; Tue, 8 Jun 2004 19:43:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i592hT2x095069; Tue, 8 Jun 2004 19:43:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406090243.i592hT2x095069@xorpc.icir.org> Date: Tue, 8 Jun 2004 19:43:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/08 19:43:29 Modified files: xorp/rtrmgr/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 20:14:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 20:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i593F1NG071990 for ; Tue, 8 Jun 2004 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i593F1CJ080648 for ; Tue, 8 Jun 2004 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i593F0Yq007822; Tue, 8 Jun 2004 20:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i593EEYq007804 for ; Tue, 8 Jun 2004 20:14:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i593EECJ080639 for ; Tue, 8 Jun 2004 20:14:14 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i593EEgd096882 for ; Tue, 8 Jun 2004 20:14:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i593EEbM096881; Tue, 8 Jun 2004 20:14:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406090314.i593EEbM096881@xorpc.icir.org> Date: Tue, 8 Jun 2004 20:14:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ conf_tree_node.cc conf_tree_node.hh module_command.cc op_commands.cc template_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/08 20:14:14 Modified files: xorp/rtrmgr/: conf_tree_node.cc conf_tree_node.hh module_command.cc op_commands.cc template_commands.cc Log message: Additional string bounds checking. Bugzilla entry:http://www.xorp.org/bugzilla/show_bug.cgi?id=55 Approaved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 21:08:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 21:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59491NG083832 for ; Tue, 8 Jun 2004 21:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59491CJ081264 for ; Tue, 8 Jun 2004 21:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59490Yq008827; Tue, 8 Jun 2004 21:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5948eYq008810 for ; Tue, 8 Jun 2004 21:08:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5948eCJ081259 for ; Tue, 8 Jun 2004 21:08:40 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5948egd000465 for ; Tue, 8 Jun 2004 21:08:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5948eSm000464; Tue, 8 Jun 2004 21:08:40 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406090408.i5948eSm000464@xorpc.icir.org> Date: Tue, 8 Jun 2004 21:08:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_port_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rip/ Changes by: hodson@xorpc.icir.org. 04/06/08 21:08:40 Modified files: xorp/rip/: xrl_port_manager.cc Log message: Enable or disable I/O handler based on enabled state of address in FEA. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=35 Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Tue Jun 8 23:13:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Jun 2004 23:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i596E1NG011127 for ; Tue, 8 Jun 2004 23:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i596E1CJ082625 for ; Tue, 8 Jun 2004 23:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i596E1Yq011547; Tue, 8 Jun 2004 23:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i596D1Yq011531 for ; Tue, 8 Jun 2004 23:13:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i596D1CJ082613 for ; Tue, 8 Jun 2004 23:13:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i596D0gd008810 for ; Tue, 8 Jun 2004 23:13:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i596D004008809; Tue, 8 Jun 2004 23:13:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406090613.i596D004008809@xorpc.icir.org> Date: Tue, 8 Jun 2004 23:13:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/08 23:13:00 Modified files: xorp/rtrmgr/: cli.cc Log message: Add a missing '\n' when printing an error if the loading of a configuration file fails. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=36 Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 3:14:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 03:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AF2NG071779 for ; Wed, 9 Jun 2004 03:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AF1CJ085938 for ; Wed, 9 Jun 2004 03:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59AF1Yq016772; Wed, 9 Jun 2004 03:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59AE7Yq016755 for ; Wed, 9 Jun 2004 03:14:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AE6CJ085925 for ; Wed, 9 Jun 2004 03:14:06 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AE6gd028870 for ; Wed, 9 Jun 2004 03:14:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59AE6L0028860; Wed, 9 Jun 2004 03:14:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406091014.i59AE6L0028860@xorpc.icir.org> Date: Wed, 9 Jun 2004 3:14:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_routes.cc xorp/etc/templates/ bgp.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/06/09 03:14:06 Modified files: xorp/bgp/tools/: print_peer.cc print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_routes.cc xorp/etc/templates/: bgp.cmds Log message: The xorpsh can run external programs for operational mode commands. An example of such a program is the BGP print routes program. A full BGP feed would print about 134000 lines. This is too much for the xorpsh to currently handle (BUG ID#56). Temporarily print only the first 1000 lines of output. Add a command line argument to limit the number of lines printed and set the limit in the BGP commands file. While we are here lose the two extra newlines that are printed by the print routes and print peers commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 09 11:45:52 2004 Return-Path: mjh@cs.ucl.ac.uk Delivery-Date: Wed, 09 Jun 2004 03:45:54 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AjsNG083519 for ; Wed, 9 Jun 2004 03:45:54 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (aardvark.cs.ucl.ac.uk [128.16.11.150]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59AjqCJ086289; Wed, 9 Jun 2004 03:45:53 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (localhost [127.0.0.1]) by aardvark.cs.ucl.ac.uk (8.12.9p2/8.12.8) with ESMTP id i59AjqxF094249; Wed, 9 Jun 2004 11:45:52 +0100 (BST) (envelope-from mjh@aardvark.cs.ucl.ac.uk) From: Mark Handley X-Organisation: UCL To: atanu@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc print_routes.cc print_routes.hh In-reply-to: Your message of "Wed, 09 Jun 2004 03:14:06." <200406091014.i59AE6L0028860@xorpc.icir.org> Date: Wed, 09 Jun 2004 11:45:52 +0100 Message-ID: <94248.1086777952@aardvark.cs.ucl.ac.uk> Sender: mjh@cs.ucl.ac.uk > While we are here lose the two extra newlines that are printed by the > print routes and print peers commands. BTW, those two extra newlines mark the end of the MIME header :-) The intent was to allow more than just ASCII encodings, with a default to text/plain. - Mark From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 4:22:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 04:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BN2NG090023 for ; Wed, 9 Jun 2004 04:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BN1CJ086744 for ; Wed, 9 Jun 2004 04:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59BN1Yq018338; Wed, 9 Jun 2004 04:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59BMEYq018316 for ; Wed, 9 Jun 2004 04:22:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BMECJ086731 for ; Wed, 9 Jun 2004 04:22:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BMEgd034308 for ; Wed, 9 Jun 2004 04:22:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59BMEPi034307; Wed, 9 Jun 2004 04:22:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091122.i59BMEPi034307@xorpc.icir.org> Date: Wed, 9 Jun 2004 4:22:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc xorp/mld6igmp/ mld6igmp_node.cc xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/09 04:22:14 Modified files: xorp/fea/: mfea_node.cc xorp/mld6igmp/: mld6igmp_node.cc xorp/pim/: pim_node.cc Log message: Set the node status to PROC_NULL inside the node destructor. This change is a pre-requisition for fixing the following Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=35 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 4:26:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 04:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BR1NG090722 for ; Wed, 9 Jun 2004 04:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BR1CJ086821 for ; Wed, 9 Jun 2004 04:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59BR0Yq018414; Wed, 9 Jun 2004 04:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59BQuYq018407 for ; Wed, 9 Jun 2004 04:26:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BQuCJ086819 for ; Wed, 9 Jun 2004 04:26:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59BQtgd034744 for ; Wed, 9 Jun 2004 04:26:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59BQt5M034743; Wed, 9 Jun 2004 04:26:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091126.i59BQt5M034743@xorpc.icir.org> Date: Wed, 9 Jun 2004 4:26:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mfc.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/09 04:26:55 Modified files: xorp/pim/: pim_mfc.cc Log message: * Remove obsolete comment * Bug fix: when resetting the value of the new iif in the olist set, explicitly check that the new iif is valid vif index * Bug fix: inside the PimMfc destructor, call delete_mfc_from_kernel() (which eventually calls a pure virtual method to send an XRL to the MFEA) only if the PimNode node status is not PROC_NULL (i.e., if we are not in the PimNode destructor). Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=47 Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 5:43:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 05:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Ci1NG004294 for ; Wed, 9 Jun 2004 05:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Ci1CJ087765 for ; Wed, 9 Jun 2004 05:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59Ci1Yq021747; Wed, 9 Jun 2004 05:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59ChRYq021735 for ; Wed, 9 Jun 2004 05:43:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59ChQCJ087757 for ; Wed, 9 Jun 2004 05:43:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59ChQgd041388 for ; Wed, 9 Jun 2004 05:43:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59ChQCi041383; Wed, 9 Jun 2004 05:43:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091243.i59ChQCi041383@xorpc.icir.org> Date: Wed, 9 Jun 2004 5:43:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 05:43:25 Modified files: xorp/fea/: fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc Log message: Remove bogus flag "recognized", which is not really used. As a result, even if the forwarding table is empty, we return success when parsing the data rather than failure. This indirectly fixes a coredump problem in fib2mrib/xorp_fib2mrib: That program discovers through the FEA that the underlying system supports IPv6, but if the IPv6 forwarding table is empty, then it fails to register for obtaining the IPv6 forwarding table because of the "recognized" bogus flag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 09 09:47:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 09:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Gm1NG048360 for ; Wed, 9 Jun 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Gm1CJ092100 for ; Wed, 9 Jun 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59Gm0Yq027398; Wed, 9 Jun 2004 09:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59GlgYq027388 for ; Wed, 9 Jun 2004 09:47:42 -0700 (PDT) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59GlgCJ092094 for ; Wed, 9 Jun 2004 09:47:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59GleNG048294; Wed, 9 Jun 2004 09:47:40 -0700 (PDT) (envelope-from atanu@tigger.icir.org) To: Mark Handley cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc print_routes.cc print_routes.hh In-Reply-To: Message from Mark Handley of "Wed, 09 Jun 2004 11:45:52 BST." <94248.1086777952@aardvark.cs.ucl.ac.uk> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Mailer: MH-E 7.4.2; nmh 1.0.3; XEmacs 21.4 (patch 14) Date: Wed, 09 Jun 2004 09:47:40 -0700 Message-ID: <48293.1086799660@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , >>>>> "Mark" == Mark Handley writes: >> While we are here lose the two extra newlines that are printed by >> the print routes and print peers commands. Mark> BTW, those two extra newlines mark the end of the MIME header Mark> :-) Mark> The intent was to allow more than just ASCII encodings, with a Mark> default to text/plain. Is this convention being followed by other external programs? If the xorpsh understood the newlines shouldn't it be eating them? Should I put them back? This is where comments in code really come into their own! Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 12:01:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 12:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J21NG073090 for ; Wed, 9 Jun 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J21CJ093936 for ; Wed, 9 Jun 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59J21Yq001209; Wed, 9 Jun 2004 12:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59J1eYq001187 for ; Wed, 9 Jun 2004 12:01:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J1dCJ093928 for ; Wed, 9 Jun 2004 12:01:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J1dgd066888 for ; Wed, 9 Jun 2004 12:01:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59J1dMC066887; Wed, 9 Jun 2004 12:01:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091901.i59J1dMC066887@xorpc.icir.org> Date: Wed, 9 Jun 2004 12:01:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 12:01:39 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:54 2005 Subject: No subject Wed Jun 9 12:02:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 12:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J31NG073342 for ; Wed, 9 Jun 2004 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J31CJ093955 for ; Wed, 9 Jun 2004 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59J31Yq001250; Wed, 9 Jun 2004 12:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59J2DYq001230 for ; Wed, 9 Jun 2004 12:02:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J2DCJ093941 for ; Wed, 9 Jun 2004 12:02:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59J2Dgd066922 for ; Wed, 9 Jun 2004 12:02:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59J2DC6066921; Wed, 9 Jun 2004 12:02:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091902.i59J2DC6066921@xorpc.icir.org> Date: Wed, 9 Jun 2004 12:02:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/06/09 12:02:13 Modified files: xorp/mld6igmp/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 12:11:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 12:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JC1NG075432 for ; Wed, 9 Jun 2004 12:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JC0CJ094096 for ; Wed, 9 Jun 2004 12:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59JC0Yq001514; Wed, 9 Jun 2004 12:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59JBAYq001485 for ; Wed, 9 Jun 2004 12:11:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JBACJ094083 for ; Wed, 9 Jun 2004 12:11:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JBAgd067421 for ; Wed, 9 Jun 2004 12:11:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59JBAqk067420; Wed, 9 Jun 2004 12:11:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091911.i59JBAqk067420@xorpc.icir.org> Date: Wed, 9 Jun 2004 12:11:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_mrouter.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 12:11:10 Modified files: xorp/fea/: mfea_mrouter.cc Log message: Bug fix for Linux when shutting down an interface enabled for multicast routing. In case of Linux, MRT_DEL_VIF expects an argument of type "struct vifctl", while other systems expect an argument of type "vifi_t". This fixes some of the error messages during shutdown in the following bug report: Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=49 Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 12:30:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 12:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JV1NG079659 for ; Wed, 9 Jun 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JV1CJ094364 for ; Wed, 9 Jun 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59JV0Yq002072; Wed, 9 Jun 2004 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59JUmYq002059 for ; Wed, 9 Jun 2004 12:30:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JUmCJ094360 for ; Wed, 9 Jun 2004 12:30:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59JUmgd068186 for ; Wed, 9 Jun 2004 12:30:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59JUmtx068185; Wed, 9 Jun 2004 12:30:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406091930.i59JUmtx068185@xorpc.icir.org> Date: Wed, 9 Jun 2004 12:30:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 12:30:48 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 15:12:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MD1NG015537 for ; Wed, 9 Jun 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MD1CJ096415 for ; Wed, 9 Jun 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MD1Ll006581; Wed, 9 Jun 2004 15:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MCPLl006569 for ; Wed, 9 Jun 2004 15:12:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MCPCJ096409 for ; Wed, 9 Jun 2004 15:12:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MCPgd073940 for ; Wed, 9 Jun 2004 15:12:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59MCPI4073939; Wed, 9 Jun 2004 15:12:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406092212.i59MCPI4073939@xorpc.icir.org> Date: Wed, 9 Jun 2004 15:12:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ static_routes.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/09 15:12:25 Modified files: xorp/etc/templates/: static_routes.tp Log message: Added missing "%allow-range:" where appropriate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 15:13:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 15:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59ME1NG015781 for ; Wed, 9 Jun 2004 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59ME1CJ096437 for ; Wed, 9 Jun 2004 15:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59ME0Ll006654; Wed, 9 Jun 2004 15:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MDWLl006626 for ; Wed, 9 Jun 2004 15:13:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MDWCJ096425 for ; Wed, 9 Jun 2004 15:13:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MDVgd074006 for ; Wed, 9 Jun 2004 15:13:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59MDV8G074005; Wed, 9 Jun 2004 15:13:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406092213.i59MDV8G074005@xorpc.icir.org> Date: Wed, 9 Jun 2004 15:13:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/09 15:13:31 Modified files: xorp/etc/templates/: pimsm4.tp pimsm6.tp Log message: * Added missing "%allow-range:" where appropriate * Added "dr-priority" configuration parameter _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 15:33:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 15:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MY2NG020243 for ; Wed, 9 Jun 2004 15:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MY1CJ096621 for ; Wed, 9 Jun 2004 15:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MY1Ll007117; Wed, 9 Jun 2004 15:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MXmLl007094 for ; Wed, 9 Jun 2004 15:33:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MXmCJ096618 for ; Wed, 9 Jun 2004 15:33:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MXmgd074866 for ; Wed, 9 Jun 2004 15:33:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59MXmQZ074865; Wed, 9 Jun 2004 15:33:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406092233.i59MXmQZ074865@xorpc.icir.org> Date: Wed, 9 Jun 2004 15:33:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/09 15:33:48 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: Fix a typo: %allow-range -> %allow-range: _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 15:40:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 15:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Mf1NG021878 for ; Wed, 9 Jun 2004 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Mf1CJ096728 for ; Wed, 9 Jun 2004 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59Mf1Ll007296; Wed, 9 Jun 2004 15:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i59MeoLl007286 for ; Wed, 9 Jun 2004 15:40:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i59MeoCJ096722 for ; Wed, 9 Jun 2004 15:40:50 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i59Meogd075075 for ; Wed, 9 Jun 2004 15:40:50 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i59Meo7h075074; Wed, 9 Jun 2004 15:40:50 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406092240.i59Meo7h075074@xorpc.icir.org> Date: Wed, 9 Jun 2004 15:40:50 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/06/09 15:40:50 Modified files: xorp/etc/templates/: bgp.tp Log message: Restrict the values that an AS Number can take. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 17:15:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 17:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A0G1NG048576 for ; Wed, 9 Jun 2004 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A0G1CJ097862 for ; Wed, 9 Jun 2004 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A0G0Ll009601; Wed, 9 Jun 2004 17:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A0FPLl009585 for ; Wed, 9 Jun 2004 17:15:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A0FPCJ097857 for ; Wed, 9 Jun 2004 17:15:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A0FPgd080782 for ; Wed, 9 Jun 2004 17:15:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A0FP9G080781; Wed, 9 Jun 2004 17:15:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406100015.i5A0FP9G080781@xorpc.icir.org> Date: Wed, 9 Jun 2004 17:15:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/tools/ show_interfaces.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/tools/ Changes by: pavlin@xorpc.icir.org. 04/06/09 17:15:25 Modified files: xorp/fea/tools/: show_interfaces.cc Log message: If an address is disabled, then print " " at the end. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 19:20:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 19:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A2L1NG082026 for ; Wed, 9 Jun 2004 19:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A2L1CJ099332 for ; Wed, 9 Jun 2004 19:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A2L1Ll012515; Wed, 9 Jun 2004 19:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A2K4Ll012500 for ; Wed, 9 Jun 2004 19:20:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A2K3CJ099307 for ; Wed, 9 Jun 2004 19:20:03 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A2K3gd094268 for ; Wed, 9 Jun 2004 19:20:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A2K3Cj094267; Wed, 9 Jun 2004 19:20:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406100220.i5A2K3Cj094267@xorpc.icir.org> Date: Wed, 9 Jun 2004 19:20:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ Makefile.am Makefile.in config.boot.sample xorp/rtrmgr/ config.boot config.boot.xorp0 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/09 19:20:03 Modified files: xorp/rtrmgr/: Makefile.am Makefile.in config.boot.sample Removed files: xorp/rtrmgr/: config.boot config.boot.xorp0 Log message: Have only one sample configuration file "config.boot.sample". Remove "config.boot" and "config.boot.xorp0". _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 20:26:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 20:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3R1NG096597 for ; Wed, 9 Jun 2004 20:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3R0CJ000241 for ; Wed, 9 Jun 2004 20:27:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A3R0Ll013804; Wed, 9 Jun 2004 20:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A3QALl013787 for ; Wed, 9 Jun 2004 20:26:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3QACJ000234 for ; Wed, 9 Jun 2004 20:26:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3QAgd099177 for ; Wed, 9 Jun 2004 20:26:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A3QAP7099176; Wed, 9 Jun 2004 20:26:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406100326.i5A3QAP7099176@xorpc.icir.org> Date: Wed, 9 Jun 2004 20:26:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ libfeaclient_bridge.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 20:26:10 Modified files: xorp/fea/: libfeaclient_bridge.cc Log message: Don't propagate interface-related changes that just appear beneath us within the system. I.e., all changes should be through the FEA. This fix is needed to address the issue of keeping (to some extent) the FEA interface-related internal state in-sync with the rtrmgr configuration. In particular, if an interface address is marked as disabled within xorpsh, then the FEA will mark it as disabled within its own copy of the configuration tree, but the address will be removed from the kernel. The address removal however will trigger a routing socket/netlink message to pop-up to user space to the IfConfigObserver. If those messages are unconditionally propagated by LibFeaClientBridge, then the state seen by interested parties (the protocols) will be different from the state within the FEA. A better solution would be that all IfConfigObserver changes should be propagated through the FEA internal configuration state, and the logic for maintaning that state will decide whether to apply the changes and propagate them further or to throw them away. Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 20:32:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 20:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3X1NG097948 for ; Wed, 9 Jun 2004 20:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3X1CJ000317 for ; Wed, 9 Jun 2004 20:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A3X1Ll013971; Wed, 9 Jun 2004 20:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A3WKLl013951 for ; Wed, 9 Jun 2004 20:32:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3WKCJ000311 for ; Wed, 9 Jun 2004 20:32:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A3WKgd099642 for ; Wed, 9 Jun 2004 20:32:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A3WK4Z099641; Wed, 9 Jun 2004 20:32:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406100332.i5A3WK4Z099641@xorpc.icir.org> Date: Wed, 9 Jun 2004 20:32:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ iftree.hh iftree.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/09 20:32:20 Modified files: xorp/fea/: iftree.hh iftree.cc Log message: Modify the logic (inside method IfTree:align_with()) for updating the internal FEA interface tree state with the state in the kernel. Currently, this logic is applied only when we explicitly configure the interfaces through the FEA. The new added rule is that if an item on the local tree is "disabled", then the state is not modified. Otherwise, the rest of the (original) rules for updating the tree are applied. Approved by: Atanu, Orion _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Wed Jun 9 22:00:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Jun 2004 22:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A512NG015931 for ; Wed, 9 Jun 2004 22:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A511CJ001268 for ; Wed, 9 Jun 2004 22:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A510Ll015560; Wed, 9 Jun 2004 22:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A50CLl015530 for ; Wed, 9 Jun 2004 22:00:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A50CCJ001256 for ; Wed, 9 Jun 2004 22:00:12 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A50Cgd006269 for ; Wed, 9 Jun 2004 22:00:12 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A50C1j006268; Wed, 9 Jun 2004 22:00:12 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406100500.i5A50C1j006268@xorpc.icir.org> Date: Wed, 9 Jun 2004 22:00:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/tools/ Changes by: hodson@xorpc.icir.org. 04/06/09 22:00:12 xorp/rib/tools Update of /usr/local/www/data/cvs/xorp/rib/tools In directory xorpc.icir.org:/tmp/cvs-serv6260/tools Log Message: Directory /usr/local/www/data/cvs/xorp/rib/tools added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 1:04:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 01:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A852NG048012 for ; Thu, 10 Jun 2004 01:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A851CJ003356 for ; Thu, 10 Jun 2004 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A851Ej019524; Thu, 10 Jun 2004 01:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A84TEj019514 for ; Thu, 10 Jun 2004 01:04:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A84TCJ003346 for ; Thu, 10 Jun 2004 01:04:29 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A84Tgd027291 for ; Thu, 10 Jun 2004 01:04:29 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5A84TI7027288; Thu, 10 Jun 2004 01:04:29 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406100804.i5A84TI7027288@xorpc.icir.org> Date: Thu, 10 Jun 2004 1:04:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ bgp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/10 01:04:28 Modified files: xorp/bgp/: bgp.cc Log message: The router manager invokes the activate method once per peering. The activate method sets a flag and only if this flag is set is it possible to change the state of the peering. Unfortunately, if when the activate method was called the peering was disabled the flag was not being set. Therefore it was never possible to subsequently bring up the peering. The flag is now set unconditionally on entry to the method. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=66 Approved by: Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 09:36:35 2004 Return-Path: mjh@cs.ucl.ac.uk Delivery-Date: Thu, 10 Jun 2004 01:36:39 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A8adNG053580 for ; Thu, 10 Jun 2004 01:36:39 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5A8acCJ003701 for ; Thu, 10 Jun 2004 01:36:38 -0700 (PDT) (envelope-from mjh@cs.ucl.ac.uk) Received: from aardvark.cs.ucl.ac.uk (aardvark.cs.ucl.ac.uk [128.16.11.150]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5A8acEj020226 for ; Thu, 10 Jun 2004 01:36:38 -0700 (PDT) Received: from aardvark.cs.ucl.ac.uk (localhost [127.0.0.1]) by aardvark.cs.ucl.ac.uk (8.12.9p2/8.12.8) with ESMTP id i5A8aZxF001683; Thu, 10 Jun 2004 09:36:35 +0100 (BST) (envelope-from mjh@aardvark.cs.ucl.ac.uk) From: Mark Handley X-Organisation: UCL To: atanu@ICSI.Berkeley.EDU cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools/ print_peer.cc print_routes.cc print_routes.hh In-reply-to: Your message of "Wed, 09 Jun 2004 09:47:40 PDT." <48293.1086799660@tigger.icir.org> Date: Thu, 10 Jun 2004 09:36:35 +0100 Message-ID: <1682.1086856595@aardvark.cs.ucl.ac.uk> Sender: mjh@cs.ucl.ac.uk >>>>>> "Mark" == Mark Handley writes: > > >> While we are here lose the two extra newlines that are printed by > >> the print routes and print peers commands. > > Mark> BTW, those two extra newlines mark the end of the MIME header > Mark> :-) > > Mark> The intent was to allow more than just ASCII encodings, with a > Mark> default to text/plain. > >Is this convention being followed by other external programs? If the >xorpsh understood the newlines shouldn't it be eating them? Should I put >them back? Don't put them back for now. If/when we go down this track properly, and add proper MIME support to xorpsh, we can trivially add them back. >This is where comments in code really come into their own! Yup - my bad. - Mark From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 6:35:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 06:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADa2NG001148 for ; Thu, 10 Jun 2004 06:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADa1CJ007806 for ; Thu, 10 Jun 2004 06:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADa1Ej028314; Thu, 10 Jun 2004 06:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADZ6Ej028273 for ; Thu, 10 Jun 2004 06:35:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADZ6CJ007796 for ; Thu, 10 Jun 2004 06:35:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADZ6gd053641 for ; Thu, 10 Jun 2004 06:35:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ADZ6vY053640; Thu, 10 Jun 2004 06:35:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406101335.i5ADZ6vY053640@xorpc.icir.org> Date: Thu, 10 Jun 2004 6:35:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/10 06:35:06 Modified files: xorp/fea/: test_config_interface.sh Log message: * Add an entry for xorp3 * Modify test_get_vif_pif_index() such that first enable the new configured interface and vif before attempting to get its physical interface index. This fix is needed because now an interface tree item is aligned by the state from the kernel (which includes the physical interface index) only if the item is not disabled [ See revision 1.22 of fea/iftree.cc ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 6:45:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 06:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADk1NG002692 for ; Thu, 10 Jun 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADk1CJ007950 for ; Thu, 10 Jun 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADk1Ej028556; Thu, 10 Jun 2004 06:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADjvEj028550 for ; Thu, 10 Jun 2004 06:45:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADjvCJ007948 for ; Thu, 10 Jun 2004 06:45:57 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADjvgd054376 for ; Thu, 10 Jun 2004 06:45:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ADjv0S054375; Thu, 10 Jun 2004 06:45:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101345.i5ADjv0S054375@xorpc.icir.org> Date: Thu, 10 Jun 2004 6:45:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ redist_xrl.cc xorp/rip/ xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rip/tools/ xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh xorp/xrl/interfaces/ redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/06/10 06:45:57 Modified files: xorp/rib/: redist_xrl.cc xorp/rip/: xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rip/tools/: xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh xorp/xrl/interfaces/: redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: o Add Xrls corresponding to start of route dump and end of route dump to redist interfaces. o Add send Xrl calls to existing stubs for this purpose to the RIB. o Regenerate target files as necessary and add empty implementations to RIP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 6:49:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 06:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADo1NG003270 for ; Thu, 10 Jun 2004 06:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADo1CJ007996 for ; Thu, 10 Jun 2004 06:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADo1Ej028635; Thu, 10 Jun 2004 06:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ADnTEj028624 for ; Thu, 10 Jun 2004 06:49:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADnSCJ007988 for ; Thu, 10 Jun 2004 06:49:28 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ADnSgd054724 for ; Thu, 10 Jun 2004 06:49:28 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ADnSX1054723; Thu, 10 Jun 2004 06:49:28 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101349.i5ADnSX1054723@xorpc.icir.org> Date: Thu, 10 Jun 2004 6:49:28 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/rib/ Makefile.am Makefile.in rib.hh rib_manager.cc xorp/xrl/targets/ Makefile.am Makefile.in xorp/rib/tools/ .cvsignore Makefile.am Makefile.in show_routes.cc xorp/xrl/targets/ show_routes.tgt show_routes.xrls show_routes_base.cc show_routes_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/06/10 06:49:28 Modified files: ./: configure configure.in xorp/rib/: Makefile.am Makefile.in rib.hh rib_manager.cc xorp/xrl/targets/: Makefile.am Makefile.in Added files: xorp/rib/tools/: .cvsignore Makefile.am Makefile.in show_routes.cc xorp/xrl/targets/: show_routes.tgt show_routes.xrls show_routes_base.cc show_routes_base.hh Log message: o Add show_routes command that reads routes from redist tables in RIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 7:01:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 07:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AE20NG005145 for ; Thu, 10 Jun 2004 07:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AE20CJ008145 for ; Thu, 10 Jun 2004 07:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AE20Ej028971; Thu, 10 Jun 2004 07:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AE1GEj028939 for ; Thu, 10 Jun 2004 07:01:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AE1GCJ008140 for ; Thu, 10 Jun 2004 07:01:16 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AE1Fgd056065 for ; Thu, 10 Jun 2004 07:01:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AE1F3f056064; Thu, 10 Jun 2004 07:01:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101401.i5AE1F3f056064@xorpc.icir.org> Date: Thu, 10 Jun 2004 7:01:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/06/10 07:01:15 Modified files: xorp/rib/: rib.hh Log message: Remove inline from find_protocol declaration. (Compilation fix for gcc-3.4) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:55 2005 Subject: No subject Thu Jun 10 7:17:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 07:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AEI1NG007557 for ; Thu, 10 Jun 2004 07:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AEI0CJ008343 for ; Thu, 10 Jun 2004 07:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AEI0Ej029318; Thu, 10 Jun 2004 07:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AEH8Ej029299 for ; Thu, 10 Jun 2004 07:17:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AEH8CJ008338 for ; Thu, 10 Jun 2004 07:17:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AEH8gd067668 for ; Thu, 10 Jun 2004 07:17:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AEH8ag067667; Thu, 10 Jun 2004 07:17:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406101417.i5AEH8ag067667@xorpc.icir.org> Date: Thu, 10 Jun 2004 7:17:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/10 07:17:08 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 8:25:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 08:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AFQ1NG019251 for ; Thu, 10 Jun 2004 08:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AFQ1CJ010493 for ; Thu, 10 Jun 2004 08:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AFQ1Ej001159; Thu, 10 Jun 2004 08:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AFPREj001142 for ; Thu, 10 Jun 2004 08:25:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AFPRCJ010490 for ; Thu, 10 Jun 2004 08:25:27 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AFPRgd073855 for ; Thu, 10 Jun 2004 08:25:27 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AFPRZE073854; Thu, 10 Jun 2004 08:25:27 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101525.i5AFPRZE073854@xorpc.icir.org> Date: Thu, 10 Jun 2004 8:25:27 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/contrib/ Changes by: hodson@xorpc.icir.org. 04/06/10 08:25:27 xorp/contrib Update of /usr/local/www/data/cvs/xorp/contrib In directory xorpc.icir.org:/tmp/cvs-serv73848/contrib Log Message: Directory /usr/local/www/data/cvs/xorp/contrib added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 9:15:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 09:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGG1NG026778 for ; Thu, 10 Jun 2004 09:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGG1CJ011115 for ; Thu, 10 Jun 2004 09:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AGG1Ej002436; Thu, 10 Jun 2004 09:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AGFKEj002422 for ; Thu, 10 Jun 2004 09:15:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGFKCJ011107 for ; Thu, 10 Jun 2004 09:15:20 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGFKgd076976 for ; Thu, 10 Jun 2004 09:15:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AGFK3c076975; Thu, 10 Jun 2004 09:15:20 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101615.i5AGFK3c076975@xorpc.icir.org> Date: Thu, 10 Jun 2004 9:15:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in configure configure.in xorp/contrib/ospfd/ Makefile.in xorp/contrib/ospfd/src/ Makefile.in xorp/contrib/ospfd/xorp/ Makefile.in xorp/contrib/ .cvsignore Makefile.am Makefile.in xorp/ospfd/ .cvsignore Makefile.am Makefile.in README ospfd2_x_tar.gz xorp/ospfd/freebsd/ Makefile freebsd.C freebsd.h lsa_prn.C machdep.h ospfd.tcl ospfd_browser.C ospfd_freebsd.C ospfd_freebsd.h ospfd_mon.C system.C tcppkt.C tcppkt.h xorp/ospfd/linux/ Makefile linux.C linux.h lsa_prn.C machdep.h ospfd.tcl ospfd_browser.C ospfd_linux.C ospfd_linux.h ospfd_mon.C system.C tcppkt.C tcppkt.h xorp/ospfd/ospf_sim/ icmp.h mtrace.C mtrace.h ospf_sim.tcl ospfd_sim.C ospfd_sim.h sample.cfg sim.C sim.h sim_system.C simctl.h xorp/ospfd/ospf_sim/free! bsd/ Makefi! le machdep.h machtype.h sim_freebsd.C xorp/ospfd/ospf_sim/linux/ Makefile machdep.h machtype.h sim_linux.C xorp/ospfd/ospf_sim/x86/ Makefile machdep.h sim_x86.C xorp/ospfd/patches/ README applied.patches apply-patches.sh fetch-patches.sh patch2.1 patch2.10 patch2.11 patch2.12 patch2.13 patch2.14 patch2.15 patch2.16 patch2.2 patch2.3 ...patch2.4 ...patch2.5 ...patch2.6 ...patch2.7 ...patch2.8 ...patch2.9 ...patches.html xorp/ospfd/src/ .cvsignore Makefile.am Makefile.in arch.h asbrlsa.C asexlsa.C avl.C avl.h cksum.C config.C config.h dbage.C dbage.h globals.h grplsa.C helper.C hostmode.C ifcfsm.C ifcfsm.h ...igmp.h ...ip.h ...iterator.h ...lsa.C ...lsa.h ...lsalist.C ...lsalist.h ...lsdb.C ...lshdr.h ...mcache.h ...monitor.C ...monitor.h ...mospf.C ...mospf.h ...nb! rfsm.C ...nbrfsm.h ...netlsa.C ...opqlsa.C ...opqlsa.h ..! .ospf.C Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/ospfd/xorp/ Changes by: hodson@xorpc.icir.org. 04/06/10 09:15:20 Modified files: ./: Makefile.am Makefile.in configure configure.in xorp/contrib/ospfd/: Makefile.in xorp/contrib/ospfd/src/: Makefile.in xorp/contrib/ospfd/xorp/: Makefile.in Added files: xorp/contrib/: .cvsignore Makefile.am Makefile.in Removed files: xorp/ospfd/: .cvsignore Makefile.am Makefile.in README ospfd2_x_tar.gz xorp/ospfd/freebsd/: Makefile freebsd.C freebsd.h lsa_prn.C machdep.h ospfd.tcl ospfd_browser.C ospfd_freebsd.C ospfd_freebsd.h ospfd_mon.C system.C tcppkt.C tcppkt.h xorp/ospfd/linux/: Makefile linux.C linux.h lsa_prn.C machdep.h ospfd.tcl ospfd_browser.C ospfd_linux.C ospfd_linux.h ospfd_mon.C system.C tcppkt.C tcppkt.h xorp/ospfd/ospf_sim/: icmp.h mtrace.C mtrace.h ospf_sim.tcl ospfd_sim.C ospfd_sim.h sample.cfg sim.C sim.h sim_system.C simctl.h xorp/ospfd/ospf_sim/freebsd/: Makefile machdep.h machtype.h sim_freebsd.C xorp/ospfd/ospf_sim/linux/: Makefile machdep.h machtype.h sim_linux.C xorp/ospfd/ospf_sim/x86/: Makefile machdep.h sim_x86.C xorp/ospfd/patches/: README applied.patches apply-patches.sh fetch-patches.sh patch2.1 patch2.10 patch2.11 patch2.12 patch2.13 patch2.14 patch2.15 patch2.16 patch2.2 patch2.3 patch2.4 patch2.5 patch2.6 patch2.7 patch2.8 patch2.9 patches.html xorp/ospfd/src/: .cvsignore Makefile.am Makefile.in arch.h asbrlsa.C asexlsa.C avl.C avl.h cksum.C config.C config.h dbage.C dbage.h globals.h grplsa.C helper.C hostmode.C ifcfsm.C ifcfsm.h igmp.h ip.h iterator.h lsa.C lsa.h lsalist.C lsalist.h lsdb.C lshdr.h mcache.h monitor.C monitor.h mospf.C mospf.h nbrfsm.C nbrfsm.h netlsa.C opqlsa.C opqlsa.h ospf.C ospf.h ospfinc.h pat.C pat.h phyint.C phyint.h priq.C priq.h restart.C rte.C rte.h rtrlsa.C spfack.C spfarea.C spfarea.h spfcalc.C spfdd.C spfhello.C spfifc.C spfifc.h spflog.h spflood.C spfnbr.C spfnbr.h spforig.C spfparam.h spfpkt.h spftype.h spfutil.C spfutil.h spfvl.C stack.h summlsa.C system.h timer.C timer.h tlv.C tlv.h xorp/ospfd/src/contrib/: global.h md5.h md5c.c mddriver.c xorp/ospfd/xorp/: .cvsignore Makefile.am Makefile.in lsa_prn.C machdep.h os-instance.C os-instance.h ospf_config.C ospf_config.h ospf_module.h ospfd.tcl ospfd_browser.C ospfd_mon.C ospfd_xorp.C ospfd_xorp.h system.C tcppkt.C tcppkt.h xrl_target.C xrl_target.h Log message: Move ospfd to contrib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 9:54:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 09:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGt2NG032623 for ; Thu, 10 Jun 2004 09:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGt1CJ011588 for ; Thu, 10 Jun 2004 09:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AGt1Ej003463; Thu, 10 Jun 2004 09:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AGsmEj003453 for ; Thu, 10 Jun 2004 09:54:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGsmCJ011583 for ; Thu, 10 Jun 2004 09:54:48 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AGsmgd079140 for ; Thu, 10 Jun 2004 09:54:48 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AGsm4S079139; Thu, 10 Jun 2004 09:54:48 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406101654.i5AGsm4S079139@xorpc.icir.org> Date: Thu, 10 Jun 2004 9:54:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/contrib/ospfd/xorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/contrib/ospfd/xorp/ Changes by: hodson@xorpc.icir.org. 04/06/10 09:54:47 Modified files: xorp/contrib/ospfd/xorp/: Makefile.am Makefile.in Log message: Fix a path to reflect new location under contrib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 11:54:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 11:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AIt2NG050873 for ; Thu, 10 Jun 2004 11:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AIt2CJ013186 for ; Thu, 10 Jun 2004 11:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AIt1Ej006929; Thu, 10 Jun 2004 11:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AIsbEj006904 for ; Thu, 10 Jun 2004 11:54:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AIsbCJ013176 for ; Thu, 10 Jun 2004 11:54:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AIsbgd091374 for ; Thu, 10 Jun 2004 11:54:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AIsbFx091373; Thu, 10 Jun 2004 11:54:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406101854.i5AIsbFx091373@xorpc.icir.org> Date: Thu, 10 Jun 2004 11:54:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ proto_node.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/06/10 11:54:37 Modified files: xorp/libproto/: proto_node.hh Log message: Critical bug fix: Remove some XLOG_UNREACHABLE() statements in method node_status(), because it may be reachable if a node supports all of the PROC_* statements. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 13:52:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 13:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKr1NG068860 for ; Thu, 10 Jun 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKr1CJ014731 for ; Thu, 10 Jun 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AKr1Ej010307; Thu, 10 Jun 2004 13:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AKqhEj010296 for ; Thu, 10 Jun 2004 13:52:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKqhCJ014729 for ; Thu, 10 Jun 2004 13:52:43 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKqhgd096635 for ; Thu, 10 Jun 2004 13:52:43 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AKqhhh096634; Thu, 10 Jun 2004 13:52:43 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406102052.i5AKqhhh096634@xorpc.icir.org> Date: Thu, 10 Jun 2004 13:52:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: CVSROOT Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/10 13:52:42 Modified files: ./: config Log message: Place LockDir outside of repository. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 13:55:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 13:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKu1NG069313 for ; Thu, 10 Jun 2004 13:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKu1CJ014784 for ; Thu, 10 Jun 2004 13:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AKu1Ej010408; Thu, 10 Jun 2004 13:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AKtwEj010401 for ; Thu, 10 Jun 2004 13:55:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKtwCJ014782 for ; Thu, 10 Jun 2004 13:55:58 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AKtwgd096798 for ; Thu, 10 Jun 2004 13:55:58 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AKtwfc096797; Thu, 10 Jun 2004 13:55:58 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406102055.i5AKtwfc096797@xorpc.icir.org> Date: Thu, 10 Jun 2004 13:55:58 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ readers Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: CVSROOT Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/10 13:55:58 Added files: ./: readers Log message: Place xorpcvs in readers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 15:42:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 15:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AMh1NG085561 for ; Thu, 10 Jun 2004 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AMh1CJ016042 for ; Thu, 10 Jun 2004 15:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AMh0Ej013179; Thu, 10 Jun 2004 15:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5AMgLEj013164 for ; Thu, 10 Jun 2004 15:42:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AMgLCJ016036 for ; Thu, 10 Jun 2004 15:42:21 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5AMgKgd000572 for ; Thu, 10 Jun 2004 15:42:20 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5AMgJbk000571; Thu, 10 Jun 2004 15:42:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406102242.i5AMgJbk000571@xorpc.icir.org> Date: Thu, 10 Jun 2004 15:42:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ LICENSE xorp/bgp/ aspath.cc aspath.hh aspath_test.cc attribute_manager.cc attribute_manager.hh bgp.cc bgp.hh bgp_module.h bgp_trie.cc bgp_trie.hh dummy_main.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh ...dump_iterators.cc ...dump_iterators.hh ...exceptions.hh ...internal_message.cc ...internal_message.hh ...iptuple.cc ...iptuple.hh ...local_data.cc ...local_data.hh ...main.cc ...next_hop_resolver.cc ...next_hop_resolver.hh ...notification_packet.cc ...open_packet.cc ...packet.cc ...packet.hh ...parameter.cc ...parameter.hh ...path_attribute.cc ...path_attribute.hh ...peer.cc ...peer.hh ...peer_data.cc ...peer_data.hh ...peer_handler.cc ...peer_handler.hh ...peer_handler_debug.cc ...peer_handler_debug.hh ...peer_list.cc ...peer_list.hh ...peer_route_pair.hh ...plumbing.cc ...plumbing.hh ...process_watch.cc ...process_watch.hh ...rib_ipc_handler.cc ! ...rib_ipc_! handler.hh ...route_queue.cc ...route_queue.hh ...route_table_base.cc ...route_table_base.hh ...route_table_cache.cc ...route_table_cache.hh ...route_table_debug.cc ...route_table_debug.hh ...route_table_decision.cc ...route_table_decision.hh ...route_table_deletion.cc ...route_table_deletion.hh ...route_table_dump.cc ...route_table_dump.hh ...route_table_fanout.cc ...route_table_fanout.hh ...route_table_filter.cc ...route_table_filter.hh ...route_table_nhlookup.cc ...route_table_nhlookup.hh ...route_table_reader.cc ...route_table_reader.hh ...route_table_ribin.cc ...route_table_ribin.hh ...route_table_ribout.cc ...route_table_ribout.hh ...socket.cc ...socket.hh ...subnet_route.cc ...subnet_route.hh ...test_cache.cc ...test_decision.cc ...test_deletion.cc ...test_dump.cc ...test_fanout.cc ...test_filter.cc ...test_main.cc ...test_next_hop_resolver.cc ...test_next_hop_resolver.hh ...test_nhlookup.cc ...test_packet.cc ...test_packet.h! h ...test_packet_coding.cc ...test_peer_data.cc ...test_plu! mbing.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/tests/ Changes by: hodson@xorpc.icir.org. 04/06/10 15:42:19 Modified files: ./: LICENSE xorp/bgp/: aspath.cc aspath.hh aspath_test.cc attribute_manager.cc attribute_manager.hh bgp.cc bgp.hh bgp_module.h bgp_trie.cc bgp_trie.hh dummy_main.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh dump_iterators.cc dump_iterators.hh exceptions.hh internal_message.cc internal_message.hh iptuple.cc iptuple.hh local_data.cc local_data.hh main.cc next_hop_resolver.cc next_hop_resolver.hh notification_packet.cc open_packet.cc packet.cc packet.hh parameter.cc parameter.hh path_attribute.cc path_attribute.hh peer.cc peer.hh peer_data.cc peer_data.hh peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh peer_list.cc peer_list.hh peer_route_pair.hh plumbing.cc plumbing.hh process_watch.cc process_watch.hh rib_ipc_handler.cc rib_ipc_handler.hh route_queue.cc route_queue.hh route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_reader.cc route_table_reader.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh socket.cc socket.hh subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_next_hop_resolver.cc test_next_hop_resolver.hh test_nhlookup.cc test_packet.cc test_packet.hh test_packet_coding.cc test_peer_data.cc test_plumbing.cc test_plumbing.hh test_ribin.cc test_ribout.cc test_subnet_route.cc timer_const.hh update_attrib.cc update_attrib.hh update_packet.cc update_test.cc xrl_target.cc xrl_target.hh xorp/bgp/harness/: bgppp.cc bgppp.hh command.cc command.hh coord.cc coord.hh peer.cc peer.hh real_trie.hh test_peer.cc test_peer.hh test_trie.cc tokenize.hh trie.cc trie.hh trie_payload.hh xorp/bgp/tools/: bgptools_module.h print_peer.cc print_peer.hh print_peers.cc print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_peers.cc xorpsh_print_routes.cc xorp/cli/: cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_command_pipe.cc cli_command_pipe.hh cli_module.h cli_node.cc cli_node.hh cli_node_internal_commands.cc cli_node_net.cc cli_private.hh test_cli.cc xrl_cli_node.cc xrl_cli_node.hh xorp/cli/libtecla/: nettest_libtecla.c xorp/cli/tools/: send_cli_processor_xrl.cc xorp/contrib/ospfd/xorp/: ospf_config.C ospf_config.h ospf_module.h xrl_target.C xrl_target.h xorp/devnotes/: template.c template.cc template.h template.hh xorp/docs/papers/hotnets_2002_talk/: elements.mp elemfig.sty samp04_iprouter.mp xorp/fea/: addr_table.cc addr_table.hh click.cc click.hh click_glue.hh demo_fea_ifmgr_client.cc fea.cc fea_click.cc fea_module.h fte.hh fti_click.cc fti_click.hh fti_transaction.cc fti_transaction.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_parse_nlm.cc fticonfig_entry_parse_rtm.cc fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_parse_nlm.cc fticonfig_table_parse_rtm.cc fticonfig_table_set.cc fticonfig_table_set.hh fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_addr_table.cc ifconfig_addr_table.hh ifconfig_click.cc ifconfig_click.hh ifconfig_get.cc ifconfig_get.hh ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc ifmanager.hh ifmanager_transaction.cc ifmanager_transaction.hh iftree.cc iftree.hh kernel_utils.hh libfeaclient_bridge.cc libfeaclient_bridge.hh mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_kernel_messages.hh mfea_module.h mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_osdep.hh mfea_proto_comm.cc mfea_proto_comm.hh mfea_vif.cc mfea_vif.hh netlink_socket.cc netlink_socket.hh netlink_socket_utils.cc netlink_socket_utils.hh rawsock4.cc rawsock4.hh routing_socket.cc routing_socket.hh routing_socket_utils.cc routing_socket_utils.hh test_fea.cc test_fti.cc test_ifconfig_rtsock.cc test_ifmanager.cc test_ifmanager_transaction.cc test_mfea.cc test_rawsock4.cc test_xrl_sockets4_udp.cc xrl_fti.cc xrl_fti.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_mfea_node.cc xrl_mfea_node.hh xrl_rawsock4.cc xrl_rawsock4.hh xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh xrl_target.cc xrl_target.hh xorp/fea/click_elements/: forward1.cc forward1.hh forward2.cc forward2.hh ipv4address.hh rtable1.cc rtable1.hh rtable2.cc rtable2.hh trie.cc xorp/fea/tools/: show_interfaces.cc show_interfaces.hh xorp/fib2mrib/: fib2mrib_module.h fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh xorp/libcomm/: comm_module.h test_comm.c xorp/libfeaclient/: ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_base.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh libfeaclient_module.h overview.hh test_local_copy.cc test_remote_copy.cc xorp/libproto/: libproto_module.h proto_node.hh proto_node_cli.cc proto_node_cli.hh proto_register.cc proto_register.hh proto_state.cc proto_state.hh proto_unit.cc proto_unit.hh xorp/libxipc/: call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_observer.cc finder_client_observer.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_constants.hh finder_main.cc finder_messenger.cc finder_messenger.hh finder_module.h finder_msgs.cc finder_msgs.hh finder_server.cc finder_server.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh header.cc header.hh hmac.cc hmac.hh ipc_module.h permits.cc permits.hh sockutil.cc sockutil.hh test_finder.cc test_finder_events.cc test_finder_messenger.cc test_finder_msgs.cc test_finder_tcp.cc test_finder_to.cc test_header.cc test_inproc.cc test_lemming.cc test_stcp.cc test_stcppf.cc test_sudp.cc test_xrl.cc test_xrl_args.cc test_xrl_atom.cc test_xrl_error.cc test_xrl_parser.cc test_xrl_router.cc xrl.cc xrl.hh xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_atom_list.cc xrl_atom_list.hh xrl_cmd_map.cc xrl_cmd_map.hh xrl_dispatcher.cc xrl_dispatcher.hh xrl_error.cc xrl_error.hh xrl_module.h xrl_parser.cc xrl_parser.hh xrl_parser_input.cc xrl_parser_input.hh xrl_pf.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_sender.hh xrl_std_router.cc xrl_std_router.hh xrl_tokens.cc xrl_tokens.hh xuid.cc xuid.hh xorp/libxorp/: asnum.hh asyncio.cc asyncio.hh buffer.hh c_format.cc c_format.hh callback.cc callback.hh config_param.hh debug.c debug.h ether_compat.h eventloop.cc eventloop.hh exceptions.cc exceptions.hh heap.cc heap.hh ipnet.hh ipv4.cc ipv4.hh ipv4net.hh ipv6.cc ipv6.hh ipv6net.hh ipvx.cc ipvx.hh ipvxnet.hh libxorp_module.h mac.cc mac.hh minitraits.hh nexthop.cc nexthop.hh old_trie.hh ref_ptr.cc ref_ptr.hh ref_trie.hh safe_callback_obj.cc safe_callback_obj.hh selector.cc selector.hh service.cc service.hh status_codes.h test_asyncio.cc test_callback.cc test_config_param.cc test_ipnet.cc test_ipv4.cc test_ipv4net.cc test_ipv6.cc test_ipv6net.cc test_ipvx.cc test_ipvxnet.cc test_mac.cc test_main.hh test_observers.cc test_ref_ptr.cc test_ref_trie.cc test_service.cc test_test_main.cc test_time_slice.cc test_timer.cc test_timeval.cc test_trie.cc test_types.cc test_vif.cc time_slice.cc time_slice.hh timer.cc timer.hh timespent.hh timeval.hh token.cc token.hh transaction.cc transaction.hh trie.hh utility.c utility.h utils.hh vif.cc vif.hh xlog.c xlog.h xorp.h xorp/mibs/: bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_1657_bgpidentifier.cc bgp4_mib_1657_bgpidentifier.hh bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc bgp4_mib_1657_bgpversion.hh bgp4_mib_module.h bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh fixconfigs.h ospf_mib_1850.cc ospf_mib_1850.hh test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh xorp_if_module.h xorp_netsnmp_module.h xorpevents.cc xorpevents.hh xorp/mld6igmp/: igmp_proto.cc igmp_proto.h mld6_proto.cc mld6_proto.h mld6igmp_config.cc mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_module.h mld6igmp_node.cc mld6igmp_node.hh mld6igmp_node_cli.cc mld6igmp_node_cli.hh mld6igmp_private.hh mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xorp/mrt/: buffer.c buffer.h inet_cksum.c inet_cksum.h max_vifs.h mifset.cc mifset.hh mrib_table.cc mrib_table.hh mrt.hh mrt_module.h multicast_defs.h netstream_access.h test_mrib.cc test_mrt.cc xorp/mrt/include/: ip_mroute.h xorp/pim/: pim_bsr.cc pim_bsr.hh pim_config.cc pim_mfc.cc pim_mfc.hh pim_module.h pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_data.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_task.hh pim_mre_track_state.cc pim_mre_track_state.hh pim_mrib_table.cc pim_mrib_table.hh pim_mrt.cc pim_mrt.hh pim_mrt_mfc.cc pim_mrt_task.cc pim_nbr.cc pim_nbr.hh pim_node.cc pim_node.hh pim_node_cli.cc pim_node_cli.hh pim_private.hh pim_proto.h pim_proto_assert.cc pim_proto_assert.hh pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_graft_ack.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_proto_register.cc pim_proto_register_stop.cc pim_rp.cc pim_rp.hh pim_scope_zone_table.cc pim_scope_zone_table.hh pim_vif.cc pim_vif.hh test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xrl_pim_node.cc xrl_pim_node.hh xorp/policy/: action.cc action.hh from.cc from.hh policy_module.h policy_route.cc policy_route.hh statement.cc statement.hh term.cc term.hh test_policy.cc then.cc then.hh to.cc to.hh xorp/rib/: dummy_register_server.cc dummy_register_server.hh dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc main_routemap.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh protocol.cc protocol.hh redist_xrl.cc redist_xrl.hh register_server.cc register_server.hh rib.cc rib.hh rib_client.cc rib_client.hh rib_manager.cc rib_manager.hh rib_module.h route.hh routemap.cc routemap.hh rt_tab_base.cc rt_tab_base.hh rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_expect.cc rt_tab_expect.hh rt_tab_export.cc rt_tab_export.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_log.cc rt_tab_log.hh rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_origin.hh rt_tab_redist.cc rt_tab_redist.hh rt_tab_register.cc rt_tab_register.hh test_deletion.cc test_register.cc test_register_xrls.cc test_rib_client.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc xrl_target.hh xorp/rib/tools/: show_routes.cc xorp/rip/: auth.cc auth.hh constants.hh output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh packet_assembly.hh packet_queue.cc packet_queue.hh packets.hh peer.cc peer.hh port.cc port.hh port_io.hh port_manager.hh port_vars.hh redist.cc redist.hh rib_notifier_base.cc rib_notifier_base.hh rip_module.h route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh test_auth.cc test_outputs.cc test_packets.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc test_utils.hh update_queue.cc update_queue.hh xorp_rip_main.cc xrl_config.cc xrl_config.hh xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_redist_manager.cc xrl_redist_manager.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rip/tools/: common.cc common.hh rip_announcer.cc ripng_announcer.cc show_peer_stats.cc show_stats.cc xorp/rtrmgr/: cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh module_manager.cc module_manager.hh op_commands.cc op_commands.hh path_segment.hh popen.cc popen.hh randomness.cc randomness.hh rtrmgr_error.hh rtrmgr_module.h slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_module_manager.cc test_sample_config.cc test_templates.cc unexpanded_xrl.cc unexpanded_xrl.hh userdb.cc userdb.hh util.cc util.hh xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh xorp/static_routes/: static_routes_module.h static_routes_node.cc static_routes_node.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh xorp/utils/: runit.cc xorp/xrl/interfaces/: bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_fib_client_xif.cc fea_fib_client_xif.hh fea_fib_xif.cc fea_fib_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator_xif.cc fea_ifmgr_replicator_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh fib2mrib_xif.cc fib2mrib_xif.hh finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh pim_xif.cc pim_xif.hh redist4_xif.cc redist4_xif.hh redist6_xif.cc redist6_xif.hh redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6_xif.cc redist_transaction6_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rip_xif.cc rip_xif.hh ripng_xif.cc ripng_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh socket4_locator_xif.cc socket4_locator_xif.hh socket4_user_xif.cc socket4_user_xif.hh socket4_xif.cc socket4_xif.hh socket6_locator_xif.cc socket6_locator_xif.hh socket6_user_xif.cc socket6_user_xif.hh socket6_xif.cc socket6_xif.hh static_routes_xif.cc static_routes_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh xorp_if_mib_xif.cc xorp_if_mib_xif.hh xorp/xrl/scripts/Xif/: util.py xorp/xrl/targets/: bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh pim.xrls pim_base.cc pim_base.hh rib.xrls rib_base.cc rib_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh show_routes.xrls show_routes_base.cc show_routes_base.hh socket_server.xrls socket_server_base.cc socket_server_base.hh static_routes.xrls static_routes_base.cc static_routes_base.hh test.xrls test_base.cc test_base.hh test_fea_ifmgr_mirror.xrls test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh test_finder_events.xrls test_finder_events_base.cc test_finder_events_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh test_socket4.xrls test_socket4_base.cc test_socket4_base.hh test_socket6.xrls test_socket6_base.cc test_socket6_base.hh xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh xorp/xrl/tests/: test_generated.cc test_tgt.cc test_tgt.hh test_xifs.cc test_xifs.hh Log message: Update copyright date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 16:35:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 16:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ANa1NG096283 for ; Thu, 10 Jun 2004 16:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ANa1CJ016634 for ; Thu, 10 Jun 2004 16:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ANa1Ej014519; Thu, 10 Jun 2004 16:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ANZEEj014496 for ; Thu, 10 Jun 2004 16:35:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ANZECJ016628 for ; Thu, 10 Jun 2004 16:35:14 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ANZEgd002435 for ; Thu, 10 Jun 2004 16:35:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ANZERo002434; Thu, 10 Jun 2004 16:35:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406102335.i5ANZERo002434@xorpc.icir.org> Date: Thu, 10 Jun 2004 16:35:13 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/10 16:35:13 Modified files: xorp/rtrmgr/: op_commands.cc Log message: o Remove a redundant copy. Approved by: Pavlin, Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:56 2005 Subject: No subject Thu Jun 10 17:09:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 17:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0A1NG018977 for ; Thu, 10 Jun 2004 17:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0A1CJ016981 for ; Thu, 10 Jun 2004 17:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B0A0Ej015521; Thu, 10 Jun 2004 17:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B09MEj015507 for ; Thu, 10 Jun 2004 17:09:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B09MCJ016972 for ; Thu, 10 Jun 2004 17:09:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B09Mgd012356 for ; Thu, 10 Jun 2004 17:09:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B09Lo9012340; Thu, 10 Jun 2004 17:09:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406110009.i5B09Lo9012340@xorpc.icir.org> Date: Thu, 10 Jun 2004 17:09:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/tools/ Makefile.am Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/tools/ Changes by: pavlin@xorpc.icir.org. 04/06/10 17:09:21 Modified files: xorp/rib/tools/: Makefile.am Log message: Add XORP CVS tag at the beginning of the file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 17:09:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 17:10:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0A5NG019007 for ; Thu, 10 Jun 2004 17:10:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0A4CJ016985 for ; Thu, 10 Jun 2004 17:10:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B0A4Ej015536; Thu, 10 Jun 2004 17:10:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B09jEj015514 for ; Thu, 10 Jun 2004 17:09:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B09jCJ016975 for ; Thu, 10 Jun 2004 17:09:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B09jgd012458 for ; Thu, 10 Jun 2004 17:09:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B09jsE012457; Thu, 10 Jun 2004 17:09:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406110009.i5B09jsE012457@xorpc.icir.org> Date: Thu, 10 Jun 2004 17:09:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets/ socket_server.tgt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/06/10 17:09:45 Modified files: xorp/xrl/targets/: socket_server.tgt Log message: Add XORP CVS tag at the beginning. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 17:53:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 17:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0s1NG032209 for ; Thu, 10 Jun 2004 17:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0s1CJ017532 for ; Thu, 10 Jun 2004 17:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B0s1Ej016663; Thu, 10 Jun 2004 17:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B0rlEj016656 for ; Thu, 10 Jun 2004 17:53:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0rlCJ017530 for ; Thu, 10 Jun 2004 17:53:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B0rkgd030660 for ; Thu, 10 Jun 2004 17:53:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B0rkXx030659; Thu, 10 Jun 2004 17:53:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406110053.i5B0rkXx030659@xorpc.icir.org> Date: Thu, 10 Jun 2004 17:53:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/10 17:53:46 Modified files: xorp/rtrmgr/: task.cc Log message: Bug fix: Print "Expanding xrl" and "Executing XRL" in verbose mode only when the "do_exec() flag is true. Otherwise, it may appear that the same XRL is sent twice. Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 20:43:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 20:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3i1NG072196 for ; Thu, 10 Jun 2004 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3i1CJ019461 for ; Thu, 10 Jun 2004 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B3i1Ej020170; Thu, 10 Jun 2004 20:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B3hlEj020164 for ; Thu, 10 Jun 2004 20:43:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3hkCJ019456 for ; Thu, 10 Jun 2004 20:43:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3hkgd050549 for ; Thu, 10 Jun 2004 20:43:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B3hk6e050548; Thu, 10 Jun 2004 20:43:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406110343.i5B3hk6e050548@xorpc.icir.org> Date: Thu, 10 Jun 2004 20:43:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ pimsm4.tp pimsm6.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/10 20:43:46 Modified files: xorp/etc/templates/: pimsm4.tp pimsm6.tp Log message: Add missing %delete statements to static-rps/rp/group-prefix, bootstrap/cand-bsr, bootstrap/cand-rp. Approved by: Atanu _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 20:48:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 20:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3n1NG073177 for ; Thu, 10 Jun 2004 20:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3n1CJ019521 for ; Thu, 10 Jun 2004 20:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B3n1Ej020261; Thu, 10 Jun 2004 20:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B3mJEj020240 for ; Thu, 10 Jun 2004 20:48:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3mJCJ019514 for ; Thu, 10 Jun 2004 20:48:19 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B3mJgd050795 for ; Thu, 10 Jun 2004 20:48:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B3mJbv050794; Thu, 10 Jun 2004 20:48:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406110348.i5B3mJbv050794@xorpc.icir.org> Date: Thu, 10 Jun 2004 20:48:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ bgp.cmds xorp/rtrmgr/ cli.cc cli.hh op_commands.cc op_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/10 20:48:19 Modified files: xorp/etc/templates/: bgp.cmds xorp/rtrmgr/: cli.cc cli.hh op_commands.cc op_commands.hh Log message: When running an operational mode command start displaying output immediately. Previously output was only generated when the external program terminated. Also remove the restriction on bgp route commands that were only printing the first thousand lines of output. This fix has exposed another problem: interrupted commands are not killed; hence interrupted commands keep generating output. Add some kdoc comments, an oasis in a desert. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=56 Approved by: Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 21:52:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 21:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B4r1NG086600 for ; Thu, 10 Jun 2004 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B4r1CJ020171 for ; Thu, 10 Jun 2004 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B4r1Ej021486; Thu, 10 Jun 2004 21:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B4qLEj021468 for ; Thu, 10 Jun 2004 21:52:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B4qKCJ020157 for ; Thu, 10 Jun 2004 21:52:20 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B4qKgd054668 for ; Thu, 10 Jun 2004 21:52:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B4qKKF054665; Thu, 10 Jun 2004 21:52:20 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406110452.i5B4qKKF054665@xorpc.icir.org> Date: Thu, 10 Jun 2004 21:52:20 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/cli/ Changes by: atanu@xorpc.icir.org. 04/06/10 21:52:20 Modified files: xorp/cli/: cli_node_net.cc Log message: reinterpret_cast -> static_cast fixes a compilation problem on the Macs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 23:30:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 23:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6V1NG010931 for ; Thu, 10 Jun 2004 23:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6V0CJ021323 for ; Thu, 10 Jun 2004 23:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B6V0Ej023363; Thu, 10 Jun 2004 23:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B6UfEj023328 for ; Thu, 10 Jun 2004 23:30:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6UfCJ021318 for ; Thu, 10 Jun 2004 23:30:41 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6Uegd061069 for ; Thu, 10 Jun 2004 23:30:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B6Ue31061068; Thu, 10 Jun 2004 23:30:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406110630.i5B6Ue31061068@xorpc.icir.org> Date: Thu, 10 Jun 2004 23:30:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh op_commands.cc op_commands.hh popen.cc popen.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/10 23:30:40 Modified files: xorp/rtrmgr/: cli.cc cli.hh op_commands.cc op_commands.hh popen.cc popen.hh Log message: Install all the hooks so that when keyboard interrupts are propogated to the xorpsh cli we can terminate any outstanding operational commands. Get a handle to the operational command so if the user interrupts the xorpsh the command can be terminated. Modify popen2() to return the process ID so we can kill the process if required. Save the process ID in the OpInstance. Call pclose() so we don't leak file descriptors anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Thu Jun 10 23:35:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Jun 2004 23:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6a1NG011924 for ; Thu, 10 Jun 2004 23:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6a1CJ021386 for ; Thu, 10 Jun 2004 23:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B6a0Ej023603; Thu, 10 Jun 2004 23:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5B6ZDEj023583 for ; Thu, 10 Jun 2004 23:35:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6ZDCJ021379 for ; Thu, 10 Jun 2004 23:35:13 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5B6ZDgd061431 for ; Thu, 10 Jun 2004 23:35:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5B6ZD4E061430; Thu, 10 Jun 2004 23:35:13 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406110635.i5B6ZD4E061430@xorpc.icir.org> Date: Thu, 10 Jun 2004 23:35:13 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/10 23:35:13 Added files: ./: ERRATA Log message: Start the ERRATA process. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 14:17:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 14:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BLI1NG048043 for ; Fri, 11 Jun 2004 14:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BLI1CJ035098 for ; Fri, 11 Jun 2004 14:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BLI1gL015251; Fri, 11 Jun 2004 14:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BLHIgL015237 for ; Fri, 11 Jun 2004 14:17:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BLHICJ035089 for ; Fri, 11 Jun 2004 14:17:18 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BLHIgd020251 for ; Fri, 11 Jun 2004 14:17:18 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5BLHIU3020250; Fri, 11 Jun 2004 14:17:18 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406112117.i5BLHIU3020250@xorpc.icir.org> Date: Fri, 11 Jun 2004 14:17:18 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ vifmanager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/06/11 14:17:18 Modified files: xorp/rib/: vifmanager.cc Log message: Set interface name attribute of new vifs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 16:13:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 16:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNE1NG065571 for ; Fri, 11 Jun 2004 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNE1k4036513 for ; Fri, 11 Jun 2004 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNE0gL017946; Fri, 11 Jun 2004 16:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNDigL017936 for ; Fri, 11 Jun 2004 16:13:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNDik4036511 for ; Fri, 11 Jun 2004 16:13:44 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNDigd024138 for ; Fri, 11 Jun 2004 16:13:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5BNDiSG024137; Fri, 11 Jun 2004 16:13:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406112313.i5BNDiSG024137@xorpc.icir.org> Date: Fri, 11 Jun 2004 16:13:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xorp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/tools/ Changes by: atanu@xorpc.icir.org. 04/06/11 16:13:44 Modified files: other/testbed/tools/: xorp.sh Log message: Move the location of the testbed configuration files to a sub-directory of /usr/local/xorp. There was a clash as /usr/local/xorp is where XORP is installed by default. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 16:33:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 16:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNY1NG068654 for ; Fri, 11 Jun 2004 16:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNY1k4036709 for ; Fri, 11 Jun 2004 16:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNY1gL018304; Fri, 11 Jun 2004 16:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNXXgL018279 for ; Fri, 11 Jun 2004 16:33:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNXXk4036703 for ; Fri, 11 Jun 2004 16:33:33 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNXXgd024859 for ; Fri, 11 Jun 2004 16:33:33 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5BNXXcn024858; Fri, 11 Jun 2004 16:33:33 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406112333.i5BNXXcn024858@xorpc.icir.org> Date: Fri, 11 Jun 2004 16:33:33 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib_manager.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: hodson@xorpc.icir.org. 04/06/11 16:33:33 Modified files: xorp/rib/: rib_manager.cc Log message: Remove a cerr output. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 16:34:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 16:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNZ1NG068806 for ; Fri, 11 Jun 2004 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNZ0k4036730 for ; Fri, 11 Jun 2004 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNZ0gL018346; Fri, 11 Jun 2004 16:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNYDgL018322 for ; Fri, 11 Jun 2004 16:34:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNYDk4036713 for ; Fri, 11 Jun 2004 16:34:13 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNYCgd024902 for ; Fri, 11 Jun 2004 16:34:12 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5BNYCgO024901; Fri, 11 Jun 2004 16:34:12 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406112334.i5BNYCgO024901@xorpc.icir.org> Date: Fri, 11 Jun 2004 16:34:12 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/tools/ show_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/tools/ Changes by: hodson@xorpc.icir.org. 04/06/11 16:34:12 Modified files: xorp/rib/tools/: show_routes.cc Log message: Make error output more useful. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 16:34:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 16:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNZ2NG068825 for ; Fri, 11 Jun 2004 16:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNZ1k4036732 for ; Fri, 11 Jun 2004 16:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNZ1gL018357; Fri, 11 Jun 2004 16:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5BNYxgL018340 for ; Fri, 11 Jun 2004 16:34:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNYxk4036724 for ; Fri, 11 Jun 2004 16:34:59 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5BNYxgd024992 for ; Fri, 11 Jun 2004 16:34:59 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5BNYxrp024991; Fri, 11 Jun 2004 16:34:59 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406112334.i5BNYxrp024991@xorpc.icir.org> Date: Fri, 11 Jun 2004 16:34:59 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rib.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/06/11 16:34:59 Added files: xorp/etc/templates/: rib.cmds Log message: Add show route table xxx commands. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 17:29:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 17:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0U1NG077155 for ; Fri, 11 Jun 2004 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0U1k4037402 for ; Fri, 11 Jun 2004 17:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0U0gL019624; Fri, 11 Jun 2004 17:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0TBgL019607 for ; Fri, 11 Jun 2004 17:29:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0TBk4037387 for ; Fri, 11 Jun 2004 17:29:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0TBgd028336 for ; Fri, 11 Jun 2004 17:29:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C0TBVu028335; Fri, 11 Jun 2004 17:29:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120029.i5C0TBVu028335@xorpc.icir.org> Date: Fri, 11 Jun 2004 17:29:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc popen.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/11 17:29:11 Modified files: xorp/rtrmgr/: op_commands.cc popen.cc Log message: When forking a child to execute a command, set the child as a process group leader. Then, use killpg() to kill all processes in that child's group. Otherwise, because we fork a shell to execute the command, killing the shell itself won't kill the command itself. [Solution by Atanu] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 17:31:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0W1NG077532 for ; Fri, 11 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0W1k4037441 for ; Fri, 11 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0W1gL019663; Fri, 11 Jun 2004 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0VjgL019653 for ; Fri, 11 Jun 2004 17:31:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Vjk4037438 for ; Fri, 11 Jun 2004 17:31:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Vjgd028587 for ; Fri, 11 Jun 2004 17:31:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C0Vj54028586; Fri, 11 Jun 2004 17:31:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120031.i5C0Vj54028586@xorpc.icir.org> Date: Fri, 11 Jun 2004 17:31:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_command.hh cli_command.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/11 17:31:45 Modified files: xorp/cli/: cli_command.hh cli_command.cc Log message: Add support for specifying an interrupt callback to a command. That callback will be invoked whenever a command-in-progress is interrupted (e.g., by Ctrl-C). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 17:33:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 17:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Y1NG077848 for ; Fri, 11 Jun 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Y1k4037458 for ; Fri, 11 Jun 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0Y1gL019725; Fri, 11 Jun 2004 17:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0XwgL019708 for ; Fri, 11 Jun 2004 17:33:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Xwk4037456 for ; Fri, 11 Jun 2004 17:33:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0Xwgd028757 for ; Fri, 11 Jun 2004 17:33:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C0Xwmo028756; Fri, 11 Jun 2004 17:33:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120033.i5C0Xwmo028756@xorpc.icir.org> Date: Fri, 11 Jun 2004 17:33:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/11 17:33:58 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_node_net.cc Log message: Add support for interrupting a command that is still printing output and hasn't completed yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 17:37:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 17:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0c1NG078545 for ; Fri, 11 Jun 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0c1k4037533 for ; Fri, 11 Jun 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0c0gL019825; Fri, 11 Jun 2004 17:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0b6gL019806 for ; Fri, 11 Jun 2004 17:37:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0b5k4037526 for ; Fri, 11 Jun 2004 17:37:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0b5gd028981 for ; Fri, 11 Jun 2004 17:37:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C0b5O2028980; Fri, 11 Jun 2004 17:37:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120037.i5C0b5O2028980@xorpc.icir.org> Date: Fri, 11 Jun 2004 17:37:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc cli.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/11 17:37:05 Modified files: xorp/rtrmgr/: cli.cc cli.hh Log message: * Plug-in the hook to interrupt an operational command-in-progress * When an operational command is printing-in-progress, call CliCLient::flush_process_command_output() so the output will appear properly on the screen with a prompt at the end (when needed). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 17:51:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 17:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0q1NG080704 for ; Fri, 11 Jun 2004 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0q1k4037694 for ; Fri, 11 Jun 2004 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0q1gL020104; Fri, 11 Jun 2004 17:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C0pRgL020091 for ; Fri, 11 Jun 2004 17:51:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0pRk4037687 for ; Fri, 11 Jun 2004 17:51:27 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C0pRgd030229 for ; Fri, 11 Jun 2004 17:51:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C0pRnd030228; Fri, 11 Jun 2004 17:51:27 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406120051.i5C0pRnd030228@xorpc.icir.org> Date: Fri, 11 Jun 2004 17:51:27 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/tools/ xtvars.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/testbed/tools/ Changes by: atanu@xorpc.icir.org. 04/06/11 17:51:27 Modified files: other/testbed/tools/: xtvars.py Log message: Move the location of the testbed configuration files to a sub-directory of /usr/local/xorp. There was a clash as /usr/local/xorp is where XORP is installed by default. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 18:34:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 18:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1Z1NG093349 for ; Fri, 11 Jun 2004 18:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1Z1k4038194 for ; Fri, 11 Jun 2004 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1Z1gL020932; Fri, 11 Jun 2004 18:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1YCgL020908 for ; Fri, 11 Jun 2004 18:34:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1YBk4038181 for ; Fri, 11 Jun 2004 18:34:11 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1YBgd033729 for ; Fri, 11 Jun 2004 18:34:11 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C1YBao033728; Fri, 11 Jun 2004 18:34:11 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406120134.i5C1YBao033728@xorpc.icir.org> Date: Fri, 11 Jun 2004 18:34:11 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc op_commands.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/11 18:34:11 Modified files: xorp/rtrmgr/: op_commands.cc op_commands.hh Log message: Gather up all stderr output in one place and return it together when the operational command exits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 18:38:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 18:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1d1NG094067 for ; Fri, 11 Jun 2004 18:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1d1k4038255 for ; Fri, 11 Jun 2004 18:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1d0gL021028; Fri, 11 Jun 2004 18:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1cmgL021017 for ; Fri, 11 Jun 2004 18:38:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1cmk4038250 for ; Fri, 11 Jun 2004 18:38:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1cmgd034118 for ; Fri, 11 Jun 2004 18:38:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C1cmfl034117; Fri, 11 Jun 2004 18:38:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120138.i5C1cmfl034117@xorpc.icir.org> Date: Fri, 11 Jun 2004 18:38:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/11 18:38:48 Modified files: xorp/rtrmgr/: cli.cc Log message: Fix the command prompt if there is an error executing an operational command. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=74 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 18:55:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 18:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1u1NG002793 for ; Fri, 11 Jun 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1u1k4038466 for ; Fri, 11 Jun 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1u0gL021351; Fri, 11 Jun 2004 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C1tlgL021342 for ; Fri, 11 Jun 2004 18:55:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1tlk4038463 for ; Fri, 11 Jun 2004 18:55:47 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C1tlgd035318 for ; Fri, 11 Jun 2004 18:55:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C1tlJ0035316; Fri, 11 Jun 2004 18:55:47 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406120155.i5C1tlJ0035316@xorpc.icir.org> Date: Fri, 11 Jun 2004 18:55:47 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/06/11 18:55:47 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Log message: Add rib.cmds so it gets installed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:57 2005 Subject: No subject Fri Jun 11 20:35:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 20:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3a1NG018887 for ; Fri, 11 Jun 2004 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3a1k4039528 for ; Fri, 11 Jun 2004 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C3a0gL023020; Fri, 11 Jun 2004 20:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C3Z4gL022995 for ; Fri, 11 Jun 2004 20:35:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3Z4k4039501 for ; Fri, 11 Jun 2004 20:35:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3Z4gd041224 for ; Fri, 11 Jun 2004 20:35:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C3Z4DX041223; Fri, 11 Jun 2004 20:35:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120335.i5C3Z4DX041223@xorpc.icir.org> Date: Fri, 11 Jun 2004 20:35:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/11 20:35:04 Modified files: xorp/cli/: cli_client.cc cli_client.hh Log message: Fix the CLI output when the data is printed by multiple long strings. Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=75 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Fri Jun 11 20:53:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 20:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3s1NG021560 for ; Fri, 11 Jun 2004 20:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3s1k4039710 for ; Fri, 11 Jun 2004 20:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C3s1gL023297; Fri, 11 Jun 2004 20:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C3rOgL023281 for ; Fri, 11 Jun 2004 20:53:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3rOk4039700 for ; Fri, 11 Jun 2004 20:53:24 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C3rOgd042282 for ; Fri, 11 Jun 2004 20:53:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C3rO2D042281; Fri, 11 Jun 2004 20:53:24 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406120353.i5C3rO2D042281@xorpc.icir.org> Date: Fri, 11 Jun 2004 20:53:24 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ op_commands.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/11 20:53:24 Modified files: xorp/rtrmgr/: op_commands.cc Log message: Mac casting nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Fri Jun 11 22:41:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 22:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5g1NG037720 for ; Fri, 11 Jun 2004 22:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5g1k4040844 for ; Fri, 11 Jun 2004 22:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C5g1gL025219; Fri, 11 Jun 2004 22:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C5fugL025213 for ; Fri, 11 Jun 2004 22:41:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5fuk4040842 for ; Fri, 11 Jun 2004 22:41:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5ftgd054417 for ; Fri, 11 Jun 2004 22:41:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C5ftqY054416; Fri, 11 Jun 2004 22:41:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120541.i5C5ftqY054416@xorpc.icir.org> Date: Fri, 11 Jun 2004 22:41:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ ospf.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: pavlin@xorpc.icir.org. 04/06/11 22:41:55 Modified files: xorp/etc/templates/: ospf.tp Log message: Fix the path to the new location of the OSPF binary _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Fri Jun 11 22:50:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 22:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5p0NG039058 for ; Fri, 11 Jun 2004 22:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5p0k4040951 for ; Fri, 11 Jun 2004 22:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C5p0gL025430; Fri, 11 Jun 2004 22:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C5o2gL025395 for ; Fri, 11 Jun 2004 22:50:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5o2k4040925 for ; Fri, 11 Jun 2004 22:50:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C5o2gd054879 for ; Fri, 11 Jun 2004 22:50:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C5o2il054878; Fri, 11 Jun 2004 22:50:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120550.i5C5o2il054878@xorpc.icir.org> Date: Fri, 11 Jun 2004 22:50:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/11 22:50:02 Modified files: xorp/rtrmgr/: config.boot.sample Log message: * Use private IP addresses in the examples * Add the following sections (mostly multicast-related): static, mfea4, mfea6, igmp, mld, pimsm4, pimsm6, fib2mrib * Add some extra sample configuration elsewhere _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Fri Jun 11 23:25:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Jun 2004 23:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C6Q1NG044209 for ; Fri, 11 Jun 2004 23:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C6Q1k4041364 for ; Fri, 11 Jun 2004 23:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C6Q1gL026049; Fri, 11 Jun 2004 23:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5C6PdgL026038 for ; Fri, 11 Jun 2004 23:25:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C6Pck4041360 for ; Fri, 11 Jun 2004 23:25:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5C6Pcgd056793 for ; Fri, 11 Jun 2004 23:25:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5C6PcxI056792; Fri, 11 Jun 2004 23:25:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406120625.i5C6PcxI056792@xorpc.icir.org> Date: Fri, 11 Jun 2004 23:25:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/11 23:25:38 Modified files: xorp/pim/: README Log message: Add information about required kernel options (for FreeBSD and Linux) to run PIM-SM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 6:20:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 06:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CDL1NG010813 for ; Sat, 12 Jun 2004 06:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CDL1k4048893 for ; Sat, 12 Jun 2004 06:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CDL0gL004704; Sat, 12 Jun 2004 06:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CDKpgL004698 for ; Sat, 12 Jun 2004 06:20:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CDKpk4048889 for ; Sat, 12 Jun 2004 06:20:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CDKpgd086888 for ; Sat, 12 Jun 2004 06:20:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CDKpdL086887; Sat, 12 Jun 2004 06:20:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121320.i5CDKpdL086887@xorpc.icir.org> Date: Sat, 12 Jun 2004 6:20:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_base.hh route_table_deletion.hh route_table_filter.hh route_table_ribin.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/06/12 06:20:51 Modified files: xorp/bgp/: route_table_base.hh route_table_deletion.hh route_table_filter.hh route_table_ribin.hh Log message: Add kdoc comments. No changes to code itself. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 7:50:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 07:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEp1NG024218 for ; Sat, 12 Jun 2004 07:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEp1k4050038 for ; Sat, 12 Jun 2004 07:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CEp0gL006148; Sat, 12 Jun 2004 07:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CEoLgL006135 for ; Sat, 12 Jun 2004 07:50:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEoLk4050032 for ; Sat, 12 Jun 2004 07:50:21 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEoLgd092640 for ; Sat, 12 Jun 2004 07:50:21 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CEoLta092639; Sat, 12 Jun 2004 07:50:21 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406121450.i5CEoLta092639@xorpc.icir.org> Date: Sat, 12 Jun 2004 7:50:20 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rib.cmds xorp/rib/tools/ show_routes.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/tools/ Changes by: hodson@xorpc.icir.org. 04/06/12 07:50:20 Modified files: xorp/etc/templates/: rib.cmds xorp/rib/tools/: show_routes.cc Log message: Fix typos (including show incoming syntax that was not supposed to be there). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 7:52:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 07:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEr1NG024509 for ; Sat, 12 Jun 2004 07:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEr1k4050056 for ; Sat, 12 Jun 2004 07:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CEr1gL006205; Sat, 12 Jun 2004 07:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CEqGgL006177 for ; Sat, 12 Jun 2004 07:52:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEqFk4050050 for ; Sat, 12 Jun 2004 07:52:15 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CEqFgd092846 for ; Sat, 12 Jun 2004 07:52:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CEqFXj092845; Sat, 12 Jun 2004 07:52:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121452.i5CEqFXj092845@xorpc.icir.org> Date: Sat, 12 Jun 2004 7:52:15 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ patch_generic other/LiveCD/files/ patch_generic_freebsd4.10 patch_generic_freebsd4.9 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/12 07:52:15 Modified files: other/LiveCD/files/: patch_generic Added files: other/LiveCD/files/: patch_generic_freebsd4.10 patch_generic_freebsd4.9 Log message: Update kernel build patch to work with FreeBSD 4.10. Preserve version that works with FreeBSD 4.9 in case anyone needs it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 8:02:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 08:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CF31NG026016 for ; Sat, 12 Jun 2004 08:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CF31k4050201 for ; Sat, 12 Jun 2004 08:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CF30gL006387; Sat, 12 Jun 2004 08:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CF2SgL006376 for ; Sat, 12 Jun 2004 08:02:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CF2Sk4050196 for ; Sat, 12 Jun 2004 08:02:28 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CF2Rgd093506 for ; Sat, 12 Jun 2004 08:02:27 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CF2Rw2093505; Sat, 12 Jun 2004 08:02:27 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121502.i5CF2Rw2093505@xorpc.icir.org> Date: Sat, 12 Jun 2004 8:02:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_cache.hh route_table_decision.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/06/12 08:02:27 Modified files: xorp/bgp/: route_table_cache.hh route_table_decision.hh Log message: More kdoc comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 9:51:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 09:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGq1NG043532 for ; Sat, 12 Jun 2004 09:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGq1k4052689 for ; Sat, 12 Jun 2004 09:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGq0gL008078; Sat, 12 Jun 2004 09:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGpHgL008062 for ; Sat, 12 Jun 2004 09:51:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGpGk4052684 for ; Sat, 12 Jun 2004 09:51:16 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGpGgd000561 for ; Sat, 12 Jun 2004 09:51:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CGpGOR000560; Sat, 12 Jun 2004 09:51:16 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121651.i5CGpGOR000560@xorpc.icir.org> Date: Sat, 12 Jun 2004 9:51:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ motd Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/12 09:51:16 Modified files: other/LiveCD/files/: motd Log message: Don't duplicate XORP login msg. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 9:52:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 09:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGr1NG043691 for ; Sat, 12 Jun 2004 09:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGr1k4052705 for ; Sat, 12 Jun 2004 09:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGr1gL008105; Sat, 12 Jun 2004 09:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGqMgL008094 for ; Sat, 12 Jun 2004 09:52:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGqMk4052699 for ; Sat, 12 Jun 2004 09:52:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGqMgd000647 for ; Sat, 12 Jun 2004 09:52:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CGqMJG000646; Sat, 12 Jun 2004 09:52:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121652.i5CGqMJG000646@xorpc.icir.org> Date: Sat, 12 Jun 2004 9:52:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ xorp_load.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/12 09:52:22 Modified files: other/LiveCD/files/: xorp_load.py Log message: Improved diagnostic messages. Run sync after saving a file, because otherwise we sometimes end up with truncated files on the floppy. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 9:53:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 09:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGs1NG043850 for ; Sat, 12 Jun 2004 09:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGs0k4052712 for ; Sat, 12 Jun 2004 09:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGs0gL008132; Sat, 12 Jun 2004 09:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CGrLgL008121 for ; Sat, 12 Jun 2004 09:53:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGrLk4052710 for ; Sat, 12 Jun 2004 09:53:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CGrLgd000714 for ; Sat, 12 Jun 2004 09:53:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CGrLoq000713; Sat, 12 Jun 2004 09:53:21 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406121653.i5CGrLoq000713@xorpc.icir.org> Date: Sat, 12 Jun 2004 9:53:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files/ patch_master.passwd Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/06/12 09:53:21 Modified files: other/LiveCD/files/: patch_master.passwd Log message: Set the xorp user's home directory to be /etc rather than /usr/local/etc because that's where we load the xorp config file from. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Sat Jun 12 14:38:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Jun 2004 14:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CLd1NG092852 for ; Sat, 12 Jun 2004 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CLd1k4055978 for ; Sat, 12 Jun 2004 14:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CLd0gL013003; Sat, 12 Jun 2004 14:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5CLcQgL012994 for ; Sat, 12 Jun 2004 14:38:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CLcQk4055973 for ; Sat, 12 Jun 2004 14:38:26 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5CLcQgd010737 for ; Sat, 12 Jun 2004 14:38:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5CLcQHG010736; Sat, 12 Jun 2004 14:38:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406122138.i5CLcQHG010736@xorpc.icir.org> Date: Sat, 12 Jun 2004 14:38:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/ Changes by: mjh@xorpc.icir.org. 04/06/12 14:38:26 Modified files: other/LiveCD/: livecd.sh Log message: Temporary solution to DNS on LiveCD: hardwire one ICIR and one UCL nameserver. Ideally we should be able to configure nameserver info through the XORP CLI. Probably we can live with the hardwired addresses for now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Mon Jun 14 12:27:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EJS1NG047567 for ; Mon, 14 Jun 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EJS1k4094549 for ; Mon, 14 Jun 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EJS1gL006887; Mon, 14 Jun 2004 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EJRJgL006862 for ; Mon, 14 Jun 2004 12:27:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EJRJk4094541 for ; Mon, 14 Jun 2004 12:27:19 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EJRJgd068310 for ; Mon, 14 Jun 2004 12:27:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5EJRJlq068309; Mon, 14 Jun 2004 12:27:19 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406141927.i5EJRJlq068309@xorpc.icir.org> Date: Mon, 14 Jun 2004 12:27:19 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/14 12:27:19 Modified files: ./: RELEASE_NOTES Log message: Updated the release notes for 1.0RC; ALL, BGP and SNMP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Mon Jun 14 14:44:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 14:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELk1NG078016 for ; Mon, 14 Jun 2004 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELk1k4096525 for ; Mon, 14 Jun 2004 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELk1gL010529; Mon, 14 Jun 2004 14:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELjEgL010490 for ; Mon, 14 Jun 2004 14:45:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELiqk4096487 for ; Mon, 14 Jun 2004 14:44:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELipgd073267 for ; Mon, 14 Jun 2004 14:44:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ELip68073266; Mon, 14 Jun 2004 14:44:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142144.i5ELip68073266@xorpc.icir.org> Date: Mon, 14 Jun 2004 14:44:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 14:44:51 Modified files: ./: ERRATA Log message: Add various errata information. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:58 2005 Subject: No subject Mon Jun 14 14:46:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 14:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELl1NG078242 for ; Mon, 14 Jun 2004 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELl0k4096550 for ; Mon, 14 Jun 2004 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELl0gL010596; Mon, 14 Jun 2004 14:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELk2gL010538 for ; Mon, 14 Jun 2004 14:46:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELk2k4096527 for ; Mon, 14 Jun 2004 14:46:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELk2gd073357 for ; Mon, 14 Jun 2004 14:46:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ELk2Hj073356; Mon, 14 Jun 2004 14:46:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142146.i5ELk2Hj073356@xorpc.icir.org> Date: Mon, 14 Jun 2004 14:46:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 14:46:02 Modified files: ./: BUILD_NOTES Log message: * Update the information for FreeBSD and OpenBSD * Move the known problems section from Section 4 to the new file xorp/ERRATA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 14:47:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 14:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELm1NG078488 for ; Mon, 14 Jun 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELm1k4096572 for ; Mon, 14 Jun 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELm1gL010632; Mon, 14 Jun 2004 14:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELlqgL010620 for ; Mon, 14 Jun 2004 14:47:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELlpk4096566 for ; Mon, 14 Jun 2004 14:47:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELlpgd073443 for ; Mon, 14 Jun 2004 14:47:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ELlpue073442; Mon, 14 Jun 2004 14:47:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406142147.i5ELlpue073442@xorpc.icir.org> Date: Mon, 14 Jun 2004 14:47:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/images/livecd/ Changes by: mjh@xorpc.icir.org. 04/06/14 14:47:51 www/images/livecd Update of /usr/local/share/doc/apache/cvs/www/images/livecd In directory xorpc.icir.org:/tmp/cvs-serv73436/livecd Log Message: Directory /usr/local/share/doc/apache/cvs/www/images/livecd added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 14:48:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 14:49:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELn0NG078731 for ; Mon, 14 Jun 2004 14:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELn0k4096590 for ; Mon, 14 Jun 2004 14:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELn0gL010665; Mon, 14 Jun 2004 14:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELmggL010659 for ; Mon, 14 Jun 2004 14:48:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELmgk4096584 for ; Mon, 14 Jun 2004 14:48:42 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELmggd073491 for ; Mon, 14 Jun 2004 14:48:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ELmgvP073490; Mon, 14 Jun 2004 14:48:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406142148.i5ELmgvP073490@xorpc.icir.org> Date: Mon, 14 Jun 2004 14:48:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/06/14 14:48:42 Modified files: ./: livecd.html Log message: Update LiveCD web pages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 14:49:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 14:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELo1NG078970 for ; Mon, 14 Jun 2004 14:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELo1k4096613 for ; Mon, 14 Jun 2004 14:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELo1gL010709; Mon, 14 Jun 2004 14:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ELn1gL010677 for ; Mon, 14 Jun 2004 14:49:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELn1k4096594 for ; Mon, 14 Jun 2004 14:49:01 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ELn1gd073519 for ; Mon, 14 Jun 2004 14:49:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ELn109073518; Mon, 14 Jun 2004 14:49:01 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406142149.i5ELn109073518@xorpc.icir.org> Date: Mon, 14 Jun 2004 14:49:01 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/images/livecd/ cd1.gif cd2.gif cd3.gif cd4.gif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/images/livecd/ Changes by: mjh@xorpc.icir.org. 04/06/14 14:49:01 Added files: www/images/livecd/: cd1.gif cd2.gif cd3.gif cd4.gif Log message: Add images of startup process _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 15:04:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 15:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EM51NG082323 for ; Mon, 14 Jun 2004 15:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EM51k4096813 for ; Mon, 14 Jun 2004 15:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EM51gL011093; Mon, 14 Jun 2004 15:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EM4AgL011070 for ; Mon, 14 Jun 2004 15:04:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EM49k4096804 for ; Mon, 14 Jun 2004 15:04:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EM49gd074055 for ; Mon, 14 Jun 2004 15:04:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5EM49mX074054; Mon, 14 Jun 2004 15:04:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406142204.i5EM49mX074054@xorpc.icir.org> Date: Mon, 14 Jun 2004 15:04:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/14 15:04:09 Modified files: ./: ERRATA Log message: BGP is slow to populate the kernel routing table. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 15:24:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 15:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMP1NG086824 for ; Mon, 14 Jun 2004 15:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMP0k4097086 for ; Mon, 14 Jun 2004 15:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EMP0gL011641; Mon, 14 Jun 2004 15:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EMOpgL011633 for ; Mon, 14 Jun 2004 15:24:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMOpk4097079 for ; Mon, 14 Jun 2004 15:24:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMOpgd074768 for ; Mon, 14 Jun 2004 15:24:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5EMOpFl074767; Mon, 14 Jun 2004 15:24:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406142224.i5EMOpFl074767@xorpc.icir.org> Date: Mon, 14 Jun 2004 15:24:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ BUGS Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/14 15:24:51 Modified files: xorp/bgp/: BUGS Log message: Look in Bugzilla not here. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 15:29:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 15:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMU0NG087947 for ; Mon, 14 Jun 2004 15:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMU0k4097158 for ; Mon, 14 Jun 2004 15:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EMU0gL011800; Mon, 14 Jun 2004 15:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5EMTWgL011787 for ; Mon, 14 Jun 2004 15:29:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMTWk4097150 for ; Mon, 14 Jun 2004 15:29:32 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5EMTWgd074989 for ; Mon, 14 Jun 2004 15:29:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5EMTWu8074988; Mon, 14 Jun 2004 15:29:32 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406142229.i5EMTWu8074988@xorpc.icir.org> Date: Mon, 14 Jun 2004 15:29:32 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/06/14 15:29:32 Modified files: xorp/bgp/: README Log message: Update status and known problems. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:25:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENQ1NG000186 for ; Mon, 14 Jun 2004 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENQ1k4098001 for ; Mon, 14 Jun 2004 16:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENQ1gL013231; Mon, 14 Jun 2004 16:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENPXgL013213 for ; Mon, 14 Jun 2004 16:25:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENPXk4097998 for ; Mon, 14 Jun 2004 16:25:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENPXgd076964 for ; Mon, 14 Jun 2004 16:25:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENPXM5076963; Mon, 14 Jun 2004 16:25:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142325.i5ENPXM5076963@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:25:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:25:33 Modified files: ./: BUILD_NOTES Log message: Update the build notes for MacOS X (using information from Atanu). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:29:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENU1NG001043 for ; Mon, 14 Jun 2004 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENU1k4098055 for ; Mon, 14 Jun 2004 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENU1gL013344; Mon, 14 Jun 2004 16:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENTdgL013331 for ; Mon, 14 Jun 2004 16:29:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENTck4098049 for ; Mon, 14 Jun 2004 16:29:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENTcgd077145 for ; Mon, 14 Jun 2004 16:29:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENTcAc077144; Mon, 14 Jun 2004 16:29:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142329.i5ENTcAc077144@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:29:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:29:38 Modified files: ./: RELEASE_NOTES Log message: * Add/update the text for most of the entries for 1.0RC. * Add new entries for STATIC_ROUTES and FIB2MRIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:32:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENX1NG001725 for ; Mon, 14 Jun 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENX1k4098106 for ; Mon, 14 Jun 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENX1gL013430; Mon, 14 Jun 2004 16:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENWNgL013414 for ; Mon, 14 Jun 2004 16:32:23 -0700 (PDT) Received: from [192.150.187.86] (wol.icir.org [192.150.187.86]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENWNk4098100; Mon, 14 Jun 2004 16:32:23 -0700 (PDT) (envelope-from orion@icir.org) In-Reply-To: <200406142325.i5ENPXM5076963@xorpc.icir.org> References: <200406142325.i5ENPXM5076963@xorpc.icir.org> Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <15FDB0E5-BE5B-11D8-897C-000A95DA7C7A@icir.org> Content-Transfer-Encoding: 7bit Cc: xorp-cvs@icir.org From: Orion Hodson Subject: Re: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Date: Mon, 14 Jun 2004 16:32:22 -0700 To: pavlin@icir.org X-Mailer: Apple Mail (2.618) Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Jun 14, 2004, at 16:25, Pavlin Radoslavov wrote: > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Repository: ./ > Changes by: pavlin@xorpc.icir.org. 04/06/14 16:25:33 > > Modified files: > ./: BUILD_NOTES > > Log message: > Update the build notes for MacOS X (using information from Atanu). This says the regression tests pass. This was not my experience today: ******************* Command: ../xorp_bgp exited status: 0 295 /Users/orion/src/xorp/bgp/harness/test_terminate.sh: Tests Succeeded SIGTERM received. Exiting. Leaving /Users/orion/src/xorp/bgp/harness/test_terminate.sh -l -t test1 PASS: test_terminate.sh =================== 3 of 9 tests failed =================== _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:35:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:36:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENa0NG002381 for ; Mon, 14 Jun 2004 16:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENa0k4098164 for ; Mon, 14 Jun 2004 16:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENa0gL013550; Mon, 14 Jun 2004 16:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENZKgL013537 for ; Mon, 14 Jun 2004 16:35:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENZKk4098155 for ; Mon, 14 Jun 2004 16:35:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENZKgd077469 for ; Mon, 14 Jun 2004 16:35:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENZK6o077468; Mon, 14 Jun 2004 16:35:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142335.i5ENZK6o077468@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:35:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:35:20 Modified files: ./: BUILD_NOTES Log message: Update the status for MacOS X to reflect the fact that some of the internal tests may fail. [Based on information from Orion] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:37:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENc1NG002825 for ; Mon, 14 Jun 2004 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENc1k4098193 for ; Mon, 14 Jun 2004 16:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENc1gL013610; Mon, 14 Jun 2004 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENb6gL013592 for ; Mon, 14 Jun 2004 16:37:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENb5k4098178 for ; Mon, 14 Jun 2004 16:37:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENb5gd077576 for ; Mon, 14 Jun 2004 16:37:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENb5vJ077575; Mon, 14 Jun 2004 16:37:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142337.i5ENb5vJ077575@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:37:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:37:05 Modified files: ./: ERRATA Log message: Add entries for STATIC_ROUTES and FIB2MRIB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:42:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENh0NG003943 for ; Mon, 14 Jun 2004 16:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENh0k4098275 for ; Mon, 14 Jun 2004 16:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENh0gL013746; Mon, 14 Jun 2004 16:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENgKgL013717 for ; Mon, 14 Jun 2004 16:42:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENgKk4098263 for ; Mon, 14 Jun 2004 16:42:20 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENgJgd077842 for ; Mon, 14 Jun 2004 16:42:19 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENgJB2077841; Mon, 14 Jun 2004 16:42:19 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406142342.i5ENgJB2077841@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:42:19 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/14 16:42:19 Modified files: ./: RELEASE_NOTES Log message: Tweak. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:57:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENw1NG007140 for ; Mon, 14 Jun 2004 16:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENw1k4098520 for ; Mon, 14 Jun 2004 16:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENw0gL014152; Mon, 14 Jun 2004 16:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENvAgL014130 for ; Mon, 14 Jun 2004 16:57:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENvAk4098518 for ; Mon, 14 Jun 2004 16:57:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENvAgd078808 for ; Mon, 14 Jun 2004 16:57:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENvABj078807; Mon, 14 Jun 2004 16:57:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142357.i5ENvABj078807@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:57:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:57:10 Modified files: ./: RELEASE_NOTES Log message: Move the RIP entry upfront so the unicast routing protocols are together. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 16:58:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENx1NG007385 for ; Mon, 14 Jun 2004 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENx0k4098535 for ; Mon, 14 Jun 2004 16:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENx0gL014186; Mon, 14 Jun 2004 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ENw4gL014166 for ; Mon, 14 Jun 2004 16:58:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENw4k4098524 for ; Mon, 14 Jun 2004 16:58:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ENw4gd078900 for ; Mon, 14 Jun 2004 16:58:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ENw4M7078898; Mon, 14 Jun 2004 16:58:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406142358.i5ENw4M7078898@xorpc.icir.org> Date: Mon, 14 Jun 2004 16:58:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 16:58:04 Modified files: ./: ERRATA Log message: * Move the RIP entry upfront so the unicast routing protocols are together. * Add an extra empty line between sub-bullets (for consistency with RELEASE_NOTES). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:06:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F071NG009150 for ; Mon, 14 Jun 2004 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F071k4098684 for ; Mon, 14 Jun 2004 17:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F071gL014365; Mon, 14 Jun 2004 17:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F06tgL014355 for ; Mon, 14 Jun 2004 17:06:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F06tk4098681 for ; Mon, 14 Jun 2004 17:06:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F06tgd079630 for ; Mon, 14 Jun 2004 17:06:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F06t9c079629; Mon, 14 Jun 2004 17:06:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150006.i5F06t9c079629@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:06:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:06:55 Modified files: ./: README Log message: * Update the list of gcc compilers on FreeBSD. * Update the BGP spec that is implemented: draft-22 -> draft-23 * Add a reference to ${XORP}/ERRATA. * Add a new entry for RIP and RIPng to the list of the implemented protocols (currently the entry is empty). * Remove the paragraph which says that the XORP code should be used only for studying the architecture and running simple tests. * Add entries for the following directories: contrib, contrib/ospfd, fib2mrib, and static_routes. * Move the entry for the rip directory upfront, and remove the statement that it is work in progress. * Renove "IPv6 support" froh the list of short-term TODO entries, because we have it already. * Add an entry for the xorp-announce@xorp.org mailing list. * Add a brief description for each XORP mailing list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:14:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0F1NG010898 for ; Mon, 14 Jun 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0F1k4098806 for ; Mon, 14 Jun 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0F0gL014598; Mon, 14 Jun 2004 17:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0EagL014567 for ; Mon, 14 Jun 2004 17:14:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Eak4098797 for ; Mon, 14 Jun 2004 17:14:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Eagd080412 for ; Mon, 14 Jun 2004 17:14:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0Ea5G080411; Mon, 14 Jun 2004 17:14:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150014.i5F0Ea5G080411@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:14:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:14:36 Modified files: xorp/cli/: README Log message: * Remove the telnet-related info * Minor cleanup. * Update the date to June 2004. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:16:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0H1NG011376 for ; Mon, 14 Jun 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0H1k4098864 for ; Mon, 14 Jun 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0H0gL014666; Mon, 14 Jun 2004 17:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0GZgL014635 for ; Mon, 14 Jun 2004 17:16:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0GZk4098850 for ; Mon, 14 Jun 2004 17:16:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0GYgd080631 for ; Mon, 14 Jun 2004 17:16:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0GYcb080630; Mon, 14 Jun 2004 17:16:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150016.i5F0GYcb080630@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:16:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mibs/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:16:34 Modified files: xorp/mibs/: README Log message: Split a long line into two _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:17:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0I1NG011636 for ; Mon, 14 Jun 2004 17:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0I1k4098886 for ; Mon, 14 Jun 2004 17:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0I1gL014717; Mon, 14 Jun 2004 17:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0HvgL014707 for ; Mon, 14 Jun 2004 17:17:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Huk4098883 for ; Mon, 14 Jun 2004 17:17:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Hugd080832 for ; Mon, 14 Jun 2004 17:17:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0HuLG080831; Mon, 14 Jun 2004 17:17:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150017.i5F0HuLG080831@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:17:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libfeaclient/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:17:56 Modified files: xorp/libfeaclient/: README Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:19:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0K1NG012162 for ; Mon, 14 Jun 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0K0k4098925 for ; Mon, 14 Jun 2004 17:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0K0gL014775; Mon, 14 Jun 2004 17:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0JVgL014760 for ; Mon, 14 Jun 2004 17:19:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0JUk4098912 for ; Mon, 14 Jun 2004 17:19:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0JUgd080994 for ; Mon, 14 Jun 2004 17:19:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0JUjx080993; Mon, 14 Jun 2004 17:19:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150019.i5F0JUjx080993@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:19:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/deprecated/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/deprecated/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:19:30 Modified files: xorp/devnotes/deprecated/: README Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:13:59 2005 Subject: No subject Mon Jun 14 17:21:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L2NG012418 for ; Mon, 14 Jun 2004 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L2k4098960 for ; Mon, 14 Jun 2004 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0L1gL014816; Mon, 14 Jun 2004 17:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0L0gL014806 for ; Mon, 14 Jun 2004 17:21:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L0k4098956 for ; Mon, 14 Jun 2004 17:21:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L0gd081174 for ; Mon, 14 Jun 2004 17:21:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0L02H081173; Mon, 14 Jun 2004 17:21:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150021.i5F0L02H081173@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:21:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/historic/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/historic/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:21:00 Modified files: xorp/docs/historic/: README Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:21:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0M1NG012680 for ; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0M1k4098991 for ; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0M1gL014848; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0L1gL014812 for ; Mon, 14 Jun 2004 17:21:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L1k4098958 for ; Mon, 14 Jun 2004 17:21:01 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0L1gd081192 for ; Mon, 14 Jun 2004 17:21:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0L1U3081191; Mon, 14 Jun 2004 17:21:01 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406150021.i5F0L1U3081191@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:21:01 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/14 17:21:01 Modified files: xorp/rtrmgr/: config.boot.sample Log message: For BGP comment out optional statements and add some comments. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:22:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0N1NG012926 for ; Mon, 14 Jun 2004 17:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0N1k4099013 for ; Mon, 14 Jun 2004 17:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0N1gL014887; Mon, 14 Jun 2004 17:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0M1gL014849 for ; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0M1k4098989 for ; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0M1gd081324 for ; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0M1Wp081323; Mon, 14 Jun 2004 17:22:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150022.i5F0M1Wp081323@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:22:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mk/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mk/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:22:01 Modified files: xorp/docs/mk/: README Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:31:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0W1NG014933 for ; Mon, 14 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0W1k4099120 for ; Mon, 14 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0W0gL015093; Mon, 14 Jun 2004 17:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0VKgL015070 for ; Mon, 14 Jun 2004 17:31:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0V8k4099110 for ; Mon, 14 Jun 2004 17:31:08 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0V8gd082152 for ; Mon, 14 Jun 2004 17:31:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0V8LV082151; Mon, 14 Jun 2004 17:31:08 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406150031.i5F0V8LV082151@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:31:08 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/14 17:31:08 Modified files: xorp/rtrmgr/: config.boot.sample Log message: For BGP enabled defaults to true for a peering so comment it out. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:31:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0W2NG014960 for ; Mon, 14 Jun 2004 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0W2k4099123 for ; Mon, 14 Jun 2004 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0W2gL015104; Mon, 14 Jun 2004 17:32:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0VugL015087 for ; Mon, 14 Jun 2004 17:31:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Vtk4099116 for ; Mon, 14 Jun 2004 17:31:55 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Vtgd082334 for ; Mon, 14 Jun 2004 17:31:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0VtBk082333; Mon, 14 Jun 2004 17:31:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406150031.i5F0VtBk082333@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:31:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ rip.tp ripng.tp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: hodson@xorpc.icir.org. 04/06/14 17:31:55 Modified files: xorp/etc/templates/: rip.tp ripng.tp Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:32:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0X1NG015183 for ; Mon, 14 Jun 2004 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0X1k4099152 for ; Mon, 14 Jun 2004 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0X0gL015142; Mon, 14 Jun 2004 17:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0WggL015133 for ; Mon, 14 Jun 2004 17:32:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Wgk4099143 for ; Mon, 14 Jun 2004 17:32:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0Wggd082448 for ; Mon, 14 Jun 2004 17:32:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0Wf68082445; Mon, 14 Jun 2004 17:32:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150032.i5F0Wf68082445@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:32:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:32:41 Modified files: xorp/fea/: README.mfea Log message: Update the status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:36:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0b1NG016118 for ; Mon, 14 Jun 2004 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0b1k4099214 for ; Mon, 14 Jun 2004 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0b1gL015272; Mon, 14 Jun 2004 17:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0afgL015264 for ; Mon, 14 Jun 2004 17:36:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0aek4099209 for ; Mon, 14 Jun 2004 17:36:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0aegd082931 for ; Mon, 14 Jun 2004 17:36:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0aeTA082930; Mon, 14 Jun 2004 17:36:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150036.i5F0aeTA082930@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:36:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:36:40 Modified files: xorp/libxipc/: README Log message: Add "#" in the header in front of the XORP CVS tag (for consistency with the rest of the README files). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:38:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0d1NG016560 for ; Mon, 14 Jun 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0d1k4099246 for ; Mon, 14 Jun 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0d1gL015315; Mon, 14 Jun 2004 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0cngL015305 for ; Mon, 14 Jun 2004 17:38:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0cnk4099243 for ; Mon, 14 Jun 2004 17:38:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0cngd083210 for ; Mon, 14 Jun 2004 17:38:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0cnkD083209; Mon, 14 Jun 2004 17:38:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150038.i5F0cnkD083209@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:38:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:38:49 Modified files: xorp/fea/: README.mfea Log message: Nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:40:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0f1NG017036 for ; Mon, 14 Jun 2004 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0f0k4099291 for ; Mon, 14 Jun 2004 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0f0gL015387; Mon, 14 Jun 2004 17:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0ehgL015378 for ; Mon, 14 Jun 2004 17:40:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0ehk4099286 for ; Mon, 14 Jun 2004 17:40:43 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0ehgd083417 for ; Mon, 14 Jun 2004 17:40:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0ehxH083416; Mon, 14 Jun 2004 17:40:43 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406150040.i5F0ehxH083416@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:40:43 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/14 17:40:43 Modified files: xorp/rtrmgr/: config.boot.sample Log message: Reorder some BGP peer configuration statements and comment out some that have reasonable defaults. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:41:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0g1NG017267 for ; Mon, 14 Jun 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0g1k4099312 for ; Mon, 14 Jun 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0g1gL015426; Mon, 14 Jun 2004 17:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0fjgL015417 for ; Mon, 14 Jun 2004 17:41:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0fjk4099309 for ; Mon, 14 Jun 2004 17:41:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0fjgd083531 for ; Mon, 14 Jun 2004 17:41:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0fjFa083530; Mon, 14 Jun 2004 17:41:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150041.i5F0fjFa083530@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:41:45 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:41:45 Modified files: xorp/mld6igmp/: README Log message: Remove the date in the status section, because it is not needed anymore. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:52:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0r1NG019600 for ; Mon, 14 Jun 2004 17:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0r1k4099450 for ; Mon, 14 Jun 2004 17:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0r1gL015702; Mon, 14 Jun 2004 17:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0qYgL015687 for ; Mon, 14 Jun 2004 17:52:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0qXk4099443 for ; Mon, 14 Jun 2004 17:52:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0qXgd084604 for ; Mon, 14 Jun 2004 17:52:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0qXDC084603; Mon, 14 Jun 2004 17:52:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150052.i5F0qXDC084603@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:52:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:52:33 Modified files: xorp/pim/: README Log message: * Refactor the text related to the PIM support in the kernel. * Update the date to June 2004. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:00 2005 Subject: No subject Mon Jun 14 17:54:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0t1NG020043 for ; Mon, 14 Jun 2004 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0t1k4099490 for ; Mon, 14 Jun 2004 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0t1gL015770; Mon, 14 Jun 2004 17:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0sMgL015757 for ; Mon, 14 Jun 2004 17:54:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0sMk4099474 for ; Mon, 14 Jun 2004 17:54:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0sMgd084779 for ; Mon, 14 Jun 2004 17:54:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0sMtR084778; Mon, 14 Jun 2004 17:54:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150054.i5F0sMtR084778@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:54:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/contrib/ospfd/patches/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/contrib/ospfd/patches/ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:54:22 Modified files: xorp/contrib/ospfd/patches/: README Log message: Add a header with the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Mon Jun 14 17:58:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 17:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0x1NG020988 for ; Mon, 14 Jun 2004 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0x1k4099552 for ; Mon, 14 Jun 2004 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0x1gL015887; Mon, 14 Jun 2004 17:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F0wfgL015876 for ; Mon, 14 Jun 2004 17:58:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0wfk4099549 for ; Mon, 14 Jun 2004 17:58:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F0wfgd085224 for ; Mon, 14 Jun 2004 17:58:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F0wfYg085223; Mon, 14 Jun 2004 17:58:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150058.i5F0wfYg085223@xorpc.icir.org> Date: Mon, 14 Jun 2004 17:58:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 17:58:41 Modified files: ./: ERRATA Log message: Add an entry that some of the design docs may not be up-to-date for this release candidate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Mon Jun 14 19:22:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 19:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F2N1NG039277 for ; Mon, 14 Jun 2004 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F2N1k4000886 for ; Mon, 14 Jun 2004 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F2N1gL017866; Mon, 14 Jun 2004 19:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F2MMgL017849 for ; Mon, 14 Jun 2004 19:22:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F2MMk4000875 for ; Mon, 14 Jun 2004 19:22:22 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F2MMgd092382 for ; Mon, 14 Jun 2004 19:22:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F2MMSR092381; Mon, 14 Jun 2004 19:22:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406150222.i5F2MMSR092381@xorpc.icir.org> Date: Mon, 14 Jun 2004 19:22:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/14 19:22:22 Modified files: ./: livecd.html Log message: Linux -> FreeBSD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Mon Jun 14 20:09:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F3A1NG055288 for ; Mon, 14 Jun 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F3A1k4001589 for ; Mon, 14 Jun 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F3A0gL018836; Mon, 14 Jun 2004 20:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F39igL018825 for ; Mon, 14 Jun 2004 20:09:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F39hk4001582 for ; Mon, 14 Jun 2004 20:09:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F39hgd095274 for ; Mon, 14 Jun 2004 20:09:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F39hEE095273; Mon, 14 Jun 2004 20:09:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150309.i5F39hEE095273@xorpc.icir.org> Date: Mon, 14 Jun 2004 20:09:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/14 20:09:43 Modified files: xorp/rtrmgr/: config.boot.sample Log message: * Comment-out parameters in the PIM-SM section that have value same as the default. * Spacing nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Mon Jun 14 22:54:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 22:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F5t1NG091081 for ; Mon, 14 Jun 2004 22:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F5t1k4004191 for ; Mon, 14 Jun 2004 22:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F5t1gL022177; Mon, 14 Jun 2004 22:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F5sWgL022168 for ; Mon, 14 Jun 2004 22:54:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F5sVk4004179 for ; Mon, 14 Jun 2004 22:54:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F5sVgd004518 for ; Mon, 14 Jun 2004 22:54:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F5sV8L004517; Mon, 14 Jun 2004 22:54:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150554.i5F5sV8L004517@xorpc.icir.org> Date: Mon, 14 Jun 2004 22:54:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 22:54:31 Modified files: ./: getting_started.html Log message: Added a new section "Configuring XORP". [Co-work with Atanu] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Mon Jun 14 23:03:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Jun 2004 23:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F641NG093046 for ; Mon, 14 Jun 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F641k4004352 for ; Mon, 14 Jun 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F641gL022467; Mon, 14 Jun 2004 23:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5F632gL022440 for ; Mon, 14 Jun 2004 23:03:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F632k4004342 for ; Mon, 14 Jun 2004 23:03:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5F632gd005092 for ; Mon, 14 Jun 2004 23:03:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5F632mn005091; Mon, 14 Jun 2004 23:03:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406150603.i5F632mn005091@xorpc.icir.org> Date: Mon, 14 Jun 2004 23:03:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/14 23:03:02 Modified files: ./: RELEASE_NOTES Log message: Update the release date from June 14 to June 15 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 9:13:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 09:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGE1NG010190 for ; Tue, 15 Jun 2004 09:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGE1k4015566 for ; Tue, 15 Jun 2004 09:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FGE1gL009139; Tue, 15 Jun 2004 09:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FGDRgL009115 for ; Tue, 15 Jun 2004 09:13:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGDRk4015564 for ; Tue, 15 Jun 2004 09:13:27 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGDQgd051084 for ; Tue, 15 Jun 2004 09:13:26 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FGDQxQ051083; Tue, 15 Jun 2004 09:13:26 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406151613.i5FGDQxQ051083@xorpc.icir.org> Date: Tue, 15 Jun 2004 9:13:26 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ config.boot.sample Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: hodson@xorpc.icir.org. 04/06/15 09:13:26 Modified files: xorp/rtrmgr/: config.boot.sample Log message: Remove RIP per address configuration options from the example - the defaults are intended to be sane. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 9:19:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 09:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGK1NG011244 for ; Tue, 15 Jun 2004 09:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGK1k4015660 for ; Tue, 15 Jun 2004 09:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FGK1gL009323; Tue, 15 Jun 2004 09:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FGJwgL009317 for ; Tue, 15 Jun 2004 09:19:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGJvk4015654 for ; Tue, 15 Jun 2004 09:19:57 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FGJvgd051526 for ; Tue, 15 Jun 2004 09:19:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FGJvF7051525; Tue, 15 Jun 2004 09:19:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406151619.i5FGJvF7051525@xorpc.icir.org> Date: Tue, 15 Jun 2004 9:19:57 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/15 09:19:57 Modified files: ./: getting_started.html Log message: Sync with config.boot.sample. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 10:38:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 10:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FHd1NG030930 for ; Tue, 15 Jun 2004 10:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FHd1k4016786 for ; Tue, 15 Jun 2004 10:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FHd1gL011576; Tue, 15 Jun 2004 10:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FHc9gL011550 for ; Tue, 15 Jun 2004 10:38:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FHc9k4016774 for ; Tue, 15 Jun 2004 10:38:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FHc9gd056095 for ; Tue, 15 Jun 2004 10:38:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FHc9oQ056094; Tue, 15 Jun 2004 10:38:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406151738.i5FHc9oQ056094@xorpc.icir.org> Date: Tue, 15 Jun 2004 10:38:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/15 10:38:09 Modified files: ./: ERRATA Log message: It is a fatal error to BGP if the RIB fails to delete a route. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 11:08:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 11:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FI91NG036736 for ; Tue, 15 Jun 2004 11:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FI91k4017197 for ; Tue, 15 Jun 2004 11:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FI90gL012587; Tue, 15 Jun 2004 11:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FI8rgL012577 for ; Tue, 15 Jun 2004 11:08:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FI8rk4017194 for ; Tue, 15 Jun 2004 11:08:53 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FI8rgd057558 for ; Tue, 15 Jun 2004 11:08:53 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FI8rvI057557; Tue, 15 Jun 2004 11:08:53 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406151808.i5FI8rvI057557@xorpc.icir.org> Date: Tue, 15 Jun 2004 11:08:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: atanu@xorpc.icir.org. 04/06/15 11:08:53 Modified files: ./: livecd.html Log message: The Live CD is now available update the page and make the link. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 12:10:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 12:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJB1NG050252 for ; Tue, 15 Jun 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJB1k4018093 for ; Tue, 15 Jun 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJB1gL014442; Tue, 15 Jun 2004 12:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJAngL014435 for ; Tue, 15 Jun 2004 12:10:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJAnk4018086 for ; Tue, 15 Jun 2004 12:10:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJAmgd060105 for ; Tue, 15 Jun 2004 12:10:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FJAmLQ060104; Tue, 15 Jun 2004 12:10:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406151910.i5FJAmLQ060104@xorpc.icir.org> Date: Tue, 15 Jun 2004 12:10:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 04/06/15 12:10:48 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Remove the "Version 1.0" line from the modification history, because the document hasn't been updated yet to the lastest 09 I-D. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 12:16:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 12:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJH1NG051585 for ; Tue, 15 Jun 2004 12:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJH1k4018180 for ; Tue, 15 Jun 2004 12:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJH0gL014632; Tue, 15 Jun 2004 12:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJG3gL014615 for ; Tue, 15 Jun 2004 12:16:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJG2k4018165 for ; Tue, 15 Jun 2004 12:16:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJG2gd060366 for ; Tue, 15 Jun 2004 12:16:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FJG2PA060365; Tue, 15 Jun 2004 12:16:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406151916.i5FJG2PA060365@xorpc.icir.org> Date: Tue, 15 Jun 2004 12:16:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/15 12:16:02 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: Update the xorpsh guide: - Add info about the new command "create" - Modify sample output examples to reflect the current output - Few minor nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 12:17:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 12:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJI1NG051823 for ; Tue, 15 Jun 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJI1k4018202 for ; Tue, 15 Jun 2004 12:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJI1gL014681; Tue, 15 Jun 2004 12:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJHKgL014656 for ; Tue, 15 Jun 2004 12:17:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJHKk4018185 for ; Tue, 15 Jun 2004 12:17:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJHKgd060453 for ; Tue, 15 Jun 2004 12:17:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FJHKX1060452; Tue, 15 Jun 2004 12:17:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406151917.i5FJHKX1060452@xorpc.icir.org> Date: Tue, 15 Jun 2004 12:17:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea xorp/mld6igmp/ README xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/15 12:17:20 Modified files: xorp/fea/: README.mfea xorp/mld6igmp/: README xorp/pim/: README Log message: Add the URL to the XORP configuration guide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 12:20:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 12:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJL1NG052529 for ; Tue, 15 Jun 2004 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJL1k4018273 for ; Tue, 15 Jun 2004 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJL1gL014802; Tue, 15 Jun 2004 12:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FJKbgL014784 for ; Tue, 15 Jun 2004 12:20:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJKbk4018267 for ; Tue, 15 Jun 2004 12:20:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FJKbgd060605 for ; Tue, 15 Jun 2004 12:20:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FJKbug060604; Tue, 15 Jun 2004 12:20:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406151920.i5FJKbug060604@xorpc.icir.org> Date: Tue, 15 Jun 2004 12:20:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 12:20:37 Modified files: ./: README Log message: Add the URL to the XORP configuration guide. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:26:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKR1NG066860 for ; Tue, 15 Jun 2004 13:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKR1k4019066 for ; Tue, 15 Jun 2004 13:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKR0gL016493; Tue, 15 Jun 2004 13:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKQ5gL016455 for ; Tue, 15 Jun 2004 13:26:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKQ4k4019059 for ; Tue, 15 Jun 2004 13:26:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKQ4gd063188 for ; Tue, 15 Jun 2004 13:26:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKQ4dN063187; Tue, 15 Jun 2004 13:26:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152026.i5FKQ4dN063187@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:26:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:26:04 Modified files: xorp/docs/rtrmgr/: xorpsh_userguide.tex Log message: 1.0RC -> 1.0-RC _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:31:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKW1NG068032 for ; Tue, 15 Jun 2004 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKW1k4019139 for ; Tue, 15 Jun 2004 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKW1gL016660; Tue, 15 Jun 2004 13:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKV7gL016635 for ; Tue, 15 Jun 2004 13:31:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKV6k4019128 for ; Tue, 15 Jun 2004 13:31:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKV6gd063508 for ; Tue, 15 Jun 2004 13:31:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKV6tm063507; Tue, 15 Jun 2004 13:31:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152031.i5FKV6tm063507@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:31:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:31:06 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: Fix kdoc compilation issues: add libfeaclient where missing, and compile it before fea. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:31:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKW2NG068059 for ; Tue, 15 Jun 2004 13:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKW2k4019141 for ; Tue, 15 Jun 2004 13:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKW1gL016671; Tue, 15 Jun 2004 13:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKVigL016652 for ; Tue, 15 Jun 2004 13:31:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKVik4019134 for ; Tue, 15 Jun 2004 13:31:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKVigd063573 for ; Tue, 15 Jun 2004 13:31:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKViGJ063572; Tue, 15 Jun 2004 13:31:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152031.i5FKViGJ063572@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:31:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:31:44 Modified files: xorp/docs/: index.html Log message: Update the version and date for the xorpsh document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:32:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKX1NG068285 for ; Tue, 15 Jun 2004 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKX1k4019171 for ; Tue, 15 Jun 2004 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKX1gL016741; Tue, 15 Jun 2004 13:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKWLgL016691 for ; Tue, 15 Jun 2004 13:32:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKWLk4019152 for ; Tue, 15 Jun 2004 13:32:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKWLgd063638 for ; Tue, 15 Jun 2004 13:32:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKWLx0063637; Tue, 15 Jun 2004 13:32:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152032.i5FKWLx0063637@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:32:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:32:21 Modified files: xorp/docs/: status.html Log message: Update date and status. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:35:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKa1NG068963 for ; Tue, 15 Jun 2004 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKa0k4019239 for ; Tue, 15 Jun 2004 13:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKa0gL016843; Tue, 15 Jun 2004 13:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKZ6gL016821 for ; Tue, 15 Jun 2004 13:35:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKZ6k4019225 for ; Tue, 15 Jun 2004 13:35:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKZ5gd063751 for ; Tue, 15 Jun 2004 13:35:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKZ5h7063750; Tue, 15 Jun 2004 13:35:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152035.i5FKZ5h7063750@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:35:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:35:05 Modified files: ./: README Log message: Update the status of the release candidate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:01 2005 Subject: No subject Tue Jun 15 13:35:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKa1NG068978 for ; Tue, 15 Jun 2004 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKa1k4019241 for ; Tue, 15 Jun 2004 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKa1gL016854; Tue, 15 Jun 2004 13:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKZbgL016835 for ; Tue, 15 Jun 2004 13:35:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKZak4019230 for ; Tue, 15 Jun 2004 13:35:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKZagd063806 for ; Tue, 15 Jun 2004 13:35:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKZa8p063805; Tue, 15 Jun 2004 13:35:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152035.i5FKZa8p063805@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:35:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:35:36 Modified files: ./: VERSION configure configure.in Log message: Set the version to 1.0-RC _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:36:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKb1NG069216 for ; Tue, 15 Jun 2004 13:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKb0k4019263 for ; Tue, 15 Jun 2004 13:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKb0gL016883; Tue, 15 Jun 2004 13:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKadgL016874 for ; Tue, 15 Jun 2004 13:36:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKadk4019261 for ; Tue, 15 Jun 2004 13:36:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKacgd063873 for ; Tue, 15 Jun 2004 13:36:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKacx2063872; Tue, 15 Jun 2004 13:36:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152036.i5FKacx2063872@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:36:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:36:38 Modified files: ./: news.html Log message: Add a news item for the 1.0 Release Candidate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:37:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKc1NG069464 for ; Tue, 15 Jun 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKc1k4019285 for ; Tue, 15 Jun 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKc1gL016933; Tue, 15 Jun 2004 13:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKbDgL016899 for ; Tue, 15 Jun 2004 13:37:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKbDk4019271 for ; Tue, 15 Jun 2004 13:37:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKbDgd063942 for ; Tue, 15 Jun 2004 13:37:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKbCso063941; Tue, 15 Jun 2004 13:37:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152037.i5FKbCso063941@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:37:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:37:12 Modified files: ./: downloads.html Log message: Add a download entry for the 1.0 Release Candidate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:38:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKd1NG069711 for ; Tue, 15 Jun 2004 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKd1k4019316 for ; Tue, 15 Jun 2004 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKd1gL016980; Tue, 15 Jun 2004 13:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKd0gL016974 for ; Tue, 15 Jun 2004 13:39:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKcxk4019314 for ; Tue, 15 Jun 2004 13:38:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKcxgd064067 for ; Tue, 15 Jun 2004 13:38:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKcxER064066; Tue, 15 Jun 2004 13:38:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152038.i5FKcxER064066@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:38:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:38:59 Modified files: ./: index.html Log message: * Update the 1.0 release date to June 2004 * Update the status * Add a news item for the 1.0 Release Candidate, and remove the "Countdown to release 1.0" news item _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:44:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKj1NG071010 for ; Tue, 15 Jun 2004 13:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKj1k4019413 for ; Tue, 15 Jun 2004 13:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKj1gL017121; Tue, 15 Jun 2004 13:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKiwgL017115 for ; Tue, 15 Jun 2004 13:44:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKiwk4019408 for ; Tue, 15 Jun 2004 13:44:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKiwgd064322 for ; Tue, 15 Jun 2004 13:44:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKiwmE064321; Tue, 15 Jun 2004 13:44:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152044.i5FKiwmE064321@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:44:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:44:58 Modified files: ./: getting_started.html Log message: Modify the link to config.boot.sample to be in the docs subdirectory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:45:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:46:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKk0NG071254 for ; Tue, 15 Jun 2004 13:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKk0k4019446 for ; Tue, 15 Jun 2004 13:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKk0gL017147; Tue, 15 Jun 2004 13:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKjtgL017140 for ; Tue, 15 Jun 2004 13:45:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKjtk4019443 for ; Tue, 15 Jun 2004 13:45:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKjtgd064412 for ; Tue, 15 Jun 2004 13:45:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKjtHH064411; Tue, 15 Jun 2004 13:45:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152045.i5FKjtHH064411@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:45:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:45:55 Modified files: xorp/devnotes/: release_process.txt Log message: Modify step 2400 to copy ../rtrmgr/config.boot.sample to the docs subdirectory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:50:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKp1NG072366 for ; Tue, 15 Jun 2004 13:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKp1k4019548 for ; Tue, 15 Jun 2004 13:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKp0gL017314; Tue, 15 Jun 2004 13:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKo7gL017289 for ; Tue, 15 Jun 2004 13:50:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKo7k4019531 for ; Tue, 15 Jun 2004 13:50:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKo7gd064620 for ; Tue, 15 Jun 2004 13:50:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKo7af064619; Tue, 15 Jun 2004 13:50:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152050.i5FKo7af064619@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:50:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/06/15 13:50:07 Modified files: xorp/devnotes/: release_process.txt Log message: Update step 2200 with info when this step can be skipped. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 13:56:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 13:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKv1NG073688 for ; Tue, 15 Jun 2004 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKv0k4019684 for ; Tue, 15 Jun 2004 13:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKv0gL017490; Tue, 15 Jun 2004 13:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FKuqgL017483 for ; Tue, 15 Jun 2004 13:56:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKuqk4019682 for ; Tue, 15 Jun 2004 13:56:52 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FKuqgd064923 for ; Tue, 15 Jun 2004 13:56:52 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FKuqQm064922; Tue, 15 Jun 2004 13:56:52 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406152056.i5FKuqQm064922@xorpc.icir.org> Date: Tue, 15 Jun 2004 13:56:52 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README xorp/docs/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: hodson@xorpc.icir.org. 04/06/15 13:56:52 Modified files: ./: README xorp/docs/: status.html Log message: Update. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 14:24:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 14:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLP1NG079884 for ; Tue, 15 Jun 2004 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLP0k4020100 for ; Tue, 15 Jun 2004 14:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLP0gL018224; Tue, 15 Jun 2004 14:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLOMgL018204 for ; Tue, 15 Jun 2004 14:24:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLOMk4020084 for ; Tue, 15 Jun 2004 14:24:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLOLgd066073 for ; Tue, 15 Jun 2004 14:24:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FLOLUT066072; Tue, 15 Jun 2004 14:24:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152124.i5FLOLUT066072@xorpc.icir.org> Date: Tue, 15 Jun 2004 14:24:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/slides/ .cvsignore Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/slides/ Changes by: pavlin@xorpc.icir.org. 04/06/15 14:24:21 Added files: xorp/docs/slides/: .cvsignore Makefile.am Makefile.in Log message: Added missing files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 14:25:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 14:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLQ1NG080124 for ; Tue, 15 Jun 2004 14:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLQ0k4020141 for ; Tue, 15 Jun 2004 14:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLQ0gL018263; Tue, 15 Jun 2004 14:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLPSgL018254 for ; Tue, 15 Jun 2004 14:25:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLPSk4020131 for ; Tue, 15 Jun 2004 14:25:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLPSgd066170 for ; Tue, 15 Jun 2004 14:25:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FLPS7A066169; Tue, 15 Jun 2004 14:25:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152125.i5FLPS7A066169@xorpc.icir.org> Date: Tue, 15 Jun 2004 14:25:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 14:25:28 Modified files: ./: configure.in configure Log message: Add docs/slides/Makefile to the list of files to generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 14:27:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 14:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLT1NG080798 for ; Tue, 15 Jun 2004 14:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLT1k4020182 for ; Tue, 15 Jun 2004 14:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLT0gL018344; Tue, 15 Jun 2004 14:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5FLS5gL018313 for ; Tue, 15 Jun 2004 14:28:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLRvk4020172 for ; Tue, 15 Jun 2004 14:27:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5FLRvgd066256 for ; Tue, 15 Jun 2004 14:27:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5FLRv67066255; Tue, 15 Jun 2004 14:27:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406152127.i5FLRv67066255@xorpc.icir.org> Date: Tue, 15 Jun 2004 14:27:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/06/15 14:27:57 Modified files: xorp/devnotes/: release_process.txt Log message: Tweak to the note in step 2200 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Tue Jun 15 22:37:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Jun 2004 22:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5G5c1NG002910 for ; Tue, 15 Jun 2004 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5G5c1k4026729 for ; Tue, 15 Jun 2004 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5G5c1gL029498; Tue, 15 Jun 2004 22:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5G5b6gL029486 for ; Tue, 15 Jun 2004 22:37:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5G5b6k4026717 for ; Tue, 15 Jun 2004 22:37:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5G5b6gd095949 for ; Tue, 15 Jun 2004 22:37:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5G5b6ih095948; Tue, 15 Jun 2004 22:37:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406160537.i5G5b6ih095948@xorpc.icir.org> Date: Tue, 15 Jun 2004 22:37:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/15 22:37:06 Modified files: ./: BUILD_NOTES Log message: Correct the OpenBSD build error message. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 12:10:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 12:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GJB1NG060561 for ; Wed, 16 Jun 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GJB1Mx000401 for ; Wed, 16 Jun 2004 12:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GJB1pZ020654; Wed, 16 Jun 2004 12:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GJAPpZ020628 for ; Wed, 16 Jun 2004 12:10:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GJAOMx000393 for ; Wed, 16 Jun 2004 12:10:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GJAOgd053482 for ; Wed, 16 Jun 2004 12:10:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5GJAO5n053480; Wed, 16 Jun 2004 12:10:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406161910.i5GJAO5n053480@xorpc.icir.org> Date: Wed, 16 Jun 2004 12:10:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 12:10:24 Modified files: ./: index.html Log message: Fix the 1.0 RC news date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 13:56:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 13:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKv1NG081648 for ; Wed, 16 Jun 2004 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKv1Mx001683 for ; Wed, 16 Jun 2004 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GKv1pZ023539; Wed, 16 Jun 2004 13:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GKuBpZ023524 for ; Wed, 16 Jun 2004 13:56:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKuBMx001676 for ; Wed, 16 Jun 2004 13:56:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKuBgd057545 for ; Wed, 16 Jun 2004 13:56:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5GKuBug057544; Wed, 16 Jun 2004 13:56:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406162056.i5GKuBug057544@xorpc.icir.org> Date: Wed, 16 Jun 2004 13:56:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 13:56:11 Modified files: ./: livecd.html Log message: Remove commented-out text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 13:57:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 13:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKw1NG081847 for ; Wed, 16 Jun 2004 13:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKw1Mx001709 for ; Wed, 16 Jun 2004 13:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GKw1pZ023582; Wed, 16 Jun 2004 13:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GKvqpZ023573 for ; Wed, 16 Jun 2004 13:57:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKvqMx001705 for ; Wed, 16 Jun 2004 13:57:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GKvqgd057613 for ; Wed, 16 Jun 2004 13:57:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5GKvqjI057612; Wed, 16 Jun 2004 13:57:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406162057.i5GKvqjI057612@xorpc.icir.org> Date: Wed, 16 Jun 2004 13:57:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 13:57:52 Modified files: ./: index.html Log message: * Move the 1.0-RC link to the top of the page, and add the LiveCD link too. [Suggestion by Orion and Atanu] * Remove commented-out text _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 14:32:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 14:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GLX1NG088697 for ; Wed, 16 Jun 2004 14:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GLX1Mx002145 for ; Wed, 16 Jun 2004 14:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GLX1pZ024529; Wed, 16 Jun 2004 14:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5GLWupZ024522 for ; Wed, 16 Jun 2004 14:32:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GLWtMx002143 for ; Wed, 16 Jun 2004 14:32:55 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5GLWtgd058731 for ; Wed, 16 Jun 2004 14:32:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5GLWtpI058730; Wed, 16 Jun 2004 14:32:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406162132.i5GLWtpI058730@xorpc.icir.org> Date: Wed, 16 Jun 2004 14:32:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/16 14:32:55 Modified files: ./: index.html Log message: Minor presentation tweaks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 20:58:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 20:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3x1NG076778 for ; Wed, 16 Jun 2004 20:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3x1Mx006628 for ; Wed, 16 Jun 2004 20:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H3x1pZ004166; Wed, 16 Jun 2004 20:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H3wJpZ004150 for ; Wed, 16 Jun 2004 20:58:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3wJMx006623 for ; Wed, 16 Jun 2004 20:58:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3wJgd082097 for ; Wed, 16 Jun 2004 20:58:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H3wJ1g082096; Wed, 16 Jun 2004 20:58:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170358.i5H3wJ1g082096@xorpc.icir.org> Date: Wed, 16 Jun 2004 20:58:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 ./ config.h.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 20:58:19 Modified files: xorp/config/: acipv6.m4 ./: config.h.in configure Log message: Add a check whether netinet6/nd6.h is C++ friendly, and define HAVE_BROKEN_CXX_NETINET6_ND6_H if not. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 20:59:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 21:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H401NG076983 for ; Wed, 16 Jun 2004 21:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H400Mx006643 for ; Wed, 16 Jun 2004 21:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H400pZ004191; Wed, 16 Jun 2004 21:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H3x7pZ004178 for ; Wed, 16 Jun 2004 20:59:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3x6Mx006632 for ; Wed, 16 Jun 2004 20:59:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H3x6gd082142 for ; Wed, 16 Jun 2004 20:59:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H3x6TR082141; Wed, 16 Jun 2004 20:59:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170359.i5H3x6TR082141@xorpc.icir.org> Date: Wed, 16 Jun 2004 20:59:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ ifconfig_set_ioctl.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/16 20:59:06 Modified files: xorp/fea/: ifconfig_set_ioctl.cc Log message: Use #ifdef HAVE_BROKEN_CXX_NETINET6_ND6_H to apply the hack needed if is not C++ friendly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 22:20:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 22:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5L1NG092539 for ; Wed, 16 Jun 2004 22:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5L1Mx007599 for ; Wed, 16 Jun 2004 22:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5L1pZ005681; Wed, 16 Jun 2004 22:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5KqpZ005674 for ; Wed, 16 Jun 2004 22:20:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5KqMx007595 for ; Wed, 16 Jun 2004 22:20:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Kqgd086925 for ; Wed, 16 Jun 2004 22:20:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H5KqZ0086924; Wed, 16 Jun 2004 22:20:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170520.i5H5KqZ0086924@xorpc.icir.org> Date: Wed, 16 Jun 2004 22:20:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 22:20:52 Modified files: ./: BUILD_NOTES Log message: Remove an OpenBSD-related related regarding a compilation glitch that has been fixed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 22:33:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 22:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Y1NG095048 for ; Wed, 16 Jun 2004 22:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Y1Mx007799 for ; Wed, 16 Jun 2004 22:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5Y1pZ005976; Wed, 16 Jun 2004 22:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5X2pZ005942 for ; Wed, 16 Jun 2004 22:33:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5X1Mx007784 for ; Wed, 16 Jun 2004 22:33:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5X1gd087632 for ; Wed, 16 Jun 2004 22:33:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H5X1AM087631; Wed, 16 Jun 2004 22:33:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170533.i5H5X1AM087631@xorpc.icir.org> Date: Wed, 16 Jun 2004 22:33:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 22:33:01 Modified files: ./: configure.in configure Log message: Bug fix: if the installation prefix is specified by running ./configure --prefix=/foo/bar then XORP_ROOT and XORP_INSTALL_ROOT are defined properly. Bug report by [Philippe Van Hecke ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 22:33:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 22:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Y2NG095063 for ; Wed, 16 Jun 2004 22:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Y2Mx007803 for ; Wed, 16 Jun 2004 22:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5Y2pZ005993; Wed, 16 Jun 2004 22:34:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H5XbpZ005954 for ; Wed, 16 Jun 2004 22:33:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5XbMx007793 for ; Wed, 16 Jun 2004 22:33:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H5Xbgd087678 for ; Wed, 16 Jun 2004 22:33:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H5Xb5X087677; Wed, 16 Jun 2004 22:33:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170533.i5H5Xb5X087677@xorpc.icir.org> Date: Wed, 16 Jun 2004 22:33:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 22:33:37 Modified files: ./: ERRATA Log message: Remove an errata entry that is already fixed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:02 2005 Subject: No subject Wed Jun 16 23:02:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Jun 2004 23:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H631NG000752 for ; Wed, 16 Jun 2004 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H631Mx008151 for ; Wed, 16 Jun 2004 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H631pZ006501; Wed, 16 Jun 2004 23:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H62spZ006494 for ; Wed, 16 Jun 2004 23:02:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H62sMx008148 for ; Wed, 16 Jun 2004 23:02:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H62sgd089553 for ; Wed, 16 Jun 2004 23:02:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H62sU0089552; Wed, 16 Jun 2004 23:02:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406170602.i5H62sU0089552@xorpc.icir.org> Date: Wed, 16 Jun 2004 23:02:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/config/ acipv6.m4 ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/16 23:02:54 Modified files: xorp/config/: acipv6.m4 ./: configure Log message: Bug fix: reverse the polarity of setting HAVE_BROKEN_CXX_NETINET6_ND6_H This commit and the previous fix the following bug: Bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=79 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Thu Jun 17 1:16:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Jun 2004 01:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H8H1NG028165 for ; Thu, 17 Jun 2004 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H8H1Mx010011 for ; Thu, 17 Jun 2004 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H8H0pZ009489; Thu, 17 Jun 2004 01:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5H8GnpZ009477 for ; Thu, 17 Jun 2004 01:16:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H8GnMx010007 for ; Thu, 17 Jun 2004 01:16:49 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5H8Gngd012931 for ; Thu, 17 Jun 2004 01:16:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5H8Gn1e012930; Thu, 17 Jun 2004 01:16:49 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406170816.i5H8Gn1e012930@xorpc.icir.org> Date: Thu, 17 Jun 2004 1:16:49 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/06/17 01:16:49 Modified files: ./: livecd.html Log message: Mention how large the LiveCD image is, so people don't pull it unless they're willing to transfer 120MB. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Thu Jun 17 16:22:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Jun 2004 16:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5HNN1NG009046 for ; Thu, 17 Jun 2004 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5HNN1Mx023704 for ; Thu, 17 Jun 2004 16:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5HNN1pZ004333; Thu, 17 Jun 2004 16:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5HNMUpZ004317 for ; Thu, 17 Jun 2004 16:22:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5HNMUMx023690 for ; Thu, 17 Jun 2004 16:22:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5HNMUgd067039 for ; Thu, 17 Jun 2004 16:22:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5HNMUSr067038; Thu, 17 Jun 2004 16:22:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406172322.i5HNMUSr067038@xorpc.icir.org> Date: Thu, 17 Jun 2004 16:22:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/17 16:22:30 Modified files: xorp/fea/: mfea_node.cc Log message: Bug fix: assign the special register_vif to use the IP address of an existing interface only if this interface is enabled within the MFEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Fri Jun 18 10:06:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Jun 2004 10:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IH71NG032289 for ; Fri, 18 Jun 2004 10:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IH71Mx039191 for ; Fri, 18 Jun 2004 10:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5IH71pZ000185; Fri, 18 Jun 2004 10:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5IH6apZ000156 for ; Fri, 18 Jun 2004 10:06:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IH6ZMx039187 for ; Fri, 18 Jun 2004 10:06:35 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IH6Zgd038839 for ; Fri, 18 Jun 2004 10:06:35 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5IH6Zql038838; Fri, 18 Jun 2004 10:06:35 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406181706.i5IH6Zql038838@xorpc.icir.org> Date: Fri, 18 Jun 2004 10:06:35 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ test_finder_events.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/06/18 10:06:35 Modified files: xorp/libxipc/: test_finder_events.cc Log message: Dispatch events and checks for events with relative times to each other rather than scheduling all ahead of time. If we do the latter and get behind, operations that are supposed to be a fixed time appart can get grouped up. This should fix the intermittent tinderbox failures for this test. http://www.xorp.org/bugzilla/show_bug.cgi?id=77 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Fri Jun 18 14:51:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Jun 2004 14:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ILq1NG095626 for ; Fri, 18 Jun 2004 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ILq1Mx042399 for ; Fri, 18 Jun 2004 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ILq0pZ007720; Fri, 18 Jun 2004 14:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5ILprpZ007711 for ; Fri, 18 Jun 2004 14:51:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ILprMx042394 for ; Fri, 18 Jun 2004 14:51:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5ILprgd049208 for ; Fri, 18 Jun 2004 14:51:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5ILprwJ049207; Fri, 18 Jun 2004 14:51:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406182151.i5ILprwJ049207@xorpc.icir.org> Date: Fri, 18 Jun 2004 14:51:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ mfea_vif.cc mfea_vif.hh xorp/mld6igmp/ mld6igmp_vif.cc mld6igmp_vif.hh xorp/pim/ pim_vif.cc pim_vif.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/18 14:51:53 Modified files: xorp/fea/: mfea_vif.cc mfea_vif.hh xorp/mld6igmp/: mld6igmp_vif.cc mld6igmp_vif.hh xorp/pim/: pim_vif.cc pim_vif.hh Log message: Add an enable() and disable() methods for each vif. The disable() method explicitly calls the stop() method on the vif, so a vif that was enabled and running will indeed stop operation when it is disabled. [Bug report by Philippe Van Hecke ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Fri Jun 18 15:35:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Jun 2004 15:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IMa1NG006167 for ; Fri, 18 Jun 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IMa1Mx042904 for ; Fri, 18 Jun 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5IMa0pZ008910; Fri, 18 Jun 2004 15:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5IMZMpZ008846 for ; Fri, 18 Jun 2004 15:35:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IMZLMx042894 for ; Fri, 18 Jun 2004 15:35:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5IMZLgd050429 for ; Fri, 18 Jun 2004 15:35:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5IMZLsl050428; Fri, 18 Jun 2004 15:35:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406182235.i5IMZLsl050428@xorpc.icir.org> Date: Fri, 18 Jun 2004 15:35:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/18 15:35:21 Modified files: ./: ERRATA Log message: Added errata entries for MFEA, MLD/IGMP and PIM. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Sun Jun 20 23:22:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Jun 2004 23:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6N1NG073788 for ; Sun, 20 Jun 2004 23:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6N1Mx082094 for ; Sun, 20 Jun 2004 23:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L6N1UO013364; Sun, 20 Jun 2004 23:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L6M5UO013341 for ; Sun, 20 Jun 2004 23:22:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6M5Mx082082 for ; Sun, 20 Jun 2004 23:22:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6M5gd019883 for ; Sun, 20 Jun 2004 23:22:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5L6M5jx019880; Sun, 20 Jun 2004 23:22:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406210622.i5L6M5jx019880@xorpc.icir.org> Date: Sun, 20 Jun 2004 23:22:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/20 23:22:05 Modified files: ./: configure.in configure Log message: Bug fix: define IPV4_RAW_INPUT_IS_RAW for OpenBSD. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Sun Jun 20 23:35:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Jun 2004 23:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6a1NG075737 for ; Sun, 20 Jun 2004 23:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6a0Mx082320 for ; Sun, 20 Jun 2004 23:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L6a0UO013816; Sun, 20 Jun 2004 23:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L6ZoUO013809 for ; Sun, 20 Jun 2004 23:35:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6ZoMx082317 for ; Sun, 20 Jun 2004 23:35:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L6Zogd020814 for ; Sun, 20 Jun 2004 23:35:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5L6ZoJw020813; Sun, 20 Jun 2004 23:35:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406210635.i5L6ZoJw020813@xorpc.icir.org> Date: Sun, 20 Jun 2004 23:35:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/20 23:35:50 Modified files: ./: BUILD_NOTES Log message: Add an OpenBSD-related note re. increasing the maximum number of open file descripors, because the default limit may be too small. This is more like a FAQ entry, but for the time being it is placed in BUILD_NOTES. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 1:32:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 01:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L8X1NG093141 for ; Mon, 21 Jun 2004 01:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L8X1Mx084369 for ; Mon, 21 Jun 2004 01:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L8X0UO016159; Mon, 21 Jun 2004 01:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5L8WPUO016144 for ; Mon, 21 Jun 2004 01:32:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L8WPMx084362 for ; Mon, 21 Jun 2004 01:32:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5L8WPgd029530 for ; Mon, 21 Jun 2004 01:32:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5L8WP1M029529; Mon, 21 Jun 2004 01:32:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406210832.i5L8WP1M029529@xorpc.icir.org> Date: Mon, 21 Jun 2004 1:32:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/21 01:32:25 Modified files: ./: BUILD_NOTES Log message: "limit descriptors 500" -> "limit descriptors 400" for consistency with the ulimit example. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 3:11:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 03:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LAC2NG011255 for ; Mon, 21 Jun 2004 03:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LAC2Mx086261 for ; Mon, 21 Jun 2004 03:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LAC0UO018101; Mon, 21 Jun 2004 03:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LAB5UO018080 for ; Mon, 21 Jun 2004 03:11:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LAB4Mx086253 for ; Mon, 21 Jun 2004 03:11:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LAB4gd036998 for ; Mon, 21 Jun 2004 03:11:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LAB4sD036997; Mon, 21 Jun 2004 03:11:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406211011.i5LAB4sD036997@xorpc.icir.org> Date: Mon, 21 Jun 2004 3:11:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config10.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 04/06/21 03:11:04 Modified files: other/testbed/config/: config10.xt Log message: Add xorp2 and xorp3 to the list of hosts with default kernel _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 10:31:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 10:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LHW1NG081175 for ; Mon, 21 Jun 2004 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LHW1Mx092907 for ; Mon, 21 Jun 2004 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LHW1UO029938; Mon, 21 Jun 2004 10:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LHVlUO029929 for ; Mon, 21 Jun 2004 10:31:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LHVlMx092903 for ; Mon, 21 Jun 2004 10:31:47 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LHVlgd067581 for ; Mon, 21 Jun 2004 10:31:47 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LHVlNm067580; Mon, 21 Jun 2004 10:31:47 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406211731.i5LHVlNm067580@xorpc.icir.org> Date: Mon, 21 Jun 2004 10:31:47 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ finder_tcp.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: hodson@xorpc.icir.org. 04/06/21 10:31:47 Modified files: xorp/libxipc/: finder_tcp.cc Log message: o Add a missing return in FinderTcpBase::read_callback to avoid continuing after an error has occured and instance may have been deleted. Reported by: Andrea Bittau. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 11:06:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 11:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LI71NG088201 for ; Mon, 21 Jun 2004 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LI71Mx093370 for ; Mon, 21 Jun 2004 11:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LI71UO001001; Mon, 21 Jun 2004 11:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LI67UO000967 for ; Mon, 21 Jun 2004 11:06:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LI67Mx093355 for ; Mon, 21 Jun 2004 11:06:07 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LI67gd069260 for ; Mon, 21 Jun 2004 11:06:07 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LI67Qw069259; Mon, 21 Jun 2004 11:06:07 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406211806.i5LI67Qw069259@xorpc.icir.org> Date: Mon, 21 Jun 2004 11:06:07 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rtrmgr/ config.boot.sample xorp/etc/templates/ rip.tp ripng.tp xorp/xrl/interfaces/ rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh xorp/xrl/targets/ rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: hodson@xorpc.icir.org. 04/06/21 11:06:07 Modified files: xorp/rip/: xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh xorp/rtrmgr/: config.boot.sample xorp/etc/templates/: rip.tp ripng.tp xorp/xrl/interfaces/: rip.xif rip_xif.cc rip_xif.hh ripng.xif ripng_xif.cc ripng_xif.hh xorp/xrl/targets/: rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh Log message: o Change "rip import" statement to "rip export" in templates. This is more consistent with a big router vendor. [Suggested by Andrea Bittau]. o Substitute to word "import" for "redist" in rip and ripng XRLs. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 11:14:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 11:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LIF1NG096038 for ; Mon, 21 Jun 2004 11:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LIF0Mx093539 for ; Mon, 21 Jun 2004 11:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LIF0UO001283; Mon, 21 Jun 2004 11:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LIEeUO001259 for ; Mon, 21 Jun 2004 11:14:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LIEeMx093527 for ; Mon, 21 Jun 2004 11:14:40 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LIEegd069705 for ; Mon, 21 Jun 2004 11:14:40 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LIEe9g069704; Mon, 21 Jun 2004 11:14:40 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200406211814.i5LIEe9g069704@xorpc.icir.org> Date: Mon, 21 Jun 2004 11:14:40 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/06/21 11:14:40 Modified files: ./: getting_started.html Log message: o Add note regarding "import" -> "export". o Pass through nsgml and fix error. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:03 2005 Subject: No subject Mon Jun 21 15:46:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 15:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LMl1NG073179 for ; Mon, 21 Jun 2004 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LMl1Mx096876 for ; Mon, 21 Jun 2004 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LMl0UO009422; Mon, 21 Jun 2004 15:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LMkbUO009407 for ; Mon, 21 Jun 2004 15:46:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LMkbMx096866 for ; Mon, 21 Jun 2004 15:46:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LMkbgd079250 for ; Mon, 21 Jun 2004 15:46:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LMkbhJ079249; Mon, 21 Jun 2004 15:46:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406212246.i5LMkbhJ079249@xorpc.icir.org> Date: Mon, 21 Jun 2004 15:46:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/21 15:46:37 Modified files: ./: README Log message: Prepare README for the 1.0 release: "release candidate" -> "Release-1.0" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 16:43:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LNi1NG084138 for ; Mon, 21 Jun 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LNi1Mx097501 for ; Mon, 21 Jun 2004 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LNi1UO011071; Mon, 21 Jun 2004 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5LNheUO011063 for ; Mon, 21 Jun 2004 16:43:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LNhdMx097496 for ; Mon, 21 Jun 2004 16:43:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5LNhdgd081253 for ; Mon, 21 Jun 2004 16:43:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5LNhdrJ081252; Mon, 21 Jun 2004 16:43:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406212343.i5LNhdrJ081252@xorpc.icir.org> Date: Mon, 21 Jun 2004 16:43:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/06/21 16:43:39 Modified files: ./: ERRATA Log message: Add an entry regarding disabling Reverse Path Filtering on Linux. [Based on info from Philippe Van Hecke ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:17:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1I1NG098177 for ; Mon, 21 Jun 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1I1Mx098502 for ; Mon, 21 Jun 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1I0UO013405; Mon, 21 Jun 2004 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1HRUO013389 for ; Mon, 21 Jun 2004 18:17:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1HRMx098500 for ; Mon, 21 Jun 2004 18:17:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1HRgd088434 for ; Mon, 21 Jun 2004 18:17:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1HRAk088433; Mon, 21 Jun 2004 18:17:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220117.i5M1HRAk088433@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:17:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:17:27 Modified files: xorp/libxipc/: README Log message: Remove extra empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:27:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1S1NG099692 for ; Mon, 21 Jun 2004 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1S0Mx098639 for ; Mon, 21 Jun 2004 18:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1S0UO013627; Mon, 21 Jun 2004 18:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1R9UO013613 for ; Mon, 21 Jun 2004 18:27:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1R8Mx098617 for ; Mon, 21 Jun 2004 18:27:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1R8gd089235 for ; Mon, 21 Jun 2004 18:27:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1R8aI089234; Mon, 21 Jun 2004 18:27:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220127.i5M1R8aI089234@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:27:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools/ xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/tools/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:27:08 Modified files: xorp/rip/tools/: xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Log message: Regenerate after the XRL interface has been modified. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:28:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1T1NG099853 for ; Mon, 21 Jun 2004 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1T1Mx098678 for ; Mon, 21 Jun 2004 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1T1UO013666; Mon, 21 Jun 2004 18:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1SQUO013647 for ; Mon, 21 Jun 2004 18:28:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1SQMx098660 for ; Mon, 21 Jun 2004 18:28:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1SQgd089354 for ; Mon, 21 Jun 2004 18:28:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1SQ7T089353; Mon, 21 Jun 2004 18:28:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220128.i5M1SQ7T089353@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:28:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea xorp/mld6igmp/ README xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:28:26 Modified files: xorp/fea/: README.mfea xorp/mld6igmp/: README xorp/pim/: README Log message: * Separated the stand-alone binary related stuff into a separate section. * Minor nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:32:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1X1NG000592 for ; Mon, 21 Jun 2004 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1X1Mx098749 for ; Mon, 21 Jun 2004 18:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1X1UO013777; Mon, 21 Jun 2004 18:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1WPUO013757 for ; Mon, 21 Jun 2004 18:32:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1WPMx098741 for ; Mon, 21 Jun 2004 18:32:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1WPgd089782 for ; Mon, 21 Jun 2004 18:32:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1WPIF089781; Mon, 21 Jun 2004 18:32:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220132.i5M1WPIF089781@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:32:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:32:25 Modified files: xorp/cli/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:38:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1d1NG001508 for ; Mon, 21 Jun 2004 18:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1d1Mx098807 for ; Mon, 21 Jun 2004 18:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1d1UO013996; Mon, 21 Jun 2004 18:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1c6UO013944 for ; Mon, 21 Jun 2004 18:38:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1c6Mx098798 for ; Mon, 21 Jun 2004 18:38:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1c6gd090199 for ; Mon, 21 Jun 2004 18:38:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1c6Sv090198; Mon, 21 Jun 2004 18:38:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220138.i5M1c6Sv090198@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:38:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:38:06 Modified files: xorp/fea/: TODO Log message: Prune a TODO entry that is already done (by Orion). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:38:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1d2NG001523 for ; Mon, 21 Jun 2004 18:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1d2Mx098810 for ; Mon, 21 Jun 2004 18:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1d2UO014007; Mon, 21 Jun 2004 18:39:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1cfUO013986 for ; Mon, 21 Jun 2004 18:38:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1cfMx098803 for ; Mon, 21 Jun 2004 18:38:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1cegd090265 for ; Mon, 21 Jun 2004 18:38:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1cekW090264; Mon, 21 Jun 2004 18:38:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220138.i5M1cekW090264@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:38:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libproto/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:38:40 Modified files: xorp/libproto/: TODO Log message: Remove empty lines. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 18:39:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 18:40:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1e0NG001687 for ; Mon, 21 Jun 2004 18:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1e0Mx098831 for ; Mon, 21 Jun 2004 18:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1e0UO014031; Mon, 21 Jun 2004 18:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M1deUO014021 for ; Mon, 21 Jun 2004 18:39:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1deMx098828 for ; Mon, 21 Jun 2004 18:39:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M1degd090362 for ; Mon, 21 Jun 2004 18:39:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M1de1n090361; Mon, 21 Jun 2004 18:39:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220139.i5M1de1n090361@xorpc.icir.org> Date: Mon, 21 Jun 2004 18:39:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/06/21 18:39:40 Modified files: xorp/libxipc/: TODO Log message: Add the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:03:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:04:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M340NG014100 for ; Mon, 21 Jun 2004 20:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M340Mx099795 for ; Mon, 21 Jun 2004 20:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M340UO015845; Mon, 21 Jun 2004 20:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M333UO015818 for ; Mon, 21 Jun 2004 20:03:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M332Mx099783 for ; Mon, 21 Jun 2004 20:03:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M332gd094882 for ; Mon, 21 Jun 2004 20:03:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M3322B094881; Mon, 21 Jun 2004 20:03:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220303.i5M3322B094881@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:03:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:03:02 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:03:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M343NG014127 for ; Mon, 21 Jun 2004 20:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M343Mx099799 for ; Mon, 21 Jun 2004 20:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M343UO015856; Mon, 21 Jun 2004 20:04:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M33ZUO015833 for ; Mon, 21 Jun 2004 20:03:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M33ZMx099789 for ; Mon, 21 Jun 2004 20:03:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M33Zgd094919 for ; Mon, 21 Jun 2004 20:03:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M33ZHu094918; Mon, 21 Jun 2004 20:03:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220303.i5M33ZHu094918@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:03:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:03:35 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:07:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M381NG014736 for ; Mon, 21 Jun 2004 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M381Mx099871 for ; Mon, 21 Jun 2004 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M381UO016006; Mon, 21 Jun 2004 20:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M374UO015954 for ; Mon, 21 Jun 2004 20:07:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M374Mx099863 for ; Mon, 21 Jun 2004 20:07:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M374gd095133 for ; Mon, 21 Jun 2004 20:07:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M374Hs095132; Mon, 21 Jun 2004 20:07:04 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220307.i5M374Hs095132@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:07:04 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:07:04 Modified files: xorp/fea/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:09:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3A1NG015036 for ; Mon, 21 Jun 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3A1Mx099892 for ; Mon, 21 Jun 2004 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M3A1UO016054; Mon, 21 Jun 2004 20:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M39vUO016047 for ; Mon, 21 Jun 2004 20:09:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M39uMx099887 for ; Mon, 21 Jun 2004 20:09:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M39ugd095317 for ; Mon, 21 Jun 2004 20:09:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M39u7e095316; Mon, 21 Jun 2004 20:09:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220309.i5M39u7e095316@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:09:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:09:56 Modified files: xorp/rib/: TODO Log message: A nit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:11:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3C1NG015375 for ; Mon, 21 Jun 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3C1Mx099929 for ; Mon, 21 Jun 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M3C0UO016137; Mon, 21 Jun 2004 20:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M3BDUO016104 for ; Mon, 21 Jun 2004 20:11:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3BDMx099923 for ; Mon, 21 Jun 2004 20:11:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3BDgd095438 for ; Mon, 21 Jun 2004 20:11:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M3BDj0095437; Mon, 21 Jun 2004 20:11:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220311.i5M3BDj0095437@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:11:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rip/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:11:13 Modified files: xorp/rip/: TODO Log message: Add XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Mon Jun 21 20:13:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Jun 2004 20:14:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3E0NG015670 for ; Mon, 21 Jun 2004 20:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3E0Mx099953 for ; Mon, 21 Jun 2004 20:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M3E0UO016206; Mon, 21 Jun 2004 20:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5M3DsUO016200 for ; Mon, 21 Jun 2004 20:13:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3DsMx099949 for ; Mon, 21 Jun 2004 20:13:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5M3Drgd095549 for ; Mon, 21 Jun 2004 20:13:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5M3DrDE095548; Mon, 21 Jun 2004 20:13:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406220313.i5M3DrDE095548@xorpc.icir.org> Date: Mon, 21 Jun 2004 20:13:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/21 20:13:53 Modified files: xorp/rtrmgr/: TODO Log message: Move a TODO entry to DONE. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 16:41:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 16:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNg1NG064902 for ; Tue, 22 Jun 2004 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNg1Mx018529 for ; Tue, 22 Jun 2004 16:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNg1UO019200; Tue, 22 Jun 2004 16:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNfgUO019176 for ; Tue, 22 Jun 2004 16:41:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNfgMx018527 for ; Tue, 22 Jun 2004 16:41:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNfggd047148 for ; Tue, 22 Jun 2004 16:41:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5MNfg2Q047147; Tue, 22 Jun 2004 16:41:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406222341.i5MNfg2Q047147@xorpc.icir.org> Date: Tue, 22 Jun 2004 16:41:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 16:41:42 Modified files: xorp/libxorp/: ether_compat.h Log message: De-constify the return value of the locally implemented ether_ntoa(), so it matches the definition of ether_ntoa(3) on *BSD and Linux. Note that this change may matter only on systems that don't have ether_ntoa(3) (this excludes *BSD and Linux). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 16:46:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 16:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNl1NG066132 for ; Tue, 22 Jun 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNl1Mx018607 for ; Tue, 22 Jun 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNl1UO019323; Tue, 22 Jun 2004 16:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNkaUO019315 for ; Tue, 22 Jun 2004 16:46:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNkaMx018604 for ; Tue, 22 Jun 2004 16:46:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNkZgd047217 for ; Tue, 22 Jun 2004 16:46:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5MNkZmA047216; Tue, 22 Jun 2004 16:46:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406222346.i5MNkZmA047216@xorpc.icir.org> Date: Tue, 22 Jun 2004 16:46:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 16:46:35 Modified files: xorp/libxorp/: ether_compat.c Log message: * Change the local implementation of ether_ntoa(3) and ether_aton(3) so now it is based on the OpenBSD implementation. * Add the XORP copyright, and a message that part of this software is derived from OpenBSD. * Add the original OpenBSD copyright messages that come with file src/lib/libc/net/ethers.c. Note that currently libxorp/ether_compat.c is (still) not linked against libxorp. This would be fixed later (probably after Release-1.0 to avoid any unwanted last-minute side-effects). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 16:50:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 16:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNp1NG067137 for ; Tue, 22 Jun 2004 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNp1Mx018677 for ; Tue, 22 Jun 2004 16:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNp1UO019454; Tue, 22 Jun 2004 16:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5MNogUO019447 for ; Tue, 22 Jun 2004 16:50:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNogMx018672 for ; Tue, 22 Jun 2004 16:50:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5MNofgd047284 for ; Tue, 22 Jun 2004 16:50:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5MNofSw047283; Tue, 22 Jun 2004 16:50:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406222350.i5MNofSw047283@xorpc.icir.org> Date: Tue, 22 Jun 2004 16:50:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 16:50:41 Modified files: xorp/libxorp/: TODO Log message: Update a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 17:10:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 17:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0B1NG071773 for ; Tue, 22 Jun 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0B1Mx018938 for ; Tue, 22 Jun 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N0B1UO019988; Tue, 22 Jun 2004 17:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N0AIUO019960 for ; Tue, 22 Jun 2004 17:10:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0AIMx018934 for ; Tue, 22 Jun 2004 17:10:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0AHgd047463 for ; Tue, 22 Jun 2004 17:10:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N0AHox047462; Tue, 22 Jun 2004 17:10:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230010.i5N0AHox047462@xorpc.icir.org> Date: Tue, 22 Jun 2004 17:10:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 04/06/22 17:10:17 Modified files: xorp/docs/design_arch/: design_arch.tex Log message: * Update the status * Bump-up the version and the date * Minor nits _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 17:18:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0J1NG073588 for ; Tue, 22 Jun 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0J1Mx019062 for ; Tue, 22 Jun 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N0J1UO020176; Tue, 22 Jun 2004 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N0IXUO020158 for ; Tue, 22 Jun 2004 17:18:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0IXMx019060 for ; Tue, 22 Jun 2004 17:18:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N0IXgd047543 for ; Tue, 22 Jun 2004 17:18:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N0IXja047542; Tue, 22 Jun 2004 17:18:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230018.i5N0IXja047542@xorpc.icir.org> Date: Tue, 22 Jun 2004 17:18:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 04/06/22 17:18:33 Modified files: xorp/docs/design_arch/: error_handling.tex Log message: Bump-up the version to 1.0 and update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:04 2005 Subject: No subject Tue Jun 22 18:08:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 18:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N191NG084504 for ; Tue, 22 Jun 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N191Mx019745 for ; Tue, 22 Jun 2004 18:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N191UO021336; Tue, 22 Jun 2004 18:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N18JUO021323 for ; Tue, 22 Jun 2004 18:08:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N18IMx019741 for ; Tue, 22 Jun 2004 18:08:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N18Igd047989 for ; Tue, 22 Jun 2004 18:08:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N18Iwe047988; Tue, 22 Jun 2004 18:08:18 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230108.i5N18Iwe047988@xorpc.icir.org> Date: Tue, 22 Jun 2004 18:08:18 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ safe_callback_obj.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 18:08:18 Modified files: xorp/libxorp/: safe_callback_obj.hh Log message: Fix a typo in kdoc text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 18:12:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 18:13:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1D0NG085280 for ; Tue, 22 Jun 2004 18:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1D0Mx019832 for ; Tue, 22 Jun 2004 18:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1D0UO021443; Tue, 22 Jun 2004 18:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1CrUO021437 for ; Tue, 22 Jun 2004 18:12:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1CrMx019830 for ; Tue, 22 Jun 2004 18:12:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1Crgd048047 for ; Tue, 22 Jun 2004 18:12:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N1CrlJ048046; Tue, 22 Jun 2004 18:12:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230112.i5N1CrlJ048046@xorpc.icir.org> Date: Tue, 22 Jun 2004 18:12:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ timespent.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 18:12:53 Modified files: xorp/libxorp/: timespent.hh Log message: Minor nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 18:31:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 18:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1W1NG088899 for ; Tue, 22 Jun 2004 18:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1W1Mx020074 for ; Tue, 22 Jun 2004 18:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1W1UO021858; Tue, 22 Jun 2004 18:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1ViUO021843 for ; Tue, 22 Jun 2004 18:31:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1ViMx020070 for ; Tue, 22 Jun 2004 18:31:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1Vigd048220 for ; Tue, 22 Jun 2004 18:31:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N1VhIu048219; Tue, 22 Jun 2004 18:31:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230131.i5N1VhIu048219@xorpc.icir.org> Date: Tue, 22 Jun 2004 18:31:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 18:31:43 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Updated to match 1.0 release code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 18:43:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 18:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1i1NG091197 for ; Tue, 22 Jun 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1i1Mx020249 for ; Tue, 22 Jun 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1i1UO022228; Tue, 22 Jun 2004 18:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1hZUO022216 for ; Tue, 22 Jun 2004 18:43:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1hYMx020245 for ; Tue, 22 Jun 2004 18:43:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1hYgd048321 for ; Tue, 22 Jun 2004 18:43:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N1hYpq048320; Tue, 22 Jun 2004 18:43:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230143.i5N1hYpq048320@xorpc.icir.org> Date: Tue, 22 Jun 2004 18:43:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 04/06/22 18:43:34 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: * Update the status * Bump-up the version to 1.0 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 18:46:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 18:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1l0NG091775 for ; Tue, 22 Jun 2004 18:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1l0Mx020304 for ; Tue, 22 Jun 2004 18:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1l0UO022321; Tue, 22 Jun 2004 18:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N1kjUO022308 for ; Tue, 22 Jun 2004 18:46:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1kjMx020300 for ; Tue, 22 Jun 2004 18:46:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N1kjgd048394 for ; Tue, 22 Jun 2004 18:46:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N1kjiK048393; Tue, 22 Jun 2004 18:46:45 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230146.i5N1kjiK048393@xorpc.icir.org> Date: Tue, 22 Jun 2004 18:46:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/06/22 18:46:44 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Bump-up the version to 1.0 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 19:32:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 19:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2X1NG000902 for ; Tue, 22 Jun 2004 19:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2X0Mx020970 for ; Tue, 22 Jun 2004 19:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2X0UO023531; Tue, 22 Jun 2004 19:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2WoUO023524 for ; Tue, 22 Jun 2004 19:32:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2WnMx020966 for ; Tue, 22 Jun 2004 19:32:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2Wngd048761 for ; Tue, 22 Jun 2004 19:32:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N2WnsL048760; Tue, 22 Jun 2004 19:32:49 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406230232.i5N2WnsL048760@xorpc.icir.org> Date: Tue, 22 Jun 2004 19:32:49 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ Makefile.am Makefile.in xorp/docs/rtrmgr/ config_guide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/22 19:32:49 Modified files: xorp/docs/rtrmgr/: Makefile.am Makefile.in Added files: xorp/docs/rtrmgr/: config_guide.tex Log message: Configuration Guide. Taken directly from the startup web page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 19:39:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 19:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2e1NG008206 for ; Tue, 22 Jun 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2e1Mx021052 for ; Tue, 22 Jun 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2e1UO023702; Tue, 22 Jun 2004 19:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2dWUO023682 for ; Tue, 22 Jun 2004 19:39:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2dWMx021038 for ; Tue, 22 Jun 2004 19:39:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2dWgd048835 for ; Tue, 22 Jun 2004 19:39:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N2dWn7048834; Tue, 22 Jun 2004 19:39:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230239.i5N2dWn7048834@xorpc.icir.org> Date: Tue, 22 Jun 2004 19:39:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/figs/ mcast_modules_interaction.eps mcast_modules_interaction.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/figs/ Changes by: pavlin@xorpc.icir.org. 04/06/22 19:39:32 Modified files: xorp/docs/multicast/figs/: mcast_modules_interaction.eps mcast_modules_interaction.fig Log message: Added modules FIB2MRIB and StaticRoutes to the picture. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 19:40:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 19:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2f1NG008426 for ; Tue, 22 Jun 2004 19:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2f1Mx021086 for ; Tue, 22 Jun 2004 19:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2f0UO023739; Tue, 22 Jun 2004 19:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2eQUO023717 for ; Tue, 22 Jun 2004 19:40:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2eQMx021081 for ; Tue, 22 Jun 2004 19:40:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2eQgd048909 for ; Tue, 22 Jun 2004 19:40:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N2eQnP048908; Tue, 22 Jun 2004 19:40:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230240.i5N2eQnP048908@xorpc.icir.org> Date: Tue, 22 Jun 2004 19:40:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/multicast/ Changes by: pavlin@xorpc.icir.org. 04/06/22 19:40:26 Modified files: xorp/docs/multicast/: multicast_arch.tex Log message: * Status updated. * Added information about the FIB2MRIB and StaticRoutes modules. * Bump-up the version to 1.0, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 19:48:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 19:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2n2NG009989 for ; Tue, 22 Jun 2004 19:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2n2Mx021204 for ; Tue, 22 Jun 2004 19:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2n1UO023948; Tue, 22 Jun 2004 19:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N2mrUO023928 for ; Tue, 22 Jun 2004 19:48:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2mqMx021198 for ; Tue, 22 Jun 2004 19:48:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N2mqgd049019 for ; Tue, 22 Jun 2004 19:48:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N2mq9t049018; Tue, 22 Jun 2004 19:48:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230248.i5N2mq9t049018@xorpc.icir.org> Date: Tue, 22 Jun 2004 19:48:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim/ pim_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/22 19:48:52 Modified files: xorp/docs/pim/: pim_arch.tex Log message: Updated to match release 1.0. Bump-up the version to 1.0, and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 20:06:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 20:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N371NG013480 for ; Tue, 22 Jun 2004 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N371Mx021493 for ; Tue, 22 Jun 2004 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N371UO024317; Tue, 22 Jun 2004 20:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N36iUO024304 for ; Tue, 22 Jun 2004 20:06:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N36iMx021489 for ; Tue, 22 Jun 2004 20:06:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N36igd049206 for ; Tue, 22 Jun 2004 20:06:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N36iVu049205; Tue, 22 Jun 2004 20:06:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230306.i5N36iVu049205@xorpc.icir.org> Date: Tue, 22 Jun 2004 20:06:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 04/06/22 20:06:44 Modified files: xorp/docs/tex/: xorp.bib Log message: * Update some of the I-D references * Replace RFC-2373 with RFC-3513 as the reference for IPv6 address architecture. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Tue Jun 22 20:14:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Jun 2004 20:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N3F1NG015018 for ; Tue, 22 Jun 2004 20:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N3F0Mx021602 for ; Tue, 22 Jun 2004 20:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N3F0UO024500; Tue, 22 Jun 2004 20:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5N3EbUO024493 for ; Tue, 22 Jun 2004 20:14:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N3EbMx021595 for ; Tue, 22 Jun 2004 20:14:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5N3Ebgd049297 for ; Tue, 22 Jun 2004 20:14:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5N3Ebv6049296; Tue, 22 Jun 2004 20:14:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406230314.i5N3Ebv6049296@xorpc.icir.org> Date: Tue, 22 Jun 2004 20:14:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex/ xorp.bib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/tex/ Changes by: pavlin@xorpc.icir.org. 04/06/22 20:14:37 Modified files: xorp/docs/tex/: xorp.bib Log message: Fix a typo that breaks compilation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Wed Jun 23 12:20:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Jun 2004 12:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5NJL1NG011653 for ; Wed, 23 Jun 2004 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5NJL1Mx037064 for ; Wed, 23 Jun 2004 12:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5NJL123019756; Wed, 23 Jun 2004 12:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5NJKT23019744 for ; Wed, 23 Jun 2004 12:20:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5NJKSMx037057 for ; Wed, 23 Jun 2004 12:20:28 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5NJKSgd057974 for ; Wed, 23 Jun 2004 12:20:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5NJKSTV057973; Wed, 23 Jun 2004 12:20:28 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406231920.i5NJKSTV057973@xorpc.icir.org> Date: Wed, 23 Jun 2004 12:20:28 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ config_guide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/06/23 12:20:28 Modified files: xorp/docs/rtrmgr/: config_guide.tex Log message: Use "\scriptsize" as the font size for sample configurations, PIM-SM configuration was not fitting on a single page. Also lose the spurious newline at the end of each config section. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Wed Jun 23 21:34:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Jun 2004 21:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5O4Z1NG028860 for ; Wed, 23 Jun 2004 21:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5O4Z1Mx042925 for ; Wed, 23 Jun 2004 21:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5O4Z123003392; Wed, 23 Jun 2004 21:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5O4Y823003360 for ; Wed, 23 Jun 2004 21:34:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5O4Y8Mx042912 for ; Wed, 23 Jun 2004 21:34:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5O4Y8gd061667 for ; Wed, 23 Jun 2004 21:34:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5O4Y8oG061666; Wed, 23 Jun 2004 21:34:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406240434.i5O4Y8oG061666@xorpc.icir.org> Date: Wed, 23 Jun 2004 21:34:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex xorp/docs/fea/figs/ xrl_ifs.eps xrl_ifs.fig Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/figs/ Changes by: pavlin@xorpc.icir.org. 04/06/23 21:34:08 Modified files: xorp/docs/fea/: fea.tex xorp/docs/fea/figs/: xrl_ifs.eps xrl_ifs.fig Log message: Update to reflect the situation as of 1.0 release: * Add info about the TCP/UDP socket I/O interface. * Now the network interface observer is through the libfeaclient XRL interface. * There is FIB observer interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 12:34:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 12:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5OJZ1NG012625 for ; Thu, 24 Jun 2004 12:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5OJZ1Mx057952 for ; Thu, 24 Jun 2004 12:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5OJZ023027300; Thu, 24 Jun 2004 12:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5OJYe23027274 for ; Thu, 24 Jun 2004 12:34:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5OJYdMx057943 for ; Thu, 24 Jun 2004 12:34:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5OJYdgd069935 for ; Thu, 24 Jun 2004 12:34:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5OJYdOS069934; Thu, 24 Jun 2004 12:34:39 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406241934.i5OJYdOS069934@xorpc.icir.org> Date: Thu, 24 Jun 2004 12:34:39 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/06/24 12:34:39 Modified files: xorp/pim/: TODO Log message: Add a TODO entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 17:16:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 17:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0H1NG073770 for ; Thu, 24 Jun 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0H1Mx061084 for ; Thu, 24 Jun 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0H123005483; Thu, 24 Jun 2004 17:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0G223005450 for ; Thu, 24 Jun 2004 17:16:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0G1Mx061072 for ; Thu, 24 Jun 2004 17:16:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0G1gd071918 for ; Thu, 24 Jun 2004 17:16:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P0G1jo071917; Thu, 24 Jun 2004 17:16:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250016.i5P0G1jo071917@xorpc.icir.org> Date: Thu, 24 Jun 2004 17:16:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/figs/ overview.ps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/figs/ Changes by: pavlin@xorpc.icir.org. 04/06/24 17:16:01 Modified files: xorp/docs/rib/figs/: overview.ps Log message: Replace ExportTable with RedistTable. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 17:18:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0J1NG074305 for ; Thu, 24 Jun 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0J1Mx061113 for ; Thu, 24 Jun 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0J023005552; Thu, 24 Jun 2004 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0IU23005534 for ; Thu, 24 Jun 2004 17:18:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0IUMx061109 for ; Thu, 24 Jun 2004 17:18:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0IUgd071982 for ; Thu, 24 Jun 2004 17:18:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P0IUlY071981; Thu, 24 Jun 2004 17:18:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250018.i5P0IUlY071981@xorpc.icir.org> Date: Thu, 24 Jun 2004 17:18:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: pavlin@xorpc.icir.org. 04/06/24 17:18:30 Modified files: xorp/docs/rib/: rib.tex Log message: * Update the status: - Replace ExportTable with RedistTable - Fix the XRLs specification to correspond to the lastest version * Cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 17:19:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0K1NG074568 for ; Thu, 24 Jun 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0K1Mx061128 for ; Thu, 24 Jun 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0K123005593; Thu, 24 Jun 2004 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0JQ23005570 for ; Thu, 24 Jun 2004 17:19:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0JQMx061121 for ; Thu, 24 Jun 2004 17:19:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0JPgd072030 for ; Thu, 24 Jun 2004 17:19:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P0JPmt072029; Thu, 24 Jun 2004 17:19:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250019.i5P0JPmt072029@xorpc.icir.org> Date: Thu, 24 Jun 2004 17:19:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/24 17:19:25 Modified files: xorp/docs/rtrmgr/: .cvsignore Log message: Added config_guide.pdf and config_guide.ps _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 17:31:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0W1NG077430 for ; Thu, 24 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0W1Mx061254 for ; Thu, 24 Jun 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0W023005924; Thu, 24 Jun 2004 17:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P0Vg23005913 for ; Thu, 24 Jun 2004 17:31:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0VgMx061252 for ; Thu, 24 Jun 2004 17:31:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P0Vggd072237 for ; Thu, 24 Jun 2004 17:31:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P0VgAk072236; Thu, 24 Jun 2004 17:31:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250031.i5P0VgAk072236@xorpc.icir.org> Date: Thu, 24 Jun 2004 17:31:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ config_guide.tex xorpsh_userguide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/24 17:31:42 Modified files: xorp/docs/rtrmgr/: config_guide.tex xorpsh_userguide.tex Log message: * Update the release number to 1.0, and fix the date. * Sync the Latex header with the rtrmgr.tex document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 19:44:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 19:45:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2j0NG007368 for ; Thu, 24 Jun 2004 19:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2j0Mx063029 for ; Thu, 24 Jun 2004 19:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P2j023008845; Thu, 24 Jun 2004 19:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P2iQ23008826 for ; Thu, 24 Jun 2004 19:44:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2iQMx063019 for ; Thu, 24 Jun 2004 19:44:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2iQgd073213 for ; Thu, 24 Jun 2004 19:44:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P2iQom073212; Thu, 24 Jun 2004 19:44:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250244.i5P2iQom073212@xorpc.icir.org> Date: Thu, 24 Jun 2004 19:44:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ config_guide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/24 19:44:26 Modified files: xorp/docs/rtrmgr/: config_guide.tex Log message: * Added a bit of extra text (e.g., a bit of high-level description in the "Introduction" section, and in the "Protocols" section"). * Various cleanup (using different font for the configuration keywords, etc). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:05 2005 Subject: No subject Thu Jun 24 19:49:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 19:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2o1NG008536 for ; Thu, 24 Jun 2004 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2o1Mx063110 for ; Thu, 24 Jun 2004 19:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P2o123008964; Thu, 24 Jun 2004 19:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P2nx23008957 for ; Thu, 24 Jun 2004 19:49:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2nwMx063105 for ; Thu, 24 Jun 2004 19:49:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P2nwgd073273 for ; Thu, 24 Jun 2004 19:49:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P2nwfS073272; Thu, 24 Jun 2004 19:49:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250249.i5P2nwfS073272@xorpc.icir.org> Date: Thu, 24 Jun 2004 19:49:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ rtrmgr.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: pavlin@xorpc.icir.org. 04/06/24 19:49:58 Modified files: xorp/docs/rtrmgr/: rtrmgr.tex Log message: * Bump-up the version to 1.0 and the date. * Correct one of the examples. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Thu Jun 24 20:02:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 20:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P331NG020795 for ; Thu, 24 Jun 2004 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P331Mx063304 for ; Thu, 24 Jun 2004 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P33123009258; Thu, 24 Jun 2004 20:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P32723009240 for ; Thu, 24 Jun 2004 20:02:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P327Mx063294 for ; Thu, 24 Jun 2004 20:02:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P327gd073501 for ; Thu, 24 Jun 2004 20:02:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P327vJ073500; Thu, 24 Jun 2004 20:02:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250302.i5P327vJ073500@xorpc.icir.org> Date: Thu, 24 Jun 2004 20:02:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 04/06/24 20:02:07 Modified files: xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: * Bump-up the version to 1.0 and the date * PIM Null Register -> PIM Null-Register * Downgrade the I-D reference from 09 to 05, because the testsute hasn't been updated yet with the 09 modifications. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Thu Jun 24 20:05:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Jun 2004 20:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P361NG022288 for ; Thu, 24 Jun 2004 20:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P361Mx063377 for ; Thu, 24 Jun 2004 20:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P36123009351; Thu, 24 Jun 2004 20:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5P35Z23009338 for ; Thu, 24 Jun 2004 20:05:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P35YMx063372 for ; Thu, 24 Jun 2004 20:05:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5P35Ygd073573 for ; Thu, 24 Jun 2004 20:05:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5P35Yuq073572; Thu, 24 Jun 2004 20:05:34 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200406250305.i5P35Yuq073572@xorpc.icir.org> Date: Thu, 24 Jun 2004 20:05:34 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 04/06/24 20:05:34 Modified files: xorp/docs/snmp/: snmp_overview.tex Log message: Bump-up the version to 1.0 and the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Fri Jun 25 5:32:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Jun 2004 05:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5PCX1NG042250 for ; Fri, 25 Jun 2004 05:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5PCX1Mx071265 for ; Fri, 25 Jun 2004 05:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5PCX123022880; Fri, 25 Jun 2004 05:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5PCW923022869 for ; Fri, 25 Jun 2004 05:32:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5PCW9Mx071260 for ; Fri, 25 Jun 2004 05:32:09 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5PCW9gd006526 for ; Fri, 25 Jun 2004 05:32:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5PCW9PQ006525; Fri, 25 Jun 2004 05:32:09 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406251232.i5PCW9PQ006525@xorpc.icir.org> Date: Fri, 25 Jun 2004 5:32:09 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_decision.cc route_table_decision.hh test_decision.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: mjh@xorpc.icir.org. 04/06/25 05:32:09 Modified files: xorp/bgp/: route_table_decision.cc route_table_decision.hh test_decision.cc Log message: Change the map index for _rev_parents in DecisionTable to be on router ID rather than on pointer to PeerHandler - we can always obtain a router ID when given a PeerHandler*, and this gives us deterministic behaviour in the isolation tests. Rename _rev_parents to _sorted_parents, and change igp_nexthop_changed to walk this rather than _parents. This should fix the "gmake check" failure on Linux/gcc3.3 reported by Terry Sullivan. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Tue Jun 29 3:02:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Jun 2004 03:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5TA31re098664 for ; Tue, 29 Jun 2004 03:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5TA31xF067454 for ; Tue, 29 Jun 2004 03:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5TA3123024820; Tue, 29 Jun 2004 03:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5TA2v23024814 for ; Tue, 29 Jun 2004 03:02:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5TA2vxF067450 for ; Tue, 29 Jun 2004 03:02:57 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5TA2u8M059022 for ; Tue, 29 Jun 2004 03:02:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5TA2uoI059021; Tue, 29 Jun 2004 03:02:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406291002.i5TA2uoI059021@xorpc.icir.org> Date: Tue, 29 Jun 2004 3:02:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/utils/ runit.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/utils/ Changes by: atanu@xorpc.icir.org. 04/06/29 03:02:56 Modified files: xorp/utils/: runit.cc Log message: Child processes were running to completion and sending a SIGCHLD to the parent. When the signal arrived at the parent it did not have any state about this process. It therefore just printed an error message and continued. The program would then wait forever for this process which has already sent a signal to exit. It seems this happens consistently on Fedora Core 2. Block SIGCHLD signals to the parent during fork and exec, seems to solve the problem. [Reported by Terry Sullivan] [Diagnosed by: Mark Handley] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Tue Jun 29 18:09:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Jun 2004 18:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U1A2re017233 for ; Tue, 29 Jun 2004 18:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U1A1rP080098 for ; Tue, 29 Jun 2004 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5U1A123019536; Tue, 29 Jun 2004 18:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5U19e23019520 for ; Tue, 29 Jun 2004 18:09:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U19erP080087 for ; Tue, 29 Jun 2004 18:09:40 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U19e8M068801 for ; Tue, 29 Jun 2004 18:09:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5U19ekC068800; Tue, 29 Jun 2004 18:09:40 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406300109.i5U19ekC068800@xorpc.icir.org> Date: Tue, 29 Jun 2004 18:09:40 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rt_tab_origin.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 04/06/29 18:09:40 Modified files: xorp/rib/: rt_tab_origin.cc Log message: Fix a memory leak. Previously when adding a route a copy of the route was taken even if the route already existed. Re-order the code so we only make a copy of the route if its new. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Tue Jun 29 19:07:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Jun 2004 19:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U281re033515 for ; Tue, 29 Jun 2004 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U280rP080935 for ; Tue, 29 Jun 2004 19:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5U28023020811; Tue, 29 Jun 2004 19:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5U27A23020794 for ; Tue, 29 Jun 2004 19:07:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U27ArP080929 for ; Tue, 29 Jun 2004 19:07:10 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5U2798M069457 for ; Tue, 29 Jun 2004 19:07:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5U279uf069456; Tue, 29 Jun 2004 19:07:09 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200406300207.i5U279uf069456@xorpc.icir.org> Date: Tue, 29 Jun 2004 19:07:09 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/rib/ Changes by: atanu@xorpc.icir.org. 04/06/29 19:07:09 Modified files: xorp/rib/: rib.cc Log message: The RIB registers interest with the FINDER regarding the status of processes that are feeding it routes. When a protocol such as BGP dies the RIB will be notified. The RIB will then remove all the routes that have been supplied by BGP. Insert a XLOG_INFO so there is an entry in the logfile when the RIB believes a protocol has died. Occasionally the RIB will be sent a delete_route command and the route will not be present: [http://www.xorp.org/bugzilla/show_bug.cgi?id=62] 1) BGP fails to call "eventloop.run()" frequently enough. 2) The FINDER concludes BGP is dead and notifies the RIB. 3) The RIB starts to delete the the routes it received from BGP. 4) BGP comes back to life and sends a delete for a route it had previously added. 5) The RIB no longer has this route oops. If this really is the problem then we should see this entry in the logfile along with the failed delete. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Wed Jun 30 9:42:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jun 2004 09:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UGh1re048984 for ; Wed, 30 Jun 2004 09:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UGh1rP094430 for ; Wed, 30 Jun 2004 09:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5UGh023011437; Wed, 30 Jun 2004 09:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5UGgC23011411 for ; Wed, 30 Jun 2004 09:42:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UGgCrP094420 for ; Wed, 30 Jun 2004 09:42:12 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UGgC8M078521 for ; Wed, 30 Jun 2004 09:42:12 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5UGgCQg078520; Wed, 30 Jun 2004 09:42:12 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406301642.i5UGgCQg078520@xorpc.icir.org> Date: Wed, 30 Jun 2004 9:42:12 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 04/06/30 09:42:12 Modified files: xorp/fea/: README Log message: "fea" -> "xorp_fea" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Wed Jun 30 11:02:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 30 Jun 2004 11:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UI31re068898 for ; Wed, 30 Jun 2004 11:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UI30rP095368 for ; Wed, 30 Jun 2004 11:03:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5UI3023014013; Wed, 30 Jun 2004 11:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i5UI2R23013950 for ; Wed, 30 Jun 2004 11:02:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UI2RrP095363 for ; Wed, 30 Jun 2004 11:02:27 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i5UI2Q8M079320 for ; Wed, 30 Jun 2004 11:02:26 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i5UI2QqG079319; Wed, 30 Jun 2004 11:02:26 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200406301802.i5UI2QqG079319@xorpc.icir.org> Date: Wed, 30 Jun 2004 11:02:26 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 04/06/30 11:02:26 Modified files: xorp/fea/: test_config_interface.sh Log message: Add config for uakari _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Thu Jul 1 22:03:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 01 Jul 2004 22:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62541re078514 for ; Thu, 1 Jul 2004 22:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62541Ls023347 for ; Thu, 1 Jul 2004 22:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6254123004388; Thu, 1 Jul 2004 22:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6253q23004379 for ; Thu, 1 Jul 2004 22:03:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6253qLs023342 for ; Thu, 1 Jul 2004 22:03:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6253p8M097680 for ; Thu, 1 Jul 2004 22:03:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6253pqo097679; Thu, 1 Jul 2004 22:03:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407020503.i6253pqo097679@xorpc.icir.org> Date: Thu, 1 Jul 2004 22:03:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/01 22:03:51 Modified files: xorp/rib/: rib.cc Log message: Compilation fix if DEBUG_LOGGING is enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Fri Jul 2 10:15:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 10:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HG2re050455 for ; Fri, 2 Jul 2004 10:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HG1Ls036063 for ; Fri, 2 Jul 2004 10:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HG123021850; Fri, 2 Jul 2004 10:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HFv23021841 for ; Fri, 2 Jul 2004 10:15:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HFvLs036061 for ; Fri, 2 Jul 2004 10:15:57 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HFv8M006085 for ; Fri, 2 Jul 2004 10:15:57 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62HFv41006084; Fri, 2 Jul 2004 10:15:57 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021715.i62HFv41006084@xorpc.icir.org> Date: Fri, 2 Jul 2004 10:15:56 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/kdoc/src/ kdoc kdocCxxHTML.pm kdocHTMLutil.pm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Repository: other/kdoc/src/ Changes by: hodson@xorpc.icir.org. 04/07/02 10:15:56 Modified files: other/kdoc/src/: kdoc kdocCxxHTML.pm kdocHTMLutil.pm Log message: o Add headers from W3C 4.01 HTML and make generated HTML comply. o Add content type. o Add DIV tags and classes to allow for some CSS customization. o Add html-logo-link command option support so logo can link to www site. o Add 'Top' to navigation menu that goes to top of kdoc documentation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Fri Jul 2 10:18:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 10:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HJ1re051140 for ; Fri, 2 Jul 2004 10:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HJ1Ls036104 for ; Fri, 2 Jul 2004 10:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HJ123021963; Fri, 2 Jul 2004 10:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HIt23021954 for ; Fri, 2 Jul 2004 10:18:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HItLs036099 for ; Fri, 2 Jul 2004 10:18:55 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HIt8M006151 for ; Fri, 2 Jul 2004 10:18:55 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62HIti7006150; Fri, 2 Jul 2004 10:18:55 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021718.i62HIti7006150@xorpc.icir.org> Date: Fri, 2 Jul 2004 10:18:55 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/ gen-kdoc.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/ Changes by: hodson@xorpc.icir.org. 04/07/02 10:18:55 Modified files: xorp/docs/kdoc/: gen-kdoc.sh Log message: o Switch to use xorp-kdoc.css for style. o Add logo link to http://www.xorp.org/. o Fix excludes for libxorp since callback.hh splintered into callback.hh, callback_debug.hh, and callback_nodebug.hh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:06 2005 Subject: No subject Fri Jul 2 10:20:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 10:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HL1re051628 for ; Fri, 2 Jul 2004 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HL1Ls036145 for ; Fri, 2 Jul 2004 10:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HL123022032; Fri, 2 Jul 2004 10:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62HKc23022017 for ; Fri, 2 Jul 2004 10:20:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HKcLs036142 for ; Fri, 2 Jul 2004 10:20:38 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62HKb8M006225 for ; Fri, 2 Jul 2004 10:20:38 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62HKbKu006224; Fri, 2 Jul 2004 10:20:37 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021720.i62HKbKu006224@xorpc.icir.org> Date: Fri, 2 Jul 2004 10:20:37 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/html_templates/ index.html.bottom index.html.entry index.html.top Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/kdoc/html_templates/ Changes by: hodson@xorpc.icir.org. 04/07/02 10:20:37 Modified files: xorp/docs/kdoc/html_templates/: index.html.bottom index.html.entry index.html.top Log message: o Add xorp kdoc style sheet hooks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 11:46:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 11:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Il1re071651 for ; Fri, 2 Jul 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Il1Ls037225 for ; Fri, 2 Jul 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Il123024488; Fri, 2 Jul 2004 11:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62IkM23024476 for ; Fri, 2 Jul 2004 11:46:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62IkMLs037219 for ; Fri, 2 Jul 2004 11:46:22 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62IkM8M006910 for ; Fri, 2 Jul 2004 11:46:22 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62IkM43006909; Fri, 2 Jul 2004 11:46:22 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021846.i62IkM43006909@xorpc.icir.org> Date: Fri, 2 Jul 2004 11:46:22 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: hodson@xorpc.icir.org. 04/07/02 11:46:22 www/html_src Update of /usr/local/www/data/cvs/www/html_src In directory xorpc.icir.org:/tmp/cvs-serv6903/html_src Log Message: Directory /usr/local/www/data/cvs/www/html_src added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 11:47:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 11:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Im1re071885 for ; Fri, 2 Jul 2004 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Im1Ls037237 for ; Fri, 2 Jul 2004 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Im023024523; Fri, 2 Jul 2004 11:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Ilk23024517 for ; Fri, 2 Jul 2004 11:47:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62IlkLs037235 for ; Fri, 2 Jul 2004 11:47:46 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Ilk8M006963 for ; Fri, 2 Jul 2004 11:47:46 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62IljiY006962; Fri, 2 Jul 2004 11:47:45 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021847.i62IljiY006962@xorpc.icir.org> Date: Fri, 2 Jul 2004 11:47:45 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: hodson@xorpc.icir.org. 04/07/02 11:47:45 www/scripts Update of /usr/local/www/data/cvs/www/scripts In directory xorpc.icir.org:/tmp/cvs-serv6956/scripts Log Message: Directory /usr/local/www/data/cvs/www/scripts added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 11:54:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 11:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62It1re073509 for ; Fri, 2 Jul 2004 11:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62It0Ls037317 for ; Fri, 2 Jul 2004 11:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62It023024758; Fri, 2 Jul 2004 11:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62IsE23024736 for ; Fri, 2 Jul 2004 11:54:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62IsELs037314 for ; Fri, 2 Jul 2004 11:54:14 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62IsE8M007158 for ; Fri, 2 Jul 2004 11:54:14 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62IsERD007157; Fri, 2 Jul 2004 11:54:14 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021854.i62IsERD007157@xorpc.icir.org> Date: Fri, 2 Jul 2004 11:54:14 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html downloads.html faq.html getting_started.html index.html license.html livecd.html news.html people.html ./ GNUmakefile README.1st design_docs.html empty.html mailing_lists.html papers.html porting.html xorp-kdoc.css xorp.css www/html_src/ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html ...papers.html ...people.html ...porting.html www/images/ arrow.gif box_bottom2.gif box_top2.gif www/scripts/ .cvsignore XorpOrgGenerator.py ./ docs.html quicklinks.html quotes.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: hodson@xorpc.icir.org. 04/07/02 11:54:14 Modified files: ./: contributing.html cvs.html downloads.html faq.html getting_started.html index.html license.html livecd.html news.html people.html Added files: ./: GNUmakefile README.1st design_docs.html empty.html mailing_lists.html papers.html porting.html xorp-kdoc.css xorp.css www/html_src/: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html www/images/: arrow.gif box_bottom2.gif box_top2.gif www/scripts/: .cvsignore XorpOrgGenerator.py Removed files: ./: docs.html quicklinks.html quotes.html Log message: o Changeover to style sheets and script generated navbar. o Minor refactoring of content. o See README.1st for how to build web pages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 12:27:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JS1re081187 for ; Fri, 2 Jul 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JS1Ls037748 for ; Fri, 2 Jul 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62JS123025778; Fri, 2 Jul 2004 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62JRU23025748 for ; Fri, 2 Jul 2004 12:27:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JRULs037740 for ; Fri, 2 Jul 2004 12:27:30 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JRU8M007586 for ; Fri, 2 Jul 2004 12:27:30 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62JRUVR007585; Fri, 2 Jul 2004 12:27:30 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021927.i62JRUVR007585@xorpc.icir.org> Date: Fri, 2 Jul 2004 12:27:30 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html www/html_src/ downloads.html faq.html getting_started.html www/scripts/ XorpOrgGenerator.py ./ status.html www/html_src/ status.html www/images/ processes3.png Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: hodson@xorpc.icir.org. 04/07/02 12:27:30 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html www/html_src/: downloads.html faq.html getting_started.html www/scripts/: XorpOrgGenerator.py Added files: ./: status.html www/html_src/: status.html www/images/: processes3.png Log message: o Relativize links. o Move status.html and XORP processes diagram into www directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 12:28:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 12:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JT1re081414 for ; Fri, 2 Jul 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JT1Ls037762 for ; Fri, 2 Jul 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62JT123025821; Fri, 2 Jul 2004 12:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62JSg23025807 for ; Fri, 2 Jul 2004 12:28:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JSgLs037756 for ; Fri, 2 Jul 2004 12:28:42 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62JSg8M007613 for ; Fri, 2 Jul 2004 12:28:42 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62JSgke007612; Fri, 2 Jul 2004 12:28:42 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407021928.i62JSgke007612@xorpc.icir.org> Date: Fri, 2 Jul 2004 12:28:42 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ processes3.png status.html index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/ Changes by: hodson@xorpc.icir.org. 04/07/02 12:28:42 Removed files: xorp/docs/: processes3.png status.html index.html Log message: o Remove items duplicated under www. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 14:44:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 14:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Lj2re013437 for ; Fri, 2 Jul 2004 14:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Lj2Ls039480 for ; Fri, 2 Jul 2004 14:45:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Lj023029346; Fri, 2 Jul 2004 14:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62LiF23029330 for ; Fri, 2 Jul 2004 14:44:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62LiFLs039464 for ; Fri, 2 Jul 2004 14:44:15 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62LiF8M008868 for ; Fri, 2 Jul 2004 14:44:15 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62LiFbX008867; Fri, 2 Jul 2004 14:44:15 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407022144.i62LiFbX008867@xorpc.icir.org> Date: Fri, 2 Jul 2004 14:44:15 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/07/02 14:44:15 Modified files: ./: xorp.css Log message: Specify font-size for body. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 14:46:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 14:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Ll1re013924 for ; Fri, 2 Jul 2004 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Ll1Ls039511 for ; Fri, 2 Jul 2004 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Ll123029411; Fri, 2 Jul 2004 14:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62Lkp23029399 for ; Fri, 2 Jul 2004 14:46:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62LkpLs039509 for ; Fri, 2 Jul 2004 14:46:51 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62Lkp8M008988 for ; Fri, 2 Jul 2004 14:46:51 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62Lkpgg008987; Fri, 2 Jul 2004 14:46:51 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407022146.i62Lkpgg008987@xorpc.icir.org> Date: Fri, 2 Jul 2004 14:46:51 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ faq.html index.html license.html www/html_src/ faq.html index.html license.html www/scripts/ XorpOrgGenerator.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: hodson@xorpc.icir.org. 04/07/02 14:46:51 Modified files: ./: faq.html index.html license.html www/html_src/: faq.html index.html license.html www/scripts/: XorpOrgGenerator.py Log message: Rename 'Contributors' to 'Developers' in navigation bar (MJH). Attempt to clarify what XORP is on front page and in FAQ. Clean up license intro spiel and add note about contrib for things under other licenses like OSPFd. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Fri Jul 2 15:27:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 02 Jul 2004 15:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i62MS1re023404 for ; Fri, 2 Jul 2004 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62MS1Ls039878 for ; Fri, 2 Jul 2004 15:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62MS123000435; Fri, 2 Jul 2004 15:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i62MRW23000428 for ; Fri, 2 Jul 2004 15:27:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i62MRWLs039875 for ; Fri, 2 Jul 2004 15:27:32 -0700 (PDT) (envelope-from hodson@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i62MRW8M009355 for ; Fri, 2 Jul 2004 15:27:32 -0700 (PDT) (envelope-from hodson@xorpc.icir.org) Received: (from hodson@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i62MRV5J009354; Fri, 2 Jul 2004 15:27:31 -0700 (PDT) (envelope-from hodson) From: Orion Hodson Message-Id: <200407022227.i62MRV5J009354@xorpc.icir.org> Date: Fri, 2 Jul 2004 15:27:31 () To: xorp-cvs@icir.org Reply-To: hodson@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README.1st Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: hodson@xorpc.icir.org. 04/07/02 15:27:31 Modified files: ./: README.1st Log message: Add notes on how to test and install XORP web pages. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 3:07:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 03:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63A81re086235 for ; Sat, 3 Jul 2004 03:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63A81Xl047100 for ; Sat, 3 Jul 2004 03:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63A8123013196; Sat, 3 Jul 2004 03:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63A7623013185 for ; Sat, 3 Jul 2004 03:07:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63A75Xl047096 for ; Sat, 3 Jul 2004 03:07:05 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63A758M014512 for ; Sat, 3 Jul 2004 03:07:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63A75NI014511; Sat, 3 Jul 2004 03:07:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031007.i63A75NI014511@xorpc.icir.org> Date: Sat, 3 Jul 2004 3:07:04 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 03:07:04 Modified files: ./: xorp.css Log message: Workaround CSS bug in IE 6/Windows XP (the feedback info at the bottom of the page was being displayed way too large). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 3:12:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 03:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AD1re087395 for ; Sat, 3 Jul 2004 03:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AD1Xl047141 for ; Sat, 3 Jul 2004 03:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63AD023013267; Sat, 3 Jul 2004 03:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63ACr23013261 for ; Sat, 3 Jul 2004 03:12:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63ACrXl047139 for ; Sat, 3 Jul 2004 03:12:53 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63ACr8M014610 for ; Sat, 3 Jul 2004 03:12:53 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63ACqIr014609; Sat, 3 Jul 2004 03:12:52 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031012.i63ACqIr014609@xorpc.icir.org> Date: Sat, 3 Jul 2004 3:12:52 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 03:12:52 Modified files: ./: xorp.css Log message: Add a small amount of whitespace above the XORP logo so it's not crammed against the top of the window. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 3:18:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 03:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AJ1re088880 for ; Sat, 3 Jul 2004 03:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AJ0Xl047199 for ; Sat, 3 Jul 2004 03:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63AJ023013348; Sat, 3 Jul 2004 03:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63AIu23013341 for ; Sat, 3 Jul 2004 03:18:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AIuXl047197 for ; Sat, 3 Jul 2004 03:18:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AIu8M014676 for ; Sat, 3 Jul 2004 03:18:56 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63AIuDC014675; Sat, 3 Jul 2004 03:18:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031018.i63AIuDC014675@xorpc.icir.org> Date: Sat, 3 Jul 2004 3:18:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ README.1st Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 03:18:55 Modified files: ./: README.1st Log message: Fix typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 3:54:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 03:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63At1re000377 for ; Sat, 3 Jul 2004 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63At1Xl050334 for ; Sat, 3 Jul 2004 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63At123013988; Sat, 3 Jul 2004 03:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Asf23013977 for ; Sat, 3 Jul 2004 03:54:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AsfXl050329 for ; Sat, 3 Jul 2004 03:54:41 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Asf8M015046 for ; Sat, 3 Jul 2004 03:54:41 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63AsfMN015045; Sat, 3 Jul 2004 03:54:41 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031054.i63AsfMN015045@xorpc.icir.org> Date: Sat, 3 Jul 2004 3:54:41 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 03:54:41 Modified files: ./: xorp.css Log message: Fix formating bug on licence.html (pre font was too large) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 3:56:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 03:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Av1re000853 for ; Sat, 3 Jul 2004 03:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Av1Xl050363 for ; Sat, 3 Jul 2004 03:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Av123014025; Sat, 3 Jul 2004 03:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Aul23014017 for ; Sat, 3 Jul 2004 03:56:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63AukXl050361 for ; Sat, 3 Jul 2004 03:56:46 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Auk8M015095 for ; Sat, 3 Jul 2004 03:56:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63AukmB015094; Sat, 3 Jul 2004 03:56:46 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031056.i63AukmB015094@xorpc.icir.org> Date: Sat, 3 Jul 2004 3:56:46 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 03:56:46 Modified files: www/html_src/: index.html Log message: A little wordsmithing. Add a few more links to the text. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:07 2005 Subject: No subject Sat Jul 3 4:22:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:23:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BN3re006897 for ; Sat, 3 Jul 2004 04:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BN3Xl050629 for ; Sat, 3 Jul 2004 04:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BN223014540; Sat, 3 Jul 2004 04:23:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BMs23014514 for ; Sat, 3 Jul 2004 04:22:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BMsXl050625 for ; Sat, 3 Jul 2004 04:22:54 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BMs8M015334 for ; Sat, 3 Jul 2004 04:22:54 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BMshR015333; Sat, 3 Jul 2004 04:22:54 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031122.i63BMshR015333@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:22:53 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mailing_lists.html www/html_src/ mailing_lists.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 04:22:53 Modified files: ./: mailing_lists.html www/html_src/: mailing_lists.html Log message: Fix formating bug. State that these lists are all at xorp.org _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:29:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BU1re008537 for ; Sat, 3 Jul 2004 04:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BU1Xl050712 for ; Sat, 3 Jul 2004 04:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BU123014662; Sat, 3 Jul 2004 04:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BTP23014648 for ; Sat, 3 Jul 2004 04:29:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BTOXl050702 for ; Sat, 3 Jul 2004 04:29:25 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BTO8M015390 for ; Sat, 3 Jul 2004 04:29:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BTO55015389; Sat, 3 Jul 2004 04:29:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031129.i63BTO55015389@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:29:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mailing_lists.html www/html_src/ mailing_lists.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 04:29:24 Modified files: ./: mailing_lists.html www/html_src/: mailing_lists.html Log message: Fix formatting glitches on narrow windows _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:32:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BX1re009239 for ; Sat, 3 Jul 2004 04:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BX1Xl050750 for ; Sat, 3 Jul 2004 04:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BX123014727; Sat, 3 Jul 2004 04:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BWc23014716 for ; Sat, 3 Jul 2004 04:32:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BWbXl050742 for ; Sat, 3 Jul 2004 04:32:37 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BWb8M015431 for ; Sat, 3 Jul 2004 04:32:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BWbgx015430; Sat, 3 Jul 2004 04:32:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031132.i63BWbgx015430@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:32:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/scripts/ XorpOrgGenerator.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: mjh@xorpc.icir.org. 04/07/03 04:32:37 Modified files: www/scripts/: XorpOrgGenerator.py Log message: Make sure we link to bugzilla on www.xorp.org, even from a mirror site. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:34:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BZ1re009711 for ; Sat, 3 Jul 2004 04:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BZ1Xl050778 for ; Sat, 3 Jul 2004 04:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BZ123014809; Sat, 3 Jul 2004 04:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BYv23014803 for ; Sat, 3 Jul 2004 04:34:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BYvXl050773 for ; Sat, 3 Jul 2004 04:34:57 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BYv8M015463 for ; Sat, 3 Jul 2004 04:34:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BYv76015462; Sat, 3 Jul 2004 04:34:57 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031134.i63BYv76015462@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:34:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 04:34:57 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html Log message: Check in changed generated files (after previous checking to generation script) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:46:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bl1re012515 for ; Sat, 3 Jul 2004 04:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bl1Xl050904 for ; Sat, 3 Jul 2004 04:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Bl123016106; Sat, 3 Jul 2004 04:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BkG23016094 for ; Sat, 3 Jul 2004 04:46:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BkGXl050896 for ; Sat, 3 Jul 2004 04:46:16 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BkG8M015587 for ; Sat, 3 Jul 2004 04:46:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BkGPi015586; Sat, 3 Jul 2004 04:46:16 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031146.i63BkGPi015586@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:46:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 04:46:16 Modified files: ./: xorp.css Log message: Fix formating SNAFU with CSS on Firefox and IE6 when rendering faq.html. Oddly, mozilla displayed this right. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:49:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bo1re013195 for ; Sat, 3 Jul 2004 04:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bo1Xl050923 for ; Sat, 3 Jul 2004 04:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Bo123016359; Sat, 3 Jul 2004 04:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BnN23016274 for ; Sat, 3 Jul 2004 04:49:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BnMXl050918 for ; Sat, 3 Jul 2004 04:49:23 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BnM8M015614 for ; Sat, 3 Jul 2004 04:49:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BnMR1015613; Sat, 3 Jul 2004 04:49:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031149.i63BnMR1015613@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:49:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ design_docs.html www/html_src/ design_docs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 04:49:22 Modified files: ./: design_docs.html www/html_src/: design_docs.html Log message: Fix formatting glitch on narrow windows _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:54:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:56:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bu0re014611 for ; Sat, 3 Jul 2004 04:56:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bu0Xl050998 for ; Sat, 3 Jul 2004 04:56:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Bu023016603; Sat, 3 Jul 2004 04:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Bt023016583 for ; Sat, 3 Jul 2004 04:55:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bt0Xl050974 for ; Sat, 3 Jul 2004 04:55:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bt08M015677 for ; Sat, 3 Jul 2004 04:55:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63Bsx0K015676; Sat, 3 Jul 2004 04:54:59 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031154.i63Bsx0K015676@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:54:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp.css Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 04:54:59 Modified files: ./: xorp.css Log message: Workaround for CSS brokenness in IE 6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 4:58:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 04:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bx1re015296 for ; Sat, 3 Jul 2004 04:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Bx1Xl051020 for ; Sat, 3 Jul 2004 04:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Bx123016685; Sat, 3 Jul 2004 04:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63BwN23016671 for ; Sat, 3 Jul 2004 04:58:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BwNXl051018 for ; Sat, 3 Jul 2004 04:58:23 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63BwM8M015723 for ; Sat, 3 Jul 2004 04:58:23 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63BwMe9015722; Sat, 3 Jul 2004 04:58:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031158.i63BwMe9015722@xorpc.icir.org> Date: Sat, 3 Jul 2004 4:58:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mailing_lists.html www/html_src/ mailing_lists.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 04:58:22 Modified files: ./: mailing_lists.html www/html_src/: mailing_lists.html Log message: Fix typos that seriously confused IE 6 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 6:51:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 06:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Dq1re041304 for ; Sat, 3 Jul 2004 06:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Dq1Xl052111 for ; Sat, 3 Jul 2004 06:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Dq123018920; Sat, 3 Jul 2004 06:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Dpu23018913 for ; Sat, 3 Jul 2004 06:51:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63DpuXl052109 for ; Sat, 3 Jul 2004 06:51:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Dpu8M018980 for ; Sat, 3 Jul 2004 06:51:56 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63DpuP3018979; Sat, 3 Jul 2004 06:51:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031351.i63DpuP3018979@xorpc.icir.org> Date: Sat, 3 Jul 2004 6:51:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/scripts/ XorpOrgGenerator.py www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/scripts/ Changes by: mjh@xorpc.icir.org. 04/07/03 06:51:55 Modified files: www/scripts/: XorpOrgGenerator.py Added files: www/html_src/: mirrors.html Log message: Add page listing mirror site(s) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 6:54:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 06:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Dt1re042007 for ; Sat, 3 Jul 2004 06:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Dt1Xl052145 for ; Sat, 3 Jul 2004 06:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Dt123018995; Sat, 3 Jul 2004 06:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63Ds523018981 for ; Sat, 3 Jul 2004 06:54:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Ds5Xl052129 for ; Sat, 3 Jul 2004 06:54:05 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63Ds58M019007 for ; Sat, 3 Jul 2004 06:54:05 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63Ds5C4019006; Sat, 3 Jul 2004 06:54:05 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031354.i63Ds5C4019006@xorpc.icir.org> Date: Sat, 3 Jul 2004 6:54:05 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/03 06:54:05 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html Log message: Add generated files with link to mirrors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 8:07:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 08:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63F81re058846 for ; Sat, 3 Jul 2004 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63F81Xl054185 for ; Sat, 3 Jul 2004 08:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63F8023020151; Sat, 3 Jul 2004 08:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63F7p23020144 for ; Sat, 3 Jul 2004 08:07:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63F7pXl054182 for ; Sat, 3 Jul 2004 08:07:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63F7p8M019488 for ; Sat, 3 Jul 2004 08:07:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63F7pNo019487; Sat, 3 Jul 2004 08:07:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031507.i63F7pNo019487@xorpc.icir.org> Date: Sat, 3 Jul 2004 8:07:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html livecd.html www/html_src/ downloads.html livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 08:07:51 Modified files: ./: downloads.html livecd.html www/html_src/: downloads.html livecd.html Log message: Provide links to mirror sites. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 8:10:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 08:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FB1re059556 for ; Sat, 3 Jul 2004 08:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FB1Xl054219 for ; Sat, 3 Jul 2004 08:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63FB123020205; Sat, 3 Jul 2004 08:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63FAM23020190 for ; Sat, 3 Jul 2004 08:10:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FAMXl054214 for ; Sat, 3 Jul 2004 08:10:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FAM8M020299 for ; Sat, 3 Jul 2004 08:10:22 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63FAMbn020298; Sat, 3 Jul 2004 08:10:22 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031510.i63FAMbn020298@xorpc.icir.org> Date: Sat, 3 Jul 2004 8:10:22 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html www/html_src/ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 08:10:22 Modified files: ./: livecd.html www/html_src/: livecd.html Log message: Fix typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Sat Jul 3 8:28:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 03 Jul 2004 08:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FT1re065013 for ; Sat, 3 Jul 2004 08:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FT0Xl054389 for ; Sat, 3 Jul 2004 08:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63FT023020488; Sat, 3 Jul 2004 08:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i63FSi23020479 for ; Sat, 3 Jul 2004 08:28:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FSiXl054385 for ; Sat, 3 Jul 2004 08:28:44 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i63FSi8M020980 for ; Sat, 3 Jul 2004 08:28:44 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i63FSiH1020979; Sat, 3 Jul 2004 08:28:44 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407031528.i63FSiH1020979@xorpc.icir.org> Date: Sat, 3 Jul 2004 8:28:44 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/03 08:28:44 Modified files: www/html_src/: mirrors.html Log message: typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Mon Jul 5 14:47:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 05 Jul 2004 14:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i65Lm1re090565 for ; Mon, 5 Jul 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i65Lm1Xl008239 for ; Mon, 5 Jul 2004 14:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i65Lm123020227; Mon, 5 Jul 2004 14:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i65LlN23020217 for ; Mon, 5 Jul 2004 14:47:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i65LlNXl008236 for ; Mon, 5 Jul 2004 14:47:23 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i65LlN8M087997 for ; Mon, 5 Jul 2004 14:47:23 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i65LlNPS087996; Mon, 5 Jul 2004 14:47:23 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407052147.i65LlNPS087996@xorpc.icir.org> Date: Mon, 5 Jul 2004 14:47:23 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_xrl_sockets4_udp.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: mjh@xorpc.icir.org. 04/07/05 14:47:23 Modified files: xorp/fea/: test_xrl_sockets4_udp.sh Log message: Re-write this test to use the usual runit framework, and to call get_xrl_targets on the finder to be sure it's ready before starting the test. Previously the test used a 2 second sleep and then assumed the finder was ready, and it's not clear the finder was always ready when we started the test. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 6 7:03:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 07:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E41re073053 for ; Tue, 6 Jul 2004 07:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E40Xl022970 for ; Tue, 6 Jul 2004 07:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66E4023010646; Tue, 6 Jul 2004 07:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66E3I23010631 for ; Tue, 6 Jul 2004 07:03:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E3IXl022961 for ; Tue, 6 Jul 2004 07:03:18 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E3H8M096085 for ; Tue, 6 Jul 2004 07:03:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i66E3HbB096084; Tue, 6 Jul 2004 07:03:17 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407061403.i66E3HbB096084@xorpc.icir.org> Date: Tue, 6 Jul 2004 7:03:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/06 07:03:17 Modified files: ./: configure.in Log message: Update info about net-snmp patch. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 6 7:08:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 07:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E91re074001 for ; Tue, 6 Jul 2004 07:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E90Xl023056 for ; Tue, 6 Jul 2004 07:09:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66E9023010731; Tue, 6 Jul 2004 07:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66E8p23010724 for ; Tue, 6 Jul 2004 07:08:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E8pXl023052 for ; Tue, 6 Jul 2004 07:08:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i66E8p8M096361 for ; Tue, 6 Jul 2004 07:08:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i66E8p7V096360; Tue, 6 Jul 2004 07:08:51 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407061408.i66E8p7V096360@xorpc.icir.org> Date: Tue, 6 Jul 2004 7:08:51 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/06 07:08:51 Modified files: ./: configure Log message: Update generated file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 6 10:19:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 10:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66HK3re011006 for ; Tue, 6 Jul 2004 10:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66HK3Xl026809 for ; Tue, 6 Jul 2004 10:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66HK123015055; Tue, 6 Jul 2004 10:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66HJO23015035 for ; Tue, 6 Jul 2004 10:19:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66HJOXl026797 for ; Tue, 6 Jul 2004 10:19:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i66HJO8M099569 for ; Tue, 6 Jul 2004 10:19:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i66HJOL0099568; Tue, 6 Jul 2004 10:19:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407061719.i66HJOL0099568@xorpc.icir.org> Date: Tue, 6 Jul 2004 10:19:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html www/html_src/ getting_started.html ./ net-snmp-patch.txt www/html_src/ snmp.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/06 10:19:24 Modified files: ./: getting_started.html www/html_src/: getting_started.html Added files: ./: net-snmp-patch.txt www/html_src/: snmp.html Log message: Add information about net-snmp support. This should probably be checked by someone else to ensure it's sane, so I have NOT made this live on www.xorp.org yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 6 14:06:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 14:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L71re074854 for ; Tue, 6 Jul 2004 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L71Xl029477 for ; Tue, 6 Jul 2004 14:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66L7123021255; Tue, 6 Jul 2004 14:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66L6J23021236 for ; Tue, 6 Jul 2004 14:06:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L6JXl029467 for ; Tue, 6 Jul 2004 14:06:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L6J8M001760 for ; Tue, 6 Jul 2004 14:06:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i66L6JmO001759; Tue, 6 Jul 2004 14:06:19 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407062106.i66L6JmO001759@xorpc.icir.org> Date: Tue, 6 Jul 2004 14:06:19 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ snmp.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/06 14:06:19 Modified files: www/html_src/: snmp.html Log message: * Reshuffle some of the text * Add an URL for the net-snmp-5.0.8 patch _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 6 14:07:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 14:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L81re075092 for ; Tue, 6 Jul 2004 14:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L81Xl029489 for ; Tue, 6 Jul 2004 14:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66L8123021295; Tue, 6 Jul 2004 14:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66L7K23021271 for ; Tue, 6 Jul 2004 14:07:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L7KXl029481 for ; Tue, 6 Jul 2004 14:07:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i66L7K8M001803 for ; Tue, 6 Jul 2004 14:07:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i66L7KfV001802; Tue, 6 Jul 2004 14:07:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407062107.i66L7KfV001802@xorpc.icir.org> Date: Tue, 6 Jul 2004 14:07:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html snmp.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/06 14:07:20 Added files: ./: mirrors.html snmp.html Log message: Add new autogenerated files to the CVS repository. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:08 2005 Subject: No subject Tue Jul 06 14:31:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 06 Jul 2004 14:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i66LW1re080813 for ; Tue, 6 Jul 2004 14:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66LW0Xl029770 for ; Tue, 6 Jul 2004 14:32:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66LW023021903; Tue, 6 Jul 2004 14:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i66LVp23021893 for ; Tue, 6 Jul 2004 14:31:51 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i66LVoXl029768; Tue, 6 Jul 2004 14:31:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i66LVo8U025273; Tue, 6 Jul 2004 14:31:50 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200407062131.i66LVo8U025273@possum.icir.org> To: mjh@icir.org cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: ./ getting_started.html www/html_src/ getting_started.html ./ net-snmp-patch.txt www/html_src/ snmp.html In-Reply-To: Message from Mark Handley of "Tue, 06 Jul 2004 10:19:24." <200407061719.i66HJOL0099568@xorpc.icir.org> Date: Tue, 06 Jul 2004 14:31:50 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: www > Repository: www/html_src/ > Changes by: mjh@xorpc.icir.org. 04/07/06 10:19:24 > > Modified files: > ./: getting_started.html > www/html_src/: getting_started.html > Added files: > ./: net-snmp-patch.txt > www/html_src/: snmp.html > > Log message: > Add information about net-snmp support. This should probably be > checked by someone else to ensure it's sane, so I have NOT made this > live on www.xorp.org yet. I looked into it, and it looks good. I did some text reshuffling and added a bit of extra info, and commited it. The web pages on www.xorp.org are now updated and contain all changes so far. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Wed Jul 7 13:01:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 07 Jul 2004 13:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i67K21re088617 for ; Wed, 7 Jul 2004 13:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i67K21Xl050175 for ; Wed, 7 Jul 2004 13:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i67K2123023680; Wed, 7 Jul 2004 13:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i67K1X23023661 for ; Wed, 7 Jul 2004 13:01:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i67K1VXl050165 for ; Wed, 7 Jul 2004 13:01:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i67K1V8M014502 for ; Wed, 7 Jul 2004 13:01:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i67K1Uom014501; Wed, 7 Jul 2004 13:01:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407072001.i67K1Uom014501@xorpc.icir.org> Date: Wed, 7 Jul 2004 13:01:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_config_interface.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/07/07 13:01:30 Modified files: xorp/fea/: test_config_interface.sh Log message: Bugfix: If the system has IPv6, then the additional tests to run are test_create_address6 and test_enable_disable_address6 instead of test_create_address4 and test_enable_disable_address4. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 16:37:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 16:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i68Nc2re070505 for ; Thu, 8 Jul 2004 16:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i68Nc1Xl073904 for ; Thu, 8 Jul 2004 16:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i68Nc14x004903; Thu, 8 Jul 2004 16:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i68Nbh4x004893 for ; Thu, 8 Jul 2004 16:37:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i68NbhXl073902 for ; Thu, 8 Jul 2004 16:37:43 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i68Nbg8M029369 for ; Thu, 8 Jul 2004 16:37:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i68NbgaI029368; Thu, 8 Jul 2004 16:37:42 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407082337.i68NbgaI029368@xorpc.icir.org> Date: Thu, 8 Jul 2004 16:37:42 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr/ config_guide.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/rtrmgr/ Changes by: atanu@xorpc.icir.org. 04/07/08 16:37:42 Modified files: xorp/docs/rtrmgr/: config_guide.tex Log message: Minor nits. Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 17:41:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 17:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i690g1re086530 for ; Thu, 8 Jul 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i690g1Xl074644 for ; Thu, 8 Jul 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i690g14x006624; Thu, 8 Jul 2004 17:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i690fo4x006615 for ; Thu, 8 Jul 2004 17:41:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i690foXl074637 for ; Thu, 8 Jul 2004 17:41:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i690fn8M029969 for ; Thu, 8 Jul 2004 17:41:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i690fnPg029968; Thu, 8 Jul 2004 17:41:49 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090041.i690fnPg029968@xorpc.icir.org> Date: Thu, 8 Jul 2004 17:41:49 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/08 17:41:49 Modified files: ./: ERRATA Log message: * Remove an entry regarding updating the design documents. * Add an entry regarding a Linux 2.6 kernel Oops. * Update a BGP entry about a BGP error that is triggered by the RIB. * Add a PIM-SM entry. * Update the SNMP entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 20:56:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 20:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i693v1re049482 for ; Thu, 8 Jul 2004 20:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i693v1ms077327 for ; Thu, 8 Jul 2004 20:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i693v04x010725; Thu, 8 Jul 2004 20:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i693u54x010704 for ; Thu, 8 Jul 2004 20:56:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i693u5ms077308 for ; Thu, 8 Jul 2004 20:56:05 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i693u58M031504 for ; Thu, 8 Jul 2004 20:56:05 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i693u5eI031503; Thu, 8 Jul 2004 20:56:05 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090356.i693u5eI031503@xorpc.icir.org> Date: Thu, 8 Jul 2004 20:56:05 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: ./ Changes by: atanu@xorpc.icir.org. 04/07/08 20:56:05 Modified files: ./: ERRATA Log message: Building with the optimizer fails because of the warnings that are generated. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:03:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69441re052292 for ; Thu, 8 Jul 2004 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69441ms077441 for ; Thu, 8 Jul 2004 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694404x010894; Thu, 8 Jul 2004 21:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6943d4x010881 for ; Thu, 8 Jul 2004 21:03:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6943dms077439 for ; Thu, 8 Jul 2004 21:03:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6943c8M031561 for ; Thu, 8 Jul 2004 21:03:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6943cm5031560; Thu, 8 Jul 2004 21:03:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090403.i6943cm5031560@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:03:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:03:38 Modified files: xorp/devnotes/: release_process.txt Log message: Update the release notes according to the lastest refactoring of the web pages: * Prune task 0600 for stopping the cron job that automatically updates the web pages, because we are not automatically updating them anymore * Add a new task 1000 to update www/html_src/status.html * Add a new task 1100 with a list of updates for all web pages. * Add a new task 1150 to regenerate the web pages * Add a new task 1170 to update the web pages on the XORP test web server test.xorp.org * Add a new task 1180 for everyone to verify that the web pages on the test server test.xorp.org are OK * Remove task 1500 for updating the old documentation index xorp/docs/index.html, because now it is in new location www/html_src/design_docs.html, and its update is part of task 1100 * Remove task 1550 for updating the old status web page xorp/docs/status.html, because now it is in new location www/html_src/status.html, and its update is part of task 1100 * Add few "echo" commands for verification purpose when setting the XORP release version, CVS tag, etc. * Change task 2700: instead of restarting the cron job for updating the web page, now we have to explicitly do "cvs update" to update the web pages. * Update task 2900 with the correct announcement list. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:12:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694D1re055087 for ; Thu, 8 Jul 2004 21:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694D1ms077609 for ; Thu, 8 Jul 2004 21:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694D14x011083; Thu, 8 Jul 2004 21:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694Cg4x011075 for ; Thu, 8 Jul 2004 21:12:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694Cgms077601 for ; Thu, 8 Jul 2004 21:12:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694Cg8M031687 for ; Thu, 8 Jul 2004 21:12:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694CgEq031686; Thu, 8 Jul 2004 21:12:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090412.i694CgEq031686@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:12:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:12:42 Modified files: xorp/docs/bgp/: bgp.tex Log message: Change "current (Mar 2003)" to "current (July 2004)" in the text. [By Atanu] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:18:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694J1re057034 for ; Thu, 8 Jul 2004 21:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694J1ms077709 for ; Thu, 8 Jul 2004 21:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694J14x011205; Thu, 8 Jul 2004 21:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694Ia4x011193 for ; Thu, 8 Jul 2004 21:18:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694Iams077700 for ; Thu, 8 Jul 2004 21:18:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694IZ8M031778 for ; Thu, 8 Jul 2004 21:18:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694IZhs031777; Thu, 8 Jul 2004 21:18:35 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090418.i694IZhs031777@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:18:35 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:18:35 Modified files: xorp/devnotes/: release_process.txt Log message: * Update some of the tasks with the right info * Add task 2550 to copy the LiveCD image to the web server. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:39:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694e1re062132 for ; Thu, 8 Jul 2004 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694e0ms077997 for ; Thu, 8 Jul 2004 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694e04x011584; Thu, 8 Jul 2004 21:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694dt4x011578 for ; Thu, 8 Jul 2004 21:39:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694dtms077991 for ; Thu, 8 Jul 2004 21:39:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694dt8M031974 for ; Thu, 8 Jul 2004 21:39:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694dtTU031973; Thu, 8 Jul 2004 21:39:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090439.i694dtTU031973@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:39:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/bgp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:39:55 Modified files: xorp/docs/bgp/: bgp.tex Log message: Update the date and the version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:40:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f1re062409 for ; Thu, 8 Jul 2004 21:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f1ms078038 for ; Thu, 8 Jul 2004 21:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694f14x011625; Thu, 8 Jul 2004 21:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694eE4x011596 for ; Thu, 8 Jul 2004 21:40:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694eDms078021 for ; Thu, 8 Jul 2004 21:40:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694eD8M032026 for ; Thu, 8 Jul 2004 21:40:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694eDls032025; Thu, 8 Jul 2004 21:40:13 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090440.i694eDls032025@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:40:13 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch/ design_arch.tex error_handling.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/design_arch/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:40:13 Modified files: xorp/docs/design_arch/: design_arch.tex error_handling.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:40:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f2re062432 for ; Thu, 8 Jul 2004 21:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f1ms078042 for ; Thu, 8 Jul 2004 21:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694f14x011636; Thu, 8 Jul 2004 21:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694eR4x011603 for ; Thu, 8 Jul 2004 21:40:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694eQms078023 for ; Thu, 8 Jul 2004 21:40:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694eQ8M032053 for ; Thu, 8 Jul 2004 21:40:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694eQoG032052; Thu, 8 Jul 2004 21:40:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090440.i694eQoG032052@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:40:26 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/ fea.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/fea/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:40:26 Modified files: xorp/docs/fea/: fea.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:40:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f2re062447 for ; Thu, 8 Jul 2004 21:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f2ms078046 for ; Thu, 8 Jul 2004 21:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694f24x011647; Thu, 8 Jul 2004 21:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694eq4x011616 for ; Thu, 8 Jul 2004 21:40:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694epms078029 for ; Thu, 8 Jul 2004 21:40:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694ep8M032080 for ; Thu, 8 Jul 2004 21:40:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694epSa032079; Thu, 8 Jul 2004 21:40:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090440.i694epSa032079@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:40:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ errors.txt finder_command_line.txt security.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:40:51 Modified files: xorp/docs/libxipc/: errors.txt finder_command_line.txt security.txt Log message: Add the XORP CVS tag. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:41:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g1re062701 for ; Thu, 8 Jul 2004 21:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g1ms078079 for ; Thu, 8 Jul 2004 21:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694g14x011685; Thu, 8 Jul 2004 21:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694f74x011658 for ; Thu, 8 Jul 2004 21:41:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f7ms078054 for ; Thu, 8 Jul 2004 21:41:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694f78M032120 for ; Thu, 8 Jul 2004 21:41:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694f7aI032119; Thu, 8 Jul 2004 21:41:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090441.i694f7aI032119@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:41:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ libxipc_overview.tex xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:41:07 Modified files: xorp/docs/libxipc/: libxipc_overview.tex xrl_interfaces.tex Log message: Update the date and the version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:41:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g2re062716 for ; Thu, 8 Jul 2004 21:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g2ms078083 for ; Thu, 8 Jul 2004 21:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694g24x011696; Thu, 8 Jul 2004 21:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694fQ4x011664 for ; Thu, 8 Jul 2004 21:41:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fPms078068 for ; Thu, 8 Jul 2004 21:41:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fP8M032162 for ; Thu, 8 Jul 2004 21:41:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694fPZk032161; Thu, 8 Jul 2004 21:41:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090441.i694fPZk032161@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:41:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp/ libxorp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:41:25 Modified files: xorp/docs/libxorp/: libxorp_overview.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:41:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g3re062731 for ; Thu, 8 Jul 2004 21:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g3ms078087 for ; Thu, 8 Jul 2004 21:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694g34x011707; Thu, 8 Jul 2004 21:42:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694fj4x011672 for ; Thu, 8 Jul 2004 21:41:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fjms078072 for ; Thu, 8 Jul 2004 21:41:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fi8M032189 for ; Thu, 8 Jul 2004 21:41:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694fiXI032188; Thu, 8 Jul 2004 21:41:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090441.i694fiXI032188@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:41:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea/ mfea_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mfea/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:41:44 Modified files: xorp/docs/mfea/: mfea_arch.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:41:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:42:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g4re062746 for ; Thu, 8 Jul 2004 21:42:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694g4ms078090 for ; Thu, 8 Jul 2004 21:42:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694g44x011718; Thu, 8 Jul 2004 21:42:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694fu4x011678 for ; Thu, 8 Jul 2004 21:41:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fums078075 for ; Thu, 8 Jul 2004 21:41:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694fu8M032216 for ; Thu, 8 Jul 2004 21:41:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694fuU0032215; Thu, 8 Jul 2004 21:41:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090441.i694fuU0032215@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:41:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp/ mld6igmp_arch.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/mld6igmp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:41:56 Modified files: xorp/docs/mld6igmp/: mld6igmp_arch.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:42:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h1re063000 for ; Thu, 8 Jul 2004 21:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h1ms078128 for ; Thu, 8 Jul 2004 21:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694h14x011752; Thu, 8 Jul 2004 21:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694gP4x011733 for ; Thu, 8 Jul 2004 21:42:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694gPms078109 for ; Thu, 8 Jul 2004 21:42:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694gP8M032275 for ; Thu, 8 Jul 2004 21:42:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694gPab032274; Thu, 8 Jul 2004 21:42:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090442.i694gPab032274@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:42:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast/ multicast_arch.tex xorp/docs/pim/ pim_arch.tex xorp/docs/pim_testsuite/ pim_testsuite.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/pim_testsuite/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:42:25 Modified files: xorp/docs/multicast/: multicast_arch.tex xorp/docs/pim/: pim_arch.tex xorp/docs/pim_testsuite/: pim_testsuite.tex Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:42:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h2re063015 for ; Thu, 8 Jul 2004 21:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h2ms078131 for ; Thu, 8 Jul 2004 21:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694h24x011763; Thu, 8 Jul 2004 21:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694gs4x011744 for ; Thu, 8 Jul 2004 21:42:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694gsms078126 for ; Thu, 8 Jul 2004 21:42:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694gs8M032335 for ; Thu, 8 Jul 2004 21:42:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694gsgd032334; Thu, 8 Jul 2004 21:42:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090442.i694gsgd032334@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:42:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex xorp/docs/rtrmgr/ rtrmgr.tex xorpsh_userguide.tex xorp/docs/snmp/ snmp_overview.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/snmp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:42:54 Modified files: xorp/docs/rib/: rib.tex xorp/docs/rtrmgr/: rtrmgr.tex xorpsh_userguide.tex xorp/docs/snmp/: snmp_overview.tex Log message: update the date _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:43:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694i0re063390 for ; Thu, 8 Jul 2004 21:44:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694i0ms078163 for ; Thu, 8 Jul 2004 21:44:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694i04x011803; Thu, 8 Jul 2004 21:44:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694h84x011776 for ; Thu, 8 Jul 2004 21:43:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h8ms078137 for ; Thu, 8 Jul 2004 21:43:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694h88M032362 for ; Thu, 8 Jul 2004 21:43:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694h84X032361; Thu, 8 Jul 2004 21:43:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090443.i694h84X032361@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:43:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness/ test_harness.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/test_harness/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:43:08 Modified files: xorp/docs/test_harness/: test_harness.tex Log message: Update the date and the version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:43:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694i1re063417 for ; Thu, 8 Jul 2004 21:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694i1ms078165 for ; Thu, 8 Jul 2004 21:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694i14x011814; Thu, 8 Jul 2004 21:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694hs4x011795 for ; Thu, 8 Jul 2004 21:43:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694hsms078160 for ; Thu, 8 Jul 2004 21:43:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694hs8M032415 for ; Thu, 8 Jul 2004 21:43:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694hsIn032414; Thu, 8 Jul 2004 21:43:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090443.i694hsIn032414@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:43:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 21:43:54 Modified files: xorp/devnotes/: release_process.txt Log message: Add verification commands to task 0500. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:46:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694l1re064591 for ; Thu, 8 Jul 2004 21:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694l0ms078238 for ; Thu, 8 Jul 2004 21:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694l04x011871; Thu, 8 Jul 2004 21:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694kr4x011859 for ; Thu, 8 Jul 2004 21:46:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694kqms078235 for ; Thu, 8 Jul 2004 21:46:52 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694kq8M032514 for ; Thu, 8 Jul 2004 21:46:52 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694kqg7032513; Thu, 8 Jul 2004 21:46:52 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090446.i694kqg7032513@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:46:52 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html snmp.html www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/08 21:46:52 Modified files: ./: index.html snmp.html www/html_src/: index.html Log message: * 1.0 Release is here. * Ask for feedback from users. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:09 2005 Subject: No subject Thu Jul 8 21:51:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 21:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i694q1re066389 for ; Thu, 8 Jul 2004 21:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694q1ms078333 for ; Thu, 8 Jul 2004 21:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694q14x011963; Thu, 8 Jul 2004 21:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i694p74x011947 for ; Thu, 8 Jul 2004 21:51:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i694p7ms078321 for ; Thu, 8 Jul 2004 21:51:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i694p78M032667 for ; Thu, 8 Jul 2004 21:51:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i694p7Pj032666; Thu, 8 Jul 2004 21:51:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090451.i694p7Pj032666@xorpc.icir.org> Date: Thu, 8 Jul 2004 21:51:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/08 21:51:07 Modified files: ./: index.html www/html_src/: index.html Log message: * Remove commented out html seemed to confuse konqueror. * -> _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:04:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69551re071475 for ; Thu, 8 Jul 2004 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69551ms078550 for ; Thu, 8 Jul 2004 22:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695514x012240; Thu, 8 Jul 2004 22:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695484x012225 for ; Thu, 8 Jul 2004 22:04:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69547ms078536 for ; Thu, 8 Jul 2004 22:04:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695478M032869 for ; Thu, 8 Jul 2004 22:04:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i69547tX032868; Thu, 8 Jul 2004 22:04:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090504.i69547tX032868@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:04:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:04:07 Modified files: ./: index.html www/html_src/: index.html Log message: * Add the 1.0 release date * Lose mailto: and replace the feedback mail address with a more obscure one. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:17:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695I1re074684 for ; Thu, 8 Jul 2004 22:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695I1ms078814 for ; Thu, 8 Jul 2004 22:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695I14x012498; Thu, 8 Jul 2004 22:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Hp4x012492 for ; Thu, 8 Jul 2004 22:17:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Hpms078809 for ; Thu, 8 Jul 2004 22:17:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Hp8M033174 for ; Thu, 8 Jul 2004 22:17:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695HpZc033173; Thu, 8 Jul 2004 22:17:51 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090517.i695HpZc033173@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:17:51 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/08 22:17:51 Modified files: ./: index.html www/html_src/: index.html Log message: Put back the links to the Live CD and the source code. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:21:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695M1re075652 for ; Thu, 8 Jul 2004 22:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695M0ms078922 for ; Thu, 8 Jul 2004 22:22:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695M04x012562; Thu, 8 Jul 2004 22:22:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Lr4x012553 for ; Thu, 8 Jul 2004 22:21:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Lqms078918 for ; Thu, 8 Jul 2004 22:21:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Lq8M033275 for ; Thu, 8 Jul 2004 22:21:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695LqMU033274; Thu, 8 Jul 2004 22:21:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090521.i695LqMU033274@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:21:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/bgp/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:21:52 Modified files: xorp/bgp/: README Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:22:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N1re075900 for ; Thu, 8 Jul 2004 22:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N1ms078959 for ; Thu, 8 Jul 2004 22:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695N14x012602; Thu, 8 Jul 2004 22:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695M94x012574 for ; Thu, 8 Jul 2004 22:22:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695M9ms078930 for ; Thu, 8 Jul 2004 22:22:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695M98M033307 for ; Thu, 8 Jul 2004 22:22:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695M98L033306; Thu, 8 Jul 2004 22:22:09 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090522.i695M98L033306@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:22:09 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:22:09 Modified files: xorp/cli/: README Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:22:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N2re075917 for ; Thu, 8 Jul 2004 22:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N1ms078961 for ; Thu, 8 Jul 2004 22:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695N14x012613; Thu, 8 Jul 2004 22:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695MR4x012581 for ; Thu, 8 Jul 2004 22:22:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695MRms078942 for ; Thu, 8 Jul 2004 22:22:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695MR8M033339 for ; Thu, 8 Jul 2004 22:22:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695MRWN033338; Thu, 8 Jul 2004 22:22:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090522.i695MRWN033338@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:22:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ README.mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fea/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:22:27 Modified files: xorp/fea/: README.mfea Log message: Update the date. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:22:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:23:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N3re075946 for ; Thu, 8 Jul 2004 22:23:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695N2ms078963 for ; Thu, 8 Jul 2004 22:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695N24x012624; Thu, 8 Jul 2004 22:23:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Mm4x012593 for ; Thu, 8 Jul 2004 22:22:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Mmms078948 for ; Thu, 8 Jul 2004 22:22:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Mm8M033366 for ; Thu, 8 Jul 2004 22:22:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695Mmjv033365; Thu, 8 Jul 2004 22:22:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090522.i695Mmjv033365@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:22:47 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ README Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:22:47 Modified files: xorp/pim/: README Log message: * Update the date * Fix the URL to the design document. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:25:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Q1re076864 for ; Thu, 8 Jul 2004 22:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Q1ms079047 for ; Thu, 8 Jul 2004 22:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Q14x012680; Thu, 8 Jul 2004 22:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695P04x012659 for ; Thu, 8 Jul 2004 22:25:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695P0ms079016 for ; Thu, 8 Jul 2004 22:25:00 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695P08M033433 for ; Thu, 8 Jul 2004 22:25:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695P0Vu033432; Thu, 8 Jul 2004 22:25:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090525.i695P0Vu033432@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:25:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html www/html_src/ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/08 22:25:00 Modified files: ./: news.html www/html_src/: news.html Log message: 1.0 Release is here. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:28:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695T1re077629 for ; Thu, 8 Jul 2004 22:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695T0ms079089 for ; Thu, 8 Jul 2004 22:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695T04x012761; Thu, 8 Jul 2004 22:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Sa4x012752 for ; Thu, 8 Jul 2004 22:28:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Sams079081 for ; Thu, 8 Jul 2004 22:28:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Sa8M033519 for ; Thu, 8 Jul 2004 22:28:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695SasS033518; Thu, 8 Jul 2004 22:28:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090528.i695SasS033518@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:28:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:28:36 Modified files: xorp/devnotes/: release_process.txt Log message: Remove "-f GNUmakefile" as an argument to gmake, because it is GNUmakefile is one of the makefiles used by default by gmake. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:29:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695U1re077887 for ; Thu, 8 Jul 2004 22:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695U1ms079121 for ; Thu, 8 Jul 2004 22:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695U14x012787; Thu, 8 Jul 2004 22:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695Tv4x012781 for ; Thu, 8 Jul 2004 22:29:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Tvms079115 for ; Thu, 8 Jul 2004 22:29:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695Tv8M033586 for ; Thu, 8 Jul 2004 22:29:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695TvWP033585; Thu, 8 Jul 2004 22:29:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090529.i695TvWP033585@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:29:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ status.html www/html_src/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:29:57 Modified files: ./: status.html www/html_src/: status.html Log message: June -> July. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 22:43:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 22:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i695i1re081357 for ; Thu, 8 Jul 2004 22:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695i1ms079352 for ; Thu, 8 Jul 2004 22:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695i14x013070; Thu, 8 Jul 2004 22:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i695hO4x013052 for ; Thu, 8 Jul 2004 22:43:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i695hNms079342 for ; Thu, 8 Jul 2004 22:43:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i695hN8M033754 for ; Thu, 8 Jul 2004 22:43:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i695hNaI033753; Thu, 8 Jul 2004 22:43:23 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090543.i695hNaI033753@xorpc.icir.org> Date: Thu, 8 Jul 2004 22:43:23 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/08 22:43:23 Modified files: ./: RELEASE_NOTES Log message: Release 1.0RC -> Release 1.0 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:02:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69631re085273 for ; Thu, 8 Jul 2004 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69631ms079674 for ; Thu, 8 Jul 2004 23:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696314x013483; Thu, 8 Jul 2004 23:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6962b4x013457 for ; Thu, 8 Jul 2004 23:02:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6962ams079668 for ; Thu, 8 Jul 2004 23:02:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6962a8M033937 for ; Thu, 8 Jul 2004 23:02:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6962aJt033936; Thu, 8 Jul 2004 23:02:36 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090602.i6962aJt033936@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:02:36 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ design_docs.html www/html_src/ design_docs.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:02:36 Modified files: ./: design_docs.html www/html_src/: design_docs.html Log message: * Add an entry for XORP Configuration Guide * Update the date and the release version. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:04:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69651re085675 for ; Thu, 8 Jul 2004 23:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69651ms079705 for ; Thu, 8 Jul 2004 23:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696514x013535; Thu, 8 Jul 2004 23:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696424x013512 for ; Thu, 8 Jul 2004 23:04:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69642ms079690 for ; Thu, 8 Jul 2004 23:04:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696428M033983 for ; Thu, 8 Jul 2004 23:04:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6964291033982; Thu, 8 Jul 2004 23:04:02 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090604.i6964291033982@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:04:02 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html www/html_src/ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:04:02 Modified files: ./: downloads.html www/html_src/: downloads.html Log message: * Move 1.0-RC entry to "earlier releases" * Add an entry fro release-1.0 as the latest release. * Update the date and version for the latest release. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:04:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69652re085690 for ; Thu, 8 Jul 2004 23:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69652ms079707 for ; Thu, 8 Jul 2004 23:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696524x013546; Thu, 8 Jul 2004 23:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6964V4x013519 for ; Thu, 8 Jul 2004 23:04:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6964Vms079697 for ; Thu, 8 Jul 2004 23:04:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6964V8M034024 for ; Thu, 8 Jul 2004 23:04:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6964V5x034023; Thu, 8 Jul 2004 23:04:31 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090604.i6964V5x034023@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:04:31 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ getting_started.html www/html_src/ getting_started.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:04:31 Modified files: ./: getting_started.html www/html_src/: getting_started.html Log message: A nit: 1.0RC -> 1.0-RC _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:06:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i69671re086108 for ; Thu, 8 Jul 2004 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69671ms079763 for ; Thu, 8 Jul 2004 23:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696704x013596; Thu, 8 Jul 2004 23:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696694x013568 for ; Thu, 8 Jul 2004 23:06:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i69669ms079750 for ; Thu, 8 Jul 2004 23:06:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696688M034152 for ; Thu, 8 Jul 2004 23:06:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i69668fq034151; Thu, 8 Jul 2004 23:06:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090606.i69668fq034151@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:06:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ status.html www/html_src/ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:06:08 Modified files: ./: status.html www/html_src/: status.html Log message: "Release Candidate" -> "Release" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:12:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:13:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696D0re087291 for ; Thu, 8 Jul 2004 23:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696D0ms079868 for ; Thu, 8 Jul 2004 23:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696D04x013731; Thu, 8 Jul 2004 23:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Cr4x013724 for ; Thu, 8 Jul 2004 23:12:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Crms079866 for ; Thu, 8 Jul 2004 23:12:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Cr8M034266 for ; Thu, 8 Jul 2004 23:12:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696Crlt034265; Thu, 8 Jul 2004 23:12:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090612.i696Crlt034265@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:12:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html www/html_src/ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:12:53 Modified files: ./: downloads.html www/html_src/: downloads.html Log message: Move the reference to the mirror sites. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:23:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:24:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696O0re089414 for ; Thu, 8 Jul 2004 23:24:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696O0ms080027 for ; Thu, 8 Jul 2004 23:24:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696O04x013992; Thu, 8 Jul 2004 23:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Nb4x013980 for ; Thu, 8 Jul 2004 23:23:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Nbms080021 for ; Thu, 8 Jul 2004 23:23:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Nb8M034381 for ; Thu, 8 Jul 2004 23:23:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696Nbkh034380; Thu, 8 Jul 2004 23:23:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090623.i696Nbkh034380@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:23:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:23:37 Modified files: xorp/devnotes/: release_process.txt Log message: Add task 1270 for updating file xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:25:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:26:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Q0re089811 for ; Thu, 8 Jul 2004 23:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Q0ms080083 for ; Thu, 8 Jul 2004 23:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Q04x014038; Thu, 8 Jul 2004 23:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Pc4x014027 for ; Thu, 8 Jul 2004 23:25:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Pcms080077 for ; Thu, 8 Jul 2004 23:25:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Pc8M034435 for ; Thu, 8 Jul 2004 23:25:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696PcBO034434; Thu, 8 Jul 2004 23:25:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090625.i696PcBO034434@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:25:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:25:38 Modified files: xorp/devnotes/: release_process.txt Log message: Nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:35:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Z2re091580 for ; Thu, 8 Jul 2004 23:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Z1ms080220 for ; Thu, 8 Jul 2004 23:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Z14x014353; Thu, 8 Jul 2004 23:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696Z04x014346 for ; Thu, 8 Jul 2004 23:35:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Z0ms080215 for ; Thu, 8 Jul 2004 23:35:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696Z08M034497 for ; Thu, 8 Jul 2004 23:35:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696Z0ZU034496; Thu, 8 Jul 2004 23:35:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090635.i696Z0ZU034496@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:35:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ VERSION configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:35:00 Modified files: ./: VERSION configure configure.in Log message: "Prepare XORP for release: bump-up version number to 1.0 _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:40:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696f1re092762 for ; Thu, 8 Jul 2004 23:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696f0ms080345 for ; Thu, 8 Jul 2004 23:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696f04x014476; Thu, 8 Jul 2004 23:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696e74x014449 for ; Thu, 8 Jul 2004 23:40:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696e7ms080325 for ; Thu, 8 Jul 2004 23:40:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696e78M034588 for ; Thu, 8 Jul 2004 23:40:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696e7oE034587; Thu, 8 Jul 2004 23:40:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090640.i696e7oE034587@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:40:07 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/scripts/ XorpOrgGenerator.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/scripts/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:40:07 Modified files: www/scripts/: XorpOrgGenerator.py Log message: * "CLI Manual" -> "CLI Manual (PDF)" in the navigation bar * Add new entry "Configuration Guide (PDF)" to the navigation bar _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:10 2005 Subject: No subject Thu Jul 8 23:40:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:41:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696f3re092777 for ; Thu, 8 Jul 2004 23:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696f3ms080349 for ; Thu, 8 Jul 2004 23:41:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696f24x014487; Thu, 8 Jul 2004 23:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696ef4x014465 for ; Thu, 8 Jul 2004 23:40:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696efms080339 for ; Thu, 8 Jul 2004 23:40:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696ef8M034647 for ; Thu, 8 Jul 2004 23:40:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696ef1c034646; Thu, 8 Jul 2004 23:40:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090640.i696ef1c034646@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:40:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html ...status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:40:41 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html status.html Log message: Regenerate with the updated navigation bar. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Thu Jul 8 23:52:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696r1re095152 for ; Thu, 8 Jul 2004 23:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696r1ms080578 for ; Thu, 8 Jul 2004 23:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696r04x014767; Thu, 8 Jul 2004 23:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696qH4x014748 for ; Thu, 8 Jul 2004 23:52:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696qHms080572 for ; Thu, 8 Jul 2004 23:52:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696qH8M034855 for ; Thu, 8 Jul 2004 23:52:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696qHtj034854; Thu, 8 Jul 2004 23:52:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090652.i696qHtj034854@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:52:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:52:17 Modified files: xorp/devnotes/: release_process.txt Log message: Add an extra "gmake" command when generating the documentation This is needed "just-in-case" to satisfy the file dependency because sometimes the file timestamps of the original source files somehow appear newer than the timestamps of the generated files. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Thu Jul 8 23:53:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 08 Jul 2004 23:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i696s1re095387 for ; Thu, 8 Jul 2004 23:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696s1ms080597 for ; Thu, 8 Jul 2004 23:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696s14x014820; Thu, 8 Jul 2004 23:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i696rx4x014814 for ; Thu, 8 Jul 2004 23:53:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i696rxms080595 for ; Thu, 8 Jul 2004 23:53:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i696rx8M034892 for ; Thu, 8 Jul 2004 23:53:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i696rxkK034891; Thu, 8 Jul 2004 23:53:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090653.i696rxkK034891@xorpc.icir.org> Date: Thu, 8 Jul 2004 23:53:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/08 23:53:59 Modified files: xorp/devnotes/: release_process.txt Log message: Fix a bug in an echo command. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Fri Jul 9 0:16:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 Jul 2004 00:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i697H1re000504 for ; Fri, 9 Jul 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i697H1ms081045 for ; Fri, 9 Jul 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i697H14x015358; Fri, 9 Jul 2004 00:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i697GR4x015344 for ; Fri, 9 Jul 2004 00:16:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i697GQms081039 for ; Fri, 9 Jul 2004 00:16:26 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i697GQ8M035269 for ; Fri, 9 Jul 2004 00:16:26 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i697GQhM035268; Fri, 9 Jul 2004 00:16:26 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407090716.i697GQhM035268@xorpc.icir.org> Date: Fri, 9 Jul 2004 0:16:26 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/ route_table_nhlookup.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/bgp/ Changes by: atanu@xorpc.icir.org. 04/07/09 00:16:26 Modified files: xorp/bgp/: route_table_nhlookup.cc Log message: Initialise variable and slightly refactor code to deal with warning generated when the optimizer is used. [Reported by: João Carlos Mendes Luís] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Fri Jul 9 0:22:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 09 Jul 2004 00:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i697N1re001747 for ; Fri, 9 Jul 2004 00:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i697N1ms081132 for ; Fri, 9 Jul 2004 00:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i697N14x015493; Fri, 9 Jul 2004 00:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i697MW4x015476 for ; Fri, 9 Jul 2004 00:22:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i697MWms081125 for ; Fri, 9 Jul 2004 00:22:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i697MW8M035372 for ; Fri, 9 Jul 2004 00:22:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i697MWpA035371; Fri, 9 Jul 2004 00:22:32 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407090722.i697MWpA035371@xorpc.icir.org> Date: Fri, 9 Jul 2004 0:22:32 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ ERRATA Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/09 00:22:32 Modified files: ./: ERRATA Log message: Remove an ERRATA entry about running "./configure --enable-optimize" because the problem has been fixed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Sun Jul 11 11:57:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 11 Jul 2004 11:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6BIw1re027380 for ; Sun, 11 Jul 2004 11:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6BIw1ms027156 for ; Sun, 11 Jul 2004 11:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6BIw14x024681; Sun, 11 Jul 2004 11:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6BIvJ4x024669 for ; Sun, 11 Jul 2004 11:57:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6BIvJms027154 for ; Sun, 11 Jul 2004 11:57:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6BIvI8M075084 for ; Sun, 11 Jul 2004 11:57:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6BIvIsW075083; Sun, 11 Jul 2004 11:57:18 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407111857.i6BIvIsW075083@xorpc.icir.org> Date: Sun, 11 Jul 2004 11:57:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html www/html_src/ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/11 11:57:18 Modified files: ./: news.html www/html_src/: news.html Log message: Mention slashdot _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 12:27:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CJS1re020708 for ; Mon, 12 Jul 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CJS0ms046906 for ; Mon, 12 Jul 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CJS04x023343; Mon, 12 Jul 2004 12:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CJRU4x023319 for ; Mon, 12 Jul 2004 12:27:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CJRUms046902 for ; Mon, 12 Jul 2004 12:27:30 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CJRT8M089443 for ; Mon, 12 Jul 2004 12:27:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6CJRTre089442; Mon, 12 Jul 2004 12:27:29 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407121927.i6CJRTre089442@xorpc.icir.org> Date: Mon, 12 Jul 2004 12:27:29 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ xorp_vision.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/12 12:27:29 Added files: www/html_src/: xorp_vision.html Log message: Incomplete - not to be linked to. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 13:07:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 13:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CK82re028641 for ; Mon, 12 Jul 2004 13:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CK82ms047417 for ; Mon, 12 Jul 2004 13:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CK814x024443; Mon, 12 Jul 2004 13:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CK804x024435 for ; Mon, 12 Jul 2004 13:08:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CK80ms047415 for ; Mon, 12 Jul 2004 13:08:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CK7x8M089825 for ; Mon, 12 Jul 2004 13:07:59 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6CK7x5u089824; Mon, 12 Jul 2004 13:07:59 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407122007.i6CK7x5u089824@xorpc.icir.org> Date: Mon, 12 Jul 2004 13:07:59 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ xorp_vision.html ./ xorp_vision.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/12 13:07:59 Modified files: www/html_src/: xorp_vision.html Added files: ./: xorp_vision.html Log message: Add rest of sections. Correct typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 15:06:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 15:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CM71re052249 for ; Mon, 12 Jul 2004 15:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CM71ms048881 for ; Mon, 12 Jul 2004 15:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CM704x027492; Mon, 12 Jul 2004 15:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CM6B4x027462 for ; Mon, 12 Jul 2004 15:06:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CM6Bms048872 for ; Mon, 12 Jul 2004 15:06:11 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CM6B8M090850 for ; Mon, 12 Jul 2004 15:06:11 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6CM6B5M090849; Mon, 12 Jul 2004 15:06:11 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407122206.i6CM6B5M090849@xorpc.icir.org> Date: Mon, 12 Jul 2004 15:06:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ livecd.html www/html_src/ livecd.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/12 15:06:11 Modified files: ./: livecd.html www/html_src/: livecd.html Log message: Add MD5 checksum to download page. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 15:10:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 15:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CMB1re053071 for ; Mon, 12 Jul 2004 15:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CMB1ms048934 for ; Mon, 12 Jul 2004 15:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CMB14x027595; Mon, 12 Jul 2004 15:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6CMAv4x027589 for ; Mon, 12 Jul 2004 15:10:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CMAvms048932 for ; Mon, 12 Jul 2004 15:10:57 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6CMAv8M090906 for ; Mon, 12 Jul 2004 15:10:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6CMAvL3090905; Mon, 12 Jul 2004 15:10:57 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407122210.i6CMAvL3090905@xorpc.icir.org> Date: Mon, 12 Jul 2004 15:10:57 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ downloads.html www/html_src/ downloads.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/12 15:10:57 Modified files: ./: downloads.html www/html_src/: downloads.html Log message: Add MD5 checksum for 1.0 release tarball. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 18:53:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 18:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1s1re098844 for ; Mon, 12 Jul 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1s1ms051343 for ; Mon, 12 Jul 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D1s14x003025; Mon, 12 Jul 2004 18:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D1rI4x002996 for ; Mon, 12 Jul 2004 18:53:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1rIms051333 for ; Mon, 12 Jul 2004 18:53:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1rH8M092269 for ; Mon, 12 Jul 2004 18:53:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6D1rHJt092268; Mon, 12 Jul 2004 18:53:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407130153.i6D1rHJt092268@xorpc.icir.org> Date: Mon, 12 Jul 2004 18:53:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ heap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/12 18:53:17 Modified files: xorp/libxorp/: heap.cc Log message: Bug fix: Fix the ordering of the heap entries when they have the same key value. Now if we push into the heap several entries with exactly same key value, when we pull them from the top of the heap, the pull order is the same as the push order (i.e., FIFO). Previously the order for entries with same key value was LIFO. However, this creates a problem if we schedule 2+ timers at the same time, and they have the same timeout value. If the program assumes that the timers will timeout in the order they were scheduled, the implementation invalidates this assumption. Typically, this problem is not revealed on FreeBSD and Linux, because two timers scheduled one-after-another with exactly same relative timeout value will have absolute timeout value spaced by several microseconds. However, this problem can show-up on systems that have coarse granularity of the system gettimeofday() equivalent. E.g., in vxworks/Motorola PowerPC860 clock_gettime() is incremented at 60Hz by default, i.e., 17ms. [Bug report, info and fix by "edrt" ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Mon Jul 12 18:53:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 12 Jul 2004 18:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1s3re098859 for ; Mon, 12 Jul 2004 18:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1s2ms051345 for ; Mon, 12 Jul 2004 18:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D1s24x003036; Mon, 12 Jul 2004 18:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D1ro4x003012 for ; Mon, 12 Jul 2004 18:53:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1roms051341 for ; Mon, 12 Jul 2004 18:53:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D1ro8M092304 for ; Mon, 12 Jul 2004 18:53:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6D1rooS092303; Mon, 12 Jul 2004 18:53:50 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407130153.i6D1rooS092303@xorpc.icir.org> Date: Mon, 12 Jul 2004 18:53:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ .cvsignore Makefile.am Makefile.in xorp/libxorp/ test_heap.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/12 18:53:50 Modified files: xorp/libxorp/: .cvsignore Makefile.am Makefile.in Added files: xorp/libxorp/: test_heap.cc Log message: Added a test program to test the Heap implementation. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Tue Jul 13 2:48:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jul 2004 02:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9n1re008994 for ; Tue, 13 Jul 2004 02:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9n1ms058679 for ; Tue, 13 Jul 2004 02:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D9n17Z012401; Tue, 13 Jul 2004 02:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D9mD7Z012392 for ; Tue, 13 Jul 2004 02:48:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9mDms058669 for ; Tue, 13 Jul 2004 02:48:13 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9mD8M096200 for ; Tue, 13 Jul 2004 02:48:13 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6D9mDQi096199; Tue, 13 Jul 2004 02:48:13 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407130948.i6D9mDQi096199@xorpc.icir.org> Date: Tue, 13 Jul 2004 2:48:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp_vision.html www/html_src/ xorp_vision.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/13 02:48:13 Modified files: ./: xorp_vision.html www/html_src/: xorp_vision.html Log message: Add comment on security and protocol sandboxing. Suggested by Adam. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Tue Jul 13 2:56:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jul 2004 02:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9v1re010593 for ; Tue, 13 Jul 2004 02:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9v1ms058844 for ; Tue, 13 Jul 2004 02:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D9v17Z012583; Tue, 13 Jul 2004 02:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D9uY7Z012574 for ; Tue, 13 Jul 2004 02:56:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9uYms058837 for ; Tue, 13 Jul 2004 02:56:34 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9uY8M096418 for ; Tue, 13 Jul 2004 02:56:34 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6D9uYSa096417; Tue, 13 Jul 2004 02:56:34 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407130956.i6D9uYSa096417@xorpc.icir.org> Date: Tue, 13 Jul 2004 2:56:34 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html ...xorp_vision.html www/html_src/ index.html www/scripts/ XorpOrgGenerator.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/scripts/ Changes by: mjh@xorpc.icir.org. 04/07/13 02:56:34 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html news.html papers.html people.html porting.html status.html xorp_vision.html www/html_src/: index.html www/scripts/: XorpOrgGenerator.py Log message: Link to the XORP vision page _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Tue Jul 13 2:59:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jul 2004 03:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6DA01re011185 for ; Tue, 13 Jul 2004 03:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6DA01ms058897 for ; Tue, 13 Jul 2004 03:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6DA017Z012679; Tue, 13 Jul 2004 03:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6D9xt7Z012660 for ; Tue, 13 Jul 2004 02:59:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9xtms058886 for ; Tue, 13 Jul 2004 02:59:55 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6D9xt8M096468 for ; Tue, 13 Jul 2004 02:59:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6D9xtNx096467; Tue, 13 Jul 2004 02:59:55 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407130959.i6D9xtNx096467@xorpc.icir.org> Date: Tue, 13 Jul 2004 2:59:55 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ index.html www/html_src/ index.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/13 02:59:55 Modified files: ./: index.html www/html_src/: index.html Log message: de-emphasize release date _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Tue Jul 13 20:11:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jul 2004 20:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3C1re061040 for ; Tue, 13 Jul 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3C1ms074321 for ; Tue, 13 Jul 2004 20:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E3C07Z012351; Tue, 13 Jul 2004 20:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E3Bf7Z012337 for ; Tue, 13 Jul 2004 20:11:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3Bfms074310 for ; Tue, 13 Jul 2004 20:11:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3Bf8M008235 for ; Tue, 13 Jul 2004 20:11:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6E3BfrI008234; Tue, 13 Jul 2004 20:11:41 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407140311.i6E3BfrI008234@xorpc.icir.org> Date: Tue, 13 Jul 2004 20:11:41 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/13 20:11:41 Modified files: xorp/devnotes/: release_process.txt Log message: Add a task for updating the freshmeat.net entry. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Tue Jul 13 20:58:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 13 Jul 2004 20:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3x1re072361 for ; Tue, 13 Jul 2004 20:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3x1ms075007 for ; Tue, 13 Jul 2004 20:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E3x17Z013255; Tue, 13 Jul 2004 20:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E3wA7Z013204 for ; Tue, 13 Jul 2004 20:58:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3wAms074998 for ; Tue, 13 Jul 2004 20:58:10 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E3wA8M008619 for ; Tue, 13 Jul 2004 20:58:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6E3wAkn008618; Tue, 13 Jul 2004 20:58:10 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407140358.i6E3wAkn008618@xorpc.icir.org> Date: Tue, 13 Jul 2004 20:58:10 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: ./ Changes by: atanu@xorpc.icir.org. 04/07/13 20:58:10 Modified files: ./: status.html Log message: OSPF only compiles on FreeBSD and we don't intend to do any further work on it. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Wed Jul 14 0:21:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 00:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E7M1re013431 for ; Wed, 14 Jul 2004 00:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E7M1ms078547 for ; Wed, 14 Jul 2004 00:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E7M17Z017579; Wed, 14 Jul 2004 00:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6E7LL7Z017562 for ; Wed, 14 Jul 2004 00:21:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E7LKms078538 for ; Wed, 14 Jul 2004 00:21:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6E7LK8M010387 for ; Wed, 14 Jul 2004 00:21:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6E7LKIi010386; Wed, 14 Jul 2004 00:21:20 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407140721.i6E7LKIi010386@xorpc.icir.org> Date: Wed, 14 Jul 2004 0:21:20 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/14 00:21:20 Modified files: xorp/devnotes/: release_process.txt Log message: Create a new "tmp" directory and check-out the source code inside that directory. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Wed Jul 14 6:24:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 06:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDP1re086837 for ; Wed, 14 Jul 2004 06:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDP1ms084867 for ; Wed, 14 Jul 2004 06:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EDP17Z025929; Wed, 14 Jul 2004 06:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EDOX7Z025917 for ; Wed, 14 Jul 2004 06:24:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDOXms084862 for ; Wed, 14 Jul 2004 06:24:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDOX8M014076 for ; Wed, 14 Jul 2004 06:24:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EDOXGq014075; Wed, 14 Jul 2004 06:24:33 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407141324.i6EDOXGq014075@xorpc.icir.org> Date: Wed, 14 Jul 2004 6:24:33 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/14 06:24:33 Modified files: ./: BUILD_NOTES Log message: Add a note for configuring an OpenBSD system for multicast routing. Eventually, this note should go to the system config section in the XORP configuration guide (once this section is created). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Wed Jul 14 6:49:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 06:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDo1re091734 for ; Wed, 14 Jul 2004 06:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDo1ms085226 for ; Wed, 14 Jul 2004 06:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EDo07Z026506; Wed, 14 Jul 2004 06:50:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EDnC7Z026487 for ; Wed, 14 Jul 2004 06:49:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDnCms085215 for ; Wed, 14 Jul 2004 06:49:12 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EDnC8M014400 for ; Wed, 14 Jul 2004 06:49:12 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EDnCKA014399; Wed, 14 Jul 2004 06:49:12 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407141349.i6EDnCKA014399@xorpc.icir.org> Date: Wed, 14 Jul 2004 6:49:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: mjh@xorpc.icir.org. 04/07/14 06:49:11 Modified files: xorp/docs/libxipc/: xrl_interfaces.tex Log message: Minor change so this formats with a recent latex installation of the "listings.sty" package. See the following for more details: http://www.texnik.de/listings/listings.phtml _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:11 2005 Subject: No subject Wed Jul 14 9:59:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 10:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EH01re032635 for ; Wed, 14 Jul 2004 10:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EH00ms088946 for ; Wed, 14 Jul 2004 10:00:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EH007Z000872; Wed, 14 Jul 2004 10:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EGxp7Z000855 for ; Wed, 14 Jul 2004 09:59:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EGxpms088931 for ; Wed, 14 Jul 2004 09:59:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EGxp8M017411 for ; Wed, 14 Jul 2004 09:59:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EGxpr9017410; Wed, 14 Jul 2004 09:59:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407141659.i6EGxpr9017410@xorpc.icir.org> Date: Wed, 14 Jul 2004 9:59:50 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrib_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/14 09:59:50 Modified files: xorp/pim/: pim_mrib_table.cc Log message: Bug fix in overwriting an MRIB entry which points toward one of the router's own IP addresses: check for overwriting not only if the next-hop vif is the loopback interface, but also if the vif is unresolvable. This covers the case if the loopback interface was not enabled. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 10:14:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 10:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHF1re035554 for ; Wed, 14 Jul 2004 10:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHF0ms089136 for ; Wed, 14 Jul 2004 10:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHF07Z001434; Wed, 14 Jul 2004 10:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHEa7Z001416 for ; Wed, 14 Jul 2004 10:14:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHEams089134 for ; Wed, 14 Jul 2004 10:14:36 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHEa8M017529 for ; Wed, 14 Jul 2004 10:14:36 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EHEaY1017528; Wed, 14 Jul 2004 10:14:36 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407141714.i6EHEaY1017528@xorpc.icir.org> Date: Wed, 14 Jul 2004 10:14:36 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/14 10:14:36 xorp/docs/user_manual Update of /usr/local/share/doc/apache/cvs/xorp/docs/user_manual In directory xorpc.icir.org:/tmp/cvs-serv17522/user_manual Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/user_manual added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 10:15:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 10:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHG1re035782 for ; Wed, 14 Jul 2004 10:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHG1ms089176 for ; Wed, 14 Jul 2004 10:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHG17Z001484; Wed, 14 Jul 2004 10:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHFD7Z001453 for ; Wed, 14 Jul 2004 10:15:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHFCms089165 for ; Wed, 14 Jul 2004 10:15:12 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHFC8M017567 for ; Wed, 14 Jul 2004 10:15:12 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EHFCu0017565; Wed, 14 Jul 2004 10:15:12 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407141715.i6EHFCu0017565@xorpc.icir.org> Date: Wed, 14 Jul 2004 10:15:12 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/figs/ Changes by: mjh@xorpc.icir.org. 04/07/14 10:15:12 xorp/docs/user_manual/figs Update of /usr/local/share/doc/apache/cvs/xorp/docs/user_manual/figs In directory xorpc.icir.org:/tmp/cvs-serv17559/figs Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/user_manual/figs added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 10:18:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 10:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHJ1re036357 for ; Wed, 14 Jul 2004 10:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHJ0ms089222 for ; Wed, 14 Jul 2004 10:19:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHJ07Z001598; Wed, 14 Jul 2004 10:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHIE7Z001559 for ; Wed, 14 Jul 2004 10:18:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHIEms089208 for ; Wed, 14 Jul 2004 10:18:14 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHID8M017624 for ; Wed, 14 Jul 2004 10:18:13 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EHIDdl017623; Wed, 14 Jul 2004 10:18:13 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407141718.i6EHIDdl017623@xorpc.icir.org> Date: Wed, 14 Jul 2004 10:18:13 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ Makefile.am Makefile.in xorp/docs/user_manual/ Makefile Makefile.am Makefile.in cli_intro.tex config_overview.tex preface.tex user_manual.tex xorp/docs/user_manual/figs/ xorpsh.ps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/figs/ Changes by: mjh@xorpc.icir.org. 04/07/14 10:18:13 Modified files: xorp/docs/: Makefile.am Makefile.in Added files: xorp/docs/user_manual/: Makefile Makefile.am Makefile.in cli_intro.tex config_overview.tex preface.tex user_manual.tex xorp/docs/user_manual/figs/: xorpsh.ps Log message: A start at putting our existing user documentation together into a single user manual. My aim is to expand on this documentation over the next few days/weeks. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 10:21:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 10:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHM1re036960 for ; Wed, 14 Jul 2004 10:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHM1ms089261 for ; Wed, 14 Jul 2004 10:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHM17Z001717; Wed, 14 Jul 2004 10:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EHLZ7Z001693 for ; Wed, 14 Jul 2004 10:21:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHLZms089259 for ; Wed, 14 Jul 2004 10:21:35 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EHLZ8M017707 for ; Wed, 14 Jul 2004 10:21:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EHLZ4o017706; Wed, 14 Jul 2004 10:21:35 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407141721.i6EHLZ4o017706@xorpc.icir.org> Date: Wed, 14 Jul 2004 10:21:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: mjh@xorpc.icir.org. 04/07/14 10:21:35 Modified files: ./: configure configure.in Log message: Build user manual _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:21:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMM2re018610 for ; Wed, 14 Jul 2004 15:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMM1ms093016 for ; Wed, 14 Jul 2004 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMM17Z011046; Wed, 14 Jul 2004 15:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EML77Z011018 for ; Wed, 14 Jul 2004 15:21:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EML7ms093012 for ; Wed, 14 Jul 2004 15:21:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EML68M020241 for ; Wed, 14 Jul 2004 15:21:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EML6xc020240; Wed, 14 Jul 2004 15:21:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142221.i6EML6xc020240@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:21:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html ...status.html ...xorp_vision.html www/scripts/ XorpOrgGenerator.py Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/scripts/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:21:06 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html status.html xorp_vision.html www/scripts/: XorpOrgGenerator.py Log message: * Add "Software Status" entry in the navigation bar * Rename "Design docs" to "Design Documentation" and "API Docs" to "API Documentation" in the navigation bar. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:25:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMQ1re019567 for ; Wed, 14 Jul 2004 15:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMQ1ms093087 for ; Wed, 14 Jul 2004 15:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMQ17Z011166; Wed, 14 Jul 2004 15:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMPu7Z011152 for ; Wed, 14 Jul 2004 15:25:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMPums093079 for ; Wed, 14 Jul 2004 15:25:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMPu8M020338 for ; Wed, 14 Jul 2004 15:25:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EMPuqe020337; Wed, 14 Jul 2004 15:25:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142225.i6EMPuqe020337@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:25:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html status.html www/html_src/ news.html status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:25:56 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html status.html www/html_src/: news.html status.html Log message: Minor tweaks: * "1.0 Release" -> "Release 1.0" * "software documentation" -> "design documentation" (in the beginning of status.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:28:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMT1re020330 for ; Wed, 14 Jul 2004 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMT1ms093132 for ; Wed, 14 Jul 2004 15:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMT17Z011268; Wed, 14 Jul 2004 15:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMSl7Z011259 for ; Wed, 14 Jul 2004 15:28:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMSlms093125 for ; Wed, 14 Jul 2004 15:28:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMSl8M020443 for ; Wed, 14 Jul 2004 15:28:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EMSkug020442; Wed, 14 Jul 2004 15:28:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142228.i6EMSkug020442@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:28:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc/ xrl_interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/libxipc/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:28:46 Modified files: xorp/docs/libxipc/: xrl_interfaces.tex Log message: Fix the version and the date which have been corrupted with the previous commit. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:34:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZ1re021774 for ; Wed, 14 Jul 2004 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZ1ms093208 for ; Wed, 14 Jul 2004 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMZ07Z011503; Wed, 14 Jul 2004 15:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMYB7Z011490 for ; Wed, 14 Jul 2004 15:34:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMYBms093201 for ; Wed, 14 Jul 2004 15:34:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMYB8M020593 for ; Wed, 14 Jul 2004 15:34:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EMYBF9020592; Wed, 14 Jul 2004 15:34:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142234.i6EMYBF9020592@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:34:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:34:11 Modified files: xorp/docs/: Makefile.am Makefile.in Log message: Reorder the sub-directories in alphabetical order _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:35:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMa1re022054 for ; Wed, 14 Jul 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMa1ms093237 for ; Wed, 14 Jul 2004 15:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMa17Z011552; Wed, 14 Jul 2004 15:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMZS7Z011531 for ; Wed, 14 Jul 2004 15:35:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZSms093233 for ; Wed, 14 Jul 2004 15:35:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZS8M020653 for ; Wed, 14 Jul 2004 15:35:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EMZRWa020652; Wed, 14 Jul 2004 15:35:27 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142235.i6EMZRWa020652@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:35:27 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ Makefile Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:35:27 Removed files: xorp/docs/user_manual/: Makefile Log message: Remove Makefile from the CVS repository, because it should be auto-generated when ./configure is run _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 15:35:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 15:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMa2re022075 for ; Wed, 14 Jul 2004 15:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMa2ms093239 for ; Wed, 14 Jul 2004 15:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMa27Z011563; Wed, 14 Jul 2004 15:36:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6EMZw7Z011543 for ; Wed, 14 Jul 2004 15:35:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZwms093235 for ; Wed, 14 Jul 2004 15:35:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6EMZw8M020688 for ; Wed, 14 Jul 2004 15:35:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6EMZwsY020687; Wed, 14 Jul 2004 15:35:58 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142235.i6EMZwsY020687@xorpc.icir.org> Date: Wed, 14 Jul 2004 15:35:58 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: pavlin@xorpc.icir.org. 04/07/14 15:35:58 Added files: xorp/docs/user_manual/: .cvsignore Log message: Add .cvsignore with the list of files that will be ignored by CVS. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 16:17:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 16:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6ENI1re031456 for ; Wed, 14 Jul 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6ENI1Xe093921 for ; Wed, 14 Jul 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6ENI17Z012970; Wed, 14 Jul 2004 16:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6ENHp7Z012960 for ; Wed, 14 Jul 2004 16:17:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6ENHpXe093919 for ; Wed, 14 Jul 2004 16:17:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6ENHp8M021330 for ; Wed, 14 Jul 2004 16:17:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6ENHpKm021329; Wed, 14 Jul 2004 16:17:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407142317.i6ENHpKm021329@xorpc.icir.org> Date: Wed, 14 Jul 2004 16:17:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes/ release_process.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/devnotes/ Changes by: pavlin@xorpc.icir.org. 04/07/14 16:17:51 Modified files: xorp/devnotes/: release_process.txt Log message: * Move the tasks for updating the release version number to one day before the release date (to avoid any last-time source code modification). * Add a task to prepare the LiveCD ISO image * Add tasks for generating the MD5 checksums for the LiveCD ISO image and the source code tarball. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 18:40:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 18:41:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1f0re059948 for ; Wed, 14 Jul 2004 18:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1f0f0095716 for ; Wed, 14 Jul 2004 18:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1f07Z016925; Wed, 14 Jul 2004 18:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1eT7Z016908 for ; Wed, 14 Jul 2004 18:40:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1eTf0095712 for ; Wed, 14 Jul 2004 18:40:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1eT8M022840 for ; Wed, 14 Jul 2004 18:40:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6F1eTYS022839; Wed, 14 Jul 2004 18:40:29 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407150140.i6F1eTYS022839@xorpc.icir.org> Date: Wed, 14 Jul 2004 18:40:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html www/html_src/ contributing.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/14 18:40:29 Modified files: ./: contributing.html www/html_src/: contributing.html Log message: * Clarify that it is always a good idea to send first an email before starting work on something * Add few more suggestions for XORP contribution items (as suggested by Mark). * Add a missing URL to XORP design docs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 18:54:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 18:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1t1re062729 for ; Wed, 14 Jul 2004 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1t1f0095882 for ; Wed, 14 Jul 2004 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1t07Z017349; Wed, 14 Jul 2004 18:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1sg7Z017340 for ; Wed, 14 Jul 2004 18:54:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1sgf0095873 for ; Wed, 14 Jul 2004 18:54:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1sg8M023095 for ; Wed, 14 Jul 2004 18:54:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6F1sgTP023094; Wed, 14 Jul 2004 18:54:42 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407150154.i6F1sgTP023094@xorpc.icir.org> Date: Wed, 14 Jul 2004 18:54:42 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ xorp_vision.html www/html_src/ xorp_vision.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/14 18:54:42 Modified files: ./: xorp_vision.html www/html_src/: xorp_vision.html Log message: Minor nits. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 18:56:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 18:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1v1re063147 for ; Wed, 14 Jul 2004 18:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1v1f0095938 for ; Wed, 14 Jul 2004 18:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1v17Z017404; Wed, 14 Jul 2004 18:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F1ui7Z017387 for ; Wed, 14 Jul 2004 18:56:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1uif0095932 for ; Wed, 14 Jul 2004 18:56:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F1ui8M023178 for ; Wed, 14 Jul 2004 18:56:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6F1uidK023177; Wed, 14 Jul 2004 18:56:44 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407150156.i6F1uidK023177@xorpc.icir.org> Date: Wed, 14 Jul 2004 18:56:44 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ status.html ./ status.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/14 18:56:44 Modified files: www/html_src/: status.html ./: status.html Log message: OSPF only compiles on FreeBSD and we don't intend to do any further work on it. [This is a re-commit of an earlier modification which has been lost because it wasn't done in the html_src/status.html] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 19:17:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 19:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2I1re067574 for ; Wed, 14 Jul 2004 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2I1f0096482 for ; Wed, 14 Jul 2004 19:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F2I17Z018025; Wed, 14 Jul 2004 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F2Hj7Z018009 for ; Wed, 14 Jul 2004 19:17:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2Hjf0096477 for ; Wed, 14 Jul 2004 19:17:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2Hh8M023644 for ; Wed, 14 Jul 2004 19:17:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6F2HhLt023643; Wed, 14 Jul 2004 19:17:43 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407150217.i6F2HhLt023643@xorpc.icir.org> Date: Wed, 14 Jul 2004 19:17:43 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html www/html_src/ contributing.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/14 19:17:43 Modified files: ./: contributing.html www/html_src/: contributing.html Log message: "Add VLAN support": a new suggested project (suggestion by Mark). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Wed Jul 14 19:19:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 14 Jul 2004 19:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2K1re067990 for ; Wed, 14 Jul 2004 19:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2K1f0096513 for ; Wed, 14 Jul 2004 19:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F2K17Z018098; Wed, 14 Jul 2004 19:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6F2JV7Z018067 for ; Wed, 14 Jul 2004 19:19:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2JVf0096504 for ; Wed, 14 Jul 2004 19:19:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6F2JU8M023690 for ; Wed, 14 Jul 2004 19:19:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6F2JUmc023689; Wed, 14 Jul 2004 19:19:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407150219.i6F2JUmc023689@xorpc.icir.org> Date: Wed, 14 Jul 2004 19:19:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html www/html_src/ contributing.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/14 19:19:30 Modified files: ./: contributing.html www/html_src/: contributing.html Log message: HTML fixes. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:12 2005 Subject: No subject Thu Jul 15 23:42:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 15 Jul 2004 23:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6G6h2SO014433 for ; Thu, 15 Jul 2004 23:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6G6h1s5020140 for ; Thu, 15 Jul 2004 23:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6G6h17Z029730; Thu, 15 Jul 2004 23:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6G6gm7Z029724 for ; Thu, 15 Jul 2004 23:42:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6G6gms5020136 for ; Thu, 15 Jul 2004 23:42:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6G6gm8M049447 for ; Thu, 15 Jul 2004 23:42:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6G6gmi6049446; Thu, 15 Jul 2004 23:42:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407160642.i6G6gmi6049446@xorpc.icir.org> Date: Thu, 15 Jul 2004 23:42:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/15 23:42:48 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Added ether_compat.c to the list of compiled files _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Fri Jul 16 4:24:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jul 2004 04:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBP1SO030370 for ; Fri, 16 Jul 2004 04:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBP1s5023964 for ; Fri, 16 Jul 2004 04:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GBP17Z005415; Fri, 16 Jul 2004 04:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GBOP7Z005397 for ; Fri, 16 Jul 2004 04:24:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBOPs5023953 for ; Fri, 16 Jul 2004 04:24:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBOO8M052050 for ; Fri, 16 Jul 2004 04:24:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6GBOObX052049; Fri, 16 Jul 2004 04:24:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407161124.i6GBOObX052049@xorpc.icir.org> Date: Fri, 16 Jul 2004 4:24:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ ether_compat.c Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/16 04:24:24 Modified files: xorp/libxorp/: ether_compat.c Log message: * Compilation fix for Linux if strtol()'s second argument is not const-ified * Fix a compilation bug _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Fri Jul 16 4:27:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jul 2004 04:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBS1SO030538 for ; Fri, 16 Jul 2004 04:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBS1s5024008 for ; Fri, 16 Jul 2004 04:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GBS07Z005474; Fri, 16 Jul 2004 04:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GBRD7Z005459 for ; Fri, 16 Jul 2004 04:27:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBRDs5023999 for ; Fri, 16 Jul 2004 04:27:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GBRC8M052135 for ; Fri, 16 Jul 2004 04:27:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6GBRCgn052134; Fri, 16 Jul 2004 04:27:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407161127.i6GBRCgn052134@xorpc.icir.org> Date: Fri, 16 Jul 2004 4:27:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/libxorp/ Changes by: pavlin@xorpc.icir.org. 04/07/16 04:27:12 Modified files: xorp/libxorp/: Makefile.am Makefile.in Log message: Temporary exclude ether_compat.c from the list of files to compile, until ./configure.in is fixed to define properly NEED_ETHER_ATON. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Fri Jul 16 13:27:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jul 2004 13:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GKS1SO068887 for ; Fri, 16 Jul 2004 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GKS1s5031315 for ; Fri, 16 Jul 2004 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GKS17Z019745; Fri, 16 Jul 2004 13:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GKRP7Z019715 for ; Fri, 16 Jul 2004 13:27:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GKRPs5031310 for ; Fri, 16 Jul 2004 13:27:25 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GKRP8M057746 for ; Fri, 16 Jul 2004 13:27:25 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6GKROmS057745; Fri, 16 Jul 2004 13:27:24 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407162027.i6GKROmS057745@xorpc.icir.org> Date: Fri, 16 Jul 2004 13:27:24 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh other/LiveCD/files/ shells Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/07/16 13:27:24 Modified files: other/LiveCD/: livecd.sh Added files: other/LiveCD/files/: shells Log message: Modify /etc/shells on LiveCD to allow xorpsh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Fri Jul 16 16:27:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jul 2004 16:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GNS1SO087761 for ; Fri, 16 Jul 2004 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GNS1kr033240 for ; Fri, 16 Jul 2004 16:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GNS07Z024881; Fri, 16 Jul 2004 16:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6GNRA7Z024854 for ; Fri, 16 Jul 2004 16:27:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GNRAkr033236 for ; Fri, 16 Jul 2004 16:27:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6GNRA8M059624 for ; Fri, 16 Jul 2004 16:27:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6GNRA0k059623; Fri, 16 Jul 2004 16:27:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407162327.i6GNRA0k059623@xorpc.icir.org> Date: Fri, 16 Jul 2004 16:27:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ BUILD_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/16 16:27:10 Modified files: ./: BUILD_NOTES Log message: Remove an option to "configure" in one of the examples, because it is not needed. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Fri Jul 16 17:18:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 16 Jul 2004 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6H0J1SO092962 for ; Fri, 16 Jul 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6H0J1kr033755 for ; Fri, 16 Jul 2004 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6H0J17Z026121; Fri, 16 Jul 2004 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6H0IH7Z026097 for ; Fri, 16 Jul 2004 17:18:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6H0IHkr033748 for ; Fri, 16 Jul 2004 17:18:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6H0IH8M060064 for ; Fri, 16 Jul 2004 17:18:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6H0IHDA060063; Fri, 16 Jul 2004 17:18:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407170018.i6H0IHDA060063@xorpc.icir.org> Date: Fri, 16 Jul 2004 17:18:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre_task.cc pim_mre_task.hh pim_mrt.hh pim_mrt_task.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/16 17:18:17 Modified files: xorp/pim/: pim_mre_task.cc pim_mre_task.hh pim_mrt.hh pim_mrt_task.cc Log message: Fix the scheduling of the internal PimMre tasks. This should fix the following bugzilla entry: http://www.xorp.org/bugzilla/show_bug.cgi?id=87 [Bug report by "edrt"] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Sun Jul 18 2:55:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 Jul 2004 02:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6I9u1SO020726 for ; Sun, 18 Jul 2004 02:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6I9u1kr056772 for ; Sun, 18 Jul 2004 02:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6I9u07Z003343; Sun, 18 Jul 2004 02:56:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6I9tk7Z003336 for ; Sun, 18 Jul 2004 02:55:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6I9tkkr056770 for ; Sun, 18 Jul 2004 02:55:46 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6I9tk8M079224 for ; Sun, 18 Jul 2004 02:55:46 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6I9tjVT079223; Sun, 18 Jul 2004 02:55:45 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407180955.i6I9tjVT079223@xorpc.icir.org> Date: Sun, 18 Jul 2004 2:55:45 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/07/18 02:55:45 Modified files: xorp/rtrmgr/: boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Log message: Use C++ strings rather than C strings in the bootfile parser. This fixes a buffer overflow vulnerability in the bootfile parser. Vulnerability found by: Andrea Bittau _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Sun Jul 18 15:52:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 Jul 2004 15:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMr2SO031053 for ; Sun, 18 Jul 2004 15:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMr2kr064996 for ; Sun, 18 Jul 2004 15:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6IMr17Z019882; Sun, 18 Jul 2004 15:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6IMr07Z019878 for ; Sun, 18 Jul 2004 15:53:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMqxkr064994 for ; Sun, 18 Jul 2004 15:52:59 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMqx8M086034 for ; Sun, 18 Jul 2004 15:52:59 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6IMqwWs086033; Sun, 18 Jul 2004 15:52:59 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407182252.i6IMqwWs086033@xorpc.icir.org> Date: Sun, 18 Jul 2004 15:52:58 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: mjh@xorpc.icir.org. 04/07/18 15:52:58 xorp/docs/xorpdev-101 Update of /usr/local/share/doc/apache/cvs/xorp/docs/xorpdev-101 In directory xorpc.icir.org:/tmp/cvs-serv86027/xorpdev-101 Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/xorpdev-101 added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Sun Jul 18 15:57:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 18 Jul 2004 15:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMw1SO031112 for ; Sun, 18 Jul 2004 15:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMw1kr065051 for ; Sun, 18 Jul 2004 15:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6IMw17Z019980; Sun, 18 Jul 2004 15:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6IMvZ7Z019966 for ; Sun, 18 Jul 2004 15:57:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMvZkr065046 for ; Sun, 18 Jul 2004 15:57:35 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6IMvZ8M086117 for ; Sun, 18 Jul 2004 15:57:35 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6IMvZVj086116; Sun, 18 Jul 2004 15:57:35 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407182257.i6IMvZVj086116@xorpc.icir.org> Date: Sun, 18 Jul 2004 15:57:35 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in xorp/docs/ Makefile.am Makefile.in xorp/docs/xorpdev-101/ Makefile.am Makefile.in xorpdev101.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: mjh@xorpc.icir.org. 04/07/18 15:57:35 Modified files: ./: configure.in xorp/docs/: Makefile.am Makefile.in Added files: xorp/docs/xorpdev-101/: Makefile.am Makefile.in xorpdev101.tex Log message: Add a new document entitled "An Introduction to Writing a XORP Process". This is intended as something a newbie should read first before writing their first XORP process. It's based on my experience trying to get a student to write a XORP process, and discovering we don't really have any useful place to start from in the current docs - they're really a reference, this is a cookbook. The last section is still missing, but there's a fair amount here now. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Mon Jul 19 5:14:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 Jul 2004 05:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JCE2SO041400 for ; Mon, 19 Jul 2004 05:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JCE2kr075743 for ; Mon, 19 Jul 2004 05:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6JCE17Z010133; Mon, 19 Jul 2004 05:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6JCE07Z010127 for ; Mon, 19 Jul 2004 05:14:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JCE0kr075741 for ; Mon, 19 Jul 2004 05:14:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JCE08M093909 for ; Mon, 19 Jul 2004 05:14:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6JCE0x4093908; Mon, 19 Jul 2004 05:14:00 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407191214.i6JCE0x4093908@xorpc.icir.org> Date: Mon, 19 Jul 2004 5:14:00 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev-101/ xorpdev101.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: mjh@xorpc.icir.org. 04/07/19 05:14:00 Modified files: xorp/docs/xorpdev-101/: xorpdev101.tex Log message: Add last section on actually calling XRLs, and using callbacks to receive the results. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Mon Jul 19 15:09:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 19 Jul 2004 15:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JMA1SO062160 for ; Mon, 19 Jul 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JMA1kr084843 for ; Mon, 19 Jul 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6JMA17Z028224; Mon, 19 Jul 2004 15:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6JM9C7Z028198 for ; Mon, 19 Jul 2004 15:09:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JM9Ckr084835 for ; Mon, 19 Jul 2004 15:09:12 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6JM9C8M000321 for ; Mon, 19 Jul 2004 15:09:12 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6JM9Bie000320; Mon, 19 Jul 2004 15:09:11 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407192209.i6JM9Bie000320@xorpc.icir.org> Date: Mon, 19 Jul 2004 15:09:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev-101/ xorpdev101.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: mjh@xorpc.icir.org. 04/07/19 15:09:11 Modified files: xorp/docs/xorpdev-101/: xorpdev101.tex Log message: Correct typos and grammatical errors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 6:15:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 06:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KDG1SO009756 for ; Tue, 20 Jul 2004 06:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KDG1kr097054 for ; Tue, 20 Jul 2004 06:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KDG07Z021592; Tue, 20 Jul 2004 06:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KDFf7Z021582 for ; Tue, 20 Jul 2004 06:15:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KDFfkr097052 for ; Tue, 20 Jul 2004 06:15:41 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KDFf8M008216 for ; Tue, 20 Jul 2004 06:15:41 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6KDFemh008215; Tue, 20 Jul 2004 06:15:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407201315.i6KDFemh008215@xorpc.icir.org> Date: Tue, 20 Jul 2004 6:15:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/ livecd.sh other/LiveCD/files/ sshd_config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/LiveCD/files/ Changes by: mjh@xorpc.icir.org. 04/07/20 06:15:40 Modified files: other/LiveCD/: livecd.sh Added files: other/LiveCD/files/: sshd_config Log message: Add an sshd_config file that permits root login. Thus should be an interrim solution - currently it's too hard to diagnose problems without this. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 8:08:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 08:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KF91SO026434 for ; Tue, 20 Jul 2004 08:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KF91kr099825 for ; Tue, 20 Jul 2004 08:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KF917Z023971; Tue, 20 Jul 2004 08:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KF8b7Z023960 for ; Tue, 20 Jul 2004 08:08:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KF8bkr099823 for ; Tue, 20 Jul 2004 08:08:37 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KF8b8M009277 for ; Tue, 20 Jul 2004 08:08:37 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6KF8bD9009276; Tue, 20 Jul 2004 08:08:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407201508.i6KF8bD9009276@xorpc.icir.org> Date: Tue, 20 Jul 2004 8:08:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/07/20 08:08:37 Modified files: xorp/rtrmgr/: boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Log message: Fix include file SNAFU by including xorp.h - fixes tinderbox breakage on newer compilers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 16:02:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 16:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN31VM064848 for ; Tue, 20 Jul 2004 16:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN31wY006060 for ; Tue, 20 Jul 2004 16:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KN307Z008108; Tue, 20 Jul 2004 16:03:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KN2T7Z008095 for ; Tue, 20 Jul 2004 16:02:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN2TwY006054 for ; Tue, 20 Jul 2004 16:02:29 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN2T8M014581 for ; Tue, 20 Jul 2004 16:02:29 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6KN2S3K014580; Tue, 20 Jul 2004 16:02:28 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407202302.i6KN2S3K014580@xorpc.icir.org> Date: Tue, 20 Jul 2004 16:02:28 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc lex.boot.cc lex.opcmd.cc lex.tplt.cc op_commands.cc op_commands.ll op_commands.yy y.opcmd_tab.cc y.opcmd_tab.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/07/20 16:02:28 Modified files: xorp/rtrmgr/: cli.cc lex.boot.cc lex.opcmd.cc lex.tplt.cc op_commands.cc op_commands.ll op_commands.yy y.opcmd_tab.cc y.opcmd_tab.h Log message: Add a simple wildcard facility to operational-mode commands to allow us to run commands such as ping and traceroute from xorpsh. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 16:03:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 16:04:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN40VM065055 for ; Tue, 20 Jul 2004 16:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN40wY006092 for ; Tue, 20 Jul 2004 16:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KN407Z008149; Tue, 20 Jul 2004 16:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KN317Z008113 for ; Tue, 20 Jul 2004 16:03:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN31wY006062 for ; Tue, 20 Jul 2004 16:03:01 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN318M014636 for ; Tue, 20 Jul 2004 16:03:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6KN30IQ014635; Tue, 20 Jul 2004 16:03:00 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407202303.i6KN30IQ014635@xorpc.icir.org> Date: Tue, 20 Jul 2004 16:03:00 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ misc.cmds Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: mjh@xorpc.icir.org. 04/07/20 16:03:00 Added files: xorp/etc/templates/: misc.cmds Log message: Add template commands for ping and traceroute. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 16:09:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 16:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KNA1VM066237 for ; Tue, 20 Jul 2004 16:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KNA0wY006183 for ; Tue, 20 Jul 2004 16:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KNA07Z008309; Tue, 20 Jul 2004 16:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6KN9L7Z008294 for ; Tue, 20 Jul 2004 16:09:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN9LwY006176 for ; Tue, 20 Jul 2004 16:09:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6KN9L8M014745 for ; Tue, 20 Jul 2004 16:09:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6KN9Lkc014744; Tue, 20 Jul 2004 16:09:21 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407202309.i6KN9Lkc014744@xorpc.icir.org> Date: Tue, 20 Jul 2004 16:09:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr/ cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rtrmgr/ Changes by: mjh@xorpc.icir.org. 04/07/20 16:09:21 Modified files: xorp/rtrmgr/: cli.cc Log message: remove spurious debugging (revert to previous) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:13 2005 Subject: No subject Tue Jul 20 21:07:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 20 Jul 2004 21:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6L481VM038864 for ; Tue, 20 Jul 2004 21:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6L481wY009727 for ; Tue, 20 Jul 2004 21:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6L4817Z015968; Tue, 20 Jul 2004 21:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6L4787Z015941 for ; Tue, 20 Jul 2004 21:07:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6L478wY009715 for ; Tue, 20 Jul 2004 21:07:08 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6L4788M017179 for ; Tue, 20 Jul 2004 21:07:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6L477nG017178; Tue, 20 Jul 2004 21:07:07 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407210407.i6L477nG017178@xorpc.icir.org> Date: Tue, 20 Jul 2004 21:07:07 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates/ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/etc/templates/ Changes by: atanu@xorpc.icir.org. 04/07/20 21:07:07 Modified files: xorp/etc/templates/: Makefile.am Makefile.in Log message: Install the misc.cmds file making ping and traceroute available on installed systems. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Wed Jul 21 11:22:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Jul 2004 11:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LIN1VM006935 for ; Wed, 21 Jul 2004 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LIN1wY024907 for ; Wed, 21 Jul 2004 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LIN1xx009213; Wed, 21 Jul 2004 11:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LIMKxx009172 for ; Wed, 21 Jul 2004 11:22:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LIMKwY024903 for ; Wed, 21 Jul 2004 11:22:20 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LIMK8M026459 for ; Wed, 21 Jul 2004 11:22:20 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6LIMKDh026458; Wed, 21 Jul 2004 11:22:20 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407211822.i6LIMKDh026458@xorpc.icir.org> Date: Wed, 21 Jul 2004 11:22:20 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ Makefile.am Makefile.in config_overview.tex user_manual.tex xorp/docs/user_manual/ bgp.tex diagnostics.tex forwarding.tex igmp.tex interfaces.tex mcasttopology.tex multicastrouting.tex pimsm.tex rip.tex snmp.tex ...staticroutes.tex ...unicastrouting.tex ...users.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/21 11:22:20 Modified files: xorp/docs/user_manual/: Makefile.am Makefile.in config_overview.tex user_manual.tex Added files: xorp/docs/user_manual/: bgp.tex diagnostics.tex forwarding.tex igmp.tex interfaces.tex mcasttopology.tex multicastrouting.tex pimsm.tex rip.tex snmp.tex staticroutes.tex unicastrouting.tex users.tex Log message: Add basic framework for a complete XORP user manual. Not much to see here yet. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Wed Jul 21 16:00:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Jul 2004 16:01:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN12VM065543 for ; Wed, 21 Jul 2004 16:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN11wY028266 for ; Wed, 21 Jul 2004 16:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LN10xx017869; Wed, 21 Jul 2004 16:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LN0Rxx017855 for ; Wed, 21 Jul 2004 16:00:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN0QwY028254 for ; Wed, 21 Jul 2004 16:00:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN0Q8M028746 for ; Wed, 21 Jul 2004 16:00:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6LN0Q7C028745; Wed, 21 Jul 2004 16:00:26 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407212300.i6LN0Q7C028745@xorpc.icir.org> Date: Wed, 21 Jul 2004 16:00:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/21 16:00:25 Modified files: ./: configure Log message: Re-generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Wed Jul 21 16:05:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 21 Jul 2004 16:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN60VM066745 for ; Wed, 21 Jul 2004 16:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN60wY028344 for ; Wed, 21 Jul 2004 16:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LN60xx018044; Wed, 21 Jul 2004 16:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6LN5Nxx018026 for ; Wed, 21 Jul 2004 16:05:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN5NwY028335 for ; Wed, 21 Jul 2004 16:05:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6LN5N8M028819 for ; Wed, 21 Jul 2004 16:05:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6LN5MVh028818; Wed, 21 Jul 2004 16:05:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407212305.i6LN5MVh028818@xorpc.icir.org> Date: Wed, 21 Jul 2004 16:05:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev-101/ .cvsignore Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: pavlin@xorpc.icir.org. 04/07/21 16:05:22 Added files: xorp/docs/xorpdev-101/: .cvsignore Log message: Added .cvsignore with the list of files that are ignored by CVS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Thu Jul 22 3:55:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jul 2004 03:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MAu1VM019772 for ; Thu, 22 Jul 2004 03:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MAu1wY038192 for ; Thu, 22 Jul 2004 03:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MAu1Yc004709; Thu, 22 Jul 2004 03:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MAtDYc004679 for ; Thu, 22 Jul 2004 03:55:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MAtDwY038186 for ; Thu, 22 Jul 2004 03:55:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MAtD8M036663 for ; Thu, 22 Jul 2004 03:55:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6MAtCSX036662; Thu, 22 Jul 2004 03:55:12 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407221055.i6MAtCSX036662@xorpc.icir.org> Date: Thu, 22 Jul 2004 3:55:12 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/22 03:55:12 Modified files: xorp/rib/: rib.cc Log message: Bug fix: when adding a new vif, if the vif is a point-to-point, then add a routing entry for the peer's address to the "connected" routing table. Otherwise, later a protocol cannot add to the RIB a routing entry that uses the peer's address as the next-hop router. [Bug report by Wouter Vanwalleghem ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Thu Jul 22 6:45:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jul 2004 06:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MDk1VM053316 for ; Thu, 22 Jul 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MDk1xX039898 for ; Thu, 22 Jul 2004 06:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MDk1Yc009766; Thu, 22 Jul 2004 06:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MDjMYc009750 for ; Thu, 22 Jul 2004 06:45:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MDjMxX039883 for ; Thu, 22 Jul 2004 06:45:22 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MDjL8M038378 for ; Thu, 22 Jul 2004 06:45:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6MDjL8u038377; Thu, 22 Jul 2004 06:45:21 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407221345.i6MDjL8u038377@xorpc.icir.org> Date: Thu, 22 Jul 2004 6:45:21 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ bgp.tex user_manual.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/22 06:45:21 Modified files: xorp/docs/user_manual/: bgp.tex user_manual.tex Log message: Add text about monitoring BGP. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Thu Jul 22 10:13:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jul 2004 10:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHE1VM096656 for ; Thu, 22 Jul 2004 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHE1xX043637 for ; Thu, 22 Jul 2004 10:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MHE1Yc014781; Thu, 22 Jul 2004 10:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MHDHYc014762 for ; Thu, 22 Jul 2004 10:13:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHDHxX043628 for ; Thu, 22 Jul 2004 10:13:17 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHDH8M041635 for ; Thu, 22 Jul 2004 10:13:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6MHDHLN041634; Thu, 22 Jul 2004 10:13:17 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407221713.i6MHDHLN041634@xorpc.icir.org> Date: Thu, 22 Jul 2004 10:13:17 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev-101/ xorpdev101.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: mjh@xorpc.icir.org. 04/07/22 10:13:17 Modified files: xorp/docs/xorpdev-101/: xorpdev101.tex Log message: Fix typo _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Thu Jul 22 10:39:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jul 2004 10:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHe1VM002497 for ; Thu, 22 Jul 2004 10:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHe1xX043958 for ; Thu, 22 Jul 2004 10:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MHe0Yc015530; Thu, 22 Jul 2004 10:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6MHdvYc015524 for ; Thu, 22 Jul 2004 10:39:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHdvxX043953 for ; Thu, 22 Jul 2004 10:39:57 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6MHdv8M041823 for ; Thu, 22 Jul 2004 10:39:57 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6MHdvrM041822; Thu, 22 Jul 2004 10:39:57 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407221739.i6MHdvrM041822@xorpc.icir.org> Date: Thu, 22 Jul 2004 10:39:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ bgp.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/22 10:39:56 Modified files: xorp/docs/user_manual/: bgp.tex Log message: Add description of most of the BGP configuration parameters. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Thu Jul 22 18:35:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 22 Jul 2004 18:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6N1a1VM009428 for ; Thu, 22 Jul 2004 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6N1a1xX049614 for ; Thu, 22 Jul 2004 18:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6N1a1Yc029900; Thu, 22 Jul 2004 18:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6N1Z6Yc029877 for ; Thu, 22 Jul 2004 18:35:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6N1Z6xX049602 for ; Thu, 22 Jul 2004 18:35:06 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6N1Z68M045547 for ; Thu, 22 Jul 2004 18:35:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6N1Z6jl045546; Thu, 22 Jul 2004 18:35:06 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407230135.i6N1Z6jl045546@xorpc.icir.org> Date: Thu, 22 Jul 2004 18:35:06 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/22 18:35:06 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: Add text on how to run a XORP mirror. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 5:19:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 05:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCK1VM053583 for ; Fri, 23 Jul 2004 05:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCK1rU058509 for ; Fri, 23 Jul 2004 05:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCK1Yc015572; Fri, 23 Jul 2004 05:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCJIYc015556 for ; Fri, 23 Jul 2004 05:19:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCJIrU058497 for ; Fri, 23 Jul 2004 05:19:18 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCJI8M051832 for ; Fri, 23 Jul 2004 05:19:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NCJIDB051831; Fri, 23 Jul 2004 05:19:18 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231219.i6NCJIDB051831@xorpc.icir.org> Date: Fri, 23 Jul 2004 5:19:18 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 05:19:18 xorp/docs/papers/lcs2004_paper Update of /usr/local/share/doc/apache/cvs/xorp/docs/papers/lcs2004_paper In directory xorpc.icir.org:/tmp/cvs-serv51825/lcs2004_paper Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/papers/lcs2004_paper added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 5:20:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 05:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCL1VM053849 for ; Fri, 23 Jul 2004 05:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCL1rU058546 for ; Fri, 23 Jul 2004 05:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCL1Yc015600; Fri, 23 Jul 2004 05:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCKhYc015590 for ; Fri, 23 Jul 2004 05:20:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCKhrU058537 for ; Fri, 23 Jul 2004 05:20:43 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCKh8M051885 for ; Fri, 23 Jul 2004 05:20:43 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NCKgpD051884; Fri, 23 Jul 2004 05:20:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231220.i6NCKgpD051884@xorpc.icir.org> Date: Fri, 23 Jul 2004 5:20:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ Makefile abstract.tex acknowledgments.tex biblio.bib intro.tex lcs.cls lcspaper.tex processes3.ps summary.tex ...vision.tex ...xrl.ps Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 05:20:42 Added files: xorp/docs/papers/lcs2004_paper/: Makefile abstract.tex acknowledgments.tex biblio.bib intro.tex lcs.cls lcspaper.tex processes3.ps summary.tex vision.tex xrl.ps Log message: A start at a short paper for the London Communications Symposium _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 5:21:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 05:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCM1VM054104 for ; Fri, 23 Jul 2004 05:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCM1rU058561 for ; Fri, 23 Jul 2004 05:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCM1Yc015629; Fri, 23 Jul 2004 05:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NCLrYc015622 for ; Fri, 23 Jul 2004 05:21:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCLrrU058558 for ; Fri, 23 Jul 2004 05:21:53 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NCLq8M051926 for ; Fri, 23 Jul 2004 05:21:52 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NCLqA7051925; Fri, 23 Jul 2004 05:21:52 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231221.i6NCLqA7051925@xorpc.icir.org> Date: Fri, 23 Jul 2004 5:21:52 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ sped.sty Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 05:21:52 Added files: xorp/docs/papers/lcs2004_paper/: sped.sty Log message: missing file _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 6:18:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 06:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDJ1VM067666 for ; Fri, 23 Jul 2004 06:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDJ1rU059177 for ; Fri, 23 Jul 2004 06:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDJ1Yc016593; Fri, 23 Jul 2004 06:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDIFYc016579 for ; Fri, 23 Jul 2004 06:18:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDIFrU059171 for ; Fri, 23 Jul 2004 06:18:15 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDIF8M052432 for ; Fri, 23 Jul 2004 06:18:15 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NDIF4n052431; Fri, 23 Jul 2004 06:18:15 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231318.i6NDIF4n052431@xorpc.icir.org> Date: Fri, 23 Jul 2004 6:18:14 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ summary.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 06:18:14 Modified files: xorp/docs/papers/lcs2004_paper/: summary.tex Log message: re-write _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 6:23:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 06:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDO1VM068890 for ; Fri, 23 Jul 2004 06:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDO1rU059252 for ; Fri, 23 Jul 2004 06:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDO0Yc016666; Fri, 23 Jul 2004 06:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDNPYc016654 for ; Fri, 23 Jul 2004 06:23:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDNPrU059241 for ; Fri, 23 Jul 2004 06:23:25 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDNP8M052517 for ; Fri, 23 Jul 2004 06:23:25 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NDNP9a052516; Fri, 23 Jul 2004 06:23:25 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231323.i6NDNP9a052516@xorpc.icir.org> Date: Fri, 23 Jul 2004 6:23:25 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ vision.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 06:23:25 Modified files: xorp/docs/papers/lcs2004_paper/: vision.tex Log message: changes in the vision _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 6:28:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 06:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDT2VM070087 for ; Fri, 23 Jul 2004 06:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDT2rU059327 for ; Fri, 23 Jul 2004 06:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDT1Yc016769; Fri, 23 Jul 2004 06:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDS1Yc016752 for ; Fri, 23 Jul 2004 06:28:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDS1rU059319 for ; Fri, 23 Jul 2004 06:28:01 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDS18M052601 for ; Fri, 23 Jul 2004 06:28:01 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NDS0Id052600; Fri, 23 Jul 2004 06:28:00 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231328.i6NDS0Id052600@xorpc.icir.org> Date: Fri, 23 Jul 2004 6:28:00 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ lcspaper.tex vision.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 06:28:00 Modified files: xorp/docs/papers/lcs2004_paper/: lcspaper.tex vision.tex Log message: floating figures - more space saving tricks _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 6:30:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 06:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDV1VM070594 for ; Fri, 23 Jul 2004 06:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDV1rU059372 for ; Fri, 23 Jul 2004 06:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDV0Yc016813; Fri, 23 Jul 2004 06:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDUpYc016807 for ; Fri, 23 Jul 2004 06:30:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDUprU059370 for ; Fri, 23 Jul 2004 06:30:51 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDUo8M052670 for ; Fri, 23 Jul 2004 06:30:50 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NDUobi052669; Fri, 23 Jul 2004 06:30:50 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231330.i6NDUobi052669@xorpc.icir.org> Date: Fri, 23 Jul 2004 6:30:50 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ lcspaper.tex vision.tex xorp/docs/papers/lcs2004_paper/ users.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 06:30:50 Modified files: xorp/docs/papers/lcs2004_paper/: lcspaper.tex vision.tex Added files: xorp/docs/papers/lcs2004_paper/: users.tex Log message: moved users section new file _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 6:50:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 06:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDp1VM075397 for ; Fri, 23 Jul 2004 06:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDp1rU059631 for ; Fri, 23 Jul 2004 06:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDp1Yc017255; Fri, 23 Jul 2004 06:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NDonYc017246 for ; Fri, 23 Jul 2004 06:50:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDonrU059628 for ; Fri, 23 Jul 2004 06:50:49 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NDon8M052874 for ; Fri, 23 Jul 2004 06:50:49 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NDonnd052873; Fri, 23 Jul 2004 06:50:49 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231350.i6NDonnd052873@xorpc.icir.org> Date: Fri, 23 Jul 2004 6:50:49 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ users.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 06:50:49 Modified files: xorp/docs/papers/lcs2004_paper/: users.tex Log message: sliming down _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 7:08:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 07:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NE91VM079720 for ; Fri, 23 Jul 2004 07:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NE91rU059871 for ; Fri, 23 Jul 2004 07:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NE91Yc017533; Fri, 23 Jul 2004 07:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NE8ZYc017516 for ; Fri, 23 Jul 2004 07:08:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NE8ZrU059868 for ; Fri, 23 Jul 2004 07:08:35 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NE8Z8M053053 for ; Fri, 23 Jul 2004 07:08:35 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NE8ZYx053052; Fri, 23 Jul 2004 07:08:35 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231408.i6NE8ZYx053052@xorpc.icir.org> Date: Fri, 23 Jul 2004 7:08:35 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ abstract.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 07:08:35 Modified files: xorp/docs/papers/lcs2004_paper/: abstract.tex Log message: 3 lines less in the abstract _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 7:18:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 07:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEJ1VM082130 for ; Fri, 23 Jul 2004 07:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEJ1rU059992 for ; Fri, 23 Jul 2004 07:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NEJ0Yc017767; Fri, 23 Jul 2004 07:19:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NEI2Yc017736 for ; Fri, 23 Jul 2004 07:18:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEI2rU059979 for ; Fri, 23 Jul 2004 07:18:02 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEI28M053159 for ; Fri, 23 Jul 2004 07:18:02 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NEI1Hr053158; Fri, 23 Jul 2004 07:18:01 -0700 (PDT) (envelope-from greenhal) From: Adam Greenhalgh Message-Id: <200407231418.i6NEI1Hr053158@xorpc.icir.org> Date: Fri, 23 Jul 2004 7:18:01 () To: xorp-cvs@icir.org Reply-To: greenhal@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ lcspaper.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: greenhal@xorpc.icir.org. 04/07/23 07:18:01 Modified files: xorp/docs/papers/lcs2004_paper/: lcspaper.tex Log message: some cheating on the abstract title spacing _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 7:18:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 07:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEJ2VM082145 for ; Fri, 23 Jul 2004 07:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEJ2rU059994 for ; Fri, 23 Jul 2004 07:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NEJ1Yc017778; Fri, 23 Jul 2004 07:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NEIuYc017761 for ; Fri, 23 Jul 2004 07:18:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEIurU059990 for ; Fri, 23 Jul 2004 07:18:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NEIu8M053206 for ; Fri, 23 Jul 2004 07:18:56 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NEIu0F053205; Fri, 23 Jul 2004 07:18:56 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231418.i6NEIu0F053205@xorpc.icir.org> Date: Fri, 23 Jul 2004 7:18:56 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ lcspaper.tex vision.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 07:18:56 Modified files: xorp/docs/papers/lcs2004_paper/: lcspaper.tex vision.tex Log message: trim and tighter format _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:14 2005 Subject: No subject Fri Jul 23 7:28:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 07:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NET1VM084549 for ; Fri, 23 Jul 2004 07:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NET1rU060134 for ; Fri, 23 Jul 2004 07:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NET0Yc017966; Fri, 23 Jul 2004 07:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NESGYc017949 for ; Fri, 23 Jul 2004 07:28:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NESGrU060125 for ; Fri, 23 Jul 2004 07:28:16 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NESG8M053298 for ; Fri, 23 Jul 2004 07:28:16 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NESGEI053297; Fri, 23 Jul 2004 07:28:16 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231428.i6NESGEI053297@xorpc.icir.org> Date: Fri, 23 Jul 2004 7:28:16 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ users.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 07:28:16 Modified files: xorp/docs/papers/lcs2004_paper/: users.tex Log message: change font for XRL _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 8:16:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 08:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NFH0VM096057 for ; Fri, 23 Jul 2004 08:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NFH0rU061955 for ; Fri, 23 Jul 2004 08:17:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NFH0Yc019001; Fri, 23 Jul 2004 08:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NFGBYc018969 for ; Fri, 23 Jul 2004 08:16:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NFGBrU061947 for ; Fri, 23 Jul 2004 08:16:11 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NFGB8M053766 for ; Fri, 23 Jul 2004 08:16:11 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NFGBBi053765; Fri, 23 Jul 2004 08:16:11 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231516.i6NFGBBi053765@xorpc.icir.org> Date: Fri, 23 Jul 2004 8:16:11 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ abstract.tex acknowledgments.tex intro.tex lcspaper.tex summary.tex users.tex vision.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 08:16:11 Modified files: xorp/docs/papers/lcs2004_paper/: abstract.tex acknowledgments.tex intro.tex lcspaper.tex summary.tex users.tex vision.tex Log message: Trimming _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 9:59:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 10:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NH01VM021682 for ; Fri, 23 Jul 2004 10:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NH01rU063052 for ; Fri, 23 Jul 2004 10:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NH01Yc021404; Fri, 23 Jul 2004 10:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NGx3Yc021376 for ; Fri, 23 Jul 2004 09:59:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NGx3rU063036 for ; Fri, 23 Jul 2004 09:59:03 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NGx38M055913 for ; Fri, 23 Jul 2004 09:59:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NGx301055912; Fri, 23 Jul 2004 09:59:03 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231659.i6NGx301055912@xorpc.icir.org> Date: Fri, 23 Jul 2004 9:59:03 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ biblio.bib intro.tex lcspaper.tex summary.tex users.tex vision.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 09:59:03 Modified files: xorp/docs/papers/lcs2004_paper/: biblio.bib intro.tex lcspaper.tex summary.tex users.tex vision.tex Log message: Minor tweaks, plus adding references _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 10:14:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 10:15:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NHF0VM024823 for ; Fri, 23 Jul 2004 10:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NHF0rU063214 for ; Fri, 23 Jul 2004 10:15:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NHF0Yc021854; Fri, 23 Jul 2004 10:15:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NHEcYc021839 for ; Fri, 23 Jul 2004 10:14:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NHEcrU063209 for ; Fri, 23 Jul 2004 10:14:38 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NHEc8M056058 for ; Fri, 23 Jul 2004 10:14:38 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NHEbQi056057; Fri, 23 Jul 2004 10:14:37 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407231714.i6NHEbQi056057@xorpc.icir.org> Date: Fri, 23 Jul 2004 10:14:37 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper/ intro.tex lcspaper.tex users.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/papers/lcs2004_paper/ Changes by: mjh@xorpc.icir.org. 04/07/23 10:14:37 Modified files: xorp/docs/papers/lcs2004_paper/: intro.tex lcspaper.tex users.tex Log message: spellcheck _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 15:11:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 15:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMC1VM011294 for ; Fri, 23 Jul 2004 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMC1UA066334 for ; Fri, 23 Jul 2004 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMC1Yc000312; Fri, 23 Jul 2004 15:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMBsYc000301 for ; Fri, 23 Jul 2004 15:11:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMBsUA066332 for ; Fri, 23 Jul 2004 15:11:54 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMBs8M068752 for ; Fri, 23 Jul 2004 15:11:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NMBs2G068751; Fri, 23 Jul 2004 15:11:54 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407232211.i6NMBs2G068751@xorpc.icir.org> Date: Fri, 23 Jul 2004 15:11:53 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html ...status.html ...xorp_vision.html www/html_src/ mirrors.html www/scripts/ XorpOrgGenerator.py ./ mirror_operation.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/scripts/ Changes by: atanu@xorpc.icir.org. 04/07/23 15:11:53 Modified files: ./: contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirrors.html news.html papers.html people.html porting.html snmp.html status.html xorp_vision.html www/html_src/: mirrors.html www/scripts/: XorpOrgGenerator.py Added files: ./: mirror_operation.html Log message: Create a separate page for how to operate a web mirror. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 15:49:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 15:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMo1VM020525 for ; Fri, 23 Jul 2004 15:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMo1UA066687 for ; Fri, 23 Jul 2004 15:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMo0Yc001388; Fri, 23 Jul 2004 15:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMnjYc001378 for ; Fri, 23 Jul 2004 15:49:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMniUA066679 for ; Fri, 23 Jul 2004 15:49:44 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMni8M073423 for ; Fri, 23 Jul 2004 15:49:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NMniuk073422; Fri, 23 Jul 2004 15:49:44 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407232249.i6NMniuk073422@xorpc.icir.org> Date: Fri, 23 Jul 2004 15:49:44 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mailing_lists.html www/html_src/ mailing_lists.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/23 15:49:44 Modified files: ./: mailing_lists.html www/html_src/: mailing_lists.html Log message: Add an entry for xorp-mirrors. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 15:51:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 15:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMq1VM021039 for ; Fri, 23 Jul 2004 15:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMq1UA066722 for ; Fri, 23 Jul 2004 15:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMq1Yc001455; Fri, 23 Jul 2004 15:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6NMp5Yc001424 for ; Fri, 23 Jul 2004 15:51:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMp4UA066718 for ; Fri, 23 Jul 2004 15:51:04 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6NMp48M073488 for ; Fri, 23 Jul 2004 15:51:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6NMp41Q073487; Fri, 23 Jul 2004 15:51:04 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407232251.i6NMp41Q073487@xorpc.icir.org> Date: Fri, 23 Jul 2004 15:51:04 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ mirror_operation.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/23 15:51:04 Added files: www/html_src/: mirror_operation.html Log message: How to operate a mirror. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 17:54:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 17:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0t1VM050580 for ; Fri, 23 Jul 2004 17:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0t0UA067791 for ; Fri, 23 Jul 2004 17:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O0t0Yc004319; Fri, 23 Jul 2004 17:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O0sEYc004298 for ; Fri, 23 Jul 2004 17:54:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0sEUA067786 for ; Fri, 23 Jul 2004 17:54:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0sE8M074606 for ; Fri, 23 Jul 2004 17:54:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O0sE7e074605; Fri, 23 Jul 2004 17:54:14 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240054.i6O0sE7e074605@xorpc.icir.org> Date: Fri, 23 Jul 2004 17:54:14 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ TODO Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/23 17:54:14 Modified files: xorp/rib/: TODO Log message: Add two TODO entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 17:56:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 17:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0v1VM051080 for ; Fri, 23 Jul 2004 17:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0v1UA067836 for ; Fri, 23 Jul 2004 17:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O0v1Yc004405; Fri, 23 Jul 2004 17:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O0ucYc004392 for ; Fri, 23 Jul 2004 17:56:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0ucUA067834 for ; Fri, 23 Jul 2004 17:56:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O0uc8M074689 for ; Fri, 23 Jul 2004 17:56:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O0ucpq074688; Fri, 23 Jul 2004 17:56:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240056.i6O0ucpq074688@xorpc.icir.org> Date: Fri, 23 Jul 2004 17:56:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib.xif Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/interfaces/ Changes by: pavlin@xorpc.icir.org. 04/07/23 17:56:38 Modified files: xorp/xrl/interfaces/: rib.xif Log message: Remove the add/delete/enable/disable rib_client XRL interface, because it is superceded by the "redist" XRL interface. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:01:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O120VM052328 for ; Fri, 23 Jul 2004 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O120UA067909 for ; Fri, 23 Jul 2004 18:02:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O120Yc004505; Fri, 23 Jul 2004 18:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O11sYc004499 for ; Fri, 23 Jul 2004 18:01:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O11sUA067907 for ; Fri, 23 Jul 2004 18:01:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O11s8M074744 for ; Fri, 23 Jul 2004 18:01:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O11sbo074743; Fri, 23 Jul 2004 18:01:54 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240101.i6O11sbo074743@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:01:54 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_base.hh rt_tab_register.cc rt_tab_register.hh ...test_register.cc ...test_register_xrls.cc ...test_rib_direct.cc ...test_rib_xrls.cc ...xrl_target.cc ...xrl_target.hh xorp/rib/ rib_client.cc rib_client.hh rt_tab_export.cc rt_tab_export.hh test_rib_client.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:01:54 Modified files: xorp/rib/: Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh main_rib.cc rib.cc rib.hh rib_manager.cc rib_manager.hh rt_tab_base.hh rt_tab_register.cc rt_tab_register.hh test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc xrl_target.cc xrl_target.hh Removed files: xorp/rib/: rib_client.cc rib_client.hh rt_tab_export.cc rt_tab_export.hh test_rib_client.cc Log message: * Remove the enable/disable/enable/disable rib_client XRL interface, because it is superceded by the redist XRL interface. * Remove the ExportTable and RibClient classes, because they are obsoleted by the RedistTable. * Move local function initialize_rib() from rib_manager.cc to a new method RIB::initialize() * Pass RegisterServer argument as a reference rather as a pointer. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:03:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O141VM052796 for ; Fri, 23 Jul 2004 18:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O141UA067942 for ; Fri, 23 Jul 2004 18:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O141Yc004566; Fri, 23 Jul 2004 18:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O136Yc004544 for ; Fri, 23 Jul 2004 18:03:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O136UA067925 for ; Fri, 23 Jul 2004 18:03:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1368M074804 for ; Fri, 23 Jul 2004 18:03:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O1360H074803; Fri, 23 Jul 2004 18:03:06 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240103.i6O1360H074803@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:03:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ rib_xif.cc rib_xif.hh xorp/xrl/targets/ rib.xrls rib_base.cc rib_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:03:06 Modified files: xorp/xrl/interfaces/: rib_xif.cc rib_xif.hh xorp/xrl/targets/: rib.xrls rib_base.cc rib_base.hh Log message: Re-generate. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:03:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O142VM052811 for ; Fri, 23 Jul 2004 18:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O142UA067944 for ; Fri, 23 Jul 2004 18:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O142Yc004577; Fri, 23 Jul 2004 18:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O13MYc004551 for ; Fri, 23 Jul 2004 18:03:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O13MUA067931 for ; Fri, 23 Jul 2004 18:03:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O13M8M074844 for ; Fri, 23 Jul 2004 18:03:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O13MKE074843; Fri, 23 Jul 2004 18:03:22 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240103.i6O13MKE074843@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:03:22 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ xrl_rib_shell_funcs.sh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:03:22 Modified files: xorp/pim/: xrl_rib_shell_funcs.sh Log message: Re-generate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:09:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1A1VM054254 for ; Fri, 23 Jul 2004 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1A0UA068007 for ; Fri, 23 Jul 2004 18:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O1A0Yc004746; Fri, 23 Jul 2004 18:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O19qYc004739 for ; Fri, 23 Jul 2004 18:09:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O19qUA068002 for ; Fri, 23 Jul 2004 18:09:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O19q8M074929 for ; Fri, 23 Jul 2004 18:09:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O19q8h074928; Fri, 23 Jul 2004 18:09:52 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240109.i6O19q8h074928@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:09:52 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib/ rib.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:09:52 Modified files: xorp/docs/rib/: rib.tex Log message: Fix an old text: "export table" -> "RedistTable" _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:24:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1P1VM057916 for ; Fri, 23 Jul 2004 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1P1UA068152 for ; Fri, 23 Jul 2004 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O1P1Yc005068; Fri, 23 Jul 2004 18:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O1O5Yc005043 for ; Fri, 23 Jul 2004 18:24:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1O5UA068139 for ; Fri, 23 Jul 2004 18:24:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1O58M075046 for ; Fri, 23 Jul 2004 18:24:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O1O5JB075045; Fri, 23 Jul 2004 18:24:05 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240124.i6O1O5JB075045@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:24:05 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:24:05 Modified files: ./: RELEASE_NOTES Log message: * Add a template for 1.1 release notes * Add few 1.1 release notes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Fri Jul 23 18:44:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 23 Jul 2004 18:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1j1VM063010 for ; Fri, 23 Jul 2004 18:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1j1UA068342 for ; Fri, 23 Jul 2004 18:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O1j0Yc005469; Fri, 23 Jul 2004 18:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6O1iAYc005453 for ; Fri, 23 Jul 2004 18:44:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1iAUA068332 for ; Fri, 23 Jul 2004 18:44:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6O1iA8M082164 for ; Fri, 23 Jul 2004 18:44:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6O1iAHF082163; Fri, 23 Jul 2004 18:44:10 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407240144.i6O1iAHF082163@xorpc.icir.org> Date: Fri, 23 Jul 2004 18:44:10 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/ rib.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/rib/ Changes by: pavlin@xorpc.icir.org. 04/07/23 18:44:10 Modified files: xorp/rib/: rib.cc Log message: Bug fix: when adding an interface address, if the interface is p2p, then add a directly-connected route for the peer address. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sat Jul 24 10:54:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 24 Jul 2004 10:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OHt2VM059018 for ; Sat, 24 Jul 2004 10:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OHt2g5080502 for ; Sat, 24 Jul 2004 10:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6OHt1Yc022095; Sat, 24 Jul 2004 10:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6OHsMYc022059 for ; Sat, 24 Jul 2004 10:54:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OHsMg5080495 for ; Sat, 24 Jul 2004 10:54:22 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OHsM8M092945 for ; Sat, 24 Jul 2004 10:54:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6OHsMRs092944; Sat, 24 Jul 2004 10:54:22 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407241754.i6OHsMRs092944@xorpc.icir.org> Date: Sat, 24 Jul 2004 10:54:22 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/24 10:54:22 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: Add mirror: UFRGS, Porto Alegre, Brazil _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sat Jul 24 11:10:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 24 Jul 2004 11:11:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OIB0VM062246 for ; Sat, 24 Jul 2004 11:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OIB0g5080653 for ; Sat, 24 Jul 2004 11:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6OIB0Yc022352; Sat, 24 Jul 2004 11:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6OIA1Yc022314 for ; Sat, 24 Jul 2004 11:10:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OIA0g5080633 for ; Sat, 24 Jul 2004 11:10:00 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6OIA08M093137 for ; Sat, 24 Jul 2004 11:10:00 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6OIA08J093136; Sat, 24 Jul 2004 11:10:00 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407241810.i6OIA08J093136@xorpc.icir.org> Date: Sat, 24 Jul 2004 11:10:00 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/24 11:10:00 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: mirror: UFRGS, Porto Alegre, Brazil Updated hourly. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sun Jul 25 19:57:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 19:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2w1VM049211 for ; Sun, 25 Jul 2004 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2w1g5099390 for ; Sun, 25 Jul 2004 19:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q2w1Yc026274; Sun, 25 Jul 2004 19:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q2vPYc026263 for ; Sun, 25 Jul 2004 19:57:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2vPg5099386 for ; Sun, 25 Jul 2004 19:57:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2vP8M008435 for ; Sun, 25 Jul 2004 19:57:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q2vPH0008434; Sun, 25 Jul 2004 19:57:25 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260257.i6Q2vPH0008434@xorpc.icir.org> Date: Sun, 25 Jul 2004 19:57:25 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ Makefile.am Makefile.in test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/25 19:57:25 Modified files: xorp/pim/: Makefile.am Makefile.in test_pim.cc Log message: * Link against fib2mrib * Fix the linking against the RIB * Minor cleanup _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sun Jul 25 19:58:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 19:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2x2VM049440 for ; Sun, 25 Jul 2004 19:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2x2g5099410 for ; Sun, 25 Jul 2004 19:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q2x2Yc026318; Sun, 25 Jul 2004 19:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q2wvYc026304 for ; Sun, 25 Jul 2004 19:58:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2wug5099404 for ; Sun, 25 Jul 2004 19:58:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q2wu8M008483 for ; Sun, 25 Jul 2004 19:58:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q2wutJ008482; Sun, 25 Jul 2004 19:58:56 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260258.i6Q2wutJ008482@xorpc.icir.org> Date: Sun, 25 Jul 2004 19:58:56 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ Makefile.am Makefile.in Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/25 19:58:56 Modified files: ./: Makefile.am Makefile.in Log message: Move fib2mrib and mld6igmp to the list of dual libraries/applications. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sun Jul 25 20:00:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 20:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q311VM049896 for ; Sun, 25 Jul 2004 20:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q310g5099458 for ; Sun, 25 Jul 2004 20:01:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q310Yc026374; Sun, 25 Jul 2004 20:01:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q30sYc026367 for ; Sun, 25 Jul 2004 20:00:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q30rg5099456 for ; Sun, 25 Jul 2004 20:00:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q30r8M014581 for ; Sun, 25 Jul 2004 20:00:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q30rOY014580; Sun, 25 Jul 2004 20:00:53 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260300.i6Q30rOY014580@xorpc.icir.org> Date: Sun, 25 Jul 2004 20:00:53 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config/ config10.xt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Repository: other/testbed/config/ Changes by: pavlin@xorpc.icir.org. 04/07/25 20:00:53 Modified files: other/testbed/config/: config10.xt Log message: * Connect xorp4 * Reformat _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:15 2005 Subject: No subject Sun Jul 25 20:46:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 20:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q3l2VM058900 for ; Sun, 25 Jul 2004 20:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q3l2g5099836 for ; Sun, 25 Jul 2004 20:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q3l1Yc027168; Sun, 25 Jul 2004 20:47:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q3kBYc027157 for ; Sun, 25 Jul 2004 20:46:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q3kBg5099834 for ; Sun, 25 Jul 2004 20:46:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q3kB8M022308 for ; Sun, 25 Jul 2004 20:46:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q3kB0K022307; Sun, 25 Jul 2004 20:46:11 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260346.i6Q3kB0K022307@xorpc.icir.org> Date: Sun, 25 Jul 2004 20:46:11 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/ cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_node_net.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/cli/ Changes by: pavlin@xorpc.icir.org. 04/07/25 20:46:11 Modified files: xorp/cli/: cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_node_net.cc Log message: Bug fix: make auto-completion work for sub-commands as well. The solution replaces method "multi_command_find()" with a new method "is_multi_command_prefix()" that computes properly whether the command line is a prefix (but not an exact match) for a multi-level command. [Bug report by Ray Qiu ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Sun Jul 25 23:29:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 23:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6U1VM090647 for ; Sun, 25 Jul 2004 23:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6U0g5001264 for ; Sun, 25 Jul 2004 23:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q6U0Yc000260; Sun, 25 Jul 2004 23:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q6T1Yc000238 for ; Sun, 25 Jul 2004 23:29:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6T1g5001262 for ; Sun, 25 Jul 2004 23:29:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6T08M026232 for ; Sun, 25 Jul 2004 23:29:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q6T0Xb026231; Sun, 25 Jul 2004 23:29:00 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260629.i6Q6T0Xb026231@xorpc.icir.org> Date: Sun, 25 Jul 2004 23:29:00 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes/ static_routes_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/static_routes/ Changes by: pavlin@xorpc.icir.org. 04/07/25 23:29:00 Modified files: xorp/static_routes/: static_routes_node.cc Log message: Fix typos. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Sun Jul 25 23:30:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 25 Jul 2004 23:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6V1VM090875 for ; Sun, 25 Jul 2004 23:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6V1g5001295 for ; Sun, 25 Jul 2004 23:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q6V1Yc000301; Sun, 25 Jul 2004 23:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q6U2Yc000267 for ; Sun, 25 Jul 2004 23:30:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6U2g5001269 for ; Sun, 25 Jul 2004 23:30:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q6U18M026288 for ; Sun, 25 Jul 2004 23:30:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q6U1jK026287; Sun, 25 Jul 2004 23:30:01 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260630.i6Q6U1jK026287@xorpc.icir.org> Date: Sun, 25 Jul 2004 23:30:01 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib/ fib2mrib_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/fib2mrib/ Changes by: pavlin@xorpc.icir.org. 04/07/25 23:30:01 Modified files: xorp/fib2mrib/: fib2mrib_node.cc Log message: Bug fixes in replacing and deleting routes (e.g., if the deletion of a route omits the interface name). _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 0:07:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 00:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q782VM098136 for ; Mon, 26 Jul 2004 00:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q781g5001616 for ; Mon, 26 Jul 2004 00:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q781Yc001176; Mon, 26 Jul 2004 00:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q77vYc001167 for ; Mon, 26 Jul 2004 00:07:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q77vg5001611 for ; Mon, 26 Jul 2004 00:07:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q77v8M027230 for ; Mon, 26 Jul 2004 00:07:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q77v3X027229; Mon, 26 Jul 2004 00:07:57 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260707.i6Q77v3X027229@xorpc.icir.org> Date: Mon, 26 Jul 2004 0:07:57 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/26 00:07:57 Modified files: xorp/pim/: pim_node.cc Log message: Fix the calculation of PimNode::pim_nbr_rpf_find() for directly connected destination addresses: if the MRIB info is received from the RIB, then the RIB may set the next-hop router address to be the address of the interface that is directly connected to the destination. The old implementation assumed that for directly-connected MRIB entries the next-hop router address is always ZERO. The new implementation fixes that. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 1:40:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 01:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8f1VM016459 for ; Mon, 26 Jul 2004 01:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8f1g5002537 for ; Mon, 26 Jul 2004 01:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q8f1Yc002941; Mon, 26 Jul 2004 01:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q8eLYc002926 for ; Mon, 26 Jul 2004 01:40:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8eLg5002528 for ; Mon, 26 Jul 2004 01:40:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8eL8M028992 for ; Mon, 26 Jul 2004 01:40:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q8eLgL028991; Mon, 26 Jul 2004 01:40:21 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260840.i6Q8eLgL028991@xorpc.icir.org> Date: Mon, 26 Jul 2004 1:40:21 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mre.hh pim_mre_rpf.cc pim_mre_track_state.hh pim_mre_track_state.cc xorp/pim/docs/ pim_track_state_name.txt pim_track_state_num.txt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/docs/ Changes by: pavlin@xorpc.icir.org. 04/07/26 01:40:21 Modified files: xorp/pim/: pim_mre.hh pim_mre_rpf.cc pim_mre_track_state.hh pim_mre_track_state.cc xorp/pim/docs/: pim_track_state_name.txt pim_track_state_num.txt Log message: Bug fix: add dependency tracking mechanism to set appropriately the nbr_mrib_next_hop_rp entry (i.e., NBR(RPF_interface(RP(G)), MRIB.next_hop(RP(G)))) for (*,G) entries. [Bug report by Achmad Husni Thamrin ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 1:42:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 01:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8h0VM016829 for ; Mon, 26 Jul 2004 01:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8h0g5002565 for ; Mon, 26 Jul 2004 01:43:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q8h0Yc002996; Mon, 26 Jul 2004 01:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q8glYc002984 for ; Mon, 26 Jul 2004 01:42:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8gkg5002557 for ; Mon, 26 Jul 2004 01:42:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q8gk8M029075 for ; Mon, 26 Jul 2004 01:42:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q8gkSL029074; Mon, 26 Jul 2004 01:42:46 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260842.i6Q8gkSL029074@xorpc.icir.org> Date: Mon, 26 Jul 2004 1:42:46 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ test_pim.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/26 01:42:46 Modified files: xorp/pim/: test_pim.cc Log message: Now the default behavior for the test_pim stand-alone program is to receive the MRIB from the RIB itself rather than from the MFEA. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 2:22:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 02:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9N1VM025548 for ; Mon, 26 Jul 2004 02:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9N1g5003402 for ; Mon, 26 Jul 2004 02:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q9N1Yc003801; Mon, 26 Jul 2004 02:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q9MbYc003786 for ; Mon, 26 Jul 2004 02:22:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9Mbg5003397 for ; Mon, 26 Jul 2004 02:22:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9Mb8M030179 for ; Mon, 26 Jul 2004 02:22:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q9MbhK030178; Mon, 26 Jul 2004 02:22:37 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260922.i6Q9MbhK030178@xorpc.icir.org> Date: Mon, 26 Jul 2004 2:22:37 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/26 02:22:37 Modified files: ./: RELEASE_NOTES Log message: Add release notes to PIM-SM and Fib2Mrib. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 2:25:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 02:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9Q1VM026165 for ; Mon, 26 Jul 2004 02:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9Q0g5003459 for ; Mon, 26 Jul 2004 02:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q9Q0Yc003854; Mon, 26 Jul 2004 02:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6Q9PSYc003838 for ; Mon, 26 Jul 2004 02:25:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9PSg5003450 for ; Mon, 26 Jul 2004 02:25:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6Q9PS8M030238 for ; Mon, 26 Jul 2004 02:25:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6Q9PSDX030237; Mon, 26 Jul 2004 02:25:28 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407260925.i6Q9PSDX030237@xorpc.icir.org> Date: Mon, 26 Jul 2004 2:25:28 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ RELEASE_NOTES Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/26 02:25:28 Modified files: ./: RELEASE_NOTES Log message: Add a release note for CLI. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 14:02:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 14:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QL31VM072983 for ; Mon, 26 Jul 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QL31Wr014635 for ; Mon, 26 Jul 2004 14:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QL31Yc025457; Mon, 26 Jul 2004 14:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QL2uYc025450 for ; Mon, 26 Jul 2004 14:02:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QL2uWr014631 for ; Mon, 26 Jul 2004 14:02:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QL2u8M037768 for ; Mon, 26 Jul 2004 14:02:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6QL2uXG037767; Mon, 26 Jul 2004 14:02:56 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407262102.i6QL2uXG037767@xorpc.icir.org> Date: Mon, 26 Jul 2004 14:02:56 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/26 14:02:56 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: mirror: GWDG, Göttingen, Germany Updated every four hours _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 15:12:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 15:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMD1VM089692 for ; Mon, 26 Jul 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMD1Wr015502 for ; Mon, 26 Jul 2004 15:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QMD1Yc001192; Mon, 26 Jul 2004 15:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QMCfYc001181 for ; Mon, 26 Jul 2004 15:12:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMCfWr015500 for ; Mon, 26 Jul 2004 15:12:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMCe8M044553 for ; Mon, 26 Jul 2004 15:12:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6QMCesc044552; Mon, 26 Jul 2004 15:12:40 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407262212.i6QMCesc044552@xorpc.icir.org> Date: Mon, 26 Jul 2004 15:12:40 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_node_cli.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/26 15:12:40 Modified files: xorp/pim/: pim_node_cli.cc Log message: Added "KAT(S,G) running: true/false" to the "show pim join" CLI output for (S,G) entries. [A feature request by "edrt" ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 15:19:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 15:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMK1VM091368 for ; Mon, 26 Jul 2004 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMK1Wr015631 for ; Mon, 26 Jul 2004 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QMK1Yc001506; Mon, 26 Jul 2004 15:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6QMJUYc001464 for ; Mon, 26 Jul 2004 15:19:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMJUWr015622 for ; Mon, 26 Jul 2004 15:19:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6QMJU8M044648 for ; Mon, 26 Jul 2004 15:19:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6QMJUC8044647; Mon, 26 Jul 2004 15:19:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407262219.i6QMJUC8044647@xorpc.icir.org> Date: Mon, 26 Jul 2004 15:19:29 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_proto_join_prune_message.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/26 15:19:29 Modified files: xorp/pim/: pim_proto_join_prune_message.cc Log message: When performing a sanity check of received Join/Prune message, add missing check for the following disallowed combinations: - Join(*,*,RP) following a Prune(*,*,RP) and vice-versa. [Bug report by "edrt" ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 17:53:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 17:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R0s1VM028760 for ; Mon, 26 Jul 2004 17:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R0s1Wr017256 for ; Mon, 26 Jul 2004 17:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6R0s0Yc006342; Mon, 26 Jul 2004 17:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6R0rnYc006333 for ; Mon, 26 Jul 2004 17:53:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R0rmWr017250 for ; Mon, 26 Jul 2004 17:53:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R0rm8M046127 for ; Mon, 26 Jul 2004 17:53:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6R0rm6l046126; Mon, 26 Jul 2004 17:53:48 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407270053.i6R0rm6l046126@xorpc.icir.org> Date: Mon, 26 Jul 2004 17:53:48 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , xorp-cvs@icir.org CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev_101/ Changes by: pavlin@xorpc.icir.org. 04/07/26 17:53:48 xorp/docs/xorpdev_101 Update of /usr/local/share/doc/apache/cvs/xorp/docs/xorpdev_101 In directory xorpc.icir.org:/tmp/cvs-serv46120/xorpdev_101 Log Message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/xorpdev_101 added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Mon Jul 26 18:17:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 26 Jul 2004 18:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R1I1VM034604 for ; Mon, 26 Jul 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R1I1Wr017577 for ; Mon, 26 Jul 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6R1I0Yc006980; Mon, 26 Jul 2004 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6R1HdYc006968 for ; Mon, 26 Jul 2004 18:17:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R1HdWr017572 for ; Mon, 26 Jul 2004 18:17:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6R1Hd8M046441 for ; Mon, 26 Jul 2004 18:17:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6R1HcEm046440; Mon, 26 Jul 2004 18:17:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407270117.i6R1HcEm046440@xorpc.icir.org> Date: Mon, 26 Jul 2004 18:17:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure configure.in xorp/docs/ Makefile.am Makefile.in xorp/docs/xorpdev_101/ .cvsignore Makefile.am Makefile.in xorp/docs/xorpdev-101/ .cvsignore Makefile.am Makefile.in xorpdev101.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/xorpdev-101/ Changes by: pavlin@xorpc.icir.org. 04/07/26 18:17:38 Modified files: ./: configure configure.in xorp/docs/: Makefile.am Makefile.in xorp/docs/xorpdev_101/: .cvsignore Makefile.am Makefile.in Removed files: xorp/docs/xorpdev-101/: .cvsignore Makefile.am Makefile.in xorpdev101.tex Log message: Move docs/xorpdev-101 to docs/xorpdev_101 (within the XORP CVS repository to preserve the history), and rename xorpdev101.tex to xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 17:46:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 17:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S0l1VM051457 for ; Tue, 27 Jul 2004 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S0l1EW034475 for ; Tue, 27 Jul 2004 17:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S0l0Yc014830; Tue, 27 Jul 2004 17:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S0kJYc014778 for ; Tue, 27 Jul 2004 17:46:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S0kIEW034464 for ; Tue, 27 Jul 2004 17:46:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S0kI8M067063 for ; Tue, 27 Jul 2004 17:46:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S0kIRi067062; Tue, 27 Jul 2004 17:46:18 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407280046.i6S0kIRi067062@xorpc.icir.org> Date: Tue, 27 Jul 2004 17:46:18 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/27 17:46:18 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: Add mirror: NCIT, Ottawa, Canada _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 20:03:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 20:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S341VM098422 for ; Tue, 27 Jul 2004 20:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S341EW036276 for ; Tue, 27 Jul 2004 20:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S340Yc018279; Tue, 27 Jul 2004 20:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S33OYc018256 for ; Tue, 27 Jul 2004 20:03:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S33OEW036265 for ; Tue, 27 Jul 2004 20:03:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S33O8M068225 for ; Tue, 27 Jul 2004 20:03:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S33OVX068224; Tue, 27 Jul 2004 20:03:24 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407280303.i6S33OVX068224@xorpc.icir.org> Date: Tue, 27 Jul 2004 20:03:24 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ configure.in configure config.h.in xorp/fea/ mfea_mrouter.cc mfea_node.cc xorp/mrt/include/ ip_mroute.h Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/include/ Changes by: pavlin@xorpc.icir.org. 04/07/27 20:03:24 Modified files: ./: configure.in configure config.h.in xorp/fea/: mfea_mrouter.cc mfea_node.cc xorp/mrt/include/: ip_mroute.h Log message: Replace "./configure" flag --enable-advanced-mcast-api with --disable-advanced-multicast-api. Previously, the configuration default is not to use the advanced multicast API (if the OS supports it). Now the default is to attempt to use it if the OS supports it, and use the --disable-advanced-multicast-api option to explicitly disable it. [Feature request by ] _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 21:48:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 21:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S4n1VM019516 for ; Tue, 27 Jul 2004 21:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S4n1EW037615 for ; Tue, 27 Jul 2004 21:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S4n1Yc020723; Tue, 27 Jul 2004 21:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S4m7Yc020694 for ; Tue, 27 Jul 2004 21:48:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S4m7EW037606 for ; Tue, 27 Jul 2004 21:48:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S4m78M083132 for ; Tue, 27 Jul 2004 21:48:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S4m7vv083131; Tue, 27 Jul 2004 21:48:07 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407280448.i6S4m7vv083131@xorpc.icir.org> Date: Tue, 27 Jul 2004 21:48:06 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/ mrib_table.cc mrib_table.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/mrt/ Changes by: pavlin@xorpc.icir.org. 04/07/27 21:48:06 Modified files: xorp/mrt/: mrib_table.cc mrib_table.hh Log message: * Add a new method MribTable::remove_all_entries() that removes all MRIB entries, and use that method to implement MribTable::clear() * Add a new method MribTable::family() to return the address family of the table. * Implement support to add a transaction entry that will remove all MRIB entries. The entry is installed by a new method called MribTable::add_pending_remove_all_entries() _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 22:08:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 22:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S591VM023437 for ; Tue, 27 Jul 2004 22:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S591EW037882 for ; Tue, 27 Jul 2004 22:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S591Yc021233; Tue, 27 Jul 2004 22:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S58pYc021224 for ; Tue, 27 Jul 2004 22:08:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S58pEW037877 for ; Tue, 27 Jul 2004 22:08:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S58p8M083362 for ; Tue, 27 Jul 2004 22:08:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S58phd083361; Tue, 27 Jul 2004 22:08:51 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407280508.i6S58phd083361@xorpc.icir.org> Date: Tue, 27 Jul 2004 22:08:51 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces/ redist4.xif redist4_xif.hh redist6.xif redist6_xif.hh xorp/xrl/targets/ rip.xrls rip_base.hh ripng.xrls ripng_base.hh show_routes.xrls show_routes_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/07/27 22:08:51 Modified files: xorp/xrl/interfaces/: redist4.xif redist4_xif.hh redist6.xif redist6_xif.hh xorp/xrl/targets/: rip.xrls rip_base.hh ripng.xrls ripng_base.hh show_routes.xrls show_routes_base.hh Log message: Fix a typo. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 22:12:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 22:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5D1VM024224 for ; Tue, 27 Jul 2004 22:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5D1EW037946 for ; Tue, 27 Jul 2004 22:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S5D0Yc021317; Tue, 27 Jul 2004 22:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S5CIYc021305 for ; Tue, 27 Jul 2004 22:12:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5CHEW037936 for ; Tue, 27 Jul 2004 22:12:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5CH8M083462 for ; Tue, 27 Jul 2004 22:12:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S5CHqU083461; Tue, 27 Jul 2004 22:12:17 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407280512.i6S5CHqU083461@xorpc.icir.org> Date: Tue, 27 Jul 2004 22:12:17 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/ pim_mrib_table.hh pim_mrib_table.cc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/pim/ Changes by: pavlin@xorpc.icir.org. 04/07/27 22:12:17 Modified files: xorp/pim/: pim_mrib_table.hh pim_mrib_table.cc Log message: Implemented a new method to add a transaction item to remove all MRIB entries. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Tue Jul 27 22:13:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 27 Jul 2004 22:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5E1VM024427 for ; Tue, 27 Jul 2004 22:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5E1EW037959 for ; Tue, 27 Jul 2004 22:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S5E1Yc021357; Tue, 27 Jul 2004 22:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6S5DxYc021351 for ; Tue, 27 Jul 2004 22:13:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5DxEW037955 for ; Tue, 27 Jul 2004 22:13:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6S5Dx8M083520 for ; Tue, 27 Jul 2004 22:13:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6S5DxN0083519; Tue, 27 Jul 2004 22:13:59 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407280513.i6S5DxN0083519@xorpc.icir.org> Date: Tue, 27 Jul 2004 22:13:59 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ xrl_target.cc xrl_target.hh xorp/pim/ xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/ redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif ...redist_transaction6_xif.cc ...redist_transaction6_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/07/27 22:13:59 Modified files: xorp/fea/: xrl_target.cc xrl_target.hh xorp/pim/: xrl_pim_node.cc xrl_pim_node.hh xorp/xrl/interfaces/: redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.cc redist_transaction6_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Added new XRL methods: redist_transaction4/delete_all_routes redist_transaction6/delete_all_routes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:16 2005 Subject: No subject Wed Jul 28 10:47:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Jul 2004 10:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SHm1VM076107 for ; Wed, 28 Jul 2004 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SHm1EW048384 for ; Wed, 28 Jul 2004 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6SHm1Yc009216; Wed, 28 Jul 2004 10:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6SHl3Yc009180 for ; Wed, 28 Jul 2004 10:47:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SHl3EW048382 for ; Wed, 28 Jul 2004 10:47:03 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SHl38M091685 for ; Wed, 28 Jul 2004 10:47:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6SHl3NI091684; Wed, 28 Jul 2004 10:47:03 -0700 (PDT) (envelope-from atanu) From: Atanu Ghosh Message-Id: <200407281747.i6SHl3NI091684@xorpc.icir.org> Date: Wed, 28 Jul 2004 10:47:03 () To: xorp-cvs@icir.org Reply-To: atanu@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Repository: www/html_src/ Changes by: atanu@xorpc.icir.org. 04/07/28 10:47:03 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: Add mirror: BELNET, Belgium _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Wed Jul 28 15:51:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 28 Jul 2004 15:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SMq1VM049809 for ; Wed, 28 Jul 2004 15:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SMq1bV051787 for ; Wed, 28 Jul 2004 15:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6SMq1Yc017110; Wed, 28 Jul 2004 15:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6SMplYc017101 for ; Wed, 28 Jul 2004 15:51:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SMplbV051785 for ; Wed, 28 Jul 2004 15:51:47 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6SMpl8M094350 for ; Wed, 28 Jul 2004 15:51:47 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6SMpl4E094349; Wed, 28 Jul 2004 15:51:47 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407282251.i6SMpl4E094349@xorpc.icir.org> Date: Wed, 28 Jul 2004 15:51:47 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ mirrors.html www/html_src/ mirrors.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: mjh@xorpc.icir.org. 04/07/28 15:51:47 Modified files: ./: mirrors.html www/html_src/: mirrors.html Log message: Clean up layout by just listing hostname for ftp.gwdg.de _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Thu Jul 29 16:46:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Jul 2004 16:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.9p1/8.12.8) with ESMTP id i6TNl1VM062853 for ; Thu, 29 Jul 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6TNl1bV069768 for ; Thu, 29 Jul 2004 16:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6TNl1Yc024702; Thu, 29 Jul 2004 16:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6TNkcYc024690 for ; Thu, 29 Jul 2004 16:46:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6TNkcbV069766 for ; Thu, 29 Jul 2004 16:46:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6TNkc8M023147 for ; Thu, 29 Jul 2004 16:46:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6TNkcgv023146; Thu, 29 Jul 2004 16:46:38 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407292346.i6TNkcgv023146@xorpc.icir.org> Date: Thu, 29 Jul 2004 16:46:38 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/ test_add_route.sh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/ fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/ fea.xrls fea_base.cc fea_base.hh Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/xrl/targets/ Changes by: pavlin@xorpc.icir.org. 04/07/29 16:46:38 Modified files: xorp/fea/: test_add_route.sh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xorp/xrl/interfaces/: fti.xif fti_xif.cc fti_xif.hh xorp/xrl/targets/: fea.xrls fea_base.cc fea_base.hh Log message: Remove the following XRLs because they have been replaced with the redist_transaction[4,6] XRL interface: fti/0.2/start_transaction fti/0.2/commit_transaction fti/0.2/abort_transaction fti/0.2/add_entry[4,6] fti/0.2/delete_entry[4,6] fti/0.2/delete_all_entries[4,6] fti/0.2/delete_all_entries Note that the last XRL (fti/0.2/delete_all_entries) has not been replaced, because it has dual IPv4/IPv6 purpose which makes it trickier to replace it, and because it does not appear to serve very useful purpose. The new XRLs are: redist_transaction[4,6]/0.1/start_transaction redist_transaction[4,6]/0.1/commit_transaction redist_transaction[4,6]/0.1/abort_transaction redist_transaction[4,6]/0.1/add_route redist_transaction[4,6]/0.1/delete_route redist_transaction[4,6]/0.1/delete_all_routes _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Thu Jul 29 17:17:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Jul 2004 18:21:41 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6U1LeSf005896 for ; Thu, 29 Jul 2004 18:21:41 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0I1bV070106 for ; Thu, 29 Jul 2004 17:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U0I0Yc025631; Thu, 29 Jul 2004 17:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U0HUYc025609 for ; Thu, 29 Jul 2004 17:17:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0HUbV070099 for ; Thu, 29 Jul 2004 17:17:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0HU8M023568 for ; Thu, 29 Jul 2004 17:17:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6U0HUw6023567; Thu, 29 Jul 2004 17:17:30 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407300017.i6U0HUw6023567@xorpc.icir.org> Date: Thu, 29 Jul 2004 17:17:30 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ news.html www/html_src/ news.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: www/html_src/ Changes by: pavlin@xorpc.icir.org. 04/07/29 17:17:30 Modified files: ./: news.html www/html_src/: news.html Log message: * Added an overdue news item (with an earlier date) for Marko Zec joining the core team. * Added a news item for Bruce M. Simpson joining the core team. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Thu Jul 29 17:15:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Jul 2004 18:21:41 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6U1LeSd005896 for ; Thu, 29 Jul 2004 18:21:41 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0G1bV070082 for ; Thu, 29 Jul 2004 17:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U0G0Yc025581; Thu, 29 Jul 2004 17:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U0F8Yc025565 for ; Thu, 29 Jul 2004 17:15:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0F8bV070074 for ; Thu, 29 Jul 2004 17:15:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U0F88M023500 for ; Thu, 29 Jul 2004 17:15:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6U0F8Qf023499; Thu, 29 Jul 2004 17:15:08 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407300015.i6U0F8Qf023499@xorpc.icir.org> Date: Thu, 29 Jul 2004 17:15:08 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: www/html_src/ people.html ./ people.html Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/29 17:15:08 Modified files: www/html_src/: people.html ./: people.html Log message: Added Marko Zec and Bruce M. Simpson to the list of XORP developers. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Thu Jul 29 18:29:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 29 Jul 2004 18:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6U1U1Pb008044 for ; Thu, 29 Jul 2004 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U1U1bV070948 for ; Thu, 29 Jul 2004 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U1U1Yc027451; Thu, 29 Jul 2004 18:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6U1THYc027433 for ; Thu, 29 Jul 2004 18:29:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U1THbV070939 for ; Thu, 29 Jul 2004 18:29:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6U1TG8M024274 for ; Thu, 29 Jul 2004 18:29:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6U1TGFj024273; Thu, 29 Jul 2004 18:29:16 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200407300129.i6U1TGFj024273@xorpc.icir.org> Date: Thu, 29 Jul 2004 18:29:16 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/07/29 18:29:16 Modified files: ./: config Log message: Add a missing newline at the end of the file. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Sat Jul 31 11:37:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jul 2004 11:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6VIc1W2045750 for ; Sat, 31 Jul 2004 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VIc10T001964 for ; Sat, 31 Jul 2004 11:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VIc1dj016528; Sat, 31 Jul 2004 11:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VIbhdj016518 for ; Sat, 31 Jul 2004 11:37:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VIbg0T001962 for ; Sat, 31 Jul 2004 11:37:42 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VIbg8M048499 for ; Sat, 31 Jul 2004 11:37:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6VIbgFp048498; Sat, 31 Jul 2004 11:37:42 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407311837.i6VIbgFp048498@xorpc.icir.org> Date: Sat, 31 Jul 2004 11:37:42 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ bgp.tex interfaces.tex multicastrouting.tex rip.tex staticroutes.tex unicastrouting.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/31 11:37:42 Modified files: xorp/docs/user_manual/: bgp.tex interfaces.tex multicastrouting.tex rip.tex staticroutes.tex unicastrouting.tex Log message: Add more text to user manual. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Sat Jul 31 13:32:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jul 2004 13:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6VKX1gJ068001 for ; Sat, 31 Jul 2004 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VKX10T002904 for ; Sat, 31 Jul 2004 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VKX0dj018205; Sat, 31 Jul 2004 13:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VKWndj018198 for ; Sat, 31 Jul 2004 13:32:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VKWn0T002902 for ; Sat, 31 Jul 2004 13:32:49 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VKWn8M056467 for ; Sat, 31 Jul 2004 13:32:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6VKWmXN056466; Sat, 31 Jul 2004 13:32:48 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407312032.i6VKWmXN056466@xorpc.icir.org> Date: Sat, 31 Jul 2004 13:32:48 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ interfaces.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/31 13:32:48 Modified files: xorp/docs/user_manual/: interfaces.tex Log message: Fix typos and add text to show interfaces examples. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Sat Jul 31 14:54:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 31 Jul 2004 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i6VLt1OY083752 for ; Sat, 31 Jul 2004 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VLt10T003477 for ; Sat, 31 Jul 2004 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VLt0dj019239; Sat, 31 Jul 2004 14:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i6VLsSdj019233 for ; Sat, 31 Jul 2004 14:54:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VLsS0T003469 for ; Sat, 31 Jul 2004 14:54:28 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6VLsS8M056954 for ; Sat, 31 Jul 2004 14:54:28 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6VLsRt5056953; Sat, 31 Jul 2004 14:54:27 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200407312154.i6VLsRt5056953@xorpc.icir.org> Date: Sat, 31 Jul 2004 14:54:27 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ bgp.tex preface.tex user_manual.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/07/31 14:54:27 Modified files: xorp/docs/user_manual/: bgp.tex preface.tex user_manual.tex Log message: Try and make formatting more appropriate for a manual _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Sun Aug 1 13:46:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 Aug 2004 13:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i71Kl1Ik052896 for ; Sun, 1 Aug 2004 13:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i71Kl10T016244 for ; Sun, 1 Aug 2004 13:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i71Kl1dj013732; Sun, 1 Aug 2004 13:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i71Kkedj013722 for ; Sun, 1 Aug 2004 13:46:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i71Kke0T016240 for ; Sun, 1 Aug 2004 13:46:40 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i71Kke8M067431 for ; Sun, 1 Aug 2004 13:46:40 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i71Kke7f067430; Sun, 1 Aug 2004 13:46:40 -0700 (PDT) (envelope-from mjh) From: Mark Handley Message-Id: <200408012046.i71Kke7f067430@xorpc.icir.org> Date: Sun, 1 Aug 2004 13:46:40 () To: xorp-cvs@icir.org Reply-To: mjh@icir.org Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual/ Makefile.am Makefile.in bgp.tex cli_intro.tex config_overview.tex igmp.tex pimsm.tex rip.tex staticroutes.tex unicastrouting.tex ...user_manual.tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Repository: xorp/docs/user_manual/ Changes by: mjh@xorpc.icir.org. 04/08/01 13:46:40 Modified files: xorp/docs/user_manual/: Makefile.am Makefile.in bgp.tex cli_intro.tex config_overview.tex igmp.tex pimsm.tex rip.tex staticroutes.tex unicastrouting.tex user_manual.tex Log message: Correct lots of typos. Add a glossary. Flesh out the static routes chapter. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 0:06:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 00:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72771WM072968 for ; Mon, 2 Aug 2004 00:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i727710T022345 for ; Mon, 2 Aug 2004 00:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72771dj023610; Mon, 2 Aug 2004 00:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7276udj023604 for ; Mon, 2 Aug 2004 00:06:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7276u0T022343 for ; Mon, 2 Aug 2004 00:06:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7276u8M071781 for ; Mon, 2 Aug 2004 00:06:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7276tgI071780; Mon, 2 Aug 2004 00:06:55 -0700 (PDT) (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200408020706.i7276tgI071780@xorpc.icir.org> Date: Mon, 2 Aug 2004 0:06:55 () To: xorp-cvs@icir.org Reply-To: pavlin@icir.org Subject: [Xorp-cvs] XORP cvs commit: ./ checkoutlist commitinfo config cvswrappers editinfo loginfo modules notify rcsinfo taginfo verifymsg ./ README access.core access.doc approvecheck approvers avail cfg.pm cfg_local.pm commit_prep.pl commitcheck cvs_acls.pl cvsignore edithook exclude log_accum.pl logcheck rcstemplate tagcheck unwrap verifymsgcheck wrap ./ commit_prep log_accum log_check Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Repository: ./ Changes by: pavlin@xorpc.icir.org. 04/08/02 00:06:55 Modified files: ./: checkoutlist commitinfo config cvswrappers editinfo loginfo modules notify rcsinfo taginfo verifymsg Added files: ./: README access.core access.doc approvecheck approvers avail cfg.pm cfg_local.pm commit_prep.pl commitcheck cvs_acls.pl cvsignore edithook exclude log_accum.pl logcheck rcstemplate tagcheck unwrap verifymsgcheck wrap Removed files: ./: commit_prep log_accum log_check Log message: Update the XORP CVS repository configuration. The configuration files and scripts are based on the FreeBSD CVSROOT-src CVS configuration. The major differences are: * The configuration and the scripts are modified to work with a generic CVS installation (currently, 1.12.9) rather than the FreeBSD-specific version. * The format of the email message has changed to resemble the original format. The old configuration files are tagged with the following CVS tag: SNAPSHOT_2004_08_01_BEFORE_MAJOR_UPDATE For information about how to configure the new setup see file CVSROOT/README. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 08:04:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 01:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72851Zj084156 for ; Mon, 2 Aug 2004 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i728510T023107 for ; Mon, 2 Aug 2004 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72850dj024924; Mon, 2 Aug 2004 01:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7284jdj024916 for ; Mon, 2 Aug 2004 01:04:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7284j0T023100 for ; Mon, 2 Aug 2004 01:04:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7284j8M072967 for ; Mon, 2 Aug 2004 01:04:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7284i8N072966 for xorp-cvs@icir.org; Mon, 2 Aug 2004 08:04:44 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 08:04:44 GMT From: Pavlin Radoslavov Message-Id: <200408020804.i7284i8N072966@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 08:04:44 UTC XORP CVS repository Modified files: docs/user_manual bgp.tex Log message: Spellcheck. Revision Changes Path 1.7 +2 -2 xorp/docs/user_manual/bgp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 02 01:10:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 01:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i728B1XB085343 for ; Mon, 2 Aug 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i728B10T023209 for ; Mon, 2 Aug 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i728B1dj025047; Mon, 2 Aug 2004 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i728AOdj025034 for ; Mon, 2 Aug 2004 01:10:24 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i728AO0T023202; Mon, 2 Aug 2004 01:10:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i728AOwK084923; Mon, 2 Aug 2004 01:10:24 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200408020810.i728AOwK084923@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual In-Reply-To: Message from Pavlin Radoslavov of "Mon, 02 Aug 2004 08:04:44 GMT." <200408020804.i7284i8N072966@xorpc.icir.org> Date: Mon, 02 Aug 2004 01:10:24 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2004-08-02 08:04:44 UTC > > XORP CVS repository > > > Modified files: > docs/user_manual bgp.tex > > Log message: > Spellcheck. > > Revision Changes Path > 1.7 +2 -2 xorp/docs/user_manual/bgp.tex Just for the record, please note that file docs/staticroutes.tex was also run through a spell checker and few minor changes were commited. However, due to the update of the CVS setup the email itself got lost (but the commit itself went through). I think now the new CVS setup is working so no more email should be lost. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 15:30:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 08:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72FV19h073590 for ; Mon, 2 Aug 2004 08:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72FV00T030416 for ; Mon, 2 Aug 2004 08:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72FV0dj005265; Mon, 2 Aug 2004 08:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72FUOdj005241 for ; Mon, 2 Aug 2004 08:30:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72FUO0T030412 for ; Mon, 2 Aug 2004 08:30:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72FUO8M078717 for ; Mon, 2 Aug 2004 08:30:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72FUOac078716 for xorp-cvs@icir.org; Mon, 2 Aug 2004 15:30:24 GMT (envelope-from mjh) Date: Mon, 2 Aug 2004 15:30:24 GMT From: Mark Handley Message-Id: <200408021530.i72FUOac078716@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-02 15:30:24 UTC XORP CVS repository Added files: docs/user_manual glossary.tex Log message: Add missing glossary file Revision Changes Path 1.1 +58 -0 xorp/docs/user_manual/glossary.tex (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 15:45:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 08:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72Fk1Me076495 for ; Mon, 2 Aug 2004 08:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Fk10T030579 for ; Mon, 2 Aug 2004 08:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72Fk1dj005583; Mon, 2 Aug 2004 08:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72FjAdj005567 for ; Mon, 2 Aug 2004 08:45:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72FjA0T030568 for ; Mon, 2 Aug 2004 08:45:10 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72FjA8M078912 for ; Mon, 2 Aug 2004 08:45:10 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72FjANw078911 for xorp-cvs@icir.org; Mon, 2 Aug 2004 15:45:10 GMT (envelope-from mjh) Date: Mon, 2 Aug 2004 15:45:10 GMT From: Mark Handley Message-Id: <200408021545.i72FjANw078911@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-02 15:45:10 UTC XORP CVS repository Modified files: docs/user_manual staticroutes.tex Log message: Fix latex error Revision Changes Path 1.5 +8 -8 xorp/docs/user_manual/staticroutes.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 20:19:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 13:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72KK1Gi037842 for ; Mon, 2 Aug 2004 13:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KK10T034008 for ; Mon, 2 Aug 2004 13:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72KK1dj012860; Mon, 2 Aug 2004 13:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72KJSdj012829 for ; Mon, 2 Aug 2004 13:19:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KJS0T034001 for ; Mon, 2 Aug 2004 13:19:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KJS8M081172 for ; Mon, 2 Aug 2004 13:19:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72KJSA0081171 for xorp-cvs@icir.org; Mon, 2 Aug 2004 20:19:28 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 20:19:28 GMT From: Pavlin Radoslavov Message-Id: <200408022019.i72KJSA0081171@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 20:19:28 UTC XORP CVS repository Modified files: libproto proto_node.hh Log message: Bug fix: Exclude the PIM Register vif interfaces when calling ProtoNode::vif_find_by_addr() or ProtoNode::vif_find_same_subnet_or_p2p(), because the PIM Register interface is special (e.g., it may share the same address as some of the other virtual interfaces). Note that the change affects ProtoNode::is_my_addr(), because its implementation uses ProtoNode::vif_find_by_addr(). Submitted by: "edrt" Revision Changes Path 1.24 +23 -2 xorp/libproto/proto_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 20:46:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 13:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72Kl1Yx043118 for ; Mon, 2 Aug 2004 13:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Kl10T034351 for ; Mon, 2 Aug 2004 13:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72Kl0dj013552; Mon, 2 Aug 2004 13:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72KkKdj013536 for ; Mon, 2 Aug 2004 13:46:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KkK0T034349 for ; Mon, 2 Aug 2004 13:46:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KkK8M081517 for ; Mon, 2 Aug 2004 13:46:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72KkKlj081516 for xorp-cvs@icir.org; Mon, 2 Aug 2004 20:46:20 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 20:46:20 GMT From: Pavlin Radoslavov Message-Id: <200408022046.i72KkKlj081516@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 20:46:20 UTC XORP CVS repository Modified files: pim pim_node.cc Log message: Modify PimNode::pim_nbr_find() to exclude (as a safeguard) the PIM Register vif when searching for a PIM Neighbor. Similarly, modify PimNode::add_pim_mre_no_pim_nbr() to exclude the PIM Register vif from the search. Requested by: "edrt" Revision Changes Path 1.51 +11 -5 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 20:47:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 13:48:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72Km2v2043325 for ; Mon, 2 Aug 2004 13:48:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Km10T034367 for ; Mon, 2 Aug 2004 13:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72Km1dj013591; Mon, 2 Aug 2004 13:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72Kljdj013583 for ; Mon, 2 Aug 2004 13:47:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Klj0T034363 for ; Mon, 2 Aug 2004 13:47:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Klj8M081589 for ; Mon, 2 Aug 2004 13:47:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72Klj5a081588 for xorp-cvs@icir.org; Mon, 2 Aug 2004 20:47:45 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 20:47:45 GMT From: Pavlin Radoslavov Message-Id: <200408022047.i72Klj5a081588@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 20:47:45 UTC XORP CVS repository Modified files: pim pim_proto_bootstrap.cc Log message: Explicitly disable the PIM Register vif for sending PIM Bootstrap messages. Submitted by: "edrt" Revision Changes Path 1.16 +5 -2 xorp/pim/pim_proto_bootstrap.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 20:48:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 13:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72Kn1Zf043522 for ; Mon, 2 Aug 2004 13:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72Kn10T034379 for ; Mon, 2 Aug 2004 13:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72Kn1dj013613; Mon, 2 Aug 2004 13:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72KmOdj013604 for ; Mon, 2 Aug 2004 13:48:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KmO0T034375 for ; Mon, 2 Aug 2004 13:48:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72KmN8M081650 for ; Mon, 2 Aug 2004 13:48:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72KmNEn081649 for xorp-cvs@icir.org; Mon, 2 Aug 2004 20:48:23 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 20:48:23 GMT From: Pavlin Radoslavov Message-Id: <200408022048.i72KmNEn081649@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 20:48:23 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Explicitly disable the PIM Register vif for sending PIM-Cand-RP-Adv messages. Submitted by: "edrt" Revision Changes Path 1.28 +11 -4 xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:17 2005 Subject: No subject Mon Aug 2 21:20:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 14:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72LL1H2049757 for ; Mon, 2 Aug 2004 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72LL10T034798 for ; Mon, 2 Aug 2004 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72LL1dj014498; Mon, 2 Aug 2004 14:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72LKHdj014475 for ; Mon, 2 Aug 2004 14:20:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72LKH0T034786 for ; Mon, 2 Aug 2004 14:20:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72LKH8M081956 for ; Mon, 2 Aug 2004 14:20:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72LKHbO081955 for xorp-cvs@icir.org; Mon, 2 Aug 2004 21:20:17 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 21:20:17 GMT From: Pavlin Radoslavov Message-Id: <200408022120.i72LKHbO081955@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-02 21:20:17 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Compilation fix. Revision Changes Path 1.29 +2 -2 xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Mon Aug 2 23:32:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i72NX1aL078127 for ; Mon, 2 Aug 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72NX10T036150 for ; Mon, 2 Aug 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72NX1dj017780; Mon, 2 Aug 2004 16:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i72NWCdj017746 for ; Mon, 2 Aug 2004 16:32:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i72NWC0T036138 for ; Mon, 2 Aug 2004 16:32:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i72NWC8M082882 for ; Mon, 2 Aug 2004 16:32:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i72NWCTC082881 for xorp-cvs@icir.org; Mon, 2 Aug 2004 23:32:12 GMT (envelope-from pavlin) Date: Mon, 2 Aug 2004 23:32:12 GMT From: Pavlin Radoslavov Message-Id: <200408022332.i72NWCTC082881@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2004-08-02 23:32:12 UTC XORP CVS repository Modified files: . contributing.html html_src contributing.html Log message: Add a new code contribution entry: "Add packet capturing interface to XORP" Revision Changes Path 1.22 +10 -3 www/contributing.html 1.5 +7 -0 www/html_src/contributing.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 03:01:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 20:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7332176019421 for ; Mon, 2 Aug 2004 20:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i733210T038598 for ; Mon, 2 Aug 2004 20:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73320dj022333; Mon, 2 Aug 2004 20:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7331Ddj022314 for ; Mon, 2 Aug 2004 20:01:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7331C0T038595 for ; Mon, 2 Aug 2004 20:01:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7331C8M084779 for ; Mon, 2 Aug 2004 20:01:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7331C5S084778 for xorp-cvs@icir.org; Tue, 3 Aug 2004 03:01:12 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 03:01:12 GMT From: Pavlin Radoslavov Message-Id: <200408030301.i7331C5S084778@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/pim xorp/rib xorp/rib/tools xorp/rip/tools xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 03:01:12 UTC XORP CVS repository Modified files: fea xrl_shell_funcs.sh xrl_target.cc xrl_target.hh pim xrl_pim_node.cc xrl_pim_node.hh rib redist_xrl.cc rib/tools show_routes.cc rip/tools xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh xrl/interfaces redist4.xif redist4_xif.cc redist4_xif.hh redist6.xif redist6_xif.cc redist6_xif.hh redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.cc redist_transaction6_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh show_routes.xrls show_routes_base.cc show_routes_base.hh Log message: Rename some of the XRL arguments (for consistency): nh -> nexthop ad -> admin_distance The modified XRLs are: redist[4,6]/0.1/add_route redist_transaction[4,6]/0.1/add_route Revision Changes Path 1.15 +2 -2 xorp/fea/xrl_shell_funcs.sh 1.46 +9 -7 xorp/fea/xrl_target.cc 1.34 +11 -9 xorp/fea/xrl_target.hh 1.57 +13 -13 xorp/pim/xrl_pim_node.cc 1.43 +11 -9 xorp/pim/xrl_pim_node.hh 1.13 +7 -7 xorp/rib/redist_xrl.cc 1.5 +11 -11 xorp/rib/tools/show_routes.cc 1.7 +2 -2 xorp/rip/tools/xrl_rip_shell_funcs.sh 1.7 +2 -2 xorp/rip/tools/xrl_ripng_shell_funcs.sh 1.7 +6 -5 xorp/xrl/interfaces/redist4.xif 1.7 +5 -5 xorp/xrl/interfaces/redist4_xif.cc 1.7 +6 -5 xorp/xrl/interfaces/redist4_xif.hh 1.7 +6 -5 xorp/xrl/interfaces/redist6.xif 1.7 +5 -5 xorp/xrl/interfaces/redist6_xif.cc 1.7 +6 -5 xorp/xrl/interfaces/redist6_xif.hh 1.6 +6 -5 xorp/xrl/interfaces/redist_transaction4.xif 1.6 +5 -5 xorp/xrl/interfaces/redist_transaction4_xif.cc 1.6 +6 -5 xorp/xrl/interfaces/redist_transaction4_xif.hh 1.6 +6 -5 xorp/xrl/interfaces/redist_transaction6.xif 1.6 +5 -5 xorp/xrl/interfaces/redist_transaction6_xif.cc 1.6 +6 -5 xorp/xrl/interfaces/redist_transaction6_xif.hh 1.33 +7 -7 xorp/xrl/targets/fea.xrls 1.37 +5 -5 xorp/xrl/targets/fea_base.cc 1.39 +11 -9 xorp/xrl/targets/fea_base.hh 1.36 +7 -7 xorp/xrl/targets/pim.xrls 1.38 +5 -5 xorp/xrl/targets/pim_base.cc 1.42 +11 -9 xorp/xrl/targets/pim_base.hh 1.15 +4 -4 xorp/xrl/targets/rip.xrls 1.15 +3 -3 xorp/xrl/targets/rip_base.cc 1.16 +6 -5 xorp/xrl/targets/rip_base.hh 1.17 +4 -4 xorp/xrl/targets/ripng.xrls 1.17 +3 -3 xorp/xrl/targets/ripng_base.cc 1.18 +6 -5 xorp/xrl/targets/ripng_base.hh 1.4 +7 -7 xorp/xrl/targets/show_routes.xrls 1.3 +5 -5 xorp/xrl/targets/show_routes_base.cc 1.4 +11 -9 xorp/xrl/targets/show_routes_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 03:51:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 20:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i733q1UD029108 for ; Mon, 2 Aug 2004 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i733q10T039235 for ; Mon, 2 Aug 2004 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i733q1dj023343; Mon, 2 Aug 2004 20:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i733podj023328 for ; Mon, 2 Aug 2004 20:51:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i733po0T039231 for ; Mon, 2 Aug 2004 20:51:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i733po8M085292 for ; Mon, 2 Aug 2004 20:51:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i733podR085291 for xorp-cvs@icir.org; Tue, 3 Aug 2004 03:51:50 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 03:51:50 GMT From: Pavlin Radoslavov Message-Id: <200408030351.i733podR085291@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 03:51:50 UTC XORP CVS repository Modified files: fea fte.hh fti_click.cc fti_transaction.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc mfea_node.cc netlink_socket_utils.cc routing_socket_utils.cc test_add_route.sh test_fea.cc test_fti.cc xrl_fti.cc xrl_target.cc xrl_target.hh xrl/interfaces fti.xif fti_xif.cc xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: * Renaming: "gateway" -> "nexthop" in the following URLs (for consistency with the redist[4,6].xif and redist_transaction[4,6].xif XRL interfaces: fti/0.2/lookup_route[4,6] fti/0.2/lookup_entry[4,6] * Rename Fte::gateway() -> nexthop() * Similar renaming in all associated code. Revision Changes Path 1.10 +11 -11 xorp/fea/fte.hh 1.6 +8 -8 xorp/fea/fti_click.cc 1.7 +5 -5 xorp/fea/fti_transaction.hh 1.17 +3 -3 xorp/fea/fticonfig_entry_get_netlink.cc 1.15 +5 -5 xorp/fea/fticonfig_entry_get_rtsock.cc 1.8 +13 -13 xorp/fea/fticonfig_entry_set_netlink.cc 1.15 +16 -16 xorp/fea/fticonfig_entry_set_rtsock.cc 1.17 +3 -3 xorp/fea/fticonfig_table_get_netlink.cc 1.10 +3 -3 xorp/fea/fticonfig_table_get_sysctl.cc 1.5 +3 -3 xorp/fea/fticonfig_table_observer.cc 1.39 +3 -3 xorp/fea/mfea_node.cc 1.14 +6 -6 xorp/fea/netlink_socket_utils.cc 1.17 +9 -9 xorp/fea/routing_socket_utils.cc 1.18 +51 -51 xorp/fea/test_add_route.sh 1.10 +6 -6 xorp/fea/test_fea.cc 1.6 +6 -6 xorp/fea/test_fti.cc 1.10 +3 -3 xorp/fea/xrl_fti.cc 1.47 +9 -9 xorp/fea/xrl_target.cc 1.35 +5 -5 xorp/fea/xrl_target.hh 1.5 +9 -9 xorp/xrl/interfaces/fti.xif 1.10 +13 -13 xorp/xrl/interfaces/fti_xif.cc 1.34 +9 -9 xorp/xrl/targets/fea.xrls 1.38 +13 -13 xorp/xrl/targets/fea_base.cc 1.40 +9 -9 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 05:02:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 22:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73531AH042834 for ; Mon, 2 Aug 2004 22:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i735310T040021 for ; Mon, 2 Aug 2004 22:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73531dj024764; Mon, 2 Aug 2004 22:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7352xdj024757 for ; Mon, 2 Aug 2004 22:02:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7352x0T040019 for ; Mon, 2 Aug 2004 22:02:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7352x8M086175 for ; Mon, 2 Aug 2004 22:02:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7352x9q086174 for xorp-cvs@icir.org; Tue, 3 Aug 2004 05:02:59 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 05:02:59 GMT From: Pavlin Radoslavov Message-Id: <200408030502.i7352x9q086174@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness xorp/docs/rib xorp/docs/xorpdev_101 xorp/fea xorp/pim xorp/rib xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 05:02:59 UTC XORP CVS repository Modified files: bgp/harness test_routing2.sh docs/rib rib.tex docs/xorpdev_101 xorpdev_101.tex fea fti_click.cc fti_click.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc test_add_route.sh test_fti.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh pim xrl_rib_shell_funcs.sh rib xrl_shell_funcs.sh xrl_target.cc xrl_target.hh xrl/interfaces fti.xif fti_xif.cc fti_xif.hh rib.xif rib_xif.cc rib_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh rib.xrls rib_base.cc rib_base.hh Log message: Rename the following XRLs (and the related code): fti/0.2/lookup_route[4,6] -> lookup_route_by_dest[4,6] fti/0.2/lookup_entry[4,6] -> lookup_route_by_network[4,6] Revision Changes Path 1.11 +3 -3 xorp/bgp/harness/test_routing2.sh 1.13 +4 -4 xorp/docs/rib/rib.tex 1.5 +5 -5 xorp/docs/xorpdev_101/xorpdev_101.tex 1.7 +5 -5 xorp/fea/fti_click.cc 1.4 +5 -5 xorp/fea/fti_click.hh 1.20 +9 -9 xorp/fea/fticonfig.cc 1.15 +9 -9 xorp/fea/fticonfig.hh 1.14 +39 -39 xorp/fea/fticonfig_entry_get.hh 1.6 +9 -9 xorp/fea/fticonfig_entry_get_dummy.cc 1.18 +16 -14 xorp/fea/fticonfig_entry_get_netlink.cc 1.16 +21 -19 xorp/fea/fticonfig_entry_get_rtsock.cc 1.19 +27 -27 xorp/fea/test_add_route.sh 1.7 +7 -7 xorp/fea/test_fti.cc 1.16 +6 -6 xorp/fea/xrl_shell_funcs.sh 1.48 +9 -9 xorp/fea/xrl_target.cc 1.36 +5 -5 xorp/fea/xrl_target.hh 1.10 +9 -9 xorp/pim/xrl_rib_shell_funcs.sh 1.8 +4 -4 xorp/rib/xrl_shell_funcs.sh 1.39 +15 -13 xorp/rib/xrl_target.cc 1.26 +3 -3 xorp/rib/xrl_target.hh 1.6 +5 -5 xorp/xrl/interfaces/fti.xif 1.11 +29 -29 xorp/xrl/interfaces/fti_xif.cc 1.10 +21 -21 xorp/xrl/interfaces/fti_xif.hh 1.18 +3 -3 xorp/xrl/interfaces/rib.xif 1.25 +15 -15 xorp/xrl/interfaces/rib_xif.cc 1.25 +11 -11 xorp/xrl/interfaces/rib_xif.hh 1.35 +5 -5 xorp/xrl/targets/fea.xrls 1.39 +36 -36 xorp/xrl/targets/fea_base.cc 1.41 +9 -9 xorp/xrl/targets/fea_base.hh 1.26 +3 -3 xorp/xrl/targets/rib.xrls 1.29 +18 -18 xorp/xrl/targets/rib_base.cc 1.32 +5 -5 xorp/xrl/targets/rib_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 05:21:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 Aug 2004 22:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i735M1Dq046512 for ; Mon, 2 Aug 2004 22:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i735M10T040276 for ; Mon, 2 Aug 2004 22:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i735M1dj025174; Mon, 2 Aug 2004 22:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i735LUdj025161 for ; Mon, 2 Aug 2004 22:21:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i735LU0T040270 for ; Mon, 2 Aug 2004 22:21:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i735LU8M086522 for ; Mon, 2 Aug 2004 22:21:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i735LT9f086521 for xorp-cvs@icir.org; Tue, 3 Aug 2004 05:21:29 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 05:21:29 GMT From: Pavlin Radoslavov Message-Id: <200408030521.i735LT9f086521@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 05:21:29 UTC XORP CVS repository Modified files: fea xrl_target.hh pim xrl_pim_node.hh xrl/interfaces fti.xif redist_transaction4.xif redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.hh rib_client.xif rib_client_xif.hh xrl/targets bgp.xrls bgp_base.hh fea.xrls fea_base.hh pim.xrls pim_base.hh ribclient.xrls ribclient_base.hh Log message: Nits in kdoc comments: "entry" -> "routing entry" Revision Changes Path 1.37 +3 -3 xorp/fea/xrl_target.hh 1.44 +3 -3 xorp/pim/xrl_pim_node.hh 1.7 +5 -5 xorp/xrl/interfaces/fti.xif 1.7 +2 -2 xorp/xrl/interfaces/redist_transaction4.xif 1.7 +2 -2 xorp/xrl/interfaces/redist_transaction4_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/redist_transaction6.xif 1.7 +2 -2 xorp/xrl/interfaces/redist_transaction6_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/rib_client.xif 1.12 +2 -2 xorp/xrl/interfaces/rib_client_xif.hh 1.28 +3 -2 xorp/xrl/targets/bgp.xrls 1.34 +2 -2 xorp/xrl/targets/bgp_base.hh 1.36 +13 -7 xorp/xrl/targets/fea.xrls 1.42 +7 -7 xorp/xrl/targets/fea_base.hh 1.37 +5 -3 xorp/xrl/targets/pim.xrls 1.43 +3 -3 xorp/xrl/targets/pim_base.hh 1.8 +3 -2 xorp/xrl/targets/ribclient.xrls 1.14 +2 -2 xorp/xrl/targets/ribclient_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 07:45:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 00:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i737k1mD074370 for ; Tue, 3 Aug 2004 00:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i737k00T042070 for ; Tue, 3 Aug 2004 00:46:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i737k0dj027994; Tue, 3 Aug 2004 00:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i737jndj027985 for ; Tue, 3 Aug 2004 00:45:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i737jm0T042064 for ; Tue, 3 Aug 2004 00:45:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i737jm8M087927 for ; Tue, 3 Aug 2004 00:45:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i737jmnL087926 for xorp-cvs@icir.org; Tue, 3 Aug 2004 07:45:48 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 07:45:48 GMT From: Pavlin Radoslavov Message-Id: <200408030745.i737jmnL087926@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 07:45:48 UTC XORP CVS repository Modified files: fea test_add_route.sh xrl_shell_funcs.sh Log message: Nits: "route" -> "entry" Revision Changes Path 1.20 +21 -15 xorp/fea/test_add_route.sh 1.17 +1 -1 xorp/fea/xrl_shell_funcs.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 07:48:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 00:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i737n1kI074962 for ; Tue, 3 Aug 2004 00:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i737n10T042121 for ; Tue, 3 Aug 2004 00:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i737n1dj028080; Tue, 3 Aug 2004 00:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i737mjdj028068 for ; Tue, 3 Aug 2004 00:48:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i737mj0T042115 for ; Tue, 3 Aug 2004 00:48:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i737mi8M087999 for ; Tue, 3 Aug 2004 00:48:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i737miUa087998 for xorp-cvs@icir.org; Tue, 3 Aug 2004 07:48:44 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 07:48:44 GMT From: Pavlin Radoslavov Message-Id: <200408030748.i737miUa087998@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 07:48:44 UTC XORP CVS repository Modified files: fea fti_transaction.hh Log message: Remove class FtiDeleteAllEntries, because it is not needed anymore. Revision Changes Path 1.8 +1 -17 xorp/fea/fti_transaction.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 18:09:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 11:10:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73IA0G6004563 for ; Tue, 3 Aug 2004 11:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IA00T051465 for ; Tue, 3 Aug 2004 11:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IA0dj013301; Tue, 3 Aug 2004 11:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73I9Hdj013282 for ; Tue, 3 Aug 2004 11:09:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73I9H0T051455 for ; Tue, 3 Aug 2004 11:09:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i73I9H8M094836 for ; Tue, 3 Aug 2004 11:09:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i73I9HXZ094835 for xorp-cvs@icir.org; Tue, 3 Aug 2004 18:09:17 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 18:09:17 GMT From: Pavlin Radoslavov Message-Id: <200408031809.i73I9HXZ094835@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/pim xorp/rib xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 18:09:17 UTC XORP CVS repository Modified files: fea xrl_target.cc xrl_target.hh pim xrl_pim_node.cc xrl_pim_node.hh rib redist_xrl.cc xrl/interfaces redist_transaction4.xif redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6.xif redist_transaction6_xif.cc redist_transaction6_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh pim.xrls pim_base.cc pim_base.hh Log message: Add protocol_origin field to the following XRLs. redist_transaction4/0.1/delete_route redist_transaction6/0.1/delete_route The protocol_origin field is needed so an entity that filters add_route operations based on the protocol origin can filter the delete_route operations as well. This is the case with the FEA which needs to filter all add/delete operations with protocol_origin of "connected". Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=85 Revision Changes Path 1.49 +21 -5 xorp/fea/xrl_target.cc 1.38 +5 -3 xorp/fea/xrl_target.hh 1.58 +7 -3 xorp/pim/xrl_pim_node.cc 1.45 +5 -3 xorp/pim/xrl_pim_node.hh 1.14 +7 -2 xorp/rib/redist_xrl.cc 1.8 +3 -2 xorp/xrl/interfaces/redist_transaction4.xif 1.7 +3 -1 xorp/xrl/interfaces/redist_transaction4_xif.cc 1.8 +2 -1 xorp/xrl/interfaces/redist_transaction4_xif.hh 1.8 +3 -2 xorp/xrl/interfaces/redist_transaction6.xif 1.7 +3 -1 xorp/xrl/interfaces/redist_transaction6_xif.cc 1.8 +2 -1 xorp/xrl/interfaces/redist_transaction6_xif.hh 1.37 +3 -3 xorp/xrl/targets/fea.xrls 1.40 +9 -7 xorp/xrl/targets/fea_base.cc 1.43 +5 -3 xorp/xrl/targets/fea_base.hh 1.38 +3 -3 xorp/xrl/targets/pim.xrls 1.39 +9 -7 xorp/xrl/targets/pim_base.cc 1.44 +5 -3 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 18:16:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 11:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73IH1YO006255 for ; Tue, 3 Aug 2004 11:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IH10T051597 for ; Tue, 3 Aug 2004 11:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IH1dj013558; Tue, 3 Aug 2004 11:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IG1dj013531 for ; Tue, 3 Aug 2004 11:16:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IG10T051591 for ; Tue, 3 Aug 2004 11:16:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IG18M094968 for ; Tue, 3 Aug 2004 11:16:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i73IG1Za094967 for xorp-cvs@icir.org; Tue, 3 Aug 2004 18:16:01 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 18:16:01 GMT From: Pavlin Radoslavov Message-Id: <200408031816.i73IG1Za094967@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 18:16:01 UTC XORP CVS repository Modified files: . ERRATA Log message: Remove a RIB entry from ERRATA, because it has been fixed. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=85 Revision Changes Path 1.14 +1 -15 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 18:18:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 11:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73IJ1A1006745 for ; Tue, 3 Aug 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IJ10T051621 for ; Tue, 3 Aug 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IJ0dj013636; Tue, 3 Aug 2004 11:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IIudj013627 for ; Tue, 3 Aug 2004 11:18:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IIu0T051619 for ; Tue, 3 Aug 2004 11:18:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IIu8M095047 for ; Tue, 3 Aug 2004 11:18:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i73IIuHE095046 for xorp-cvs@icir.org; Tue, 3 Aug 2004 18:18:56 GMT (envelope-from pavlin) Date: Tue, 3 Aug 2004 18:18:56 GMT From: Pavlin Radoslavov Message-Id: <200408031818.i73IIuHE095046@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-03 18:18:56 UTC XORP CVS repository Modified files: . ERRATA Log message: Remove a PIM-SM ERRATA entry about the scheduling of the internal PIM-SM tasks, because the problem has been fixed already. Revision Changes Path 1.15 +1 -9 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 18:20:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 11:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73IL1W5007237 for ; Tue, 3 Aug 2004 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IL10T051663 for ; Tue, 3 Aug 2004 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IL1dj013721; Tue, 3 Aug 2004 11:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73IKJdj013702 for ; Tue, 3 Aug 2004 11:20:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IKJ0T051653 for ; Tue, 3 Aug 2004 11:20:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i73IKI8M095118 for ; Tue, 3 Aug 2004 11:20:18 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i73IKI10095117 for xorp-cvs@icir.org; Tue, 3 Aug 2004 18:20:18 GMT (envelope-from mjh) Date: Tue, 3 Aug 2004 18:20:18 GMT From: Mark Handley Message-Id: <200408031820.i73IKI10095117@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-03 18:20:18 UTC XORP CVS repository Modified files: docs/user_manual rip.tex Log message: Add configuration information for RIP/RIPng. Revision Changes Path 1.4 +249 -18 xorp/docs/user_manual/rip.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Tue Aug 3 23:16:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 16:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i73NO1uo076799 for ; Tue, 3 Aug 2004 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73NO10T054907 for ; Tue, 3 Aug 2004 16:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73NO1dj022189; Tue, 3 Aug 2004 16:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i73NGjdj021947 for ; Tue, 3 Aug 2004 16:16:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i73NGi0T054830 for ; Tue, 3 Aug 2004 16:16:44 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i73NGi8M013425 for ; Tue, 3 Aug 2004 16:16:44 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i73NGiwW013424 for xorp-cvs@icir.org; Tue, 3 Aug 2004 23:16:44 GMT (envelope-from bms) Date: Tue, 3 Aug 2004 23:16:44 GMT From: Bruce Simpson Message-Id: <200408032316.i73NGiwW013424@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-03 23:16:44 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c Log message: Low-level support in libcomm for the TCP_MD5SIG socket option. The three BSDs (Free, Open, Net) all expose this option in the same place, tcp.h, covered by __BSD_VISIBLE. Linux has not yet standardized its approach to dealing with this option. (What this doesn't give XORP is the ability to speak to PF_KEY sockets, which is what is needed in order to manage keys for TCP-MD5 security associations.) Revision Changes Path 1.8 +12 -1 xorp/libcomm/comm_api.h 1.8 +28 -1 xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Wed Aug 4 00:47:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 17:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i740m1Ja093740 for ; Tue, 3 Aug 2004 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i740m10T055979 for ; Tue, 3 Aug 2004 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i740m1dj024282; Tue, 3 Aug 2004 17:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i740l9dj024263 for ; Tue, 3 Aug 2004 17:47:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i740l90T055968 for ; Tue, 3 Aug 2004 17:47:09 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i740l98M014059 for ; Tue, 3 Aug 2004 17:47:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i740l9Bg014058 for xorp-cvs@icir.org; Wed, 4 Aug 2004 00:47:09 GMT (envelope-from mjh) Date: Wed, 4 Aug 2004 00:47:09 GMT From: Mark Handley Message-Id: <200408040047.i740l9Bg014058@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-04 00:47:09 UTC XORP CVS repository Modified files: docs/user_manual interfaces.tex rip.tex Log message: Fix typos, reorder paragraphs in introduction for better readability. Revision Changes Path 1.4 +1 -1 xorp/docs/user_manual/interfaces.tex 1.5 +90 -83 xorp/docs/user_manual/rip.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Wed Aug 4 04:46:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 Aug 2004 21:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i744l151040170 for ; Tue, 3 Aug 2004 21:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i744l00T059175 for ; Tue, 3 Aug 2004 21:47:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i744l0dj028879; Tue, 3 Aug 2004 21:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i744krdj028869 for ; Tue, 3 Aug 2004 21:46:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i744kq0T059173 for ; Tue, 3 Aug 2004 21:46:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i744kq8M015860 for ; Tue, 3 Aug 2004 21:46:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i744kqWt015859 for xorp-cvs@icir.org; Wed, 4 Aug 2004 04:46:52 GMT (envelope-from pavlin) Date: Wed, 4 Aug 2004 04:46:52 GMT From: Pavlin Radoslavov Message-Id: <200408040446.i744kqWt015859@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-04 04:46:52 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: * Add UNUSED() to fix a compilation warning if TCP_MD5SIG is not defined. * Replace #ifndef SO_FOO stuff with #ifdef SO_FOO Revision Changes Path 1.9 +22 -19 xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Wed Aug 4 16:50:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Aug 2004 09:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i74Gp2I9086054 for ; Wed, 4 Aug 2004 09:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Gp20T068820 for ; Wed, 4 Aug 2004 09:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74Gp1MN014533; Wed, 4 Aug 2004 09:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74GouMN014527 for ; Wed, 4 Aug 2004 09:50:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Got0T068818 for ; Wed, 4 Aug 2004 09:50:55 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Got8M023436 for ; Wed, 4 Aug 2004 09:50:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i74Gotvw023435 for xorp-cvs@icir.org; Wed, 4 Aug 2004 16:50:55 GMT (envelope-from mjh) Date: Wed, 4 Aug 2004 16:50:55 GMT From: Mark Handley Message-Id: <200408041650.i74Gotvw023435@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-04 16:50:55 UTC XORP CVS repository Modified files: docs/user_manual user_manual.tex Added files: docs/user_manual xorp-toc.sty Log message: Add a version of tocloft.sty that works with the doc. Some latex installations have a tocloft that doesn't work. Revision Changes Path 1.6 +2 -2 xorp/docs/user_manual/user_manual.tex 1.1 +633 -0 xorp/docs/user_manual/xorp-toc.sty (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Wed Aug 4 18:32:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Aug 2004 11:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i74IX1MT010759 for ; Wed, 4 Aug 2004 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74IX10T070158 for ; Wed, 4 Aug 2004 11:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74IX1MN017794; Wed, 4 Aug 2004 11:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74IW1MN017771 for ; Wed, 4 Aug 2004 11:32:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74IW00T070152 for ; Wed, 4 Aug 2004 11:32:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i74IW08M024270 for ; Wed, 4 Aug 2004 11:32:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i74IW06k024269 for xorp-cvs@icir.org; Wed, 4 Aug 2004 18:32:00 GMT (envelope-from mjh) Date: Wed, 4 Aug 2004 18:32:00 GMT From: Mark Handley Message-Id: <200408041832.i74IW06k024269@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-04 18:32:00 UTC XORP CVS repository Modified files: docs/user_manual forwarding.tex Log message: Fill out most of the text in the forwarding engine chapter. Revision Changes Path 1.2 +172 -10 xorp/docs/user_manual/forwarding.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:18 2005 Subject: No subject Wed Aug 4 21:54:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Aug 2004 14:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i74Lt15s053159 for ; Wed, 4 Aug 2004 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Lt10T072553 for ; Wed, 4 Aug 2004 14:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74Lt0MN024256; Wed, 4 Aug 2004 14:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i74LstMN024248 for ; Wed, 4 Aug 2004 14:54:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Lst0T072548 for ; Wed, 4 Aug 2004 14:54:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i74Lst8M025978 for ; Wed, 4 Aug 2004 14:54:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i74LstBR025977 for xorp-cvs@icir.org; Wed, 4 Aug 2004 21:54:55 GMT (envelope-from pavlin) Date: Wed, 4 Aug 2004 21:54:55 GMT From: Pavlin Radoslavov Message-Id: <200408042154.i74LstBR025977@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-04 21:54:55 UTC XORP CVS repository Modified files: docs/user_manual glossary.tex Log message: Add missing \bf for entries "MRIB" and "Multicast RIB". Revision Changes Path 1.2 +3 -3 xorp/docs/user_manual/glossary.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Thu Aug 5 03:18:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 Aug 2004 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i753J1Mi020993 for ; Wed, 4 Aug 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i753J10T076149 for ; Wed, 4 Aug 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i753J1tm002193; Wed, 4 Aug 2004 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i753IQtm002180 for ; Wed, 4 Aug 2004 20:18:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i753IQ0T076141 for ; Wed, 4 Aug 2004 20:18:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i753IQ8M061210 for ; Wed, 4 Aug 2004 20:18:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i753IQPA061209 for xorp-cvs@icir.org; Thu, 5 Aug 2004 03:18:26 GMT (envelope-from pavlin) Date: Thu, 5 Aug 2004 03:18:26 GMT From: Pavlin Radoslavov Message-Id: <200408050318.i753IQPA061209@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-05 03:18:26 UTC XORP CVS repository Modified files: docs/user_manual forwarding.tex Log message: * Add xorpsh output examples for the following operational commands: - show mfea dataflow - show mfea interface - show mfea interface address * Add a paragraph to clarify that the "show mfea dataflow" command will show info only if the filters are kept at user-space. * Fix a typo Requested by: mjh Revision Changes Path 1.3 +23 -13 xorp/docs/user_manual/forwarding.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Thu Aug 5 16:41:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 09:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i75Gg14o083338 for ; Thu, 5 Aug 2004 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75Gg10T087118 for ; Thu, 5 Aug 2004 09:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75Gg1tm020042; Thu, 5 Aug 2004 09:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75GfOtm020022 for ; Thu, 5 Aug 2004 09:41:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75GfO0T087105 for ; Thu, 5 Aug 2004 09:41:24 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i75GfO8M069246 for ; Thu, 5 Aug 2004 09:41:24 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i75GfOcF069245 for xorp-cvs@icir.org; Thu, 5 Aug 2004 16:41:24 GMT (envelope-from mjh) Date: Thu, 5 Aug 2004 16:41:24 GMT From: Mark Handley Message-Id: <200408051641.i75GfOcF069245@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-05 16:41:23 UTC XORP CVS repository Modified files: docs/user_manual multicastrouting.tex Log message: More on multicast routing background. Revision Changes Path 1.3 +120 -2 xorp/docs/user_manual/multicastrouting.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Thu Aug 5 18:18:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 11:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i75IJ2Dv002510 for ; Thu, 5 Aug 2004 11:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75IJ10T088225 for ; Thu, 5 Aug 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75IJ1tm022626; Thu, 5 Aug 2004 11:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75IIutm022618 for ; Thu, 5 Aug 2004 11:18:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75IIu0T088223 for ; Thu, 5 Aug 2004 11:18:56 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i75IIt8M070021 for ; Thu, 5 Aug 2004 11:18:55 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i75IItqh070020 for xorp-cvs@icir.org; Thu, 5 Aug 2004 18:18:55 GMT (envelope-from mjh) Date: Thu, 5 Aug 2004 18:18:55 GMT From: Mark Handley Message-Id: <200408051818.i75IItqh070020@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-05 18:18:55 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Write text of IGMP/MLD chapter Revision Changes Path 1.3 +178 -17 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Thu Aug 5 20:07:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 13:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i75K81XV024412 for ; Thu, 5 Aug 2004 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75K810T089368 for ; Thu, 5 Aug 2004 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75K81tm025557; Thu, 5 Aug 2004 13:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75K7wtm025550 for ; Thu, 5 Aug 2004 13:07:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75K7w0T089366 for ; Thu, 5 Aug 2004 13:07:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i75K7w8M070866 for ; Thu, 5 Aug 2004 13:07:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i75K7wpQ070865 for xorp-cvs@icir.org; Thu, 5 Aug 2004 20:07:58 GMT (envelope-from pavlin) Date: Thu, 5 Aug 2004 20:07:58 GMT From: Pavlin Radoslavov Message-Id: <200408052007.i75K7wpQ070865@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-05 20:07:58 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Add sample output for the following xorpsh operational commands: - show igmp group - show igmp interface - show igmp interface address Requested by: mjh Revision Changes Path 1.4 +18 -13 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Thu Aug 5 21:53:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 14:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i75Ls1GO048198 for ; Thu, 5 Aug 2004 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75Ls10T090466 for ; Thu, 5 Aug 2004 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75Ls1tm028438; Thu, 5 Aug 2004 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i75LrFtm028410 for ; Thu, 5 Aug 2004 14:53:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i75LrF0T090453 for ; Thu, 5 Aug 2004 14:53:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i75LrE8M071653 for ; Thu, 5 Aug 2004 14:53:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i75LrE92071652 for xorp-cvs@icir.org; Thu, 5 Aug 2004 21:53:14 GMT (envelope-from pavlin) Date: Thu, 5 Aug 2004 21:53:14 GMT From: Pavlin Radoslavov Message-Id: <200408052153.i75LrE92071652@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-05 21:53:14 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Add extra text to explain some of the IGMP CLI information. Requested by: mjh Revision Changes Path 1.5 +17 -0 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 00:33:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 17:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i760Y1sx081084 for ; Thu, 5 Aug 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760Y10T092279 for ; Thu, 5 Aug 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760Y1tm002656; Thu, 5 Aug 2004 17:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760Xwtm002637 for ; Thu, 5 Aug 2004 17:33:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760Xw0T092277 for ; Thu, 5 Aug 2004 17:33:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i760Xw8M074141 for ; Thu, 5 Aug 2004 17:33:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i760XwBX074140 for xorp-cvs@icir.org; Fri, 6 Aug 2004 00:33:58 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 00:33:58 GMT From: Pavlin Radoslavov Message-Id: <200408060033.i760XwBX074140@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 00:33:58 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc Log message: Bug fix: update the primary address on an interface when the interface is added, or when an address to that interface is added. Requested by: mjh Revision Changes Path 1.31 +27 -3 xorp/mld6igmp/mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 00:35:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i760a1N9081487 for ; Thu, 5 Aug 2004 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760a10T092316 for ; Thu, 5 Aug 2004 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760a1tm002709; Thu, 5 Aug 2004 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760ZBtm002695 for ; Thu, 5 Aug 2004 17:35:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760ZB0T092314 for ; Thu, 5 Aug 2004 17:35:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i760ZB8M074232 for ; Thu, 5 Aug 2004 17:35:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i760ZBls074231 for xorp-cvs@icir.org; Fri, 6 Aug 2004 00:35:11 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 00:35:11 GMT From: Pavlin Radoslavov Message-Id: <200408060035.i760ZBls074231@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 00:35:11 UTC XORP CVS repository Modified files: pim pim_node.cc Log message: Bug fix: update the primary and domain-wide addresses on an interface when the interface is added, or when an address to that interface is added. Requested by: mjh Revision Changes Path 1.52 +28 -2 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 00:42:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 17:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i760h1XK082829 for ; Thu, 5 Aug 2004 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760h10T092366 for ; Thu, 5 Aug 2004 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760h0tm002910; Thu, 5 Aug 2004 17:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i760gHtm002890 for ; Thu, 5 Aug 2004 17:42:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i760gH0T092364 for ; Thu, 5 Aug 2004 17:42:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i760gH8M074328 for ; Thu, 5 Aug 2004 17:42:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i760gGPu074327 for xorp-cvs@icir.org; Fri, 6 Aug 2004 00:42:16 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 00:42:16 GMT From: Pavlin Radoslavov Message-Id: <200408060042.i760gGPu074327@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: CVSROOT Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Changes by: pavlin@xorpc.icir.org 2004-08-06 00:42:16 UTC XORP CVS repository Modified files: . cfg_local.pm rcstemplate Log message: Add a new entry to the CVS log message template: "Bug found by:" that is filled if the CVS commit is a bug fix, and the bug was found by somebody else. Revision Changes Path 1.3 +2 -1 CVSROOT/cfg_local.pm 1.2 +2 -0 CVSROOT/rcstemplate _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 01:41:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 18:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i761g1ge094316 for ; Thu, 5 Aug 2004 18:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i761g10T093066 for ; Thu, 5 Aug 2004 18:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i761g1tm004396; Thu, 5 Aug 2004 18:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i761fJtm004382 for ; Thu, 5 Aug 2004 18:41:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i761fJ0T093055 for ; Thu, 5 Aug 2004 18:41:19 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i761fJ8M074818 for ; Thu, 5 Aug 2004 18:41:19 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i761fI9G074817 for xorp-cvs@icir.org; Fri, 6 Aug 2004 01:41:18 GMT (envelope-from bms) Date: Fri, 6 Aug 2004 01:41:18 GMT From: Bruce Simpson Message-Id: <200408060141.i761fI9G074817@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/etc/templates xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-06 01:41:18 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh peer_data.hh socket.cc socket.hh xrl_shell_funcs.sh xrl_target.cc xrl_target.hh etc/templates bgp.tp xrl/interfaces bgp.xif Log message: Initial import of application-level TCP-MD5 (RFC2385) support for BGPv4. - Add a property, _md5_password, to class BGPPeerData. - Add a property _md5sig to class SocketClient to specify that the client socket should have TCP_MD5SIG enabled on it during SocketClient::connect(). - Update the constructor's signature accordingly with an optional initializer. - Pass this property in from BGPMain::create_peer() during BGP Active Open when SocketClient is instantiated. - Add the new method to the bgp.xif interface. The XRL glue calls in through BGPMain::set_peer_md5_password() to set the property at runtime. - Add an XRL shell function for testing purposes. Revision Changes Path 1.38 +22 -2 xorp/bgp/bgp.cc 1.28 +11 -1 xorp/bgp/bgp.hh 1.13 +9 -1 xorp/bgp/peer_data.hh 1.16 +9 -3 xorp/bgp/socket.cc 1.8 +3 -2 xorp/bgp/socket.hh 1.9 +7 -1 xorp/bgp/xrl_shell_funcs.sh 1.27 +23 -1 xorp/bgp/xrl_target.cc 1.23 +9 -1 xorp/bgp/xrl_target.hh 1.33 +10 -1 xorp/etc/templates/bgp.tp 1.19 +18 -1 xorp/xrl/interfaces/bgp.xif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 03:16:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 Aug 2004 20:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i763H1b4012907 for ; Thu, 5 Aug 2004 20:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i763H10T094299 for ; Thu, 5 Aug 2004 20:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i763H1tm006434; Thu, 5 Aug 2004 20:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i763G2tm006420 for ; Thu, 5 Aug 2004 20:16:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i763G10T094289 for ; Thu, 5 Aug 2004 20:16:01 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i763G08M075648 for ; Thu, 5 Aug 2004 20:16:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i763G0c6075647 for xorp-cvs@icir.org; Fri, 6 Aug 2004 03:16:00 GMT (envelope-from mjh) Date: Fri, 6 Aug 2004 03:16:00 GMT From: Mark Handley Message-Id: <200408060316.i763G0c6075647@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-06 03:16:00 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: minor wordsmithing Revision Changes Path 1.6 +18 -10 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 07:22:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 00:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i767N1eQ060667 for ; Fri, 6 Aug 2004 00:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i767N10T097249 for ; Fri, 6 Aug 2004 00:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i767N1tm012254; Fri, 6 Aug 2004 00:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i767M5tm012237 for ; Fri, 6 Aug 2004 00:22:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i767M40T097241 for ; Fri, 6 Aug 2004 00:22:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i767M48M077587 for ; Fri, 6 Aug 2004 00:22:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i767M493077586 for xorp-cvs@icir.org; Fri, 6 Aug 2004 07:22:04 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 07:22:04 GMT From: Pavlin Radoslavov Message-Id: <200408060722.i767M493077586@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 07:22:04 UTC XORP CVS repository Modified files: bgp bgp.hh Log message: Split a long line into two lines (inside a kdoc header). Revision Changes Path 1.29 +3 -2 xorp/bgp/bgp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 07:30:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 00:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i767V15w062216 for ; Fri, 6 Aug 2004 00:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i767V10T097377 for ; Fri, 6 Aug 2004 00:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i767V1tm012417; Fri, 6 Aug 2004 00:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i767UYtm012397 for ; Fri, 6 Aug 2004 00:30:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i767UX0T097370 for ; Fri, 6 Aug 2004 00:30:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i767UX8M077724 for ; Fri, 6 Aug 2004 00:30:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i767UXNe077723 for xorp-cvs@icir.org; Fri, 6 Aug 2004 07:30:33 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 07:30:33 GMT From: Pavlin Radoslavov Message-Id: <200408060730.i767UXNe077723@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 07:30:33 UTC XORP CVS repository Modified files: bgp socket.cc Log message: Compilation fix: assign a default value to the bool optional argument inside the SocketClient::SocketClient() declaration, but don't do such assignment inside the SocketClient::SocketClient() definition. Revision Changes Path 1.17 +2 -3 xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 15:46:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 08:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i76Fl1OW061018 for ; Fri, 6 Aug 2004 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Fl10T004220 for ; Fri, 6 Aug 2004 08:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76Fl1tm024648; Fri, 6 Aug 2004 08:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76Fkxtm024642 for ; Fri, 6 Aug 2004 08:46:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Fkx0T004218 for ; Fri, 6 Aug 2004 08:46:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Fkw8M083213 for ; Fri, 6 Aug 2004 08:46:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i76FkwlG083212 for xorp-cvs@icir.org; Fri, 6 Aug 2004 15:46:58 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 15:46:58 GMT From: Pavlin Radoslavov Message-Id: <200408061546.i76FkwlG083212@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 15:46:58 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Fix the sample output for "show igmp interface address" to reflect a recent bug fix. Bug found by: mjh Revision Changes Path 1.7 +1 -1 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 19:00:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 12:01:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i76J155C010835 for ; Fri, 6 Aug 2004 12:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76J150T006461 for ; Fri, 6 Aug 2004 12:01:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76J15tm000121; Fri, 6 Aug 2004 12:01:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76J0Btm000063 for ; Fri, 6 Aug 2004 12:00:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76J0A0T006451 for ; Fri, 6 Aug 2004 12:00:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i76J0A8M084991 for ; Fri, 6 Aug 2004 12:00:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i76J0Awh084990 for xorp-cvs@icir.org; Fri, 6 Aug 2004 19:00:10 GMT (envelope-from pavlin) Date: Fri, 6 Aug 2004 19:00:10 GMT From: Pavlin Radoslavov Message-Id: <200408061900.i76J0Awh084990@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-06 19:00:10 UTC XORP CVS repository Modified files: xrl/interfaces bgp_xif.cc bgp_xif.hh xrl/targets bgp.xrls bgp_base.cc bgp_base.hh Log message: Commit auto-generated files. Revision Changes Path 1.27 +41 -1 xorp/xrl/interfaces/bgp_xif.cc 1.27 +27 -1 xorp/xrl/interfaces/bgp_xif.hh 1.29 +8 -1 xorp/xrl/targets/bgp.xrls 1.30 +35 -1 xorp/xrl/targets/bgp_base.cc 1.35 +18 -1 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 20:49:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 13:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i76Ko1IC048367 for ; Fri, 6 Aug 2004 13:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Ko10T007683 for ; Fri, 6 Aug 2004 13:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76Ko1tm002936; Fri, 6 Aug 2004 13:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76KnWtm002924 for ; Fri, 6 Aug 2004 13:49:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76KnV0T007674 for ; Fri, 6 Aug 2004 13:49:31 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i76KnV8M086990 for ; Fri, 6 Aug 2004 13:49:31 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i76KnVuX086989 for xorp-cvs@icir.org; Fri, 6 Aug 2004 20:49:31 GMT (envelope-from mjh) Date: Fri, 6 Aug 2004 20:49:31 GMT From: Mark Handley Message-Id: <200408062049.i76KnVuX086989@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-06 20:49:31 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Add background/terminology for PIM-SM (mostly cribbed from PIM spec). Revision Changes Path 1.3 +277 -11 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Fri Aug 6 20:56:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 Aug 2004 13:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i76Kv18O080172 for ; Fri, 6 Aug 2004 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Kv10T007766 for ; Fri, 6 Aug 2004 13:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76Kv1tm003126; Fri, 6 Aug 2004 13:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i76Kudtm003111 for ; Fri, 6 Aug 2004 13:56:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Kud0T007756 for ; Fri, 6 Aug 2004 13:56:39 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i76Kud8M087168 for ; Fri, 6 Aug 2004 13:56:39 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i76KudbR087167 for xorp-cvs@icir.org; Fri, 6 Aug 2004 20:56:39 GMT (envelope-from mjh) Date: Fri, 6 Aug 2004 20:56:39 GMT From: Mark Handley Message-Id: <200408062056.i76KudbR087167@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-06 20:56:39 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Fix unfinished parameter list Revision Changes Path 1.4 +60 -38 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:19 2005 Subject: No subject Sat Aug 7 08:56:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 07 Aug 2004 01:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i778v1Xt038299 for ; Sat, 7 Aug 2004 01:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i778v10T014216 for ; Sat, 7 Aug 2004 01:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i778v1tm017858; Sat, 7 Aug 2004 01:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i778uitm017849 for ; Sat, 7 Aug 2004 01:56:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i778ui0T014212 for ; Sat, 7 Aug 2004 01:56:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i778ui8M093137 for ; Sat, 7 Aug 2004 01:56:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i778uis4093136 for xorp-cvs@icir.org; Sat, 7 Aug 2004 08:56:44 GMT (envelope-from pavlin) Date: Sat, 7 Aug 2004 08:56:44 GMT From: Pavlin Radoslavov Message-Id: <200408070856.i778uis4093136@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-07 08:56:44 UTC XORP CVS repository Modified files: pim pim_mre_rpf.cc Log message: Bug fixes: - Fix PimMre::set_nbr_mrib_next_hop_rp() so it doesn't call set_rpfp_nbr_wc() to set RPF'(*,G). The reason is that if the MRIB has changed, then the dependency tracking mechanism itself will call PimMre::recompute_rpfp_nbr_wc_not_assert_changed() as appropriate, and that method will call set_rpfp_nbr_wc() if necessary. This fixes the problem of not sending immediately (*,G) Join messages toward the RP when the next-hop router shows-up as a PIM-SM router. - Fix PimMre::set_nbr_mrib_next_hop_s() not to call set_rpfp_nbr_sg(), because RPF'(S,G) should be set independently by the (non-existing) method PimMre::recompute_nbr_mrib_next_hop_s_changed(). [See the next commit that adds this method] Revision Changes Path 1.29 +2 -17 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Sat Aug 7 09:13:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 07 Aug 2004 02:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i779E1Yg042463 for ; Sat, 7 Aug 2004 02:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i779E00T014654 for ; Sat, 7 Aug 2004 02:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i779E0tm018170; Sat, 7 Aug 2004 02:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i779Dgtm018160 for ; Sat, 7 Aug 2004 02:13:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i779Dg0T014652 for ; Sat, 7 Aug 2004 02:13:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i779Dg8M093770 for ; Sat, 7 Aug 2004 02:13:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i779DgFf093769 for xorp-cvs@icir.org; Sat, 7 Aug 2004 09:13:42 GMT (envelope-from pavlin) Date: Sat, 7 Aug 2004 09:13:42 GMT From: Pavlin Radoslavov Message-Id: <200408070913.i779DgFf093769@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-07 09:13:42 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre_rpf.cc pim_mre_track_state.hh pim_mre_track_state.cc pim/docs pim_track_state_name.txt pim_track_state_num.txt Log message: * Add missing method PimMre::recompute_nbr_mrib_next_hop_s_changed() to set NBR(RPF_interface(S), MRIB.next_hop(S)). * Add new output state to the dependency tracking mechanism: OUTPUT_STATE_NBR_MRIB_NEXT_HOP_S That state is used to call PimMre::recompute_nbr_mrib_next_hop_s_changed() as appropriate. Revision Changes Path 1.21 +2 -0 xorp/pim/docs/pim_track_state_name.txt 1.20 +36 -36 xorp/pim/docs/pim_track_state_num.txt 1.38 +2 -1 xorp/pim/pim_mre.hh 1.30 +22 -1 xorp/pim/pim_mre_rpf.cc 1.29 +90 -67 xorp/pim/pim_mre_track_state.cc 1.18 +35 -33 xorp/pim/pim_mre_track_state.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Sun Aug 8 01:16:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 07 Aug 2004 18:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i781H19t034299 for ; Sat, 7 Aug 2004 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i781H1Ne026908 for ; Sat, 7 Aug 2004 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i781H1tm005520; Sat, 7 Aug 2004 18:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i781Ggtm005514 for ; Sat, 7 Aug 2004 18:16:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i781GgNe026902 for ; Sat, 7 Aug 2004 18:16:42 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i781Gg8M004578 for ; Sat, 7 Aug 2004 18:16:42 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i781GfRI004577 for xorp-cvs@icir.org; Sun, 8 Aug 2004 01:16:41 GMT (envelope-from mjh) Date: Sun, 8 Aug 2004 01:16:41 GMT From: Mark Handley Message-Id: <200408080116.i781GfRI004577@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-08 01:16:41 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Add explanations for all PIM-SM configuration parameters. Revision Changes Path 1.5 +222 -42 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Wed Aug 11 06:32:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Aug 2004 23:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7B6X2b5046891 for ; Tue, 10 Aug 2004 23:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6X2Ne081826 for ; Tue, 10 Aug 2004 23:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7B6X1tm014691; Tue, 10 Aug 2004 23:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7B6Wwtm014684 for ; Tue, 10 Aug 2004 23:32:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6WwNe081824 for ; Tue, 10 Aug 2004 23:32:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6Ww8M043487 for ; Tue, 10 Aug 2004 23:32:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7B6WwTm043486 for xorp-cvs@icir.org; Wed, 11 Aug 2004 06:32:58 GMT (envelope-from pavlin) Date: Wed, 11 Aug 2004 06:32:58 GMT From: Pavlin Radoslavov Message-Id: <200408110632.i7B6WwTm043486@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-11 06:32:58 UTC XORP CVS repository Modified files: . configure configure.in Log message: Include and rather than the temporary "mrt/include/netinet/ip6_mroute_adv_api_freebsd_4_5.h" in the test-programs to find-out whether the system has the advanced multicast API. Revision Changes Path 1.115 +6 -6 xorp/configure 1.105 +7 -7 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Wed Aug 11 06:34:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 Aug 2004 23:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7B6Z10t047288 for ; Tue, 10 Aug 2004 23:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6Z1Ne081852 for ; Tue, 10 Aug 2004 23:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7B6Z1tm014880; Tue, 10 Aug 2004 23:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7B6Yttm014874 for ; Tue, 10 Aug 2004 23:34:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6YtNe081846 for ; Tue, 10 Aug 2004 23:34:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7B6Yt8M043550 for ; Tue, 10 Aug 2004 23:34:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7B6Ytvh043549 for xorp-cvs@icir.org; Wed, 11 Aug 2004 06:34:55 GMT (envelope-from pavlin) Date: Wed, 11 Aug 2004 06:34:55 GMT From: Pavlin Radoslavov Message-Id: <200408110634.i7B6Ytvh043549@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-11 06:34:55 UTC XORP CVS repository Modified files: docs/user_manual Makefile.in Log message: Re-generate with the default automake-1.5 Revision Changes Path 1.4 +16 -25 xorp/docs/user_manual/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Thu Aug 12 03:44:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 Aug 2004 20:45:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7C3j1q5089965 for ; Wed, 11 Aug 2004 20:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C3j1Kj099388 for ; Wed, 11 Aug 2004 20:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C3j1tm016039; Wed, 11 Aug 2004 20:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C3ittm016022 for ; Wed, 11 Aug 2004 20:44:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C3isKj099383 for ; Wed, 11 Aug 2004 20:44:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C3is8M055981 for ; Wed, 11 Aug 2004 20:44:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7C3isEq055980 for xorp-cvs@icir.org; Thu, 12 Aug 2004 03:44:54 GMT (envelope-from pavlin) Date: Thu, 12 Aug 2004 03:44:54 GMT From: Pavlin Radoslavov Message-Id: <200408120344.i7C3isEq055980@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-12 03:44:54 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: * Run the %create command inside ConfigTreeNode::commit_changes() only if _existence_commited is false. In other words, the %create command is used only when a configuration node in the tree is created for a first time. Currently, it appears that the %create command will be run when a node's value is changed (e.g., if %create was used in a leaf node, even though this may not be its intended usage). * Add missing initialization of _actions_succeeded (set to true) inside ConfigTreeNode::mark_subtree_for_deletion() Revision Changes Path 1.49 +5 -2 xorp/rtrmgr/conf_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Thu Aug 12 07:16:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 00:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7C7H1Ud031735 for ; Thu, 12 Aug 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7H1Kj002242 for ; Thu, 12 Aug 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C7H1tm020813; Thu, 12 Aug 2004 00:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C7Gitm020801 for ; Thu, 12 Aug 2004 00:16:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7GiKj002237 for ; Thu, 12 Aug 2004 00:16:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7Gi8M057871 for ; Thu, 12 Aug 2004 00:16:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7C7GiYY057870 for xorp-cvs@icir.org; Thu, 12 Aug 2004 07:16:44 GMT (envelope-from pavlin) Date: Thu, 12 Aug 2004 07:16:44 GMT From: Pavlin Radoslavov Message-Id: <200408120716.i7C7GiYY057870@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-12 07:16:44 UTC XORP CVS repository Modified files: rtrmgr cli.cc conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc slave_conf_tree.cc template_tree_node.cc Log message: Add support for a new template command %update. This command is similar to %activate in a sense that it is executed after the node's children have been configured. However, while %activate is suppose to be executed only on startup when the node is created, %update is executed after startup only if the value of a node (or some of the values in a subtree) has been modified. Revision Changes Path 1.57 +3 -1 xorp/rtrmgr/cli.cc 1.50 +62 -10 xorp/rtrmgr/conf_tree_node.cc 1.24 +4 -3 xorp/rtrmgr/conf_tree_node.hh 1.38 +8 -3 xorp/rtrmgr/master_conf_tree.cc 1.22 +5 -2 xorp/rtrmgr/slave_conf_tree.cc 1.28 +3 -2 xorp/rtrmgr/template_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Thu Aug 12 07:34:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 00:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7C7Z1Bj035285 for ; Thu, 12 Aug 2004 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7Z1Kj002461 for ; Thu, 12 Aug 2004 00:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C7Z1tm021262; Thu, 12 Aug 2004 00:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7C7YVtm021237 for ; Thu, 12 Aug 2004 00:34:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7YVKj002451 for ; Thu, 12 Aug 2004 00:34:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7C7YV8M058073 for ; Thu, 12 Aug 2004 00:34:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7C7YVox058072 for xorp-cvs@icir.org; Thu, 12 Aug 2004 07:34:31 GMT (envelope-from pavlin) Date: Thu, 12 Aug 2004 07:34:31 GMT From: Pavlin Radoslavov Message-Id: <200408120734.i7C7YVox058072@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-12 07:34:31 UTC XORP CVS repository Modified files: etc/templates static_routes.tp Log message: Add %update XRLs to update existing static routes if they are modified. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=96 Revision Changes Path 1.11 +5 -1 xorp/etc/templates/static_routes.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Thu Aug 12 20:23:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 13:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7CKO1wH001749 for ; Thu, 12 Aug 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CKO1Kj013797 for ; Thu, 12 Aug 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7CKO0UM012342; Thu, 12 Aug 2004 13:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7CKNiUM012333 for ; Thu, 12 Aug 2004 13:23:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CKNiKj013795 for ; Thu, 12 Aug 2004 13:23:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CKNi8M066096 for ; Thu, 12 Aug 2004 13:23:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7CKNi7g066095 for xorp-cvs@icir.org; Thu, 12 Aug 2004 20:23:44 GMT (envelope-from pavlin) Date: Thu, 12 Aug 2004 20:23:44 GMT From: Pavlin Radoslavov Message-Id: <200408122023.i7CKNi7g066095@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-12 20:23:44 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: * Add a subsection to describe the new %update command. * Add missing ';' at the end of each statement in the example for using the %activate command. Revision Changes Path 1.24 +49 -4 xorp/docs/rtrmgr/rtrmgr.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Thu Aug 12 22:18:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 15:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7CMJ1qf024508 for ; Thu, 12 Aug 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CMJ1Kj015043 for ; Thu, 12 Aug 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7CMJ1UM015719; Thu, 12 Aug 2004 15:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7CMIdUM015708 for ; Thu, 12 Aug 2004 15:18:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CMIdKj015040 for ; Thu, 12 Aug 2004 15:18:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7CMId8M067122 for ; Thu, 12 Aug 2004 15:18:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7CMId6P067121 for xorp-cvs@icir.org; Thu, 12 Aug 2004 22:18:39 GMT (envelope-from pavlin) Date: Thu, 12 Aug 2004 22:18:39 GMT From: Pavlin Radoslavov Message-Id: <200408122218.i7CMId6P067121@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-12 22:18:38 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_observer_netlink.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Use run-time check whether the system supports IPv4/IPv6 to perform IPv4/IPv6-specific operations for manipulating the network interfaces and the forwarding table. This fixes a bug when FEA compiled on a system that supports IPv6 is run on a system with IPv6 disabled. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=99 Revision Changes Path 1.21 +162 -53 xorp/fea/fticonfig.cc 1.16 +19 -3 xorp/fea/fticonfig.hh 1.19 +33 -11 xorp/fea/fticonfig_entry_get_netlink.cc 1.17 +35 -5 xorp/fea/fticonfig_entry_get_rtsock.cc 1.4 +17 -10 xorp/fea/fticonfig_entry_observer_netlink.cc 1.9 +45 -8 xorp/fea/fticonfig_entry_set_netlink.cc 1.16 +39 -1 xorp/fea/fticonfig_entry_set_rtsock.cc 1.18 +34 -10 xorp/fea/fticonfig_table_get_netlink.cc 1.11 +18 -2 xorp/fea/fticonfig_table_get_sysctl.cc 1.6 +31 -20 xorp/fea/fticonfig_table_observer_netlink.cc 1.8 +15 -11 xorp/fea/fticonfig_table_observer_rtsock.cc 1.26 +52 -2 xorp/fea/ifconfig.cc 1.26 +31 -1 xorp/fea/ifconfig.hh 1.8 +25 -17 xorp/fea/ifconfig_get_ioctl.cc 1.8 +97 -82 xorp/fea/ifconfig_get_netlink.cc 1.15 +12 -7 xorp/fea/ifconfig_get_proc_linux.cc 1.7 +17 -10 xorp/fea/ifconfig_observer_netlink.cc 1.23 +45 -7 xorp/fea/ifconfig_set_ioctl.cc 1.9 +61 -8 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:26:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0R1Om050609 for ; Thu, 12 Aug 2004 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0R1Kj016422 for ; Thu, 12 Aug 2004 17:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0R0UM019100; Thu, 12 Aug 2004 17:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0QcUM019089 for ; Thu, 12 Aug 2004 17:26:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0QcKj016420 for ; Thu, 12 Aug 2004 17:26:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0Qc8M075611 for ; Thu, 12 Aug 2004 17:26:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0QceA075610 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:26:38 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:26:38 GMT From: Pavlin Radoslavov Message-Id: <200408130026.i7D0QceA075610@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:26:38 UTC XORP CVS repository Modified files: pim configure_pim Log message: Explicitly mention that the bw monitoring interval value should be at least 3 seconds. Requested by: "edrt" Revision Changes Path 1.33 +3 -2 xorp/pim/configure_pim _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:36:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0b1Kj053082 for ; Thu, 12 Aug 2004 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0b1Kj016535 for ; Thu, 12 Aug 2004 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0b1UM019395; Thu, 12 Aug 2004 17:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0aBUM019384 for ; Thu, 12 Aug 2004 17:36:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0aBKj016531 for ; Thu, 12 Aug 2004 17:36:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0aB8M077500 for ; Thu, 12 Aug 2004 17:36:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0aBFw077499 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:36:11 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:36:11 GMT From: Pavlin Radoslavov Message-Id: <200408130036.i7D0aBFw077499@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:36:11 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: * Change the default value for interval-sec (the interval for measuring the bandwidth for bandwidth-triggered SPT switch) from 0 to 3, because 3 is the smallest value accepted on OS-es that have the advanced multicast API support (e.g., FreBSD) whenever the bandwidth-triggered switch is enabled. * Add %allow-range for interval-sec: [3, 2147483647] Requested by: "edrt" Revision Changes Path 1.13 +3 -2 xorp/etc/templates/pimsm4.tp 1.13 +3 -2 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:41:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0g1Ro054409 for ; Thu, 12 Aug 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0g1Kj016589 for ; Thu, 12 Aug 2004 17:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0g1UM019536; Thu, 12 Aug 2004 17:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0fJUM019515 for ; Thu, 12 Aug 2004 17:41:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0fJKj016584 for ; Thu, 12 Aug 2004 17:41:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0fJ8M078366 for ; Thu, 12 Aug 2004 17:41:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0fJ5R078365 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:41:19 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:41:19 GMT From: Pavlin Radoslavov Message-Id: <200408130041.i7D0fJ5R078365@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:41:19 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: * Change the description for interval-sec to reflect the fact that its new default value is 100 seconds rather than 0, and that it must be at least 3 seconds. * Add a sentence what to do if we want the SPT switch to happen after rigth the first packet is received. Requested by: "edrt" Revision Changes Path 1.6 +3 -1 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:50:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0p1Q4056697 for ; Thu, 12 Aug 2004 17:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0p1Kj016688 for ; Thu, 12 Aug 2004 17:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0p0UM019792; Thu, 12 Aug 2004 17:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0oKUM019779 for ; Thu, 12 Aug 2004 17:50:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0oKKj016678 for ; Thu, 12 Aug 2004 17:50:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0oK8M079736 for ; Thu, 12 Aug 2004 17:50:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0oK3v079735 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:50:20 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:50:20 GMT From: Pavlin Radoslavov Message-Id: <200408130050.i7D0oK3v079735@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2004-08-13 00:50:19 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Add text to specify that the PIM-SM SPT switch-related interval-sec parameter should have value of at least 3 seconds. Also, add text to specify that "bytes" should be set to 0 if the SPT switch should happen right after the first packet is forwarded. Revision Changes Path 1.27 +6 -3 www/getting_started.html 1.5 +3 -0 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:52:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0r1RL057214 for ; Thu, 12 Aug 2004 17:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0r1Kj016710 for ; Thu, 12 Aug 2004 17:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0r0UM019848; Thu, 12 Aug 2004 17:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0q5UM019823 for ; Thu, 12 Aug 2004 17:52:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0q5Kj016701 for ; Thu, 12 Aug 2004 17:52:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0q58M080050 for ; Thu, 12 Aug 2004 17:52:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0q5ON080049 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:52:05 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:52:05 GMT From: Pavlin Radoslavov Message-Id: <200408130052.i7D0q5ON080049@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:52:05 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Minor nit. Revision Changes Path 1.7 +2 -2 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:55:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0u1Bm058026 for ; Thu, 12 Aug 2004 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0u1Kj016758 for ; Thu, 12 Aug 2004 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0u1UM019918; Thu, 12 Aug 2004 17:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0tGUM019897 for ; Thu, 12 Aug 2004 17:55:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0tGKj016753 for ; Thu, 12 Aug 2004 17:55:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0tG8M080501 for ; Thu, 12 Aug 2004 17:55:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0tGT5080500 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:55:16 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:55:16 GMT From: Pavlin Radoslavov Message-Id: <200408130055.i7D0tGT5080500@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:55:16 UTC XORP CVS repository Modified files: pim configure_pim Log message: Nit. Revision Changes Path 1.34 +3 -3 xorp/pim/configure_pim _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:57:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0w1sh058582 for ; Thu, 12 Aug 2004 17:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0w1Kj016789 for ; Thu, 12 Aug 2004 17:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0w1UM020018; Thu, 12 Aug 2004 17:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0vvUM020010 for ; Thu, 12 Aug 2004 17:57:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0vvKj016787 for ; Thu, 12 Aug 2004 17:57:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0vv8M080946 for ; Thu, 12 Aug 2004 17:57:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0vvDW080945 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:57:57 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:57:57 GMT From: Pavlin Radoslavov Message-Id: <200408130057.i7D0vvDW080945@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2004-08-13 00:57:57 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Nit. Revision Changes Path 1.28 +2 -2 www/getting_started.html 1.6 +1 -1 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 00:58:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 Aug 2004 17:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7D0x1WJ058872 for ; Thu, 12 Aug 2004 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0x1Kj016806 for ; Thu, 12 Aug 2004 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0x1UM020064; Thu, 12 Aug 2004 17:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7D0w9UM020036 for ; Thu, 12 Aug 2004 17:58:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0w9Kj016792 for ; Thu, 12 Aug 2004 17:58:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7D0w98M081015 for ; Thu, 12 Aug 2004 17:58:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7D0w9Wt081014 for xorp-cvs@icir.org; Fri, 13 Aug 2004 00:58:09 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 00:58:09 GMT From: Pavlin Radoslavov Message-Id: <200408130058.i7D0w9Wt081014@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 00:58:09 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Nit. Revision Changes Path 1.8 +1 -1 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:20 2005 Subject: No subject Fri Aug 13 19:36:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 12:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7DJb1o9083227 for ; Fri, 13 Aug 2004 12:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DJb1dE031760 for ; Fri, 13 Aug 2004 12:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DJb1UM016035; Fri, 13 Aug 2004 12:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DJapUM016029 for ; Fri, 13 Aug 2004 12:36:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DJapdE031758 for ; Fri, 13 Aug 2004 12:36:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DJao8M018096 for ; Fri, 13 Aug 2004 12:36:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7DJao8l018095 for xorp-cvs@icir.org; Fri, 13 Aug 2004 19:36:50 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 19:36:50 GMT From: Pavlin Radoslavov Message-Id: <200408131936.i7DJao8l018095@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 19:36:50 UTC XORP CVS repository Modified files: fea fticonfig_entry_observer_netlink.cc Log message: Compilation fix for Linux with IPv6 support enabled. Revision Changes Path 1.5 +2 -2 xorp/fea/fticonfig_entry_observer_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Fri Aug 13 20:10:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 13:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7DKB1gJ090063 for ; Fri, 13 Aug 2004 13:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DKB1dE032212 for ; Fri, 13 Aug 2004 13:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DKB1UM016942; Fri, 13 Aug 2004 13:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DKAfUM016928 for ; Fri, 13 Aug 2004 13:10:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DKAfdE032210 for ; Fri, 13 Aug 2004 13:10:41 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DKAf8M018477 for ; Fri, 13 Aug 2004 13:10:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7DKAfQM018476 for xorp-cvs@icir.org; Fri, 13 Aug 2004 20:10:41 GMT (envelope-from atanu) Date: Fri, 13 Aug 2004 20:10:41 GMT From: Atanu Ghosh Message-Id: <200408132010.i7DKAfQM018476@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-13 20:10:41 UTC XORP CVS repository Modified files: libxipc test_finder_events.cc Log message: When running a test try and monitor if all the callbacks have fired, rather than relying on a timer value. As a last resort still use the timer value with an increased time. Add support for running individual test. http://www.xorp.org/bugzilla/show_bug.cgi?id=90 Revision Changes Path 1.10 +83 -13 xorp/libxipc/test_finder_events.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Fri Aug 13 23:24:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 16:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7DNP1p3028725 for ; Fri, 13 Aug 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNP1dE034181 for ; Fri, 13 Aug 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DNP1UM022021; Fri, 13 Aug 2004 16:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DNO5UM021988 for ; Fri, 13 Aug 2004 16:24:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNO5dE034167 for ; Fri, 13 Aug 2004 16:24:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNO58M020886 for ; Fri, 13 Aug 2004 16:24:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7DNO5fX020885 for xorp-cvs@icir.org; Fri, 13 Aug 2004 23:24:05 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 23:24:05 GMT From: Pavlin Radoslavov Message-Id: <200408132324.i7DNO5fX020885@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 23:24:05 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre.cc pim_mre_data.cc pim_mre_track_state.hh pim_mre_track_state.cc pim/docs pim_track_state_name.txt pim_track_state_num.txt Log message: Add a mechanism to track the KeepaliveTimer(S,G) dependency and to start it as appropriate. Originally, the KAT was set only by events triggered from the kernel such as NOCACHE, etc. However, if there was already a MFC entry in the kernel because of (*,G) routing state, and if later a (S,G) Join was received (same iif and oifs), then the routing state for that (S,G) Join will be set, but the KAT won't be started. Bug found by: "edrt" Revision Changes Path 1.22 +20 -0 xorp/pim/docs/pim_track_state_name.txt 1.21 +20 -20 xorp/pim/docs/pim_track_state_num.txt 1.28 +123 -1 xorp/pim/pim_mre.cc 1.39 +5 -1 xorp/pim/pim_mre.hh 1.13 +15 -2 xorp/pim/pim_mre_data.cc 1.30 +39 -2 xorp/pim/pim_mre_track_state.cc 1.19 +4 -1 xorp/pim/pim_mre_track_state.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Fri Aug 13 23:32:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 16:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7DNX1No030351 for ; Fri, 13 Aug 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNX1dE034268 for ; Fri, 13 Aug 2004 16:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DNX0UM022236; Fri, 13 Aug 2004 16:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7DNWvUM022230 for ; Fri, 13 Aug 2004 16:32:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNWvdE034266 for ; Fri, 13 Aug 2004 16:32:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7DNWv8M021144 for ; Fri, 13 Aug 2004 16:32:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7DNWvth021143 for xorp-cvs@icir.org; Fri, 13 Aug 2004 23:32:57 GMT (envelope-from pavlin) Date: Fri, 13 Aug 2004 23:32:57 GMT From: Pavlin Radoslavov Message-Id: <200408132332.i7DNWvth021143@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt/include xorp/mrt/include/netinet Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-13 23:32:57 UTC XORP CVS repository Modified files: mrt/include ip_mroute.h Removed files: mrt/include/netinet ip_mroute_adv_api_freebsd_4_5.h Log message: Remove file mrt/include/netinet/ip_mroute_adv_api_freebsd_4_5.h, because it is not needed anymore: the new advanced multicast API definitions should be in the standard file. Revision Changes Path 1.7 +7 -10 xorp/mrt/include/ip_mroute.h 1.3 +0 -387 xorp/mrt/include/netinet/ip_mroute_adv_api_freebsd_4_5.h (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 05:24:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 22:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E5P10R099218 for ; Fri, 13 Aug 2004 22:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5P1dE037157 for ; Fri, 13 Aug 2004 22:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5P0UM028746; Fri, 13 Aug 2004 22:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5OpUM028737 for ; Fri, 13 Aug 2004 22:24:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5OpdE037151 for ; Fri, 13 Aug 2004 22:24:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5Op8M024388 for ; Fri, 13 Aug 2004 22:24:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E5OplM024387 for xorp-cvs@icir.org; Sat, 14 Aug 2004 05:24:51 GMT (envelope-from mjh) Date: Sat, 14 Aug 2004 05:24:51 GMT From: Mark Handley Message-Id: <200408140524.i7E5OplM024387@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-14 05:24:51 UTC XORP CVS repository Modified files: bgp bgp.cc rib_ipc_handler.cc rib_ipc_handler.hh Log message: Pass references rather than pointers so it's clearer that these can never be null. Revision Changes Path 1.39 +2 -2 xorp/bgp/bgp.cc 1.54 +29 -29 xorp/bgp/rib_ipc_handler.cc 1.31 +8 -8 xorp/bgp/rib_ipc_handler.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 05:37:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 22:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E5c1vE001921 for ; Fri, 13 Aug 2004 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5c1dE037275 for ; Fri, 13 Aug 2004 22:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5c1UM029017; Fri, 13 Aug 2004 22:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5bnUM029004 for ; Fri, 13 Aug 2004 22:37:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5bndE037273 for ; Fri, 13 Aug 2004 22:37:49 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5bn8M024531 for ; Fri, 13 Aug 2004 22:37:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E5bn7A024530 for xorp-cvs@icir.org; Sat, 14 Aug 2004 05:37:49 GMT (envelope-from mjh) Date: Sat, 14 Aug 2004 05:37:49 GMT From: Mark Handley Message-Id: <200408140537.i7E5bn7A024530@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-14 05:37:49 UTC XORP CVS repository Modified files: bgp/harness test_rib1.sh Log message: Add test9 to verify core dump reported by Andrea Bittau. Revision Changes Path 1.15 +24 -2 xorp/bgp/harness/test_rib1.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 05:49:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 22:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E5o1fr004294 for ; Fri, 13 Aug 2004 22:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5o1dE037350 for ; Fri, 13 Aug 2004 22:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5o1UM029237; Fri, 13 Aug 2004 22:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5nkUM029226 for ; Fri, 13 Aug 2004 22:49:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5nkdE037345 for ; Fri, 13 Aug 2004 22:49:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5nk8M024688 for ; Fri, 13 Aug 2004 22:49:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E5nkYp024687 for xorp-cvs@icir.org; Sat, 14 Aug 2004 05:49:46 GMT (envelope-from pavlin) Date: Sat, 14 Aug 2004 05:49:46 GMT From: Pavlin Radoslavov Message-Id: <200408140549.i7E5nkYp024687@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-14 05:49:46 UTC XORP CVS repository Modified files: libxipc test_finder_events.cc Log message: Compilation fix for MacOS X. Revision Changes Path 1.11 +4 -3 xorp/libxipc/test_finder_events.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 05:58:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 22:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E5x1aD006018 for ; Fri, 13 Aug 2004 22:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5x1dE037441 for ; Fri, 13 Aug 2004 22:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5x1UM029429; Fri, 13 Aug 2004 22:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5w1UM029414 for ; Fri, 13 Aug 2004 22:58:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5w1dE037429 for ; Fri, 13 Aug 2004 22:58:01 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5w18M024782 for ; Fri, 13 Aug 2004 22:58:01 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E5w1PM024781 for xorp-cvs@icir.org; Sat, 14 Aug 2004 05:58:01 GMT (envelope-from mjh) Date: Sat, 14 Aug 2004 05:58:01 GMT From: Mark Handley Message-Id: <200408140558.i7E5w1PM024781@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-14 05:58:01 UTC XORP CVS repository Modified files: bgp/harness test_rib1.sh Log message: Fix buggy test Revision Changes Path 1.16 +6 -1 xorp/bgp/harness/test_rib1.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 05:58:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 Aug 2004 22:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E5x2Sg006041 for ; Fri, 13 Aug 2004 22:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5x2dE037443 for ; Fri, 13 Aug 2004 22:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5x2UM029440; Fri, 13 Aug 2004 22:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E5wmUM029423 for ; Fri, 13 Aug 2004 22:58:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5wmdE037439 for ; Fri, 13 Aug 2004 22:58:48 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E5wm8M024818 for ; Fri, 13 Aug 2004 22:58:48 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E5wmsU024817 for xorp-cvs@icir.org; Sat, 14 Aug 2004 05:58:48 GMT (envelope-from mjh) Date: Sat, 14 Aug 2004 05:58:48 GMT From: Mark Handley Message-Id: <200408140558.i7E5wmsU024817@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-08-14 05:58:48 UTC XORP CVS repository Modified files: bgp peer_handler.hh rib_ipc_handler.hh Log message: Fix ability to access eventloop from RibIpcHandler. Bug found by: Andrea Bittau Revision Changes Path 1.14 +2 -2 xorp/bgp/peer_handler.hh 1.32 +6 -1 xorp/bgp/rib_ipc_handler.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 07:01:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Aug 2004 00:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7E721mU018372 for ; Sat, 14 Aug 2004 00:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E721dE038018 for ; Sat, 14 Aug 2004 00:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E721UM000983; Sat, 14 Aug 2004 00:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7E71qUM000975 for ; Sat, 14 Aug 2004 00:01:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E71qdE038016 for ; Sat, 14 Aug 2004 00:01:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7E71p8M025437 for ; Sat, 14 Aug 2004 00:01:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7E71pIi025436 for xorp-cvs@icir.org; Sat, 14 Aug 2004 07:01:51 GMT (envelope-from pavlin) Date: Sat, 14 Aug 2004 07:01:51 GMT From: Pavlin Radoslavov Message-Id: <200408140701.i7E71pIi025436@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-14 07:01:51 UTC XORP CVS repository Modified files: pim pim_mre.cc Log message: Add a missing check whether "if( oiflist != NULL )" Bug found by: "edrt" Revision Changes Path 1.29 +3 -2 xorp/pim/pim_mre.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sat Aug 14 20:58:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 Aug 2004 13:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7EKx152099122 for ; Sat, 14 Aug 2004 13:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7EKx1dE048931 for ; Sat, 14 Aug 2004 13:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7EKx0UM016015; Sat, 14 Aug 2004 13:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7EKwIUM016001 for ; Sat, 14 Aug 2004 13:58:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7EKwIdE048925 for ; Sat, 14 Aug 2004 13:58:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7EKwI8M035320 for ; Sat, 14 Aug 2004 13:58:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7EKwHkj035319 for xorp-cvs@icir.org; Sat, 14 Aug 2004 20:58:17 GMT (envelope-from atanu) Date: Sat, 14 Aug 2004 20:58:17 GMT From: Atanu Ghosh Message-Id: <200408142058.i7EKwHkj035319@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-14 20:58:17 UTC XORP CVS repository Modified files: libxipc test_finder_events.cc Log message: Temporarily disable test4. Revision Changes Path 1.12 +2 -1 xorp/libxipc/test_finder_events.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Sun Aug 15 19:30:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 15 Aug 2004 12:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7FJV1SL088717 for ; Sun, 15 Aug 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7FJV1dE061162 for ; Sun, 15 Aug 2004 12:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7FJV1UM010496; Sun, 15 Aug 2004 12:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7FJUJUM010472 for ; Sun, 15 Aug 2004 12:30:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7FJUJdE061150 for ; Sun, 15 Aug 2004 12:30:19 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7FJUJ8M046864 for ; Sun, 15 Aug 2004 12:30:19 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7FJUJCo046863 for xorp-cvs@icir.org; Sun, 15 Aug 2004 19:30:19 GMT (envelope-from atanu) Date: Sun, 15 Aug 2004 19:30:19 GMT From: Atanu Ghosh Message-Id: <200408151930.i7FJUJCo046863@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-15 19:30:19 UTC XORP CVS repository Modified files: bgp/harness test_peering1.sh Log message: The pathname to xrl_shell_funcs.sh in test30 did not include the source directory. Revision Changes Path 1.27 +2 -2 xorp/bgp/harness/test_peering1.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Mon Aug 16 10:26:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Aug 2004 03:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7GAR1lC068905 for ; Mon, 16 Aug 2004 03:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7GAR1dE070344 for ; Mon, 16 Aug 2004 03:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7GAR0UM029948; Mon, 16 Aug 2004 03:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7GAQ8UM029909 for ; Mon, 16 Aug 2004 03:26:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7GAQ8dE070336 for ; Mon, 16 Aug 2004 03:26:08 -0700 (PDT) (envelope-from greenhal@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7GAQ88M054538 for ; Mon, 16 Aug 2004 03:26:08 -0700 (PDT) (envelope-from greenhal@xorpc.icir.org) Received: (from greenhal@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7GAQ83U054537 for xorp-cvs@icir.org; Mon, 16 Aug 2004 10:26:08 GMT (envelope-from greenhal) Date: Mon, 16 Aug 2004 10:26:08 GMT From: Adam Greenhalgh Message-Id: <200408161026.i7GAQ83U054537@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/papers/lcs2004_paper Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: greenhal@xorpc.icir.org 2004-08-16 10:26:07 UTC XORP CVS repository Modified files: docs/papers/lcs2004_paper lcs.cls lcspaper.tex Log message: Have removed page numbers from the paper. Requested by: Conference Chair Revision Changes Path 1.2 +3 -3 xorp/docs/papers/lcs2004_paper/lcs.cls 1.9 +1 -0 xorp/docs/papers/lcs2004_paper/lcspaper.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Tue Aug 17 02:20:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 Aug 2004 19:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7H2L2qA083414 for ; Mon, 16 Aug 2004 19:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7H2L1Sg082291 for ; Mon, 16 Aug 2004 19:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7H2L1jS027664; Mon, 16 Aug 2004 19:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7H2KCjS027640 for ; Mon, 16 Aug 2004 19:20:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7H2KCSg082283 for ; Mon, 16 Aug 2004 19:20:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7H2KC8M065412 for ; Mon, 16 Aug 2004 19:20:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7H2KCbR065411 for xorp-cvs@icir.org; Tue, 17 Aug 2004 02:20:12 GMT (envelope-from pavlin) Date: Tue, 17 Aug 2004 02:20:12 GMT From: Pavlin Radoslavov Message-Id: <200408170220.i7H2KCbR065411@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-17 02:20:12 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_set.cc fticonfig_table_set.hh fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_get.cc ifconfig_get.hh ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc xrl_fti.hh Log message: Update the mechanism for registering Get/Set/Observer mechanisms for handling the network interfaces, the forwarding entries and the forwarding table. Previously, there could be only a single mechanism per operation. Now, we can have a list of mechanisms per operation. This change is needed so we can modify at the same time two or more semi-independent entities; e.g., the kernel and Click. For example, to add a network interface, we have to enable/configure it in the kernel and inside Click. Revision Changes Path 1.22 +447 -89 xorp/fea/fticonfig.cc 1.17 +42 -20 xorp/fea/fticonfig.hh 1.4 +3 -3 xorp/fea/fticonfig_entry_get.cc 1.15 +2 -2 xorp/fea/fticonfig_entry_get.hh 1.7 +2 -2 xorp/fea/fticonfig_entry_get_dummy.cc 1.20 +2 -2 xorp/fea/fticonfig_entry_get_netlink.cc 1.18 +2 -2 xorp/fea/fticonfig_entry_get_rtsock.cc 1.4 +3 -3 xorp/fea/fticonfig_entry_observer.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_observer.hh 1.5 +2 -2 xorp/fea/fticonfig_entry_observer_dummy.cc 1.6 +2 -2 xorp/fea/fticonfig_entry_observer_netlink.cc 1.5 +2 -2 xorp/fea/fticonfig_entry_observer_rtsock.cc 1.4 +3 -3 xorp/fea/fticonfig_entry_set.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_set.hh 1.5 +2 -2 xorp/fea/fticonfig_entry_set_dummy.cc 1.10 +2 -2 xorp/fea/fticonfig_entry_set_netlink.cc 1.17 +2 -2 xorp/fea/fticonfig_entry_set_rtsock.cc 1.4 +3 -3 xorp/fea/fticonfig_table_get.cc 1.12 +2 -2 xorp/fea/fticonfig_table_get.hh 1.6 +2 -2 xorp/fea/fticonfig_table_get_dummy.cc 1.19 +2 -2 xorp/fea/fticonfig_table_get_netlink.cc 1.12 +2 -2 xorp/fea/fticonfig_table_get_sysctl.cc 1.6 +3 -3 xorp/fea/fticonfig_table_observer.cc 1.10 +2 -2 xorp/fea/fticonfig_table_observer.hh 1.5 +2 -2 xorp/fea/fticonfig_table_observer_dummy.cc 1.7 +6 -6 xorp/fea/fticonfig_table_observer_netlink.cc 1.9 +6 -6 xorp/fea/fticonfig_table_observer_rtsock.cc 1.4 +3 -3 xorp/fea/fticonfig_table_set.cc 1.9 +2 -2 xorp/fea/fticonfig_table_set.hh 1.5 +2 -2 xorp/fea/fticonfig_table_set_dummy.cc 1.4 +2 -2 xorp/fea/fticonfig_table_set_netlink.cc 1.7 +2 -2 xorp/fea/fticonfig_table_set_rtsock.cc 1.27 +123 -27 xorp/fea/ifconfig.cc 1.27 +28 -23 xorp/fea/ifconfig.hh 1.4 +3 -3 xorp/fea/ifconfig_get.cc 1.13 +2 -2 xorp/fea/ifconfig_get.hh 1.6 +2 -2 xorp/fea/ifconfig_get_dummy.cc 1.7 +2 -2 xorp/fea/ifconfig_get_getifaddrs.cc 1.9 +2 -2 xorp/fea/ifconfig_get_ioctl.cc 1.9 +2 -2 xorp/fea/ifconfig_get_netlink.cc 1.16 +2 -2 xorp/fea/ifconfig_get_proc_linux.cc 1.7 +2 -2 xorp/fea/ifconfig_get_sysctl.cc 1.4 +3 -3 xorp/fea/ifconfig_observer.cc 1.9 +2 -2 xorp/fea/ifconfig_observer.hh 1.5 +2 -2 xorp/fea/ifconfig_observer_dummy.cc 1.8 +4 -3 xorp/fea/ifconfig_observer_netlink.cc 1.7 +4 -3 xorp/fea/ifconfig_observer_rtsock.cc 1.10 +3 -3 xorp/fea/ifconfig_set.cc 1.13 +2 -2 xorp/fea/ifconfig_set.hh 1.8 +2 -2 xorp/fea/ifconfig_set_dummy.cc 1.24 +2 -2 xorp/fea/ifconfig_set_ioctl.cc 1.10 +2 -2 xorp/fea/ifconfig_set_netlink.cc 1.9 +3 -3 xorp/fea/xrl_fti.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Wed Aug 18 09:04:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 02:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7I952he064311 for ; Wed, 18 Aug 2004 02:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7I951UH005489 for ; Wed, 18 Aug 2004 02:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7I951jS015762; Wed, 18 Aug 2004 02:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7I94cjS015751 for ; Wed, 18 Aug 2004 02:04:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7I94cUH005481 for ; Wed, 18 Aug 2004 02:04:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7I94c8M082151 for ; Wed, 18 Aug 2004 02:04:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7I94bDc082150 for xorp-cvs@icir.org; Wed, 18 Aug 2004 09:04:38 GMT (envelope-from pavlin) Date: Wed, 18 Aug 2004 09:04:38 GMT From: Pavlin Radoslavov Message-Id: <200408180904.i7I94bDc082150@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-18 09:04:37 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in Log message: Remove rules for taking-out -Wnon-const-format from the list of C compiler flags for files debug.c and xlog.c. Those rules are not needed anymore, because "./configure" tests all C/C++ compiler flags that are supported. Revision Changes Path 1.25 +1 -7 xorp/libxorp/Makefile.am 1.35 +0 -6 xorp/libxorp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Wed Aug 18 18:28:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 11:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7IIT1LW072357 for ; Wed, 18 Aug 2004 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IIT1UH012932 for ; Wed, 18 Aug 2004 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7IIT1jS000722; Wed, 18 Aug 2004 11:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7IISbjS000705 for ; Wed, 18 Aug 2004 11:28:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IISbUH012930 for ; Wed, 18 Aug 2004 11:28:37 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IISb8M088556 for ; Wed, 18 Aug 2004 11:28:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7IISben088555 for xorp-cvs@icir.org; Wed, 18 Aug 2004 18:28:37 GMT (envelope-from atanu) Date: Wed, 18 Aug 2004 18:28:37 GMT From: Atanu Ghosh Message-Id: <200408181828.i7IISben088555@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-08-18 18:28:37 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Add another mirror site. Germany, Düsseldorf at Linjection. Revision Changes Path 1.11 +6 -0 www/html_src/mirrors.html 1.13 +7 -1 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:21 2005 Subject: No subject Wed Aug 18 23:00:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 16:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7IN11Mb026887 for ; Wed, 18 Aug 2004 16:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IN11ZN016130 for ; Wed, 18 Aug 2004 16:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7IN11jS008971; Wed, 18 Aug 2004 16:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7IN0WjS008954 for ; Wed, 18 Aug 2004 16:00:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IN0VZN016123 for ; Wed, 18 Aug 2004 16:00:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7IN0V8M091177 for ; Wed, 18 Aug 2004 16:00:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7IN0V4e091176 for xorp-cvs@icir.org; Wed, 18 Aug 2004 23:00:31 GMT (envelope-from pavlin) Date: Wed, 18 Aug 2004 23:00:31 GMT From: Pavlin Radoslavov Message-Id: <200408182300.i7IN0V4e091176@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-18 23:00:31 UTC XORP CVS repository Modified files: fea fticonfig.cc ifconfig.cc Log message: Bug fix: if we are dummy FEA, then set the appropriate flags to indicate that we have IPv4 and IPv6. Bug found by: Atanu Ghosh Revision Changes Path 1.23 +7 -1 xorp/fea/fticonfig.cc 1.28 +7 -1 xorp/fea/ifconfig.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Thu Aug 19 00:20:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 17:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7J0L1Po042542 for ; Wed, 18 Aug 2004 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0L1ZN016936 for ; Wed, 18 Aug 2004 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J0L0jS011476; Wed, 18 Aug 2004 17:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J0KKjS011451 for ; Wed, 18 Aug 2004 17:20:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0KKZN016927 for ; Wed, 18 Aug 2004 17:20:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0KK8M092227 for ; Wed, 18 Aug 2004 17:20:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7J0KKfF092226 for xorp-cvs@icir.org; Thu, 19 Aug 2004 00:20:20 GMT (envelope-from pavlin) Date: Thu, 19 Aug 2004 00:20:20 GMT From: Pavlin Radoslavov Message-Id: <200408190020.i7J0KKfF092226@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-19 00:20:19 UTC XORP CVS repository Modified files: rtrmgr conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh module_manager.cc Log message: De-constify methods ConfigTree::find_config_module() and ConfigTreeNode::find_config_module() Revision Changes Path 1.22 +3 -3 xorp/rtrmgr/conf_tree.cc 1.15 +2 -2 xorp/rtrmgr/conf_tree.hh 1.51 +4 -5 xorp/rtrmgr/conf_tree_node.cc 1.25 +2 -2 xorp/rtrmgr/conf_tree_node.hh 1.33 +18 -18 xorp/rtrmgr/module_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Thu Aug 19 00:44:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 17:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7J0j1AH047266 for ; Wed, 18 Aug 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0j1ZN017143 for ; Wed, 18 Aug 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J0j0jS012155; Wed, 18 Aug 2004 17:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J0i9jS012107 for ; Wed, 18 Aug 2004 17:44:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0i8ZN017137 for ; Wed, 18 Aug 2004 17:44:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J0i88M092627 for ; Wed, 18 Aug 2004 17:44:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7J0i8Jn092626 for xorp-cvs@icir.org; Thu, 19 Aug 2004 00:44:08 GMT (envelope-from pavlin) Date: Thu, 19 Aug 2004 00:44:08 GMT From: Pavlin Radoslavov Message-Id: <200408190044.i7J0i8Jn092626@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-19 00:44:08 UTC XORP CVS repository Modified files: rtrmgr main_rtrmgr.cc xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Rename XrlRtrmgrInterface::_conf_tree and XrlRtrmgrInterface::set_conf_tree() to XrlRtrmgrInterface::_master_config_tree and XrlRtrmgrInterface::set_master_config_tree() respectively. Revision Changes Path 1.51 +3 -3 xorp/rtrmgr/main_rtrmgr.cc 1.24 +24 -24 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.14 +3 -3 xorp/rtrmgr/xrl_rtrmgr_interface.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Thu Aug 19 01:01:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 18:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7J121IA050612 for ; Wed, 18 Aug 2004 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J121ZN017333 for ; Wed, 18 Aug 2004 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J121jS012641; Wed, 18 Aug 2004 18:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J11FjS012628 for ; Wed, 18 Aug 2004 18:01:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J11FZN017326 for ; Wed, 18 Aug 2004 18:01:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J11E8M092827 for ; Wed, 18 Aug 2004 18:01:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7J11Exc092826 for xorp-cvs@icir.org; Thu, 19 Aug 2004 01:01:14 GMT (envelope-from pavlin) Date: Thu, 19 Aug 2004 01:01:14 GMT From: Pavlin Radoslavov Message-Id: <200408190101.i7J11Exc092826@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-19 01:01:14 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc op_commands.hh xorpsh_main.cc Log message: Rename conf_tree and config_tree to slave_config_tree Revision Changes Path 1.34 +10 -9 xorp/rtrmgr/op_commands.cc 1.20 +3 -3 xorp/rtrmgr/op_commands.hh 1.30 +2 -2 xorp/rtrmgr/xorpsh_main.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Thu Aug 19 02:00:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 19:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7J211i8062305 for ; Wed, 18 Aug 2004 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J211ZN018082 for ; Wed, 18 Aug 2004 19:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J211jS014408; Wed, 18 Aug 2004 19:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J20MjS014344 for ; Wed, 18 Aug 2004 19:00:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J20LZN018079 for ; Wed, 18 Aug 2004 19:00:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J20L8M093434 for ; Wed, 18 Aug 2004 19:00:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7J20Lsf093433 for xorp-cvs@icir.org; Thu, 19 Aug 2004 02:00:21 GMT (envelope-from pavlin) Date: Thu, 19 Aug 2004 02:00:21 GMT From: Pavlin Radoslavov Message-Id: <200408190200.i7J20Lsf093433@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-19 02:00:21 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in conf_tree_node.cc conf_tree_node.hh main_rtrmgr.cc main_rtrmgr.hh module_manager.cc module_manager.hh test_module_manager.cc test_sample_config.cc Log message: Added a mechanism for the rtrmgr to restart a process that has unexpectedly died. Currently, the mechanism is based on observing the child process status of a processes that was forked by the rtrmgr. However, if the child process was killed by SIGTERM or SIGKILL, then that process is NOT restarted; the assumption is that the user really wanted that process killed. However, the restarting does not always work properly. E.g., if a process fails during reconfiguration via xorpsh, then the rtrmgr itself may coredump. One of the reasons for the coredump is because there are outstanding XRLs that haven't been completed (or failed) when the child process failed, and restarting is possible only if the previous state was clean. Fixing the problem requires some non-trivial changes to the rtrmgr. Therefore, the restarting mechanism is disabled by default, and can be enabled by the new "-r" rtrmgr command-line option. Ideally, we would use the finder to observe the XRL status of those processes, therefore in the future this mechanism may be removed. The code for restarting failed processes is based on a patch provided by "Ray Qiu " Submitted by: Ray Qiu Revision Changes Path 1.29 +5 -1 xorp/rtrmgr/Makefile.am 1.40 +14 -14 xorp/rtrmgr/Makefile.in 1.52 +15 -1 xorp/rtrmgr/conf_tree_node.cc 1.26 +2 -1 xorp/rtrmgr/conf_tree_node.hh 1.52 +28 -5 xorp/rtrmgr/main_rtrmgr.cc 1.9 +3 -1 xorp/rtrmgr/main_rtrmgr.hh 1.34 +54 -4 xorp/rtrmgr/module_manager.cc 1.23 +16 -2 xorp/rtrmgr/module_manager.hh 1.12 +5 -2 xorp/rtrmgr/test_module_manager.cc 1.17 +4 -2 xorp/rtrmgr/test_sample_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Thu Aug 19 02:08:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 18 Aug 2004 19:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7J291EL063845 for ; Wed, 18 Aug 2004 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J291ZN018213 for ; Wed, 18 Aug 2004 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J291jS014596; Wed, 18 Aug 2004 19:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7J28VjS014558 for ; Wed, 18 Aug 2004 19:08:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J28UZN018206 for ; Wed, 18 Aug 2004 19:08:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7J28U8M093563 for ; Wed, 18 Aug 2004 19:08:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7J28Ucg093562 for xorp-cvs@icir.org; Thu, 19 Aug 2004 02:08:30 GMT (envelope-from pavlin) Date: Thu, 19 Aug 2004 02:08:30 GMT From: Pavlin Radoslavov Message-Id: <200408190208.i7J28Ucg093562@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-19 02:08:30 UTC XORP CVS repository Modified files: . ERRATA Log message: Add an ERRATA entry for the new "-r" rtrmgr command-line switch. Revision Changes Path 1.16 +12 -1 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Fri Aug 20 15:57:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 Aug 2004 08:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7KFw1cL043510 for ; Fri, 20 Aug 2004 08:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7KFw1ZN051823 for ; Fri, 20 Aug 2004 08:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7KFw1Vm016692; Fri, 20 Aug 2004 08:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7KFvdVm016681 for ; Fri, 20 Aug 2004 08:57:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7KFvcZN051816 for ; Fri, 20 Aug 2004 08:57:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7KFvc8M026506 for ; Fri, 20 Aug 2004 08:57:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7KFvcu3026505 for xorp-cvs@icir.org; Fri, 20 Aug 2004 15:57:38 GMT (envelope-from atanu) Date: Fri, 20 Aug 2004 15:57:38 GMT From: Atanu Ghosh Message-Id: <200408201557.i7KFvcu3026505@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-08-20 15:57:38 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Add eXray to the NCIT entry. Revision Changes Path 1.12 +2 -1 www/html_src/mirrors.html 1.14 +3 -2 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Sun Aug 22 00:11:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Aug 2004 17:12:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7M0C0oh030265 for ; Sat, 21 Aug 2004 17:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0C0ZN073571 for ; Sat, 21 Aug 2004 17:12:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M0C0Vm000918; Sat, 21 Aug 2004 17:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M0BuVm000912 for ; Sat, 21 Aug 2004 17:11:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0BuZN073569 for ; Sat, 21 Aug 2004 17:11:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0Bu8M018678 for ; Sat, 21 Aug 2004 17:11:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7M0Buiu018677 for xorp-cvs@icir.org; Sun, 22 Aug 2004 00:11:56 GMT (envelope-from pavlin) Date: Sun, 22 Aug 2004 00:11:56 GMT From: Pavlin Radoslavov Message-Id: <200408220011.i7M0Buiu018677@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-22 00:11:55 UTC XORP CVS repository Modified files: libxorp debug.c Log message: Add "%s" as a formatting second parameter to fprintf(). I.e.: fprintf(stderr, my_string()) -> fprintf(stderr, "%s", my_string()) The reason is that if the string returned by my_string() itself contains the character "%s", then the result is unpredictable. Revision Changes Path 1.4 +2 -2 xorp/libxorp/debug.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Sun Aug 22 00:16:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Aug 2004 17:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7M0H14n031252 for ; Sat, 21 Aug 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0H1ZN073617 for ; Sat, 21 Aug 2004 17:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M0H1Vm001029; Sat, 21 Aug 2004 17:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M0G6Vm001007 for ; Sat, 21 Aug 2004 17:16:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0G6ZN073608 for ; Sat, 21 Aug 2004 17:16:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M0G68M024738 for ; Sat, 21 Aug 2004 17:16:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7M0G6b6024737 for xorp-cvs@icir.org; Sun, 22 Aug 2004 00:16:06 GMT (envelope-from pavlin) Date: Sun, 22 Aug 2004 00:16:06 GMT From: Pavlin Radoslavov Message-Id: <200408220016.i7M0G6b6024737@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-22 00:16:06 UTC XORP CVS repository Modified files: . configure configure.in Log message: Exclude compilation flag -Wnon-const-format, because it is problematic. This flag appears to exist only on earlier versions of gcc (e.g., gcc-2.95.x), and only on FreeBSD, but not on Linux. In addition, this flag is problematic, because if it is enabled we cannot use statements like "vfprintf(stderr, fmt, ap);" where "fmt" is a variable (e.g., defined as "const char *"). Revision Changes Path 1.116 +2 -2 xorp/configure 1.106 +10 -3 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Sun Aug 22 05:56:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 Aug 2004 22:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7M5v10I097107 for ; Sat, 21 Aug 2004 22:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M5v1ZN076192 for ; Sat, 21 Aug 2004 22:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M5v0Vm007134; Sat, 21 Aug 2004 22:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7M5urVm007126 for ; Sat, 21 Aug 2004 22:56:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M5urZN076190 for ; Sat, 21 Aug 2004 22:56:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7M5ur8M027164 for ; Sat, 21 Aug 2004 22:56:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7M5urkw027163 for xorp-cvs@icir.org; Sun, 22 Aug 2004 05:56:53 GMT (envelope-from pavlin) Date: Sun, 22 Aug 2004 05:56:53 GMT From: Pavlin Radoslavov Message-Id: <200408220556.i7M5urkw027163@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-22 05:56:53 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add a note for NetBSD to increase the limit of maximum open file descriptors, because the default value of 64 may be too small. Revision Changes Path 1.18 +8 -1 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Mon Aug 23 16:47:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Aug 2004 09:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7NGm1ec099082 for ; Mon, 23 Aug 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7NGm1ZN098168 for ; Mon, 23 Aug 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7NGm0Vm022969; Mon, 23 Aug 2004 09:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7NGlaVm022961 for ; Mon, 23 Aug 2004 09:47:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7NGlaZN098165 for ; Mon, 23 Aug 2004 09:47:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7NGla8M045891 for ; Mon, 23 Aug 2004 09:47:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7NGlaUv045890 for xorp-cvs@icir.org; Mon, 23 Aug 2004 16:47:36 GMT (envelope-from pavlin) Date: Mon, 23 Aug 2004 16:47:36 GMT From: Pavlin Radoslavov Message-Id: <200408231647.i7NGlaUv045890@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-23 16:47:36 UTC XORP CVS repository Modified files: pim README Log message: Change the Linux kernel options description: "enable FOO" -> "FOO=y" Revision Changes Path 1.26 +4 -4 xorp/pim/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 24 00:08:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 Aug 2004 17:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7O09157067597 for ; Mon, 23 Aug 2004 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.icsi.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7O091ZN003625 for ; Mon, 23 Aug 2004 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7O091Vm007043; Mon, 23 Aug 2004 17:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.icsi.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7O08WVm007029 for ; Mon, 23 Aug 2004 17:08:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7O08WZN003623 for ; Mon, 23 Aug 2004 17:08:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7O08W8M049490 for ; Mon, 23 Aug 2004 17:08:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7O08WUP049489 for xorp-cvs@icir.org; Tue, 24 Aug 2004 00:08:32 GMT (envelope-from pavlin) Date: Tue, 24 Aug 2004 00:08:32 GMT From: Pavlin Radoslavov Message-Id: <200408240008.i7O08WUP049489@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-24 00:08:32 UTC XORP CVS repository Modified files: fea fea.cc Log message: Bug fix: enable the CLI for the IPv6 mfea. Bug found by: "Darko Paric" Revision Changes Path 1.30 +3 -1 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 24 19:00:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Aug 2004 12:01:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7OJ1DqD051770 for ; Tue, 24 Aug 2004 12:01:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ1DZN018608 for ; Tue, 24 Aug 2004 12:01:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ1DDF007550; Tue, 24 Aug 2004 12:01:13 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ0oDF007497 for ; Tue, 24 Aug 2004 12:00:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ0oZN018599 for ; Tue, 24 Aug 2004 12:00:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ0o8M060012 for ; Tue, 24 Aug 2004 12:00:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7OJ0oMX060011 for xorp-cvs@icir.org; Tue, 24 Aug 2004 19:00:50 GMT (envelope-from pavlin) Date: Tue, 24 Aug 2004 19:00:50 GMT From: Pavlin Radoslavov Message-Id: <200408241900.i7OJ0oMX060011@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-24 19:00:50 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_vif.cc Log message: Remove a bogus line with a comment. Revision Changes Path 1.30 +1 -2 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 24 19:01:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Aug 2004 12:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7OJ21eU051954 for ; Tue, 24 Aug 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ21ZN018624 for ; Tue, 24 Aug 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ21DF007602; Tue, 24 Aug 2004 12:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ1mDF007592 for ; Tue, 24 Aug 2004 12:01:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ1mZN018622 for ; Tue, 24 Aug 2004 12:01:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ1m8M060068 for ; Tue, 24 Aug 2004 12:01:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7OJ1m5S060067 for xorp-cvs@icir.org; Tue, 24 Aug 2004 19:01:48 GMT (envelope-from pavlin) Date: Tue, 24 Aug 2004 19:01:48 GMT From: Pavlin Radoslavov Message-Id: <200408241901.i7OJ1m5S060067@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-24 19:01:48 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc Log message: Refactor the checking of the primary address per interface. Revision Changes Path 1.32 +46 -26 xorp/mld6igmp/mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 24 19:02:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Aug 2004 12:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7OJ31au052186 for ; Tue, 24 Aug 2004 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ31ZN018637 for ; Tue, 24 Aug 2004 12:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ31DF007656; Tue, 24 Aug 2004 12:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OJ2BDF007615 for ; Tue, 24 Aug 2004 12:02:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ2BZN018626 for ; Tue, 24 Aug 2004 12:02:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OJ2B8M060119 for ; Tue, 24 Aug 2004 12:02:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7OJ2BtB060118 for xorp-cvs@icir.org; Tue, 24 Aug 2004 19:02:11 GMT (envelope-from pavlin) Date: Tue, 24 Aug 2004 19:02:11 GMT From: Pavlin Radoslavov Message-Id: <200408241902.i7OJ2BtB060118@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-24 19:02:11 UTC XORP CVS repository Modified files: pim pim_node.cc Log message: Refactor the checking of the primary and domain-wide addresses per interface. Revision Changes Path 1.53 +51 -25 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 24 22:19:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Aug 2004 15:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7OMK1XL088555 for ; Tue, 24 Aug 2004 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OMK1ZN020764 for ; Tue, 24 Aug 2004 15:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OMK1DF014009; Tue, 24 Aug 2004 15:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7OMJvDF014002 for ; Tue, 24 Aug 2004 15:19:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OMJvZN020759 for ; Tue, 24 Aug 2004 15:19:57 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7OMJv8M076854 for ; Tue, 24 Aug 2004 15:19:57 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7OMJv0m076853 for xorp-cvs@icir.org; Tue, 24 Aug 2004 22:19:57 GMT (envelope-from atanu) Date: Tue, 24 Aug 2004 22:19:57 GMT From: Atanu Ghosh Message-Id: <200408242219.i7OMJv0m076853@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-24 22:19:56 UTC XORP CVS repository Modified files: rip port.cc Log message: Correct the updating of the route metric. Bug found by: Marko Zec Revision Changes Path 1.36 +2 -2 xorp/rip/port.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Wed Aug 25 06:23:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 Aug 2004 23:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7P6O104078766 for ; Tue, 24 Aug 2004 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7P6O1ZN026342 for ; Tue, 24 Aug 2004 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7P6O1NB027064; Tue, 24 Aug 2004 23:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7P6NqNB027056 for ; Tue, 24 Aug 2004 23:23:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7P6NqZN026339 for ; Tue, 24 Aug 2004 23:23:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7P6Nq8M080476 for ; Tue, 24 Aug 2004 23:23:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7P6NqDa080475 for xorp-cvs@icir.org; Wed, 25 Aug 2004 06:23:52 GMT (envelope-from pavlin) Date: Wed, 25 Aug 2004 06:23:52 GMT From: Pavlin Radoslavov Message-Id: <200408250623.i7P6NqDa080475@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-25 06:23:52 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc pim configure_pim pim_proto_register.cc Log message: Add explicit casting when directly accessing fields in "struct ip": ipvx.copy_out(ip->ip_src) -> ipvx.copy_out(static_cast(ip->ip_src)); The cast is a work-around because of a probably broken gcc-3.4.2 compiler on FreeBSD-5.3-x that gives the following error: g++ -DHAVE_CONFIG_H -I. -I. -I.. -I.. -g -W -Wall -Wwrite-strings -Wcast-qual -Werror -Wpointer-arith -Wcast-align -Woverloaded-virtual -ftemplate-depth-20 -c -o mfea_proto_comm.o `test -f mfea_proto_comm.cc || echo './'`mfea_proto_comm.cc mfea_proto_comm.cc: In member function `int ProtoComm::proto_socket_write(uint16_t, const IPvX&, const IPvX&, int, int, bool, const uint8_t*, size_t)': mfea_proto_comm.cc:1521: error: cannot bind packed field `ip->ip::ip_src' to `in_addr&' mfea_proto_comm.cc:1522: error: cannot bind packed field `ip->ip::ip_dst' to `in_addr&' The reason for the compilation error is because "struct ip" has been defined as __packed. Bug found by: Dikshie Revision Changes Path 1.19 +3 -3 xorp/fea/mfea_proto_comm.cc 1.35 +2 -2 xorp/pim/configure_pim 1.16 +3 -3 xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Wed Aug 25 21:36:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Aug 2004 14:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7PLb103035405 for ; Wed, 25 Aug 2004 14:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PLb0ZN038860 for ; Wed, 25 Aug 2004 14:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7PLb0NB023414; Wed, 25 Aug 2004 14:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7PLaFNB023377 for ; Wed, 25 Aug 2004 14:36:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PLaEZN038849 for ; Wed, 25 Aug 2004 14:36:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PLaE8M089893 for ; Wed, 25 Aug 2004 14:36:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7PLaEPQ089892 for xorp-cvs@icir.org; Wed, 25 Aug 2004 21:36:14 GMT (envelope-from pavlin) Date: Wed, 25 Aug 2004 21:36:14 GMT From: Pavlin Radoslavov Message-Id: <200408252136.i7PLaEPQ089892@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-25 21:36:14 UTC XORP CVS repository Modified files: . configure configure.in Log message: Fix a test whether net-snmp is available on the system: if net-snmp-config is not available, then skip the MIBs compilation. Revision Changes Path 1.117 +2 -1 xorp/configure 1.107 +3 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Wed Aug 25 22:09:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 Aug 2004 15:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7PMA1TA041845 for ; Wed, 25 Aug 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PMA1ZN039342 for ; Wed, 25 Aug 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7PMA1NB024812; Wed, 25 Aug 2004 15:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7PM9BNB024789 for ; Wed, 25 Aug 2004 15:09:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PM9BZN039328 for ; Wed, 25 Aug 2004 15:09:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7PM9B8M090234 for ; Wed, 25 Aug 2004 15:09:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7PM9BlQ090233 for xorp-cvs@icir.org; Wed, 25 Aug 2004 22:09:11 GMT (envelope-from pavlin) Date: Wed, 25 Aug 2004 22:09:11 GMT From: Pavlin Radoslavov Message-Id: <200408252209.i7PM9BlQ090233@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-08-25 22:09:11 UTC XORP CVS repository Modified files: . configure configure.in Log message: Fix the previous commit for checking whether net-snmp-config exists: remove the initialization of variable net_snmp_found, because if it is pre-set, then AC_CHECK_PROG(net_snmp_found, ...) does nothing. Revision Changes Path 1.118 +1 -1 xorp/configure 1.108 +2 -3 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:22 2005 Subject: No subject Tue Aug 31 01:25:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Aug 2004 18:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7V1Q1II019092 for ; Mon, 30 Aug 2004 18:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1Q1Ru025432 for ; Mon, 30 Aug 2004 18:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1Q0kf000194; Mon, 30 Aug 2004 18:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1Pukf000183 for ; Mon, 30 Aug 2004 18:25:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1PuRu025430 for ; Mon, 30 Aug 2004 18:25:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1Pu8M068434 for ; Mon, 30 Aug 2004 18:25:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7V1PtUa068433 for xorp-cvs@icir.org; Tue, 31 Aug 2004 01:25:55 GMT (envelope-from atanu) Date: Tue, 31 Aug 2004 01:25:55 GMT From: Atanu Ghosh Message-Id: <200408310125.i7V1PtUa068433@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-31 01:25:55 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: bgp/harness/test_rib1.sh -t test9 Was occasionally failing on multiprocessor Linux box (koala). This is a simple test, a route is originated by BGP for which the nexthop does resolve. A route is added then immediately deleted from the RIB. This sequence of events will cause the nexthop to resolve and a BGP add route should be generated followed by a BGP withdraw route. The test does not check for the generation of the packet only that BGP is still running at the end of the test. Unfortunately BGP was failing. BGP RIB <- route_info_invalid4 deregister_interest4 -> A route add followed by an immediate route delete is sent to the RIB. The RIB sends a message to BGP telling it that the route which has been deleted from the RIB is invalid. At the same time BGP is de-registering interest in this route. By the time the de-register reaches the RIB it no longer has a registration, it returns an error to BGP which considers any error fatal. The BGP process is unexpectedly de-registering interest in this next hop because in RibInTable::push_next_changed_nexthop(), a replace route has been replaced with a delete route followed by an add_route. The delete route causes this de-registration. This condition race has always existed. The nexthop code was already storing any premature invalidates that it received. When a de-register fails check the premature invalidate state. Revision Changes Path 1.32 +16 -3 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 01:34:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Aug 2004 18:35:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7V1Z0Wk020907 for ; Mon, 30 Aug 2004 18:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1Z0Ru025519 for ; Mon, 30 Aug 2004 18:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1Z0kf000443; Mon, 30 Aug 2004 18:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1YXkf000427 for ; Mon, 30 Aug 2004 18:34:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1YXRu025513 for ; Mon, 30 Aug 2004 18:34:33 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1YX8M068563 for ; Mon, 30 Aug 2004 18:34:33 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7V1YXXT068562 for xorp-cvs@icir.org; Tue, 31 Aug 2004 01:34:33 GMT (envelope-from atanu) Date: Tue, 31 Aug 2004 01:34:33 GMT From: Atanu Ghosh Message-Id: <200408310134.i7V1YXXT068562@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-31 01:34:33 UTC XORP CVS repository Modified files: rib rt_tab_register.cc Log message: fprintf -> XLOG_ERROR. Revision Changes Path 1.23 +2 -3 xorp/rib/rt_tab_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 01:43:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 30 Aug 2004 18:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7V1i1H2022760 for ; Mon, 30 Aug 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1i1Ru025603 for ; Mon, 30 Aug 2004 18:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1i1kf000673; Mon, 30 Aug 2004 18:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7V1hdkf000662 for ; Mon, 30 Aug 2004 18:43:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1hdRu025599 for ; Mon, 30 Aug 2004 18:43:39 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7V1hc8M068726 for ; Mon, 30 Aug 2004 18:43:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7V1hcv6068725 for xorp-cvs@icir.org; Tue, 31 Aug 2004 01:43:38 GMT (envelope-from atanu) Date: Tue, 31 Aug 2004 01:43:38 GMT From: Atanu Ghosh Message-Id: <200408310143.i7V1hcv6068725@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-08-31 01:43:38 UTC XORP CVS repository Modified files: rib rt_tab_register.cc Log message: Because of the deregister_interest and route_info_invalid race occasionally deregister_interest may fail in correctly fucntioning code. Add a comment explaining this. Revision Changes Path 1.24 +7 -1 xorp/rib/rt_tab_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 17:12:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 10:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VHD1LK005414 for ; Tue, 31 Aug 2004 10:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHD1Ru036727 for ; Tue, 31 Aug 2004 10:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHD1kf023199; Tue, 31 Aug 2004 10:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHCWkf023192 for ; Tue, 31 Aug 2004 10:12:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHCWRu036723 for ; Tue, 31 Aug 2004 10:12:32 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHCW8M078415 for ; Tue, 31 Aug 2004 10:12:32 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VHCWJE078414 for xorp-cvs@icir.org; Tue, 31 Aug 2004 17:12:32 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 17:12:32 GMT From: Bruce Simpson Message-Id: <200408311712.i7VHCWJE078414@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 17:12:32 UTC XORP CVS repository Modified files: . configure.in Log message: Add autoconf checks for: PF_KEY_V2, IPF, IPFW and IPTABLES. Revision Changes Path 1.109 +119 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 17:31:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 10:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VHW1P2009134 for ; Tue, 31 Aug 2004 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHW1Ru036981 for ; Tue, 31 Aug 2004 10:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHW1kf023760; Tue, 31 Aug 2004 10:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHVJkf023739 for ; Tue, 31 Aug 2004 10:31:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHVJRu036974 for ; Tue, 31 Aug 2004 10:31:19 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHVJ8M078796 for ; Tue, 31 Aug 2004 10:31:19 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VHVJ3l078795 for xorp-cvs@icir.org; Tue, 31 Aug 2004 17:31:19 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 17:31:19 GMT From: Bruce Simpson Message-Id: <200408311731.i7VHVJ3l078795@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 17:31:19 UTC XORP CVS repository Added files: etc/templates firewall.tp firewall.cmds xrl/interfaces firewall.xif Log message: Initial import of firewall XRL interface, template, and router manager command files. Do not connect to the build yet. Revision Changes Path 1.1 +7 -0 xorp/etc/templates/firewall.cmds (new) 1.1 +161 -0 xorp/etc/templates/firewall.tp (new) 1.1 +226 -0 xorp/xrl/interfaces/firewall.xif (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 17:43:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 10:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VHi1xO011510 for ; Tue, 31 Aug 2004 10:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHi1Ru037097 for ; Tue, 31 Aug 2004 10:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHi1kf024088; Tue, 31 Aug 2004 10:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHhdkf024072 for ; Tue, 31 Aug 2004 10:43:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHhdRu037093 for ; Tue, 31 Aug 2004 10:43:39 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHhd8M078935 for ; Tue, 31 Aug 2004 10:43:39 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VHhdMK078934 for xorp-cvs@icir.org; Tue, 31 Aug 2004 17:43:39 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 17:43:39 GMT From: Bruce Simpson Message-Id: <200408311743.i7VHhdMK078934@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 17:43:39 UTC XORP CVS repository Added files: fea firewall.hh firewall_dummy.hh Log message: Initial import of machine-independent (MI) firewall support code. Include a low-level provider named "dummy" which does nothing, but pretends to load firewall rules. Do not connect to the build yet. Revision Changes Path 1.1 +216 -0 xorp/fea/firewall.hh (new) 1.1 +111 -0 xorp/fea/firewall_dummy.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 17:47:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 10:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VHm1vQ012516 for ; Tue, 31 Aug 2004 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHm1Ru037167 for ; Tue, 31 Aug 2004 10:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHm0kf024233; Tue, 31 Aug 2004 10:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VHlTkf024209 for ; Tue, 31 Aug 2004 10:47:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHlTRu037155 for ; Tue, 31 Aug 2004 10:47:29 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VHlT8M079036 for ; Tue, 31 Aug 2004 10:47:29 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VHlTek079035 for xorp-cvs@icir.org; Tue, 31 Aug 2004 17:47:29 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 17:47:29 GMT From: Bruce Simpson Message-Id: <200408311747.i7VHlTek079035@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 17:47:29 UTC XORP CVS repository Added files: fea firewall_ipf.cc firewall_ipf.hh firewall_ipfw.cc firewall_ipfw.hh firewall_iptables.hh Log message: Initial import of machine-dependent (MD) firewall support code for IP Filter (multiplatform), IPFW (FreeBSD), IPTABLES (Linux). PF support to follow. Do not connect any of this to the build yet, as it is subject to further refinement. Revision Changes Path 1.1 +279 -0 xorp/fea/firewall_ipf.cc (new) 1.1 +114 -0 xorp/fea/firewall_ipf.hh (new) 1.1 +368 -0 xorp/fea/firewall_ipfw.cc (new) 1.1 +151 -0 xorp/fea/firewall_ipfw.hh (new) 1.1 +110 -0 xorp/fea/firewall_iptables.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 19:28:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 12:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VJT1hO048904 for ; Tue, 31 Aug 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJT1Ru038212 for ; Tue, 31 Aug 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJT1kf027154; Tue, 31 Aug 2004 12:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJSokf027148 for ; Tue, 31 Aug 2004 12:28:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJSoRu038209 for ; Tue, 31 Aug 2004 12:28:50 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJSn8M080067 for ; Tue, 31 Aug 2004 12:28:49 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VJSnsK080066 for xorp-cvs@icir.org; Tue, 31 Aug 2004 19:28:49 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 19:28:49 GMT From: Bruce Simpson Message-Id: <200408311928.i7VJSnsK080066@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 19:28:49 UTC XORP CVS repository Modified files: . configure.in Log message: Fix AC_TRY_COMPILE blocks; they require a separate [-escaped block for include files and the body of the test. Substitute _ipfname which crept in from firewall_ipf.cc with IPL_NAME. Submitted by: pavlin Revision Changes Path 1.110 +8 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 19:31:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 12:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VJW1FF049643 for ; Tue, 31 Aug 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJW1Ru038265 for ; Tue, 31 Aug 2004 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJW1kf027265; Tue, 31 Aug 2004 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJVskf027255 for ; Tue, 31 Aug 2004 12:31:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJVsRu038261 for ; Tue, 31 Aug 2004 12:31:54 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJVs8M080176 for ; Tue, 31 Aug 2004 12:31:54 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VJVsT3080175 for xorp-cvs@icir.org; Tue, 31 Aug 2004 19:31:54 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 19:31:54 GMT From: Bruce Simpson Message-Id: <200408311931.i7VJVsT3080175@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 19:31:54 UTC XORP CVS repository Modified files: . configure.in Log message: Fix another AC_TRY_COMPILE snafu of mine. It adds its own main() block. Revision Changes Path 1.111 +1 -10 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 19:33:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 12:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VJY2wY050120 for ; Tue, 31 Aug 2004 12:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJY1Ru038287 for ; Tue, 31 Aug 2004 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJY1kf027335; Tue, 31 Aug 2004 12:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VJXQkf027300 for ; Tue, 31 Aug 2004 12:33:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJXQRu038282 for ; Tue, 31 Aug 2004 12:33:26 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VJXQ8M080236 for ; Tue, 31 Aug 2004 12:33:26 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VJXQOT080235 for xorp-cvs@icir.org; Tue, 31 Aug 2004 19:33:26 GMT (envelope-from bms) Date: Tue, 31 Aug 2004 19:33:26 GMT From: Bruce Simpson Message-Id: <200408311933.i7VJXQOT080235@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-08-31 19:33:26 UTC XORP CVS repository Modified files: . config.h.in configure Log message: Regen (via ./bootstrap). Revision Changes Path 1.35 +12 -0 xorp/config.h.in 1.119 +296 -0 xorp/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 23:33:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 16:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VNY2IA022801 for ; Tue, 31 Aug 2004 16:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNY1Ru041056 for ; Tue, 31 Aug 2004 16:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VNY1kf004258; Tue, 31 Aug 2004 16:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VNXtkf004237 for ; Tue, 31 Aug 2004 16:33:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNXtRu041054 for ; Tue, 31 Aug 2004 16:33:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNXt8M082563 for ; Tue, 31 Aug 2004 16:33:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VNXtl1082562 for xorp-cvs@icir.org; Tue, 31 Aug 2004 23:33:55 GMT (envelope-from pavlin) Date: Tue, 31 Aug 2004 23:33:55 GMT From: Pavlin Radoslavov Message-Id: <200408312333.i7VNXtl1082562@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2004-08-31 23:33:55 UTC XORP CVS repository Modified files: . index.html html_src index.html Log message: * Remove the (July 8, 2004) date for the 1.0 release. * "live cd" -> "Live CD" (for consistency with the text everywhere else). Approved by: Atanu Ghosh Revision Changes Path 1.10 +2 -2 www/html_src/index.html 1.60 +5 -5 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Tue Aug 31 23:53:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 16:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i7VNs1HO040152 for ; Tue, 31 Aug 2004 16:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNs1Ru041289 for ; Tue, 31 Aug 2004 16:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VNs1kf004823; Tue, 31 Aug 2004 16:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i7VNrJkf004804 for ; Tue, 31 Aug 2004 16:53:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNrJRu041282 for ; Tue, 31 Aug 2004 16:53:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i7VNrI8M082896 for ; Tue, 31 Aug 2004 16:53:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i7VNrI8C082895 for xorp-cvs@icir.org; Tue, 31 Aug 2004 23:53:18 GMT (envelope-from pavlin) Date: Tue, 31 Aug 2004 23:53:18 GMT From: Pavlin Radoslavov Message-Id: <200408312353.i7VNrI8C082895@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2004-08-31 23:53:18 UTC XORP CVS repository Modified files: testbed/config config10.xt Log message: Add a link between xorp3 and xorp4 Revision Changes Path 1.4 +11 -10 other/testbed/config/config10.xt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 00:19:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 Aug 2004 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i810K1Z3046408 for ; Tue, 31 Aug 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i810K1Ru041607 for ; Tue, 31 Aug 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i810K1kf005624; Tue, 31 Aug 2004 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i810JAkf005600 for ; Tue, 31 Aug 2004 17:19:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i810JARu041595 for ; Tue, 31 Aug 2004 17:19:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i810JA8M083315 for ; Tue, 31 Aug 2004 17:19:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i810J9Kx083314 for xorp-cvs@icir.org; Wed, 1 Sep 2004 00:19:10 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 00:19:10 GMT From: Pavlin Radoslavov Message-Id: <200409010019.i810J9Kx083314@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2004-09-01 00:19:09 UTC XORP CVS repository Modified files: testbed/config config10.xt Log message: Replace the link between xorp4 and xorp3 with a link between xorp4 and xorp7 Revision Changes Path 1.5 +10 -10 other/testbed/config/config10.xt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:10:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81IB1jl069387 for ; Wed, 1 Sep 2004 11:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IB0Ru056610 for ; Wed, 1 Sep 2004 11:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IB0kf006234; Wed, 1 Sep 2004 11:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IAJkf006206 for ; Wed, 1 Sep 2004 11:10:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IAIRu056604 for ; Wed, 1 Sep 2004 11:10:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IAI8M093475 for ; Wed, 1 Sep 2004 11:10:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IAIVi093474 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:10:18 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:10:18 GMT From: Pavlin Radoslavov Message-Id: <200409011810.i81IAIVi093474@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:10:18 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: When starting operation on a netlink or routing socket, if the socket was already open, then return its value rather then an error. Revision Changes Path 1.18 +3 -6 xorp/fea/netlink_socket.cc 1.10 +3 -6 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:11:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81IC11n069594 for ; Wed, 1 Sep 2004 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IC1Ru056624 for ; Wed, 1 Sep 2004 11:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IC1kf006274; Wed, 1 Sep 2004 11:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IB1kf006237 for ; Wed, 1 Sep 2004 11:11:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IB0Ru056611 for ; Wed, 1 Sep 2004 11:11:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IB08M093526 for ; Wed, 1 Sep 2004 11:11:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IB0Nn093525 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:11:00 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:11:00 GMT From: Pavlin Radoslavov Message-Id: <200409011811.i81IB0Nn093525@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:11:00 UTC XORP CVS repository Modified files: fea fticonfig.hh Log message: Nits in some of the comments. Revision Changes Path 1.18 +31 -19 xorp/fea/fticonfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:12:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81ID11j069840 for ; Wed, 1 Sep 2004 11:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81ID1Ru056636 for ; Wed, 1 Sep 2004 11:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81ID1kf006317; Wed, 1 Sep 2004 11:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81ICQkf006291 for ; Wed, 1 Sep 2004 11:12:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81ICQRu056632 for ; Wed, 1 Sep 2004 11:12:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81ICP8M093639 for ; Wed, 1 Sep 2004 11:12:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81ICPc1093638 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:12:25 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:12:25 GMT From: Pavlin Radoslavov Message-Id: <200409011812.i81ICPc1093638@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:12:25 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc Log message: If attempt to start an entity that is already running, then return success rather than error. Revision Changes Path 1.24 +4 -1 xorp/fea/fticonfig.cc 1.8 +4 -1 xorp/fea/fticonfig_entry_get_dummy.cc 1.21 +4 -1 xorp/fea/fticonfig_entry_get_netlink.cc 1.19 +4 -1 xorp/fea/fticonfig_entry_get_rtsock.cc 1.6 +4 -1 xorp/fea/fticonfig_entry_observer_dummy.cc 1.7 +4 -1 xorp/fea/fticonfig_entry_observer_netlink.cc 1.6 +4 -1 xorp/fea/fticonfig_entry_observer_rtsock.cc 1.6 +4 -1 xorp/fea/fticonfig_entry_set_dummy.cc 1.11 +4 -1 xorp/fea/fticonfig_entry_set_netlink.cc 1.18 +4 -1 xorp/fea/fticonfig_entry_set_rtsock.cc 1.7 +4 -1 xorp/fea/fticonfig_table_get_dummy.cc 1.20 +4 -1 xorp/fea/fticonfig_table_get_netlink.cc 1.13 +4 -1 xorp/fea/fticonfig_table_get_sysctl.cc 1.6 +4 -1 xorp/fea/fticonfig_table_observer_dummy.cc 1.8 +4 -1 xorp/fea/fticonfig_table_observer_netlink.cc 1.10 +4 -1 xorp/fea/fticonfig_table_observer_rtsock.cc 1.6 +4 -1 xorp/fea/fticonfig_table_set_dummy.cc 1.5 +4 -1 xorp/fea/fticonfig_table_set_netlink.cc 1.8 +4 -1 xorp/fea/fticonfig_table_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:17:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81II1ue070828 for ; Wed, 1 Sep 2004 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81II1Ru056743 for ; Wed, 1 Sep 2004 11:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81II1kf006536; Wed, 1 Sep 2004 11:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IH3kf006482 for ; Wed, 1 Sep 2004 11:17:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IH3Ru056721 for ; Wed, 1 Sep 2004 11:17:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IH38M093881 for ; Wed, 1 Sep 2004 11:17:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IH3tP093880 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:17:03 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:17:03 GMT From: Pavlin Radoslavov Message-Id: <200409011817.i81IH3tP093880@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:17:03 UTC XORP CVS repository Modified files: fea ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: If attempt to start an entity that is already running, then return success rather than error. Revision Changes Path 1.7 +4 -1 xorp/fea/ifconfig_get_dummy.cc 1.8 +4 -1 xorp/fea/ifconfig_get_getifaddrs.cc 1.10 +4 -1 xorp/fea/ifconfig_get_ioctl.cc 1.10 +4 -1 xorp/fea/ifconfig_get_netlink.cc 1.17 +4 -1 xorp/fea/ifconfig_get_proc_linux.cc 1.8 +4 -1 xorp/fea/ifconfig_get_sysctl.cc 1.6 +4 -1 xorp/fea/ifconfig_observer_dummy.cc 1.9 +4 -1 xorp/fea/ifconfig_observer_netlink.cc 1.8 +4 -1 xorp/fea/ifconfig_observer_rtsock.cc 1.9 +4 -1 xorp/fea/ifconfig_set_dummy.cc 1.25 +4 -1 xorp/fea/ifconfig_set_ioctl.cc 1.11 +4 -1 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:18:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81IJ10K071032 for ; Wed, 1 Sep 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IJ1Ru056763 for ; Wed, 1 Sep 2004 11:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IJ0kf006583; Wed, 1 Sep 2004 11:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IIWkf006563 for ; Wed, 1 Sep 2004 11:18:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IIWRu056759 for ; Wed, 1 Sep 2004 11:18:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IIW8M093974 for ; Wed, 1 Sep 2004 11:18:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IIW9O093973 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:18:32 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:18:32 GMT From: Pavlin Radoslavov Message-Id: <200409011818.i81IIW9O093973@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:18:32 UTC XORP CVS repository Modified files: fea ifconfig.hh Log message: Nits in some of the comments. Revision Changes Path 1.28 +14 -8 xorp/fea/ifconfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:23 2005 Subject: No subject Wed Sep 1 18:20:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81IL16F071435 for ; Wed, 1 Sep 2004 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IL1Ru056810 for ; Wed, 1 Sep 2004 11:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IL0kf006650; Wed, 1 Sep 2004 11:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IKTkf006631 for ; Wed, 1 Sep 2004 11:20:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IKTRu056808 for ; Wed, 1 Sep 2004 11:20:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IKT8M094102 for ; Wed, 1 Sep 2004 11:20:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IKTSX094101 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:20:29 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:20:29 GMT From: Pavlin Radoslavov Message-Id: <200409011820.i81IKTSX094101@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:20:29 UTC XORP CVS repository Modified files: fea ifconfig.cc Log message: If attempt to start an entity that is already running, then return success rather than error. Revision Changes Path 1.29 +4 -1 xorp/fea/ifconfig.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 18:22:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 11:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81IN1co071832 for ; Wed, 1 Sep 2004 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IN0Ru056842 for ; Wed, 1 Sep 2004 11:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IN0kf006719; Wed, 1 Sep 2004 11:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81IMbkf006709 for ; Wed, 1 Sep 2004 11:22:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IMbRu056836 for ; Wed, 1 Sep 2004 11:22:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81IMb8M094213 for ; Wed, 1 Sep 2004 11:22:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81IMbcL094212 for xorp-cvs@icir.org; Wed, 1 Sep 2004 18:22:37 GMT (envelope-from pavlin) Date: Wed, 1 Sep 2004 18:22:37 GMT From: Pavlin Radoslavov Message-Id: <200409011822.i81IMbcL094212@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-01 18:22:37 UTC XORP CVS repository Modified files: fea ifconfig_get.cc ifconfig_get.hh Log message: Add new method IfConfigGet::register_ifc_secondary() to register secondary methods to get network interface inforation. Revision Changes Path 1.5 +7 -1 xorp/fea/ifconfig_get.cc 1.14 +2 -1 xorp/fea/ifconfig_get.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 20:22:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 13:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81KN1vw095093 for ; Wed, 1 Sep 2004 13:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81KN1Ru058210 for ; Wed, 1 Sep 2004 13:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81KN0kf010631; Wed, 1 Sep 2004 13:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81KMEkf010613 for ; Wed, 1 Sep 2004 13:22:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81KMERu058202 for ; Wed, 1 Sep 2004 13:22:14 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81KME8M009439 for ; Wed, 1 Sep 2004 13:22:14 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81KMEBG009438 for xorp-cvs@icir.org; Wed, 1 Sep 2004 20:22:14 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 20:22:14 GMT From: Bruce Simpson Message-Id: <200409012022.i81KMEBG009438@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 20:22:13 UTC XORP CVS repository Modified files: etc/templates firewall.tp Log message: Don't specify a target name of 'fea'; this target name is valid for the existing FEA XRL target only. Instead, use a target name of 'firewall'. Fix a typo (missing :). Submitted by: pavlin Revision Changes Path 1.2 +9 -9 xorp/etc/templates/firewall.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 20:36:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 13:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81Kb1lc097835 for ; Wed, 1 Sep 2004 13:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Kb1Ru058369 for ; Wed, 1 Sep 2004 13:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Kb1kf011123; Wed, 1 Sep 2004 13:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Kabkf011103 for ; Wed, 1 Sep 2004 13:36:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81KabRu058365 for ; Wed, 1 Sep 2004 13:36:37 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Kab8M009605 for ; Wed, 1 Sep 2004 13:36:37 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81KabEs009604 for xorp-cvs@icir.org; Wed, 1 Sep 2004 20:36:37 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 20:36:37 GMT From: Bruce Simpson Message-Id: <200409012036.i81KabEs009604@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 20:36:37 UTC XORP CVS repository Modified files: . configure.in Log message: Fix problem with the IPFW test on FreeBSD: include first. Revision Changes Path 1.112 +2 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 20:38:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 13:39:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81Kd08J098218 for ; Wed, 1 Sep 2004 13:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Kd0Ru058383 for ; Wed, 1 Sep 2004 13:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Kd0kf011214; Wed, 1 Sep 2004 13:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Kc5kf011174 for ; Wed, 1 Sep 2004 13:38:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Kc5Ru058379 for ; Wed, 1 Sep 2004 13:38:05 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Kc58M009679 for ; Wed, 1 Sep 2004 13:38:05 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81Kc5YA009678 for xorp-cvs@icir.org; Wed, 1 Sep 2004 20:38:05 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 20:38:05 GMT From: Bruce Simpson Message-Id: <200409012038.i81Kc5YA009678@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 20:38:04 UTC XORP CVS repository Modified files: . configure Log message: Regen. Revision Changes Path 1.120 +1 -0 xorp/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 21:20:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 14:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81LL12I006639 for ; Wed, 1 Sep 2004 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LL1Ru058949 for ; Wed, 1 Sep 2004 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81LL1kf012648; Wed, 1 Sep 2004 14:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81LKWkf012621 for ; Wed, 1 Sep 2004 14:20:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LKWRu058940 for ; Wed, 1 Sep 2004 14:20:32 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LKV8M018668 for ; Wed, 1 Sep 2004 14:20:31 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81LKVAJ018667 for xorp-cvs@icir.org; Wed, 1 Sep 2004 21:20:31 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 21:20:31 GMT From: Bruce Simpson Message-Id: <200409012120.i81LKVAJ018667@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 21:20:31 UTC XORP CVS repository Modified files: . configure.in Log message: Fix IPF build environment check. Revision Changes Path 1.113 +5 -3 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 21:20:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 14:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81LL3LW006654 for ; Wed, 1 Sep 2004 14:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LL3Ru058951 for ; Wed, 1 Sep 2004 14:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81LL3kf012659; Wed, 1 Sep 2004 14:21:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81LKlkf012637 for ; Wed, 1 Sep 2004 14:20:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LKkRu058945 for ; Wed, 1 Sep 2004 14:20:46 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81LKk8M018744 for ; Wed, 1 Sep 2004 14:20:46 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81LKkBX018743 for xorp-cvs@icir.org; Wed, 1 Sep 2004 21:20:46 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 21:20:46 GMT From: Bruce Simpson Message-Id: <200409012120.i81LKkBX018743@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 21:20:46 UTC XORP CVS repository Modified files: . configure Log message: Regen. Revision Changes Path 1.121 +4 -2 xorp/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 22:44:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 15:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81Mj12J038485 for ; Wed, 1 Sep 2004 15:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Mj1Ru059919 for ; Wed, 1 Sep 2004 15:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Mj0kf015369; Wed, 1 Sep 2004 15:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81MiEkf015333 for ; Wed, 1 Sep 2004 15:44:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81MiDRu059912 for ; Wed, 1 Sep 2004 15:44:13 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81MiD8M033671 for ; Wed, 1 Sep 2004 15:44:13 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81MiDZ8033670 for xorp-cvs@icir.org; Wed, 1 Sep 2004 22:44:13 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 22:44:13 GMT From: Bruce Simpson Message-Id: <200409012244.i81MiDZ8033670@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 22:44:13 UTC XORP CVS repository Modified files: . configure configure.in Log message: Add a test for PF header compilability. Regen. Revision Changes Path 1.122 +73 -0 xorp/configure 1.114 +27 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 23:30:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 16:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81NV1iO048343 for ; Wed, 1 Sep 2004 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NV1Ru060407 for ; Wed, 1 Sep 2004 16:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81NV1kf016620; Wed, 1 Sep 2004 16:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81NUjkf016610 for ; Wed, 1 Sep 2004 16:30:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NUjRu060405 for ; Wed, 1 Sep 2004 16:30:45 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NUi8M042474 for ; Wed, 1 Sep 2004 16:30:44 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81NUi3k042473 for xorp-cvs@icir.org; Wed, 1 Sep 2004 23:30:44 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 23:30:44 GMT From: Bruce Simpson Message-Id: <200409012330.i81NUi3k042473@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 23:30:44 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Fix this file so that it actually compiles. Change the firewall tables to be vectors of pointers to rules such that we can use run-time polymorphism. Revision Changes Path 1.2 +16 -12 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 23:47:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 16:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81Nm12A052251 for ; Wed, 1 Sep 2004 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Nm1Ru060602 for ; Wed, 1 Sep 2004 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Nm1kf017125; Wed, 1 Sep 2004 16:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81NlHkf017104 for ; Wed, 1 Sep 2004 16:47:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NlGRu060595 for ; Wed, 1 Sep 2004 16:47:16 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NlG8M044939 for ; Wed, 1 Sep 2004 16:47:16 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81NlGeq044938 for xorp-cvs@icir.org; Wed, 1 Sep 2004 23:47:16 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 23:47:16 GMT From: Bruce Simpson Message-Id: <200409012347.i81NlGeq044938@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 23:47:16 UTC XORP CVS repository Modified files: fea firewall_dummy.hh Log message: Fix compilation. Revision Changes Path 1.2 +16 -11 xorp/fea/firewall_dummy.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Wed Sep 1 23:52:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 16:53:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i81Nr0M3053411 for ; Wed, 1 Sep 2004 16:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81Nr0Ru060668 for ; Wed, 1 Sep 2004 16:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81Nr0kf017271; Wed, 1 Sep 2004 16:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i81NqLkf017237 for ; Wed, 1 Sep 2004 16:52:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NqLRu060664 for ; Wed, 1 Sep 2004 16:52:21 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i81NqL8M045646 for ; Wed, 1 Sep 2004 16:52:21 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i81NqL2q045645 for xorp-cvs@icir.org; Wed, 1 Sep 2004 23:52:21 GMT (envelope-from bms) Date: Wed, 1 Sep 2004 23:52:21 GMT From: Bruce Simpson Message-Id: <200409012352.i81NqL2q045645@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-01 23:52:21 UTC XORP CVS repository Modified files: . config.h.in Log message: Catch up with PF test addition. Revision Changes Path 1.36 +3 -0 xorp/config.h.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 01:55:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 18:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i821u1V1079623 for ; Wed, 1 Sep 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i821u1Ru061953 for ; Wed, 1 Sep 2004 18:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i821u1kf020103; Wed, 1 Sep 2004 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i821tdkf020084 for ; Wed, 1 Sep 2004 18:55:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i821tcRu061946 for ; Wed, 1 Sep 2004 18:55:38 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i821tc8M048347 for ; Wed, 1 Sep 2004 18:55:38 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i821tcKj048346 for xorp-cvs@icir.org; Thu, 2 Sep 2004 01:55:38 GMT (envelope-from bms) Date: Thu, 2 Sep 2004 01:55:38 GMT From: Bruce Simpson Message-Id: <200409020155.i821tcKj048346@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-02 01:55:38 UTC XORP CVS repository Modified files: fea firewall_ipf.hh Log message: Fix compilation. No functional changes. Revision Changes Path 1.2 +16 -12 xorp/fea/firewall_ipf.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 01:55:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 18:56:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i821u3m1079658 for ; Wed, 1 Sep 2004 18:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i821u3Ru061955 for ; Wed, 1 Sep 2004 18:56:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i821u2kf020114; Wed, 1 Sep 2004 18:56:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i821thkf020089 for ; Wed, 1 Sep 2004 18:55:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i821thRu061950 for ; Wed, 1 Sep 2004 18:55:43 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i821th8M048387 for ; Wed, 1 Sep 2004 18:55:43 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i821thWx048386 for xorp-cvs@icir.org; Thu, 2 Sep 2004 01:55:43 GMT (envelope-from bms) Date: Thu, 2 Sep 2004 01:55:43 GMT From: Bruce Simpson Message-Id: <200409020155.i821thWx048386@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-02 01:55:43 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Fix compilation. No functional changes. Revision Changes Path 1.2 +13 -11 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 01:59:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82201JG080418 for ; Wed, 1 Sep 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82201Ru061993 for ; Wed, 1 Sep 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82201kf020211; Wed, 1 Sep 2004 19:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i821xJkf020175 for ; Wed, 1 Sep 2004 18:59:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i821xJRu061980 for ; Wed, 1 Sep 2004 18:59:19 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i821xJ8M048505 for ; Wed, 1 Sep 2004 18:59:19 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i821xJcs048504 for xorp-cvs@icir.org; Thu, 2 Sep 2004 01:59:19 GMT (envelope-from bms) Date: Thu, 2 Sep 2004 01:59:19 GMT From: Bruce Simpson Message-Id: <200409020159.i821xJcs048504@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-02 01:59:19 UTC XORP CVS repository Modified files: fea firewall_iptables.hh Log message: Fix compilation. No functional changes. Revision Changes Path 1.2 +15 -10 xorp/fea/firewall_iptables.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 02:34:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i822Z1eU087060 for ; Wed, 1 Sep 2004 19:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822Z1Ru062297 for ; Wed, 1 Sep 2004 19:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822Z1kf020893; Wed, 1 Sep 2004 19:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822Yfkf020881 for ; Wed, 1 Sep 2004 19:34:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822YfRu062290 for ; Wed, 1 Sep 2004 19:34:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i822Ye8M048843 for ; Wed, 1 Sep 2004 19:34:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i822YeIe048842 for xorp-cvs@icir.org; Thu, 2 Sep 2004 02:34:40 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 02:34:40 GMT From: Pavlin Radoslavov Message-Id: <200409020234.i822YeIe048842@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 02:34:40 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c comm_user.c test_comm.c Log message: * Add is_blocking flag argument to number of functions to indicate whether the socket should be blocking or non-blocking * Defined new flags COMM_SOCK_BLOCKING and COMM_SOCK_NONBLOCKING * Rename flag ADDR_PORT_REUSE_FLAG to COMM_SOCK_ADDR_PORT_REUSE, and define a new flag COMM_SOCK_ADDR_PORT_DONTREUSE * Refactor the implementation of comm_sock_connect4 and comm_sock_connect6 such that we do check the return value of connect(): - if the socket is blocking, and if connect() fails, then we return success. - if the socket is non-blocking, and if connect() fails, but the failure error is EINPROGRESS (i.e., the connection cannot be completed immediately), then we return success; for all other errors of connect(), we return failure. Revision Changes Path 1.9 +71 -27 xorp/libcomm/comm_api.h 1.10 +48 -37 xorp/libcomm/comm_sock.c 1.7 +68 -35 xorp/libcomm/comm_user.c 1.6 +8 -6 xorp/libcomm/test_comm.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 02:36:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i822b1YB087460 for ; Wed, 1 Sep 2004 19:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822b1Ru062339 for ; Wed, 1 Sep 2004 19:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822b1kf020965; Wed, 1 Sep 2004 19:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822b0kf020959 for ; Wed, 1 Sep 2004 19:37:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822b0Ru062337 for ; Wed, 1 Sep 2004 19:37:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i822ax8M048964 for ; Wed, 1 Sep 2004 19:36:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i822axtd048963 for xorp-cvs@icir.org; Thu, 2 Sep 2004 02:36:59 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 02:36:59 GMT From: Pavlin Radoslavov Message-Id: <200409020236.i822axtd048963@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 02:36:59 UTC XORP CVS repository Modified files: fea xrl_socket_server.cc Log message: Add the new "is_blocking" argument to the relevant comm_foo() libcomm functions. For now the argument value is always COMM_SOCK_NONBLOCKING, for consistency with the default value of the original libcomm implementation. Revision Changes Path 1.16 +19 -13 xorp/fea/xrl_socket_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 02:37:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i822c1sn087661 for ; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822c1Ru062351 for ; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822c1kf021002; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822bTkf020978 for ; Wed, 1 Sep 2004 19:37:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822bSRu062347 for ; Wed, 1 Sep 2004 19:37:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i822bS8M049020 for ; Wed, 1 Sep 2004 19:37:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i822bSYd049019 for xorp-cvs@icir.org; Thu, 2 Sep 2004 02:37:28 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 02:37:28 GMT From: Pavlin Radoslavov Message-Id: <200409020237.i822bSYd049019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 02:37:28 UTC XORP CVS repository Modified files: cli cli_node_net.cc Log message: Add the new "is_blocking" argument to the relevant comm_foo() libcomm functions. For now the argument value is always COMM_SOCK_NONBLOCKING, for consistency with the default value of the original libcomm implementation. Revision Changes Path 1.30 +3 -3 xorp/cli/cli_node_net.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 02:38:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i822d1Os087870 for ; Wed, 1 Sep 2004 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822d1Ru062363 for ; Wed, 1 Sep 2004 19:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822d0kf021040; Wed, 1 Sep 2004 19:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822c1kf021010 for ; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822c1Ru062353 for ; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i822c18M049075 for ; Wed, 1 Sep 2004 19:38:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i822c1ep049074 for xorp-cvs@icir.org; Thu, 2 Sep 2004 02:38:01 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 02:38:01 GMT From: Pavlin Radoslavov Message-Id: <200409020238.i822c1ep049074@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 02:38:01 UTC XORP CVS repository Modified files: libxipc finder_tcp.cc finder_tcp_messenger.cc test_finder_tcp.cc Log message: Add the new "is_blocking" argument to the relevant comm_foo() libcomm functions. For now the argument value is always COMM_SOCK_NONBLOCKING, for consistency with the default value of the original libcomm implementation. Revision Changes Path 1.19 +2 -2 xorp/libxipc/finder_tcp.cc 1.20 +2 -2 xorp/libxipc/finder_tcp_messenger.cc 1.12 +3 -2 xorp/libxipc/test_finder_tcp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 02:39:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 19:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i822e1pk088070 for ; Wed, 1 Sep 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822e1Ru062514 for ; Wed, 1 Sep 2004 19:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822e1kf021087; Wed, 1 Sep 2004 19:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i822dLkf021061 for ; Wed, 1 Sep 2004 19:39:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i822dLRu062382 for ; Wed, 1 Sep 2004 19:39:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i822dK8M049143 for ; Wed, 1 Sep 2004 19:39:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i822dKZc049142 for xorp-cvs@icir.org; Thu, 2 Sep 2004 02:39:20 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 02:39:20 GMT From: Pavlin Radoslavov Message-Id: <200409020239.i822dKZc049142@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 02:39:20 UTC XORP CVS repository Modified files: rip/tools rip_announcer.cc ripng_announcer.cc Log message: * Add the new "is_blocking" argument to the relevant comm_foo() libcomm functions. For now the argument value is always COMM_SOCK_NONBLOCKING, for consistency with the default value of the original libcomm implementation. * Use flags COMM_SOCK_ADDR_PORT_REUSE and COMM_SOCK_ADDR_PORT_DONTREUSE as one of the arguments to comm_bind_join_udp{4,6} instead of values "0" and "1". Revision Changes Path 1.4 +4 -3 xorp/rip/tools/rip_announcer.cc 1.4 +4 -2 xorp/rip/tools/ripng_announcer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:24 2005 Subject: No subject Thu Sep 2 03:13:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 20:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i823E121094694 for ; Wed, 1 Sep 2004 20:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823E1Ru062841 for ; Wed, 1 Sep 2004 20:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823E0kf021960; Wed, 1 Sep 2004 20:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823Dxkf021952 for ; Wed, 1 Sep 2004 20:13:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823DxRu062839 for ; Wed, 1 Sep 2004 20:13:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i823Dx8M058899 for ; Wed, 1 Sep 2004 20:13:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i823DxEu058898 for xorp-cvs@icir.org; Thu, 2 Sep 2004 03:13:59 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 03:13:59 GMT From: Pavlin Radoslavov Message-Id: <200409020313.i823DxEu058898@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 03:13:59 UTC XORP CVS repository Modified files: xrl/interfaces socket4.xif socket4_xif.cc socket4_xif.hh socket6.xif socket6_xif.cc socket6_xif.hh xrl/targets socket_server.xrls socket_server_base.cc socket_server_base.hh Log message: Add argument is_blocking to indicate whether the socket created via the FEA is blocking or not. Revision Changes Path 1.4 +21 -1 xorp/xrl/interfaces/socket4.xif 1.7 +11 -1 xorp/xrl/interfaces/socket4_xif.cc 1.6 +21 -1 xorp/xrl/interfaces/socket4_xif.hh 1.3 +21 -1 xorp/xrl/interfaces/socket6.xif 1.5 +11 -1 xorp/xrl/interfaces/socket6_xif.cc 1.4 +21 -1 xorp/xrl/interfaces/socket6_xif.hh 1.5 +41 -11 xorp/xrl/targets/socket_server.xrls 1.6 +31 -21 xorp/xrl/targets/socket_server_base.cc 1.6 +41 -1 xorp/xrl/targets/socket_server_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 03:15:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 20:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i823G2sF095099 for ; Wed, 1 Sep 2004 20:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823G2Ru062881 for ; Wed, 1 Sep 2004 20:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823G2kf022050; Wed, 1 Sep 2004 20:16:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823FKkf022016 for ; Wed, 1 Sep 2004 20:15:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823FKRu062871 for ; Wed, 1 Sep 2004 20:15:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i823FJ8M059150 for ; Wed, 1 Sep 2004 20:15:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i823FJdv059149 for xorp-cvs@icir.org; Thu, 2 Sep 2004 03:15:19 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 03:15:19 GMT From: Pavlin Radoslavov Message-Id: <200409020315.i823FJdv059149@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 03:15:19 UTC XORP CVS repository Modified files: fea xrl_socket_server.cc xrl_socket_server.hh Log message: Add argument is_blocking to indicate whether the socket created via the FEA is blocking or not. Revision Changes Path 1.17 +23 -13 xorp/fea/xrl_socket_server.cc 1.7 +11 -1 xorp/fea/xrl_socket_server.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 03:16:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 20:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i823H1w5095301 for ; Wed, 1 Sep 2004 20:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823H1Ru062898 for ; Wed, 1 Sep 2004 20:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823H1kf022078; Wed, 1 Sep 2004 20:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823Gkkf022068 for ; Wed, 1 Sep 2004 20:16:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823GkRu062894 for ; Wed, 1 Sep 2004 20:16:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i823Gk8M059505 for ; Wed, 1 Sep 2004 20:16:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i823GkYI059504 for xorp-cvs@icir.org; Thu, 2 Sep 2004 03:16:46 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 03:16:46 GMT From: Pavlin Radoslavov Message-Id: <200409020316.i823GkYI059504@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 03:16:46 UTC XORP CVS repository Modified files: rip xrl_port_io.cc Log message: Set the new socket flag "is_blocking" to false (its original default value). Revision Changes Path 1.13 +3 -3 xorp/rip/xrl_port_io.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 03:16:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 20:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i823H2F3095316 for ; Wed, 1 Sep 2004 20:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823H1Ru062900 for ; Wed, 1 Sep 2004 20:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823H1kf022089; Wed, 1 Sep 2004 20:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823G1kf022046 for ; Wed, 1 Sep 2004 20:16:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823G1Ru062878 for ; Wed, 1 Sep 2004 20:16:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i823G08M059313 for ; Wed, 1 Sep 2004 20:16:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i823G0Jm059312 for xorp-cvs@icir.org; Thu, 2 Sep 2004 03:16:00 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 03:16:00 GMT From: Pavlin Radoslavov Message-Id: <200409020316.i823G0Jm059312@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 03:16:00 UTC XORP CVS repository Modified files: fea test_xrl_sockets4_udp.cc Log message: Set the new "is_blocking" flag to false (its previous default value). Revision Changes Path 1.6 +3 -3 xorp/fea/test_xrl_sockets4_udp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 03:18:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Sep 2004 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i823J1rZ095697 for ; Wed, 1 Sep 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823J1Ru062925 for ; Wed, 1 Sep 2004 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823J0kf022135; Wed, 1 Sep 2004 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i823I6kf022110 for ; Wed, 1 Sep 2004 20:18:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i823I6Ru062919 for ; Wed, 1 Sep 2004 20:18:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i823I58M059850 for ; Wed, 1 Sep 2004 20:18:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i823I5La059849 for xorp-cvs@icir.org; Thu, 2 Sep 2004 03:18:05 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 03:18:05 GMT From: Pavlin Radoslavov Message-Id: <200409020318.i823I5La059849@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 03:18:05 UTC XORP CVS repository Modified files: . TODO Log message: Remove a TODO entry, because it is already DONE. Revision Changes Path 1.6 +1 -3 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 18:35:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 11:36:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82Ia2W5077553 for ; Thu, 2 Sep 2004 11:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Ia2Ru073771 for ; Thu, 2 Sep 2004 11:36:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Ia1kf016578; Thu, 2 Sep 2004 11:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82IZLkf016558 for ; Thu, 2 Sep 2004 11:35:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82IZLRu073769 for ; Thu, 2 Sep 2004 11:35:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i82IZL8M080365 for ; Thu, 2 Sep 2004 11:35:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i82IZLB0080364 for xorp-cvs@icir.org; Thu, 2 Sep 2004 18:35:21 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 18:35:21 GMT From: Pavlin Radoslavov Message-Id: <200409021835.i82IZLB0080364@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 18:35:21 UTC XORP CVS repository Modified files: libcomm comm_user.c Log message: If comm_init() was called previously, then consider this as OK and return success rather than an error. Revision Changes Path 1.8 +2 -2 xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 18:44:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 11:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82Ij1dE079701 for ; Thu, 2 Sep 2004 11:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Ij0Ru073865 for ; Thu, 2 Sep 2004 11:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Ij0kf016991; Thu, 2 Sep 2004 11:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Iiikf016975 for ; Thu, 2 Sep 2004 11:44:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82IiiRu073860 for ; Thu, 2 Sep 2004 11:44:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Iii8M080521 for ; Thu, 2 Sep 2004 11:44:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i82IiibD080520 for xorp-cvs@icir.org; Thu, 2 Sep 2004 18:44:44 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 18:44:44 GMT From: Pavlin Radoslavov Message-Id: <200409021844.i82IiibD080520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 18:44:44 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c comm_user.c Log message: Replace: "bool" -> "int" "true" -> "1" "false" -> "0" The change is needed, because the older gcc compiler (2.9x) gets confused with the C/C++ mix-up, and an argument that has a value of "false" is passed to the C libcomm functions as a large non-zero value. Revision Changes Path 1.10 +22 -22 xorp/libcomm/comm_api.h 1.11 +6 -6 xorp/libcomm/comm_sock.c 1.9 +17 -17 xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 18:50:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 11:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82Ip13m081154 for ; Thu, 2 Sep 2004 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Ip1Ru073967 for ; Thu, 2 Sep 2004 11:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Ip0kf017224; Thu, 2 Sep 2004 11:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Io4kf017176 for ; Thu, 2 Sep 2004 11:50:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Io4Ru073938 for ; Thu, 2 Sep 2004 11:50:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Io48M080627 for ; Thu, 2 Sep 2004 11:50:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i82Io4HO080626 for xorp-cvs@icir.org; Thu, 2 Sep 2004 18:50:04 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 18:50:04 GMT From: Pavlin Radoslavov Message-Id: <200409021850.i82Io4HO080626@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 18:50:04 UTC XORP CVS repository Modified files: libcomm comm_user.c Log message: Add "is_blocking" as one of the arguments to "comm_sock_no_ipv6()" if IPv6 is not supported. Revision Changes Path 1.10 +11 -9 xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 22:40:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 15:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82Mf1ht035540 for ; Thu, 2 Sep 2004 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Mf1Ru076658 for ; Thu, 2 Sep 2004 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Mf0kf024435; Thu, 2 Sep 2004 15:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82MeAkf024414 for ; Thu, 2 Sep 2004 15:40:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Me9Ru076654 for ; Thu, 2 Sep 2004 15:40:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Me98M089501 for ; Thu, 2 Sep 2004 15:40:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i82Me97F089500 for xorp-cvs@icir.org; Thu, 2 Sep 2004 22:40:09 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 22:40:09 GMT From: Pavlin Radoslavov Message-Id: <200409022240.i82Me97F089500@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 22:40:09 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: If the recv() system call was interrupted by a signal, then restart it. Revision Changes Path 1.19 +10 -1 xorp/fea/netlink_socket.cc 1.11 +4 -1 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Thu Sep 2 22:45:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 15:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i82Mk1lr036741 for ; Thu, 2 Sep 2004 15:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Mk1Ru076710 for ; Thu, 2 Sep 2004 15:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Mk1kf024652; Thu, 2 Sep 2004 15:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i82Mjgkf024630 for ; Thu, 2 Sep 2004 15:45:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i82MjgRu076706 for ; Thu, 2 Sep 2004 15:45:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i82Mjg8M089618 for ; Thu, 2 Sep 2004 15:45:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i82MjgRu089617 for xorp-cvs@icir.org; Thu, 2 Sep 2004 22:45:42 GMT (envelope-from pavlin) Date: Thu, 2 Sep 2004 22:45:42 GMT From: Pavlin Radoslavov Message-Id: <200409022245.i82MjgRu089617@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-02 22:45:42 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: Remove a bogus '}' Revision Changes Path 1.20 +1 -4 xorp/fea/netlink_socket.cc 1.12 +1 -2 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 03:46:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Sep 2004 20:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i833l1AH002793 for ; Thu, 2 Sep 2004 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i833l1Ru080003 for ; Thu, 2 Sep 2004 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i833l0kf002404; Thu, 2 Sep 2004 20:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i833kWkf002394 for ; Thu, 2 Sep 2004 20:46:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i833kWRu079996 for ; Thu, 2 Sep 2004 20:46:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i833kW8M091852 for ; Thu, 2 Sep 2004 20:46:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i833kWcl091851 for xorp-cvs@icir.org; Fri, 3 Sep 2004 03:46:32 GMT (envelope-from pavlin) Date: Fri, 3 Sep 2004 03:46:32 GMT From: Pavlin Radoslavov Message-Id: <200409030346.i833kWcl091851@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-03 03:46:32 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: Add a missing return statement (if an error). Revision Changes Path 1.21 +2 -1 xorp/fea/netlink_socket.cc 1.13 +2 -1 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 18:13:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Sep 2004 11:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i83IE2pt071076 for ; Fri, 3 Sep 2004 11:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83IE1Ru092639 for ; Fri, 3 Sep 2004 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83IE1kf025217; Fri, 3 Sep 2004 11:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83IDDkf025184 for ; Fri, 3 Sep 2004 11:13:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83IDDRu092633 for ; Fri, 3 Sep 2004 11:13:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i83IDD8M000802 for ; Fri, 3 Sep 2004 11:13:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i83IDDoa000801 for xorp-cvs@icir.org; Fri, 3 Sep 2004 18:13:13 GMT (envelope-from pavlin) Date: Fri, 3 Sep 2004 18:13:13 GMT From: Pavlin Radoslavov Message-Id: <200409031813.i83IDDoa000801@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-03 18:13:12 UTC XORP CVS repository Modified files: fea netlink_socket.hh routing_socket.hh Log message: Nit in a comment. Revision Changes Path 1.10 +2 -2 xorp/fea/netlink_socket.hh 1.7 +2 -2 xorp/fea/routing_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 20:52:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Sep 2004 13:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i83Kr13u002214 for ; Fri, 3 Sep 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83Kr1Ru094351 for ; Fri, 3 Sep 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83Kr1kf029951; Fri, 3 Sep 2004 13:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83KqVkf029943 for ; Fri, 3 Sep 2004 13:52:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83KqVRu094349 for ; Fri, 3 Sep 2004 13:52:31 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i83KqV8M002176 for ; Fri, 3 Sep 2004 13:52:31 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i83KqVMG002175 for xorp-cvs@icir.org; Fri, 3 Sep 2004 20:52:31 GMT (envelope-from bms) Date: Fri, 3 Sep 2004 20:52:31 GMT From: Bruce Simpson Message-Id: <200409032052.i83KqVMG002175@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-03 20:52:31 UTC XORP CVS repository Modified files: fea firewall_ipf.cc firewall_ipfw.cc Log message: Fix compilation. Call base class constructor correctly. Revision Changes Path 1.2 +2 -2 xorp/fea/firewall_ipf.cc 1.2 +2 -2 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 20:53:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Sep 2004 13:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i83Ks2Tj002427 for ; Fri, 3 Sep 2004 13:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83Ks2Ru094361 for ; Fri, 3 Sep 2004 13:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83Ks1kf000018; Fri, 3 Sep 2004 13:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83KrCkf029979 for ; Fri, 3 Sep 2004 13:53:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83KrCRu094353 for ; Fri, 3 Sep 2004 13:53:12 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i83KrC8M002233 for ; Fri, 3 Sep 2004 13:53:12 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i83KrCCw002232 for xorp-cvs@icir.org; Fri, 3 Sep 2004 20:53:12 GMT (envelope-from bms) Date: Fri, 3 Sep 2004 20:53:12 GMT From: Bruce Simpson Message-Id: <200409032053.i83KrCCw002232@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-03 20:53:12 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in Added files: xrl/interfaces firewall_xif.cc firewall_xif.hh Log message: Hook up firewall.xif to the build. Regen. Revision Changes Path 1.20 +5 -1 xorp/xrl/interfaces/Makefile.am 1.33 +23 -9 xorp/xrl/interfaces/Makefile.in 1.1 +784 -0 xorp/xrl/interfaces/firewall_xif.cc (new) 1.1 +504 -0 xorp/xrl/interfaces/firewall_xif.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 22:25:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Sep 2004 15:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i83MQ2A7033902 for ; Fri, 3 Sep 2004 15:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MQ2Ru095519 for ; Fri, 3 Sep 2004 15:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83MQ1kf002627; Fri, 3 Sep 2004 15:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83MPSkf002594 for ; Fri, 3 Sep 2004 15:25:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MPSRu095515 for ; Fri, 3 Sep 2004 15:25:28 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MPR8M003116 for ; Fri, 3 Sep 2004 15:25:27 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i83MPR3o003115 for xorp-cvs@icir.org; Fri, 3 Sep 2004 22:25:27 GMT (envelope-from bms) Date: Fri, 3 Sep 2004 22:25:27 GMT From: Bruce Simpson Message-Id: <200409032225.i83MPR3o003115@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-03 22:25:27 UTC XORP CVS repository Added files: xrl/targets firewall.tgt firewall.xrls firewall_base.cc firewall_base.hh Log message: Add the firewall XIF target to the target libraries. Add the initially generated XRLs and target base class wrappers. Revision Changes Path 1.1 +7 -0 xorp/xrl/targets/firewall.tgt (new) 1.1 +215 -0 xorp/xrl/targets/firewall.xrls (new) 1.1 +1023 -0 xorp/xrl/targets/firewall_base.cc (new) 1.1 +461 -0 xorp/xrl/targets/firewall_base.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Fri Sep 3 22:25:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Sep 2004 15:26:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i83MQ4lT033923 for ; Fri, 3 Sep 2004 15:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MQ4Ru095521 for ; Fri, 3 Sep 2004 15:26:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83MQ3kf002638; Fri, 3 Sep 2004 15:26:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i83MPdkf002614 for ; Fri, 3 Sep 2004 15:25:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MPcRu095517 for ; Fri, 3 Sep 2004 15:25:38 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i83MPc8M003153 for ; Fri, 3 Sep 2004 15:25:38 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i83MPcNr003152 for xorp-cvs@icir.org; Fri, 3 Sep 2004 22:25:38 GMT (envelope-from bms) Date: Fri, 3 Sep 2004 22:25:38 GMT From: Bruce Simpson Message-Id: <200409032225.i83MPcNr003152@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-03 22:25:38 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Connect the firewall XRL target to the target build. Regen. Revision Changes Path 1.36 +9 -1 xorp/xrl/targets/Makefile.am 1.48 +29 -14 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Mon Sep 6 18:27:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Sep 2004 11:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i86IS1us056286 for ; Mon, 6 Sep 2004 11:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i86IS1NK040837 for ; Mon, 6 Sep 2004 11:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i86IS1RC017693; Mon, 6 Sep 2004 11:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i86IRmRC017685 for ; Mon, 6 Sep 2004 11:27:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i86IRmNK040835 for ; Mon, 6 Sep 2004 11:27:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i86IRmIb034509 for ; Mon, 6 Sep 2004 11:27:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i86IRmbW034508 for xorp-cvs@icir.org; Mon, 6 Sep 2004 18:27:48 GMT (envelope-from pavlin) Date: Mon, 6 Sep 2004 18:27:48 GMT From: Pavlin Radoslavov Message-Id: <200409061827.i86IRmbW034508@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-06 18:27:48 UTC XORP CVS repository Modified files: libxipc xrl_atom.cc Log message: De-static a temporary variable inside XrlAtom::value(), because it doesn't need to be declared as "static". Submitted by: "edrt" Revision Changes Path 1.13 +2 -2 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Tue Sep 7 20:41:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 13:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i87Kg1Ls079313 for ; Tue, 7 Sep 2004 13:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Kg1NK060487 for ; Tue, 7 Sep 2004 13:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87Kg1RC026158; Tue, 7 Sep 2004 13:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87Kf4RC026132 for ; Tue, 7 Sep 2004 13:41:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Kf4NK060470 for ; Tue, 7 Sep 2004 13:41:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Kf4Ib055753 for ; Tue, 7 Sep 2004 13:41:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i87Kf40a055752 for xorp-cvs@icir.org; Tue, 7 Sep 2004 20:41:04 GMT (envelope-from pavlin) Date: Tue, 7 Sep 2004 20:41:04 GMT From: Pavlin Radoslavov Message-Id: <200409072041.i87Kf40a055752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-07 20:41:04 UTC XORP CVS repository Modified files: libxipc xrl_atom.cc Log message: Bug fix: add an explicit test that all comparison values are true. Submitted by: "edrt" Revision Changes Path 1.14 +2 -2 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Tue Sep 7 20:41:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 13:42:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i87Kg7HU079356 for ; Tue, 7 Sep 2004 13:42:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Kg7NK060489 for ; Tue, 7 Sep 2004 13:42:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87Kg7RC026169; Tue, 7 Sep 2004 13:42:07 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87KfxRC026150 for ; Tue, 7 Sep 2004 13:41:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KfxNK060485 for ; Tue, 7 Sep 2004 13:41:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KfxIb055809 for ; Tue, 7 Sep 2004 13:41:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i87Kfx0M055808 for xorp-cvs@icir.org; Tue, 7 Sep 2004 20:41:59 GMT (envelope-from pavlin) Date: Tue, 7 Sep 2004 20:41:59 GMT From: Pavlin Radoslavov Message-Id: <200409072041.i87Kfx0M055808@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-07 20:41:59 UTC XORP CVS repository Modified files: libxipc xrl_atom_encoding.cc Log message: Refactor escape_encode() to avoid using static storage. Submitted by: "edrt" Revision Changes Path 1.7 +3 -3 xorp/libxipc/xrl_atom_encoding.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Tue Sep 7 20:43:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 13:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i87Ki15O079809 for ; Tue, 7 Sep 2004 13:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Ki1NK060535 for ; Tue, 7 Sep 2004 13:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87Ki1RC026237; Tue, 7 Sep 2004 13:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87KhURC026222 for ; Tue, 7 Sep 2004 13:43:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KhUNK060531 for ; Tue, 7 Sep 2004 13:43:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KhTIb055890 for ; Tue, 7 Sep 2004 13:43:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i87KhTZR055889 for xorp-cvs@icir.org; Tue, 7 Sep 2004 20:43:29 GMT (envelope-from pavlin) Date: Tue, 7 Sep 2004 20:43:29 GMT From: Pavlin Radoslavov Message-Id: <200409072043.i87KhTZR055889@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-07 20:43:29 UTC XORP CVS repository Modified files: libxipc xrl_atom_list.cc Log message: Bug fix: add an explicit test to XrlAtomList::get() and XrlAtomList::remove() that the list of atoms is not empty. Submitted by: "edrt" Revision Changes Path 1.6 +8 -1 xorp/libxipc/xrl_atom_list.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:25 2005 Subject: No subject Tue Sep 7 20:45:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 13:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i87Kk1Ed080325 for ; Tue, 7 Sep 2004 13:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87Kk1NK060574 for ; Tue, 7 Sep 2004 13:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87Kk0RC026317; Tue, 7 Sep 2004 13:46:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i87KjBRC026274 for ; Tue, 7 Sep 2004 13:45:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KjBNK060569 for ; Tue, 7 Sep 2004 13:45:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i87KjBIb055966 for ; Tue, 7 Sep 2004 13:45:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i87KjBWk055965 for xorp-cvs@icir.org; Tue, 7 Sep 2004 20:45:11 GMT (envelope-from pavlin) Date: Tue, 7 Sep 2004 20:45:11 GMT From: Pavlin Radoslavov Message-Id: <200409072045.i87KjBWk055965@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-07 20:45:10 UTC XORP CVS repository Modified files: libxipc xrl_pf_inproc.cc Log message: Bug fix: add an explicit test in XrlPFInProcSender::send() that the dispatcher is not NULL. Submitted by: "edrt" Revision Changes Path 1.19 +15 -7 xorp/libxipc/xrl_pf_inproc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 01:15:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 18:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i881G1rF052609 for ; Tue, 7 Sep 2004 18:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i881G1NK063921 for ; Tue, 7 Sep 2004 18:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i881G0RC004521; Tue, 7 Sep 2004 18:16:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i881FuRC004513 for ; Tue, 7 Sep 2004 18:15:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i881FuNK063918 for ; Tue, 7 Sep 2004 18:15:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i881FuIb067642 for ; Tue, 7 Sep 2004 18:15:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i881FuSi067641 for xorp-cvs@icir.org; Wed, 8 Sep 2004 01:15:56 GMT (envelope-from atanu) Date: Wed, 8 Sep 2004 01:15:56 GMT From: Atanu Ghosh Message-Id: <200409080115.i881FuSi067641@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-08 01:15:56 UTC XORP CVS repository Modified files: bgp Makefile.am Makefile.in Log message: Build the sub-directory "tools" before "harness". At least one test in the harness directory references a program in the tools directory. In a tree with no binaries a "gmake check" would always have failed. Revision Changes Path 1.31 +2 -2 xorp/bgp/Makefile.am 1.43 +1 -1 xorp/bgp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 02:03:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Sep 2004 19:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i882H1UB078683 for ; Tue, 7 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i882H1NK064802 for ; Tue, 7 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i882H1RC005971; Tue, 7 Sep 2004 19:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i882G4RC005945 for ; Tue, 7 Sep 2004 19:16:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8823sNK064615 for ; Tue, 7 Sep 2004 19:03:54 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8823sIb068461 for ; Tue, 7 Sep 2004 19:03:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8823svV068460 for xorp-cvs@icir.org; Wed, 8 Sep 2004 02:03:54 GMT (envelope-from atanu) Date: Wed, 8 Sep 2004 02:03:54 GMT From: Atanu Ghosh Message-Id: <200409080203.i8823svV068460@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-08 02:03:54 UTC XORP CVS repository Modified files: libxipc sockutil.cc Log message: Prefer the loopback interface over a real network interface. http://www.xorp.org/bugzilla/show_bug.cgi?id=94 Submitted by: Orion Hodson. Revision Changes Path 1.10 +2 -2 xorp/libxipc/sockutil.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 08:29:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 01:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i888U28T061007 for ; Wed, 8 Sep 2004 01:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888U2NK069285 for ; Wed, 8 Sep 2004 01:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888U1vF014991; Wed, 8 Sep 2004 01:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888TpvF014978 for ; Wed, 8 Sep 2004 01:29:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888TpNK069277 for ; Wed, 8 Sep 2004 01:29:51 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i888TpIb071722 for ; Wed, 8 Sep 2004 01:29:51 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i888TpCq071721 for xorp-cvs@icir.org; Wed, 8 Sep 2004 08:29:51 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 08:29:51 GMT From: Bruce Simpson Message-Id: <200409080829.i888TpCq071721@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 08:29:51 UTC XORP CVS repository Added files: fea xrl_firewall.cc xrl_firewall.hh Log message: Add XRL target class for firewall functionality. Do not connect it to the build yet. Revision Changes Path 1.1 +530 -0 xorp/fea/xrl_firewall.cc (new) 1.1 +429 -0 xorp/fea/xrl_firewall.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 08:32:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 01:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i888X281061611 for ; Wed, 8 Sep 2004 01:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888X2NK069339 for ; Wed, 8 Sep 2004 01:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888X0vF015060; Wed, 8 Sep 2004 01:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888WjvF015049 for ; Wed, 8 Sep 2004 01:32:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888WiNK069335 for ; Wed, 8 Sep 2004 01:32:44 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i888WiIb071822 for ; Wed, 8 Sep 2004 01:32:44 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i888WiJb071821 for xorp-cvs@icir.org; Wed, 8 Sep 2004 08:32:44 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 08:32:44 GMT From: Bruce Simpson Message-Id: <200409080832.i888WiJb071821@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 08:32:44 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Log message: Connect the firewall XRL target to the FEA build. Regen. Revision Changes Path 1.38 +5 -1 xorp/fea/Makefile.am 1.49 +13 -8 xorp/fea/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 08:34:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 01:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i888Z1MI061997 for ; Wed, 8 Sep 2004 01:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888Z1NK069363 for ; Wed, 8 Sep 2004 01:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888Z1vF015142; Wed, 8 Sep 2004 01:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888YBvF015123 for ; Wed, 8 Sep 2004 01:34:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888YANK069351 for ; Wed, 8 Sep 2004 01:34:10 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i888YAIb071874 for ; Wed, 8 Sep 2004 01:34:10 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i888YAo2071873 for xorp-cvs@icir.org; Wed, 8 Sep 2004 08:34:10 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 08:34:10 GMT From: Bruce Simpson Message-Id: <200409080834.i888YAo2071873@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 08:34:10 UTC XORP CVS repository Modified files: fea fea.cc Log message: Instantiate the FirewallManager and its XRL target helper, from within fea_main(). Revision Changes Path 1.31 +14 -2 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 08:45:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 01:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i888k1Mn064137 for ; Wed, 8 Sep 2004 01:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888k1NK069504 for ; Wed, 8 Sep 2004 01:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888k1vF015389; Wed, 8 Sep 2004 01:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i888j1vF015342 for ; Wed, 8 Sep 2004 01:45:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i888j1NK069478 for ; Wed, 8 Sep 2004 01:45:01 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i888j0Ib071989 for ; Wed, 8 Sep 2004 01:45:00 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i888j02x071988 for xorp-cvs@icir.org; Wed, 8 Sep 2004 08:45:00 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 08:45:00 GMT From: Bruce Simpson Message-Id: <200409080845.i888j02x071988@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 08:45:00 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Changes for FirewallManager: - Explicitly initialize the FwProvider to 0. - Declare fwtable accessors as inline. They can't be const right now as they may be used to manipulate the table(s). - Purge unused XrlFirewallTarget reference; FirewallManager may exist before XrlFirewallTarget, but not vice versa, and there is always a 1:1 correspondence (they're singletons by nature). Revision Changes Path 1.3 +4 -8 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 09:52:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 02:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i889r1A9078124 for ; Wed, 8 Sep 2004 02:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i889r0NK070733 for ; Wed, 8 Sep 2004 02:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i889r0vF016969; Wed, 8 Sep 2004 02:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i889q6vF016949 for ; Wed, 8 Sep 2004 02:52:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i889q5NK070727 for ; Wed, 8 Sep 2004 02:52:05 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i889q5Ib072642 for ; Wed, 8 Sep 2004 02:52:05 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i889q5dF072641 for xorp-cvs@icir.org; Wed, 8 Sep 2004 09:52:05 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 09:52:05 GMT From: Bruce Simpson Message-Id: <200409080952.i889q5dF072641@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 09:52:05 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Whitespace. Revision Changes Path 1.4 +3 -3 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 10:09:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 03:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i88AA1Dj081630 for ; Wed, 8 Sep 2004 03:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88AA1NK071019 for ; Wed, 8 Sep 2004 03:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88AA1vF017338; Wed, 8 Sep 2004 03:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88A9GvF017313 for ; Wed, 8 Sep 2004 03:09:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88A9GNK071002 for ; Wed, 8 Sep 2004 03:09:16 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i88A9GIb072958 for ; Wed, 8 Sep 2004 03:09:16 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i88A9G1c072957 for xorp-cvs@icir.org; Wed, 8 Sep 2004 10:09:16 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 10:09:16 GMT From: Bruce Simpson Message-Id: <200409081009.i88A9G1c072957@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 10:09:16 UTC XORP CVS repository Modified files: fea firewall.hh xrl_firewall.cc Log message: Make XrlFirewallTarget a friend of FwProvider. Flesh out some of the XRL bindings which actually interrogate the underlying firewall provider. Revision Changes Path 1.5 +4 -1 xorp/fea/firewall.hh 1.2 +78 -20 xorp/fea/xrl_firewall.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 10:15:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 03:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i88AG1tr083033 for ; Wed, 8 Sep 2004 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88AG1NK071156 for ; Wed, 8 Sep 2004 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88AG1vF017509; Wed, 8 Sep 2004 03:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88AFVvF017494 for ; Wed, 8 Sep 2004 03:15:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88AFVNK071149 for ; Wed, 8 Sep 2004 03:15:31 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i88AFVIb073140 for ; Wed, 8 Sep 2004 03:15:31 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i88AFVLA073139 for xorp-cvs@icir.org; Wed, 8 Sep 2004 10:15:31 GMT (envelope-from bms) Date: Wed, 8 Sep 2004 10:15:31 GMT From: Bruce Simpson Message-Id: <200409081015.i88AFVLA073139@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-08 10:15:31 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Log message: Connect firewall.hh and firewall_dummy.hh to the FEA library build. Regen. Revision Changes Path 1.39 +3 -1 xorp/fea/Makefile.am 1.50 +1 -1 xorp/fea/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Wed Sep 8 23:54:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 16:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i88Nt0oE042824 for ; Wed, 8 Sep 2004 16:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88Nt0NK082380 for ; Wed, 8 Sep 2004 16:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88Nt0vF011959; Wed, 8 Sep 2004 16:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i88NsDvF011928 for ; Wed, 8 Sep 2004 16:54:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i88NsDNK082367 for ; Wed, 8 Sep 2004 16:54:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i88NsDIb081195 for ; Wed, 8 Sep 2004 16:54:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i88NsDBO081194 for xorp-cvs@icir.org; Wed, 8 Sep 2004 23:54:13 GMT (envelope-from pavlin) Date: Wed, 8 Sep 2004 23:54:13 GMT From: Pavlin Radoslavov Message-Id: <200409082354.i88NsDBO081194@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-08 23:54:12 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc pim pim_proto_register.cc Log message: Remove a hackish static_cast() that was used as a work-around of a problem when passing by reference a __packed structure field. See the following thread for a description of the problem: http://lists.freebsd.org/pipermail/freebsd-current/2004-September/036709.html Revision Changes Path 1.20 +11 -4 xorp/fea/mfea_proto_comm.cc 1.17 +14 -3 xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 04:58:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Sep 2004 21:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i894x1Hk006662 for ; Wed, 8 Sep 2004 21:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i894x1NK087490 for ; Wed, 8 Sep 2004 21:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i894x1vF022041; Wed, 8 Sep 2004 21:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i894wkvF022031 for ; Wed, 8 Sep 2004 21:58:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i894wkNK087487 for ; Wed, 8 Sep 2004 21:58:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i894wkIb095716 for ; Wed, 8 Sep 2004 21:58:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i894wkcq095715 for xorp-cvs@icir.org; Thu, 9 Sep 2004 04:58:46 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 04:58:46 GMT From: Pavlin Radoslavov Message-Id: <200409090458.i894wkcq095715@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 04:58:46 UTC XORP CVS repository Modified files: fea ifconfig_set.cc ifconfig_set.hh Log message: Added new method IfConfigSet::register_ifc_secondary() Revision Changes Path 1.11 +7 -1 xorp/fea/ifconfig_set.cc 1.14 +2 -1 xorp/fea/ifconfig_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:26:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89IR1oh070771 for ; Thu, 9 Sep 2004 11:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IR1NK099768 for ; Thu, 9 Sep 2004 11:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IR0rY015688; Thu, 9 Sep 2004 11:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IQ7rY015656 for ; Thu, 9 Sep 2004 11:26:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IQ7NK099762 for ; Thu, 9 Sep 2004 11:26:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IQ7Ib004901 for ; Thu, 9 Sep 2004 11:26:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89IQ7oF004900 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:26:07 GMT (envelope-from atanu) Date: Thu, 9 Sep 2004 18:26:07 GMT From: Atanu Ghosh Message-Id: <200409091826.i89IQ7oF004900@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-09 18:26:07 UTC XORP CVS repository Modified files: bgp/harness command.hh peer.hh Added files: libxorp tokenize.hh Log message: Move tokenize from bgp/harness to libxorp. Revision Changes Path 1.12 +2 -2 xorp/bgp/harness/command.hh 1.15 +2 -2 xorp/bgp/harness/peer.hh 1.1 +39 -0 xorp/libxorp/tokenize.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:28:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89IT1av071193 for ; Thu, 9 Sep 2004 11:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IT0NK099789 for ; Thu, 9 Sep 2004 11:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IT0rY015792; Thu, 9 Sep 2004 11:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89ISkrY015777 for ; Thu, 9 Sep 2004 11:28:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89ISkNK099785 for ; Thu, 9 Sep 2004 11:28:46 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89ISkIb004964 for ; Thu, 9 Sep 2004 11:28:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89ISkZL004963 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:28:46 GMT (envelope-from atanu) Date: Thu, 9 Sep 2004 18:28:46 GMT From: Atanu Ghosh Message-Id: <200409091828.i89ISkZL004963@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-09 18:28:46 UTC XORP CVS repository Removed files: bgp/harness tokenize.hh Log message: Move tokenize from bgp/harness to libxorp. Revision Changes Path 1.3 +0 -39 xorp/bgp/harness/tokenize.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:46:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Il10c074877 for ; Thu, 9 Sep 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Il1NK000115 for ; Thu, 9 Sep 2004 11:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Il0rY016415; Thu, 9 Sep 2004 11:47:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IkdrY016389 for ; Thu, 9 Sep 2004 11:46:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IkdNK000108 for ; Thu, 9 Sep 2004 11:46:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IkcIb005511 for ; Thu, 9 Sep 2004 11:46:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89Ikc1j005510 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:46:38 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:46:38 GMT From: Pavlin Radoslavov Message-Id: <200409091846.i89Ikc1j005510@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:46:38 UTC XORP CVS repository Modified files: fea routing_socket.cc routing_socket.hh Log message: * Add an "errmsg" return-by-reference argument to RoutingSocket::force_read() and RoutingSocketReader::receive_data() * If RoutingSocket::force_read() method fails, don't call automatically shutdown() to close the socket. The decision whether to close the socket should be done by the caller. * Modify RoutingSocket::force_read() to return success/error. * Modify RoutingSocket::select_hook() and RoutingSocketReader::receive_data() to check the return value of force_read(). Revision Changes Path 1.14 +31 -16 xorp/fea/routing_socket.cc 1.8 +7 -3 xorp/fea/routing_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:53:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Is1TN076227 for ; Thu, 9 Sep 2004 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Is1NK000204 for ; Thu, 9 Sep 2004 11:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Is1rY016602; Thu, 9 Sep 2004 11:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IrdrY016589 for ; Thu, 9 Sep 2004 11:53:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IrdNK000198 for ; Thu, 9 Sep 2004 11:53:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IrcIb005622 for ; Thu, 9 Sep 2004 11:53:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89Irc3O005621 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:53:38 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:53:38 GMT From: Pavlin Radoslavov Message-Id: <200409091853.i89Irc3O005621@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:53:38 UTC XORP CVS repository Modified files: fea netlink_socket.cc netlink_socket.hh Log message: * Modify the following method to NetlinkSocket and NetlinkSocketeReader to return a success/error code, and to return the error message in the return-by-reference "errmsg" argument: - force_read() - force_recvfrom() - force_recvmsg() - receive_data4() - receive_data6() - receive_data() * If NetlinkSocket::force_read() or force_recvfrom() or force_recvmsg() method fails, don't call automatically shutdown() to close the socket. The decision whether to close the socket should be done by the caller. * Modify NetlinkSocket::select_hook(), NetlinkSocketReader::receive_data4() NetlinkSocketReader::receive_data6() and NetlinkSocketReader::receive_data() to check the return value of force_read(). Revision Changes Path 1.22 +68 -45 xorp/fea/netlink_socket.cc 1.11 +20 -7 xorp/fea/netlink_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:54:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89It1VH076435 for ; Thu, 9 Sep 2004 11:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89It1NK000219 for ; Thu, 9 Sep 2004 11:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89It1rY016648; Thu, 9 Sep 2004 11:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IsVrY016625 for ; Thu, 9 Sep 2004 11:54:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IsVNK000212 for ; Thu, 9 Sep 2004 11:54:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IsVIb005680 for ; Thu, 9 Sep 2004 11:54:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89IsV0u005679 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:54:31 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:54:31 GMT From: Pavlin Radoslavov Message-Id: <200409091854.i89IsV0u005679@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:54:31 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc netlink_socket_utils.hh Log message: "reason" -> "errmsg" Revision Changes Path 1.15 +9 -8 xorp/fea/netlink_socket_utils.cc 1.10 +3 -3 xorp/fea/netlink_socket_utils.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:55:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Iu1MD076661 for ; Thu, 9 Sep 2004 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Iu1NK000259 for ; Thu, 9 Sep 2004 11:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Iu1rY016694; Thu, 9 Sep 2004 11:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89ItkrY016679 for ; Thu, 9 Sep 2004 11:55:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89ItkNK000257 for ; Thu, 9 Sep 2004 11:55:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89ItkIb005766 for ; Thu, 9 Sep 2004 11:55:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89ItkWd005765 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:55:46 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:55:46 GMT From: Pavlin Radoslavov Message-Id: <200409091855.i89ItkWd005765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:55:46 UTC XORP CVS repository Modified files: fea ifconfig_set_dummy.cc ifconfig_set_ioctl.cc Log message: "reason" -> "errmsg" Revision Changes Path 1.10 +11 -11 xorp/fea/ifconfig_set_dummy.cc 1.26 +42 -42 xorp/fea/ifconfig_set_ioctl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:56:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Iv13h076862 for ; Thu, 9 Sep 2004 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Iv1NK000274 for ; Thu, 9 Sep 2004 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Iv0rY016734; Thu, 9 Sep 2004 11:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IukrY016715 for ; Thu, 9 Sep 2004 11:56:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IukNK000271 for ; Thu, 9 Sep 2004 11:56:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IukIb005830 for ; Thu, 9 Sep 2004 11:56:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89Iuknd005829 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:56:46 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:56:46 GMT From: Pavlin Radoslavov Message-Id: <200409091856.i89Iuknd005829@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:56:46 UTC XORP CVS repository Modified files: fea ifconfig_set_netlink.cc Log message: "reason" -> "errmsg" Revision Changes Path 1.12 +33 -33 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:26 2005 Subject: No subject Thu Sep 9 18:58:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Ix19b077273 for ; Thu, 9 Sep 2004 11:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Ix1NK000301 for ; Thu, 9 Sep 2004 11:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Ix1rY016805; Thu, 9 Sep 2004 11:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Iw4rY016766 for ; Thu, 9 Sep 2004 11:58:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Iw3NK000288 for ; Thu, 9 Sep 2004 11:58:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Iw3Ib005886 for ; Thu, 9 Sep 2004 11:58:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89Iw3J7005885 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:58:03 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:58:03 GMT From: Pavlin Radoslavov Message-Id: <200409091858.i89Iw3J7005885@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:58:03 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_netlink.cc Log message: Explicitly check the return value of NetlinkSocketReader::receive_data() and print an error if it fails. Revision Changes Path 1.22 +8 -3 xorp/fea/fticonfig_entry_get_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 18:58:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 11:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89Ix2bs077288 for ; Thu, 9 Sep 2004 11:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89Ix2NK000304 for ; Thu, 9 Sep 2004 11:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89Ix2rY016816; Thu, 9 Sep 2004 11:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89IwirY016791 for ; Thu, 9 Sep 2004 11:58:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IwiNK000297 for ; Thu, 9 Sep 2004 11:58:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89IwiIb005942 for ; Thu, 9 Sep 2004 11:58:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89IwioN005941 for xorp-cvs@icir.org; Thu, 9 Sep 2004 18:58:44 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 18:58:44 GMT From: Pavlin Radoslavov Message-Id: <200409091858.i89IwioN005941@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 18:58:44 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_rtsock.cc Log message: Explicitly check the return value of RoutingSocketReader::receive_data() and print an error if it fails. Revision Changes Path 1.20 +15 -5 xorp/fea/fticonfig_entry_get_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:00:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89J11D7077736 for ; Thu, 9 Sep 2004 12:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J11NK000363 for ; Thu, 9 Sep 2004 12:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J11rY016918; Thu, 9 Sep 2004 12:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J0arY016888 for ; Thu, 9 Sep 2004 12:00:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J0ZNK000351 for ; Thu, 9 Sep 2004 12:00:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J0ZIb006032 for ; Thu, 9 Sep 2004 12:00:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J0Zd6006031 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:00:35 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:00:35 GMT From: Pavlin Radoslavov Message-Id: <200409091900.i89J0Zd6006031@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:00:35 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc Log message: * "reason" -> "errmsg" * Nits Revision Changes Path 1.12 +9 -13 xorp/fea/fticonfig_entry_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:01:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89J21LC077956 for ; Thu, 9 Sep 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J21NK000384 for ; Thu, 9 Sep 2004 12:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J21rY016964; Thu, 9 Sep 2004 12:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J16rY016931 for ; Thu, 9 Sep 2004 12:01:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J16NK000367 for ; Thu, 9 Sep 2004 12:01:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J16Ib006099 for ; Thu, 9 Sep 2004 12:01:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J16lX006098 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:01:06 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:01:06 GMT From: Pavlin Radoslavov Message-Id: <200409091901.i89J16lX006098@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:01:06 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: Nits Revision Changes Path 1.19 +3 -3 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:01:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89J22hd077971 for ; Thu, 9 Sep 2004 12:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J22NK000386 for ; Thu, 9 Sep 2004 12:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J22rY016975; Thu, 9 Sep 2004 12:02:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J1prY016950 for ; Thu, 9 Sep 2004 12:01:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J1pNK000382 for ; Thu, 9 Sep 2004 12:01:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J1pIb006160 for ; Thu, 9 Sep 2004 12:01:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J1pWm006159 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:01:51 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:01:51 GMT From: Pavlin Radoslavov Message-Id: <200409091901.i89J1pWm006159@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:01:51 UTC XORP CVS repository Modified files: fea fticonfig_table_get_netlink.cc Log message: Exlicitly check the return value of NetlinkSocketReader::receive_data() and print an error if it fails. Revision Changes Path 1.21 +8 -3 xorp/fea/fticonfig_table_get_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:03:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89J41d7078401 for ; Thu, 9 Sep 2004 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J41NK000423 for ; Thu, 9 Sep 2004 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J41rY017039; Thu, 9 Sep 2004 12:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J3nrY017027 for ; Thu, 9 Sep 2004 12:03:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J3nNK000419 for ; Thu, 9 Sep 2004 12:03:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J3nIb006277 for ; Thu, 9 Sep 2004 12:03:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J3nT2006276 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:03:49 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:03:49 GMT From: Pavlin Radoslavov Message-Id: <200409091903.i89J3nT2006276@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:03:49 UTC XORP CVS repository Modified files: fea ifconfig_get_netlink.cc Log message: * Explicitly check the return value of NetlinkSocketReader::receive_data4, and NetlinkSocketReader:;receive_data6() and print an error if there is a failure. * Nits Revision Changes Path 1.11 +24 -8 xorp/fea/ifconfig_get_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:05:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89J614r085258 for ; Thu, 9 Sep 2004 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J61NK000466 for ; Thu, 9 Sep 2004 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J61rY017106; Thu, 9 Sep 2004 12:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J55rY017079 for ; Thu, 9 Sep 2004 12:05:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J55NK000439 for ; Thu, 9 Sep 2004 12:05:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J55Ib006359 for ; Thu, 9 Sep 2004 12:05:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J55Vo006358 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:05:05 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:05:05 GMT From: Pavlin Radoslavov Message-Id: <200409091905.i89J55Vo006358@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:05:05 UTC XORP CVS repository Modified files: fea ifconfig_set.cc ifconfig_set.hh Log message: "reason" -> "errmsg" Revision Changes Path 1.12 +25 -25 xorp/fea/ifconfig_set.cc 1.15 +28 -28 xorp/fea/ifconfig_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Thu Sep 9 19:09:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 12:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i89JA1vE086657 for ; Thu, 9 Sep 2004 12:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89JA1NK000510 for ; Thu, 9 Sep 2004 12:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89JA0rY017276; Thu, 9 Sep 2004 12:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i89J9crY017251 for ; Thu, 9 Sep 2004 12:09:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J9bNK000503 for ; Thu, 9 Sep 2004 12:09:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i89J9bIb006491 for ; Thu, 9 Sep 2004 12:09:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i89J9bBL006490 for xorp-cvs@icir.org; Thu, 9 Sep 2004 19:09:37 GMT (envelope-from pavlin) Date: Thu, 9 Sep 2004 19:09:37 GMT From: Pavlin Radoslavov Message-Id: <200409091909.i89J9bBL006490@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-09 19:09:37 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in Log message: Added file "tokenize.hh" to the list of source files. Revision Changes Path 1.26 +2 -1 xorp/libxorp/Makefile.am 1.36 +1 -1 xorp/libxorp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Fri Sep 10 02:17:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 19:18:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8A2I3jM060564 for ; Thu, 9 Sep 2004 19:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2I3NK006220 for ; Thu, 9 Sep 2004 19:18:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8A2I1rY000689; Thu, 9 Sep 2004 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8A2H8rY000668 for ; Thu, 9 Sep 2004 19:17:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2H8NK006208 for ; Thu, 9 Sep 2004 19:17:08 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2H8Ib017220 for ; Thu, 9 Sep 2004 19:17:08 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8A2H8G9017219 for xorp-cvs@icir.org; Fri, 10 Sep 2004 02:17:08 GMT (envelope-from bms) Date: Fri, 10 Sep 2004 02:17:08 GMT From: Bruce Simpson Message-Id: <200409100217.i8A2H8G9017219@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-10 02:17:08 UTC XORP CVS repository Modified files: fea fea.cc Log message: Wait until the firewall XRL router is ready, after creating it. Submitted by: pavlin Revision Changes Path 1.32 +2 -1 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Fri Sep 10 02:17:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Sep 2004 19:18:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8A2I7db060592 for ; Thu, 9 Sep 2004 19:18:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2I7NK006224 for ; Thu, 9 Sep 2004 19:18:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8A2I7rY000700; Thu, 9 Sep 2004 19:18:07 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8A2HUrY000679 for ; Thu, 9 Sep 2004 19:17:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2HUNK006211 for ; Thu, 9 Sep 2004 19:17:30 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8A2HUIb017263 for ; Thu, 9 Sep 2004 19:17:30 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8A2HUTH017262 for xorp-cvs@icir.org; Fri, 10 Sep 2004 02:17:30 GMT (envelope-from bms) Date: Fri, 10 Sep 2004 02:17:30 GMT From: Bruce Simpson Message-Id: <200409100217.i8A2HUTH017262@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-10 02:17:30 UTC XORP CVS repository Modified files: fea fea.cc Log message: Whitespace. No functional changes. Revision Changes Path 1.33 +2 -2 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Sat Sep 11 01:28:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Sep 2004 18:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8B1T2xH093951 for ; Fri, 10 Sep 2004 18:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8B1T1NK022847 for ; Fri, 10 Sep 2004 18:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8B1T1U2011049; Fri, 10 Sep 2004 18:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8B1SJU2011017 for ; Fri, 10 Sep 2004 18:28:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8B1SJNK022845 for ; Fri, 10 Sep 2004 18:28:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8B1SJIb029850 for ; Fri, 10 Sep 2004 18:28:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8B1SJeN029849 for xorp-cvs@icir.org; Sat, 11 Sep 2004 01:28:19 GMT (envelope-from pavlin) Date: Sat, 11 Sep 2004 01:28:19 GMT From: Pavlin Radoslavov Message-Id: <200409110128.i8B1SJeN029849@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-11 01:28:19 UTC XORP CVS repository Modified files: fea ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Modify method IfConfigSet::set_interface_flags() to include an extra argument "is_up" that indicates whether the interface is UP. Note that this flag is redundant, because the same information can be obtained by (flags & IFF_UP), but such redundancy eliminates inter-mechanism knowledge. E.g., if we want to use (flags & IFF_UP) in case of Click FEA implementation, we make the assumntion that the Click FEA implementation has knowledge that the flags always have IFF_* meaning. Revision Changes Path 1.13 +33 -27 xorp/fea/ifconfig_set.cc 1.16 +6 -1 xorp/fea/ifconfig_set.hh 1.11 +5 -3 xorp/fea/ifconfig_set_dummy.cc 1.27 +9 -5 xorp/fea/ifconfig_set_ioctl.cc 1.13 +11 -5 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Sun Sep 12 23:51:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Sep 2004 16:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8CNq1Mt040520 for ; Sun, 12 Sep 2004 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8CNq1NK053224 for ; Sun, 12 Sep 2004 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8CNq1U2013072; Sun, 12 Sep 2004 16:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8CNpWU2013058 for ; Sun, 12 Sep 2004 16:51:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8CNpWNK053222 for ; Sun, 12 Sep 2004 16:51:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8CNpWIb055018 for ; Sun, 12 Sep 2004 16:51:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8CNpWUe055017 for xorp-cvs@icir.org; Sun, 12 Sep 2004 23:51:32 GMT (envelope-from pavlin) Date: Sun, 12 Sep 2004 23:51:32 GMT From: Pavlin Radoslavov Message-Id: <200409122351.i8CNpWUe055017@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-12 23:51:32 UTC XORP CVS repository Modified files: etc/templates firewall.cmds Log message: Temporary comment-out the "show filters" xorpsh command, because the specified executable %command does not exist. This is needed, because "xorpsh" refuses to start if the executable %command is not found. Revision Changes Path 1.2 +3 -1 xorp/etc/templates/firewall.cmds _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Mon Sep 13 02:26:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Sep 2004 19:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8D2R1iO070235 for ; Sun, 12 Sep 2004 19:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8D2R1NK054731 for ; Sun, 12 Sep 2004 19:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8D2R1U2016768; Sun, 12 Sep 2004 19:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8D2Q6U2016743 for ; Sun, 12 Sep 2004 19:26:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8D2Q6NK054724 for ; Sun, 12 Sep 2004 19:26:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8D2Q6Ib056277 for ; Sun, 12 Sep 2004 19:26:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8D2Q6I0056276 for xorp-cvs@icir.org; Mon, 13 Sep 2004 02:26:06 GMT (envelope-from pavlin) Date: Mon, 13 Sep 2004 02:26:06 GMT From: Pavlin Radoslavov Message-Id: <200409130226.i8D2Q6I0056276@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-13 02:26:06 UTC XORP CVS repository Modified files: rtrmgr boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Log message: Allow '.' to be part of LITERAL in the configuration file. This fix allows to specify an interface name like "eth0.1001" in the config file (e.g., if the interface is a VLAN under Ethernet (802.1Q) on Linux). Bug found by: Emmanuel QUEMENER Revision Changes Path 1.16 +3 -3 xorp/rtrmgr/boot.ll 1.5 +398 -398 xorp/rtrmgr/lex.boot.cc 1.5 +0 -0 xorp/rtrmgr/lex.opcmd.cc 1.5 +0 -0 xorp/rtrmgr/lex.tplt.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Mon Sep 13 20:37:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Sep 2004 13:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8DKc1oD095857 for ; Mon, 13 Sep 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8DKc1NK068588 for ; Mon, 13 Sep 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8DKc1U2018405; Mon, 13 Sep 2004 13:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8DKboU2018394 for ; Mon, 13 Sep 2004 13:37:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8DKbnNK068582 for ; Mon, 13 Sep 2004 13:37:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8DKbnIb067016 for ; Mon, 13 Sep 2004 13:37:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8DKbn5L067015 for xorp-cvs@icir.org; Mon, 13 Sep 2004 20:37:49 GMT (envelope-from pavlin) Date: Mon, 13 Sep 2004 20:37:49 GMT From: Pavlin Radoslavov Message-Id: <200409132037.i8DKbn5L067015@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-13 20:37:49 UTC XORP CVS repository Modified files: fea ifconfig.cc ifconfig.hh ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Refactor the mechanism for pushing the network interface configuration. Revision Changes Path 1.30 +8 -1 xorp/fea/ifconfig.cc 1.29 +5 -1 xorp/fea/ifconfig.hh 1.14 +146 -61 xorp/fea/ifconfig_set.cc 1.17 +166 -58 xorp/fea/ifconfig_set.hh 1.12 +114 -30 xorp/fea/ifconfig_set_dummy.cc 1.28 +274 -83 xorp/fea/ifconfig_set_ioctl.cc 1.14 +293 -111 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 10:15:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 03:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EAG17h078426 for ; Tue, 14 Sep 2004 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EAG1NK077683 for ; Tue, 14 Sep 2004 03:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EAG0Be011903; Tue, 14 Sep 2004 03:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EAFRBe011893 for ; Tue, 14 Sep 2004 03:15:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EAFRNK077677 for ; Tue, 14 Sep 2004 03:15:27 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EAFRIb074325 for ; Tue, 14 Sep 2004 03:15:27 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EAFREG074324 for xorp-cvs@icir.org; Tue, 14 Sep 2004 10:15:27 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 10:15:27 GMT From: Bruce Simpson Message-Id: <200409141015.i8EAFREG074324@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 10:15:27 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Be explicit about inheriting from class FwProvider at level 'public'. Revision Changes Path 1.3 +2 -2 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 15:02:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 08:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EF31dr034352 for ; Tue, 14 Sep 2004 08:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF31NK080969 for ; Tue, 14 Sep 2004 08:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF31Be021749; Tue, 14 Sep 2004 08:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF2QBe021733 for ; Tue, 14 Sep 2004 08:02:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF2QNK080967 for ; Tue, 14 Sep 2004 08:02:26 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF2QIb077023 for ; Tue, 14 Sep 2004 08:02:26 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EF2QxU077022 for xorp-cvs@icir.org; Tue, 14 Sep 2004 15:02:26 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 15:02:26 GMT From: Bruce Simpson Message-Id: <200409141502.i8EF2QxU077022@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 15:02:26 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Checkpoint for significant changes. Reference in our definition. Add a set_fw_provider() function used to change the underlying firewall provider at runtime. Change the type of get_provider_name()/version() to const char* to avoid silly string games. Whitespace. Remove a comment. Revision Changes Path 1.6 +17 -7 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 15:03:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 08:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EF41X4034561 for ; Tue, 14 Sep 2004 08:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF41NK080975 for ; Tue, 14 Sep 2004 08:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF41Be021795; Tue, 14 Sep 2004 08:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF3cBe021780 for ; Tue, 14 Sep 2004 08:03:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF3cNK080971 for ; Tue, 14 Sep 2004 08:03:38 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF3cIb077072 for ; Tue, 14 Sep 2004 08:03:38 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EF3caR077071 for xorp-cvs@icir.org; Tue, 14 Sep 2004 15:03:38 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 15:03:38 GMT From: Bruce Simpson Message-Id: <200409141503.i8EF3caR077071@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 15:03:38 UTC XORP CVS repository Modified files: fea firewall_dummy.hh firewall_ipf.hh firewall_ipfw.hh firewall_iptables.hh Log message: Simplify get_provider_name() et al. Declare signature of overridden get_enabled() properly. Revision Changes Path 1.3 +5 -8 xorp/fea/firewall_dummy.hh 1.3 +6 -6 xorp/fea/firewall_ipf.hh 1.4 +7 -6 xorp/fea/firewall_ipfw.hh 1.3 +5 -5 xorp/fea/firewall_iptables.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 15:05:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 08:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EF61ZN034960 for ; Tue, 14 Sep 2004 08:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF61NK081027 for ; Tue, 14 Sep 2004 08:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF61Be021899; Tue, 14 Sep 2004 08:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF5GBe021843 for ; Tue, 14 Sep 2004 08:05:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF5FNK081017 for ; Tue, 14 Sep 2004 08:05:15 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF5FIb077167 for ; Tue, 14 Sep 2004 08:05:15 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EF5Ff2077166 for xorp-cvs@icir.org; Tue, 14 Sep 2004 15:05:15 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 15:05:15 GMT From: Bruce Simpson Message-Id: <200409141505.i8EF5Ff2077166@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 15:05:15 UTC XORP CVS repository Modified files: fea firewall_ipf.cc firewall_ipfw.cc Log message: Catch up with internal API changes. Fix #includes. Fix compilation. Revision Changes Path 1.3 +39 -61 xorp/fea/firewall_ipf.cc 1.3 +64 -51 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 15:08:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 08:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EF91DW035535 for ; Tue, 14 Sep 2004 08:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF91NK082406 for ; Tue, 14 Sep 2004 08:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF91Be022034; Tue, 14 Sep 2004 08:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF8NBe021974 for ; Tue, 14 Sep 2004 08:08:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF8NNK082386 for ; Tue, 14 Sep 2004 08:08:23 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF8MIb077240 for ; Tue, 14 Sep 2004 08:08:22 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EF8M1T077239 for xorp-cvs@icir.org; Tue, 14 Sep 2004 15:08:22 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 15:08:22 GMT From: Bruce Simpson Message-Id: <200409141508.i8EF8M1T077239@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 15:08:22 UTC XORP CVS repository Added files: fea firewall.cc Log message: Break out set_fw_provider() function into a separate file. Revision Changes Path 1.1 +78 -0 xorp/fea/firewall.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:27 2005 Subject: No subject Tue Sep 14 15:09:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 08:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EFA1Ut035749 for ; Tue, 14 Sep 2004 08:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EFA1NK082426 for ; Tue, 14 Sep 2004 08:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EFA0Be022071; Tue, 14 Sep 2004 08:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EF9NBe022055 for ; Tue, 14 Sep 2004 08:09:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF9NNK082414 for ; Tue, 14 Sep 2004 08:09:23 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EF9NIb078461 for ; Tue, 14 Sep 2004 08:09:23 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EF9N1f078460 for xorp-cvs@icir.org; Tue, 14 Sep 2004 15:09:23 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 15:09:23 GMT From: Bruce Simpson Message-Id: <200409141509.i8EF9N1f078460@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 15:09:23 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Log message: Add firewall providers to the build. Regen. Revision Changes Path 1.40 +8 -1 xorp/fea/Makefile.am 1.51 +11 -3 xorp/fea/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 16:47:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 09:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EGm1rE056101 for ; Tue, 14 Sep 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGm1NK083719 for ; Tue, 14 Sep 2004 09:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGm1Be025484; Tue, 14 Sep 2004 09:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGlQBe025461 for ; Tue, 14 Sep 2004 09:47:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGlQNK083711 for ; Tue, 14 Sep 2004 09:47:26 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGlQIb079676 for ; Tue, 14 Sep 2004 09:47:26 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EGlQdn079675 for xorp-cvs@icir.org; Tue, 14 Sep 2004 16:47:26 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 16:47:26 GMT From: Bruce Simpson Message-Id: <200409141647.i8EGlQdn079675@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 16:47:26 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Make the abstract base class destructor concrete. It can't be abstract, and it must always be virtual. Revision Changes Path 1.7 +4 -2 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 16:47:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 09:48:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EGm3Y6056128 for ; Tue, 14 Sep 2004 09:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGm3NK083721 for ; Tue, 14 Sep 2004 09:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGm3Be025496; Tue, 14 Sep 2004 09:48:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGlfBe025469 for ; Tue, 14 Sep 2004 09:47:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGleNK083715 for ; Tue, 14 Sep 2004 09:47:40 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGleIb079711 for ; Tue, 14 Sep 2004 09:47:40 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EGlev7079710 for xorp-cvs@icir.org; Tue, 14 Sep 2004 16:47:40 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 16:47:40 GMT From: Bruce Simpson Message-Id: <200409141647.i8EGlev7079710@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 16:47:40 UTC XORP CVS repository Modified files: fea firewall_ipf.cc Log message: Add two missing method stubs. Implementation to follow. Revision Changes Path 1.4 +17 -1 xorp/fea/firewall_ipf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 16:47:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 09:48:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EGm4rZ056143 for ; Tue, 14 Sep 2004 09:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGm4NK083723 for ; Tue, 14 Sep 2004 09:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGm4Be025507; Tue, 14 Sep 2004 09:48:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EGlrBe025477 for ; Tue, 14 Sep 2004 09:47:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGlrNK083717 for ; Tue, 14 Sep 2004 09:47:53 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EGlrIb079746 for ; Tue, 14 Sep 2004 09:47:53 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EGlr1d079745 for xorp-cvs@icir.org; Tue, 14 Sep 2004 16:47:53 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 16:47:53 GMT From: Bruce Simpson Message-Id: <200409141647.i8EGlr1d079745@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 16:47:53 UTC XORP CVS repository Modified files: fea xrl_firewall.cc Log message: Add call to FwProvider::set_fw_provider(), to actually instantiate the underlying provider (when the rtmgr sees a provider directive and invokes the XRL). Revision Changes Path 1.3 +4 -13 xorp/fea/xrl_firewall.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 17:04:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 10:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EH52XC059428 for ; Tue, 14 Sep 2004 10:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH52NK083994 for ; Tue, 14 Sep 2004 10:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EH51Be026249; Tue, 14 Sep 2004 10:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EH44Be026210 for ; Tue, 14 Sep 2004 10:04:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH44NK083981 for ; Tue, 14 Sep 2004 10:04:04 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH44Ib079918 for ; Tue, 14 Sep 2004 10:04:04 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EH44Fi079917 for xorp-cvs@icir.org; Tue, 14 Sep 2004 17:04:04 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 17:04:04 GMT From: Bruce Simpson Message-Id: <200409141704.i8EH44Fi079917@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 17:04:03 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Add FwProvider to the friend list for FirewallManager. Declare set_fw_provider() as private. Add take_table_ownership() to FwProvider in order that we can cause FwRule instances to be reallocated using the appropriate derived class for the FwProvider subclass in use. Style and comment cleanup. Revision Changes Path 1.8 +9 -20 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 17:04:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 10:05:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8EH53vv059455 for ; Tue, 14 Sep 2004 10:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH53NK083997 for ; Tue, 14 Sep 2004 10:05:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EH53Be026261; Tue, 14 Sep 2004 10:05:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8EH4CBe026220 for ; Tue, 14 Sep 2004 10:04:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH4BNK083983 for ; Tue, 14 Sep 2004 10:04:11 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8EH4BIb079961 for ; Tue, 14 Sep 2004 10:04:11 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8EH4B26079960 for xorp-cvs@icir.org; Tue, 14 Sep 2004 17:04:11 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 17:04:11 GMT From: Bruce Simpson Message-Id: <200409141704.i8EH4B26079960@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 17:04:11 UTC XORP CVS repository Modified files: fea firewall_dummy.hh firewall_ipf.cc firewall_ipf.hh firewall_ipfw.cc firewall_ipfw.hh Log message: Add the take_table_ownership() function. Revision Changes Path 1.4 +7 -2 xorp/fea/firewall_dummy.hh 1.5 +7 -1 xorp/fea/firewall_ipf.cc 1.4 +3 -1 xorp/fea/firewall_ipf.hh 1.4 +7 -1 xorp/fea/firewall_ipfw.cc 1.5 +2 -1 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Tue Sep 14 21:53:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Sep 2004 14:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8ELs1fW015769 for ; Tue, 14 Sep 2004 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ELs1NK087477 for ; Tue, 14 Sep 2004 14:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8ELs1Be006208; Tue, 14 Sep 2004 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8ELriBe006194 for ; Tue, 14 Sep 2004 14:53:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ELriNK087475 for ; Tue, 14 Sep 2004 14:53:44 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ELrhIb082603 for ; Tue, 14 Sep 2004 14:53:44 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8ELrh4H082602 for xorp-cvs@icir.org; Tue, 14 Sep 2004 21:53:43 GMT (envelope-from bms) Date: Tue, 14 Sep 2004 21:53:43 GMT From: Bruce Simpson Message-Id: <200409142153.i8ELrh4H082602@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-14 21:53:43 UTC XORP CVS repository Modified files: fea firewall_iptables.hh Log message: Correct a method signature. Bug found by: pavlin Revision Changes Path 1.4 +2 -2 xorp/fea/firewall_iptables.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 18:39:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 11:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FIe1hw007002 for ; Wed, 15 Sep 2004 11:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIe1NK002469 for ; Wed, 15 Sep 2004 11:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIe1Be011241; Wed, 15 Sep 2004 11:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIdrBe011216 for ; Wed, 15 Sep 2004 11:39:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIdqNK002464 for ; Wed, 15 Sep 2004 11:39:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIdqIb093350 for ; Wed, 15 Sep 2004 11:39:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FIdq1b093349 for xorp-cvs@icir.org; Wed, 15 Sep 2004 18:39:52 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 18:39:52 GMT From: Pavlin Radoslavov Message-Id: <200409151839.i8FIdq1b093349@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 18:39:52 UTC XORP CVS repository Modified files: . README Log message: Replace compiler "3.4.0 20040310 (prerelease)" with "3.4.2 20040827 (prerelease) [FreeBSD]" Revision Changes Path 1.27 +2 -2 xorp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 18:42:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 11:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FIh1S7007757 for ; Wed, 15 Sep 2004 11:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIh1NK002517 for ; Wed, 15 Sep 2004 11:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIh1Be011380; Wed, 15 Sep 2004 11:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIgSBe011359 for ; Wed, 15 Sep 2004 11:42:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIgRNK002511 for ; Wed, 15 Sep 2004 11:42:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIgRIb093423 for ; Wed, 15 Sep 2004 11:42:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FIgRP6093422 for xorp-cvs@icir.org; Wed, 15 Sep 2004 18:42:27 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 18:42:27 GMT From: Pavlin Radoslavov Message-Id: <200409151842.i8FIgRP6093422@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 18:42:27 UTC XORP CVS repository Modified files: . ERRATA Log message: Add an ERRATA entry that the following compiler is known to be buggy, and should not be used: gcc34 (GCC) 3.4.0 20040310 (prerelease) [FreeBSD] Revision Changes Path 1.17 +7 -1 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 18:43:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 11:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FIi1oh008017 for ; Wed, 15 Sep 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIi1NK002539 for ; Wed, 15 Sep 2004 11:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIi1Be011424; Wed, 15 Sep 2004 11:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIhvBe011417 for ; Wed, 15 Sep 2004 11:43:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIhvNK002537 for ; Wed, 15 Sep 2004 11:43:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIhvIb093476 for ; Wed, 15 Sep 2004 11:43:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FIhv4E093475 for xorp-cvs@icir.org; Wed, 15 Sep 2004 18:43:57 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 18:43:57 GMT From: Pavlin Radoslavov Message-Id: <200409151843.i8FIhv4E093475@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 18:43:57 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update the build notes for FreeBSD that the following compiler is known to be buggy and should be avoided: gcc34 (GCC) 3.4.0 20040310 (prerelease) [FreeBSD] Revision Changes Path 1.19 +8 -2 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 18:47:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 11:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FIm0RZ008960 for ; Wed, 15 Sep 2004 11:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIm0NK002596 for ; Wed, 15 Sep 2004 11:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIm0Be011592; Wed, 15 Sep 2004 11:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FIlRBe011572 for ; Wed, 15 Sep 2004 11:47:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIlRNK002584 for ; Wed, 15 Sep 2004 11:47:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FIlRIb093639 for ; Wed, 15 Sep 2004 11:47:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FIlQOu093638 for xorp-cvs@icir.org; Wed, 15 Sep 2004 18:47:27 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 18:47:27 GMT From: Pavlin Radoslavov Message-Id: <200409151847.i8FIlQOu093638@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 18:47:26 UTC XORP CVS repository Modified files: fea ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Add a new flag "is_deleted" to methods IfConfigSet::config_interface() and IfConfigSet::config_vif() Revision Changes Path 1.15 +4 -3 xorp/fea/ifconfig_set.cc 1.18 +13 -6 xorp/fea/ifconfig_set.hh 1.13 +12 -5 xorp/fea/ifconfig_set_dummy.cc 1.29 +23 -9 xorp/fea/ifconfig_set_ioctl.cc 1.15 +24 -9 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 19:27:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FJS17g031089 for ; Wed, 15 Sep 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJS1NK003071 for ; Wed, 15 Sep 2004 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FJS1Be013000; Wed, 15 Sep 2004 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FJRJBe012981 for ; Wed, 15 Sep 2004 12:27:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJRINK003065 for ; Wed, 15 Sep 2004 12:27:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJRIIb094061 for ; Wed, 15 Sep 2004 12:27:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FJRIf5094060 for xorp-cvs@icir.org; Wed, 15 Sep 2004 19:27:18 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 19:27:18 GMT From: Pavlin Radoslavov Message-Id: <200409151927.i8FJRIf5094060@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 19:27:18 UTC XORP CVS repository Modified files: fea iftree.hh Log message: * Fix some of the kdoc comments to represent reality. * Kdoc nits. Revision Changes Path 1.21 +6 -7 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Wed Sep 15 19:29:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Sep 2004 12:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8FJU1RD031610 for ; Wed, 15 Sep 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJU1NK003090 for ; Wed, 15 Sep 2004 12:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FJU1Be013104; Wed, 15 Sep 2004 12:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8FJTrBe013092 for ; Wed, 15 Sep 2004 12:29:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJTrNK003083 for ; Wed, 15 Sep 2004 12:29:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8FJTqIb094117 for ; Wed, 15 Sep 2004 12:29:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8FJTqBk094116 for xorp-cvs@icir.org; Wed, 15 Sep 2004 19:29:52 GMT (envelope-from pavlin) Date: Wed, 15 Sep 2004 19:29:52 GMT From: Pavlin Radoslavov Message-Id: <200409151929.i8FJTqBk094116@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-15 19:29:52 UTC XORP CVS repository Modified files: fea iftree.hh Log message: "ifn" -> "ifname" (for consistency with the rest of the code) Revision Changes Path 1.22 +9 -9 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 07:14:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 00:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8G7F2ji011750 for ; Thu, 16 Sep 2004 00:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7F2NK010419 for ; Thu, 16 Sep 2004 00:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7F1Be003250; Thu, 16 Sep 2004 00:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7EJBe003218 for ; Thu, 16 Sep 2004 00:14:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7EINK010402 for ; Thu, 16 Sep 2004 00:14:18 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7EIIb099129 for ; Thu, 16 Sep 2004 00:14:18 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8G7EICI099128 for xorp-cvs@icir.org; Thu, 16 Sep 2004 07:14:18 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 07:14:18 GMT From: Bruce Simpson Message-Id: <200409160714.i8G7EICI099128@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 07:14:18 UTC XORP CVS repository Modified files: fea firewall_ipf.cc Log message: Misc compilation fixes. Submitted by: pavlin Revision Changes Path 1.6 +6 -2 xorp/fea/firewall_ipf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 07:16:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 00:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8G7H1Ur012160 for ; Thu, 16 Sep 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7H1NK010455 for ; Thu, 16 Sep 2004 00:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7H1Be003323; Thu, 16 Sep 2004 00:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7GWBe003310 for ; Thu, 16 Sep 2004 00:16:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7GWNK010450 for ; Thu, 16 Sep 2004 00:16:32 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7GWIb099200 for ; Thu, 16 Sep 2004 00:16:32 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8G7GWQq099199 for xorp-cvs@icir.org; Thu, 16 Sep 2004 07:16:32 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 07:16:32 GMT From: Bruce Simpson Message-Id: <200409160716.i8G7GWQq099199@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 07:16:32 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc Log message: Misc compilation fixes. Submitted by: pavlin Revision Changes Path 1.5 +8 -4 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 07:19:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 00:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8G7K1ib012744 for ; Thu, 16 Sep 2004 00:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7K1NK010486 for ; Thu, 16 Sep 2004 00:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7K0Be003412; Thu, 16 Sep 2004 00:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8G7JABe003392 for ; Thu, 16 Sep 2004 00:19:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7JANK010476 for ; Thu, 16 Sep 2004 00:19:10 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8G7JAIb099248 for ; Thu, 16 Sep 2004 00:19:10 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8G7JAkG099247 for xorp-cvs@icir.org; Thu, 16 Sep 2004 07:19:10 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 07:19:10 GMT From: Bruce Simpson Message-Id: <200409160719.i8G7JAkG099247@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 07:19:10 UTC XORP CVS repository Modified files: fea firewall_iptables.hh Log message: Trim unused members. Revision Changes Path 1.5 +1 -3 xorp/fea/firewall_iptables.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 10:39:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 03:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GAe2Tj052804 for ; Thu, 16 Sep 2004 03:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAe1NK012946 for ; Thu, 16 Sep 2004 03:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAe1nk008626; Thu, 16 Sep 2004 03:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAdNnk008603 for ; Thu, 16 Sep 2004 03:39:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAdNNK012939 for ; Thu, 16 Sep 2004 03:39:23 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAdNIb001196 for ; Thu, 16 Sep 2004 03:39:23 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GAdNEo001195 for xorp-cvs@icir.org; Thu, 16 Sep 2004 10:39:23 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 10:39:23 GMT From: Bruce Simpson Message-Id: <200409161039.i8GAdNEo001195@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 10:39:23 UTC XORP CVS repository Modified files: fea firewall_ipf.hh Log message: Catch up with semantic change in the FwRule definition. Revision Changes Path 1.5 +4 -4 xorp/fea/firewall_ipf.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 10:39:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 03:40:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GAeCVD052864 for ; Thu, 16 Sep 2004 03:40:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAeCNK012967 for ; Thu, 16 Sep 2004 03:40:12 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAeBnk008641; Thu, 16 Sep 2004 03:40:12 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAd2nk008589 for ; Thu, 16 Sep 2004 03:39:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAd2NK012936 for ; Thu, 16 Sep 2004 03:39:02 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAd2Ib001153 for ; Thu, 16 Sep 2004 03:39:02 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GAd17u001152 for xorp-cvs@icir.org; Thu, 16 Sep 2004 10:39:01 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 10:39:01 GMT From: Bruce Simpson Message-Id: <200409161039.i8GAd17u001152@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 10:39:01 UTC XORP CVS repository Modified files: fea firewall.hh Log message: Fix a nasty semantic bug in the FwRule definition, which took me a while to diagnose and fix. Templatize the definition based on the IP family, not on the representation type used to hold source and destination (IPNet vs IPv4 alone). This was causing problems with things like deferred method definitions, constructors, etc. Also add derived firewall classes as friends of FirewallManager as they need to access the tables directly, and corresponding forward class declarations. (Maybe a public accessor is more appropriate here?) Revision Changes Path 1.9 +23 -12 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 10:39:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 03:40:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GAeD8w052889 for ; Thu, 16 Sep 2004 03:40:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAeDNK012969 for ; Thu, 16 Sep 2004 03:40:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAeDnk008653; Thu, 16 Sep 2004 03:40:13 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAdlnk008614 for ; Thu, 16 Sep 2004 03:39:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAdlNK012941 for ; Thu, 16 Sep 2004 03:39:47 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAdlIb001239 for ; Thu, 16 Sep 2004 03:39:47 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GAdl04001238 for xorp-cvs@icir.org; Thu, 16 Sep 2004 10:39:47 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 10:39:47 GMT From: Bruce Simpson Message-Id: <200409161039.i8GAdl04001238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 10:39:46 UTC XORP CVS repository Modified files: fea firewall_iptables.hh Log message: Catch up with semantic change in the FwRule definition. Revision Changes Path 1.6 +4 -4 xorp/fea/firewall_iptables.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:28 2005 Subject: No subject Thu Sep 16 10:42:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 03:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GAh1Pa053436 for ; Thu, 16 Sep 2004 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAh1NK012988 for ; Thu, 16 Sep 2004 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAh1nk008761; Thu, 16 Sep 2004 03:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GAgAnk008737 for ; Thu, 16 Sep 2004 03:42:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAgANK012982 for ; Thu, 16 Sep 2004 03:42:10 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GAgAIb001309 for ; Thu, 16 Sep 2004 03:42:10 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GAgAvU001308 for xorp-cvs@icir.org; Thu, 16 Sep 2004 10:42:10 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 10:42:10 GMT From: Bruce Simpson Message-Id: <200409161042.i8GAgAvU001308@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 10:42:10 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Catch up with semantic change in the FwRule definition. Ensure appropriate templatization. Add a copy constructor for assignment (by new or on stack) from an FwRule. Forbid direct instantiation of IpfwFwRule without an FwRule as source, as this makes no sense right now. Add a protected index member, in case we have to reload a rule during synchronization... Revision Changes Path 1.6 +13 -5 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Thu Sep 16 11:42:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 04:43:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GBh4WC064993 for ; Thu, 16 Sep 2004 04:43:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBh4NK013594 for ; Thu, 16 Sep 2004 04:43:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBh1nk010248; Thu, 16 Sep 2004 04:43:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBg4nk010211 for ; Thu, 16 Sep 2004 04:42:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBg4NK013586 for ; Thu, 16 Sep 2004 04:42:04 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBg4Ib001866 for ; Thu, 16 Sep 2004 04:42:04 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GBg3ed001865 for xorp-cvs@icir.org; Thu, 16 Sep 2004 11:42:03 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 11:42:03 GMT From: Bruce Simpson Message-Id: <200409161142.i8GBg3ed001865@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 11:42:03 UTC XORP CVS repository Modified files: fea firewall.cc Log message: Uncomment the call to take_table_ownership(), upon changing providers. Revision Changes Path 1.2 +2 -2 xorp/fea/firewall.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Thu Sep 16 11:42:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 04:43:30 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GBhUuv065092 for ; Thu, 16 Sep 2004 04:43:30 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBhUNK013600 for ; Thu, 16 Sep 2004 04:43:30 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBhRnk010285; Thu, 16 Sep 2004 04:43:29 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBgTnk010225 for ; Thu, 16 Sep 2004 04:42:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBgTNK013590 for ; Thu, 16 Sep 2004 04:42:29 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBgTIb001901 for ; Thu, 16 Sep 2004 04:42:29 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GBgT4E001900 for xorp-cvs@icir.org; Thu, 16 Sep 2004 11:42:29 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 11:42:29 GMT From: Bruce Simpson Message-Id: <200409161142.i8GBgT4E001900@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 11:42:29 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc Log message: Provide a definition of take_table_ownership() for the IPFW provider subsystem. Add a comment about moving the method for converting rules from XORP to IPFW to be closer to the IpfwFwRule class itself. Add specialized template functions to fulfil the above objective, to catch up with changes to the header file. Define only IPv4 and IPv6 specializations as other conversions make no sense. Revision Changes Path 1.6 +51 -1 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Thu Sep 16 11:43:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Sep 2004 04:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8GBi2dr065197 for ; Thu, 16 Sep 2004 04:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBi2NK013611 for ; Thu, 16 Sep 2004 04:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBi1nk010307; Thu, 16 Sep 2004 04:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8GBhJnk010277 for ; Thu, 16 Sep 2004 04:43:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBhJNK013596 for ; Thu, 16 Sep 2004 04:43:19 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8GBhJIb001936 for ; Thu, 16 Sep 2004 04:43:19 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8GBhJwB001935 for xorp-cvs@icir.org; Thu, 16 Sep 2004 11:43:19 GMT (envelope-from bms) Date: Thu, 16 Sep 2004 11:43:19 GMT From: Bruce Simpson Message-Id: <200409161143.i8GBhJwB001935@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-16 11:43:19 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Use deferred definition for templatized IpfwFwRule constructor. Forward-declare the XORP->IPFW conversion function as a templatized generic function. Call this function in the deferred definition of the IpfwFwRule constructor. Revision Changes Path 1.7 +19 -2 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 07:51:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 00:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H7q1sP022380 for ; Fri, 17 Sep 2004 00:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7q1NK030528 for ; Fri, 17 Sep 2004 00:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H7q1nk017707; Fri, 17 Sep 2004 00:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H7pdnk017685 for ; Fri, 17 Sep 2004 00:51:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7pdNK030525 for ; Fri, 17 Sep 2004 00:51:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7pdIb013383 for ; Fri, 17 Sep 2004 00:51:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H7pdD5013382 for xorp-cvs@icir.org; Fri, 17 Sep 2004 07:51:39 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 07:51:39 GMT From: Pavlin Radoslavov Message-Id: <200409170751.i8H7pdD5013382@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 07:51:39 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: * Rename variables: or -> old_rule nw -> new_rule Apparently, gcc-3.4.2 doesn't like a variable being named "or" * Add missing UNUSED(foo) Revision Changes Path 1.8 +7 -5 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 07:52:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 00:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H7r1jP022583 for ; Fri, 17 Sep 2004 00:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7r1NK030538 for ; Fri, 17 Sep 2004 00:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H7r1nk017753; Fri, 17 Sep 2004 00:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H7q3nk017718 for ; Fri, 17 Sep 2004 00:52:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7q3NK030530 for ; Fri, 17 Sep 2004 00:52:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H7q3Ib013416 for ; Fri, 17 Sep 2004 00:52:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H7q3XJ013415 for xorp-cvs@icir.org; Fri, 17 Sep 2004 07:52:03 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 07:52:03 GMT From: Pavlin Radoslavov Message-Id: <200409170752.i8H7q3XJ013415@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 07:52:03 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc Log message: Rename variables: or -> old_rule nw -> new_rule Apparently, gcc-3.4.2 doesn't like a variable being named "or" Revision Changes Path 1.7 +7 -7 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 08:10:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 01:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H8B13S026157 for ; Fri, 17 Sep 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H8B1NK030804 for ; Fri, 17 Sep 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H8B1GF018227; Fri, 17 Sep 2004 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H8AiGF018218 for ; Fri, 17 Sep 2004 01:10:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H8AhNK030800 for ; Fri, 17 Sep 2004 01:10:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H8AhIb013750 for ; Fri, 17 Sep 2004 01:10:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H8AhYx013749 for xorp-cvs@icir.org; Fri, 17 Sep 2004 08:10:43 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 08:10:43 GMT From: Pavlin Radoslavov Message-Id: <200409170810.i8H8AhYx013749@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 08:10:43 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Add missing #include This is needed to fix a compilation error on FreeBSD-5.3-BETA1 because of missing IFNAMSIZ. Bug found by: Dikshie Revision Changes Path 1.9 +2 -1 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 09:48:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 02:52:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H9q78X049011 for ; Fri, 17 Sep 2004 02:52:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9q7NK032333 for ; Fri, 17 Sep 2004 02:52:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9q3GF020828; Fri, 17 Sep 2004 02:52:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9mVGF020688 for ; Fri, 17 Sep 2004 02:48:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9mVNK032264 for ; Fri, 17 Sep 2004 02:48:31 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9mVIb014717 for ; Fri, 17 Sep 2004 02:48:31 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H9mVFt014716 for xorp-cvs@icir.org; Fri, 17 Sep 2004 09:48:31 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 09:48:31 GMT From: Andrea Bittau Message-Id: <200409170948.i8H9mVFt014716@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/backend Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 09:48:31 UTC XORP CVS repository Log message: Directory /usr/local/www/data/cvs/xorp/policy/backend added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 09:49:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 02:52:25 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H9qPmZ049125 for ; Fri, 17 Sep 2004 02:52:25 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9qPNK032335 for ; Fri, 17 Sep 2004 02:52:25 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9qOGF020844; Fri, 17 Sep 2004 02:52:25 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9nxGF020732 for ; Fri, 17 Sep 2004 02:49:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9nxNK032278 for ; Fri, 17 Sep 2004 02:49:59 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9nxIb014790 for ; Fri, 17 Sep 2004 02:49:59 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H9nxYL014789 for xorp-cvs@icir.org; Fri, 17 Sep 2004 09:49:59 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 09:49:59 GMT From: Andrea Bittau Message-Id: <200409170949.i8H9nxYL014789@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/common Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 09:49:59 UTC XORP CVS repository Log message: Directory /usr/local/www/data/cvs/xorp/policy/common added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 09:50:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 02:52:27 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8H9qRpX049140 for ; Fri, 17 Sep 2004 02:52:27 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9qRNK032337 for ; Fri, 17 Sep 2004 02:52:27 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9qQGF020855; Fri, 17 Sep 2004 02:52:26 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8H9okGF020767 for ; Fri, 17 Sep 2004 02:50:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9okNK032309 for ; Fri, 17 Sep 2004 02:50:46 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8H9okIb014836 for ; Fri, 17 Sep 2004 02:50:46 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8H9okMw014835 for xorp-cvs@icir.org; Fri, 17 Sep 2004 09:50:46 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 09:50:46 GMT From: Andrea Bittau Message-Id: <200409170950.i8H9okMw014835@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 09:50:46 UTC XORP CVS repository Log message: Directory /usr/local/www/data/cvs/xorp/policy/test added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 13:20:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 06:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HDL1aP023101 for ; Fri, 17 Sep 2004 06:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDL0NK034756 for ; Fri, 17 Sep 2004 06:21:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDL0GF027861; Fri, 17 Sep 2004 06:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDKcGF027850 for ; Fri, 17 Sep 2004 06:20:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDKcNK034754 for ; Fri, 17 Sep 2004 06:20:38 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDKcIb017415 for ; Fri, 17 Sep 2004 06:20:38 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDKcw0017414 for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:20:38 GMT (envelope-from mjh) Date: Fri, 17 Sep 2004 13:20:38 GMT From: Mark Handley Message-Id: <200409171320.i8HDKcw0017414@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: CVSROOT Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: CVSROOT Changes by: mjh@xorpc.icir.org 2004-09-17 13:20:38 UTC XORP CVS repository Modified files: . access.core Log message: Add Andrea Bittau to committers, as per discussion last week. Primarily working on policy framework. Revision Changes Path 1.2 +2 -1 CVSROOT/access.core _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 14:00:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 07:01:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HE17GW030924 for ; Fri, 17 Sep 2004 07:01:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE17NK035200 for ; Fri, 17 Sep 2004 07:01:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HE11GF028897; Fri, 17 Sep 2004 07:01:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HE0oGF028887 for ; Fri, 17 Sep 2004 07:00:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE0oNK035196 for ; Fri, 17 Sep 2004 07:00:50 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE0oIb018649 for ; Fri, 17 Sep 2004 07:00:50 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HE0oFP018648 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:00:50 GMT (envelope-from bms) Date: Fri, 17 Sep 2004 14:00:50 GMT From: Bruce Simpson Message-Id: <200409171400.i8HE0oFP018648@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-17 14:00:50 UTC XORP CVS repository Modified files: . config.h.in configure configure.in Log message: Modify the existing IPFW test to fail for the IPFW2 case. Add a test for IPFW2, and an appropriate define, HAVE_FIREWALL_IPFW2. Regen. Revision Changes Path 1.37 +3 -0 xorp/config.h.in 1.123 +79 -0 xorp/configure 1.115 +33 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 13:49:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFX3vO050175 for ; Fri, 17 Sep 2004 08:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFX2NK037495 for ; Fri, 17 Sep 2004 08:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFX0GF001443; Fri, 17 Sep 2004 08:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDn3GF028576 for ; Fri, 17 Sep 2004 06:49:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDn3NK035035 for ; Fri, 17 Sep 2004 06:49:03 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDn2Ib018129 for ; Fri, 17 Sep 2004 06:49:02 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDn2kN018128 for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:49:02 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 13:49:02 GMT From: Andrea Bittau Message-Id: <200409171349.i8HDn2kN018128@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy xorp/policy/backend xorp/policy/common xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 13:49:02 UTC XORP CVS repository Modified files: policy .cvsignore Makefile.am Makefile.in policy_module.h term.cc term.hh Added files: policy BUGS code.cc code.hh code_generator.cc code_generator.hh code_list.cc code_list.hh configuration.cc configuration.hh dependancy.hh export_code_generator.cc export_code_generator.hh filter_manager.cc filter_manager.hh filter_manager_base.hh lex.yy_policy_parser.cc node.hh node_base.hh parser.cc parser.hh policy.l policy.y policy_list.cc policy_list.hh policy_map.cc policy_map.hh policy_parser.hh policy_statement.cc policy_statement.hh policy_target.cc policy_target.hh process_watch.cc process_watch.hh process_watch_base.hh pw_notifier.hh semantic_varrw.cc semantic_varrw.hh set_map.cc set_map.hh source_match_code_generator.cc source_match_code_generator.hh var_map.cc var_map.hh visitor.hh visitor_semantic.cc visitor_semantic.hh visitor_setdep.cc visitor_setdep.hh xorp_policy.cc xrl_target.cc xrl_target.hh yacc.yy_policy_parser.cc yacc.yy_policy_parser.cc.h policy/backend Makefile.am Makefile.in backend.l backend.y instr_visitor.hh instruction.hh instruction_base.hh iv_exec.cc iv_exec.hh lex.yy_policy_backend_parser.cc policy_backend_parser.hh policy_filter.cc policy_filter.hh policy_filters.cc policy_filters.hh policy_instr.hh policy_redist_map.cc policy_redist_map.hh policytags.cc policytags.hh set_manager.cc set_manager.hh single_varrw.cc single_varrw.hh term_instr.hh yacc.yy_policy_backend_parser.cc yacc.yy_policy_backend_parser.cc.h policy/common Makefile.am Makefile.in dispatcher.cc dispatcher.hh elem_null.hh elem_set.cc elem_set.hh element.cc element.hh element_base.hh element_factory.cc element_factory.hh filter.cc filter.hh operator.hh operator_base.hh policy_exception.hh policy_utils.cc policy_utils.hh register_elements.cc register_elements.hh register_operations.cc register_operations.hh varrw.hh policy/test Makefile.am Makefile.in compilepolicy.cc compilepolicy.l compilepolicy.y dummy_test.sh execpolicy.cc file_varrw.cc file_varrw.hh filter_manager_fake.cc filter_manager_fake.hh lex.yy_compile_policy.cc policy1.src policy1.var policy2.src policy2.var policyvarmap.conf process_watch_fake.cc process_watch_fake.hh test_policy.sh yacc.yy_compile_policy.cc yacc.yy_compile_policy.cc.h Removed files: policy action.cc action.hh from.cc from.hh policy_route.cc policy_route.hh statement.cc statement.hh test_policy.cc then.cc then.hh to.cc to.hh Log message: Initial import for policy based route filtering an redistribution. Revision Changes Path 1.3 +1 -1 xorp/policy/.cvsignore 1.1 +14 -0 xorp/policy/BUGS (new) 1.7 +80 -44 xorp/policy/Makefile.am 1.19 +195 -133 xorp/policy/Makefile.in 1.4 +0 -53 xorp/policy/action.cc (dead) 1.4 +0 -47 xorp/policy/action.hh (dead) 1.1 +48 -0 xorp/policy/backend/Makefile.am (new) 1.1 +339 -0 xorp/policy/backend/Makefile.in (new) 1.1 +165 -0 xorp/policy/backend/backend.l (new) 1.1 +146 -0 xorp/policy/backend/backend.y (new) 1.1 +58 -0 xorp/policy/backend/instr_visitor.hh (new) 1.1 +270 -0 xorp/policy/backend/instruction.hh (new) 1.1 +46 -0 xorp/policy/backend/instruction_base.hh (new) 1.1 +308 -0 xorp/policy/backend/iv_exec.cc (new) 1.1 +172 -0 xorp/policy/backend/iv_exec.hh (new) 1.1 +1849 -0 xorp/policy/backend/lex.yy_policy_backend_parser.cc (new) 1.1 +65 -0 xorp/policy/backend/policy_backend_parser.hh (new) 1.1 +91 -0 xorp/policy/backend/policy_filter.cc (new) 1.1 +83 -0 xorp/policy/backend/policy_filter.hh (new) 1.1 +60 -0 xorp/policy/backend/policy_filters.cc (new) 1.1 +90 -0 xorp/policy/backend/policy_filters.hh (new) 1.1 +64 -0 xorp/policy/backend/policy_instr.hh (new) 1.1 +68 -0 xorp/policy/backend/policy_redist_map.cc (new) 1.1 +69 -0 xorp/policy/backend/policy_redist_map.hh (new) 1.1 +126 -0 xorp/policy/backend/policytags.cc (new) 1.1 +111 -0 xorp/policy/backend/policytags.hh (new) 1.1 +56 -0 xorp/policy/backend/set_manager.cc (new) 1.1 +77 -0 xorp/policy/backend/set_manager.hh (new) 1.1 +103 -0 xorp/policy/backend/single_varrw.cc (new) 1.1 +131 -0 xorp/policy/backend/single_varrw.hh (new) 1.1 +63 -0 xorp/policy/backend/term_instr.hh (new) 1.1 +619 -0 xorp/policy/backend/yacc.yy_policy_backend_parser.cc (new) 1.1 +37 -0 xorp/policy/backend/yacc.yy_policy_backend_parser.cc.h (new) 1.1 +116 -0 xorp/policy/code.cc (new) 1.1 +101 -0 xorp/policy/code.hh (new) 1.1 +191 -0 xorp/policy/code_generator.cc (new) 1.1 +106 -0 xorp/policy/code_generator.hh (new) 1.1 +93 -0 xorp/policy/code_list.cc (new) 1.1 +86 -0 xorp/policy/code_list.hh (new) 1.1 +31 -0 xorp/policy/common/Makefile.am (new) 1.1 +326 -0 xorp/policy/common/Makefile.in (new) 1.1 +128 -0 xorp/policy/common/dispatcher.cc (new) 1.1 +232 -0 xorp/policy/common/dispatcher.hh (new) 1.1 +44 -0 xorp/policy/common/elem_null.hh (new) 1.1 +155 -0 xorp/policy/common/elem_set.cc (new) 1.1 +160 -0 xorp/policy/common/elem_set.hh (new) 1.1 +32 -0 xorp/policy/common/element.cc (new) 1.1 +236 -0 xorp/policy/common/element.hh (new) 1.1 +64 -0 xorp/policy/common/element_base.hh (new) 1.1 +48 -0 xorp/policy/common/element_factory.cc (new) 1.1 +131 -0 xorp/policy/common/element_factory.hh (new) 1.1 +33 -0 xorp/policy/common/filter.cc (new) 1.1 +54 -0 xorp/policy/common/filter.hh (new) 1.1 +66 -0 xorp/policy/common/operator.hh (new) 1.1 +78 -0 xorp/policy/common/operator_base.hh (new) 1.1 +46 -0 xorp/policy/common/policy_exception.hh (new) 1.1 +118 -0 xorp/policy/common/policy_utils.cc (new) 1.1 +157 -0 xorp/policy/common/policy_utils.hh (new) 1.1 +88 -0 xorp/policy/common/register_elements.cc (new) 1.1 +35 -0 xorp/policy/common/register_elements.hh (new) 1.1 +237 -0 xorp/policy/common/register_operations.cc (new) 1.1 +36 -0 xorp/policy/common/register_operations.hh (new) 1.1 +82 -0 xorp/policy/common/varrw.hh (new) 1.1 +552 -0 xorp/policy/configuration.cc (new) 1.1 +342 -0 xorp/policy/configuration.hh (new) 1.1 +300 -0 xorp/policy/dependancy.hh (new) 1.1 +67 -0 xorp/policy/export_code_generator.cc (new) 1.1 +50 -0 xorp/policy/export_code_generator.hh (new) 1.1 +343 -0 xorp/policy/filter_manager.cc (new) 1.1 +213 -0 xorp/policy/filter_manager.hh (new) 1.1 +52 -0 xorp/policy/filter_manager_base.hh (new) 1.5 +0 -33 xorp/policy/from.cc (dead) 1.4 +0 -32 xorp/policy/from.hh (dead) 1.1 +2870 -0 xorp/policy/lex.yy_policy_parser.cc (new) 1.1 +328 -0 xorp/policy/node.hh (new) 1.1 +61 -0 xorp/policy/node_base.hh (new) 1.1 +48 -0 xorp/policy/parser.cc (new) 1.1 +56 -0 xorp/policy/parser.hh (new) 1.1 +180 -0 xorp/policy/policy.l (new) 1.1 +123 -0 xorp/policy/policy.y (new) 1.1 +288 -0 xorp/policy/policy_list.cc (new) 1.1 +177 -0 xorp/policy/policy_list.hh (new) 1.1 +56 -0 xorp/policy/policy_map.cc (new) 1.1 +100 -0 xorp/policy/policy_map.hh (new) 1.3 +15 -26 xorp/policy/policy_module.h 1.1 +55 -0 xorp/policy/policy_parser.hh (new) 1.6 +0 -39 xorp/policy/policy_route.cc (dead) 1.5 +0 -79 xorp/policy/policy_route.hh (dead) 1.1 +159 -0 xorp/policy/policy_statement.cc (new) 1.1 +144 -0 xorp/policy/policy_statement.hh (new) 1.1 +167 -0 xorp/policy/policy_target.cc (new) 1.1 +234 -0 xorp/policy/policy_target.hh (new) 1.1 +90 -0 xorp/policy/process_watch.cc (new) 1.1 +121 -0 xorp/policy/process_watch.hh (new) 1.1 +38 -0 xorp/policy/process_watch_base.hh (new) 1.1 +49 -0 xorp/policy/pw_notifier.hh (new) 1.1 +73 -0 xorp/policy/semantic_varrw.cc (new) 1.1 +106 -0 xorp/policy/semantic_varrw.hh (new) 1.1 +82 -0 xorp/policy/set_map.cc (new) 1.1 +114 -0 xorp/policy/set_map.hh (new) 1.1 +156 -0 xorp/policy/source_match_code_generator.cc (new) 1.1 +101 -0 xorp/policy/source_match_code_generator.hh (new) 1.5 +0 -61 xorp/policy/statement.cc (dead) 1.4 +0 -37 xorp/policy/statement.hh (dead) 1.4 +87 -18 xorp/policy/term.cc 1.4 +114 -18 xorp/policy/term.hh 1.1 +45 -0 xorp/policy/test/Makefile.am (new) 1.1 +402 -0 xorp/policy/test/Makefile.in (new) 1.1 +350 -0 xorp/policy/test/compilepolicy.cc (new) 1.1 +176 -0 xorp/policy/test/compilepolicy.l (new) 1.1 +141 -0 xorp/policy/test/compilepolicy.y (new) 1.1 +28 -0 xorp/policy/test/dummy_test.sh (new) 1.1 +109 -0 xorp/policy/test/execpolicy.cc (new) 1.1 +136 -0 xorp/policy/test/file_varrw.cc (new) 1.1 +62 -0 xorp/policy/test/file_varrw.hh (new) 1.1 +30 -0 xorp/policy/test/filter_manager_fake.cc (new) 1.1 +28 -0 xorp/policy/test/filter_manager_fake.hh (new) 1.1 +2862 -0 xorp/policy/test/lex.yy_compile_policy.cc (new) 1.1 +14 -0 xorp/policy/test/policy1.src (new) 1.1 +2 -0 xorp/policy/test/policy1.var (new) 1.1 +20 -0 xorp/policy/test/policy2.src (new) 1.1 +2 -0 xorp/policy/test/policy2.var (new) 1.1 +50 -0 xorp/policy/test/policyvarmap.conf (new) 1.1 +25 -0 xorp/policy/test/process_watch_fake.cc (new) 1.1 +27 -0 xorp/policy/test/process_watch_fake.hh (new) 1.1 +42 -0 xorp/policy/test/test_policy.sh (new) 1.1 +534 -0 xorp/policy/test/yacc.yy_compile_policy.cc (new) 1.1 +26 -0 xorp/policy/test/yacc.yy_compile_policy.cc.h (new) 1.3 +0 -21 xorp/policy/test_policy.cc (dead) 1.4 +0 -45 xorp/policy/then.cc (dead) 1.4 +0 -37 xorp/policy/then.hh (dead) 1.4 +0 -32 xorp/policy/to.cc (dead) 1.4 +0 -32 xorp/policy/to.hh (dead) 1.1 +153 -0 xorp/policy/var_map.cc (new) 1.1 +154 -0 xorp/policy/var_map.hh (new) 1.1 +75 -0 xorp/policy/visitor.hh (new) 1.1 +270 -0 xorp/policy/visitor_semantic.cc (new) 1.1 +115 -0 xorp/policy/visitor_semantic.hh (new) 1.1 +149 -0 xorp/policy/visitor_setdep.cc (new) 1.1 +89 -0 xorp/policy/visitor_setdep.hh (new) 1.1 +68 -0 xorp/policy/xorp_policy.cc (new) 1.1 +300 -0 xorp/policy/xrl_target.cc (new) 1.1 +143 -0 xorp/policy/xrl_target.hh (new) 1.1 +671 -0 xorp/policy/yacc.yy_policy_parser.cc (new) 1.1 +40 -0 xorp/policy/yacc.yy_policy_parser.cc.h (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:29 2005 Subject: No subject Fri Sep 17 13:50:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:09 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFX9Q0050212 for ; Fri, 17 Sep 2004 08:33:09 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFX8NK037497 for ; Fri, 17 Sep 2004 08:33:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFX8GF001454; Fri, 17 Sep 2004 08:33:08 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDovGF028648 for ; Fri, 17 Sep 2004 06:50:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDouNK035063 for ; Fri, 17 Sep 2004 06:50:56 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDouIb018246 for ; Fri, 17 Sep 2004 06:50:56 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDouLU018244 for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:50:56 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 13:50:56 GMT From: Andrea Bittau Message-Id: <200409171350.i8HDouLU018244@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 13:50:56 UTC XORP CVS repository Modified files: bgp Makefile.am Makefile.in bgp.cc bgp.hh plumbing.cc plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_base.hh route_table_decision.cc route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_ribin.cc subnet_route.cc subnet_route.hh test_plumbing.cc test_plumbing.hh xrl_target.cc xrl_target.hh Added files: bgp bgp_varrw.cc bgp_varrw.hh route_table_policy.cc route_table_policy.hh route_table_policy_im.cc route_table_policy_im.hh route_table_policy_sm.cc route_table_policy_sm.hh Log message: Support for policy route filtering. Refiltering of routes (route pushing) is experimental. Revision Changes Path 1.32 +10 -1 xorp/bgp/Makefile.am 1.44 +23 -7 xorp/bgp/Makefile.in 1.40 +31 -7 xorp/bgp/bgp.cc 1.30 +33 -3 xorp/bgp/bgp.hh 1.1 +246 -0 xorp/bgp/bgp_varrw.cc (new) 1.1 +103 -0 xorp/bgp/bgp_varrw.hh (new) 1.55 +85 -17 xorp/bgp/plumbing.cc 1.28 +29 -2 xorp/bgp/plumbing.hh 1.55 +25 -11 xorp/bgp/rib_ipc_handler.cc 1.33 +12 -4 xorp/bgp/rib_ipc_handler.hh 1.10 +4 -3 xorp/bgp/route_table_base.hh 1.29 +5 -3 xorp/bgp/route_table_decision.cc 1.38 +14 -1 xorp/bgp/route_table_fanout.cc 1.16 +4 -1 xorp/bgp/route_table_fanout.hh 1.23 +40 -1 xorp/bgp/route_table_filter.cc 1.12 +6 -1 xorp/bgp/route_table_filter.hh 1.1 +300 -0 xorp/bgp/route_table_policy.cc (new) 1.1 +95 -0 xorp/bgp/route_table_policy.hh (new) 1.1 +118 -0 xorp/bgp/route_table_policy_im.cc (new) 1.1 +58 -0 xorp/bgp/route_table_policy_im.hh (new) 1.1 +99 -0 xorp/bgp/route_table_policy_sm.cc (new) 1.1 +67 -0 xorp/bgp/route_table_policy_sm.hh (new) 1.33 +14 -4 xorp/bgp/route_table_ribin.cc 1.14 +8 -3 xorp/bgp/subnet_route.cc 1.15 +24 -1 xorp/bgp/subnet_route.hh 1.10 +4 -3 xorp/bgp/test_plumbing.cc 1.5 +3 -2 xorp/bgp/test_plumbing.hh 1.28 +84 -3 xorp/bgp/xrl_target.cc 1.24 +44 -1 xorp/bgp/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 13:57:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:10 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXA3O050227 for ; Fri, 17 Sep 2004 08:33:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXANK037501 for ; Fri, 17 Sep 2004 08:33:10 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFX9GF001466; Fri, 17 Sep 2004 08:33:10 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDvIGF028789 for ; Fri, 17 Sep 2004 06:57:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDvINK035129 for ; Fri, 17 Sep 2004 06:57:18 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDvHIb018404 for ; Fri, 17 Sep 2004 06:57:17 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDvHTn018403 for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:57:17 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 13:57:17 GMT From: Andrea Bittau Message-Id: <200409171357.i8HDvHTn018403@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip xorp/rip/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 13:57:17 UTC XORP CVS repository Modified files: rip Makefile.am Makefile.in output.hh output_table.cc output_updates.cc port.cc port.hh redist.cc redist.hh route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh test_outputs.cc test_request.cc test_update_queue.cc test_utils.hh xorp_rip_main.cc xrl_redist_manager.cc xrl_redist_manager.hh xrl_rib_notifier.cc xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh rip/tools xrl_rip_shell_funcs.sh xrl_ripng_shell_funcs.sh Added files: rip rip_varrw.cc rip_varrw.hh Log message: Experimental support for policy filtering in RIP. Route pushing will cause the route db to be flushed. Other than route filtering, the following has been added: If a route is learnt from the RIB [route redist], it is saved. If a route from the RouteDB is deleted, the saved RIB routes are checked to see whether a RIB route alternative is available. If so, it is added to the RouteDB. In the previous implementation, it seemed that RIB routes would "get lost" if they were replaced somehow (for example an external advertisement with a lower cost was received). Two of the RIP tests may fail on slow boxes due to filtering and this new RIB routes check. These tests rely on completion occuring in at most X amount of time. Due to the new code, things take longer. The solution may be 1) Changing X 2) Making my code faster 3) Have a re-think about the tests The tests involved are: test_route_walk and test_timers Revision Changes Path 1.31 +31 -14 xorp/rip/Makefile.am 1.44 +57 -13 xorp/rip/Makefile.in 1.5 +48 -3 xorp/rip/output.hh 1.10 +25 -2 xorp/rip/output_table.cc 1.10 +15 -2 xorp/rip/output_updates.cc 1.37 +4 -4 xorp/rip/port.cc 1.22 +4 -1 xorp/rip/port.hh 1.5 +16 -7 xorp/rip/redist.cc 1.4 +11 -6 xorp/rip/redist.hh 1.1 +149 -0 xorp/rip/rip_varrw.cc (new) 1.1 +61 -0 xorp/rip/rip_varrw.hh (new) 1.16 +249 -19 xorp/rip/route_db.cc 1.15 +62 -8 xorp/rip/route_db.hh 1.9 +27 -2 xorp/rip/route_entry.cc 1.7 +39 -2 xorp/rip/route_entry.hh 1.7 +43 -3 xorp/rip/system.hh 1.15 +3 -3 xorp/rip/test_outputs.cc 1.12 +2 -2 xorp/rip/test_request.cc 1.9 +2 -2 xorp/rip/test_update_queue.cc 1.4 +2 -2 xorp/rip/test_utils.hh 1.8 +55 -0 xorp/rip/tools/xrl_rip_shell_funcs.sh 1.8 +55 -0 xorp/rip/tools/xrl_ripng_shell_funcs.sh 1.6 +2 -2 xorp/rip/xorp_rip_main.cc 1.5 +45 -5 xorp/rip/xrl_redist_manager.cc 1.3 +7 -2 xorp/rip/xrl_redist_manager.hh 1.10 +7 -3 xorp/rip/xrl_rib_notifier.cc 1.16 +92 -5 xorp/rip/xrl_target_common.hh 1.18 +42 -2 xorp/rip/xrl_target_rip.cc 1.15 +31 -2 xorp/rip/xrl_target_rip.hh 1.19 +42 -2 xorp/rip/xrl_target_ripng.cc 1.16 +31 -2 xorp/rip/xrl_target_ripng.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 13:58:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:12 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXBY0050245 for ; Fri, 17 Sep 2004 08:33:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXBNK037503 for ; Fri, 17 Sep 2004 08:33:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXBGF001477; Fri, 17 Sep 2004 08:33:11 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDwPGF028825 for ; Fri, 17 Sep 2004 06:58:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDwPNK035139 for ; Fri, 17 Sep 2004 06:58:25 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDwOIb018470 for ; Fri, 17 Sep 2004 06:58:24 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDwOpo018469 for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:58:24 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 13:58:24 GMT From: Andrea Bittau Message-Id: <200409171358.i8HDwOpo018469@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 13:58:24 UTC XORP CVS repository Modified files: static_routes Makefile.am Makefile.in static_routes_node.cc static_routes_node.hh xrl_static_routes_node.cc xrl_static_routes_node.hh Added files: static_routes static_routes_varrw.cc static_routes_varrw.hh Log message: Support for policy filtering. The main reason for "filtering" static routes is to allow static routes to be used as a source for route redistribution. Revision Changes Path 1.6 +4 -1 xorp/static_routes/Makefile.am 1.7 +7 -4 xorp/static_routes/Makefile.in 1.14 +175 -33 xorp/static_routes/static_routes_node.cc 1.11 +85 -5 xorp/static_routes/static_routes_node.hh 1.1 +68 -0 xorp/static_routes/static_routes_varrw.cc (new) 1.1 +46 -0 xorp/static_routes/static_routes_varrw.hh (new) 1.15 +41 -2 xorp/static_routes/xrl_static_routes_node.cc 1.9 +28 -1 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:00:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:14 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXE9a050280 for ; Fri, 17 Sep 2004 08:33:14 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXDNK037505 for ; Fri, 17 Sep 2004 08:33:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXDGF001488; Fri, 17 Sep 2004 08:33:13 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HE06GF028871 for ; Fri, 17 Sep 2004 07:00:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE06NK035190 for ; Fri, 17 Sep 2004 07:00:06 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE06Ib018588 for ; Fri, 17 Sep 2004 07:00:06 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HE0656018587 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:00:06 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:00:06 GMT From: Andrea Bittau Message-Id: <200409171400.i8HE0656018587@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:00:06 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh parser_direct_cmds.hh parser_xrl_cmds.hh rib.cc rib.hh rib_manager.cc rib_manager.hh route.hh rt_tab_base.cc rt_tab_base.hh test_register.cc test_register_xrls.cc xrl_shell_funcs.sh xrl_target.cc xrl_target.hh Added files: rib rib_varrw.cc rib_varrw.hh rt_tab_pol_conn.cc rt_tab_pol_conn.hh rt_tab_pol_redist.cc rt_tab_pol_redist.hh Log message: Support for policy based route redistribution. Support is also added to enable connected routes to be the source for a route redistribution. Revision Changes Path 1.29 +15 -1 xorp/rib/Makefile.am 1.41 +42 -12 xorp/rib/Makefile.in 1.13 +53 -1 xorp/rib/dummy_rib_manager.cc 1.12 +57 -1 xorp/rib/dummy_rib_manager.hh 1.13 +2 -2 xorp/rib/parser_direct_cmds.hh 1.11 +2 -1 xorp/rib/parser_xrl_cmds.hh 1.39 +123 -22 xorp/rib/rib.cc 1.26 +41 -3 xorp/rib/rib.hh 1.40 +33 -1 xorp/rib/rib_manager.cc 1.28 +70 -1 xorp/rib/rib_manager.hh 1.1 +81 -0 xorp/rib/rib_varrw.cc (new) 1.1 +72 -0 xorp/rib/rib_varrw.hh (new) 1.14 +42 -3 xorp/rib/route.hh 1.7 +13 -1 xorp/rib/rt_tab_base.cc 1.17 +12 -2 xorp/rib/rt_tab_base.hh 1.1 +246 -0 xorp/rib/rt_tab_pol_conn.cc (new) 1.1 +86 -0 xorp/rib/rt_tab_pol_conn.hh (new) 1.1 +270 -0 xorp/rib/rt_tab_pol_redist.cc (new) 1.1 +123 -0 xorp/rib/rt_tab_pol_redist.hh (new) 1.16 +27 -13 xorp/rib/test_register.cc 1.30 +2 -2 xorp/rib/test_register_xrls.cc 1.9 +3 -3 xorp/rib/xrl_shell_funcs.sh 1.40 +115 -39 xorp/rib/xrl_target.cc 1.27 +94 -37 xorp/rib/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:05:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:15 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXF5m050295 for ; Fri, 17 Sep 2004 08:33:15 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXFNK037507 for ; Fri, 17 Sep 2004 08:33:15 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXEGF001500; Fri, 17 Sep 2004 08:33:15 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HE5EGF029004 for ; Fri, 17 Sep 2004 07:05:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE5ENK035255 for ; Fri, 17 Sep 2004 07:05:14 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE5EIb018849 for ; Fri, 17 Sep 2004 07:05:14 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HE5EfA018848 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:05:14 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:05:14 GMT From: Andrea Bittau Message-Id: <200409171405.i8HE5EfA018848@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:05:14 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in rib.xif rib_xif.cc rib_xif.hh xrl/targets Makefile.am Makefile.in bgp.tgt bgp.xrls bgp_base.cc bgp_base.hh rib.tgt rib.xrls rib_base.cc rib_base.hh rip.tgt rip.xrls rip_base.cc rip_base.hh ripng.tgt ripng.xrls ripng_base.cc ripng_base.hh static_routes.tgt static_routes.xrls static_routes_base.cc static_routes_base.hh Added files: xrl/interfaces policy.xif policy_backend.xif policy_backend_xif.cc policy_backend_xif.hh policy_redist4.xif policy_redist4_xif.cc policy_redist4_xif.hh policy_redist6.xif policy_redist6_xif.cc policy_redist6_xif.hh policy_xif.cc policy_xif.hh xrl/targets policy.tgt policy.xrls policy_base.cc policy_base.hh Log message: HEADS UP: RIB XRL interface has changed. All add/replace route calls now need an extra argument called policytags. This is a set of unsigned integeres merely used by the policy framework to allow route redistribution. If policy is not implemented / ignored, this argument may safely be an empty XrlAtomList. BGP, RIP and static_routes now support policy filtering. Also, there is a new policy process which deals with policy configuration issues. Protocols wishing to implement policy filtering should look at the policy_backend.xif and if redistribution is needed, policy_redist4/6.xif Revision Changes Path 1.21 +17 -1 xorp/xrl/interfaces/Makefile.am 1.34 +59 -5 xorp/xrl/interfaces/Makefile.in 1.1 +95 -0 xorp/xrl/interfaces/policy.xif (new) 1.1 +29 -0 xorp/xrl/interfaces/policy_backend.xif (new) 1.1 +108 -0 xorp/xrl/interfaces/policy_backend_xif.cc (new) 1.1 +79 -0 xorp/xrl/interfaces/policy_backend_xif.hh (new) 1.1 +31 -0 xorp/xrl/interfaces/policy_redist4.xif (new) 1.1 +90 -0 xorp/xrl/interfaces/policy_redist4_xif.cc (new) 1.1 +72 -0 xorp/xrl/interfaces/policy_redist4_xif.hh (new) 1.1 +31 -0 xorp/xrl/interfaces/policy_redist6.xif (new) 1.1 +90 -0 xorp/xrl/interfaces/policy_redist6_xif.cc (new) 1.1 +72 -0 xorp/xrl/interfaces/policy_redist6_xif.hh (new) 1.1 +486 -0 xorp/xrl/interfaces/policy_xif.cc (new) 1.1 +242 -0 xorp/xrl/interfaces/policy_xif.hh (new) 1.19 +36 -9 xorp/xrl/interfaces/rib.xif 1.26 +81 -1 xorp/xrl/interfaces/rib_xif.cc 1.26 +58 -329 xorp/xrl/interfaces/rib_xif.hh 1.37 +27 -5 xorp/xrl/targets/Makefile.am 1.49 +41 -14 xorp/xrl/targets/Makefile.in 1.4 +10 -4 xorp/xrl/targets/bgp.tgt 1.30 +19 -206 xorp/xrl/targets/bgp.xrls 1.31 +275 -51 xorp/xrl/targets/bgp_base.cc 1.36 +70 -285 xorp/xrl/targets/bgp_base.hh 1.1 +10 -0 xorp/xrl/targets/policy.tgt (new) 1.1 +51 -0 xorp/xrl/targets/policy.xrls (new) 1.1 +720 -0 xorp/xrl/targets/policy_base.cc (new) 1.1 +202 -0 xorp/xrl/targets/policy_base.hh (new) 1.6 +6 -4 xorp/xrl/targets/rib.tgt 1.27 +21 -317 xorp/xrl/targets/rib.xrls 1.30 +205 -47 xorp/xrl/targets/rib_base.cc 1.33 +54 -382 xorp/xrl/targets/rib_base.hh 1.4 +5 -1 xorp/xrl/targets/rip.tgt 1.16 +11 -253 xorp/xrl/targets/rip.xrls 1.16 +158 -1 xorp/xrl/targets/rip_base.cc 1.17 +37 -364 xorp/xrl/targets/rip_base.hh 1.5 +5 -1 xorp/xrl/targets/ripng.tgt 1.18 +11 -247 xorp/xrl/targets/ripng.xrls 1.18 +158 -1 xorp/xrl/targets/ripng_base.cc 1.19 +37 -354 xorp/xrl/targets/ripng_base.hh 1.2 +3 -1 xorp/xrl/targets/static_routes.tgt 1.4 +7 -58 xorp/xrl/targets/static_routes.xrls 1.5 +91 -1 xorp/xrl/targets/static_routes_base.cc 1.5 +18 -78 xorp/xrl/targets/static_routes_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:09:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:17 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXHtG050322 for ; Fri, 17 Sep 2004 08:33:17 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXGNK037510 for ; Fri, 17 Sep 2004 08:33:16 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXGGF001511; Fri, 17 Sep 2004 08:33:16 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HE93GF029119 for ; Fri, 17 Sep 2004 07:09:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE92NK035291 for ; Fri, 17 Sep 2004 07:09:02 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HE92Ib018917 for ; Fri, 17 Sep 2004 07:09:02 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HE92HK018916 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:09:02 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:09:02 GMT From: Andrea Bittau Message-Id: <200409171409.i8HE92HK018916@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:09:02 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc template_commands.cc Added files: rtrmgr policyvarmap.conf Log message: There are two issues: 1) users may not enter + or special characters in the configuration file as they were not properly escaped when the XRL is constructed. 2) The rtmgr does not escape nested quotes when sending its configuration to the xorpsh. Both of these were fixed in a quick/temporary way (not ideal). The policyvarmap.conf is a configuration which the policy process must read at boot up. A mechanism via which this may be done has to be thought of. Currently, the policy process will simply fopen it. Protocols wishing to support policy filtering will need to edit the conf file. Revision Changes Path 1.53 +16 -2 xorp/rtrmgr/conf_tree_node.cc 1.1 +50 -0 xorp/rtrmgr/policyvarmap.conf (new) 1.47 +4 -1 xorp/rtrmgr/template_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:10:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:19 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXJ6t050340 for ; Fri, 17 Sep 2004 08:33:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXINK037514 for ; Fri, 17 Sep 2004 08:33:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXIGF001524; Fri, 17 Sep 2004 08:33:18 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HEATGF029178 for ; Fri, 17 Sep 2004 07:10:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HEATNK035326 for ; Fri, 17 Sep 2004 07:10:29 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HEATIb018980 for ; Fri, 17 Sep 2004 07:10:29 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HEATW6018979 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:10:29 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:10:29 GMT From: Andrea Bittau Message-Id: <200409171410.i8HEATW6018979@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:10:29 UTC XORP CVS repository Modified files: docs/kdoc gen-kdoc.sh Log message: Added directives to generate documentation for the policy components. Proper documentation of the whole framework will be available shortly (hopefully). Revision Changes Path 1.20 +49 -7 xorp/docs/kdoc/gen-kdoc.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:14:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:20 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXK9H050355 for ; Fri, 17 Sep 2004 08:33:20 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXJNK037518 for ; Fri, 17 Sep 2004 08:33:19 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXJGF001535; Fri, 17 Sep 2004 08:33:19 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HEEPGF029410 for ; Fri, 17 Sep 2004 07:14:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HEEPNK035366 for ; Fri, 17 Sep 2004 07:14:25 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HEEPIb019054 for ; Fri, 17 Sep 2004 07:14:25 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HEEPXm019053 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:14:25 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:14:25 GMT From: Andrea Bittau Message-Id: <200409171414.i8HEEPXm019053@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:14:25 UTC XORP CVS repository Modified files: etc/templates bgp.tp rip.tp ripng.tp static_routes.tp Added files: etc/templates policy.tp Log message: Added configuration directives for policies. Protocol use import "policy1,policy2,policy3" to filter the input branch. export "policy1,policy2,policy3" to filter the output branch and to enable route redistribution. The old redistribution interface for rip is hidden by the new one, although still present in the code. An initial configuration template file for the policy manager is provided. Currently, the rtmgr will only partially parse the policy directives. The more complex parsing is done the the policy process itself. This will be fixed in the future. Revision Changes Path 1.34 +16 -2 xorp/etc/templates/bgp.tp 1.1 +72 -0 xorp/etc/templates/policy.tp (new) 1.15 +20 -2 xorp/etc/templates/rip.tp 1.16 +19 -3 xorp/etc/templates/ripng.tp 1.12 +9 -1 xorp/etc/templates/static_routes.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 14:23:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:33:21 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFXKtK050370 for ; Fri, 17 Sep 2004 08:33:20 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFXKNK037520 for ; Fri, 17 Sep 2004 08:33:20 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFXKGF001546; Fri, 17 Sep 2004 08:33:20 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HENLGF029648 for ; Fri, 17 Sep 2004 07:23:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HENLNK035463 for ; Fri, 17 Sep 2004 07:23:21 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HENLIb019293 for ; Fri, 17 Sep 2004 07:23:21 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HENKG2019292 for xorp-cvs@icir.org; Fri, 17 Sep 2004 14:23:20 GMT (envelope-from abittau) Date: Fri, 17 Sep 2004 14:23:20 GMT From: Andrea Bittau Message-Id: <200409171423.i8HENKG2019292@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/contrib/ospfd/xorp xorp/fib2mrib xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-17 14:23:20 UTC XORP CVS repository Modified files: . configure configure.in contrib/ospfd/xorp system.C fib2mrib xrl_fib2mrib_node.cc pim Makefile.am Makefile.in Log message: No policy support in ospf and fib2mrib. They are simply adapted to use the new RIB interface. configure.in was modified to generate Makefiles for the policy components. PIM Makefile was altered to allow compilation with the modified RIB [which is now linked to the policy backend libraries]. Revision Changes Path 1.124 +4 -1 xorp/configure 1.116 +4 -1 xorp/configure.in 1.6 +1 -0 xorp/contrib/ospfd/xorp/system.C 1.13 +17 -9 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.25 +5 -2 xorp/pim/Makefile.am 1.37 +6 -3 xorp/pim/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 15:57:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 08:58:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFw2am073894 for ; Fri, 17 Sep 2004 08:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFw2NK037830 for ; Fri, 17 Sep 2004 08:58:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFw1GF002240; Fri, 17 Sep 2004 08:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFvOGF002218 for ; Fri, 17 Sep 2004 08:57:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFvNNK037827 for ; Fri, 17 Sep 2004 08:57:23 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFvNIb021822 for ; Fri, 17 Sep 2004 08:57:23 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HFvNmZ021821 for xorp-cvs@icir.org; Fri, 17 Sep 2004 15:57:23 GMT (envelope-from bms) Date: Fri, 17 Sep 2004 15:57:23 GMT From: Bruce Simpson Message-Id: <200409171557.i8HFvNmZ021821@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-17 15:57:23 UTC XORP CVS repository Modified files: fea firewall_ipf.cc Log message: Pre-emptive compilation fix. Bug found by: a.bittau Revision Changes Path 1.7 +2 -1 xorp/fea/firewall_ipf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 19:38:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJd17t069559 for ; Fri, 17 Sep 2004 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJd1NK040394 for ; Fri, 17 Sep 2004 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJd0GF009554; Fri, 17 Sep 2004 12:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJcoGF009546 for ; Fri, 17 Sep 2004 12:38:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJcoNK040392 for ; Fri, 17 Sep 2004 12:38:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJcoIb025666 for ; Fri, 17 Sep 2004 12:38:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJcoSb025665 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:38:50 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:38:50 GMT From: Pavlin Radoslavov Message-Id: <200409171938.i8HJcoSb025665@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:38:50 UTC XORP CVS repository Modified files: etc/templates Makefile.am Makefile.in Log message: Add policy.tp to the list of DATA files. Revision Changes Path 1.12 +2 -1 xorp/etc/templates/Makefile.am 1.16 +1 -1 xorp/etc/templates/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 19:39:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJe1R9069781 for ; Fri, 17 Sep 2004 12:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJe1NK040412 for ; Fri, 17 Sep 2004 12:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJe0GF009599; Fri, 17 Sep 2004 12:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJdLGF009569 for ; Fri, 17 Sep 2004 12:39:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJdKNK040398 for ; Fri, 17 Sep 2004 12:39:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJdKIb025714 for ; Fri, 17 Sep 2004 12:39:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJdKSp025713 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:39:20 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:39:20 GMT From: Pavlin Radoslavov Message-Id: <200409171939.i8HJdKSp025713@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:39:20 UTC XORP CVS repository Modified files: etc/templates policy.tp Log message: Add missing indentation. Revision Changes Path 1.2 +11 -11 xorp/etc/templates/policy.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 19:39:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJe2Q0069796 for ; Fri, 17 Sep 2004 12:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJe2NK040414 for ; Fri, 17 Sep 2004 12:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJe1GF009611; Fri, 17 Sep 2004 12:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJdmGF009589 for ; Fri, 17 Sep 2004 12:39:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJdmNK040407 for ; Fri, 17 Sep 2004 12:39:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJdmIb025765 for ; Fri, 17 Sep 2004 12:39:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJdmNe025764 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:39:48 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:39:48 GMT From: Pavlin Radoslavov Message-Id: <200409171939.i8HJdmNe025764@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:39:48 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc Log message: Nits. Revision Changes Path 1.14 +17 -17 xorp/fib2mrib/xrl_fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:30 2005 Subject: No subject Fri Sep 17 19:40:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJf1sd070098 for ; Fri, 17 Sep 2004 12:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJf1NK040460 for ; Fri, 17 Sep 2004 12:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJf0GF009652; Fri, 17 Sep 2004 12:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJeQGF009628 for ; Fri, 17 Sep 2004 12:40:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJeQNK040446 for ; Fri, 17 Sep 2004 12:40:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJeQIb025838 for ; Fri, 17 Sep 2004 12:40:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJeQqk025837 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:40:26 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:40:26 GMT From: Pavlin Radoslavov Message-Id: <200409171940.i8HJeQqk025837@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:40:26 UTC XORP CVS repository Modified files: policy .cvsignore Log message: Reorder the *.foo entries in alphabetical order. Revision Changes Path 1.4 +1 -1 xorp/policy/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:41:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJg12U070507 for ; Fri, 17 Sep 2004 12:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJg1NK040475 for ; Fri, 17 Sep 2004 12:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJg1GF009696; Fri, 17 Sep 2004 12:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJfOGF009670 for ; Fri, 17 Sep 2004 12:41:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJfONK040469 for ; Fri, 17 Sep 2004 12:41:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJfOIb025899 for ; Fri, 17 Sep 2004 12:41:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJfO2N025898 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:41:24 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:41:24 GMT From: Pavlin Radoslavov Message-Id: <200409171941.i8HJfO2N025898@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:41:24 UTC XORP CVS repository Modified files: policy Makefile.am Makefile.in Log message: Add various standard comments (for consistency with the rest of the Makefile.am files). Revision Changes Path 1.8 +8 -1 xorp/policy/Makefile.am 1.20 +2 -0 xorp/policy/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:42:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJh1PW070878 for ; Fri, 17 Sep 2004 12:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJh1NK040495 for ; Fri, 17 Sep 2004 12:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJh0GF009736; Fri, 17 Sep 2004 12:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJg3GF009709 for ; Fri, 17 Sep 2004 12:42:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJg3NK040477 for ; Fri, 17 Sep 2004 12:42:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJg3Ib026022 for ; Fri, 17 Sep 2004 12:42:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJg3Ui026021 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:42:03 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:42:03 GMT From: Pavlin Radoslavov Message-Id: <200409171942.i8HJg3Ui026021@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/backend xorp/policy/common xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:42:03 UTC XORP CVS repository Modified files: policy/backend Makefile.am Makefile.in policy/common Makefile.am Makefile.in policy/test Makefile.am Makefile.in Log message: Add various standard comments (for consistency with the rest of the Makefile.am files). Revision Changes Path 1.2 +7 -1 xorp/policy/backend/Makefile.am 1.2 +2 -0 xorp/policy/backend/Makefile.in 1.2 +10 -0 xorp/policy/common/Makefile.am 1.2 +2 -0 xorp/policy/common/Makefile.in 1.2 +7 -1 xorp/policy/test/Makefile.am 1.2 +2 -0 xorp/policy/test/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:42:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJh2kO070897 for ; Fri, 17 Sep 2004 12:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJh1NK040497 for ; Fri, 17 Sep 2004 12:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJh1GF009747; Fri, 17 Sep 2004 12:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJgwGF009730 for ; Fri, 17 Sep 2004 12:42:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJgwNK040491 for ; Fri, 17 Sep 2004 12:42:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJgvIb026078 for ; Fri, 17 Sep 2004 12:42:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJgvWS026077 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:42:57 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:42:57 GMT From: Pavlin Radoslavov Message-Id: <200409171942.i8HJgvWS026077@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:42:57 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: Nits: "for(" -> "for (" "if(" -> "if (" etc. Revision Changes Path 1.54 +4 -4 xorp/rtrmgr/conf_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:43:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJi1Ee071296 for ; Fri, 17 Sep 2004 12:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJi1NK040521 for ; Fri, 17 Sep 2004 12:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJi1GF009809; Fri, 17 Sep 2004 12:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJhXGF009792 for ; Fri, 17 Sep 2004 12:43:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJhXNK040515 for ; Fri, 17 Sep 2004 12:43:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJhXIb026133 for ; Fri, 17 Sep 2004 12:43:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJhXFt026132 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:43:33 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:43:33 GMT From: Pavlin Radoslavov Message-Id: <200409171943.i8HJhXFt026132@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:43:33 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Log message: Add file "policyvarmap.conf" to the list of EXTRA_DIST files. Revision Changes Path 1.30 +2 -1 xorp/rtrmgr/Makefile.am 1.41 +1 -1 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:44:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJj1vu071637 for ; Fri, 17 Sep 2004 12:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJj1NK040548 for ; Fri, 17 Sep 2004 12:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJj1GF009839; Fri, 17 Sep 2004 12:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJiHGF009821 for ; Fri, 17 Sep 2004 12:44:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJiGNK040527 for ; Fri, 17 Sep 2004 12:44:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJiGIb026189 for ; Fri, 17 Sep 2004 12:44:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJiGuX026188 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:44:16 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:44:16 GMT From: Pavlin Radoslavov Message-Id: <200409171944.i8HJiGuX026188@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:44:16 UTC XORP CVS repository Modified files: static_routes Makefile.am Log message: Nits: replace empty spaces with tabs. Revision Changes Path 1.7 +4 -4 xorp/static_routes/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:49:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJo1Fi073069 for ; Fri, 17 Sep 2004 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJo1NK040631 for ; Fri, 17 Sep 2004 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJo1GF009967; Fri, 17 Sep 2004 12:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJnaGF009957 for ; Fri, 17 Sep 2004 12:49:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJnaNK040623 for ; Fri, 17 Sep 2004 12:49:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJnaIb026297 for ; Fri, 17 Sep 2004 12:49:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJnam9026296 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:49:36 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:49:36 GMT From: Pavlin Radoslavov Message-Id: <200409171949.i8HJnam9026296@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:49:35 UTC XORP CVS repository Modified files: static_routes static_routes_varrw.cc static_routes_varrw.hh Log message: * Add missing Emacs indentation config line * Rename _v4 to _is_ipv4, and add a new variable _is_ipv6 * Nits: - add missing spaces between arguments - move opening '{' in beginning of a method to a new line Revision Changes Path 1.2 +20 -15 xorp/static_routes/static_routes_varrw.cc 1.2 +7 -5 xorp/static_routes/static_routes_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:50:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJp0bC073329 for ; Fri, 17 Sep 2004 12:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJp0NK040669 for ; Fri, 17 Sep 2004 12:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJp0GF010004; Fri, 17 Sep 2004 12:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJocGF009987 for ; Fri, 17 Sep 2004 12:50:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJobNK040664 for ; Fri, 17 Sep 2004 12:50:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJobIb026402 for ; Fri, 17 Sep 2004 12:50:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJobiU026401 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:50:37 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:50:37 GMT From: Pavlin Radoslavov Message-Id: <200409171950.i8HJobiU026401@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:50:37 UTC XORP CVS repository Modified files: static_routes static_routes_node.hh Log message: Editorial nits. Revision Changes Path 1.12 +5 -7 xorp/static_routes/static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 19:52:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 12:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HJr1ou073743 for ; Fri, 17 Sep 2004 12:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJr0NK040702 for ; Fri, 17 Sep 2004 12:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJr0GF010058; Fri, 17 Sep 2004 12:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HJqZGF010042 for ; Fri, 17 Sep 2004 12:52:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJqZNK040691 for ; Fri, 17 Sep 2004 12:52:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HJqZIb026481 for ; Fri, 17 Sep 2004 12:52:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HJqZJD026480 for xorp-cvs@icir.org; Fri, 17 Sep 2004 19:52:35 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 19:52:35 GMT From: Pavlin Radoslavov Message-Id: <200409171952.i8HJqZJD026480@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 19:52:35 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc xrl_static_routes_node.cc Log message: Editorial nits: - add missing spaces between arguments - move opening '{' in beginning of a method to a new line - spacing Revision Changes Path 1.15 +70 -77 xorp/static_routes/static_routes_node.cc 1.16 +8 -5 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 20:02:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 13:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HK315I075869 for ; Fri, 17 Sep 2004 13:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HK31NK040851 for ; Fri, 17 Sep 2004 13:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HK31GF010365; Fri, 17 Sep 2004 13:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HK2SGF010331 for ; Fri, 17 Sep 2004 13:02:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HK2SNK040844 for ; Fri, 17 Sep 2004 13:02:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HK2SIb026720 for ; Fri, 17 Sep 2004 13:02:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HK2SEb026719 for xorp-cvs@icir.org; Fri, 17 Sep 2004 20:02:28 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 20:02:28 GMT From: Pavlin Radoslavov Message-Id: <200409172002.i8HK2SEb026719@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/rib xorp/rip xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 20:02:28 UTC XORP CVS repository Modified files: bgp route_table_policy.cc route_table_policy.hh route_table_policy_im.cc rib rt_tab_pol_conn.cc rt_tab_pol_conn.hh rip output.hh output_table.cc output_updates.cc route_db.cc route_db.hh static_routes static_routes_node.cc static_routes_node.hh Log message: Rename method "doFiltering" to "do_filtering" because all class methods and function names should use small letters. Revision Changes Path 1.2 +9 -9 xorp/bgp/route_table_policy.cc 1.2 +3 -3 xorp/bgp/route_table_policy.hh 1.2 +2 -2 xorp/bgp/route_table_policy_im.cc 1.2 +4 -4 xorp/rib/rt_tab_pol_conn.cc 1.2 +2 -2 xorp/rib/rt_tab_pol_conn.hh 1.6 +3 -3 xorp/rip/output.hh 1.11 +2 -2 xorp/rip/output_table.cc 1.11 +2 -2 xorp/rip/output_updates.cc 1.17 +5 -5 xorp/rip/route_db.cc 1.16 +2 -2 xorp/rip/route_db.hh 1.16 +5 -5 xorp/static_routes/static_routes_node.cc 1.13 +2 -2 xorp/static_routes/static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 22:54:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 15:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HMt1rJ090915 for ; Fri, 17 Sep 2004 15:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HMt1NK042737 for ; Fri, 17 Sep 2004 15:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HMt1GF015738; Fri, 17 Sep 2004 15:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HMsHGF015702 for ; Fri, 17 Sep 2004 15:54:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HMsHNK042721 for ; Fri, 17 Sep 2004 15:54:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HMsHIb028254 for ; Fri, 17 Sep 2004 15:54:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HMsHtN028253 for xorp-cvs@icir.org; Fri, 17 Sep 2004 22:54:17 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 22:54:17 GMT From: Pavlin Radoslavov Message-Id: <200409172254.i8HMsHtN028253@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 22:54:16 UTC XORP CVS repository Modified files: devnotes template.c template.cc template.h template.hh Log message: Add setting for the vim editor. Obtained from: Andrea Bittau Revision Changes Path 1.4 +2 -1 xorp/devnotes/template.c 1.4 +2 -1 xorp/devnotes/template.cc 1.4 +2 -1 xorp/devnotes/template.h 1.4 +2 -1 xorp/devnotes/template.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 23:55:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 16:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HNu2Uu003699 for ; Fri, 17 Sep 2004 16:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNu2NK043425 for ; Fri, 17 Sep 2004 16:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HNu1GF017964; Fri, 17 Sep 2004 16:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HNtMGF017936 for ; Fri, 17 Sep 2004 16:55:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNtMNK043418 for ; Fri, 17 Sep 2004 16:55:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNtMIb029381 for ; Fri, 17 Sep 2004 16:55:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HNtMLu029380 for xorp-cvs@icir.org; Fri, 17 Sep 2004 23:55:22 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 23:55:22 GMT From: Pavlin Radoslavov Message-Id: <200409172355.i8HNtMLu029380@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 23:55:22 UTC XORP CVS repository Modified files: bgp bgp_varrw.cc bgp_varrw.hh Log message: Methods renaming: readRouteNh -> read_route_nexthop writeNh -> write_nexthop Revision Changes Path 1.2 +7 -7 xorp/bgp/bgp_varrw.cc 1.2 +3 -3 xorp/bgp/bgp_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Fri Sep 17 23:56:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 16:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HNv1rY003918 for ; Fri, 17 Sep 2004 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNv1NK043445 for ; Fri, 17 Sep 2004 16:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HNv1GF017995; Fri, 17 Sep 2004 16:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HNuGGF017981 for ; Fri, 17 Sep 2004 16:56:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNuGNK043429 for ; Fri, 17 Sep 2004 16:56:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HNuGIb029453 for ; Fri, 17 Sep 2004 16:56:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HNuGQ8029452 for xorp-cvs@icir.org; Fri, 17 Sep 2004 23:56:16 GMT (envelope-from pavlin) Date: Fri, 17 Sep 2004 23:56:16 GMT From: Pavlin Radoslavov Message-Id: <200409172356.i8HNuGQ8029452@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-17 23:56:16 UTC XORP CVS repository Modified files: rip Makefile.am Log message: Nits: replace spaces with tabs. Revision Changes Path 1.32 +36 -31 xorp/rip/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Sat Sep 18 00:00:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:01:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0139l004747 for ; Fri, 17 Sep 2004 17:01:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I012NK043517 for ; Fri, 17 Sep 2004 17:01:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I012GF018155; Fri, 17 Sep 2004 17:01:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I00XGF018128 for ; Fri, 17 Sep 2004 17:00:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I00XNK043511 for ; Fri, 17 Sep 2004 17:00:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I00XIb029585 for ; Fri, 17 Sep 2004 17:00:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I00Xkp029584 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:00:33 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:00:33 GMT From: Pavlin Radoslavov Message-Id: <200409180000.i8I00Xkp029584@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:00:33 UTC XORP CVS repository Modified files: rip output.hh output_table.cc output_updates.cc port.cc redist.cc redist.hh rip_varrw.cc rip_varrw.hh route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh test_request.cc test_update_queue.cc xorp_rip_main.cc xrl_redist_manager.cc xrl_target_common.hh xrl_target_rip.cc xrl_target_ripng.cc Log message: Editorial nitlets: * Methods renaming: readRouteNh -> read_route_nexthop writeNh -> write_nexthop * Add spaces between arguments, * "if(" -> "if (" * "for(" -> "for (" * Move opening '{' bracked for a method to the beginning of a new line * Etc. Revision Changes Path 1.7 +28 -25 xorp/rip/output.hh 1.12 +8 -5 xorp/rip/output_table.cc 1.12 +5 -4 xorp/rip/output_updates.cc 1.38 +3 -3 xorp/rip/port.cc 1.6 +4 -4 xorp/rip/redist.cc 1.5 +3 -3 xorp/rip/redist.hh 1.2 +42 -35 xorp/rip/rip_varrw.cc 1.2 +7 -6 xorp/rip/rip_varrw.hh 1.18 +79 -78 xorp/rip/route_db.cc 1.17 +6 -4 xorp/rip/route_db.hh 1.10 +3 -2 xorp/rip/route_entry.cc 1.8 +5 -6 xorp/rip/route_entry.hh 1.8 +8 -7 xorp/rip/system.hh 1.13 +2 -2 xorp/rip/test_request.cc 1.10 +2 -2 xorp/rip/test_update_queue.cc 1.7 +2 -2 xorp/rip/xorp_rip_main.cc 1.6 +2 -5 xorp/rip/xrl_redist_manager.cc 1.17 +4 -4 xorp/rip/xrl_target_common.hh 1.19 +5 -5 xorp/rip/xrl_target_rip.cc 1.20 +5 -5 xorp/rip/xrl_target_ripng.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Sat Sep 18 00:10:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0B1qc006704 for ; Fri, 17 Sep 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0B1NK043641 for ; Fri, 17 Sep 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0B1GF018436; Fri, 17 Sep 2004 17:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0AHGF018408 for ; Fri, 17 Sep 2004 17:10:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0AGNK043629 for ; Fri, 17 Sep 2004 17:10:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0AGIb029854 for ; Fri, 17 Sep 2004 17:10:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0AGgJ029853 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:10:16 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:10:16 GMT From: Pavlin Radoslavov Message-Id: <200409180010.i8I0AGgJ029853@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:10:16 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Editorial nitlets: replace spaces with tabs. Revision Changes Path 1.38 +15 -19 xorp/xrl/targets/Makefile.am 1.50 +12 -12 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Sat Sep 18 00:21:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0M1jv012025 for ; Fri, 17 Sep 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0M1NK043758 for ; Fri, 17 Sep 2004 17:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0M1GF018762; Fri, 17 Sep 2004 17:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0L8GF018721 for ; Fri, 17 Sep 2004 17:21:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0L8NK043747 for ; Fri, 17 Sep 2004 17:21:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0L8Ib030130 for ; Fri, 17 Sep 2004 17:21:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0L7AA030129 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:21:07 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:21:07 GMT From: Pavlin Radoslavov Message-Id: <200409180021.i8I0L7AA030129@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:21:07 UTC XORP CVS repository Modified files: xrl/targets policy.tgt Log message: Add tabs for spacing. Revision Changes Path 1.2 +4 -5 xorp/xrl/targets/policy.tgt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:31 2005 Subject: No subject Sat Sep 18 00:28:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0T15S019673 for ; Fri, 17 Sep 2004 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0T1NK043831 for ; Fri, 17 Sep 2004 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0T1GF019028; Fri, 17 Sep 2004 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0SkGF018993 for ; Fri, 17 Sep 2004 17:28:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0SkNK043824 for ; Fri, 17 Sep 2004 17:28:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0SkIb030282 for ; Fri, 17 Sep 2004 17:28:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0SklK030281 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:28:46 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:28:46 GMT From: Pavlin Radoslavov Message-Id: <200409180028.i8I0SklK030281@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:28:45 UTC XORP CVS repository Modified files: xrl/interfaces policy.xif Log message: Remove an extra empty line. Revision Changes Path 1.2 +1 -2 xorp/xrl/interfaces/policy.xif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:33:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0Y1Ip020640 for ; Fri, 17 Sep 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0Y1NK043885 for ; Fri, 17 Sep 2004 17:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0Y0GF019174; Fri, 17 Sep 2004 17:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0XaGF019150 for ; Fri, 17 Sep 2004 17:33:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0XZNK043883 for ; Fri, 17 Sep 2004 17:33:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0XZIb030484 for ; Fri, 17 Sep 2004 17:33:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0XZKA030483 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:33:35 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:33:35 GMT From: Pavlin Radoslavov Message-Id: <200409180033.i8I0XZKA030483@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:33:35 UTC XORP CVS repository Modified files: xrl/interfaces policy_backend_xif.hh policy_redist4_xif.hh policy_redist6_xif.hh policy_xif.hh rib_xif.hh Log message: Re-generate. Revision Changes Path 1.2 +28 -4 xorp/xrl/interfaces/policy_backend_xif.hh 1.2 +33 -3 xorp/xrl/interfaces/policy_redist4_xif.hh 1.2 +33 -3 xorp/xrl/interfaces/policy_redist6_xif.hh 1.2 +109 -12 xorp/xrl/interfaces/policy_xif.hh 1.27 +352 -24 xorp/xrl/interfaces/rib_xif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:35:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0a1eL021075 for ; Fri, 17 Sep 2004 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0a1NK043921 for ; Fri, 17 Sep 2004 17:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0a1GF019235; Fri, 17 Sep 2004 17:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0ZMGF019215 for ; Fri, 17 Sep 2004 17:35:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0ZMNK043917 for ; Fri, 17 Sep 2004 17:35:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0ZMIb030576 for ; Fri, 17 Sep 2004 17:35:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0ZMpv030575 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:35:22 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:35:22 GMT From: Pavlin Radoslavov Message-Id: <200409180035.i8I0ZMpv030575@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:35:22 UTC XORP CVS repository Modified files: . configure.in Log message: Replace empty spaces with tabs. Revision Changes Path 1.117 +4 -4 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:38:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0d1Mb021664 for ; Fri, 17 Sep 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0d1NK043945 for ; Fri, 17 Sep 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0d1GF019297; Fri, 17 Sep 2004 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0ciGF019288 for ; Fri, 17 Sep 2004 17:38:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0ciNK043943 for ; Fri, 17 Sep 2004 17:38:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0ciIb030720 for ; Fri, 17 Sep 2004 17:38:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0ciWH030719 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:38:44 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:38:44 GMT From: Pavlin Radoslavov Message-Id: <200409180038.i8I0ciWH030719@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:38:44 UTC XORP CVS repository Modified files: xrl/targets bgp.xrls bgp_base.hh fea.xrls fea_base.hh policy.xrls policy_base.hh rib.xrls rib_base.hh rip.xrls rip_base.hh ripng.xrls ripng_base.hh static_routes.xrls static_routes_base.hh Log message: Re-generate. Revision Changes Path 1.31 +265 -1 xorp/xrl/targets/bgp.xrls 1.37 +348 -1 xorp/xrl/targets/bgp_base.hh 1.38 +1 -1 xorp/xrl/targets/fea.xrls 1.44 +1 -1 xorp/xrl/targets/fea_base.hh 1.2 +83 -1 xorp/xrl/targets/policy.xrls 1.2 +117 -1 xorp/xrl/targets/policy_base.hh 1.28 +337 -1 xorp/xrl/targets/rib.xrls 1.34 +405 -1 xorp/xrl/targets/rib_base.hh 1.17 +292 -1 xorp/xrl/targets/rip.xrls 1.18 +413 -1 xorp/xrl/targets/rip_base.hh 1.19 +286 -1 xorp/xrl/targets/ripng.xrls 1.20 +403 -1 xorp/xrl/targets/ripng_base.hh 1.5 +73 -1 xorp/xrl/targets/static_routes.xrls 1.6 +99 -1 xorp/xrl/targets/static_routes_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:39:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 17:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I0e12g021875 for ; Fri, 17 Sep 2004 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0e1NK043959 for ; Fri, 17 Sep 2004 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0e0GF019325; Fri, 17 Sep 2004 17:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0dpGF019317 for ; Fri, 17 Sep 2004 17:39:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0dpNK043954 for ; Fri, 17 Sep 2004 17:39:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0doIb030820 for ; Fri, 17 Sep 2004 17:39:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0doXk030819 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:39:50 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:39:50 GMT From: Pavlin Radoslavov Message-Id: <200409180039.i8I0doXk030819@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/contrib/ospfd/xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:39:50 UTC XORP CVS repository Modified files: contrib/ospfd/xorp system.C Log message: Nit. Revision Changes Path 1.7 +1 -1 xorp/contrib/ospfd/xorp/system.C _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:59:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 18:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I101hm041752 for ; Fri, 17 Sep 2004 18:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I101NK044236 for ; Fri, 17 Sep 2004 18:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I101GF019963; Fri, 17 Sep 2004 18:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0xPGF019937 for ; Fri, 17 Sep 2004 17:59:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0xONK044221 for ; Fri, 17 Sep 2004 17:59:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0xOIb040055 for ; Fri, 17 Sep 2004 17:59:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0xOA1040054 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:59:24 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:59:24 GMT From: Pavlin Radoslavov Message-Id: <200409180059.i8I0xOA1040054@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:59:24 UTC XORP CVS repository Modified files: rib Makefile.am Log message: Fix the spaces in the list of files. Revision Changes Path 1.30 +70 -70 xorp/rib/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 00:59:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 18:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I102UC041772 for ; Fri, 17 Sep 2004 18:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I102NK044238 for ; Fri, 17 Sep 2004 18:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I102GF019974; Fri, 17 Sep 2004 18:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I0xxGF019955 for ; Fri, 17 Sep 2004 17:59:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0xwNK044227 for ; Fri, 17 Sep 2004 17:59:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I0xwIb040204 for ; Fri, 17 Sep 2004 17:59:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I0xwPF040203 for xorp-cvs@icir.org; Sat, 18 Sep 2004 00:59:58 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 00:59:58 GMT From: Pavlin Radoslavov Message-Id: <200409180059.i8I0xwPF040203@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 00:59:58 UTC XORP CVS repository Modified files: rib rib_varrw.cc rib_varrw.hh Log message: Rename a method: "readRouteNh" -> "read_route_nexthop" Revision Changes Path 1.2 +4 -4 xorp/rib/rib_varrw.cc 1.2 +2 -2 xorp/rib/rib_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 01:24:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 18:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I1P1DR047165 for ; Fri, 17 Sep 2004 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I1P1NK044542 for ; Fri, 17 Sep 2004 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I1P1GF020668; Fri, 17 Sep 2004 18:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I1OjGF020649 for ; Fri, 17 Sep 2004 18:24:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I1OjNK044535 for ; Fri, 17 Sep 2004 18:24:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I1OiIb048387 for ; Fri, 17 Sep 2004 18:24:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I1Oibx048386 for xorp-cvs@icir.org; Sat, 18 Sep 2004 01:24:44 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 01:24:44 GMT From: Pavlin Radoslavov Message-Id: <200409180124.i8I1Oibx048386@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 01:24:43 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.hh Log message: Add a missing "." Revision Changes Path 1.10 +2 -2 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:32 2005 Subject: No subject Sat Sep 18 02:05:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 19:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I262NV056598 for ; Fri, 17 Sep 2004 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I261NK044959 for ; Fri, 17 Sep 2004 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I261GF021606; Fri, 17 Sep 2004 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I25sGF021596 for ; Fri, 17 Sep 2004 19:05:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I25sNK044957 for ; Fri, 17 Sep 2004 19:05:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I25sIb056186 for ; Fri, 17 Sep 2004 19:05:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I25sdZ056185 for xorp-cvs@icir.org; Sat, 18 Sep 2004 02:05:54 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 02:05:54 GMT From: Pavlin Radoslavov Message-Id: <200409180205.i8I25sdZ056185@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 02:05:53 UTC XORP CVS repository Modified files: rib dummy_rib_manager.hh parser_xrl_cmds.hh rib.cc rib_manager.cc rib_varrw.cc rib_varrw.hh route.hh rt_tab_base.cc rt_tab_base.hh rt_tab_pol_conn.cc rt_tab_pol_conn.hh rt_tab_pol_redist.cc rt_tab_pol_redist.hh xrl_target.cc xrl_target.hh Log message: Editorial nitlets: * Add spaces between arguments * "if(" -> "if (" * "for(" -> "for (" * Move opening '{' bracket for a method to the beginning of a new line * Etc. Revision Changes Path 1.13 +2 -1 xorp/rib/dummy_rib_manager.hh 1.12 +2 -2 xorp/rib/parser_xrl_cmds.hh 1.40 +17 -19 xorp/rib/rib.cc 1.41 +13 -9 xorp/rib/rib_manager.cc 1.3 +29 -20 xorp/rib/rib_varrw.cc 1.3 +10 -8 xorp/rib/rib_varrw.hh 1.15 +2 -2 xorp/rib/route.hh 1.8 +4 -3 xorp/rib/rt_tab_base.cc 1.18 +12 -14 xorp/rib/rt_tab_base.hh 1.3 +60 -59 xorp/rib/rt_tab_pol_conn.cc 1.3 +7 -6 xorp/rib/rt_tab_pol_conn.hh 1.2 +65 -62 xorp/rib/rt_tab_pol_redist.cc 1.2 +13 -10 xorp/rib/rt_tab_pol_redist.hh 1.41 +22 -19 xorp/rib/xrl_target.cc 1.28 +6 -6 xorp/rib/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:33 2005 Subject: No subject Sat Sep 18 02:06:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Sep 2004 19:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8I2711j056877 for ; Fri, 17 Sep 2004 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I271NK044971 for ; Fri, 17 Sep 2004 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I271GF021633; Fri, 17 Sep 2004 19:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8I26KGF021618 for ; Fri, 17 Sep 2004 19:06:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I26KNK044964 for ; Fri, 17 Sep 2004 19:06:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8I26KIb056264 for ; Fri, 17 Sep 2004 19:06:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8I26KFe056263 for xorp-cvs@icir.org; Sat, 18 Sep 2004 02:06:20 GMT (envelope-from pavlin) Date: Sat, 18 Sep 2004 02:06:20 GMT From: Pavlin Radoslavov Message-Id: <200409180206.i8I26KFe056263@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-18 02:06:20 UTC XORP CVS repository Modified files: bgp bgp_varrw.cc bgp_varrw.hh route_table_policy.cc route_table_policy.hh route_table_policy_im.cc route_table_policy_im.hh route_table_policy_sm.cc route_table_policy_sm.hh Log message: Editorial nitlets: * Add spaces between arguments * "if(" -> "if (" * "for(" -> "for (" * Move opening '{' bracket for a method to the beginning of a new line * Etc. Revision Changes Path 1.3 +76 -67 xorp/bgp/bgp_varrw.cc 1.3 +8 -7 xorp/bgp/bgp_varrw.hh 1.3 +87 -83 xorp/bgp/route_table_policy.cc 1.3 +13 -12 xorp/bgp/route_table_policy.hh 1.3 +30 -36 xorp/bgp/route_table_policy_im.cc 1.2 +7 -6 xorp/bgp/route_table_policy_im.hh 1.2 +21 -24 xorp/bgp/route_table_policy_sm.cc 1.2 +8 -7 xorp/bgp/route_table_policy_sm.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:33 2005 Subject: No subject Tue Sep 21 17:59:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LI02LK016969 for ; Tue, 21 Sep 2004 11:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI02NK004851 for ; Tue, 21 Sep 2004 11:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI01GF008000; Tue, 21 Sep 2004 11:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LHxmGF007977 for ; Tue, 21 Sep 2004 10:59:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LHxmNK004835 for ; Tue, 21 Sep 2004 10:59:48 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LHxlIb013203 for ; Tue, 21 Sep 2004 10:59:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LHxlh0013202 for xorp-cvs@icir.org; Tue, 21 Sep 2004 17:59:47 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 17:59:47 GMT From: Atanu Ghosh Message-Id: <200409211759.i8LHxlh0013202@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 17:59:47 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in Added files: libxorp profile.cc profile.hh test_profile.cc Log message: Utility support for profiling. Revision Changes Path 1.27 +6 -2 xorp/libxorp/Makefile.am 1.37 +26 -13 xorp/libxorp/Makefile.in 1.1 +240 -0 xorp/libxorp/profile.cc (new) 1.1 +193 -0 xorp/libxorp/profile.hh (new) 1.1 +257 -0 xorp/libxorp/test_profile.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 18:02:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LI316W017706 for ; Tue, 21 Sep 2004 11:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI31NK004897 for ; Tue, 21 Sep 2004 11:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI31GF008106; Tue, 21 Sep 2004 11:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI2CGF008081 for ; Tue, 21 Sep 2004 11:02:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI2CNK004889 for ; Tue, 21 Sep 2004 11:02:12 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI2CIb013302 for ; Tue, 21 Sep 2004 11:02:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LI2CMX013301 for xorp-cvs@icir.org; Tue, 21 Sep 2004 18:02:12 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 18:02:12 GMT From: Atanu Ghosh Message-Id: <200409211802.i8LI2CMX013301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 18:02:12 UTC XORP CVS repository Added files: bgp profile_vars.cc profile_vars.hh Log message: Initial support for profiling. Revision Changes Path 1.1 +99 -0 xorp/bgp/profile_vars.cc (new) 1.1 +54 -0 xorp/bgp/profile_vars.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 18:05:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LI60K2018485 for ; Tue, 21 Sep 2004 11:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI60NK004950 for ; Tue, 21 Sep 2004 11:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI60GF008231; Tue, 21 Sep 2004 11:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI59GF008176 for ; Tue, 21 Sep 2004 11:05:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI59NK004934 for ; Tue, 21 Sep 2004 11:05:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI59Ib013479 for ; Tue, 21 Sep 2004 11:05:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LI59KM013478 for xorp-cvs@icir.org; Tue, 21 Sep 2004 18:05:09 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 18:05:09 GMT From: Atanu Ghosh Message-Id: <200409211805.i8LI59KM013478@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 18:05:09 UTC XORP CVS repository Modified files: bgp Makefile.am Makefile.in bgp.cc bgp.hh plumbing.cc plumbing.hh test_plumbing.cc test_plumbing.hh Log message: Instrument the RIBIN code for profiling. Revision Changes Path 1.33 +4 -1 xorp/bgp/Makefile.am 1.45 +21 -11 xorp/bgp/Makefile.in 1.41 +8 -3 xorp/bgp/bgp.cc 1.31 +9 -2 xorp/bgp/bgp.hh 1.56 +18 -3 xorp/bgp/plumbing.cc 1.29 +10 -5 xorp/bgp/plumbing.hh 1.11 +4 -4 xorp/bgp/test_plumbing.cc 1.6 +3 -2 xorp/bgp/test_plumbing.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 18:09:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LIA1Jn019518 for ; Tue, 21 Sep 2004 11:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LIA1NK005013 for ; Tue, 21 Sep 2004 11:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LIA1GF008370; Tue, 21 Sep 2004 11:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI9EGF008350 for ; Tue, 21 Sep 2004 11:09:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI9ENK005002 for ; Tue, 21 Sep 2004 11:09:14 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI9EIb013710 for ; Tue, 21 Sep 2004 11:09:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LI9ECP013709 for xorp-cvs@icir.org; Tue, 21 Sep 2004 18:09:14 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 18:09:14 GMT From: Atanu Ghosh Message-Id: <200409211809.i8LI9ECP013709@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 18:09:14 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in bgp.tgt bgp.xrls bgp_base.cc bgp_base.hh Added files: xrl/interfaces profile.xif profile_client.xif profile_client_xif.cc profile_client_xif.hh profile_xif.cc profile_xif.hh xrl/targets profiler.tgt profiler.xrls profiler_base.cc profiler_base.hh Log message: General XRL support for profiling and BGP specific support. Revision Changes Path 1.22 +9 -1 xorp/xrl/interfaces/Makefile.am 1.35 +30 -3 xorp/xrl/interfaces/Makefile.in 1.1 +41 -0 xorp/xrl/interfaces/profile.xif (new) 1.1 +30 -0 xorp/xrl/interfaces/profile_client.xif (new) 1.1 +82 -0 xorp/xrl/interfaces/profile_client_xif.cc (new) 1.1 +88 -0 xorp/xrl/interfaces/profile_client_xif.hh (new) 1.1 +180 -0 xorp/xrl/interfaces/profile_xif.cc (new) 1.1 +147 -0 xorp/xrl/interfaces/profile_xif.hh (new) 1.39 +10 -1 xorp/xrl/targets/Makefile.am 1.51 +26 -10 xorp/xrl/targets/Makefile.in 1.5 +4 -2 xorp/xrl/targets/bgp.tgt 1.32 +36 -1 xorp/xrl/targets/bgp.xrls 1.32 +164 -0 xorp/xrl/targets/bgp_base.cc 1.38 +67 -1 xorp/xrl/targets/bgp_base.hh 1.1 +7 -0 xorp/xrl/targets/profiler.tgt (new) 1.1 +49 -0 xorp/xrl/targets/profiler.xrls (new) 1.1 +278 -0 xorp/xrl/targets/profiler_base.cc (new) 1.1 +148 -0 xorp/xrl/targets/profiler_base.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 18:09:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LIA21Q019538 for ; Tue, 21 Sep 2004 11:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LIA2NK005015 for ; Tue, 21 Sep 2004 11:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LIA2GF008383; Tue, 21 Sep 2004 11:10:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LI9oGF008361 for ; Tue, 21 Sep 2004 11:09:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI9nNK005006 for ; Tue, 21 Sep 2004 11:09:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LI9nIb013753 for ; Tue, 21 Sep 2004 11:09:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LI9n6R013752 for xorp-cvs@icir.org; Tue, 21 Sep 2004 18:09:49 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 18:09:49 GMT From: Atanu Ghosh Message-Id: <200409211809.i8LI9n6R013752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 18:09:49 UTC XORP CVS repository Modified files: bgp xrl_target.cc xrl_target.hh Log message: BGP support for profiling. Revision Changes Path 1.29 +87 -15 xorp/bgp/xrl_target.cc 1.25 +22 -3 xorp/bgp/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 18:13:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 11:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LIE1o2021279 for ; Tue, 21 Sep 2004 11:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LIE0NK005071 for ; Tue, 21 Sep 2004 11:14:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LIE0GF008578; Tue, 21 Sep 2004 11:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LIDgGF008558 for ; Tue, 21 Sep 2004 11:13:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LIDgNK005065 for ; Tue, 21 Sep 2004 11:13:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LIDgIb013873 for ; Tue, 21 Sep 2004 11:13:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LIDgfM013872 for xorp-cvs@icir.org; Tue, 21 Sep 2004 18:13:42 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 18:13:42 GMT From: Atanu Ghosh Message-Id: <200409211813.i8LIDgfM013872@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 18:13:42 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Added files: rtrmgr profiler.cc Log message: Program to manipulate profiling. Revision Changes Path 1.31 +11 -2 xorp/rtrmgr/Makefile.am 1.42 +28 -5 xorp/rtrmgr/Makefile.in 1.1 +290 -0 xorp/rtrmgr/profiler.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 21:31:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 14:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LLW1mv068822 for ; Tue, 21 Sep 2004 14:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLW1NK007360 for ; Tue, 21 Sep 2004 14:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLW0GF014954; Tue, 21 Sep 2004 14:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLV3GF014920 for ; Tue, 21 Sep 2004 14:31:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLV3NK007356 for ; Tue, 21 Sep 2004 14:31:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLV3Ib022832 for ; Tue, 21 Sep 2004 14:31:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LLV3HG022831 for xorp-cvs@icir.org; Tue, 21 Sep 2004 21:31:03 GMT (envelope-from pavlin) Date: Tue, 21 Sep 2004 21:31:03 GMT From: Pavlin Radoslavov Message-Id: <200409212131.i8LLV3HG022831@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-21 21:31:03 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc firewall_ipfw.hh Log message: Compilation fixes for systems that don't have IPFW support. Revision Changes Path 1.8 +3 -5 xorp/fea/firewall_ipfw.cc 1.10 +2 -2 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 21:36:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 14:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LLb1KQ070152 for ; Tue, 21 Sep 2004 14:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLb1NK007428 for ; Tue, 21 Sep 2004 14:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLb1GF015212; Tue, 21 Sep 2004 14:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLaMGF015169 for ; Tue, 21 Sep 2004 14:36:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLaMNK007423 for ; Tue, 21 Sep 2004 14:36:22 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLaMIb022931 for ; Tue, 21 Sep 2004 14:36:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LLaMLP022930 for xorp-cvs@icir.org; Tue, 21 Sep 2004 21:36:22 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 21:36:22 GMT From: Atanu Ghosh Message-Id: <200409212136.i8LLaMLP022930@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 21:36:22 UTC XORP CVS repository Modified files: libxorp profile.cc Log message: Print the state (enabled/disabled) of a profile variable in the listing. Revision Changes Path 1.2 +3 -1 xorp/libxorp/profile.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 21:44:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 14:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LLj1Xv072282 for ; Tue, 21 Sep 2004 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLj0NK007494 for ; Tue, 21 Sep 2004 14:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLj0GF015464; Tue, 21 Sep 2004 14:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLiaGF015456 for ; Tue, 21 Sep 2004 14:44:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLiaNK007486 for ; Tue, 21 Sep 2004 14:44:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLiaIb023047 for ; Tue, 21 Sep 2004 14:44:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LLiaha023046 for xorp-cvs@icir.org; Tue, 21 Sep 2004 21:44:36 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 21:44:36 GMT From: Atanu Ghosh Message-Id: <200409212144.i8LLiaha023046@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 21:44:36 UTC XORP CVS repository Modified files: libxorp profile.cc profile.hh Log message: Print the count of log entries associated with a profile variable in the listing. Revision Changes Path 1.3 +3 -1 xorp/libxorp/profile.cc 1.2 +2 -1 xorp/libxorp/profile.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 21:57:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 14:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LLw1cu075379 for ; Tue, 21 Sep 2004 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLw1NK007621 for ; Tue, 21 Sep 2004 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLw1GF015855; Tue, 21 Sep 2004 14:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LLvEGF015832 for ; Tue, 21 Sep 2004 14:57:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLvDNK007612 for ; Tue, 21 Sep 2004 14:57:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LLvDIb023243 for ; Tue, 21 Sep 2004 14:57:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LLvD8I023242 for xorp-cvs@icir.org; Tue, 21 Sep 2004 21:57:13 GMT (envelope-from pavlin) Date: Tue, 21 Sep 2004 21:57:13 GMT From: Pavlin Radoslavov Message-Id: <200409212157.i8LLvD8I023242@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-21 21:57:13 UTC XORP CVS repository Modified files: bgp profile_vars.cc Log message: Add a missing '$' after the XORP CVS tag. Revision Changes Path 1.2 +1 -1 xorp/bgp/profile_vars.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:34 2005 Subject: No subject Tue Sep 21 22:09:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 15:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LMA1VR078354 for ; Tue, 21 Sep 2004 15:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LMA1NK007767 for ; Tue, 21 Sep 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LMA1GF016277; Tue, 21 Sep 2004 15:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LM9xGF016269 for ; Tue, 21 Sep 2004 15:09:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LM9xNK007760 for ; Tue, 21 Sep 2004 15:09:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LM9xIb023826 for ; Tue, 21 Sep 2004 15:09:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LM9xln023825 for xorp-cvs@icir.org; Tue, 21 Sep 2004 22:09:59 GMT (envelope-from pavlin) Date: Tue, 21 Sep 2004 22:09:59 GMT From: Pavlin Radoslavov Message-Id: <200409212209.i8LM9xln023825@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-21 22:09:59 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Log message: Fix spacing. Revision Changes Path 1.32 +7 -7 xorp/rtrmgr/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Tue Sep 21 22:11:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 15:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LMC1i5078850 for ; Tue, 21 Sep 2004 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LMC1NK007808 for ; Tue, 21 Sep 2004 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LMC1GF016349; Tue, 21 Sep 2004 15:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LMBsGF016338 for ; Tue, 21 Sep 2004 15:11:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LMBsNK007806 for ; Tue, 21 Sep 2004 15:11:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LMBsIb023966 for ; Tue, 21 Sep 2004 15:11:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LMBsiv023965 for xorp-cvs@icir.org; Tue, 21 Sep 2004 22:11:54 GMT (envelope-from pavlin) Date: Tue, 21 Sep 2004 22:11:54 GMT From: Pavlin Radoslavov Message-Id: <200409212211.i8LMBsiv023965@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-21 22:11:54 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Fix spacing. Revision Changes Path 1.40 +7 -7 xorp/xrl/targets/Makefile.am 1.52 +4 -4 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Tue Sep 21 23:13:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 16:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8LNE1WW094770 for ; Tue, 21 Sep 2004 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LNE1NK008504 for ; Tue, 21 Sep 2004 16:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LNE0GF018492; Tue, 21 Sep 2004 16:14:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8LND6GF018469 for ; Tue, 21 Sep 2004 16:13:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LND6NK008497 for ; Tue, 21 Sep 2004 16:13:06 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8LND6Ib024668 for ; Tue, 21 Sep 2004 16:13:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8LND6h5024667 for xorp-cvs@icir.org; Tue, 21 Sep 2004 23:13:06 GMT (envelope-from atanu) Date: Tue, 21 Sep 2004 23:13:06 GMT From: Atanu Ghosh Message-Id: <200409212313.i8LND6h5024667@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-21 23:13:06 UTC XORP CVS repository Modified files: bgp peer.cc peer.hh profile_vars.cc profile_vars.hh Log message: Add profiling for messages entering BGP. The method BGPPeer::str() is now inline and no longer recomputes the peername. Revision Changes Path 1.80 +13 -3 xorp/bgp/peer.cc 1.18 +3 -2 xorp/bgp/peer.hh 1.3 +2 -1 xorp/bgp/profile_vars.cc 1.2 +2 -1 xorp/bgp/profile_vars.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 01:41:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 18:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M1g2Ro031225 for ; Tue, 21 Sep 2004 18:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1g1NK009921 for ; Tue, 21 Sep 2004 18:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1g1GF022938; Tue, 21 Sep 2004 18:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1fbGF022916 for ; Tue, 21 Sep 2004 18:41:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1fbNK009915 for ; Tue, 21 Sep 2004 18:41:37 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1fbIb025990 for ; Tue, 21 Sep 2004 18:41:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M1fbve025989 for xorp-cvs@icir.org; Wed, 22 Sep 2004 01:41:37 GMT (envelope-from atanu) Date: Wed, 22 Sep 2004 01:41:37 GMT From: Atanu Ghosh Message-Id: <200409220141.i8M1fbve025989@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-22 01:41:37 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: Add profiling of route adds or deletes to the RIB. Revision Changes Path 1.56 +14 -1 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 01:49:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 18:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M1o1aH033184 for ; Tue, 21 Sep 2004 18:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1o1NK010001 for ; Tue, 21 Sep 2004 18:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1o1GF023136; Tue, 21 Sep 2004 18:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1nbGF023123 for ; Tue, 21 Sep 2004 18:49:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1nbNK009994 for ; Tue, 21 Sep 2004 18:49:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1nbIb026183 for ; Tue, 21 Sep 2004 18:49:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M1nb44026182 for xorp-cvs@icir.org; Wed, 22 Sep 2004 01:49:37 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 01:49:37 GMT From: Pavlin Radoslavov Message-Id: <200409220149.i8M1nb44026182@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 01:49:37 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in Added files: xrl/interfaces test_xrls.xif test_xrls_xif.cc test_xrls_xif.hh Log message: Add XRL interface for testing purpose. Revision Changes Path 1.23 +5 -1 xorp/xrl/interfaces/Makefile.am 1.36 +17 -3 xorp/xrl/interfaces/Makefile.in 1.1 +29 -0 xorp/xrl/interfaces/test_xrls.xif (new) 1.1 +216 -0 xorp/xrl/interfaces/test_xrls_xif.cc (new) 1.1 +127 -0 xorp/xrl/interfaces/test_xrls_xif.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 01:51:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 18:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M1q1Ao033691 for ; Tue, 21 Sep 2004 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1q1NK010040 for ; Tue, 21 Sep 2004 18:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1q1GF023201; Tue, 21 Sep 2004 18:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M1p3GF023165 for ; Tue, 21 Sep 2004 18:51:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1p3NK010031 for ; Tue, 21 Sep 2004 18:51:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M1p3Ib026302 for ; Tue, 21 Sep 2004 18:51:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M1p3oo026301 for xorp-cvs@icir.org; Wed, 22 Sep 2004 01:51:03 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 01:51:03 GMT From: Pavlin Radoslavov Message-Id: <200409220151.i8M1p3oo026301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 01:51:02 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Added files: xrl/targets test_xrls.tgt test_xrls.xrls test_xrls_base.cc test_xrls_base.hh Log message: Add target interface for Test XRLs. Revision Changes Path 1.41 +11 -1 xorp/xrl/targets/Makefile.am 1.53 +23 -5 xorp/xrl/targets/Makefile.in 1.1 +7 -0 xorp/xrl/targets/test_xrls.tgt (new) 1.1 +43 -0 xorp/xrl/targets/test_xrls.xrls (new) 1.1 +401 -0 xorp/xrl/targets/test_xrls_base.cc (new) 1.1 +154 -0 xorp/xrl/targets/test_xrls_base.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 02:11:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 19:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M2C1XP038489 for ; Tue, 21 Sep 2004 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2C1NK010267 for ; Tue, 21 Sep 2004 19:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2C1GF023756; Tue, 21 Sep 2004 19:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2BCGF023724 for ; Tue, 21 Sep 2004 19:11:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2BBNK010265 for ; Tue, 21 Sep 2004 19:11:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2BBIb026681 for ; Tue, 21 Sep 2004 19:11:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M2BBhU026680 for xorp-cvs@icir.org; Wed, 22 Sep 2004 02:11:11 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 02:11:11 GMT From: Pavlin Radoslavov Message-Id: <200409220211.i8M2BBhU026680@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 02:11:11 UTC XORP CVS repository Modified files: libxipc finder_client.cc finder_client.hh Log message: * When an item to resolve an XRL via the finder is scheduled, test first whether the XRL is already resolvable. Othewise, we may end-up with lots of duplicated requests to the finder. * Reorder the finder_trace_result() to be called before dispatching some other callbacks. Otherwise, the event trace log may be a bit misleading. Revision Changes Path 1.25 +47 -17 xorp/libxipc/finder_client.cc 1.15 +4 -2 xorp/libxipc/finder_client.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 02:16:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 19:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M2H1Ke039697 for ; Tue, 21 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2H1NK010325 for ; Tue, 21 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2H0GF023854; Tue, 21 Sep 2004 19:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2GVGF023835 for ; Tue, 21 Sep 2004 19:16:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2GVNK010318 for ; Tue, 21 Sep 2004 19:16:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2GVIb026813 for ; Tue, 21 Sep 2004 19:16:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M2GVTU026812 for xorp-cvs@icir.org; Wed, 22 Sep 2004 02:16:31 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 02:16:31 GMT From: Pavlin Radoslavov Message-Id: <200409220216.i8M2GVTU026812@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 02:16:31 UTC XORP CVS repository Modified files: libxipc xrl_router.cc Log message: * Add eventloop() as an argument to FinderClient::query() * Add an extra XLOG_ASSERT() Revision Changes Path 1.40 +3 -2 xorp/libxipc/xrl_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 02:16:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 19:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M2H1qJ039716 for ; Tue, 21 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2H1NK010327 for ; Tue, 21 Sep 2004 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2H1GF023865; Tue, 21 Sep 2004 19:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2GiGF023842 for ; Tue, 21 Sep 2004 19:16:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2GiNK010323 for ; Tue, 21 Sep 2004 19:16:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2GiIb026871 for ; Tue, 21 Sep 2004 19:16:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M2Gitk026870 for xorp-cvs@icir.org; Wed, 22 Sep 2004 02:16:44 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 02:16:44 GMT From: Pavlin Radoslavov Message-Id: <200409220216.i8M2Gitk026870@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 02:16:44 UTC XORP CVS repository Modified files: libxipc test_finder.cc Log message: Add eventloop() as an argument to FinderClient::query() Revision Changes Path 1.15 +3 -2 xorp/libxipc/test_finder.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:35 2005 Subject: No subject Wed Sep 22 02:48:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 19:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M2n1Wj047552 for ; Tue, 21 Sep 2004 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2n1NK010668 for ; Tue, 21 Sep 2004 19:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2n1GF024825; Tue, 21 Sep 2004 19:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2n0GF024819 for ; Tue, 21 Sep 2004 19:49:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2n0NK010666 for ; Tue, 21 Sep 2004 19:49:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2mxIb027152 for ; Tue, 21 Sep 2004 19:48:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M2mxG3027151 for xorp-cvs@icir.org; Wed, 22 Sep 2004 02:48:59 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 02:48:59 GMT From: Pavlin Radoslavov Message-Id: <200409220248.i8M2mxG3027151@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 02:48:59 UTC XORP CVS repository Modified files: libxipc .cvsignore Added files: libxipc test_xrl_receiver.cc test_xrl_sender.cc Log message: Add a sender and a receiver test programs for testing XRL performance. Revision Changes Path 1.15 +2 -0 xorp/libxipc/.cvsignore 1.1 +358 -0 xorp/libxipc/test_xrl_receiver.cc (new) 1.1 +501 -0 xorp/libxipc/test_xrl_sender.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Wed Sep 22 02:50:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 19:50:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M2o291047816 for ; Tue, 21 Sep 2004 19:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2o2NK010688 for ; Tue, 21 Sep 2004 19:50:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2o1GF024856; Tue, 21 Sep 2004 19:50:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M2o0GF024849 for ; Tue, 21 Sep 2004 19:50:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2o0NK010681 for ; Tue, 21 Sep 2004 19:50:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M2o0Ib027221 for ; Tue, 21 Sep 2004 19:50:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M2o0Eb027220 for xorp-cvs@icir.org; Wed, 22 Sep 2004 02:50:00 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 02:50:00 GMT From: Pavlin Radoslavov Message-Id: <200409220250.i8M2o0Eb027220@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 02:50:00 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Log message: Add a sender and a receiver test programs for testing XRL performance. Revision Changes Path 1.31 +11 -2 xorp/libxipc/Makefile.am 1.47 +37 -5 xorp/libxipc/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Wed Sep 22 05:35:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Sep 2004 22:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8M5a1IV081742 for ; Tue, 21 Sep 2004 22:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M5a1NK012775 for ; Tue, 21 Sep 2004 22:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M5a1GF029161; Tue, 21 Sep 2004 22:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8M5ZoGF029153 for ; Tue, 21 Sep 2004 22:35:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M5ZnNK012772 for ; Tue, 21 Sep 2004 22:35:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8M5ZnIb034862 for ; Tue, 21 Sep 2004 22:35:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8M5Zn6w034861 for xorp-cvs@icir.org; Wed, 22 Sep 2004 05:35:49 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 05:35:49 GMT From: Pavlin Radoslavov Message-Id: <200409220535.i8M5Zn6w034861@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 05:35:49 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Log message: Add the appropriate hooks to link test_xrl_receiver and test_xrl_sender against the XRL-related files inside xrl/interface and xrl/target directories. Revision Changes Path 1.32 +33 -5 xorp/libxipc/Makefile.am 1.48 +42 -14 xorp/libxipc/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Wed Sep 22 21:11:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Sep 2004 14:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8MLC1c3076858 for ; Wed, 22 Sep 2004 14:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLC1NK025024 for ; Wed, 22 Sep 2004 14:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8MLC0GF026992; Wed, 22 Sep 2004 14:12:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8MLBFGF026970 for ; Wed, 22 Sep 2004 14:11:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLBFNK025022 for ; Wed, 22 Sep 2004 14:11:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLBFIb045165 for ; Wed, 22 Sep 2004 14:11:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8MLBFpw045164 for xorp-cvs@icir.org; Wed, 22 Sep 2004 21:11:15 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 21:11:15 GMT From: Pavlin Radoslavov Message-Id: <200409222111.i8MLBFpw045164@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 21:11:14 UTC XORP CVS repository Modified files: libxipc xrl_pf_stcp.cc Log message: Fix a potential file descriptor leak. Submitted by: "edrt" Revision Changes Path 1.33 +3 -1 xorp/libxipc/xrl_pf_stcp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Wed Sep 22 21:14:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Sep 2004 14:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8MLF1R0077584 for ; Wed, 22 Sep 2004 14:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLF1NK025046 for ; Wed, 22 Sep 2004 14:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8MLF1GF027102; Wed, 22 Sep 2004 14:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8MLE4GF027060 for ; Wed, 22 Sep 2004 14:14:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLE4NK025036 for ; Wed, 22 Sep 2004 14:14:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8MLE4Ib045239 for ; Wed, 22 Sep 2004 14:14:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8MLE4ke045238 for xorp-cvs@icir.org; Wed, 22 Sep 2004 21:14:04 GMT (envelope-from pavlin) Date: Wed, 22 Sep 2004 21:14:04 GMT From: Pavlin Radoslavov Message-Id: <200409222114.i8MLE4ke045238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-22 21:14:04 UTC XORP CVS repository Modified files: policy/test dummy_test.sh Log message: * Assign variable ${srcdir} to refer to the source directory * Reference the files from the source directory using prefix ${srcdir} Revision Changes Path 1.2 +5 -3 xorp/policy/test/dummy_test.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 00:22:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Sep 2004 17:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8N0N1AC023233 for ; Wed, 22 Sep 2004 17:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N0N1NK026808 for ; Wed, 22 Sep 2004 17:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8N0N0GF002914; Wed, 22 Sep 2004 17:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8N0M1GF002875 for ; Wed, 22 Sep 2004 17:22:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N0M1NK026806 for ; Wed, 22 Sep 2004 17:22:01 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N0M1Ib046649 for ; Wed, 22 Sep 2004 17:22:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8N0M1BR046648 for xorp-cvs@icir.org; Thu, 23 Sep 2004 00:22:01 GMT (envelope-from atanu) Date: Thu, 23 Sep 2004 00:22:01 GMT From: Atanu Ghosh Message-Id: <200409230022.i8N0M1BR046648@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-23 00:22:01 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: Replace string comparison with call to empty(). Fix indentation. Revision Changes Path 1.57 +7 -7 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 08:38:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 01:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8N8d1Zm020197 for ; Thu, 23 Sep 2004 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N8d1NK031874 for ; Thu, 23 Sep 2004 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8N8d1GF015260; Thu, 23 Sep 2004 01:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8N8csGF015253 for ; Thu, 23 Sep 2004 01:38:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N8csNK031872 for ; Thu, 23 Sep 2004 01:38:54 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8N8csIb050657 for ; Thu, 23 Sep 2004 01:38:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8N8csEN050656 for xorp-cvs@icir.org; Thu, 23 Sep 2004 08:38:54 GMT (envelope-from atanu) Date: Thu, 23 Sep 2004 08:38:54 GMT From: Atanu Ghosh Message-Id: <200409230838.i8N8csEN050656@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-23 08:38:54 UTC XORP CVS repository Modified files: bgp profile_vars.cc profile_vars.hh rib_ipc_handler.cc Log message: New profile variable monitoring routes being queued for transmission the RIB. Revision Changes Path 1.4 +2 -1 xorp/bgp/profile_vars.cc 1.3 +2 -1 xorp/bgp/profile_vars.hh 1.58 +9 -1 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 12:15:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 05:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NCG1kM063732 for ; Thu, 23 Sep 2004 05:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCG1NK034398 for ; Thu, 23 Sep 2004 05:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCG1GF022582; Thu, 23 Sep 2004 05:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCFvGF022573 for ; Thu, 23 Sep 2004 05:15:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCFuNK034396 for ; Thu, 23 Sep 2004 05:15:56 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCFuIb053182 for ; Thu, 23 Sep 2004 05:15:56 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NCFuwf053181 for xorp-cvs@icir.org; Thu, 23 Sep 2004 12:15:56 GMT (envelope-from bms) Date: Thu, 23 Sep 2004 12:15:56 GMT From: Bruce Simpson Message-Id: <200409231215.i8NCFuwf053181@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-09-23 12:15:56 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc firewall_ipfw.hh Log message: Push the specific details of converting a XORP rule to an IPFW rule down into the IpfwFwRule class where they belong. Use particularly tricky specialized template functions to do this. Add the appropriately ghastly friend declarations to the class. This is still a 'construction area', much like my teeth. Revision Changes Path 1.9 +86 -121 xorp/fea/firewall_ipfw.cc 1.11 +10 -13 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 12:48:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 05:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NCn1JC070099 for ; Thu, 23 Sep 2004 05:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCn0NK034757 for ; Thu, 23 Sep 2004 05:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCn0GF023362; Thu, 23 Sep 2004 05:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCmYGF023353 for ; Thu, 23 Sep 2004 05:48:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCmYNK034754 for ; Thu, 23 Sep 2004 05:48:34 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCmXIb053582 for ; Thu, 23 Sep 2004 05:48:33 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NCmXSQ053581 for xorp-cvs@icir.org; Thu, 23 Sep 2004 12:48:33 GMT (envelope-from mjh) Date: Thu, 23 Sep 2004 12:48:33 GMT From: Mark Handley Message-Id: <200409231248.i8NCmXSQ053581@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla xorp/libxipc xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-09-23 12:48:33 UTC XORP CVS repository Modified files: cli/libtecla configure libxipc test_xrl_sender.cc xrl_pf_stcp.cc libxorp asyncio.cc asyncio.hh Log message: Changes so that AsyncFileWriter can send immediately if the socket doesn't block, rather than sending when the eventloop triggers a callback. Gives about a 5% improvement in XRL performance with empty XRLs, so probably a useful change, but certainly not critical. I'm not 100% certain this won't be problematic, but it passes all the basic libxorp and libxipc tests. There are some warnings though from some of the libxipc tests, and I don't know if they're important or not. Feel free to revert to old code if this is problematic. Revision Changes Path 1.5 +668 -319 xorp/cli/libtecla/configure 1.2 +2 -2 xorp/libxipc/test_xrl_sender.cc 1.34 +12 -5 xorp/libxipc/xrl_pf_stcp.cc 1.8 +56 -10 xorp/libxorp/asyncio.cc 1.8 +7 -3 xorp/libxorp/asyncio.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 12:50:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 05:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NCp1Mi070506 for ; Thu, 23 Sep 2004 05:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCp0NK034798 for ; Thu, 23 Sep 2004 05:51:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCp0GF023407; Thu, 23 Sep 2004 05:51:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NCo9GF023391 for ; Thu, 23 Sep 2004 05:50:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCo9NK034788 for ; Thu, 23 Sep 2004 05:50:09 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NCo9Ib053641 for ; Thu, 23 Sep 2004 05:50:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NCo99L053640 for xorp-cvs@icir.org; Thu, 23 Sep 2004 12:50:09 GMT (envelope-from mjh) Date: Thu, 23 Sep 2004 12:50:09 GMT From: Mark Handley Message-Id: <200409231250.i8NCo99L053640@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-09-23 12:50:09 UTC XORP CVS repository Modified files: libxipc test_xrl_sender.cc Log message: Revert inadvertant commit of change to parameters. Revision Changes Path 1.3 +2 -2 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 18:23:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NIO1Gu036812 for ; Thu, 23 Sep 2004 11:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIO1NK039885 for ; Thu, 23 Sep 2004 11:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIO1GF003982; Thu, 23 Sep 2004 11:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NINRGF003955 for ; Thu, 23 Sep 2004 11:23:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NINRNK039877 for ; Thu, 23 Sep 2004 11:23:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NINRIb065915 for ; Thu, 23 Sep 2004 11:23:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NINRtu065914 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:23:27 GMT (envelope-from pavlin) Date: Thu, 23 Sep 2004 18:23:27 GMT From: Pavlin Radoslavov Message-Id: <200409231823.i8NINRtu065914@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-23 18:23:26 UTC XORP CVS repository Modified files: cli/libtecla configure Log message: Re-generate. Revision Changes Path 1.6 +319 -668 xorp/cli/libtecla/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 18:25:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NIQ1mg037245 for ; Thu, 23 Sep 2004 11:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIQ1NK039927 for ; Thu, 23 Sep 2004 11:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIQ1GF004114; Thu, 23 Sep 2004 11:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIP0GF004044 for ; Thu, 23 Sep 2004 11:25:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIP0NK039898 for ; Thu, 23 Sep 2004 11:25:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIP0Ib066002 for ; Thu, 23 Sep 2004 11:25:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NIP0SE066001 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:25:00 GMT (envelope-from pavlin) Date: Thu, 23 Sep 2004 18:25:00 GMT From: Pavlin Radoslavov Message-Id: <200409231825.i8NIP0SE066001@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-23 18:25:00 UTC XORP CVS repository Modified files: libxorp .cvsignore Log message: Add test_profile to .cvsignore Revision Changes Path 1.9 +1 -0 xorp/libxorp/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:36 2005 Subject: No subject Thu Sep 23 18:38:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NId1in039790 for ; Thu, 23 Sep 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NId1NK040054 for ; Thu, 23 Sep 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NId1GF004648; Thu, 23 Sep 2004 11:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIcoGF004634 for ; Thu, 23 Sep 2004 11:38:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIcoNK040052 for ; Thu, 23 Sep 2004 11:38:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIcoIb072256 for ; Thu, 23 Sep 2004 11:38:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NIcoIv072255 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:38:50 GMT (envelope-from pavlin) Date: Thu, 23 Sep 2004 18:38:50 GMT From: Pavlin Radoslavov Message-Id: <200409231838.i8NIcoIv072255@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-23 18:38:50 UTC XORP CVS repository Modified files: fea firewall_ipfw.hh Log message: Reorder some of the declarations to fix a compilation error on gcc-3.4.2 Revision Changes Path 1.12 +8 -7 xorp/fea/firewall_ipfw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Thu Sep 23 18:39:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NIe1Es039996 for ; Thu, 23 Sep 2004 11:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIe1NK040077 for ; Thu, 23 Sep 2004 11:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIe0GF004721; Thu, 23 Sep 2004 11:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NId9GF004664 for ; Thu, 23 Sep 2004 11:39:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NId9NK040060 for ; Thu, 23 Sep 2004 11:39:09 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NId9Ib072297 for ; Thu, 23 Sep 2004 11:39:09 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NId9ko072296 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:39:09 GMT (envelope-from mjh) Date: Thu, 23 Sep 2004 18:39:09 GMT From: Mark Handley Message-Id: <200409231839.i8NId9ko072296@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-09-23 18:39:09 UTC XORP CVS repository Modified files: libxipc xrl_atom_encoding.cc Log message: Somewhat more efficient version of ASCII encoding for text and binary atoms. Revision Changes Path 1.8 +27 -8 xorp/libxipc/xrl_atom_encoding.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Thu Sep 23 18:40:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NIf1D8040231 for ; Thu, 23 Sep 2004 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIf1NK040112 for ; Thu, 23 Sep 2004 11:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIf1GF004774; Thu, 23 Sep 2004 11:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIeGGF004747 for ; Thu, 23 Sep 2004 11:40:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIeFNK040102 for ; Thu, 23 Sep 2004 11:40:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIeFIb072382 for ; Thu, 23 Sep 2004 11:40:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NIeFgm072381 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:40:15 GMT (envelope-from pavlin) Date: Thu, 23 Sep 2004 18:40:15 GMT From: Pavlin Radoslavov Message-Id: <200409231840.i8NIeFgm072381@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-23 18:40:15 UTC XORP CVS repository Modified files: fea mfea_node_cli.cc Log message: Catch InvalidNetmaskLength exception. Bug found by: "edrt" Revision Changes Path 1.10 +9 -2 xorp/fea/mfea_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Thu Sep 23 18:47:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 11:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8NIm1MC041620 for ; Thu, 23 Sep 2004 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIm1NK040210 for ; Thu, 23 Sep 2004 11:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIm1GF005125; Thu, 23 Sep 2004 11:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8NIlAGF005054 for ; Thu, 23 Sep 2004 11:47:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIl9NK040192 for ; Thu, 23 Sep 2004 11:47:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8NIl9Ib072737 for ; Thu, 23 Sep 2004 11:47:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8NIl9OD072736 for xorp-cvs@icir.org; Thu, 23 Sep 2004 18:47:09 GMT (envelope-from pavlin) Date: Thu, 23 Sep 2004 18:47:09 GMT From: Pavlin Radoslavov Message-Id: <200409231847.i8NIl9OD072736@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-23 18:47:09 UTC XORP CVS repository Modified files: pim pim_node_cli.cc Log message: Catch InvalidNetmaskLength exception. Bug found by: "edrt" Revision Changes Path 1.30 +32 -6 xorp/pim/pim_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 01:55:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 18:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O1u22u041134 for ; Thu, 23 Sep 2004 18:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O1u2NK044696 for ; Thu, 23 Sep 2004 18:56:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O1u1GF007822; Thu, 23 Sep 2004 18:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O1tdGF007809 for ; Thu, 23 Sep 2004 18:55:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O1tcNK044694 for ; Thu, 23 Sep 2004 18:55:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O1tcIb077422 for ; Thu, 23 Sep 2004 18:55:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O1tcfD077421 for xorp-cvs@icir.org; Fri, 24 Sep 2004 01:55:38 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 01:55:38 GMT From: Pavlin Radoslavov Message-Id: <200409240155.i8O1tcfD077421@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 01:55:38 UTC XORP CVS repository Modified files: libxipc test_xrl_receiver.cc test_xrl_sender.cc Log message: Compilation fixes for MacOS X Revision Changes Path 1.2 +4 -4 xorp/libxipc/test_xrl_receiver.cc 1.4 +3 -3 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 03:42:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 20:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O3h1og062178 for ; Thu, 23 Sep 2004 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3h1NK045760 for ; Thu, 23 Sep 2004 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3h0GF013566; Thu, 23 Sep 2004 20:43:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3guGF013558 for ; Thu, 23 Sep 2004 20:42:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3guNK045758 for ; Thu, 23 Sep 2004 20:42:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3gtIb078537 for ; Thu, 23 Sep 2004 20:42:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O3gtQJ078536 for xorp-cvs@icir.org; Fri, 24 Sep 2004 03:42:55 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 03:42:55 GMT From: Pavlin Radoslavov Message-Id: <200409240342.i8O3gtQJ078536@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 03:42:55 UTC XORP CVS repository Modified files: libxipc xrl_args.cc Log message: * Bug fix inside XrlArgs::unpack(): decrement "cnt" as appropriate. Note that this bug may be triggered only by bogus XRLs. * A nit. Revision Changes Path 1.9 +3 -4 xorp/libxipc/xrl_args.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 03:45:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 20:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O3k1gS062776 for ; Thu, 23 Sep 2004 20:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3k1NK045801 for ; Thu, 23 Sep 2004 20:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3k1GF013803; Thu, 23 Sep 2004 20:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3j9GF013685 for ; Thu, 23 Sep 2004 20:45:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3j9NK045795 for ; Thu, 23 Sep 2004 20:45:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3j9Ib078621 for ; Thu, 23 Sep 2004 20:45:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O3j9M0078620 for xorp-cvs@icir.org; Fri, 24 Sep 2004 03:45:09 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 03:45:09 GMT From: Pavlin Radoslavov Message-Id: <200409240345.i8O3j9M0078620@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 03:45:09 UTC XORP CVS repository Modified files: libxipc xrl_args.hh Log message: Add new methods for adding or referencing XrlAtoms to the beginning or the end of the XrlArgs::_args list. Revision Changes Path 1.10 +52 -1 xorp/libxipc/xrl_args.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 03:47:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 20:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O3m1QF063179 for ; Thu, 23 Sep 2004 20:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3m1NK045821 for ; Thu, 23 Sep 2004 20:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3m0GF014038; Thu, 23 Sep 2004 20:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3lmGF014021 for ; Thu, 23 Sep 2004 20:47:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3lmNK045815 for ; Thu, 23 Sep 2004 20:47:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3lmIb078710 for ; Thu, 23 Sep 2004 20:47:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O3lmce078709 for xorp-cvs@icir.org; Fri, 24 Sep 2004 03:47:48 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 03:47:48 GMT From: Pavlin Radoslavov Message-Id: <200409240347.i8O3lmce078709@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 03:47:48 UTC XORP CVS repository Modified files: libxipc xrl.cc xrl.hh Log message: Added support for packing/unpacking XRLs into/from a byte array. Revision Changes Path 1.9 +60 -7 xorp/libxipc/xrl.cc 1.10 +32 -2 xorp/libxipc/xrl.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 03:48:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 20:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O3n16f063382 for ; Thu, 23 Sep 2004 20:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3n1NK045839 for ; Thu, 23 Sep 2004 20:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3n1GF014089; Thu, 23 Sep 2004 20:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O3mMGF014063 for ; Thu, 23 Sep 2004 20:48:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3mLNK045833 for ; Thu, 23 Sep 2004 20:48:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O3mLIb078766 for ; Thu, 23 Sep 2004 20:48:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O3mLf1078765 for xorp-cvs@icir.org; Fri, 24 Sep 2004 03:48:21 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 03:48:21 GMT From: Pavlin Radoslavov Message-Id: <200409240348.i8O3mLf1078765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 03:48:21 UTC XORP CVS repository Modified files: libxipc test_xrl.cc Log message: Added a new test for XRL packing/unpacking. Revision Changes Path 1.10 +21 -1 xorp/libxipc/test_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 04:52:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 21:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O4r1sm075984 for ; Thu, 23 Sep 2004 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O4r1NK046489 for ; Thu, 23 Sep 2004 21:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O4r0GF020976; Thu, 23 Sep 2004 21:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O4qMGF020886 for ; Thu, 23 Sep 2004 21:52:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O4qLNK046481 for ; Thu, 23 Sep 2004 21:52:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O4qLIb079682 for ; Thu, 23 Sep 2004 21:52:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O4qLOF079681 for xorp-cvs@icir.org; Fri, 24 Sep 2004 04:52:21 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 04:52:21 GMT From: Pavlin Radoslavov Message-Id: <200409240452.i8O4qLOF079681@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 04:52:21 UTC XORP CVS repository Modified files: libxipc xrl_pf_stcp.cc libxorp asyncio.cc asyncio.hh Log message: Reverse-back to the original version when AsyncFileWriter does not write immediately to the socket (when possible), but schedules a callback to be called by the eventloop. The reason for the reversing is because the new version was triggering some asserts and/or errors when running the test_xrl_receiver/test_xrl_sender pair (could not be reproduced on all hosts), and finding the problem does not appear trivial. Revision Changes Path 1.35 +4 -11 xorp/libxipc/xrl_pf_stcp.cc 1.9 +9 -55 xorp/libxorp/asyncio.cc 1.9 +2 -6 xorp/libxorp/asyncio.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 06:50:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Sep 2004 23:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O6p245099446 for ; Thu, 23 Sep 2004 23:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O6p2NK047922 for ; Thu, 23 Sep 2004 23:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O6p1GF002613; Thu, 23 Sep 2004 23:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O6oeGF002579 for ; Thu, 23 Sep 2004 23:50:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O6oeNK047919 for ; Thu, 23 Sep 2004 23:50:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O6oeIb080853 for ; Thu, 23 Sep 2004 23:50:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O6oeHQ080852 for xorp-cvs@icir.org; Fri, 24 Sep 2004 06:50:40 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 06:50:40 GMT From: Pavlin Radoslavov Message-Id: <200409240650.i8O6oeHQ080852@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 06:50:40 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc Log message: Compilation fix for MacOS X: uint32_t -> size_t Revision Changes Path 1.10 +3 -3 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:37 2005 Subject: No subject Fri Sep 24 07:25:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Sep 2004 00:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8O7Q2gU006525 for ; Fri, 24 Sep 2004 00:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O7Q1NK048329 for ; Fri, 24 Sep 2004 00:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O7Q1GF006470; Fri, 24 Sep 2004 00:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8O7PCGF006327 for ; Fri, 24 Sep 2004 00:25:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O7PCNK048325 for ; Fri, 24 Sep 2004 00:25:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8O7PCIb081276 for ; Fri, 24 Sep 2004 00:25:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8O7PC3N081275 for xorp-cvs@icir.org; Fri, 24 Sep 2004 07:25:12 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 07:25:12 GMT From: Pavlin Radoslavov Message-Id: <200409240725.i8O7PC3N081275@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 07:25:12 UTC XORP CVS repository Modified files: bgp peer.cc Log message: Compilation fix for MacOS X Revision Changes Path 1.81 +3 -3 xorp/bgp/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Fri Sep 24 22:46:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Sep 2004 15:47:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8OMl2ts090858 for ; Fri, 24 Sep 2004 15:47:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8OMl1NK059840 for ; Fri, 24 Sep 2004 15:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8OMl1GF008383; Fri, 24 Sep 2004 15:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8OMkVGF008332 for ; Fri, 24 Sep 2004 15:46:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8OMkUNK059836 for ; Fri, 24 Sep 2004 15:46:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8OMkUIb090976 for ; Fri, 24 Sep 2004 15:46:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8OMkUcD090975 for xorp-cvs@icir.org; Fri, 24 Sep 2004 22:46:30 GMT (envelope-from pavlin) Date: Fri, 24 Sep 2004 22:46:30 GMT From: Pavlin Radoslavov Message-Id: <200409242246.i8OMkUcD090975@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-24 22:46:30 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in test_xrl_sender.cc Log message: Add support for compiling both sender and receiver within same binary (test_xrl_sender). Revision Changes Path 1.33 +4 -1 xorp/libxipc/Makefile.am 1.49 +3 -2 xorp/libxipc/Makefile.in 1.5 +184 -1 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Fri Sep 24 23:10:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 24 Sep 2004 16:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8ONB0x2095631 for ; Fri, 24 Sep 2004 16:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ONB0NK060122 for ; Fri, 24 Sep 2004 16:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8ONB0GF009009; Fri, 24 Sep 2004 16:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8ONAVGF008982 for ; Fri, 24 Sep 2004 16:10:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ONAVNK060119 for ; Fri, 24 Sep 2004 16:10:31 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8ONAVIb091272 for ; Fri, 24 Sep 2004 16:10:31 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8ONAVAu091271 for xorp-cvs@icir.org; Fri, 24 Sep 2004 23:10:31 GMT (envelope-from atanu) Date: Fri, 24 Sep 2004 23:10:31 GMT From: Atanu Ghosh Message-Id: <200409242310.i8ONAVAu091271@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-24 23:10:31 UTC XORP CVS repository Modified files: bgp test_cache.cc test_deletion.cc test_filter.cc test_nhlookup.cc test_ribin.cc Log message: The BGPpeer class was recently modified to compute its name once in the constructor (its name never changes). The constructor assumes that its BGPPeerData argument is never NULL, it never will be in BGP itself. The regression tests were not supplying a valid BGPPeerData argument. Revision Changes Path 1.21 +6 -3 xorp/bgp/test_cache.cc 1.21 +6 -3 xorp/bgp/test_deletion.cc 1.27 +6 -3 xorp/bgp/test_filter.cc 1.24 +6 -3 xorp/bgp/test_nhlookup.cc 1.26 +11 -5 xorp/bgp/test_ribin.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Mon Sep 27 01:04:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Sep 2004 18:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8R152ng012228 for ; Sun, 26 Sep 2004 18:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R152NK091621 for ; Sun, 26 Sep 2004 18:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R151GF015181; Sun, 26 Sep 2004 18:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R14EGF015059 for ; Sun, 26 Sep 2004 18:04:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R14ENK091614 for ; Sun, 26 Sep 2004 18:04:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R14EIb018672 for ; Sun, 26 Sep 2004 18:04:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8R14E7J018671 for xorp-cvs@icir.org; Mon, 27 Sep 2004 01:04:14 GMT (envelope-from pavlin) Date: Mon, 27 Sep 2004 01:04:14 GMT From: Pavlin Radoslavov Message-Id: <200409270104.i8R14E7J018671@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-27 01:04:14 UTC XORP CVS repository Modified files: libxorp eventloop.hh timer.cc timer.hh Log message: Apply a patch: Add an optional value argument to EventLoop/TimerList::set_flag_* methods. Revision Changes Path 1.11 +30 -16 xorp/libxorp/eventloop.hh 1.18 +9 -9 xorp/libxorp/timer.cc 1.19 +13 -10 xorp/libxorp/timer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Mon Sep 27 01:07:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Sep 2004 18:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8R181UA012839 for ; Sun, 26 Sep 2004 18:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R180NK091660 for ; Sun, 26 Sep 2004 18:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R180GF015634; Sun, 26 Sep 2004 18:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R17eGF015580 for ; Sun, 26 Sep 2004 18:07:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R17eNK091658 for ; Sun, 26 Sep 2004 18:07:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R17dIb018742 for ; Sun, 26 Sep 2004 18:07:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8R17ddH018741 for xorp-cvs@icir.org; Mon, 27 Sep 2004 01:07:39 GMT (envelope-from pavlin) Date: Mon, 27 Sep 2004 01:07:39 GMT From: Pavlin Radoslavov Message-Id: <200409270107.i8R17ddH018741@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-27 01:07:39 UTC XORP CVS repository Modified files: libxorp asyncio.cc Log message: Apply a patch: If a write() failure is because of ENOBUFSs we try again at smaller sizes until we can do write or give up and don't propage the error upstream. ENOBUFS is a problem the asyncio object need to worry about, not their clients. Revision Changes Path 1.10 +18 -4 xorp/libxorp/asyncio.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Mon Sep 27 04:58:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Sep 2004 21:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8R4x1tB057887 for ; Sun, 26 Sep 2004 21:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R4x1NK093687 for ; Sun, 26 Sep 2004 21:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R4x1GF026823; Sun, 26 Sep 2004 21:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R4weGF026810 for ; Sun, 26 Sep 2004 21:58:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R4weNK093685 for ; Sun, 26 Sep 2004 21:58:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R4wdIb020311 for ; Sun, 26 Sep 2004 21:58:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8R4wdL4020310 for xorp-cvs@icir.org; Mon, 27 Sep 2004 04:58:39 GMT (envelope-from pavlin) Date: Mon, 27 Sep 2004 04:58:39 GMT From: Pavlin Radoslavov Message-Id: <200409270458.i8R4wdL4020310@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-27 04:58:39 UTC XORP CVS repository Modified files: policy/test file_varrw.cc Log message: Bug fix: refactor the mechanism to obtain the third field (the value) from the iss input string stream. Previously, method in_avail() was used incorrectly as a method that returns how any characters are available in the buffer. The return value of in_avail() should be used only to indicate whether there is any data available in the buffer. Revision Changes Path 1.2 +9 -11 xorp/policy/test/file_varrw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Sun Sep 26 22:35:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 26 Sep 2004 22:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8R5a18K065120 for ; Sun, 26 Sep 2004 22:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R5a0NK093994 for ; Sun, 26 Sep 2004 22:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R5a0GF027540; Sun, 26 Sep 2004 22:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8R5ZFGF027520 for ; Sun, 26 Sep 2004 22:35:15 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R5ZFNK093989; Sun, 26 Sep 2004 22:35:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i8R5ZFwK057150; Sun, 26 Sep 2004 22:35:15 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200409270535.i8R5ZFwK057150@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/policy/test In-Reply-To: Message from Pavlin Radoslavov of "Mon, 27 Sep 2004 04:58:39 GMT." <200409270458.i8R4wdL4020310@xorpc.icir.org> Date: Sun, 26 Sep 2004 22:35:15 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2004-09-27 04:58:39 UTC > > XORP CVS repository > > > Modified files: > policy/test file_varrw.cc > > Log message: > Bug fix: refactor the mechanism to obtain the third field (the value) > from the iss input string stream. > > Previously, method in_avail() was used incorrectly as a method > that returns how any characters are available in the buffer. > The return value of in_avail() should be used only to indicate whether > there is any data available in the buffer. The above comment is incorrect. In the original code, in_avail() was used correctly; however, it appears that the STL implementation with gcc-2.9.x on Linux (e.g. RedHat-7.3) is buggy: in_avail() returns 1 if there is any data in the buffer, and 0 otherwise. In other words, the new refactored code is a work-around for such buggy STL implementation. Pavlin > > Revision Changes Path > 1.2 +9 -11 xorp/policy/test/file_varrw.cc > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Mon Sep 27 10:35:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 03:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8RAa1qD026566 for ; Mon, 27 Sep 2004 03:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8RAa1NK097220 for ; Mon, 27 Sep 2004 03:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8RAa0GF004093; Mon, 27 Sep 2004 03:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8RAZGGF004078 for ; Mon, 27 Sep 2004 03:35:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8RAZGNK097217 for ; Mon, 27 Sep 2004 03:35:16 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8RAZFIb023012 for ; Mon, 27 Sep 2004 03:35:15 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8RAZFVA023011 for xorp-cvs@icir.org; Mon, 27 Sep 2004 10:35:15 GMT (envelope-from abittau) Date: Mon, 27 Sep 2004 10:35:15 GMT From: Andrea Bittau Message-Id: <200409271035.i8RAZFVA023011@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-09-27 10:35:15 UTC XORP CVS repository Modified files: bgp bgp_varrw.cc bgp_varrw.hh Log message: The bug technically lies in route_table_policy.cc but I preferred a more generic fix. If a route is modified but rejected, the caller should obtain the filtered message and delete it. This does not occur in route_table_policy.cc. A scenario depicting this is actually present in policy/test/policy2.src. If BGPVarRW was used, there would have been a memory leak. As a fix, the BGPVarRW will check if the caller obtained the filtered message. If it didn't, BGPVarRW will delete the filtered message upon its destruction. Revision Changes Path 1.4 +11 -2 xorp/bgp/bgp_varrw.cc 1.4 +15 -10 xorp/bgp/bgp_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Tue Sep 28 00:31:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 17:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S0W1kM035415 for ; Mon, 27 Sep 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0W0NK007371 for ; Mon, 27 Sep 2004 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0W0GF028852; Mon, 27 Sep 2004 17:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0VlGF028842 for ; Mon, 27 Sep 2004 17:31:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0VlNK007369 for ; Mon, 27 Sep 2004 17:31:47 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0VlIb031891 for ; Mon, 27 Sep 2004 17:31:47 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S0VlWk031890 for xorp-cvs@icir.org; Tue, 28 Sep 2004 00:31:47 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 00:31:47 GMT From: Atanu Ghosh Message-Id: <200409280031.i8S0VlWk031890@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 00:31:47 UTC XORP CVS repository Modified files: rib xrl_shell_funcs.sh Log message: Functions to add and delete tables. Revision Changes Path 1.10 +15 -1 xorp/rib/xrl_shell_funcs.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Tue Sep 28 00:36:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 17:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S0c1hF037215 for ; Mon, 27 Sep 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0c1NK007419 for ; Mon, 27 Sep 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0c1GF029018; Mon, 27 Sep 2004 17:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0b0GF028988 for ; Mon, 27 Sep 2004 17:37:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0b0NK007417 for ; Mon, 27 Sep 2004 17:37:00 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0axIb032024 for ; Mon, 27 Sep 2004 17:36:59 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S0ax5X032023 for xorp-cvs@icir.org; Tue, 28 Sep 2004 00:36:59 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 00:36:59 GMT From: Atanu Ghosh Message-Id: <200409280036.i8S0ax5X032023@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 00:36:59 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Print the subnet and gateway address if we fail to add a route. Revision Changes Path 1.42 +13 -5 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Tue Sep 28 00:38:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 17:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S0d1nD037488 for ; Mon, 27 Sep 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0d1NK007429 for ; Mon, 27 Sep 2004 17:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0d1GF029057; Mon, 27 Sep 2004 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0cDGF029038 for ; Mon, 27 Sep 2004 17:38:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0cDNK007423 for ; Mon, 27 Sep 2004 17:38:13 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0cDIb032088 for ; Mon, 27 Sep 2004 17:38:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S0cDZc032087 for xorp-cvs@icir.org; Tue, 28 Sep 2004 00:38:13 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 00:38:13 GMT From: Atanu Ghosh Message-Id: <200409280038.i8S0cDZc032087@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 00:38:13 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in Added files: rib add_route.cc Log message: Test program to add routes to the RIB. Revision Changes Path 1.31 +6 -1 xorp/rib/Makefile.am 1.42 +41 -8 xorp/rib/Makefile.in 1.1 +347 -0 xorp/rib/add_route.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:38 2005 Subject: No subject Tue Sep 28 00:43:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 17:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S0i1fN038865 for ; Mon, 27 Sep 2004 17:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0i1NK007473 for ; Mon, 27 Sep 2004 17:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0i1GF029166; Mon, 27 Sep 2004 17:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S0hOGF029152 for ; Mon, 27 Sep 2004 17:43:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0hNNK007469 for ; Mon, 27 Sep 2004 17:43:23 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S0hNIb032282 for ; Mon, 27 Sep 2004 17:43:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S0hNok032281 for xorp-cvs@icir.org; Tue, 28 Sep 2004 00:43:23 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 00:43:23 GMT From: Atanu Ghosh Message-Id: <200409280043.i8S0hNok032281@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 00:43:23 UTC XORP CVS repository Modified files: bgp bgp.hh profile_vars.cc xrl_target.cc libxorp profile.cc profile.hh Log message: Create a utility class to return the profiling information. Move the enabled method to the header file and inline to try and reduce calling overhead. Revision Changes Path 1.32 +2 -2 xorp/bgp/bgp.hh 1.5 +1 -57 xorp/bgp/profile_vars.cc 1.30 +8 -4 xorp/bgp/xrl_target.cc 1.4 +1 -16 xorp/libxorp/profile.cc 1.3 +94 -2 xorp/libxorp/profile.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 01:17:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 18:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S1I1ai049688 for ; Mon, 27 Sep 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S1I1NK007820 for ; Mon, 27 Sep 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S1I0GF029955; Mon, 27 Sep 2004 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S1HTGF029944 for ; Mon, 27 Sep 2004 18:17:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S1HTNK007814 for ; Mon, 27 Sep 2004 18:17:29 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S1HTIb032555 for ; Mon, 27 Sep 2004 18:17:29 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S1HTxd032554 for xorp-cvs@icir.org; Tue, 28 Sep 2004 01:17:29 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 01:17:29 GMT From: Atanu Ghosh Message-Id: <200409280117.i8S1HTxd032554@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 01:17:29 UTC XORP CVS repository Modified files: bgp bgp.hh Log message: Fix a comment. Revision Changes Path 1.33 +2 -2 xorp/bgp/bgp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 03:52:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 20:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S3r1sM093496 for ; Mon, 27 Sep 2004 20:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S3r1NK009236 for ; Mon, 27 Sep 2004 20:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S3r1GF003339; Mon, 27 Sep 2004 20:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S3qaGF003324 for ; Mon, 27 Sep 2004 20:52:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S3qaNK009234 for ; Mon, 27 Sep 2004 20:52:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S3qZIb033991 for ; Mon, 27 Sep 2004 20:52:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S3qZ6R033990 for xorp-cvs@icir.org; Tue, 28 Sep 2004 03:52:35 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 03:52:35 GMT From: Atanu Ghosh Message-Id: <200409280352.i8S3qZ6R033990@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/rib xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 03:52:35 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in rib Makefile.am Makefile.in dummy_rib_manager.cc dummy_rib_manager.hh rib_manager.hh xrl_target.cc xrl_target.hh xrl/targets rib.tgt rib.xrls rib_base.cc rib_base.hh Log message: Profiling support. Revision Changes Path 1.26 +2 -1 xorp/pim/Makefile.am 1.38 +4 -1 xorp/pim/Makefile.in 1.32 +2 -1 xorp/rib/Makefile.am 1.43 +9 -1 xorp/rib/Makefile.in 1.14 +8 -2 xorp/rib/dummy_rib_manager.cc 1.14 +4 -1 xorp/rib/dummy_rib_manager.hh 1.29 +10 -3 xorp/rib/rib_manager.hh 1.43 +80 -1 xorp/rib/xrl_target.cc 1.29 +46 -1 xorp/rib/xrl_target.hh 1.7 +4 -2 xorp/xrl/targets/rib.tgt 1.29 +36 -1 xorp/xrl/targets/rib.xrls 1.31 +165 -1 xorp/xrl/targets/rib_base.cc 1.35 +67 -1 xorp/xrl/targets/rib_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 04:14:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 27 Sep 2004 21:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S4F1Yf010834 for ; Mon, 27 Sep 2004 21:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S4F1NK009431 for ; Mon, 27 Sep 2004 21:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S4F1GF003825; Mon, 27 Sep 2004 21:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S4EXGF003810 for ; Mon, 27 Sep 2004 21:14:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S4EXNK009422 for ; Mon, 27 Sep 2004 21:14:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S4EXIb034643 for ; Mon, 27 Sep 2004 21:14:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S4EXQT034642 for xorp-cvs@icir.org; Tue, 28 Sep 2004 04:14:33 GMT (envelope-from pavlin) Date: Tue, 28 Sep 2004 04:14:33 GMT From: Pavlin Radoslavov Message-Id: <200409280414.i8S4EXQT034642@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-28 04:14:33 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Fix a typo. Revision Changes Path 1.44 +2 -2 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 07:50:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 00:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S7p1YW053050 for ; Tue, 28 Sep 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S7p1NK011499 for ; Tue, 28 Sep 2004 00:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S7p1Kk009131; Tue, 28 Sep 2004 00:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S7oRKk009120 for ; Tue, 28 Sep 2004 00:50:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S7oRNK011488 for ; Tue, 28 Sep 2004 00:50:27 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S7oRIb036576 for ; Tue, 28 Sep 2004 00:50:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S7oR4v036575 for xorp-cvs@icir.org; Tue, 28 Sep 2004 07:50:27 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 07:50:27 GMT From: Atanu Ghosh Message-Id: <200409280750.i8S7oR4v036575@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 07:50:27 UTC XORP CVS repository Modified files: bgp profile_vars.hh Log message: Remove dead code. Revision Changes Path 1.4 +1 -26 xorp/bgp/profile_vars.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 08:10:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 01:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S8B1FF081452 for ; Tue, 28 Sep 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8B1NK011729 for ; Tue, 28 Sep 2004 01:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8B1Kk009585; Tue, 28 Sep 2004 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8ARKk009571 for ; Tue, 28 Sep 2004 01:10:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8ARNK011725 for ; Tue, 28 Sep 2004 01:10:27 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8ARIb036904 for ; Tue, 28 Sep 2004 01:10:27 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S8ARYr036903 for xorp-cvs@icir.org; Tue, 28 Sep 2004 08:10:27 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 08:10:27 GMT From: Atanu Ghosh Message-Id: <200409280810.i8S8ARYr036903@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 08:10:27 UTC XORP CVS repository Modified files: rib rib_manager.cc Log message: Initialize the profiling system. Revision Changes Path 1.42 +3 -2 xorp/rib/rib_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 08:11:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 01:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S8C1YW081798 for ; Tue, 28 Sep 2004 01:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8C1NK011747 for ; Tue, 28 Sep 2004 01:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8C1Kk009619; Tue, 28 Sep 2004 01:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8BBKk009598 for ; Tue, 28 Sep 2004 01:11:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8BANK011735 for ; Tue, 28 Sep 2004 01:11:10 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8BAIb036947 for ; Tue, 28 Sep 2004 01:11:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S8BAx6036946 for xorp-cvs@icir.org; Tue, 28 Sep 2004 08:11:10 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 08:11:10 GMT From: Atanu Ghosh Message-Id: <200409280811.i8S8BAx6036946@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 08:11:10 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Add profiling for routes entering the RIB. Revision Changes Path 1.45 +33 -2 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 08:14:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 01:15:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8S8F2Vn082449 for ; Tue, 28 Sep 2004 01:15:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8F1NK011787 for ; Tue, 28 Sep 2004 01:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8F1Kk009686; Tue, 28 Sep 2004 01:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8S8EiKk009675 for ; Tue, 28 Sep 2004 01:14:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8EiNK011780 for ; Tue, 28 Sep 2004 01:14:44 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8S8EiIb037042 for ; Tue, 28 Sep 2004 01:14:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8S8Ei0s037041 for xorp-cvs@icir.org; Tue, 28 Sep 2004 08:14:44 GMT (envelope-from atanu) Date: Tue, 28 Sep 2004 08:14:44 GMT From: Atanu Ghosh Message-Id: <200409280814.i8S8Ei0s037041@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-28 08:14:44 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in Added files: rib profile_vars.cc profile_vars.hh Log message: Define the profiling variables. Revision Changes Path 1.33 +3 -1 xorp/rib/Makefile.am 1.44 +6 -4 xorp/rib/Makefile.in 1.1 +41 -0 xorp/rib/profile_vars.cc (new) 1.1 +30 -0 xorp/rib/profile_vars.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 20:52:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 13:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8SKr1DQ039540 for ; Tue, 28 Sep 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SKr1mM021045 for ; Tue, 28 Sep 2004 13:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SKr1Kk002668; Tue, 28 Sep 2004 13:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SKqqKk002657 for ; Tue, 28 Sep 2004 13:52:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SKqpmM021043 for ; Tue, 28 Sep 2004 13:52:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SKqpIb045393 for ; Tue, 28 Sep 2004 13:52:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8SKqpQu045392 for xorp-cvs@icir.org; Tue, 28 Sep 2004 20:52:51 GMT (envelope-from pavlin) Date: Tue, 28 Sep 2004 20:52:51 GMT From: Pavlin Radoslavov Message-Id: <200409282052.i8SKqpQu045392@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-28 20:52:51 UTC XORP CVS repository Modified files: libxipc test_xrl_receiver.cc Log message: * Always define PRINT_DEBUG to 1 or 0, and use #if PRINT_DEBUG to conditionally print debug output. * Add #define RECEIVE_DO_EXIT to conditionally exit after end of transmission. * Use EventLoop::set_flag_after_ms() instead of an explicit callback to set the _done flag. Revision Changes Path 1.3 +14 -12 xorp/libxipc/test_xrl_receiver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 21:01:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 14:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8SL21qr041767 for ; Tue, 28 Sep 2004 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SL21mM021154 for ; Tue, 28 Sep 2004 14:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SL21Kk002991; Tue, 28 Sep 2004 14:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SL15Kk002961 for ; Tue, 28 Sep 2004 14:01:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SL15mM021144 for ; Tue, 28 Sep 2004 14:01:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SL15Ib045521 for ; Tue, 28 Sep 2004 14:01:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8SL15YD045520 for xorp-cvs@icir.org; Tue, 28 Sep 2004 21:01:05 GMT (envelope-from pavlin) Date: Tue, 28 Sep 2004 21:01:05 GMT From: Pavlin Radoslavov Message-Id: <200409282101.i8SL15YD045520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-28 21:01:05 UTC XORP CVS repository Modified files: libxipc test_xrl_sender.cc Log message: Apply a patch: * Replace #ifdef FOO with #if FOO where FOO now is always defined to 1 or 0 to conditionally enable/disable the execution of some of the code. * Add new #define SEND_DO_EXIT and RECEIVE_DO_EXIT to enable/disable exiting at the end of transmission. * Refactor the start of transmission * Use EventLoop::set_flag_after_ms() instead of an explicit callback to set the _done flag. * Rename SINGLE_BINARY to COMPILE_SINGLE_BINARY Revision Changes Path 1.6 +47 -35 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 21:11:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 14:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8SLC1Qd044149 for ; Tue, 28 Sep 2004 14:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLC1mM021257 for ; Tue, 28 Sep 2004 14:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SLC1Kk003308; Tue, 28 Sep 2004 14:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SLBFKk003254 for ; Tue, 28 Sep 2004 14:11:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLBFmM021253 for ; Tue, 28 Sep 2004 14:11:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLBFIb045654 for ; Tue, 28 Sep 2004 14:11:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8SLBFR7045653 for xorp-cvs@icir.org; Tue, 28 Sep 2004 21:11:15 GMT (envelope-from pavlin) Date: Tue, 28 Sep 2004 21:11:15 GMT From: Pavlin Radoslavov Message-Id: <200409282111.i8SLBFR7045653@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-28 21:11:15 UTC XORP CVS repository Modified files: libxipc xrl.cc xrl.hh Log message: Apply a patch: * Inline Xrl::string_no_args() Revision Changes Path 1.10 +1 -8 xorp/libxipc/xrl.cc 1.11 +17 -2 xorp/libxipc/xrl.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:39 2005 Subject: No subject Tue Sep 28 21:17:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 14:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8SLI1Ci045694 for ; Tue, 28 Sep 2004 14:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLI0mM021324 for ; Tue, 28 Sep 2004 14:18:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SLI0Kk003483; Tue, 28 Sep 2004 14:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8SLHWKk003468 for ; Tue, 28 Sep 2004 14:17:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLHWmM021322 for ; Tue, 28 Sep 2004 14:17:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8SLHWIb045783 for ; Tue, 28 Sep 2004 14:17:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8SLHWtN045782 for xorp-cvs@icir.org; Tue, 28 Sep 2004 21:17:32 GMT (envelope-from pavlin) Date: Tue, 28 Sep 2004 21:17:32 GMT From: Pavlin Radoslavov Message-Id: <200409282117.i8SLHWtN045782@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-28 21:17:32 UTC XORP CVS repository Modified files: libxipc finder_client.cc finder_client.hh Log message: Apply a patch: * Add new method FinderClient::queries_pending() to get the number of asynchonous queries pending resolution. * Add a new static FinderClientQuery::_instance_count Revision Changes Path 1.26 +23 -3 xorp/libxipc/finder_client.cc 1.16 +6 -1 xorp/libxipc/finder_client.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 02:30:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 28 Sep 2004 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T2V1wU016356 for ; Tue, 28 Sep 2004 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2V1mM024147 for ; Tue, 28 Sep 2004 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T2V1Kk012976; Tue, 28 Sep 2004 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T2UqKk012968 for ; Tue, 28 Sep 2004 19:30:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2UpmM024143 for ; Tue, 28 Sep 2004 19:30:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2UpIb048272 for ; Tue, 28 Sep 2004 19:30:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T2UpO3048271 for xorp-cvs@icir.org; Wed, 29 Sep 2004 02:30:51 GMT (envelope-from atanu) Date: Wed, 29 Sep 2004 02:30:51 GMT From: Atanu Ghosh Message-Id: <200409290230.i8T2UpO3048271@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-09-29 02:30:51 UTC XORP CVS repository Modified files: rib add_route.cc Log message: Cast for the Mac. Revision Changes Path 1.2 +2 -2 xorp/rib/add_route.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Tue Sep 28 19:35:37 2004 Return-Path: pavlin@icir.org Delivery-Date: Tue, 28 Sep 2004 19:35:38 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T2Zcjh017463 for ; Tue, 28 Sep 2004 19:35:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2ZbmM024192; Tue, 28 Sep 2004 19:35:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2ZbwK026457; Tue, 28 Sep 2004 19:35:37 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200409290235.i8T2ZbwK026457@possum.icir.org> To: Atanu Ghosh cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rib In-Reply-To: Message from Atanu Ghosh of "Wed, 29 Sep 2004 02:30:51 GMT." <200409290230.i8T2UpO3048271@xorpc.icir.org> Date: Tue, 28 Sep 2004 19:35:37 -0700 From: Pavlin Radoslavov > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Changes by: atanu@xorpc.icir.org 2004-09-29 02:30:51 UTC > > XORP CVS repository > > > Modified files: > rib add_route.cc > > Log message: > Cast for the Mac. > > Revision Changes Path > 1.2 +2 -2 xorp/rib/add_route.cc I don't have the C++ book with me, but wasn't the static_cast<> suppose to be used for casting-away the "static" property of a variable? In other words, even though static_cast<> fixes the compilation problem, strictly speaking I believe we should use some other cast when we cast to a different variable type. Pavlin From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Tue Sep 28 19:40:41 2004 Return-Path: pavlin@icir.org Delivery-Date: Tue, 28 Sep 2004 19:40:42 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T2efEI018663 for ; Tue, 28 Sep 2004 19:40:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2efmM024237; Tue, 28 Sep 2004 19:40:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T2efwK027105; Tue, 28 Sep 2004 19:40:41 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200409290240.i8T2efwK027105@possum.icir.org> To: Pavlin Radoslavov cc: Atanu Ghosh , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rib In-Reply-To: Message from Pavlin Radoslavov of "Tue, 28 Sep 2004 19:35:37 PDT." <200409290235.i8T2ZbwK026457@possum.icir.org> Date: Tue, 28 Sep 2004 19:40:41 -0700 From: Pavlin Radoslavov > > CVSROOT: /usr/local/www/data/cvs > > Module name: xorp > > Changes by: atanu@xorpc.icir.org 2004-09-29 02:30:51 UTC > > > > XORP CVS repository > > > > > > Modified files: > > rib add_route.cc > > > > Log message: > > Cast for the Mac. > > > > Revision Changes Path > > 1.2 +2 -2 xorp/rib/add_route.cc > > I don't have the C++ book with me, but wasn't the static_cast<> > suppose to be used for casting-away the "static" property of a > variable? In other words, even though static_cast<> fixes the > compilation problem, strictly speaking I believe we should use some > other cast when we cast to a different variable type. Please ignore the above note. I confused static_cast with const_cast. Pavlin From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 08:29:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Sep 2004 01:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T8U2eQ090020 for ; Wed, 29 Sep 2004 01:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8U1MO027469 for ; Wed, 29 Sep 2004 01:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8U1Kk022290; Wed, 29 Sep 2004 01:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8TfKk022281 for ; Wed, 29 Sep 2004 01:29:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8TeMO027464 for ; Wed, 29 Sep 2004 01:29:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8TeIb051826 for ; Wed, 29 Sep 2004 01:29:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T8TewB051825 for xorp-cvs@icir.org; Wed, 29 Sep 2004 08:29:40 GMT (envelope-from pavlin) Date: Wed, 29 Sep 2004 08:29:40 GMT From: Pavlin Radoslavov Message-Id: <200409290829.i8T8TewB051825@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-29 08:29:40 UTC XORP CVS repository Modified files: fea configure_mfea mld6igmp configure_mld6igmp pim configure_pim Log message: Add a configuration entry for host carp.icir.org Revision Changes Path 1.10 +5 -1 xorp/fea/configure_mfea 1.19 +5 -1 xorp/mld6igmp/configure_mld6igmp 1.36 +17 -1 xorp/pim/configure_pim _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 08:34:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Sep 2004 01:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T8Z17S090768 for ; Wed, 29 Sep 2004 01:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8Z1MO027523 for ; Wed, 29 Sep 2004 01:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8Z0Kk022445; Wed, 29 Sep 2004 01:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8YlKk022435 for ; Wed, 29 Sep 2004 01:34:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8YkMO027515 for ; Wed, 29 Sep 2004 01:34:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8YkIb051949 for ; Wed, 29 Sep 2004 01:34:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T8YkOG051948 for xorp-cvs@icir.org; Wed, 29 Sep 2004 08:34:46 GMT (envelope-from pavlin) Date: Wed, 29 Sep 2004 08:34:46 GMT From: Pavlin Radoslavov Message-Id: <200409290834.i8T8YkOG051948@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-29 08:34:46 UTC XORP CVS repository Modified files: rtrmgr .cvsignore Log message: Add xorp_profiler to .cvsignore Revision Changes Path 1.7 +1 -0 xorp/rtrmgr/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 08:36:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Sep 2004 01:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T8b1f1091097 for ; Wed, 29 Sep 2004 01:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8b1MO027556 for ; Wed, 29 Sep 2004 01:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8b1Kk022507; Wed, 29 Sep 2004 01:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8aDKk022476 for ; Wed, 29 Sep 2004 01:36:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8aDMO027554 for ; Wed, 29 Sep 2004 01:36:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8aDIb052024 for ; Wed, 29 Sep 2004 01:36:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T8aDGo052023 for xorp-cvs@icir.org; Wed, 29 Sep 2004 08:36:13 GMT (envelope-from pavlin) Date: Wed, 29 Sep 2004 08:36:13 GMT From: Pavlin Radoslavov Message-Id: <200409290836.i8T8aDGo052023@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-29 08:36:13 UTC XORP CVS repository Modified files: policy .cvsignore Log message: Add test_policy to .cvsignore Revision Changes Path 1.5 +1 -1 xorp/policy/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 08:38:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Sep 2004 01:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T8d1MK091413 for ; Wed, 29 Sep 2004 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8d1MO027579 for ; Wed, 29 Sep 2004 01:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8d1Kk022588; Wed, 29 Sep 2004 01:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8ceKk022579 for ; Wed, 29 Sep 2004 01:38:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8ceMO027573 for ; Wed, 29 Sep 2004 01:38:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8ceIb052176 for ; Wed, 29 Sep 2004 01:38:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T8cexY052175 for xorp-cvs@icir.org; Wed, 29 Sep 2004 08:38:40 GMT (envelope-from pavlin) Date: Wed, 29 Sep 2004 08:38:40 GMT From: Pavlin Radoslavov Message-Id: <200409290838.i8T8cexY052175@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/backend xorp/policy/common xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-29 08:38:40 UTC XORP CVS repository Added files: policy/backend .cvsignore policy/common .cvsignore policy/test .cvsignore Log message: Add new file .cvsignore Revision Changes Path 1.1 +6 -0 xorp/policy/backend/.cvsignore (new) 1.1 +6 -0 xorp/policy/common/.cvsignore (new) 1.1 +8 -0 xorp/policy/test/.cvsignore (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Wed Sep 29 08:54:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Sep 2004 01:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8T8t1bH094581 for ; Wed, 29 Sep 2004 01:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8t1MO027786 for ; Wed, 29 Sep 2004 01:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8t0Kk022978; Wed, 29 Sep 2004 01:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8T8sPKk022962 for ; Wed, 29 Sep 2004 01:54:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8sOMO027779 for ; Wed, 29 Sep 2004 01:54:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8T8sOIb052423 for ; Wed, 29 Sep 2004 01:54:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8T8sOAf052422 for xorp-cvs@icir.org; Wed, 29 Sep 2004 08:54:24 GMT (envelope-from pavlin) Date: Wed, 29 Sep 2004 08:54:24 GMT From: Pavlin Radoslavov Message-Id: <200409290854.i8T8sOAf052422@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-09-29 08:54:24 UTC XORP CVS repository Modified files: libxorp ipv6.cc Log message: Refactor the implementation of IPv6::make_prefix() by moving the static array v6prefix inside IPv6::make_prefix(). The refactoring is needed because in case of OpenBSD with egcc-3.2.2 compiler the static v6prefix[] array may loose state (probably because of a bug with the compiler) For example, the first time IPv6::make_prefix() is called, it correctly initializes the v6prefix vector with the appropriate values. However, the second time IPv6::make_prefix() is called, the values inside the v6prefix[] vector are lost; this compiler bug cannot be triggered by test_ipv6 itself, but when running, say, pim/test_pim, or some of the rip/test_* test programs. Revision Changes Path 1.15 +4 -6 xorp/libxorp/ipv6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:40 2005 Subject: No subject Fri Oct 1 20:23:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 13:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91KO1IV056991 for ; Fri, 1 Oct 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91KO1PC068319 for ; Fri, 1 Oct 2004 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91KO1Kk008417; Fri, 1 Oct 2004 13:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91KN2Kk008382 for ; Fri, 1 Oct 2004 13:23:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91KN1PC068310 for ; Fri, 1 Oct 2004 13:23:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91KN1X6088901 for ; Fri, 1 Oct 2004 13:23:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91KN1jQ088900 for xorp-cvs@icir.org; Fri, 1 Oct 2004 20:23:01 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 20:23:01 GMT From: Pavlin Radoslavov Message-Id: <200410012023.i91KN1jQ088900@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 20:23:01 UTC XORP CVS repository Modified files: rib test_rib_xrls.cc Log message: Bug fix: Add &rib_manager as one of the arguments to XrlRibTarget instead of NULL. This fixes a "gmake check" test failure. Bug found by: Bruce M Simpson Revision Changes Path 1.35 +2 -2 xorp/rib/test_rib_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 20:37:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 13:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91Kc1P9061938 for ; Fri, 1 Oct 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91Kc1PC068477 for ; Fri, 1 Oct 2004 13:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91Kc1Kk008898; Fri, 1 Oct 2004 13:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91KbCKk008879 for ; Fri, 1 Oct 2004 13:37:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91KbCPC068464 for ; Fri, 1 Oct 2004 13:37:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91KbCal089138 for ; Fri, 1 Oct 2004 13:37:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91KbCug089137 for xorp-cvs@icir.org; Fri, 1 Oct 2004 20:37:12 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 20:37:12 GMT From: Pavlin Radoslavov Message-Id: <200410012037.i91KbCug089137@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 20:37:12 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in Log message: Reorder the "No-install" programs in alphabetical order. Revision Changes Path 1.34 +8 -8 xorp/rib/Makefile.am 1.45 +8 -8 xorp/rib/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 20:37:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 13:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91Kc2wE061958 for ; Fri, 1 Oct 2004 13:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91Kc2PC068479 for ; Fri, 1 Oct 2004 13:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91Kc2Kk008909; Fri, 1 Oct 2004 13:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91KbaKk008887 for ; Fri, 1 Oct 2004 13:37:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91KbaPC068473 for ; Fri, 1 Oct 2004 13:37:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91KbaSf089194 for ; Fri, 1 Oct 2004 13:37:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91KbaXP089193 for xorp-cvs@icir.org; Fri, 1 Oct 2004 20:37:36 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 20:37:36 GMT From: Pavlin Radoslavov Message-Id: <200410012037.i91KbaXP089193@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 20:37:36 UTC XORP CVS repository Modified files: rib .cvsignore Log message: Add add_route to .cvsignore Revision Changes Path 1.8 +1 -0 xorp/rib/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 13:54:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 13:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91Kt1rW066263 for ; Fri, 1 Oct 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91Kt1PC068667 for ; Fri, 1 Oct 2004 13:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91Kt1Kk009318; Fri, 1 Oct 2004 13:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91KswKk009308 for ; Fri, 1 Oct 2004 13:54:58 -0700 (PDT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91KswPC068661; Fri, 1 Oct 2004 13:54:58 -0700 (PDT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 192DB65211; Fri, 1 Oct 2004 21:54:52 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 15371-01; Fri, 1 Oct 2004 21:54:51 +0100 (BST) Received: from empiric.dek.spc.org (dhcp120.icir.org [192.150.187.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 763FB6520F; Fri, 1 Oct 2004 21:54:51 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 4BE9E63CB; Fri, 1 Oct 2004 13:54:49 -0700 (PDT) Date: Fri, 1 Oct 2004 13:54:49 -0700 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rib Message-ID: <20041001205449.GG1163@empiric.icir.org> References: <200410012023.i91KN1jQ088900@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200410012023.i91KN1jQ088900@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Fri, Oct 01, 2004 at 08:23:01PM +0000, Pavlin Radoslavov wrote: > Log message: > Bug fix: > Add &rib_manager as one of the arguments to XrlRibTarget instead of NULL. > This fixes a "gmake check" test failure. Looks good on my local checkout. BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 22:09:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 15:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91MA1fX084802 for ; Fri, 1 Oct 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91MA1PC069504 for ; Fri, 1 Oct 2004 15:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91MA1Kk011435; Fri, 1 Oct 2004 15:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91M91Kk011409 for ; Fri, 1 Oct 2004 15:09:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91M90PC069493 for ; Fri, 1 Oct 2004 15:09:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91M90Cf089948 for ; Fri, 1 Oct 2004 15:09:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91M90p3089947 for xorp-cvs@icir.org; Fri, 1 Oct 2004 22:09:00 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 22:09:00 GMT From: Pavlin Radoslavov Message-Id: <200410012209.i91M90p3089947@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 22:09:00 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in Log message: Cleanup: reorder test programs and soruce files in alphabetical order and add extra tab spaces for better alignment. Revision Changes Path 1.35 +161 -161 xorp/rib/Makefile.am 1.46 +23 -23 xorp/rib/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 22:29:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 15:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91MU18l089593 for ; Fri, 1 Oct 2004 15:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91MU0PC069693 for ; Fri, 1 Oct 2004 15:30:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91MU0Kk011989; Fri, 1 Oct 2004 15:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91MT0Kk011961 for ; Fri, 1 Oct 2004 15:29:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91MT0PC069684 for ; Fri, 1 Oct 2004 15:29:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91MT06v090180 for ; Fri, 1 Oct 2004 15:29:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91MT0Hq090179 for xorp-cvs@icir.org; Fri, 1 Oct 2004 22:29:00 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 22:29:00 GMT From: Pavlin Radoslavov Message-Id: <200410012229.i91MT0Hq090179@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 22:29:00 UTC XORP CVS repository Modified files: rib rt_tab_expect.cc rt_tab_expect.hh Log message: * Rename ExpectedTable::_expected to _expected_route_changes * Add new method ExpectedTable::expected_route_changes() Revision Changes Path 1.9 +12 -12 xorp/rib/rt_tab_expect.cc 1.5 +7 -3 xorp/rib/rt_tab_expect.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 22:43:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 15:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91Mi1m2092893 for ; Fri, 1 Oct 2004 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91Mi1PC069813 for ; Fri, 1 Oct 2004 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91Mi1Kk012435; Fri, 1 Oct 2004 15:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91MhFKk012416 for ; Fri, 1 Oct 2004 15:43:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91MhEPC069809 for ; Fri, 1 Oct 2004 15:43:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91MhEPO090333 for ; Fri, 1 Oct 2004 15:43:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91MhEVH090332 for xorp-cvs@icir.org; Fri, 1 Oct 2004 22:43:14 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 22:43:14 GMT From: Pavlin Radoslavov Message-Id: <200410012243.i91MhEVH090332@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 22:43:14 UTC XORP CVS repository Modified files: rib test_deletion.cc Log message: Refactor the eventloop execution such that we don't depend anymore on how many times eventloop.run() has been called. Revision Changes Path 1.7 +14 -11 xorp/rib/test_deletion.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 22:47:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 15:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91Mm1Dh093875 for ; Fri, 1 Oct 2004 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91Mm0PC069859 for ; Fri, 1 Oct 2004 15:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91Mm0Kk012551; Fri, 1 Oct 2004 15:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91MlaKk012537 for ; Fri, 1 Oct 2004 15:47:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91MlaPC069852 for ; Fri, 1 Oct 2004 15:47:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91Mla16090461 for ; Fri, 1 Oct 2004 15:47:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91MlaOw090460 for xorp-cvs@icir.org; Fri, 1 Oct 2004 22:47:36 GMT (envelope-from atanu) Date: Fri, 1 Oct 2004 22:47:36 GMT From: Atanu Ghosh Message-Id: <200410012247.i91MlaOw090460@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-01 22:47:36 UTC XORP CVS repository Modified files: rib redist_xrl.cc redist_xrl.hh rib_manager.cc Log message: Add profiling for routes leaving the RIB. Revision Changes Path 1.15 +63 -35 xorp/rib/redist_xrl.cc 1.7 +5 -1 xorp/rib/redist_xrl.hh 1.43 +14 -6 xorp/rib/rib_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Fri Oct 1 23:17:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 16:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i91NI1KR001394 for ; Fri, 1 Oct 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91NI1PC070158 for ; Fri, 1 Oct 2004 16:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91NI1Kk013287; Fri, 1 Oct 2004 16:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i91NH2Kk013272 for ; Fri, 1 Oct 2004 16:17:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i91NH1PC070153 for ; Fri, 1 Oct 2004 16:17:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i91NH1cm000130 for ; Fri, 1 Oct 2004 16:17:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i91NH1kf000129 for xorp-cvs@icir.org; Fri, 1 Oct 2004 23:17:01 GMT (envelope-from pavlin) Date: Fri, 1 Oct 2004 23:17:01 GMT From: Pavlin Radoslavov Message-Id: <200410012317.i91NH1kf000129@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-01 23:17:01 UTC XORP CVS repository Modified files: rib rt_tab_expect.cc rt_tab_expect.hh Log message: Move the definition of class ExpectedRouteChange from rt_tab_expect.cc to rt_tab_expect.hh. This fixes a compilation problem on gcc-2.9x Bug found by: Atanu Ghosh Revision Changes Path 1.10 +1 -14 xorp/rib/rt_tab_expect.cc 1.6 +14 -1 xorp/rib/rt_tab_expect.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Sat Oct 2 03:42:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 20:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i923h2vh065008 for ; Fri, 1 Oct 2004 20:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i923h1PC072359 for ; Fri, 1 Oct 2004 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i923h1Kk019319; Fri, 1 Oct 2004 20:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i923gCKk019293 for ; Fri, 1 Oct 2004 20:42:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i923gCPC072356 for ; Fri, 1 Oct 2004 20:42:12 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i923gCHu006178 for ; Fri, 1 Oct 2004 20:42:12 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i923gCpI006177 for xorp-cvs@icir.org; Sat, 2 Oct 2004 03:42:12 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 03:42:12 GMT From: Atanu Ghosh Message-Id: <200410020342.i923gCpI006177@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 03:42:12 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in fea.cc test_mfea.cc xrl_target.cc xrl_target.hh mld6igmp Makefile.am Makefile.in test_mld6igmp.cc pim Makefile.am Makefile.in test_pim.cc xrl/targets fea.tgt fea.xrls fea_base.cc fea_base.hh Log message: Profiling hooks for the FEA. Revision Changes Path 1.41 +5 -1 xorp/fea/Makefile.am 1.52 +7 -2 xorp/fea/Makefile.in 1.34 +8 -1 xorp/fea/fea.cc 1.11 +8 -1 xorp/fea/test_mfea.cc 1.50 +84 -3 xorp/fea/xrl_target.cc 1.39 +25 -1 xorp/fea/xrl_target.hh 1.23 +2 -1 xorp/mld6igmp/Makefile.am 1.35 +2 -1 xorp/mld6igmp/Makefile.in 1.32 +8 -1 xorp/mld6igmp/test_mld6igmp.cc 1.27 +3 -1 xorp/pim/Makefile.am 1.39 +5 -1 xorp/pim/Makefile.in 1.37 +8 -2 xorp/pim/test_pim.cc 1.10 +5 -2 xorp/xrl/targets/fea.tgt 1.39 +36 -1 xorp/xrl/targets/fea.xrls 1.41 +165 -1 xorp/xrl/targets/fea_base.cc 1.45 +67 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Sat Oct 2 03:47:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 20:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i923m0tF086027 for ; Fri, 1 Oct 2004 20:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i923m0PC072401 for ; Fri, 1 Oct 2004 20:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i923m0Kk019397; Fri, 1 Oct 2004 20:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i923l7Kk019388 for ; Fri, 1 Oct 2004 20:47:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i923l7PC072399 for ; Fri, 1 Oct 2004 20:47:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i923l7nE006270 for ; Fri, 1 Oct 2004 20:47:07 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i923l7tn006269 for xorp-cvs@icir.org; Sat, 2 Oct 2004 03:47:07 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 03:47:07 GMT From: Atanu Ghosh Message-Id: <200410020347.i923l7tn006269@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 03:47:07 UTC XORP CVS repository Modified files: bgp profile_vars.cc Log message: Remove dead code. Revision Changes Path 1.6 +1 -4 xorp/bgp/profile_vars.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:41 2005 Subject: No subject Sat Oct 2 04:09:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 21:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i924A1ts091398 for ; Fri, 1 Oct 2004 21:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i924A0PC072594 for ; Fri, 1 Oct 2004 21:10:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i924A0Kk019937; Fri, 1 Oct 2004 21:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9249HKk019907 for ; Fri, 1 Oct 2004 21:09:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9249GPC072586 for ; Fri, 1 Oct 2004 21:09:16 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9249GNm006479 for ; Fri, 1 Oct 2004 21:09:16 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9249GdJ006478 for xorp-cvs@icir.org; Sat, 2 Oct 2004 04:09:16 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 04:09:16 GMT From: Atanu Ghosh Message-Id: <200410020409.i9249GdJ006478@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 04:09:16 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in fea.cc Added files: fea profile_vars.cc profile_vars.hh Log message: Add profiling variables and initialize them. Revision Changes Path 1.42 +3 -1 xorp/fea/Makefile.am 1.53 +11 -8 xorp/fea/Makefile.in 1.35 +3 -1 xorp/fea/fea.cc 1.1 +38 -0 xorp/fea/profile_vars.cc (new) 1.1 +30 -0 xorp/fea/profile_vars.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sat Oct 2 04:22:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Oct 2004 21:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i924N1DC006954 for ; Fri, 1 Oct 2004 21:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i924N1PC072712 for ; Fri, 1 Oct 2004 21:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i924N1Kk020209; Fri, 1 Oct 2004 21:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i924MLKk020182 for ; Fri, 1 Oct 2004 21:22:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i924MKPC072708 for ; Fri, 1 Oct 2004 21:22:20 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i924MKgx006657 for ; Fri, 1 Oct 2004 21:22:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i924MKBl006656 for xorp-cvs@icir.org; Sat, 2 Oct 2004 04:22:20 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 04:22:20 GMT From: Atanu Ghosh Message-Id: <200410020422.i924MKBl006656@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 04:22:20 UTC XORP CVS repository Modified files: fea xrl_target.cc Log message: Profile routes arriving at the FEA. Revision Changes Path 1.51 +16 -1 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sat Oct 2 19:47:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Oct 2004 12:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i92Jm1CI037376 for ; Sat, 2 Oct 2004 12:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92Jm1PC085010 for ; Sat, 2 Oct 2004 12:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92Jm0Kk011267; Sat, 2 Oct 2004 12:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92JltKk011260 for ; Sat, 2 Oct 2004 12:47:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92JltPC085008 for ; Sat, 2 Oct 2004 12:47:55 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i92JltDT014810 for ; Sat, 2 Oct 2004 12:47:55 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i92JltZE014809 for xorp-cvs@icir.org; Sat, 2 Oct 2004 19:47:55 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 19:47:55 GMT From: Atanu Ghosh Message-Id: <200410021947.i92JltZE014809@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 19:47:55 UTC XORP CVS repository Modified files: bgp profile_vars.cc Log message: Remove some dead includes. Revision Changes Path 1.7 +1 -4 xorp/bgp/profile_vars.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sat Oct 2 19:49:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Oct 2004 12:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i92Jo1GS037779 for ; Sat, 2 Oct 2004 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92Jo1PC085036 for ; Sat, 2 Oct 2004 12:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92Jo1Kk011330; Sat, 2 Oct 2004 12:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92JnqKk011321 for ; Sat, 2 Oct 2004 12:49:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92JnpPC085029 for ; Sat, 2 Oct 2004 12:49:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i92JnpF5014957 for ; Sat, 2 Oct 2004 12:49:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i92JnpUI014956 for xorp-cvs@icir.org; Sat, 2 Oct 2004 19:49:51 GMT (envelope-from atanu) Date: Sat, 2 Oct 2004 19:49:51 GMT From: Atanu Ghosh Message-Id: <200410021949.i92JnpUI014956@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-02 19:49:51 UTC XORP CVS repository Modified files: fea fea.cc fticonfig.cc fticonfig.hh test_mfea.cc mld6igmp test_mld6igmp.cc pim test_pim.cc Log message: Profiling hooks into the forwarding table interface. Revision Changes Path 1.36 +9 -8 xorp/fea/fea.cc 1.25 +3 -2 xorp/fea/fticonfig.cc 1.19 +4 -2 xorp/fea/fticonfig.hh 1.12 +7 -7 xorp/fea/test_mfea.cc 1.33 +7 -7 xorp/mld6igmp/test_mld6igmp.cc 1.38 +7 -7 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sat Oct 2 22:39:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Oct 2004 15:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i92Me10s071180 for ; Sat, 2 Oct 2004 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92Me1PC086346 for ; Sat, 2 Oct 2004 15:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92Me1Kk015048; Sat, 2 Oct 2004 15:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i92MdOKk015034 for ; Sat, 2 Oct 2004 15:39:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i92MdOPC086341 for ; Sat, 2 Oct 2004 15:39:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i92MdOgS016623 for ; Sat, 2 Oct 2004 15:39:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i92MdOlA016622 for xorp-cvs@icir.org; Sat, 2 Oct 2004 22:39:24 GMT (envelope-from pavlin) Date: Sat, 2 Oct 2004 22:39:24 GMT From: Pavlin Radoslavov Message-Id: <200410022239.i92MdOlA016622@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-02 22:39:24 UTC XORP CVS repository Modified files: fea profile_vars.hh Log message: Fix a typo: __FEA_TO_TEMPLATE_HH__ -> __FEA_PROFILE_VARS_HH__ Revision Changes Path 1.2 +4 -4 xorp/fea/profile_vars.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sun Oct 3 10:34:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 03 Oct 2004 03:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i93AZ14M018907 for ; Sun, 3 Oct 2004 03:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93AZ1PC092424 for ; Sun, 3 Oct 2004 03:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93AZ1Kk028810; Sun, 3 Oct 2004 03:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93AYMKk028791 for ; Sun, 3 Oct 2004 03:34:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93AYLPC092414 for ; Sun, 3 Oct 2004 03:34:21 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i93AYLeg021964 for ; Sun, 3 Oct 2004 03:34:21 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i93AYLUo021963 for xorp-cvs@icir.org; Sun, 3 Oct 2004 10:34:21 GMT (envelope-from abittau) Date: Sun, 3 Oct 2004 10:34:21 GMT From: Andrea Bittau Message-Id: <200410031034.i93AYLUo021963@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-10-03 10:34:21 UTC XORP CVS repository Modified files: rip test_route_walk.cc Log message: Print how long it takes to add the routes before they start being walked. Revision Changes Path 1.9 +12 -1 xorp/rip/test_route_walk.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sun Oct 3 10:35:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 03 Oct 2004 03:36:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i93Aa0FJ019141 for ; Sun, 3 Oct 2004 03:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93Aa0PC092453 for ; Sun, 3 Oct 2004 03:36:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93Aa0Kk028832; Sun, 3 Oct 2004 03:36:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93AZmKk028825 for ; Sun, 3 Oct 2004 03:35:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93AZmPC092449 for ; Sun, 3 Oct 2004 03:35:48 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i93AZm4P022045 for ; Sun, 3 Oct 2004 03:35:48 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i93AZmUE022044 for xorp-cvs@icir.org; Sun, 3 Oct 2004 10:35:48 GMT (envelope-from abittau) Date: Sun, 3 Oct 2004 10:35:48 GMT From: Andrea Bittau Message-Id: <200410031035.i93AZmUE022044@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-10-03 10:35:48 UTC XORP CVS repository Modified files: rip rip_varrw.cc rip_varrw.hh Log message: Do not use the ElementFactory to initialize elements. Create them directly. This will make RIPVarRW construction faster. Revision Changes Path 1.3 +8 -15 xorp/rip/rip_varrw.cc 1.3 +1 -3 xorp/rip/rip_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Sun Oct 3 11:38:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 03 Oct 2004 04:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i93Bd1gb031538 for ; Sun, 3 Oct 2004 04:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93Bd1PC092993 for ; Sun, 3 Oct 2004 04:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93Bd1Kk000067; Sun, 3 Oct 2004 04:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i93BcKKk000050 for ; Sun, 3 Oct 2004 04:38:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i93BcJPC092989 for ; Sun, 3 Oct 2004 04:38:19 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i93BcJRG022576 for ; Sun, 3 Oct 2004 04:38:19 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i93BcJpH022575 for xorp-cvs@icir.org; Sun, 3 Oct 2004 11:38:19 GMT (envelope-from mjh) Date: Sun, 3 Oct 2004 11:38:19 GMT From: Mark Handley Message-Id: <200410031138.i93BcJpH022575@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2004-10-03 11:38:19 UTC XORP CVS repository Modified files: . people.html html_src people.html Log message: Add Andrea to people list. Revision Changes Path 1.3 +1 -0 www/html_src/people.html 1.22 +2 -1 www/people.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Mon Oct 4 00:37:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 03 Oct 2004 17:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i940c1cY001462 for ; Sun, 3 Oct 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i940c1PC000868 for ; Sun, 3 Oct 2004 17:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i940c1Kk017322; Sun, 3 Oct 2004 17:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i940bsKk017314 for ; Sun, 3 Oct 2004 17:37:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i940bsPC000866 for ; Sun, 3 Oct 2004 17:37:54 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i940bsfg029328 for ; Sun, 3 Oct 2004 17:37:54 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i940bswV029327 for xorp-cvs@icir.org; Mon, 4 Oct 2004 00:37:54 GMT (envelope-from atanu) Date: Mon, 4 Oct 2004 00:37:54 GMT From: Atanu Ghosh Message-Id: <200410040037.i940bswV029327@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-04 00:37:54 UTC XORP CVS repository Modified files: fea fticonfig.cc Log message: Profile routes going into the kernel. Revision Changes Path 1.26 +19 -1 xorp/fea/fticonfig.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Mon Oct 4 07:48:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 00:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i947n0F4086178 for ; Mon, 4 Oct 2004 00:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i947n0PC005328 for ; Mon, 4 Oct 2004 00:49:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i947n0Kk026935; Mon, 4 Oct 2004 00:49:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i947mEKk026898 for ; Mon, 4 Oct 2004 00:48:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i947mEPC005322 for ; Mon, 4 Oct 2004 00:48:14 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i947mE1D032664 for ; Mon, 4 Oct 2004 00:48:14 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i947mEaF032663 for xorp-cvs@icir.org; Mon, 4 Oct 2004 07:48:14 GMT (envelope-from atanu) Date: Mon, 4 Oct 2004 07:48:14 GMT From: Atanu Ghosh Message-Id: <200410040748.i947mEaF032663@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-04 07:48:14 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: Handle the withdrawing of BGP originated routes for IPv6 the same as IPv4, not clear this code is correct. Revision Changes Path 1.59 +7 -4 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Mon Oct 4 07:49:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 00:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i947o1b9086394 for ; Mon, 4 Oct 2004 00:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i947o1PC005342 for ; Mon, 4 Oct 2004 00:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i947o1Kk026980; Mon, 4 Oct 2004 00:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i947n8Kk026951 for ; Mon, 4 Oct 2004 00:49:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i947n8PC005332 for ; Mon, 4 Oct 2004 00:49:08 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i947n8Bj032715 for ; Mon, 4 Oct 2004 00:49:08 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i947n8TC032714 for xorp-cvs@icir.org; Mon, 4 Oct 2004 07:49:08 GMT (envelope-from atanu) Date: Mon, 4 Oct 2004 07:49:08 GMT From: Atanu Ghosh Message-Id: <200410040749.i947n8TC032714@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-04 07:49:08 UTC XORP CVS repository Modified files: bgp plumbing.cc Log message: Cover all the entry points for deleting a route for profiling purposes. Revision Changes Path 1.57 +7 -1 xorp/bgp/plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:42 2005 Subject: No subject Mon Oct 4 17:55:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 10:56:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94Hu1fH008596 for ; Mon, 4 Oct 2004 10:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94Hu1Mu013750 for ; Mon, 4 Oct 2004 10:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94Hu1Kk016459; Mon, 4 Oct 2004 10:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94Ht8Kk016439 for ; Mon, 4 Oct 2004 10:55:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94Ht8Mu013744 for ; Mon, 4 Oct 2004 10:55:08 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94Ht7GY040397 for ; Mon, 4 Oct 2004 10:55:07 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94Ht7Lp040396 for xorp-cvs@icir.org; Mon, 4 Oct 2004 17:55:07 GMT (envelope-from abittau) Date: Mon, 4 Oct 2004 17:55:07 GMT From: Andrea Bittau Message-Id: <200410041755.i94Ht7Lp040396@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/policy/backend xorp/rib xorp/rip xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-10-04 17:55:07 UTC XORP CVS repository Modified files: bgp bgp_varrw.cc bgp_varrw.hh policy/backend single_varrw.cc single_varrw.hh rib rib_varrw.cc rib_varrw.hh rip rip_varrw.cc rip_varrw.hh static_routes static_routes_varrw.cc static_routes_varrw.hh Log message: Route elements are now initialized upon the first read instead of upon VarRW construction. This will speed up the execution of empty policies. Revision Changes Path 1.5 +19 -19 xorp/bgp/bgp_varrw.cc 1.5 +3 -3 xorp/bgp/bgp_varrw.hh 1.2 +12 -4 xorp/policy/backend/single_varrw.cc 1.2 +10 -3 xorp/policy/backend/single_varrw.hh 1.4 +9 -16 xorp/rib/rib_varrw.cc 1.4 +3 -10 xorp/rib/rib_varrw.hh 1.4 +8 -13 xorp/rip/rip_varrw.cc 1.4 +2 -3 xorp/rip/rip_varrw.hh 1.3 +11 -16 xorp/static_routes/static_routes_varrw.cc 1.3 +2 -3 xorp/static_routes/static_routes_varrw.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 14:49:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 11:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94IW17r015758 for ; Mon, 4 Oct 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94IW1Mu014161 for ; Mon, 4 Oct 2004 11:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94IW1Kk017743; Mon, 4 Oct 2004 11:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94EnrKk010907 for ; Mon, 4 Oct 2004 07:49:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94EnqMu010289 for ; Mon, 4 Oct 2004 07:49:52 -0700 (PDT) (envelope-from kohler@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94Enq5m037221 for ; Mon, 4 Oct 2004 07:49:52 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94EnqAx037220 for xorp-cvs@icir.org; Mon, 4 Oct 2004 14:49:52 GMT (envelope-from kohler) Date: Mon, 4 Oct 2004 14:49:52 GMT From: Eddie Kohler Message-Id: <200410041449.i94EnqAx037220@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: kohler@xorpc.icir.org 2004-10-04 14:49:52 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in xrl_pf_factory.cc Added files: libxipc xrl_pf_kill.cc xrl_pf_kill.hh Log message: add preliminary "kill" protocol family Revision Changes Path 1.34 +3 -1 xorp/libxipc/Makefile.am 1.50 +5 -3 xorp/libxipc/Makefile.in 1.11 +4 -1 xorp/libxipc/xrl_pf_factory.cc 1.1 +113 -0 xorp/libxipc/xrl_pf_kill.cc (new) 1.1 +43 -0 xorp/libxipc/xrl_pf_kill.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 18:38:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 11:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94Id1Nr017189 for ; Mon, 4 Oct 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94Id1C7014251 for ; Mon, 4 Oct 2004 11:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94Id1Kk017960; Mon, 4 Oct 2004 11:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94IcXKk017944 for ; Mon, 4 Oct 2004 11:38:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94IcWC7014241 for ; Mon, 4 Oct 2004 11:38:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94IcWqp040998 for ; Mon, 4 Oct 2004 11:38:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94IcWK9040997 for xorp-cvs@icir.org; Mon, 4 Oct 2004 18:38:32 GMT (envelope-from pavlin) Date: Mon, 4 Oct 2004 18:38:32 GMT From: Pavlin Radoslavov Message-Id: <200410041838.i94IcWK9040997@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-04 18:38:32 UTC XORP CVS repository Modified files: bgp bgp_varrw.cc Log message: A stylistic nit: "if(" -> "if (" Revision Changes Path 1.6 +2 -2 xorp/bgp/bgp_varrw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 18:45:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 11:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94Ik1Fv018667 for ; Mon, 4 Oct 2004 11:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94Ik1ve014353 for ; Mon, 4 Oct 2004 11:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94Ik1Kk018233; Mon, 4 Oct 2004 11:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94IjrKk018221 for ; Mon, 4 Oct 2004 11:45:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94Ijrve014351 for ; Mon, 4 Oct 2004 11:45:53 -0700 (PDT) (envelope-from abittau@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94IjrY1041306 for ; Mon, 4 Oct 2004 11:45:53 -0700 (PDT) (envelope-from abittau@xorpc.icir.org) Received: (from abittau@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94IjrqU041305 for xorp-cvs@icir.org; Mon, 4 Oct 2004 18:45:53 GMT (envelope-from abittau) Date: Mon, 4 Oct 2004 18:45:53 GMT From: Andrea Bittau Message-Id: <200410041845.i94IjrqU041305@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/backend Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: abittau@xorpc.icir.org 2004-10-04 18:45:53 UTC XORP CVS repository Modified files: policy/backend single_varrw.cc Log message: Fix the case when a variable is written to before it's read. In such a case, there is no need for the client code to initialize the variable. If the client does, it will be ignored. Also fixed a memory leak: Previously, variables may not be initialized twice. On error, an exception would be thrown without deleting the element. Revision Changes Path 1.3 +34 -12 xorp/policy/backend/single_varrw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 19:25:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 12:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94JQ1hF026795 for ; Mon, 4 Oct 2004 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94JQ1ve014793 for ; Mon, 4 Oct 2004 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94JQ1Kk019620; Mon, 4 Oct 2004 12:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94JPEKk019596 for ; Mon, 4 Oct 2004 12:25:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94JPEve014787 for ; Mon, 4 Oct 2004 12:25:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94JPEIj041817 for ; Mon, 4 Oct 2004 12:25:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94JPEvo041816 for xorp-cvs@icir.org; Mon, 4 Oct 2004 19:25:14 GMT (envelope-from pavlin) Date: Mon, 4 Oct 2004 19:25:14 GMT From: Pavlin Radoslavov Message-Id: <200410041925.i94JPEvo041816@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-04 19:25:14 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Log message: Adjust the ordering of some of the source files in alphabetical order. Revision Changes Path 1.35 +22 -22 xorp/libxipc/Makefile.am 1.51 +18 -18 xorp/libxipc/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 19:28:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 12:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94JT1Zt027409 for ; Mon, 4 Oct 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94JT1ve014821 for ; Mon, 4 Oct 2004 12:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94JT1Kk019717; Mon, 4 Oct 2004 12:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94JSQKk019691 for ; Mon, 4 Oct 2004 12:28:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94JSQve014814 for ; Mon, 4 Oct 2004 12:28:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94JSQ1X041906 for ; Mon, 4 Oct 2004 12:28:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94JSQrf041905 for xorp-cvs@icir.org; Mon, 4 Oct 2004 19:28:26 GMT (envelope-from pavlin) Date: Mon, 4 Oct 2004 19:28:26 GMT From: Pavlin Radoslavov Message-Id: <200410041928.i94JSQrf041905@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-04 19:28:25 UTC XORP CVS repository Modified files: libxipc xrl_pf_kill.cc xrl_pf_kill.hh Log message: Add the XORP CVS tag with the file info. Revision Changes Path 1.2 +1 -1 xorp/libxipc/xrl_pf_kill.cc 1.2 +2 -0 xorp/libxipc/xrl_pf_kill.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Mon Oct 4 22:26:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 15:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i94MR1i3076016 for ; Mon, 4 Oct 2004 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94MR1ve016875 for ; Mon, 4 Oct 2004 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94MR1Kk025126; Mon, 4 Oct 2004 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i94MQnKk025115 for ; Mon, 4 Oct 2004 15:26:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i94MQnve016871 for ; Mon, 4 Oct 2004 15:26:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i94MQnCe043553 for ; Mon, 4 Oct 2004 15:26:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i94MQni5043552 for xorp-cvs@icir.org; Mon, 4 Oct 2004 22:26:49 GMT (envelope-from atanu) Date: Mon, 4 Oct 2004 22:26:49 GMT From: Atanu Ghosh Message-Id: <200410042226.i94MQni5043552@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-04 22:26:49 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Print more information in the debug_msg whe adding and deleting routes. Revision Changes Path 1.46 +15 -5 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Tue Oct 5 01:25:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 18:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i951Q1u6034105 for ; Mon, 4 Oct 2004 18:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i951Q1hg018591 for ; Mon, 4 Oct 2004 18:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i951Q1Kk000380; Mon, 4 Oct 2004 18:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i951PAKk000350 for ; Mon, 4 Oct 2004 18:25:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i951P9hg018585 for ; Mon, 4 Oct 2004 18:25:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i951P9L6044968 for ; Mon, 4 Oct 2004 18:25:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i951P9D2044967 for xorp-cvs@icir.org; Tue, 5 Oct 2004 01:25:09 GMT (envelope-from atanu) Date: Tue, 5 Oct 2004 01:25:09 GMT From: Atanu Ghosh Message-Id: <200410050125.i951P9D2044967@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-05 01:25:09 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Save more information about routes when we save profiling information. Revision Changes Path 1.47 +45 -19 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Tue Oct 5 01:53:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 18:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i951s14u053668 for ; Mon, 4 Oct 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i951s1hg018841 for ; Mon, 4 Oct 2004 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i951s1Kk001013; Mon, 4 Oct 2004 18:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i951rnKk000990 for ; Mon, 4 Oct 2004 18:53:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i951rnhg018838 for ; Mon, 4 Oct 2004 18:53:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i951rm8f045228 for ; Mon, 4 Oct 2004 18:53:48 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i951rmeb045227 for xorp-cvs@icir.org; Tue, 5 Oct 2004 01:53:48 GMT (envelope-from atanu) Date: Tue, 5 Oct 2004 01:53:48 GMT From: Atanu Ghosh Message-Id: <200410050153.i951rmeb045227@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-05 01:53:48 UTC XORP CVS repository Modified files: rib redist_xrl.cc Log message: Add profiling points for redist transactions. Should see routes being queued and sent to the RIB. Revision Changes Path 1.16 +41 -5 xorp/rib/redist_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Tue Oct 5 02:24:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Oct 2004 19:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i952P1ox072178 for ; Mon, 4 Oct 2004 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i952P1hg019224 for ; Mon, 4 Oct 2004 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i952P1Kk001722; Mon, 4 Oct 2004 19:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i952OaKk001711 for ; Mon, 4 Oct 2004 19:24:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i952OZhg019216 for ; Mon, 4 Oct 2004 19:24:35 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i952OZqv045510 for ; Mon, 4 Oct 2004 19:24:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i952OZla045509 for xorp-cvs@icir.org; Tue, 5 Oct 2004 02:24:35 GMT (envelope-from atanu) Date: Tue, 5 Oct 2004 02:24:35 GMT From: Atanu Ghosh Message-Id: <200410050224.i952OZla045509@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-05 02:24:35 UTC XORP CVS repository Modified files: rib redist_xrl.cc Log message: Add protocol information to the profiling. Revision Changes Path 1.17 +9 -3 xorp/rib/redist_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Tue Oct 5 20:25:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Oct 2004 13:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i95KQ1wE088050 for ; Tue, 5 Oct 2004 13:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95KQ1hg033389 for ; Tue, 5 Oct 2004 13:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95KQ1Kk003059; Tue, 5 Oct 2004 13:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95KPTKk003043 for ; Tue, 5 Oct 2004 13:25:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95KPThg033385 for ; Tue, 5 Oct 2004 13:25:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i95KPTX6094094 for ; Tue, 5 Oct 2004 13:25:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i95KPTP9094093 for xorp-cvs@icir.org; Tue, 5 Oct 2004 20:25:29 GMT (envelope-from pavlin) Date: Tue, 5 Oct 2004 20:25:29 GMT From: Pavlin Radoslavov Message-Id: <200410052025.i95KPTP9094093@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-05 20:25:28 UTC XORP CVS repository Modified files: rib route.hh Log message: Modify IPRouteEntry::str() to print the protocol name as well. Revision Changes Path 1.16 +5 -4 xorp/rib/route.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:43 2005 Subject: No subject Tue Oct 5 20:27:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Oct 2004 13:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i95KS12b088435 for ; Tue, 5 Oct 2004 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95KS0hg033403 for ; Tue, 5 Oct 2004 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95KS0Kk003162; Tue, 5 Oct 2004 13:28:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95KRIKk003129 for ; Tue, 5 Oct 2004 13:27:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95KRIhg033399 for ; Tue, 5 Oct 2004 13:27:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i95KRIBf094187 for ; Tue, 5 Oct 2004 13:27:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i95KRILZ094186 for xorp-cvs@icir.org; Tue, 5 Oct 2004 20:27:18 GMT (envelope-from pavlin) Date: Tue, 5 Oct 2004 20:27:18 GMT From: Pavlin Radoslavov Message-Id: <200410052027.i95KRILZ094186@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-05 20:27:18 UTC XORP CVS repository Modified files: rib rib_manager.hh Log message: Add new methods RIB::urib4(), mrib4(), urib6(), mrib6() and xrl_rib_target() to return references to the corresponding local state. Revision Changes Path 1.30 +26 -1 xorp/rib/rib_manager.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Tue Oct 5 22:40:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Oct 2004 15:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i95Mf2BJ015990 for ; Tue, 5 Oct 2004 15:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95Mf1hg034713 for ; Tue, 5 Oct 2004 15:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95Mf1Kk007553; Tue, 5 Oct 2004 15:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95MeZKk007538 for ; Tue, 5 Oct 2004 15:40:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95MeZhg034709 for ; Tue, 5 Oct 2004 15:40:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i95MeZZt095344 for ; Tue, 5 Oct 2004 15:40:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i95MeZ1a095343 for xorp-cvs@icir.org; Tue, 5 Oct 2004 22:40:35 GMT (envelope-from pavlin) Date: Tue, 5 Oct 2004 22:40:35 GMT From: Pavlin Radoslavov Message-Id: <200410052240.i95MeZ1a095343@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-05 22:40:34 UTC XORP CVS repository Modified files: policy/test compilepolicy.cc Log message: Add a new argument -m to specify the file name with the policy vars mapping instead of the hard-coded "policyvarmap.conf". Revision Changes Path 1.2 +16 -7 xorp/policy/test/compilepolicy.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Tue Oct 5 22:42:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Oct 2004 15:43:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i95Mh30E016380 for ; Tue, 5 Oct 2004 15:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95Mh3hg034724 for ; Tue, 5 Oct 2004 15:43:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95Mh2Kk007637; Tue, 5 Oct 2004 15:43:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i95MgRKk007614 for ; Tue, 5 Oct 2004 15:42:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i95MgRhg034719 for ; Tue, 5 Oct 2004 15:42:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i95MgRhb095410 for ; Tue, 5 Oct 2004 15:42:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i95MgR3Z095409 for xorp-cvs@icir.org; Tue, 5 Oct 2004 22:42:27 GMT (envelope-from pavlin) Date: Tue, 5 Oct 2004 22:42:27 GMT From: Pavlin Radoslavov Message-Id: <200410052242.i95MgR3Z095409@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/test Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-05 22:42:27 UTC XORP CVS repository Modified files: policy/test dummy_test.sh test_policy.sh Log message: * Pass file "policyvarmap.conf" file as an argument to binary "compilepolicy". * Add missing ${srcdir} prefix in the input file names in the test shell scripts. Revision Changes Path 1.3 +6 -6 xorp/policy/test/dummy_test.sh 1.2 +7 -7 xorp/policy/test/test_policy.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 06:42:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Oct 2004 23:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i966h2LZ010734 for ; Tue, 5 Oct 2004 23:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i966h2hg039759 for ; Tue, 5 Oct 2004 23:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i966h1Kk021334; Tue, 5 Oct 2004 23:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i966gYKk021311 for ; Tue, 5 Oct 2004 23:42:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i966gXhg039755 for ; Tue, 5 Oct 2004 23:42:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i966gXJp012897 for ; Tue, 5 Oct 2004 23:42:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i966gXlw012896 for xorp-cvs@icir.org; Wed, 6 Oct 2004 06:42:33 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 06:42:33 GMT From: Pavlin Radoslavov Message-Id: <200410060642.i966gXlw012896@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 06:42:33 UTC XORP CVS repository Modified files: bgp test_dump.cc test_dump.reference Log message: * Rewrite test_dump to avoid single-stepping of the eventloop. I.e., replace: bgpmain.eventloop().run(); bgpmain.eventloop().run(); with: while (bgpmain.eventloop().timers_pending()) { bgpmain.eventloop().run(); } The reason is because previously the test assumed that a single call to bgpmain.eventloop().run() will envoke the callback of only a single timer. The eventloop semantics does not guarantee that, hence it is incorrect to make any assumptions about the number of times bgpmain.eventloop().run() should be called. * Update the reference test_dump.reference file with the new sample output. Revision Changes Path 1.42 +35 -37 xorp/bgp/test_dump.cc 1.12 +210 -128 xorp/bgp/test_dump.reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 20:32:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 13:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96KX2XW086915 for ; Wed, 6 Oct 2004 13:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KX1hg050887 for ; Wed, 6 Oct 2004 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KX1Bf017479; Wed, 6 Oct 2004 13:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KWtBf017470 for ; Wed, 6 Oct 2004 13:32:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KWshg050883 for ; Wed, 6 Oct 2004 13:32:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96KWsNK022359 for ; Wed, 6 Oct 2004 13:32:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96KWseQ022358 for xorp-cvs@icir.org; Wed, 6 Oct 2004 20:32:54 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 20:32:54 GMT From: Pavlin Radoslavov Message-Id: <200410062032.i96KWseQ022358@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 20:32:54 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in eventloop.cc eventloop.hh timer.cc timer.hh Added files: libxorp clock.cc clock.hh Log message: Apply a patch: * Add a Clock class that implements two methods advance_time and current_time. advance_time() actually reads the clock from the system, while current_time() just returns the time as of when advance_time was called. * Refactor the eventloop to use the new Clock class instead of calling gettimeofday() a number of times. This makes timer rescheduling operations much cheaper since there's no need to call gettimeofday at all, the timer value is updated based on the last time advance_time was called - the error will be the time elapsed since the eventloop started. * Implement system_gettimeofday() as "advance_time(); current_time()" * Call advance_time() both before running the selector list and before running the timers. * Add new method TimerList::system_sleep() that should be used by a process to sleep rather than sleep(3) or usleep(3) Revision Changes Path 1.28 +3 -1 xorp/libxorp/Makefile.am 1.38 +16 -14 xorp/libxorp/Makefile.in 1.1 +52 -0 xorp/libxorp/clock.cc (new) 1.1 +57 -0 xorp/libxorp/clock.hh (new) 1.7 +5 -1 xorp/libxorp/eventloop.cc 1.12 +5 -3 xorp/libxorp/eventloop.hh 1.19 +62 -36 xorp/libxorp/timer.cc 1.20 +40 -24 xorp/libxorp/timer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 20:35:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 13:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96Ka1gN087696 for ; Wed, 6 Oct 2004 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96Ka1hg050938 for ; Wed, 6 Oct 2004 13:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96Ka1Bf017598; Wed, 6 Oct 2004 13:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KZfBf017583 for ; Wed, 6 Oct 2004 13:35:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KZfhg050929 for ; Wed, 6 Oct 2004 13:35:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96KZfij022451 for ; Wed, 6 Oct 2004 13:35:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96KZfmi022450 for xorp-cvs@icir.org; Wed, 6 Oct 2004 20:35:41 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 20:35:41 GMT From: Pavlin Radoslavov Message-Id: <200410062035.i96KZfmi022450@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 20:35:41 UTC XORP CVS repository Modified files: libxorp test_time_slice.cc Log message: * Use TimerList::system_sleep() instead of sleep(3) or usleep(3) * Add a dummy instance of EventLoop, which is needed if we want to use any of the TimerList::system_foo() methods. Revision Changes Path 1.4 +7 -3 xorp/libxorp/test_time_slice.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 20:38:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 13:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96Kd1iF088401 for ; Wed, 6 Oct 2004 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96Kd1hg050963 for ; Wed, 6 Oct 2004 13:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96Kd1Bf017700; Wed, 6 Oct 2004 13:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KcOBf017651 for ; Wed, 6 Oct 2004 13:38:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KcOhg050960 for ; Wed, 6 Oct 2004 13:38:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96KcOia022575 for ; Wed, 6 Oct 2004 13:38:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96KcOAt022574 for xorp-cvs@icir.org; Wed, 6 Oct 2004 20:38:24 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 20:38:24 GMT From: Pavlin Radoslavov Message-Id: <200410062038.i96KcOAt022574@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 20:38:24 UTC XORP CVS repository Modified files: bgp aspath_test.cc bgp/tools print_peer.cc Log message: Use TimerList::system_sleep() instead of sleep(3) or usleep(3) Revision Changes Path 1.10 +3 -3 xorp/bgp/aspath_test.cc 1.13 +2 -2 xorp/bgp/tools/print_peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 20:39:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 13:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96Ke17e088669 for ; Wed, 6 Oct 2004 13:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96Ke0hg050990 for ; Wed, 6 Oct 2004 13:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96Ke0Bf017750; Wed, 6 Oct 2004 13:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KdHBf017720 for ; Wed, 6 Oct 2004 13:39:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KdHhg050972 for ; Wed, 6 Oct 2004 13:39:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96KdHX5022645 for ; Wed, 6 Oct 2004 13:39:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96KdHHk022644 for xorp-cvs@icir.org; Wed, 6 Oct 2004 20:39:17 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 20:39:17 GMT From: Pavlin Radoslavov Message-Id: <200410062039.i96KdHHk022644@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 20:39:17 UTC XORP CVS repository Modified files: libxipc call_xrl.cc sockutil.cc test_finder_to.cc xuid.cc Log message: Use TimerList::system_sleep() instead of sleep(3) or usleep(3) Revision Changes Path 1.28 +2 -2 xorp/libxipc/call_xrl.cc 1.11 +3 -2 xorp/libxipc/sockutil.cc 1.6 +1 -1 xorp/libxipc/test_finder_to.cc 1.6 +2 -2 xorp/libxipc/xuid.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 20:39:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 13:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96Ke2YH088707 for ; Wed, 6 Oct 2004 13:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96Ke2hg050994 for ; Wed, 6 Oct 2004 13:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96Ke2Bf017761; Wed, 6 Oct 2004 13:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96KdWBf017735 for ; Wed, 6 Oct 2004 13:39:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96KdWhg050974 for ; Wed, 6 Oct 2004 13:39:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96KdWDV022696 for ; Wed, 6 Oct 2004 13:39:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96KdWZk022695 for xorp-cvs@icir.org; Wed, 6 Oct 2004 20:39:32 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 20:39:32 GMT From: Pavlin Radoslavov Message-Id: <200410062039.i96KdWZk022695@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 20:39:32 UTC XORP CVS repository Modified files: rtrmgr test_module_manager.cc Log message: Use TimerList::system_sleep() instead of sleep(3) or usleep(3) Revision Changes Path 1.13 +3 -3 xorp/rtrmgr/test_module_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 21:16:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 14:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96LH3hk097738 for ; Wed, 6 Oct 2004 14:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96LH3hg051418 for ; Wed, 6 Oct 2004 14:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96LH2Bf018943; Wed, 6 Oct 2004 14:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96LGXBf018930 for ; Wed, 6 Oct 2004 14:16:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96LGWhg051413 for ; Wed, 6 Oct 2004 14:16:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96LGWxR023251 for ; Wed, 6 Oct 2004 14:16:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96LGWho023250 for xorp-cvs@icir.org; Wed, 6 Oct 2004 21:16:32 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 21:16:32 GMT From: Pavlin Radoslavov Message-Id: <200410062116.i96LGWho023250@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 21:16:32 UTC XORP CVS repository Modified files: rib rt_tab_extint.cc rt_tab_extint.hh Log message: Modify ExtIntTable::add_route() and delete_route() such that when an add/delete route is received from one of the parent Ext/Int table, we always compare it whether is better compared to the route from the other parent table. Previously, in some cases the comparison was only against the routes in the local "resolved_table" cache, and there were some scenarios when an add/delete route was incorrectly propagated to the next_table(). [Note: those scenarios became evident once the dummy RibManager in the test programs was replaced with the real RibManager.] Revision Changes Path 1.20 +114 -38 xorp/rib/rt_tab_extint.cc 1.11 +8 -1 xorp/rib/rt_tab_extint.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Wed Oct 6 21:21:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 14:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i96LM1OX098972 for ; Wed, 6 Oct 2004 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96LM1hg051483 for ; Wed, 6 Oct 2004 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96LM1Bf019172; Wed, 6 Oct 2004 14:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i96LL7Bf019123 for ; Wed, 6 Oct 2004 14:21:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i96LL7hg051473 for ; Wed, 6 Oct 2004 14:21:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i96LL7xC023388 for ; Wed, 6 Oct 2004 14:21:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i96LL72b023387 for xorp-cvs@icir.org; Wed, 6 Oct 2004 21:21:07 GMT (envelope-from pavlin) Date: Wed, 6 Oct 2004 21:21:07 GMT From: Pavlin Radoslavov Message-Id: <200410062121.i96LL72b023387@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-06 21:21:07 UTC XORP CVS repository Modified files: rib Makefile.am Makefile.in test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc Removed files: rib dummy_rib_manager.cc dummy_rib_manager.hh Log message: Get rid of the dummy RibManager implementation, and always use the real RibManager. Previously, the dummy RibManager created confusion because it (re)used the same RibManager class name, and in fact some of the test programs could coredump if compiled with the -O2 optimization flag (e.g., due to incorrect referencing of the non-existing eventloop() method). Revision Changes Path 1.36 +6 -15 xorp/rib/Makefile.am 1.47 +33 -33 xorp/rib/Makefile.in 1.15 +0 -272 xorp/rib/dummy_rib_manager.cc (dead) 1.15 +0 -382 xorp/rib/dummy_rib_manager.hh (dead) 1.17 +10 -5 xorp/rib/test_register.cc 1.31 +9 -9 xorp/rib/test_register_xrls.cc 1.14 +19 -3 xorp/rib/test_rib_direct.cc 1.36 +12 -22 xorp/rib/test_rib_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:44 2005 Subject: No subject Thu Oct 7 06:54:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Oct 2004 23:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i976t286028943 for ; Wed, 6 Oct 2004 23:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i976t23q058749 for ; Wed, 6 Oct 2004 23:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i976t1Bf005101; Wed, 6 Oct 2004 23:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i976suBf005093 for ; Wed, 6 Oct 2004 23:54:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i976su3q058739 for ; Wed, 6 Oct 2004 23:54:56 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i976suVT040712 for ; Wed, 6 Oct 2004 23:54:56 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i976suSl040711 for xorp-cvs@icir.org; Thu, 7 Oct 2004 06:54:56 GMT (envelope-from atanu) Date: Thu, 7 Oct 2004 06:54:56 GMT From: Atanu Ghosh Message-Id: <200410070654.i976suSl040711@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-07 06:54:56 UTC XORP CVS repository Modified files: bgp/harness peer.cc Log message: If an error existed on a line the wrong word was being printed. Revision Changes Path 1.56 +2 -2 xorp/bgp/harness/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 8 18:49:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Oct 2004 11:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i98Io1b2083978 for ; Fri, 8 Oct 2004 11:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98Io1vR088052 for ; Fri, 8 Oct 2004 11:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98Io1Bf007501; Fri, 8 Oct 2004 11:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98InGBf007479 for ; Fri, 8 Oct 2004 11:49:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98InGvR088035 for ; Fri, 8 Oct 2004 11:49:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i98InGnJ066566 for ; Fri, 8 Oct 2004 11:49:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i98InGVV066565 for xorp-cvs@icir.org; Fri, 8 Oct 2004 18:49:16 GMT (envelope-from pavlin) Date: Fri, 8 Oct 2004 18:49:16 GMT From: Pavlin Radoslavov Message-Id: <200410081849.i98InGVV066565@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-08 18:49:16 UTC XORP CVS repository Modified files: libxorp test_timer.cc Log message: Add a test that recursively generating callbacks after time zero doesn't block the execution inside the internal timer look forever. Revision Changes Path 1.8 +58 -1 xorp/libxorp/test_timer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 8 18:51:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Oct 2004 11:52:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i98Iq0ZA084410 for ; Fri, 8 Oct 2004 11:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98Iq0vR088134 for ; Fri, 8 Oct 2004 11:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98Iq0Bf007570; Fri, 8 Oct 2004 11:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98IpkBf007558 for ; Fri, 8 Oct 2004 11:51:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98IpkvR088131 for ; Fri, 8 Oct 2004 11:51:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i98IpklK066672 for ; Fri, 8 Oct 2004 11:51:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i98Ipkca066671 for xorp-cvs@icir.org; Fri, 8 Oct 2004 18:51:46 GMT (envelope-from pavlin) Date: Fri, 8 Oct 2004 18:51:46 GMT From: Pavlin Radoslavov Message-Id: <200410081851.i98Ipkca066671@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-08 18:51:46 UTC XORP CVS repository Modified files: libxorp timer.cc Log message: Call advance_time() to advance the internal time after the callback dispatch of a timer event. This is needed to fix the scenario when recursively generating of callbacks with delay of time zero actually blocks the execution inside the internal timer loop forever. Revision Changes Path 1.20 +2 -1 xorp/libxorp/timer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 8 18:52:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Oct 2004 11:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i98Ir12J084613 for ; Fri, 8 Oct 2004 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98Ir1vR088151 for ; Fri, 8 Oct 2004 11:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98Ir1Bf007620; Fri, 8 Oct 2004 11:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i98IqXBf007596 for ; Fri, 8 Oct 2004 11:52:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i98IqWvR088145 for ; Fri, 8 Oct 2004 11:52:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i98IqWMF066724 for ; Fri, 8 Oct 2004 11:52:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i98IqWZt066723 for xorp-cvs@icir.org; Fri, 8 Oct 2004 18:52:32 GMT (envelope-from pavlin) Date: Fri, 8 Oct 2004 18:52:32 GMT From: Pavlin Radoslavov Message-Id: <200410081852.i98IqWZt066723@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-08 18:52:32 UTC XORP CVS repository Modified files: libxorp test_timer.cc Log message: Fix a typo: "look" -> "loop" Revision Changes Path 1.9 +2 -2 xorp/libxorp/test_timer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Wed Oct 13 05:41:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Oct 2004 22:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9D5g1ZO000180 for ; Tue, 12 Oct 2004 22:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D5g1ag058720 for ; Tue, 12 Oct 2004 22:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D5g1O5020972; Tue, 12 Oct 2004 22:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D5fnO5020957 for ; Tue, 12 Oct 2004 22:41:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D5fmag058716 for ; Tue, 12 Oct 2004 22:41:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9D5fmaH027405 for ; Tue, 12 Oct 2004 22:41:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9D5fmL1027404 for xorp-cvs@icir.org; Wed, 13 Oct 2004 05:41:48 GMT (envelope-from pavlin) Date: Wed, 13 Oct 2004 05:41:48 GMT From: Pavlin Radoslavov Message-Id: <200410130541.i9D5fmL1027404@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-13 05:41:48 UTC XORP CVS repository Modified files: libxipc test_xrl_sender.cc Log message: Apply a patch: * Use #elif as appropriate * Nits Revision Changes Path 1.7 +7 -11 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Wed Oct 13 05:48:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Oct 2004 22:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9D5n18b001620 for ; Tue, 12 Oct 2004 22:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D5n1ag058786 for ; Tue, 12 Oct 2004 22:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D5n1O5021158; Tue, 12 Oct 2004 22:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D5moO5021147 for ; Tue, 12 Oct 2004 22:48:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D5moag058782 for ; Tue, 12 Oct 2004 22:48:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9D5mojv027494 for ; Tue, 12 Oct 2004 22:48:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9D5movV027493 for xorp-cvs@icir.org; Wed, 13 Oct 2004 05:48:50 GMT (envelope-from pavlin) Date: Wed, 13 Oct 2004 05:48:50 GMT From: Pavlin Radoslavov Message-Id: <200410130548.i9D5movV027493@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-13 05:48:50 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in asyncio.cc asyncio.hh Added files: libxorp buffered_asyncio.cc buffered_asyncio.hh Log message: Apply a patch: * Introduce buffer coalescing in the AsyncFileWriter class. The coalescing is controlled via a constructor argument which defaults to 1. * Implement a new BufferedAsyncReader class for doing buffered asynchronous reads. It basically reads as much as it can from the file descriptor each time the selectorlist says there is data to be read. The user can set an amount of data to arrive before receiving notification throw BufferedAsyncReader::set_trigger_bytes. Revision Changes Path 1.29 +3 -1 xorp/libxorp/Makefile.am 1.39 +12 -10 xorp/libxorp/Makefile.in 1.11 +141 -43 xorp/libxorp/asyncio.cc 1.10 +38 -25 xorp/libxorp/asyncio.hh 1.1 +208 -0 xorp/libxorp/buffered_asyncio.cc (new) 1.1 +157 -0 xorp/libxorp/buffered_asyncio.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Wed Oct 13 06:03:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Oct 2004 23:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9D641Mu004522 for ; Tue, 12 Oct 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D641ag058974 for ; Tue, 12 Oct 2004 23:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D641O5021496; Tue, 12 Oct 2004 23:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9D63TO5021486 for ; Tue, 12 Oct 2004 23:03:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9D63Tag058970 for ; Tue, 12 Oct 2004 23:03:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9D63Trp027697 for ; Tue, 12 Oct 2004 23:03:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9D63T0M027696 for xorp-cvs@icir.org; Wed, 13 Oct 2004 06:03:29 GMT (envelope-from pavlin) Date: Wed, 13 Oct 2004 06:03:29 GMT From: Pavlin Radoslavov Message-Id: <200410130603.i9D63T0M027696@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-13 06:03:29 UTC XORP CVS repository Modified files: libxipc test_inproc.cc test_stcp.cc test_sudp.cc xrl_pf.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_kill.cc xrl_pf_kill.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh Log message: Apply a patch: * Add XRL pipelining support * Use the new BufferedAsyncReader class * Misc other performance improvements Revision Changes Path 1.14 +4 -6 xorp/libxipc/test_inproc.cc 1.15 +5 -7 xorp/libxipc/test_stcp.cc 1.13 +4 -4 xorp/libxipc/test_sudp.cc 1.24 +19 -2 xorp/libxipc/xrl_pf.hh 1.20 +18 -7 xorp/libxipc/xrl_pf_inproc.cc 1.14 +4 -2 xorp/libxipc/xrl_pf_inproc.hh 1.3 +20 -8 xorp/libxipc/xrl_pf_kill.cc 1.3 +4 -2 xorp/libxipc/xrl_pf_kill.hh 1.36 +377 -446 xorp/libxipc/xrl_pf_stcp.cc 1.20 +24 -28 xorp/libxipc/xrl_pf_stcp.hh 1.6 +8 -1 xorp/libxipc/xrl_pf_stcp_ph.cc 1.7 +7 -3 xorp/libxipc/xrl_pf_stcp_ph.hh 1.34 +20 -9 xorp/libxipc/xrl_pf_sudp.cc 1.17 +4 -2 xorp/libxipc/xrl_pf_sudp.hh 1.41 +20 -6 xorp/libxipc/xrl_router.cc 1.30 +3 -2 xorp/libxipc/xrl_router.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 15 02:05:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F261aM036678 for ; Thu, 14 Oct 2004 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F261ag088844 for ; Thu, 14 Oct 2004 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F261Ok011297; Thu, 14 Oct 2004 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F25dOk011283 for ; Thu, 14 Oct 2004 19:05:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F25dag088839 for ; Thu, 14 Oct 2004 19:05:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F25dvs058642 for ; Thu, 14 Oct 2004 19:05:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F25dsY058641 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:05:39 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:05:39 GMT From: Pavlin Radoslavov Message-Id: <200410150205.i9F25dsY058641@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:05:39 UTC XORP CVS repository Modified files: libxipc xrl_pf_inproc.cc xrl_pf_inproc.hh Log message: Apply a patch: * Add (a bit of) adhoc solution for dispatching callbacks with zero delay by checking the stack depth. Revision Changes Path 1.21 +38 -14 xorp/libxipc/xrl_pf_inproc.cc 1.15 +8 -7 xorp/libxipc/xrl_pf_inproc.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 15 02:08:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F291C0037332 for ; Thu, 14 Oct 2004 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F291ag088872 for ; Thu, 14 Oct 2004 19:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F290Ok011379; Thu, 14 Oct 2004 19:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F28ROk011368 for ; Thu, 14 Oct 2004 19:08:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F28Qag088869 for ; Thu, 14 Oct 2004 19:08:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F28QgF058715 for ; Thu, 14 Oct 2004 19:08:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F28Qlo058714 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:08:26 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:08:26 GMT From: Pavlin Radoslavov Message-Id: <200410150208.i9F28Qlo058714@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:08:26 UTC XORP CVS repository Modified files: libxipc xrl_std_router.cc Log message: Add a patch: * Add support for environment variable XORP_PF that xrl_std_router uses to select which protocol family to register XRLs with the Finder. This is largely undesirable - most of the finder code supports multiple protocol family resolution - the piece that is missing is the decision process on which one to choose. Anyway, this is needed to run the different protocol families against each other. Revision Changes Path 1.7 +12 -2 xorp/libxipc/xrl_std_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 15 02:25:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F2Q1oB040689 for ; Thu, 14 Oct 2004 19:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2Q1ag089052 for ; Thu, 14 Oct 2004 19:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2Q1Ok011853; Thu, 14 Oct 2004 19:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2PrOk011845 for ; Thu, 14 Oct 2004 19:25:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2Prag089049 for ; Thu, 14 Oct 2004 19:25:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F2Pr7J059003 for ; Thu, 14 Oct 2004 19:25:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F2PrJ3059002 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:25:53 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:25:53 GMT From: Pavlin Radoslavov Message-Id: <200410150225.i9F2PrJ3059002@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:25:53 UTC XORP CVS repository Modified files: libxipc xrl_pf_stcp_ph.cc Log message: Apply a patch: * Don't add error_note_bytes() when computing payload_bytes(), but add it when computing frame_bytes() Revision Changes Path 1.7 +3 -3 xorp/libxipc/xrl_pf_stcp_ph.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 15 02:27:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F2S1uD041074 for ; Thu, 14 Oct 2004 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2S1ag089067 for ; Thu, 14 Oct 2004 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2S1Ok011913; Thu, 14 Oct 2004 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2RcOk011891 for ; Thu, 14 Oct 2004 19:27:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2Raag089065 for ; Thu, 14 Oct 2004 19:27:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F2Ra2Y059109 for ; Thu, 14 Oct 2004 19:27:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F2RavX059108 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:27:36 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:27:36 GMT From: Pavlin Radoslavov Message-Id: <200410150227.i9F2RavX059108@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:27:36 UTC XORP CVS repository Modified files: xrl/interfaces test_xrls.xif test_xrls_xif.cc test_xrls_xif.hh xrl/targets test_xrls.xrls test_xrls_base.cc test_xrls_base.hh Log message: Apply a patch: * Add new XRL method add_xrlX to the test_xrls/0.1 XRL interface. Revision Changes Path 1.2 +3 -1 xorp/xrl/interfaces/test_xrls.xif 1.2 +33 -1 xorp/xrl/interfaces/test_xrls_xif.cc 1.2 +15 -1 xorp/xrl/interfaces/test_xrls_xif.hh 1.2 +3 -1 xorp/xrl/targets/test_xrls.xrls 1.2 +31 -1 xorp/xrl/targets/test_xrls_base.cc 1.2 +7 -1 xorp/xrl/targets/test_xrls_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:45 2005 Subject: No subject Fri Oct 15 02:28:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F2T162041279 for ; Thu, 14 Oct 2004 19:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2T1ag089081 for ; Thu, 14 Oct 2004 19:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2T1Ok011957; Thu, 14 Oct 2004 19:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2SSOk011927 for ; Thu, 14 Oct 2004 19:28:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2SSag089075 for ; Thu, 14 Oct 2004 19:28:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F2SSW9059181 for ; Thu, 14 Oct 2004 19:28:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F2SSuv059180 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:28:28 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:28:28 GMT From: Pavlin Radoslavov Message-Id: <200410150228.i9F2SSuv059180@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:28:28 UTC XORP CVS repository Modified files: libxipc test_xrl_receiver.cc Log message: Apply a patch: * Implement the handling of the test_xrlX XRL interface. Revision Changes Path 1.4 +9 -1 xorp/libxipc/test_xrl_receiver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 02:31:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F2W1IM041876 for ; Thu, 14 Oct 2004 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2W1ag089117 for ; Thu, 14 Oct 2004 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2W1Ok012030; Thu, 14 Oct 2004 19:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2VhOk012016 for ; Thu, 14 Oct 2004 19:31:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2Vhag089115 for ; Thu, 14 Oct 2004 19:31:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F2Vhng059276 for ; Thu, 14 Oct 2004 19:31:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F2Vguq059275 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:31:43 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:31:43 GMT From: Pavlin Radoslavov Message-Id: <200410150231.i9F2Vguq059275@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:31:42 UTC XORP CVS repository Modified files: libxipc test_xrl_sender.cc Log message: Apply a patch: * Remove various #define and replace them with command-line options * Add support for sending/receiving XRLs with variable number of list elements. * Misc improvements and nits. Revision Changes Path 1.8 +216 -102 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 02:43:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 19:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F2i1hH044186 for ; Thu, 14 Oct 2004 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2i1ag089208 for ; Thu, 14 Oct 2004 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2i1Ok012331; Thu, 14 Oct 2004 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F2hYOk012309 for ; Thu, 14 Oct 2004 19:43:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F2hYag089206 for ; Thu, 14 Oct 2004 19:43:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F2hYwu059426 for ; Thu, 14 Oct 2004 19:43:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F2hYkt059425 for xorp-cvs@icir.org; Fri, 15 Oct 2004 02:43:34 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 02:43:34 GMT From: Pavlin Radoslavov Message-Id: <200410150243.i9F2hYkt059425@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 02:43:34 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Added files: libxipc bench_ipc.awk bench_ipc.sh Log message: Apply a patch: * Add scripts for running XRL benchmark performance measurements Revision Changes Path 1.36 +4 -4 xorp/libxipc/Makefile.am 1.52 +2 -3 xorp/libxipc/Makefile.in 1.1 +52 -0 xorp/libxipc/bench_ipc.awk (new) 1.1 +46 -0 xorp/libxipc/bench_ipc.sh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 04:24:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Oct 2004 21:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F4P05Q064142 for ; Thu, 14 Oct 2004 21:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F4P0ag090134 for ; Thu, 14 Oct 2004 21:25:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F4P0Ok014770; Thu, 14 Oct 2004 21:25:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F4OEOk014760 for ; Thu, 14 Oct 2004 21:24:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F4OEag090119 for ; Thu, 14 Oct 2004 21:24:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F4ODWi060168 for ; Thu, 14 Oct 2004 21:24:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F4ODve060167 for xorp-cvs@icir.org; Fri, 15 Oct 2004 04:24:13 GMT (envelope-from pavlin) Date: Fri, 15 Oct 2004 04:24:13 GMT From: Pavlin Radoslavov Message-Id: <200410150424.i9F4ODve060167@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-15 04:24:13 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Added files: libxipc bench_ipc_gnuplot.sh Log message: Add a script for drawing (using gnuplot) the XRL benchmark results. Revision Changes Path 1.37 +2 -1 xorp/libxipc/Makefile.am 1.53 +1 -1 xorp/libxipc/Makefile.in 1.1 +97 -0 xorp/libxipc/bench_ipc_gnuplot.sh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 09:08:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Oct 2004 02:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F991XX020784 for ; Fri, 15 Oct 2004 02:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F990ag093262 for ; Fri, 15 Oct 2004 02:09:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F990Ok023001; Fri, 15 Oct 2004 02:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F982Ok022972 for ; Fri, 15 Oct 2004 02:08:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F981ag093241 for ; Fri, 15 Oct 2004 02:08:01 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F981Vx063296 for ; Fri, 15 Oct 2004 02:08:01 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F981Of063295 for xorp-cvs@icir.org; Fri, 15 Oct 2004 09:08:01 GMT (envelope-from bms) Date: Fri, 15 Oct 2004 09:08:01 GMT From: Bruce Simpson Message-Id: <200410150908.i9F981Of063295@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-15 09:08:01 UTC XORP CVS repository Modified files: . configure configure.in Log message: Deprecate the use of AC_EGREP_HEADER in favour of AC_TRY_COMPILE, when checking for struct ip_mreqn in the build environment. Part of a TODO item in xorp/. Revision Changes Path 1.125 +37 -8 xorp/configure 1.118 +16 -9 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 09:16:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Oct 2004 02:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9F9H1en022439 for ; Fri, 15 Oct 2004 02:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F9H1ag093359 for ; Fri, 15 Oct 2004 02:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F9H0Ok023193; Fri, 15 Oct 2004 02:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9F9GBOk023159 for ; Fri, 15 Oct 2004 02:16:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9F9GBag093355 for ; Fri, 15 Oct 2004 02:16:11 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9F9GBdk063532 for ; Fri, 15 Oct 2004 02:16:11 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9F9GBeY063531 for xorp-cvs@icir.org; Fri, 15 Oct 2004 09:16:11 GMT (envelope-from bms) Date: Fri, 15 Oct 2004 09:16:11 GMT From: Bruce Simpson Message-Id: <200410150916.i9F9GBeY063531@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-15 09:16:11 UTC XORP CVS repository Modified files: . TODO configure configure.in Log message: Deprecate the use of AC_EGREP_HEADER in favour of AC_TRY_COMPILE, when checking for AF_ROUTE or AF_NETLINK sockets in the build environment. Update the check messages appropriately. Mark the TODO item as completed. Revision Changes Path 1.7 +1 -7 xorp/TODO 1.126 +48 -36 xorp/configure 1.119 +17 -19 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 17:40:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Oct 2004 10:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9FHf1fN022709 for ; Fri, 15 Oct 2004 10:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9FHf1ag099656 for ; Fri, 15 Oct 2004 10:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9FHf1Ok007788; Fri, 15 Oct 2004 10:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9FHemOk007778 for ; Fri, 15 Oct 2004 10:40:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9FHemag099652 for ; Fri, 15 Oct 2004 10:40:48 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9FHemr5070805 for ; Fri, 15 Oct 2004 10:40:48 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9FHemlH070804 for xorp-cvs@icir.org; Fri, 15 Oct 2004 17:40:48 GMT (envelope-from bms) Date: Fri, 15 Oct 2004 17:40:48 GMT From: Bruce Simpson Message-Id: <200410151740.i9FHemlH070804@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-15 17:40:48 UTC XORP CVS repository Modified files: rip TODO Log message: Removed a completed TODO list entry. Reviewed by: atanu Revision Changes Path 1.14 +1 -5 xorp/rip/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Fri Oct 15 18:23:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Oct 2004 11:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9FIO1Ou031228 for ; Fri, 15 Oct 2004 11:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9FIO1ag000231 for ; Fri, 15 Oct 2004 11:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9FIO1Ok008944; Fri, 15 Oct 2004 11:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9FINbOk008918 for ; Fri, 15 Oct 2004 11:23:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9FINbag000229 for ; Fri, 15 Oct 2004 11:23:37 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9FINbrF071340 for ; Fri, 15 Oct 2004 11:23:37 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9FINboc071339 for xorp-cvs@icir.org; Fri, 15 Oct 2004 18:23:37 GMT (envelope-from bms) Date: Fri, 15 Oct 2004 18:23:37 GMT From: Bruce Simpson Message-Id: <200410151823.i9FINboc071339@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-15 18:23:37 UTC XORP CVS repository Modified files: rip test_timers.cc Log message: Kludge-fix the rip/test_timers regression test. Due to the introduction of the TimerList/SystemClock advance_time() method, and the decoupling of current_time() from the underlying OS 'get what the time is now' method, zero times were being erroneously returned for route list operations herein. Revision Changes Path 1.10 +6 -1 xorp/rip/test_timers.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Sat Oct 16 10:58:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 16 Oct 2004 03:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9GAx18m050819 for ; Sat, 16 Oct 2004 03:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9GAx1ag012531 for ; Sat, 16 Oct 2004 03:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9GAx1Ui003861; Sat, 16 Oct 2004 03:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9GAwiUi003850 for ; Sat, 16 Oct 2004 03:58:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9GAwiag012529 for ; Sat, 16 Oct 2004 03:58:44 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9GAwic2079218 for ; Sat, 16 Oct 2004 03:58:44 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9GAwivC079217 for xorp-cvs@icir.org; Sat, 16 Oct 2004 10:58:44 GMT (envelope-from bms) Date: Sat, 16 Oct 2004 10:58:44 GMT From: Bruce Simpson Message-Id: <200410161058.i9GAwivC079217@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-16 10:58:43 UTC XORP CVS repository Modified files: . configure configure.in Log message: Add a compile-time test for the -pipe compiler option, for both C and C++. This can significantly speed up compile times by avoiding the use of temporary files, and has been found to be stable whilst used in the Tinderbox builds. Revision Changes Path 1.127 +159 -0 xorp/configure 1.120 +8 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Tue Oct 19 08:04:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 01:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9J851XW014892 for ; Tue, 19 Oct 2004 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J851ag052945 for ; Tue, 19 Oct 2004 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J851fG015560; Tue, 19 Oct 2004 01:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J84XfG015547 for ; Tue, 19 Oct 2004 01:04:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J84Wag052940 for ; Tue, 19 Oct 2004 01:04:32 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9J84Wvn015670 for ; Tue, 19 Oct 2004 01:04:32 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9J84Wp1015669 for xorp-cvs@icir.org; Tue, 19 Oct 2004 08:04:32 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 08:04:32 GMT From: Bruce Simpson Message-Id: <200410190804.i9J84Wp1015669@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 08:04:32 UTC XORP CVS repository Modified files: tinderbox/scripts filter-error.awk Log message: When filtering the output from a remote XORP tinderbox build job, pass through the messages issued by ssh when the connection is terminated by the remote host. These usually indicate problems with the tinderbox and as such should be present in the final job output. Revision Changes Path 1.4 +6 -0 other/tinderbox/scripts/filter-error.awk _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Tue Oct 19 08:07:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 01:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9J880ke015507 for ; Tue, 19 Oct 2004 01:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J880ag052989 for ; Tue, 19 Oct 2004 01:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J880fG015654; Tue, 19 Oct 2004 01:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J87ffG015637 for ; Tue, 19 Oct 2004 01:07:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J87fag052985 for ; Tue, 19 Oct 2004 01:07:41 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9J87fM8015779 for ; Tue, 19 Oct 2004 01:07:41 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9J87fEg015778 for xorp-cvs@icir.org; Tue, 19 Oct 2004 08:07:41 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 08:07:41 GMT From: Bruce Simpson Message-Id: <200410190807.i9J87fEg015778@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 08:07:41 UTC XORP CVS repository Modified files: tinderbox/scripts config Log message: * Update the FreeBSD target names to fbsd10 as we now run 4.10-RELEASE on panther.icir.org. * Re-order configuration variables to reflect the order specified in the comment at the beginning of the file. * Add linux24_gcc33 to the list of targets to build. * Use POSIX shell command substitution syntax instead of legacy backticks. Revision Changes Path 1.10 +21 -17 other/tinderbox/scripts/config _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:46 2005 Subject: No subject Tue Oct 19 08:09:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 01:10:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9J8A2DH015899 for ; Tue, 19 Oct 2004 01:10:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J8A1ag053003 for ; Tue, 19 Oct 2004 01:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J8A0fG015706; Tue, 19 Oct 2004 01:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J894fG015691 for ; Tue, 19 Oct 2004 01:09:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J894ag052997 for ; Tue, 19 Oct 2004 01:09:04 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9J893Vb015869 for ; Tue, 19 Oct 2004 01:09:03 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9J893qf015868 for xorp-cvs@icir.org; Tue, 19 Oct 2004 08:09:03 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 08:09:03 GMT From: Bruce Simpson Message-Id: <200410190809.i9J893qf015868@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 08:09:03 UTC XORP CVS repository Modified files: tinderbox/scripts remote_xorp_copy.sh Log message: * Use tar instead of scp for a five-fold speed increase when copying a checkout of XORP to a remote host. * Reformat a comment. * Remove some blank lines. Revision Changes Path 1.7 +3 -4 other/tinderbox/scripts/remote_xorp_copy.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Tue Oct 19 08:16:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 01:17:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9J8H3ik017292 for ; Tue, 19 Oct 2004 01:17:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J8H2ag053112 for ; Tue, 19 Oct 2004 01:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J8H0fG015953; Tue, 19 Oct 2004 01:17:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J8GtfG015946 for ; Tue, 19 Oct 2004 01:16:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J8Gtag053110 for ; Tue, 19 Oct 2004 01:16:55 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9J8Gst0016211 for ; Tue, 19 Oct 2004 01:16:54 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9J8GsB8016210 for xorp-cvs@icir.org; Tue, 19 Oct 2004 08:16:54 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 08:16:54 GMT From: Bruce Simpson Message-Id: <200410190816.i9J8GsB8016210@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 08:16:54 UTC XORP CVS repository Modified files: tinderbox/scripts tinderbox.sh Log message: Several tinderbox maintenance fixes: * Remove a redundant space from the #!/bin/sh line. * Use POSIX shell command substitution syntax instead of legacy backticks. * Call init_log_header earlier, so that the per-target banner may be printed in those cases where error conditions are detected before a remote job is invoked. * Use append redirection instead of clobbering ${errfile} in the above cases. * Use POSIX shell arithmetic expansion instead of backtick-escaping the expr(1) command. * Use a lock file to prevent tinderbox being invoked more than once simultaneously. This makes the major assumption that the tinderbox directory resides on a local, non-NFS, filesystem. Revision Changes Path 1.10 +26 -13 other/tinderbox/scripts/tinderbox.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Tue Oct 19 08:26:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 01:27:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9J8R3Qr019301 for ; Tue, 19 Oct 2004 01:27:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J8R2ag053218 for ; Tue, 19 Oct 2004 01:27:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J8R2fG016211; Tue, 19 Oct 2004 01:27:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9J8QmfG016188 for ; Tue, 19 Oct 2004 01:26:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9J8Qmag053214 for ; Tue, 19 Oct 2004 01:26:48 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9J8QmL6016425 for ; Tue, 19 Oct 2004 01:26:48 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9J8QmYu016424 for xorp-cvs@icir.org; Tue, 19 Oct 2004 08:26:48 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 08:26:48 GMT From: Bruce Simpson Message-Id: <200410190826.i9J8QmYu016424@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 08:26:48 UTC XORP CVS repository Modified files: tinderbox/scripts build_xorp.sh Log message: Major maintenance updates: * Add a commented ident at the top of the file. * Remove the timeout() function as it is now unused. * Remove the funkster() function as it is unused. * Comment the completion token mechanism used in this script. * Beautify the whitespace around the build command subshell invocation. * Record and print the build subshell exit status. * Add a comment about how additional improvements might be made to the subshell invocation. * Miscellaneous comment improvements. * Use POSIX shell arithmetic expansion instead of backtick-escaping the expr(1) command. * Use POSIX shell command substitution syntax instead of legacy backticks. * Do not call the timeout() function from within the loop used to poll for subshell completion; instead, set a variable ${timed_out} and check it upon exit. * If the subshell times out, kill only the subshell which timed out, not this shell's process group. NOTE: This script could benefit from further review regarding the use of POSIX /bin/sh job control, and that the use of such job control on FreeBSD requires that the process have a controlling terminal (i.e. that /dev/tty point to a real file descriptor), and that this can be forcibly created by ssh(1) with the switches '-t -t'. Revision Changes Path 1.8 +74 -43 other/tinderbox/scripts/build_xorp.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Tue Oct 19 10:35:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 03:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9JAa1TK045291 for ; Tue, 19 Oct 2004 03:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JAa1ag055016 for ; Tue, 19 Oct 2004 03:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JAa0fG019163; Tue, 19 Oct 2004 03:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JAZofG019156 for ; Tue, 19 Oct 2004 03:35:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JAZnag055014 for ; Tue, 19 Oct 2004 03:35:49 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9JAZn8P018531 for ; Tue, 19 Oct 2004 03:35:49 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9JAZn6i018530 for xorp-cvs@icir.org; Tue, 19 Oct 2004 10:35:49 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 10:35:49 GMT From: Bruce Simpson Message-Id: <200410191035.i9JAZn6i018530@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 10:35:49 UTC XORP CVS repository Added files: tinderbox/scripts make_tinderbox_master.sh Log message: Add a script to create a master tinderbox instance. This script performs the following actions: * Create an ssh public/private key pair for the sandbox. * Create the bootstrap directories needed on the master host. * Populate the directories correctly from CVS. * Fix script permissions after the CVS checkout. * Print a suggested crontab entry to the terminal. Revision Changes Path 1.1 +134 -0 other/tinderbox/scripts/make_tinderbox_master.sh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Tue Oct 19 10:42:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 03:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9JAh28q046669 for ; Tue, 19 Oct 2004 03:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JAh1ag055084 for ; Tue, 19 Oct 2004 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JAh1fG019332; Tue, 19 Oct 2004 03:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JAgNfG019315 for ; Tue, 19 Oct 2004 03:42:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JAgNag055082 for ; Tue, 19 Oct 2004 03:42:23 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9JAgN6a018658 for ; Tue, 19 Oct 2004 03:42:23 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9JAgNbR018657 for xorp-cvs@icir.org; Tue, 19 Oct 2004 10:42:23 GMT (envelope-from bms) Date: Tue, 19 Oct 2004 10:42:23 GMT From: Bruce Simpson Message-Id: <200410191042.i9JAgNbR018657@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-10-19 10:42:22 UTC XORP CVS repository Added files: tinderbox/scripts make_tinderbox_slave.sh Log message: Add a script to create a slave tinderbox instance. This script does not do much because most of what happens is done by build_xorp.sh itself, but it sets things up such that build_xorp.sh will see the paths it expects to. This script performs the following actions: * Create the tinderbox directory needed on the slave. * Create a symlink if required (i.e. the tinderbox builds will be hosted in a different tree from the tinderbox user's ${HOME} directory). Things this script does not do and which need to be done by the administrator: * Create the xorp-tinderbox account or home directory. * Populate the ${HOME}/.ssh/authorized_keys file. Revision Changes Path 1.1 +45 -0 other/tinderbox/scripts/make_tinderbox_slave.sh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Tue Oct 19 20:08:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 13:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9JK91rU073746 for ; Tue, 19 Oct 2004 13:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JK91ag062499 for ; Tue, 19 Oct 2004 13:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JK91fG007541; Tue, 19 Oct 2004 13:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9JK8OfG007518 for ; Tue, 19 Oct 2004 13:08:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9JK8Oag062489 for ; Tue, 19 Oct 2004 13:08:24 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9JK8OMv026731 for ; Tue, 19 Oct 2004 13:08:24 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9JK8OnC026730 for xorp-cvs@icir.org; Tue, 19 Oct 2004 20:08:24 GMT (envelope-from atanu) Date: Tue, 19 Oct 2004 20:08:24 GMT From: Atanu Ghosh Message-Id: <200410192008.i9JK8OnC026730@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-19 20:08:24 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: A Variable that had been erased was being referenced. Reordering the code fixes the problem. Bug found by: Bruce Submitted by: Pavlin Revision Changes Path 1.39 +2 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Wed Oct 20 01:10:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Oct 2004 18:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9K1B1FY038266 for ; Tue, 19 Oct 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9K1B1ag065842 for ; Tue, 19 Oct 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9K1B1Sm016758; Tue, 19 Oct 2004 18:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9K1AvSm016749 for ; Tue, 19 Oct 2004 18:10:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9K1Avag065838 for ; Tue, 19 Oct 2004 18:10:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9K1AvGs030584 for ; Tue, 19 Oct 2004 18:10:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9K1AvsN030583 for xorp-cvs@icir.org; Wed, 20 Oct 2004 01:10:57 GMT (envelope-from pavlin) Date: Wed, 20 Oct 2004 01:10:57 GMT From: Pavlin Radoslavov Message-Id: <200410200110.i9K1AvsN030583@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-20 01:10:57 UTC XORP CVS repository Modified files: libxorp debug.h Log message: Add more templetized swallow_args() for up to 12 extra arguments. Revision Changes Path 1.6 +13 -1 xorp/libxorp/debug.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Wed Oct 20 19:33:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Oct 2004 12:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9KJY1PV066922 for ; Wed, 20 Oct 2004 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9KJY1ag078437 for ; Wed, 20 Oct 2004 12:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9KJY1Sm018951; Wed, 20 Oct 2004 12:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9KJXgSm018923 for ; Wed, 20 Oct 2004 12:33:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9KJXgag078431 for ; Wed, 20 Oct 2004 12:33:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9KJXgQg042277 for ; Wed, 20 Oct 2004 12:33:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9KJXg1m042276 for xorp-cvs@icir.org; Wed, 20 Oct 2004 19:33:42 GMT (envelope-from atanu) Date: Wed, 20 Oct 2004 19:33:42 GMT From: Atanu Ghosh Message-Id: <200410201933.i9KJXg1m042276@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-10-20 19:33:42 UTC XORP CVS repository Modified files: . news.html html_src news.html Log message: Add "Integrated Cisco and UNIX Network Architectures" to the news file. Revision Changes Path 1.6 +10 -0 www/html_src/news.html 1.34 +11 -1 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Thu Oct 21 00:10:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Oct 2004 17:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9L0B1V9033557 for ; Wed, 20 Oct 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0B1ag081341 for ; Wed, 20 Oct 2004 17:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0B0Sm027963; Wed, 20 Oct 2004 17:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0AQSm027949 for ; Wed, 20 Oct 2004 17:10:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0AQag081339 for ; Wed, 20 Oct 2004 17:10:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9L0AQ31044712 for ; Wed, 20 Oct 2004 17:10:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9L0AQYZ044711 for xorp-cvs@icir.org; Thu, 21 Oct 2004 00:10:26 GMT (envelope-from pavlin) Date: Thu, 21 Oct 2004 00:10:26 GMT From: Pavlin Radoslavov Message-Id: <200410210010.i9L0AQYZ044711@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-21 00:10:25 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_set.cc fticonfig_table_set.hh Log message: * Add missing register_ftic_secondary() methods to the FtiConfig* classes * Add a new flag _is_primary to the FtiConfig* classes which indicates whether an instance is a primary or a secondary method for an operation. * Set the new "_is_primary" flag when methods register their existence with FtiConfig Revision Changes Path 1.27 +37 -13 xorp/fea/fticonfig.cc 1.5 +9 -2 xorp/fea/fticonfig_entry_get.cc 1.16 +7 -1 xorp/fea/fticonfig_entry_get.hh 1.5 +9 -2 xorp/fea/fticonfig_entry_observer.cc 1.10 +7 -1 xorp/fea/fticonfig_entry_observer.hh 1.5 +9 -2 xorp/fea/fticonfig_entry_set.cc 1.10 +7 -1 xorp/fea/fticonfig_entry_set.hh 1.5 +9 -2 xorp/fea/fticonfig_table_get.cc 1.13 +7 -1 xorp/fea/fticonfig_table_get.hh 1.7 +9 -2 xorp/fea/fticonfig_table_observer.cc 1.11 +7 -1 xorp/fea/fticonfig_table_observer.hh 1.5 +9 -2 xorp/fea/fticonfig_table_set.cc 1.10 +7 -1 xorp/fea/fticonfig_table_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Thu Oct 21 00:27:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Oct 2004 17:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9L0S1rm037718 for ; Wed, 20 Oct 2004 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0S1ag081495 for ; Wed, 20 Oct 2004 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0S1Sm028459; Wed, 20 Oct 2004 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0RXSm028440 for ; Wed, 20 Oct 2004 17:27:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0RXag081491 for ; Wed, 20 Oct 2004 17:27:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9L0RXit045108 for ; Wed, 20 Oct 2004 17:27:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9L0RXji045107 for xorp-cvs@icir.org; Thu, 21 Oct 2004 00:27:33 GMT (envelope-from pavlin) Date: Thu, 21 Oct 2004 00:27:33 GMT From: Pavlin Radoslavov Message-Id: <200410210027.i9L0RXji045107@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-21 00:27:33 UTC XORP CVS repository Modified files: fea ifconfig.cc ifconfig_get.cc ifconfig_get.hh ifconfig_observer.cc ifconfig_observer.hh ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc ifconfig_set_netlink.cc Log message: * Add a new flag _is_primary to the IfConfig* classes which indicates whether an instance is a primary or a secondary method for an operation. * Set the new "_is_primary" flag when methods register their existence with IfConfig * Add "broadcast", "loopback", "point_to_point" and "multicast" boolean arguments to the IfConfigSet*::config_vif() methods * Refactor the IfConfigSet configuration generation to do the right thing when the network interface configuration is generated for a secondary method such as Click. For example, fill-in any missing information such as MTU or MAC address using the info obtained from the system. Revision Changes Path 1.31 +19 -7 xorp/fea/ifconfig.cc 1.6 +3 -2 xorp/fea/ifconfig_get.cc 1.15 +6 -1 xorp/fea/ifconfig_get.hh 1.5 +9 -2 xorp/fea/ifconfig_observer.cc 1.10 +7 -1 xorp/fea/ifconfig_observer.hh 1.16 +103 -41 xorp/fea/ifconfig_set.cc 1.19 +26 -1 xorp/fea/ifconfig_set.hh 1.14 +16 -3 xorp/fea/ifconfig_set_dummy.cc 1.16 +31 -5 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Thu Oct 21 00:28:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Oct 2004 17:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9L0T1MA038030 for ; Wed, 20 Oct 2004 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0T1ag081505 for ; Wed, 20 Oct 2004 17:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0T1Sm028495; Wed, 20 Oct 2004 17:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0SOSm028475 for ; Wed, 20 Oct 2004 17:28:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0SOag081497 for ; Wed, 20 Oct 2004 17:28:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9L0SOYF045164 for ; Wed, 20 Oct 2004 17:28:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9L0SOXM045163 for xorp-cvs@icir.org; Thu, 21 Oct 2004 00:28:24 GMT (envelope-from pavlin) Date: Thu, 21 Oct 2004 00:28:24 GMT From: Pavlin Radoslavov Message-Id: <200410210028.i9L0SOXM045163@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-21 00:28:24 UTC XORP CVS repository Modified files: fea ifconfig_set_ioctl.cc Log message: * Add a new flag _is_primary to the IfConfig* classes which indicates whether an instance is a primary or a secondary method for an operation. * Set the new "_is_primary" flag when methods register their existence with IfConfig * Add "broadcast", "loopback", "point_to_point" and "multicast" boolean arguments to the IfConfigSet*::config_vif() methods * Refactor the IfConfigSet configuration generation to do the right thing when the network interface configuration is generated for a secondary method such as Click. For example, fill-in any missing information such as MTU or MAC address using the info obtained from the system. Revision Changes Path 1.30 +31 -5 xorp/fea/ifconfig_set_ioctl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Thu Oct 21 00:44:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Oct 2004 17:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9L0j1TC042286 for ; Wed, 20 Oct 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0j1ag081649 for ; Wed, 20 Oct 2004 17:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0j1Sm028960; Wed, 20 Oct 2004 17:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L0iNSm028942 for ; Wed, 20 Oct 2004 17:44:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L0iNag081644 for ; Wed, 20 Oct 2004 17:44:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9L0iM1c045452 for ; Wed, 20 Oct 2004 17:44:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9L0iMA9045451 for xorp-cvs@icir.org; Thu, 21 Oct 2004 00:44:22 GMT (envelope-from pavlin) Date: Thu, 21 Oct 2004 00:44:22 GMT From: Pavlin Radoslavov Message-Id: <200410210044.i9L0iMA9045451@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-21 00:44:22 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in ifconfig.cc ifconfig.hh ifconfig_get.hh ifconfig_set.hh Added files: fea click_socket.cc click_socket.hh ifconfig_get_click.cc ifconfig_set_click.cc Log message: Add a first-cut Click support for manipulating the network interfaces. Right now there is no XRL interface to enable/disable the Click support or for adding/deleting routes, but that will be added shortly. Revision Changes Path 1.43 +5 -1 xorp/fea/Makefile.am 1.54 +29 -22 xorp/fea/Makefile.in 1.1 +461 -0 xorp/fea/click_socket.cc (new) 1.1 +293 -0 xorp/fea/click_socket.hh (new) 1.32 +3 -1 xorp/fea/ifconfig.cc 1.30 +17 -1 xorp/fea/ifconfig.hh 1.16 +36 -1 xorp/fea/ifconfig_get.hh 1.1 +116 -0 xorp/fea/ifconfig_get_click.cc (new) 1.20 +78 -1 xorp/fea/ifconfig_set.hh 1.1 +883 -0 xorp/fea/ifconfig_set_click.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:47 2005 Subject: No subject Thu Oct 21 07:30:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Oct 2004 00:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9L7V1Zt034738 for ; Thu, 21 Oct 2004 00:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L7V1ag085237 for ; Thu, 21 Oct 2004 00:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L7V0Sm008129; Thu, 21 Oct 2004 00:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9L7U4Sm008100 for ; Thu, 21 Oct 2004 00:30:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9L7U4ag085215 for ; Thu, 21 Oct 2004 00:30:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9L7U4XR048302 for ; Thu, 21 Oct 2004 00:30:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9L7U4YW048301 for xorp-cvs@icir.org; Thu, 21 Oct 2004 07:30:04 GMT (envelope-from pavlin) Date: Thu, 21 Oct 2004 07:30:04 GMT From: Pavlin Radoslavov Message-Id: <200410210730.i9L7U4YW048301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-21 07:30:04 UTC XORP CVS repository Modified files: fea click_socket.cc Log message: Bug fix: "=" -> "==" Revision Changes Path 1.2 +2 -2 xorp/fea/click_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Fri Oct 22 01:28:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Oct 2004 18:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9M1T2xi066917 for ; Thu, 21 Oct 2004 18:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9M1T2ag098197 for ; Thu, 21 Oct 2004 18:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9M1T0Sm009372; Thu, 21 Oct 2004 18:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9M1SiSm009359 for ; Thu, 21 Oct 2004 18:28:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9M1Siag098193 for ; Thu, 21 Oct 2004 18:28:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9M1ShrG059376 for ; Thu, 21 Oct 2004 18:28:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9M1ShMF059375 for xorp-cvs@icir.org; Fri, 22 Oct 2004 01:28:43 GMT (envelope-from pavlin) Date: Fri, 22 Oct 2004 01:28:43 GMT From: Pavlin Radoslavov Message-Id: <200410220128.i9M1ShMF059375@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2004-10-22 01:28:43 UTC XORP CVS repository Modified files: . news.html html_src news.html Log message: Fix a typo: remove an extra quote. Revision Changes Path 1.7 +1 -1 www/html_src/news.html 1.35 +2 -2 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Fri Oct 22 18:56:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Oct 2004 11:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9MIv16W078993 for ; Fri, 22 Oct 2004 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MIv1ag009667 for ; Fri, 22 Oct 2004 11:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MIv1Sm008096; Fri, 22 Oct 2004 11:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MIuXSm008081 for ; Fri, 22 Oct 2004 11:56:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MIuXag009659 for ; Fri, 22 Oct 2004 11:56:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9MIuX13069129 for ; Fri, 22 Oct 2004 11:56:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9MIuXfb069128 for xorp-cvs@icir.org; Fri, 22 Oct 2004 18:56:33 GMT (envelope-from pavlin) Date: Fri, 22 Oct 2004 18:56:33 GMT From: Pavlin Radoslavov Message-Id: <200410221856.i9MIuXfb069128@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-22 18:56:33 UTC XORP CVS repository Modified files: rtrmgr boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc template.ll Log message: Bug fix: accept capital letters for LITERAL tokens in config files and for COMMAND tokens in template files. Bug found by: Liang Qin , Atanu Ghosh Revision Changes Path 1.17 +1 -1 xorp/rtrmgr/boot.ll 1.6 +1142 -1150 xorp/rtrmgr/lex.boot.cc 1.6 +0 -0 xorp/rtrmgr/lex.opcmd.cc 1.6 +1065 -1163 xorp/rtrmgr/lex.tplt.cc 1.10 +1 -1 xorp/rtrmgr/template.ll _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Fri Oct 22 23:07:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Oct 2004 16:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9MN81TA039617 for ; Fri, 22 Oct 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MN81ag012655 for ; Fri, 22 Oct 2004 16:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MN81Sm016209; Fri, 22 Oct 2004 16:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MN7ISm016160 for ; Fri, 22 Oct 2004 16:07:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MN7Iag012623 for ; Fri, 22 Oct 2004 16:07:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9MN7IqG071729 for ; Fri, 22 Oct 2004 16:07:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9MN7Idr071728 for xorp-cvs@icir.org; Fri, 22 Oct 2004 23:07:18 GMT (envelope-from pavlin) Date: Fri, 22 Oct 2004 23:07:18 GMT From: Pavlin Radoslavov Message-Id: <200410222307.i9MN7Idr071728@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-22 23:07:18 UTC XORP CVS repository Modified files: fea ifconfig_get_click.cc Log message: Remove #include "libcomm/comm_api.h" because it is not needed. Revision Changes Path 1.2 +2 -3 xorp/fea/ifconfig_get_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Fri Oct 22 23:08:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Oct 2004 16:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9MN913X039877 for ; Fri, 22 Oct 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MN91ag012668 for ; Fri, 22 Oct 2004 16:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MN90Sm016257; Fri, 22 Oct 2004 16:09:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9MN8TSm016228 for ; Fri, 22 Oct 2004 16:08:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9MN8Sag012661 for ; Fri, 22 Oct 2004 16:08:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9MN8S8T071832 for ; Fri, 22 Oct 2004 16:08:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9MN8S19071831 for xorp-cvs@icir.org; Fri, 22 Oct 2004 23:08:28 GMT (envelope-from pavlin) Date: Fri, 22 Oct 2004 23:08:28 GMT From: Pavlin Radoslavov Message-Id: <200410222308.i9MN8S19071831@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-22 23:08:28 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Added files: fea nexthop_port_mapper.cc nexthop_port_mapper.hh Log message: Add a new class NexthopPortMapper, that can be used for mapping between next-hop information and a port number. Such mapping is needed in case of Click for example. Revision Changes Path 1.44 +3 -1 xorp/fea/Makefile.am 1.55 +11 -8 xorp/fea/Makefile.in 1.1 +323 -0 xorp/fea/nexthop_port_mapper.cc (new) 1.1 +205 -0 xorp/fea/nexthop_port_mapper.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Sat Oct 23 00:14:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Oct 2004 17:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9N0F1MN055515 for ; Fri, 22 Oct 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9N0F1ag013208 for ; Fri, 22 Oct 2004 17:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9N0F1Sm018062; Fri, 22 Oct 2004 17:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9N0EUSm018046 for ; Fri, 22 Oct 2004 17:14:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9N0EUag013198 for ; Fri, 22 Oct 2004 17:14:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9N0ET3a072340 for ; Fri, 22 Oct 2004 17:14:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9N0ETjd072339 for xorp-cvs@icir.org; Sat, 23 Oct 2004 00:14:29 GMT (envelope-from pavlin) Date: Sat, 23 Oct 2004 00:14:29 GMT From: Pavlin Radoslavov Message-Id: <200410230014.i9N0ETjd072339@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-23 00:14:29 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.cc Log message: Notify the observers if the map changes. Revision Changes Path 1.2 +21 -1 xorp/fea/nexthop_port_mapper.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Mon Oct 25 16:14:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 09:15:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PGF14t008430 for ; Mon, 25 Oct 2004 09:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PGF1ag053334 for ; Mon, 25 Oct 2004 09:15:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PGF0Sm012704; Mon, 25 Oct 2004 09:15:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PGEfSm012686 for ; Mon, 25 Oct 2004 09:14:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PGEcag053329 for ; Mon, 25 Oct 2004 09:14:38 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PGEcE0005990 for ; Mon, 25 Oct 2004 09:14:38 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PGEcRk005989 for xorp-cvs@icir.org; Mon, 25 Oct 2004 16:14:38 GMT (envelope-from bms) Date: Mon, 25 Oct 2004 16:14:38 GMT From: Bruce Simpson Message-Id: <200410251614.i9PGEcRk005989@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-25 16:14:38 UTC XORP CVS repository Modified files: fea fticonfig_table_parse_rtm.cc Log message: Ignore ARP table entries, on systems where ARP is coupled with a 4.4BSD-style routing table. Obtained from: routed 2.25 Revision Changes Path 1.9 +5 -1 xorp/fea/fticonfig_table_parse_rtm.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Mon Oct 25 16:52:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 09:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PGr1fx015887 for ; Mon, 25 Oct 2004 09:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PGr1ag053859 for ; Mon, 25 Oct 2004 09:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PGr1Sm014029; Mon, 25 Oct 2004 09:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PGqTSm014011 for ; Mon, 25 Oct 2004 09:52:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PGqTag053855 for ; Mon, 25 Oct 2004 09:52:29 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PGqSj3006447 for ; Mon, 25 Oct 2004 09:52:28 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PGqS60006446 for xorp-cvs@icir.org; Mon, 25 Oct 2004 16:52:28 GMT (envelope-from bms) Date: Mon, 25 Oct 2004 16:52:28 GMT From: Bruce Simpson Message-Id: <200410251652.i9PGqS60006446@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-25 16:52:28 UTC XORP CVS repository Modified files: fea TODO Log message: Mark a TODO item as done. RTF_LLINFO entries are ARP entries and can be ignored. Redistributing them at the routing protocol level does not make any sense, as their next-hop information is layer 2 in nature. Revision Changes Path 1.22 +1 -5 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Mon Oct 25 22:18:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 15:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PMJ1i0090057 for ; Mon, 25 Oct 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PMJ19l057354 for ; Mon, 25 Oct 2004 15:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PMJ1Sm025794; Mon, 25 Oct 2004 15:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PMIGSm025767 for ; Mon, 25 Oct 2004 15:18:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PMIF9l057347 for ; Mon, 25 Oct 2004 15:18:15 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PMIFeF009281 for ; Mon, 25 Oct 2004 15:18:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PMIF1l009280 for xorp-cvs@icir.org; Mon, 25 Oct 2004 22:18:15 GMT (envelope-from atanu) Date: Mon, 25 Oct 2004 22:18:15 GMT From: Atanu Ghosh Message-Id: <200410252218.i9PMIF1l009280@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-10-25 22:18:15 UTC XORP CVS repository Modified files: . index.html html_src index.html Log message: Add Microsoft to the list of funders. Revision Changes Path 1.11 +2 -1 www/html_src/index.html 1.61 +3 -2 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Mon Oct 25 22:20:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 15:21:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PML3F1090607 for ; Mon, 25 Oct 2004 15:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PML39l057402 for ; Mon, 25 Oct 2004 15:21:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PML2Sm025904; Mon, 25 Oct 2004 15:21:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PMKTSm025839 for ; Mon, 25 Oct 2004 15:20:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PMKS9l057391 for ; Mon, 25 Oct 2004 15:20:28 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PMKSRA009403 for ; Mon, 25 Oct 2004 15:20:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PMKSCJ009402 for xorp-cvs@icir.org; Mon, 25 Oct 2004 22:20:28 GMT (envelope-from atanu) Date: Mon, 25 Oct 2004 22:20:28 GMT From: Atanu Ghosh Message-Id: <200410252220.i9PMKSCJ009402@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-10-25 22:20:28 UTC XORP CVS repository Modified files: . index.html html_src index.html Log message: Fix the link to Microsoft. Revision Changes Path 1.12 +1 -1 www/html_src/index.html 1.62 +2 -2 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:48 2005 Subject: No subject Mon Oct 25 23:27:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 16:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PNS2v9006859 for ; Mon, 25 Oct 2004 16:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNS19l058162 for ; Mon, 25 Oct 2004 16:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNS1Sm028379; Mon, 25 Oct 2004 16:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNRvSm028368 for ; Mon, 25 Oct 2004 16:27:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNRv9l058160 for ; Mon, 25 Oct 2004 16:27:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PNRvsZ010117 for ; Mon, 25 Oct 2004 16:27:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PNRvhU010116 for xorp-cvs@icir.org; Mon, 25 Oct 2004 23:27:57 GMT (envelope-from pavlin) Date: Mon, 25 Oct 2004 23:27:57 GMT From: Pavlin Radoslavov Message-Id: <200410252327.i9PNRvhU010116@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-25 23:27:57 UTC XORP CVS repository Modified files: fea fea.cc fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh test_mfea.cc mld6igmp test_mld6igmp.cc pim test_pim.cc Log message: Add a NexthopPortMapper instance to the FEA, and pass it by-reference to the IfConfig and FtiConfig. Revision Changes Path 1.37 +10 -4 xorp/fea/fea.cc 1.28 +4 -2 xorp/fea/fticonfig.cc 1.20 +10 -5 xorp/fea/fticonfig.hh 1.33 +4 -2 xorp/fea/ifconfig.cc 1.31 +6 -2 xorp/fea/ifconfig.hh 1.13 +10 -4 xorp/fea/test_mfea.cc 1.34 +10 -4 xorp/mld6igmp/test_mld6igmp.cc 1.39 +11 -5 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Mon Oct 25 23:29:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 16:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PNU2EO007340 for ; Mon, 25 Oct 2004 16:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNU19l058183 for ; Mon, 25 Oct 2004 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNU1Sm028446; Mon, 25 Oct 2004 16:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNTSSm028431 for ; Mon, 25 Oct 2004 16:29:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNTS9l058176 for ; Mon, 25 Oct 2004 16:29:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PNTSqO010173 for ; Mon, 25 Oct 2004 16:29:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PNTS1F010172 for xorp-cvs@icir.org; Mon, 25 Oct 2004 23:29:28 GMT (envelope-from pavlin) Date: Mon, 25 Oct 2004 23:29:28 GMT From: Pavlin Radoslavov Message-Id: <200410252329.i9PNTS1F010172@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-25 23:29:28 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.cc Log message: Bug fix: notify observers if we clear() the maps. Revision Changes Path 1.3 +3 -1 xorp/fea/nexthop_port_mapper.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Mon Oct 25 23:51:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 16:52:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9PNq27r012956 for ; Mon, 25 Oct 2004 16:52:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNq19l058404 for ; Mon, 25 Oct 2004 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNq1Sm029098; Mon, 25 Oct 2004 16:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9PNppSm029086 for ; Mon, 25 Oct 2004 16:51:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9PNpo9l058402 for ; Mon, 25 Oct 2004 16:51:50 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9PNpoK7010405 for ; Mon, 25 Oct 2004 16:51:50 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9PNpo6D010404 for xorp-cvs@icir.org; Mon, 25 Oct 2004 23:51:50 GMT (envelope-from bms) Date: Mon, 25 Oct 2004 23:51:50 GMT From: Bruce Simpson Message-Id: <200410252351.i9PNpo6D010404@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-25 23:51:50 UTC XORP CVS repository Modified files: libxorp ipv4.cc ipv4.hh ipv6.cc ipv6.hh ipvx.cc ipvx.hh test_ipv4.cc test_ipv6.cc test_ipvx.cc Log message: Add a LOOPBACK() constant to the IP representations. This will be used in places where a loopback address argument has to be explicitly provided, i.e. the BSD add blackhole route operation. Revision Changes Path 1.15 +2 -1 xorp/libxorp/ipv4.cc 1.21 +7 -2 xorp/libxorp/ipv4.hh 1.16 +2 -1 xorp/libxorp/ipv6.cc 1.20 +7 -2 xorp/libxorp/ipv6.hh 1.15 +2 -1 xorp/libxorp/ipvx.cc 1.17 +3 -1 xorp/libxorp/ipvx.hh 1.13 +4 -1 xorp/libxorp/test_ipv4.cc 1.13 +4 -1 xorp/libxorp/test_ipv6.cc 1.12 +6 -1 xorp/libxorp/test_ipvx.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 00:20:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 17:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0L2DU018761 for ; Mon, 25 Oct 2004 17:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0L19l058704 for ; Mon, 25 Oct 2004 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0L1Sm000236; Mon, 25 Oct 2004 17:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0K6Sm000191 for ; Mon, 25 Oct 2004 17:20:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0K69l058698 for ; Mon, 25 Oct 2004 17:20:06 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0K6C3010866 for ; Mon, 25 Oct 2004 17:20:06 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q0K6RZ010865 for xorp-cvs@icir.org; Tue, 26 Oct 2004 00:20:06 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 00:20:06 GMT From: Bruce Simpson Message-Id: <200410260020.i9Q0K6RZ010865@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 00:20:06 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc Log message: Add commented-out OS-specific FIB support for discard routes. This will be uncommented when the integration of discard routes into the current XRL interfaces is complete. Note that the BSD (all) implementation of discard routes requires that routes with the flag set have their interface field set to a loopback interface for the flag to have any effect. Revision Changes Path 1.13 +13 -1 xorp/fea/fticonfig_entry_set_netlink.cc 1.20 +13 -1 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 00:55:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 17:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0u1Nf025465 for ; Mon, 25 Oct 2004 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0u19l058997 for ; Mon, 25 Oct 2004 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0u1Sm001616; Mon, 25 Oct 2004 17:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0t7Sm001566 for ; Mon, 25 Oct 2004 17:55:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0t79l058986 for ; Mon, 25 Oct 2004 17:55:07 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0t7SU011199 for ; Mon, 25 Oct 2004 17:55:07 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q0t70X011198 for xorp-cvs@icir.org; Tue, 26 Oct 2004 00:55:07 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 00:55:07 GMT From: Bruce Simpson Message-Id: <200410260055.i9Q0t70X011198@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 00:55:07 UTC XORP CVS repository Modified files: fea routing_socket_utils.cc Log message: Add commented-out code to set the value of the new 'is_discard' property of an fte entry. Revision Changes Path 1.18 +12 -2 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 00:58:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 17:59:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0x05V026028 for ; Mon, 25 Oct 2004 17:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0x09l059017 for ; Mon, 25 Oct 2004 17:59:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0x0Sm001706; Mon, 25 Oct 2004 17:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q0wuSm001699 for ; Mon, 25 Oct 2004 17:58:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q0wt9l059015 for ; Mon, 25 Oct 2004 17:58:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q0wto2011354 for ; Mon, 25 Oct 2004 17:58:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q0wtRU011353 for xorp-cvs@icir.org; Tue, 26 Oct 2004 00:58:55 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 00:58:55 GMT From: Pavlin Radoslavov Message-Id: <200410260058.i9Q0wtRU011353@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 00:58:55 UTC XORP CVS repository Modified files: fea routing_socket_utils.cc Log message: Compilation fix: move a comma after that last argument within the following comment. Revision Changes Path 1.19 +2 -2 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:02:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q131Ps026858 for ; Mon, 25 Oct 2004 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1319l059082 for ; Mon, 25 Oct 2004 18:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q131Sm001814; Mon, 25 Oct 2004 18:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q12uSm001804 for ; Mon, 25 Oct 2004 18:02:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q12t9l059078 for ; Mon, 25 Oct 2004 18:02:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q12t5f011448 for ; Mon, 25 Oct 2004 18:02:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q12tPa011446 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:02:55 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 01:02:55 GMT From: Pavlin Radoslavov Message-Id: <200410260102.i9Q12tPa011446@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 01:02:55 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.hh Log message: Add missing #include files. Revision Changes Path 1.2 +6 -1 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:03:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q142MY027069 for ; Mon, 25 Oct 2004 18:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1429l059092 for ; Mon, 25 Oct 2004 18:04:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q141Sm001856; Mon, 25 Oct 2004 18:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q13hSm001844 for ; Mon, 25 Oct 2004 18:03:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q13h9l059090 for ; Mon, 25 Oct 2004 18:03:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q13h8B011551 for ; Mon, 25 Oct 2004 18:03:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q13h6d011550 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:03:43 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 01:03:43 GMT From: Pavlin Radoslavov Message-Id: <200410260103.i9Q13h6d011550@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 01:03:43 UTC XORP CVS repository Modified files: fea fticonfig.hh ifconfig.hh Log message: * Add new method nexthop_port_mapper() * Add a missing kdoc comment. Revision Changes Path 1.21 +14 -2 xorp/fea/fticonfig.hh 1.32 +13 -1 xorp/fea/ifconfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:09:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1A1Wc028245 for ; Mon, 25 Oct 2004 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1A19l059144 for ; Mon, 25 Oct 2004 18:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1A0Sm002067; Mon, 25 Oct 2004 18:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q19vSm002058 for ; Mon, 25 Oct 2004 18:09:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q19u9l059137 for ; Mon, 25 Oct 2004 18:09:56 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q19uq8011660 for ; Mon, 25 Oct 2004 18:09:56 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q19uCI011659 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:09:56 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 01:09:56 GMT From: Bruce Simpson Message-Id: <200410260109.i9Q19uCI011659@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 01:09:56 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc Log message: Add commented-out code to set the value of the new 'is_discard' property of an fte entry. Revision Changes Path 1.16 +13 -2 xorp/fea/netlink_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:13:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1E1sO029016 for ; Mon, 25 Oct 2004 18:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1E19l059209 for ; Mon, 25 Oct 2004 18:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1E1Sm002178; Mon, 25 Oct 2004 18:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1DBSm002163 for ; Mon, 25 Oct 2004 18:13:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1DB9l059195 for ; Mon, 25 Oct 2004 18:13:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1DBRl011804 for ; Mon, 25 Oct 2004 18:13:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q1DBCH011803 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:13:11 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 01:13:11 GMT From: Pavlin Radoslavov Message-Id: <200410260113.i9Q1DBCH011803@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 01:13:11 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.cc Log message: Notify observers only if there is a change in the map. Revision Changes Path 1.4 +26 -21 xorp/fea/nexthop_port_mapper.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:23:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1O27P030947 for ; Mon, 25 Oct 2004 18:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1O29l059287 for ; Mon, 25 Oct 2004 18:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1O1Sm002543; Mon, 25 Oct 2004 18:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1NoSm002514 for ; Mon, 25 Oct 2004 18:23:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1No9l059284 for ; Mon, 25 Oct 2004 18:23:50 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1NoIc011967 for ; Mon, 25 Oct 2004 18:23:50 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q1NoLs011966 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:23:50 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 01:23:50 GMT From: Bruce Simpson Message-Id: <200410260123.i9Q1NoLs011966@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 01:23:50 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc Log message: The previous commit's notion of the meaning of RTN_UNREACHABLE was incorrect. It is in fact equivalent to the BSD notion of RTM_MISS -- it is sent by the routing code as a notification to the userland that there is no route to the requested destination. Broadly, the analogue of BSD's RTF_REJECT in netlink land is RTN_PROHIBIT, with the difference that it returns an ICMP 'administratively prohibited' message instead of an 'unreachable' one. As such it fits with XORP's notion of what a discard rule is. Revision Changes Path 1.17 +5 -6 xorp/fea/netlink_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:29:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1U1he032121 for ; Mon, 25 Oct 2004 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1U19l059350 for ; Mon, 25 Oct 2004 18:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1U0Sm002706; Mon, 25 Oct 2004 18:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1TqSm002699 for ; Mon, 25 Oct 2004 18:29:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1Tq9l059343 for ; Mon, 25 Oct 2004 18:29:52 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1Tpgv012063 for ; Mon, 25 Oct 2004 18:29:51 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q1TplX012062 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:29:51 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 01:29:51 GMT From: Bruce Simpson Message-Id: <200410260129.i9Q1TplX012062@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 01:29:51 UTC XORP CVS repository Modified files: xrl/interfaces fea_fib_client.xif Log message: Make comments a bit less misleading. Revision Changes Path 1.3 +4 -4 xorp/xrl/interfaces/fea_fib_client.xif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:49 2005 Subject: No subject Tue Oct 26 01:34:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 18:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1Z1jh033080 for ; Mon, 25 Oct 2004 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1Z19l059401 for ; Mon, 25 Oct 2004 18:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1Z1Sm002864; Mon, 25 Oct 2004 18:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1YSSm002853 for ; Mon, 25 Oct 2004 18:34:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1YS9l059395 for ; Mon, 25 Oct 2004 18:34:28 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1YSul012174 for ; Mon, 25 Oct 2004 18:34:28 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q1YS5R012173 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:34:28 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 01:34:28 GMT From: Bruce Simpson Message-Id: <200410260134.i9Q1YS5R012173@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 01:34:28 UTC XORP CVS repository Modified files: xrl/interfaces profile_client.xif Log message: Appease a warning from clnt-gen. Revision Changes Path 1.2 +3 -3 xorp/xrl/interfaces/profile_client.xif _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 01:59:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 19:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q20133037917 for ; Mon, 25 Oct 2004 19:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q2009l059656 for ; Mon, 25 Oct 2004 19:00:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q200Sm003537; Mon, 25 Oct 2004 19:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q1xBSm003517 for ; Mon, 25 Oct 2004 18:59:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q1xB9l059646 for ; Mon, 25 Oct 2004 18:59:11 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q1xB6o012578 for ; Mon, 25 Oct 2004 18:59:11 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q1xBma012577 for xorp-cvs@icir.org; Tue, 26 Oct 2004 01:59:11 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 01:59:11 GMT From: Bruce Simpson Message-Id: <200410260159.i9Q1xBma012577@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 01:59:11 UTC XORP CVS repository Modified files: fea fte.hh Log message: Add the 'is_discard' property to the forwarding table entry class. This property specifies if the route is one which causes packets to be dropped when it is used to forward packets. Revision Changes Path 1.11 +12 -5 xorp/fea/fte.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 02:01:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Oct 2004 19:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9Q221Ib038333 for ; Mon, 25 Oct 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q2219l059691 for ; Mon, 25 Oct 2004 19:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q221Sm003591; Mon, 25 Oct 2004 19:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9Q21TSm003576 for ; Mon, 25 Oct 2004 19:01:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9Q21T9l059686 for ; Mon, 25 Oct 2004 19:01:29 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9Q21Tvw012707 for ; Mon, 25 Oct 2004 19:01:29 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9Q21S6e012706 for xorp-cvs@icir.org; Tue, 26 Oct 2004 02:01:29 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 02:01:29 GMT From: Bruce Simpson Message-Id: <200410260201.i9Q21S6e012706@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 02:01:28 UTC XORP CVS repository Modified files: fea firewall_ipfw.cc Log message: Sync comments, new function to clear ipfw managed rule range. Revision Changes Path 1.11 +30 -2 xorp/fea/firewall_ipfw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 20:01:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 13:02:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QK25bw059981 for ; Tue, 26 Oct 2004 13:02:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QK259l071718 for ; Tue, 26 Oct 2004 13:02:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QK21N1005262; Tue, 26 Oct 2004 13:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QK1dN1005238 for ; Tue, 26 Oct 2004 13:01:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QK1d9l071712 for ; Tue, 26 Oct 2004 13:01:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QK1dbY023836 for ; Tue, 26 Oct 2004 13:01:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QK1dBn023835 for xorp-cvs@icir.org; Tue, 26 Oct 2004 20:01:39 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 20:01:39 GMT From: Pavlin Radoslavov Message-Id: <200410262001.i9QK1dBn023835@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 20:01:38 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.cc nexthop_port_mapper.hh Log message: * Refactor the semantics for informing the port mapping observers about any changes. Previously, the observers were notified about any add/delete changes to the map. This has the potentials of generating many transient notifications. After the refactoring, method notify_observers() has to be explicitly called to inform the observers about any map changes. * Keep a copy of the old mapping, and use it when notify_observers() is called to compute whether indeed there was any modification to the map. Revision Changes Path 1.5 +31 -35 xorp/fea/nexthop_port_mapper.cc 1.3 +22 -2 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 20:12:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 13:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QKD1dj062611 for ; Tue, 26 Oct 2004 13:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QKD19l071851 for ; Tue, 26 Oct 2004 13:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QKD1N1005617; Tue, 26 Oct 2004 13:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QKCBN1005597 for ; Tue, 26 Oct 2004 13:12:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QKCB9l071844 for ; Tue, 26 Oct 2004 13:12:11 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QKCB82024033 for ; Tue, 26 Oct 2004 13:12:11 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QKCB9V024032 for xorp-cvs@icir.org; Tue, 26 Oct 2004 20:12:11 GMT (envelope-from bms) Date: Tue, 26 Oct 2004 20:12:11 GMT From: Bruce Simpson Message-Id: <200410262012.i9QKCB9V024032@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-26 20:12:11 UTC XORP CVS repository Modified files: xrl/interfaces fea_fib_client_xif.hh Log message: Diff reduction after regen. Revision Changes Path 1.4 +4 -4 xorp/xrl/interfaces/fea_fib_client_xif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 21:57:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 14:58:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QLw6F9087811 for ; Tue, 26 Oct 2004 14:58:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QLw59l073157 for ; Tue, 26 Oct 2004 14:58:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QLw2N1008981; Tue, 26 Oct 2004 14:58:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QLvGN1008939 for ; Tue, 26 Oct 2004 14:57:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QLvG9l073149 for ; Tue, 26 Oct 2004 14:57:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QLvGHS025013 for ; Tue, 26 Oct 2004 14:57:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QLvGYv025012 for xorp-cvs@icir.org; Tue, 26 Oct 2004 21:57:16 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 21:57:16 GMT From: Pavlin Radoslavov Message-Id: <200410262157.i9QLvGYv025012@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 21:57:16 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.cc nexthop_port_mapper.hh Log message: Don't call notify_observers() from within clear(), such that now the behavior is consistent for all methods that modify the mapping. Revision Changes Path 1.6 +1 -3 xorp/fea/nexthop_port_mapper.cc 1.4 +1 -3 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 22:20:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 15:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QML1jd092382 for ; Tue, 26 Oct 2004 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QML19l073479 for ; Tue, 26 Oct 2004 15:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QML1N1009695; Tue, 26 Oct 2004 15:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QMKaN1009683 for ; Tue, 26 Oct 2004 15:20:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QMKZ9l073477 for ; Tue, 26 Oct 2004 15:20:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QMKZPP025311 for ; Tue, 26 Oct 2004 15:20:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QMKZ2t025310 for xorp-cvs@icir.org; Tue, 26 Oct 2004 22:20:35 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 22:20:35 GMT From: Pavlin Radoslavov Message-Id: <200410262220.i9QMKZ2t025310@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 22:20:35 UTC XORP CVS repository Modified files: xrl/interfaces profile_client_xif.hh xrl/targets fib2mrib.xrls fib2mrib_base.hh profiler.xrls profiler_base.hh Log message: Regenerate auto-generated files. Revision Changes Path 1.2 +3 -1 xorp/xrl/interfaces/profile_client_xif.hh 1.4 +4 -4 xorp/xrl/targets/fib2mrib.xrls 1.5 +4 -4 xorp/xrl/targets/fib2mrib_base.hh 1.2 +3 -1 xorp/xrl/targets/profiler.xrls 1.2 +3 -1 xorp/xrl/targets/profiler_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 22:22:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 15:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QMN1fA092777 for ; Tue, 26 Oct 2004 15:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QMN19l073501 for ; Tue, 26 Oct 2004 15:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QMN1N1009772; Tue, 26 Oct 2004 15:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QMM9N1009735 for ; Tue, 26 Oct 2004 15:22:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QMM99l073490 for ; Tue, 26 Oct 2004 15:22:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QMM9Cw025386 for ; Tue, 26 Oct 2004 15:22:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QMM943025385 for xorp-cvs@icir.org; Tue, 26 Oct 2004 22:22:09 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 22:22:09 GMT From: Pavlin Radoslavov Message-Id: <200410262222.i9QMM943025385@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 22:22:09 UTC XORP CVS repository Modified files: fea ifconfig_set_click.cc Log message: * Generate the next-hop to port mapping * Nits Revision Changes Path 1.2 +74 -22 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 23:55:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 16:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QNu1El011035 for ; Tue, 26 Oct 2004 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QNu19l074479 for ; Tue, 26 Oct 2004 16:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QNu1N1012705; Tue, 26 Oct 2004 16:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QNtGN1012686 for ; Tue, 26 Oct 2004 16:55:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QNtG9l074473 for ; Tue, 26 Oct 2004 16:55:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QNtGhb026163 for ; Tue, 26 Oct 2004 16:55:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QNtG9R026162 for xorp-cvs@icir.org; Tue, 26 Oct 2004 23:55:16 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 23:55:16 GMT From: Pavlin Radoslavov Message-Id: <200410262355.i9QNtG9R026162@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 23:55:16 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc Log message: Remove an extra empty line. Revision Changes Path 1.9 +1 -2 xorp/fea/fticonfig_entry_get_dummy.cc 1.23 +1 -2 xorp/fea/fticonfig_entry_get_netlink.cc 1.21 +1 -2 xorp/fea/fticonfig_entry_get_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Tue Oct 26 23:58:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 16:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9QNx33B011650 for ; Tue, 26 Oct 2004 16:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QNx39l074503 for ; Tue, 26 Oct 2004 16:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QNx1N1012825; Tue, 26 Oct 2004 16:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9QNwUN1012805 for ; Tue, 26 Oct 2004 16:58:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9QNwU9l074501 for ; Tue, 26 Oct 2004 16:58:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9QNwUFG026307 for ; Tue, 26 Oct 2004 16:58:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9QNwUpq026306 for xorp-cvs@icir.org; Tue, 26 Oct 2004 23:58:30 GMT (envelope-from pavlin) Date: Tue, 26 Oct 2004 23:58:30 GMT From: Pavlin Radoslavov Message-Id: <200410262358.i9QNwUpq026306@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-26 23:58:30 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in fticonfig.cc fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_set.hh fticonfig_table_get.hh fticonfig_table_set.hh Added files: fea fticonfig_entry_get_click.cc fticonfig_entry_set_click.cc fticonfig_table_get_click.cc fticonfig_table_set_click.cc Log message: Add a skeleton to add/delete forwarding entries for Click (not implemented yet). Revision Changes Path 1.45 +5 -1 xorp/fea/Makefile.am 1.56 +13 -1 xorp/fea/Makefile.in 1.29 +5 -1 xorp/fea/fticonfig.cc 1.22 +33 -1 xorp/fea/fticonfig.hh 1.17 +76 -1 xorp/fea/fticonfig_entry_get.hh 1.1 +205 -0 xorp/fea/fticonfig_entry_get_click.cc (new) 1.11 +68 -1 xorp/fea/fticonfig_entry_set.hh 1.1 +143 -0 xorp/fea/fticonfig_entry_set_click.cc (new) 1.14 +49 -1 xorp/fea/fticonfig_table_get.hh 1.1 +148 -0 xorp/fea/fticonfig_table_get_click.cc (new) 1.11 +61 -1 xorp/fea/fticonfig_table_set.hh 1.1 +144 -0 xorp/fea/fticonfig_table_set_click.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:50 2005 Subject: No subject Wed Oct 27 00:19:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 17:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R0K1dZ016177 for ; Tue, 26 Oct 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R0K19l074768 for ; Tue, 26 Oct 2004 17:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R0K1N1013550; Tue, 26 Oct 2004 17:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R0JHN1013541 for ; Tue, 26 Oct 2004 17:19:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R0JH9l074763 for ; Tue, 26 Oct 2004 17:19:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R0JHo3026530 for ; Tue, 26 Oct 2004 17:19:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R0JHcg026529 for xorp-cvs@icir.org; Wed, 27 Oct 2004 00:19:17 GMT (envelope-from pavlin) Date: Wed, 27 Oct 2004 00:19:17 GMT From: Pavlin Radoslavov Message-Id: <200410270019.i9R0JHcg026529@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-27 00:19:17 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.hh Log message: Add a kdoc comment. Revision Changes Path 1.5 +5 -1 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 00:40:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 17:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R0f1Dx020510 for ; Tue, 26 Oct 2004 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R0f19l075027 for ; Tue, 26 Oct 2004 17:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R0f0N1014142; Tue, 26 Oct 2004 17:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R0ePN1014121 for ; Tue, 26 Oct 2004 17:40:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R0eP9l075018 for ; Tue, 26 Oct 2004 17:40:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R0ePFr026773 for ; Tue, 26 Oct 2004 17:40:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R0ePNH026772 for xorp-cvs@icir.org; Wed, 27 Oct 2004 00:40:25 GMT (envelope-from pavlin) Date: Wed, 27 Oct 2004 00:40:25 GMT From: Pavlin Radoslavov Message-Id: <200410270040.i9R0ePNH026772@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-27 00:40:25 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.hh Log message: Remove the ~NexthopPortMapperObserver pure virtual destructor, because it is not needed. Revision Changes Path 1.6 +1 -3 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 01:18:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 18:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R1J1hn027846 for ; Tue, 26 Oct 2004 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1J19l075368 for ; Tue, 26 Oct 2004 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1J0N1015200; Tue, 26 Oct 2004 18:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1IMN1015187 for ; Tue, 26 Oct 2004 18:18:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1IM9l075364 for ; Tue, 26 Oct 2004 18:18:22 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R1IMuY027098 for ; Tue, 26 Oct 2004 18:18:22 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R1IMmQ027097 for xorp-cvs@icir.org; Wed, 27 Oct 2004 01:18:22 GMT (envelope-from bms) Date: Wed, 27 Oct 2004 01:18:22 GMT From: Bruce Simpson Message-Id: <200410270118.i9R1IMmQ027097@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-27 01:18:22 UTC XORP CVS repository Modified files: fea test_rawsock4.cc Log message: Use IPv4::LOOPBACK(). Revision Changes Path 1.7 +3 -3 xorp/fea/test_rawsock4.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 01:19:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 18:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R1K2QL028060 for ; Tue, 26 Oct 2004 18:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1K19l075381 for ; Tue, 26 Oct 2004 18:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1K1N1015246; Tue, 26 Oct 2004 18:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1J2N1015213 for ; Tue, 26 Oct 2004 18:19:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1J29l075370 for ; Tue, 26 Oct 2004 18:19:02 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R1J2eH027141 for ; Tue, 26 Oct 2004 18:19:02 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R1J2DE027140 for xorp-cvs@icir.org; Wed, 27 Oct 2004 01:19:02 GMT (envelope-from bms) Date: Wed, 27 Oct 2004 01:19:02 GMT From: Bruce Simpson Message-Id: <200410270119.i9R1J2DE027140@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-27 01:19:02 UTC XORP CVS repository Modified files: fea click_socket.cc Log message: Use IPv4::LOOPBACK(). Revision Changes Path 1.3 +2 -2 xorp/fea/click_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 01:20:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 18:21:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R1L2UN028268 for ; Tue, 26 Oct 2004 18:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1L29l075410 for ; Tue, 26 Oct 2004 18:21:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1L1N1015280; Tue, 26 Oct 2004 18:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1KbN1015266 for ; Tue, 26 Oct 2004 18:20:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1Ka9l075406 for ; Tue, 26 Oct 2004 18:20:36 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R1KaO5027216 for ; Tue, 26 Oct 2004 18:20:36 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R1Ka9N027215 for xorp-cvs@icir.org; Wed, 27 Oct 2004 01:20:36 GMT (envelope-from bms) Date: Wed, 27 Oct 2004 01:20:36 GMT From: Bruce Simpson Message-Id: <200410270120.i9R1Ka9N027215@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-27 01:20:36 UTC XORP CVS repository Modified files: fea test_xrl_sockets4_udp.cc Log message: Use IPv4::LOOPBACK(). Revision Changes Path 1.7 +8 -10 xorp/fea/test_xrl_sockets4_udp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 01:21:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Oct 2004 18:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9R1M2Wu028480 for ; Tue, 26 Oct 2004 18:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1M29l075424 for ; Tue, 26 Oct 2004 18:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1M1N1015345; Tue, 26 Oct 2004 18:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9R1LtN1015333 for ; Tue, 26 Oct 2004 18:21:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9R1Lt9l075422 for ; Tue, 26 Oct 2004 18:21:55 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9R1Lth7027264 for ; Tue, 26 Oct 2004 18:21:55 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9R1LtGA027263 for xorp-cvs@icir.org; Wed, 27 Oct 2004 01:21:55 GMT (envelope-from bms) Date: Wed, 27 Oct 2004 01:21:55 GMT From: Bruce Simpson Message-Id: <200410270121.i9R1LtGA027263@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-27 01:21:55 UTC XORP CVS repository Modified files: libxipc finder_constants.hh Log message: Use IPv4::LOOPBACK(). Revision Changes Path 1.3 +2 -2 xorp/libxipc/finder_constants.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 21:43:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Oct 2004 14:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9RLi17q074460 for ; Wed, 27 Oct 2004 14:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9RLi19l088544 for ; Wed, 27 Oct 2004 14:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9RLi1N1021700; Wed, 27 Oct 2004 14:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9RLh3N1021668 for ; Wed, 27 Oct 2004 14:43:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9RLh39l088534 for ; Wed, 27 Oct 2004 14:43:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9RLh3WM039056 for ; Wed, 27 Oct 2004 14:43:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9RLh3RC039055 for xorp-cvs@icir.org; Wed, 27 Oct 2004 21:43:03 GMT (envelope-from pavlin) Date: Wed, 27 Oct 2004 21:43:03 GMT From: Pavlin Radoslavov Message-Id: <200410272143.i9RLh3RC039055@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-27 21:43:03 UTC XORP CVS repository Modified files: fea ifconfig_set_click.cc Log message: * Change the routing table element type from TrieIPLookup() to LinearIPLookup(). This change is temporary until the TrieIPLookup() implementation supports all appropriate handlers for adding/removing routing entries, etc. * Remove leftover debug stuff Revision Changes Path 1.3 +3 -15 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Wed Oct 27 21:45:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Oct 2004 14:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9RLk1Ef074964 for ; Wed, 27 Oct 2004 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9RLk19l088582 for ; Wed, 27 Oct 2004 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9RLk1N1021801; Wed, 27 Oct 2004 14:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9RLjhN1021785 for ; Wed, 27 Oct 2004 14:45:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9RLjh9l088580 for ; Wed, 27 Oct 2004 14:45:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9RLjhfj039176 for ; Wed, 27 Oct 2004 14:45:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9RLjgTl039175 for xorp-cvs@icir.org; Wed, 27 Oct 2004 21:45:42 GMT (envelope-from pavlin) Date: Wed, 27 Oct 2004 21:45:42 GMT From: Pavlin Radoslavov Message-Id: <200410272145.i9RLjgTl039175@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-27 21:45:42 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.hh fticonfig_entry_set_click.cc Log message: * Add FtiConfigEntrySetClick as an observer to the NexthopPortMapper * Initial implementation for adding/deleting Click routes (not tested yet). Revision Changes Path 1.12 +6 -2 xorp/fea/fticonfig_entry_set.hh 1.2 +199 -7 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Thu Oct 28 09:24:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 02:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9S9P1Xb020707 for ; Thu, 28 Oct 2004 02:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9S9P19l095152 for ; Thu, 28 Oct 2004 02:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9S9P1N1010659; Thu, 28 Oct 2004 02:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9S9OEN1010645 for ; Thu, 28 Oct 2004 02:24:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9S9OE9l095142 for ; Thu, 28 Oct 2004 02:24:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9S9OEYW066155 for ; Thu, 28 Oct 2004 02:24:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9S9OEON066154 for xorp-cvs@icir.org; Thu, 28 Oct 2004 09:24:14 GMT (envelope-from pavlin) Date: Thu, 28 Oct 2004 09:24:14 GMT From: Pavlin Radoslavov Message-Id: <200410280924.i9S9OEON066154@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-28 09:24:14 UTC XORP CVS repository Modified files: etc/templates rip.tp ripng.tp Log message: Temporary comment-out the new policy-based import/export and use the original mechanism until the policy-based config is fixed. Revision Changes Path 1.16 +12 -6 xorp/etc/templates/rip.tp 1.17 +13 -4 xorp/etc/templates/ripng.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Thu Oct 28 10:12:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 03:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9SAD1oW030396 for ; Thu, 28 Oct 2004 03:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SAD19l095693 for ; Thu, 28 Oct 2004 03:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SAD1N1011822; Thu, 28 Oct 2004 03:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SACNN1011806 for ; Thu, 28 Oct 2004 03:12:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SACN9l095689 for ; Thu, 28 Oct 2004 03:12:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9SACNIS066981 for ; Thu, 28 Oct 2004 03:12:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9SACNH6066980 for xorp-cvs@icir.org; Thu, 28 Oct 2004 10:12:23 GMT (envelope-from pavlin) Date: Thu, 28 Oct 2004 10:12:23 GMT From: Pavlin Radoslavov Message-Id: <200410281012.i9SACNH6066980@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-28 10:12:23 UTC XORP CVS repository Modified files: pim README Log message: Fix a typo: ALTERNATIVE_SUBNET -> ALTERNATIVE_SUBNETS Revision Changes Path 1.27 +3 -3 xorp/pim/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:51 2005 Subject: No subject Thu Oct 28 15:59:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 09:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9SG01L5099307 for ; Thu, 28 Oct 2004 09:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SG019l000589 for ; Thu, 28 Oct 2004 09:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SG01N1022054; Thu, 28 Oct 2004 09:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SFx9N1022031 for ; Thu, 28 Oct 2004 08:59:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SFx99l000567 for ; Thu, 28 Oct 2004 08:59:09 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9SFx9Ef071391 for ; Thu, 28 Oct 2004 08:59:09 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9SFx9ci071390 for xorp-cvs@icir.org; Thu, 28 Oct 2004 15:59:09 GMT (envelope-from atanu) Date: Thu, 28 Oct 2004 15:59:09 GMT From: Atanu Ghosh Message-Id: <200410281559.i9SFx9ci071390@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-28 15:59:09 UTC XORP CVS repository Modified files: libxorp ref_ptr.hh Log message: The check for is_empty() in the compact reference pointer was incorrect. Also fix a typo in a comment. Revision Changes Path 1.12 +4 -3 xorp/libxorp/ref_ptr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Thu Oct 28 23:24:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 16:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9SNP2nE006867 for ; Thu, 28 Oct 2004 16:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SNP19l005538 for ; Thu, 28 Oct 2004 16:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SNP1N1007312; Thu, 28 Oct 2004 16:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SNOZN1007288 for ; Thu, 28 Oct 2004 16:24:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SNOZ9l005530 for ; Thu, 28 Oct 2004 16:24:35 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9SNOZGf074728 for ; Thu, 28 Oct 2004 16:24:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9SNOZ1e074727 for xorp-cvs@icir.org; Thu, 28 Oct 2004 23:24:35 GMT (envelope-from atanu) Date: Thu, 28 Oct 2004 23:24:35 GMT From: Atanu Ghosh Message-Id: <200410282324.i9SNOZ1e074727@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-28 23:24:35 UTC XORP CVS repository Modified files: libxorp ref_ptr.hh Log message: Backout bogus fix. Revision Changes Path 1.13 +2 -3 xorp/libxorp/ref_ptr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Thu Oct 28 23:28:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 16:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9SNT1IF008051 for ; Thu, 28 Oct 2004 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SNT19l005573 for ; Thu, 28 Oct 2004 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SNT1N1007443; Thu, 28 Oct 2004 16:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9SNS9N1007423 for ; Thu, 28 Oct 2004 16:28:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9SNS99l005567 for ; Thu, 28 Oct 2004 16:28:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9SNS99U074812 for ; Thu, 28 Oct 2004 16:28:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9SNS9JK074811 for xorp-cvs@icir.org; Thu, 28 Oct 2004 23:28:09 GMT (envelope-from pavlin) Date: Thu, 28 Oct 2004 23:28:09 GMT From: Pavlin Radoslavov Message-Id: <200410282328.i9SNS9JK074811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-28 23:28:08 UTC XORP CVS repository Modified files: libxorp ref_ptr.hh Log message: Fix typos: refence -> reference Revision Changes Path 1.14 +4 -4 xorp/libxorp/ref_ptr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 01:00:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 18:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9T111ga029499 for ; Thu, 28 Oct 2004 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1119l006690 for ; Thu, 28 Oct 2004 18:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T111N1010429; Thu, 28 Oct 2004 18:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T10pN1010419 for ; Thu, 28 Oct 2004 18:00:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T10p9l006686 for ; Thu, 28 Oct 2004 18:00:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9T10pPb075555 for ; Thu, 28 Oct 2004 18:00:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9T10p0S075554 for xorp-cvs@icir.org; Fri, 29 Oct 2004 01:00:51 GMT (envelope-from atanu) Date: Fri, 29 Oct 2004 01:00:51 GMT From: Atanu Ghosh Message-Id: <200410290100.i9T10p0S075554@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-29 01:00:51 UTC XORP CVS repository Modified files: libxorp ref_ptr.hh Log message: Third attempt at fixing cref::is_empty(). Revision Changes Path 1.15 +2 -2 xorp/libxorp/ref_ptr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 01:10:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 18:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9T1B1Jk032030 for ; Thu, 28 Oct 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1B09l006913 for ; Thu, 28 Oct 2004 18:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1B0N1010673; Thu, 28 Oct 2004 18:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1A6N1010651 for ; Thu, 28 Oct 2004 18:10:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1A69l006878 for ; Thu, 28 Oct 2004 18:10:06 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9T1A6A1075741 for ; Thu, 28 Oct 2004 18:10:06 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9T1A6YL075740 for xorp-cvs@icir.org; Fri, 29 Oct 2004 01:10:06 GMT (envelope-from bms) Date: Fri, 29 Oct 2004 01:10:06 GMT From: Bruce Simpson Message-Id: <200410290110.i9T1A6YL075740@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-29 01:10:06 UTC XORP CVS repository Modified files: rib commands parser.hh parser_direct_cmds.hh rib.cc rib.hh test_register.cc Log message: Improve RIB regression testing in preparation for blackhole routes. Expand the RIB's verify_route() syntax to determine if a given destination has no route, has an IP family route, or has a route whose next-hop is a DiscardNextHop (i.e. is a blackhole route). As a pleasant side-effect, we eliminate the special-casing of the vifname field whereby we would check for a non-existent interface called 'discard'. This was also somewhat misleading as the condition being checked for was in fact the absence of a route for the given destination. Apply the following substitutions to the 'commands' script used to drive the RIB regression tests to make use of the new syntax: 1) verify becomes verify ip 2) ^route verify ip \([0-9.]*\) discard \(.*\) becomes route verify miss \1 lo0 0.0.0.0 0 Apply the following regexps to test_register.cc: 1) test_route_range("\([0-9.]*\)", \(.*\) becomes test_route_range("\1", "ip", \2 2) test_route_range("\([0-9.]*\)", "ip", "discard", \(.*\) becomes test_route_range("\1", "miss", "lo0", \2 Revision Changes Path 1.4 +165 -165 xorp/rib/commands 1.12 +10 -7 xorp/rib/parser.hh 1.14 +33 -5 xorp/rib/parser_direct_cmds.hh 1.41 +21 -6 xorp/rib/rib.cc 1.27 +17 -4 xorp/rib/rib.hh 1.18 +45 -23 xorp/rib/test_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 01:17:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 18:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9T1I1wf033848 for ; Thu, 28 Oct 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1I19l006992 for ; Thu, 28 Oct 2004 18:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1I1N1010854; Thu, 28 Oct 2004 18:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1HpN1010846 for ; Thu, 28 Oct 2004 18:17:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1Hp9l006988 for ; Thu, 28 Oct 2004 18:17:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9T1Hphd075851 for ; Thu, 28 Oct 2004 18:17:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9T1Hpvo075850 for xorp-cvs@icir.org; Fri, 29 Oct 2004 01:17:51 GMT (envelope-from pavlin) Date: Fri, 29 Oct 2004 01:17:51 GMT From: Pavlin Radoslavov Message-Id: <200410290117.i9T1Hpvo075850@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-29 01:17:51 UTC XORP CVS repository Modified files: libxorp ref_ptr.hh Log message: * Rename _M_counter to _M_index to reduce the level of naming confusion * Remove method counter(), because currently it is not really needed Revision Changes Path 1.16 +27 -30 xorp/libxorp/ref_ptr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 01:23:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 18:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9T1O1Rk035330 for ; Thu, 28 Oct 2004 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1O19l007075 for ; Thu, 28 Oct 2004 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1O1N1011011; Thu, 28 Oct 2004 18:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T1NWN1010973 for ; Thu, 28 Oct 2004 18:23:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T1NW9l007069 for ; Thu, 28 Oct 2004 18:23:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9T1NWPa076076 for ; Thu, 28 Oct 2004 18:23:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9T1NWeN076075 for xorp-cvs@icir.org; Fri, 29 Oct 2004 01:23:32 GMT (envelope-from pavlin) Date: Fri, 29 Oct 2004 01:23:32 GMT From: Pavlin Radoslavov Message-Id: <200410290123.i9T1NWeN076075@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-10-29 01:23:32 UTC XORP CVS repository Modified files: etc/templates bgp.tp rip.tp ripng.tp static_routes.tp Log message: Temporary comment-out the "depend policy" stuff until the policy-based config is fixed. Revision Changes Path 1.35 +6 -2 xorp/etc/templates/bgp.tp 1.17 +6 -2 xorp/etc/templates/rip.tp 1.18 +6 -2 xorp/etc/templates/ripng.tp 1.13 +6 -2 xorp/etc/templates/static_routes.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 06:04:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Oct 2004 23:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9T651ih097912 for ; Thu, 28 Oct 2004 23:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T6519l009787 for ; Thu, 28 Oct 2004 23:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T651N1017431; Thu, 28 Oct 2004 23:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9T64CN1017413 for ; Thu, 28 Oct 2004 23:04:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9T64C9l009782 for ; Thu, 28 Oct 2004 23:04:12 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9T64Ci8077969 for ; Thu, 28 Oct 2004 23:04:12 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9T64C7k077968 for xorp-cvs@icir.org; Fri, 29 Oct 2004 06:04:12 GMT (envelope-from bms) Date: Fri, 29 Oct 2004 06:04:12 GMT From: Bruce Simpson Message-Id: <200410290604.i9T64C7k077968@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-29 06:04:12 UTC XORP CVS repository Modified files: libfeaclient ifmgr_xrl_replicator.cc Log message: Fix a very subtle STL iterator reuse bug. Should fix test_remote_copy tinderbox failure when using gcc 3.4. Revision Changes Path 1.7 +2 -2 xorp/libfeaclient/ifmgr_xrl_replicator.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Fri Oct 29 23:04:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Oct 2004 16:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9TN51jB004899 for ; Fri, 29 Oct 2004 16:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9TN509l021518 for ; Fri, 29 Oct 2004 16:05:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9TN50N1017339; Fri, 29 Oct 2004 16:05:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9TN4MN1017309 for ; Fri, 29 Oct 2004 16:04:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9TN4M9l021512 for ; Fri, 29 Oct 2004 16:04:22 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9TN4MY8087586 for ; Fri, 29 Oct 2004 16:04:22 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9TN4MfF087585 for xorp-cvs@icir.org; Fri, 29 Oct 2004 23:04:22 GMT (envelope-from bms) Date: Fri, 29 Oct 2004 23:04:22 GMT From: Bruce Simpson Message-Id: <200410292304.i9TN4MfF087585@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-10-29 23:04:21 UTC XORP CVS repository Modified files: libfeaclient ifmgr_xrl_replicator.cc Log message: Note that the iterator i is no longer valid after erase and thus the original fix is good in principle; but that the assignment is unnecessary as we immediately return from the function. Reviewed by: atanu Revision Changes Path 1.8 +2 -2 xorp/libfeaclient/ifmgr_xrl_replicator.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:52 2005 Subject: No subject Sat Oct 30 00:20:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Oct 2004 17:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i9U0L108022787 for ; Fri, 29 Oct 2004 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9U0L19l022175 for ; Fri, 29 Oct 2004 17:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9U0L1N1019735; Fri, 29 Oct 2004 17:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i9U0KAN1019697 for ; Fri, 29 Oct 2004 17:20:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i9U0KA9l022167 for ; Fri, 29 Oct 2004 17:20:10 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id i9U0KAvK088205 for ; Fri, 29 Oct 2004 17:20:10 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id i9U0KASb088204 for xorp-cvs@icir.org; Sat, 30 Oct 2004 00:20:10 GMT (envelope-from atanu) Date: Sat, 30 Oct 2004 00:20:10 GMT From: Atanu Ghosh Message-Id: <200410300020.i9U0KASb088204@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-10-30 00:20:10 UTC XORP CVS repository Modified files: bgp bgp_trie.cc Log message: assert -> XLOG_ASSERT. Revision Changes Path 1.14 +5 -7 xorp/bgp/bgp_trie.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Mon Nov 1 21:48:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 01 Nov 2004 13:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA1Ln2Sb048803 for ; Mon, 1 Nov 2004 13:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA1Ln19l066816 for ; Mon, 1 Nov 2004 13:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA1Ln1N1003049; Mon, 1 Nov 2004 13:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA1Lm3N1003018 for ; Mon, 1 Nov 2004 13:48:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA1Lm39l066800 for ; Mon, 1 Nov 2004 13:48:03 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA1Lm3KD023736 for ; Mon, 1 Nov 2004 13:48:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA1Lm3SN023735 for xorp-cvs@icir.org; Mon, 1 Nov 2004 21:48:03 GMT (envelope-from atanu) Date: Mon, 1 Nov 2004 21:48:03 GMT From: Atanu Ghosh Message-Id: <200411012148.iA1Lm3SN023735@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-01 21:48:02 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: Erase iter only after its no longer referenced. Discovered by running a router with the MALLOC_OPTIONS=AJ. Revision Changes Path 1.39 +2 -2 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 14:01:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 06:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2E21Ye092275 for ; Tue, 2 Nov 2004 06:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2E219l077153 for ; Tue, 2 Nov 2004 06:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2E20N1005020; Tue, 2 Nov 2004 06:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2E1XN1005005 for ; Tue, 2 Nov 2004 06:01:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2E1X9l077140 for ; Tue, 2 Nov 2004 06:01:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2E1XQQ031889 for ; Tue, 2 Nov 2004 06:01:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2E1Xds031888 for xorp-cvs@icir.org; Tue, 2 Nov 2004 14:01:33 GMT (envelope-from pavlin) Date: Tue, 2 Nov 2004 14:01:33 GMT From: Pavlin Radoslavov Message-Id: <200411021401.iA2E1Xds031888@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-02 14:01:33 UTC XORP CVS repository Modified files: rib/tools show_routes.cc Log message: Unset the XRL command map methods on shutdown(). This fixes a coredump problem during cleanup on exit. Bug found by: Liang Qin Revision Changes Path 1.6 +4 -1 xorp/rib/tools/show_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 14:17:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 06:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2EI1gD095373 for ; Tue, 2 Nov 2004 06:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2EI19l077321 for ; Tue, 2 Nov 2004 06:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2EI1N1005507; Tue, 2 Nov 2004 06:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2EHiN1005492 for ; Tue, 2 Nov 2004 06:17:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2EHi9l077314 for ; Tue, 2 Nov 2004 06:17:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2EHiCG032098 for ; Tue, 2 Nov 2004 06:17:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2EHiEV032097 for xorp-cvs@icir.org; Tue, 2 Nov 2004 14:17:44 GMT (envelope-from pavlin) Date: Tue, 2 Nov 2004 14:17:44 GMT From: Pavlin Radoslavov Message-Id: <200411021417.iA2EHiEV032097@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-02 14:17:44 UTC XORP CVS repository Modified files: etc/templates rib.cmds Log message: Add more detailed help command info. Revision Changes Path 1.3 +21 -21 xorp/etc/templates/rib.cmds _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 14:33:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 06:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2EY1J4098531 for ; Tue, 2 Nov 2004 06:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2EY19l077521 for ; Tue, 2 Nov 2004 06:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2EY0N1006060; Tue, 2 Nov 2004 06:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2EX9N1006005 for ; Tue, 2 Nov 2004 06:33:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2EX99l077501 for ; Tue, 2 Nov 2004 06:33:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2EX8PV032257 for ; Tue, 2 Nov 2004 06:33:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2EX8gT032256 for xorp-cvs@icir.org; Tue, 2 Nov 2004 14:33:08 GMT (envelope-from pavlin) Date: Tue, 2 Nov 2004 14:33:08 GMT From: Pavlin Radoslavov Message-Id: <200411021433.iA2EX8gT032256@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-02 14:33:08 UTC XORP CVS repository Modified files: fea xrl_target.cc Log message: When lookup a route, set the return value of metric and admin_distance to the values from the Fte lookup entry. Revision Changes Path 1.52 +13 -17 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 22:46:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 14:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2Ml1ON012937 for ; Tue, 2 Nov 2004 14:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Ml19l084315 for ; Tue, 2 Nov 2004 14:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Ml1N1022790; Tue, 2 Nov 2004 14:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Mk6N1022752 for ; Tue, 2 Nov 2004 14:46:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mk69l084312 for ; Tue, 2 Nov 2004 14:46:06 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2Mk5BG038004 for ; Tue, 2 Nov 2004 14:46:05 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2Mk5Rm038003 for xorp-cvs@icir.org; Tue, 2 Nov 2004 22:46:05 GMT (envelope-from bms) Date: Tue, 2 Nov 2004 22:46:05 GMT From: Bruce Simpson Message-Id: <200411022246.iA2Mk5Rm038003@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-02 22:46:05 UTC XORP CVS repository Modified files: libxorp vif.cc vif.hh Log message: Add a new property to Vif, is_discard, which is used to flag that a Vif discards all forwarded packets. Discussed with: pavlin Revision Changes Path 1.12 +5 -1 xorp/libxorp/vif.cc 1.8 +17 -1 xorp/libxorp/vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 22:47:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 14:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2Mm14I013128 for ; Tue, 2 Nov 2004 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mm19l084332 for ; Tue, 2 Nov 2004 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Mm1N1022859; Tue, 2 Nov 2004 14:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2MltN1022849 for ; Tue, 2 Nov 2004 14:47:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mls9l084330 for ; Tue, 2 Nov 2004 14:47:54 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2MlsFs038074 for ; Tue, 2 Nov 2004 14:47:54 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2Mlsk2038073 for xorp-cvs@icir.org; Tue, 2 Nov 2004 22:47:54 GMT (envelope-from bms) Date: Tue, 2 Nov 2004 22:47:54 GMT From: Bruce Simpson Message-Id: <200411022247.iA2Mlsk2038073@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-02 22:47:54 UTC XORP CVS repository Modified files: rib rib.hh Log message: Tidy a comment. Revision Changes Path 1.28 +2 -2 xorp/rib/rib.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 22:51:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 14:52:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2Mq2k9019925 for ; Tue, 2 Nov 2004 14:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mq29l084382 for ; Tue, 2 Nov 2004 14:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Mq1N1023035; Tue, 2 Nov 2004 14:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Mp4N1023003 for ; Tue, 2 Nov 2004 14:51:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mp49l084372 for ; Tue, 2 Nov 2004 14:51:04 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2Mp4Xs038168 for ; Tue, 2 Nov 2004 14:51:04 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2Mp4HO038167 for xorp-cvs@icir.org; Tue, 2 Nov 2004 22:51:04 GMT (envelope-from bms) Date: Tue, 2 Nov 2004 22:51:04 GMT From: Bruce Simpson Message-Id: <200411022251.iA2Mp4HO038167@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-02 22:51:04 UTC XORP CVS repository Modified files: rib rib.cc Log message: Stub out the DiscardNextHop code which was introduced in rev 1.40 to RIB::verify_route(). This is only good for routes which forward traffic via unnumbered interfaces, which we don't currently support; to avoid refactoring much of the RIB code, we force the notion of discard routes to be implemented using numbered Vifs. Therefore, discard routes do not require to be treated as a special case; they may be treated like any other 'connected' route, i.e. one which directly references a Vif and does not require next-hop resolution. Add some explanatory comments and stubbed-out code for the future DiscardNextHop case (likely to be renamed to UnnumberedNextHop or InterfaceNextHop) in RIB::lookup_route(). Discussed with: pavlin Revision Changes Path 1.42 +24 -3 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 22:52:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 14:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2Mr15G027585 for ; Tue, 2 Nov 2004 14:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Mr19l084394 for ; Tue, 2 Nov 2004 14:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Mr1N1023086; Tue, 2 Nov 2004 14:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2MqFN1023059 for ; Tue, 2 Nov 2004 14:52:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2MqF9l084388 for ; Tue, 2 Nov 2004 14:52:15 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2MqEM3038232 for ; Tue, 2 Nov 2004 14:52:14 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2MqEZ2038231 for xorp-cvs@icir.org; Tue, 2 Nov 2004 22:52:14 GMT (envelope-from bms) Date: Tue, 2 Nov 2004 22:52:14 GMT From: Bruce Simpson Message-Id: <200411022252.iA2MqEZ2038231@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-02 22:52:14 UTC XORP CVS repository Modified files: rib parser.hh parser_direct_cmds.hh test_rib_direct.cc test_rib_xrls.cc Log message: Add new methods to the direct and XRL test interface which are able to create loopback Vifs and discard Vifs. Discussed with: pavlin Revision Changes Path 1.13 +31 -1 xorp/rib/parser.hh 1.15 +43 -1 xorp/rib/parser_direct_cmds.hh 1.15 +4 -1 xorp/rib/test_rib_direct.cc 1.37 +3 -1 xorp/rib/test_rib_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 23:15:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 15:16:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2NG1AF061396 for ; Tue, 2 Nov 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2NG19l084651 for ; Tue, 2 Nov 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2NG1N1024107; Tue, 2 Nov 2004 15:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2NFNN1024080 for ; Tue, 2 Nov 2004 15:15:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2NFN9l084648 for ; Tue, 2 Nov 2004 15:15:23 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2NFNMZ038718 for ; Tue, 2 Nov 2004 15:15:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2NFNZY038717 for xorp-cvs@icir.org; Tue, 2 Nov 2004 23:15:23 GMT (envelope-from atanu) Date: Tue, 2 Nov 2004 23:15:23 GMT From: Atanu Ghosh Message-Id: <200411022315.iA2NFNZY038717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-02 23:15:23 UTC XORP CVS repository Modified files: libproto Makefile.am Makefile.in Added files: libproto spt.cc spt.hh spt_graph1 test_spt.cc Log message: Shortest Path Tree. Revision Changes Path 1.7 +9 -4 xorp/libproto/Makefile.am 1.19 +21 -10 xorp/libproto/Makefile.in 1.1 +642 -0 xorp/libproto/spt.cc (new) 1.1 +451 -0 xorp/libproto/spt.hh (new) 1.1 +15 -0 xorp/libproto/spt_graph1 (new) 1.1 +512 -0 xorp/libproto/test_spt.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:53 2005 Subject: No subject Tue Nov 2 23:39:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 15:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA2Ne2uL081265 for ; Tue, 2 Nov 2004 15:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Ne19l084914 for ; Tue, 2 Nov 2004 15:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2Ne1N1025075; Tue, 2 Nov 2004 15:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA2NddN1025059 for ; Tue, 2 Nov 2004 15:39:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA2Ndc9l084903 for ; Tue, 2 Nov 2004 15:39:38 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA2NdcUl039085 for ; Tue, 2 Nov 2004 15:39:38 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA2NdcFx039084 for xorp-cvs@icir.org; Tue, 2 Nov 2004 23:39:38 GMT (envelope-from bms) Date: Tue, 2 Nov 2004 23:39:38 GMT From: Bruce Simpson Message-Id: <200411022339.iA2NdcFx039084@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-02 23:39:38 UTC XORP CVS repository Modified files: rib parser.hh parser_direct_cmds.hh test_rib_direct.cc test_rib_xrls.cc Log message: Add a new command to the RIB's direct test interface, 'route vifadd', to add a new route whilst specifying the name of the Vif it is bound to. Revision Changes Path 1.14 +20 -1 xorp/rib/parser.hh 1.16 +16 -1 xorp/rib/parser_direct_cmds.hh 1.16 +2 -1 xorp/rib/test_rib_direct.cc 1.38 +2 -1 xorp/rib/test_rib_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 00:18:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 16:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA30J1FJ089954 for ; Tue, 2 Nov 2004 16:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30J19l085373 for ; Tue, 2 Nov 2004 16:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30J1N1026438; Tue, 2 Nov 2004 16:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30IvN1026423 for ; Tue, 2 Nov 2004 16:18:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30Iv9l085371 for ; Tue, 2 Nov 2004 16:18:57 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA30Ivo1039592 for ; Tue, 2 Nov 2004 16:18:57 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA30IvZS039591 for xorp-cvs@icir.org; Wed, 3 Nov 2004 00:18:57 GMT (envelope-from bms) Date: Wed, 3 Nov 2004 00:18:57 GMT From: Bruce Simpson Message-Id: <200411030018.iA30IvZS039591@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-03 00:18:57 UTC XORP CVS repository Modified files: libxorp test_vif.cc Log message: Add regression test for discard flag. Revision Changes Path 1.6 +9 -1 xorp/libxorp/test_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 00:23:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 16:24:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA30O29d090945 for ; Tue, 2 Nov 2004 16:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30O29l085435 for ; Tue, 2 Nov 2004 16:24:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30O1N1026647; Tue, 2 Nov 2004 16:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30NsN1026635 for ; Tue, 2 Nov 2004 16:23:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30Nr9l085433 for ; Tue, 2 Nov 2004 16:23:53 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA30Nr9S039875 for ; Tue, 2 Nov 2004 16:23:53 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA30NrCI039874 for xorp-cvs@icir.org; Wed, 3 Nov 2004 00:23:53 GMT (envelope-from atanu) Date: Wed, 3 Nov 2004 00:23:53 GMT From: Atanu Ghosh Message-Id: <200411030023.iA30NrCI039874@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-03 00:23:53 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: Only if there is a module associated with a task should we attempt to shut it down. The module_name can be empty so add some asserts and make it obvious in debugging output that the module_name is empty. Revision Changes Path 1.40 +10 -4 xorp/rtrmgr/task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 00:27:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 02 Nov 2004 16:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA30S2QT091757 for ; Tue, 2 Nov 2004 16:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30S19l085492 for ; Tue, 2 Nov 2004 16:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30S1N1026828; Tue, 2 Nov 2004 16:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA30RBN1026780 for ; Tue, 2 Nov 2004 16:27:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA30RB9l085488 for ; Tue, 2 Nov 2004 16:27:11 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA30RB3b039966 for ; Tue, 2 Nov 2004 16:27:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA30RBLp039965 for xorp-cvs@icir.org; Wed, 3 Nov 2004 00:27:11 GMT (envelope-from atanu) Date: Wed, 3 Nov 2004 00:27:11 GMT From: Atanu Ghosh Message-Id: <200411030027.iA30RBLp039965@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-03 00:27:11 UTC XORP CVS repository Modified files: libproto spt.cc Log message: When removing a node make sure all references to other nodes are removed. Revision Changes Path 1.2 +3 -1 xorp/libproto/spt.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 20:53:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 12:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3Ks2ig033070 for ; Wed, 3 Nov 2004 12:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3Ks19l099603 for ; Wed, 3 Nov 2004 12:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3Ks1N1005171; Wed, 3 Nov 2004 12:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3KrFN1005149 for ; Wed, 3 Nov 2004 12:53:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3KrF9l099601 for ; Wed, 3 Nov 2004 12:53:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3KrExG051718 for ; Wed, 3 Nov 2004 12:53:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3KrE0T051717 for xorp-cvs@icir.org; Wed, 3 Nov 2004 20:53:14 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 20:53:14 GMT From: Pavlin Radoslavov Message-Id: <200411032053.iA3KrE0T051717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 20:53:14 UTC XORP CVS repository Modified files: mrt mrt.hh Log message: Compilation fix for gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.8 +3 -1 xorp/mrt/mrt.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 21:37:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 13:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3Lc1g3041614 for ; Wed, 3 Nov 2004 13:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3Lc19l000158 for ; Wed, 3 Nov 2004 13:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3Lc1N1006451; Wed, 3 Nov 2004 13:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3Lb9N1006424 for ; Wed, 3 Nov 2004 13:37:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3Lb99l000154 for ; Wed, 3 Nov 2004 13:37:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3Lb9s6052103 for ; Wed, 3 Nov 2004 13:37:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3Lb9wS052102 for xorp-cvs@icir.org; Wed, 3 Nov 2004 21:37:09 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 21:37:09 GMT From: Pavlin Radoslavov Message-Id: <200411032137.iA3Lb9wS052102@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 21:37:09 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.hh Log message: Const-ify "operator==" Revision Changes Path 1.10 +2 -2 xorp/fib2mrib/fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 21:40:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 13:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3Lf104042203 for ; Wed, 3 Nov 2004 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3Lf19l000213 for ; Wed, 3 Nov 2004 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3Lf0N1006558; Wed, 3 Nov 2004 13:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3LeMN1006533 for ; Wed, 3 Nov 2004 13:40:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3LeL9l000205 for ; Wed, 3 Nov 2004 13:40:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3LeL63052178 for ; Wed, 3 Nov 2004 13:40:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3LeL8H052177 for xorp-cvs@icir.org; Wed, 3 Nov 2004 21:40:21 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 21:40:21 GMT From: Pavlin Radoslavov Message-Id: <200411032140.iA3LeL8H052177@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 21:40:21 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc Log message: Bug fix: map<...>::const_operator -> multimap<...>::const_operator to reflact the fact that the map that has been used in earlier version of the code has become a multimap later. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.13 +4 -4 xorp/fib2mrib/fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 21:42:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 13:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3Lh1ba042588 for ; Wed, 3 Nov 2004 13:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3Lh09l000242 for ; Wed, 3 Nov 2004 13:43:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3Lh0N1006642; Wed, 3 Nov 2004 13:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3LgTN1006628 for ; Wed, 3 Nov 2004 13:42:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3LgS9l000235 for ; Wed, 3 Nov 2004 13:42:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3LgS3Y052281 for ; Wed, 3 Nov 2004 13:42:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3LgS0T052280 for xorp-cvs@icir.org; Wed, 3 Nov 2004 21:42:28 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 21:42:28 GMT From: Pavlin Radoslavov Message-Id: <200411032142.iA3LgS0T052280@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 21:42:28 UTC XORP CVS repository Modified files: libproto spt.hh Log message: Nit: __IGP_SPT_HH__ -> __LIBPROTO_SPT_HH__ to reflect the path to that header file. Revision Changes Path 1.2 +4 -4 xorp/libproto/spt.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 22:18:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 14:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3MJ1h4049613 for ; Wed, 3 Nov 2004 14:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MJ19l000636 for ; Wed, 3 Nov 2004 14:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MJ1N1007908; Wed, 3 Nov 2004 14:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MI1N1007863 for ; Wed, 3 Nov 2004 14:18:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MI19l000627 for ; Wed, 3 Nov 2004 14:18:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3MI17p052847 for ; Wed, 3 Nov 2004 14:18:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3MI1RD052846 for xorp-cvs@icir.org; Wed, 3 Nov 2004 22:18:01 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 22:18:01 GMT From: Pavlin Radoslavov Message-Id: <200411032218.iA3MI1RD052846@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 22:18:01 UTC XORP CVS repository Modified files: rib rib.cc rib.hh Log message: Replace "map" with "map", because the "const" classifier to the key is redundant. Previously, in some places there was mismatch between the usage of the "const" classifier in the declaration of the map, and the declaration of an iterator for that map. Hence, the above replacement also fixes a compilation error when gcc34 is run with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.43 +17 -17 xorp/rib/rib.cc 1.29 +7 -7 xorp/rib/rib.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 22:19:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 14:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3MK1jT049834 for ; Wed, 3 Nov 2004 14:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MK19l000664 for ; Wed, 3 Nov 2004 14:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MK1N1007958; Wed, 3 Nov 2004 14:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MJDN1007927 for ; Wed, 3 Nov 2004 14:19:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MJD9l000644 for ; Wed, 3 Nov 2004 14:19:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3MJDGb052929 for ; Wed, 3 Nov 2004 14:19:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3MJDKK052928 for xorp-cvs@icir.org; Wed, 3 Nov 2004 22:19:13 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 22:19:13 GMT From: Pavlin Radoslavov Message-Id: <200411032219.iA3MJDKK052928@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 22:19:13 UTC XORP CVS repository Modified files: rib rt_tab_extint.cc Log message: Compilation fix: map -> multimap in the declaration of a multimap iterator. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.21 +3 -3 xorp/rib/rt_tab_extint.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 22:20:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 14:21:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3ML0J0050044 for ; Wed, 3 Nov 2004 14:21:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3ML09l000699 for ; Wed, 3 Nov 2004 14:21:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3ML0N1008005; Wed, 3 Nov 2004 14:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MK8N1007970 for ; Wed, 3 Nov 2004 14:20:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MK89l000687 for ; Wed, 3 Nov 2004 14:20:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3MK8cM053010 for ; Wed, 3 Nov 2004 14:20:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3MK8iQ053009 for xorp-cvs@icir.org; Wed, 3 Nov 2004 22:20:08 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 22:20:08 GMT From: Pavlin Radoslavov Message-Id: <200411032220.iA3MK8iQ053009@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 22:20:08 UTC XORP CVS repository Modified files: rib rt_tab_register.hh Log message: Compilation fix: add missing set comparison method in the declaration of a set iterator. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.13 +4 -4 xorp/rib/rt_tab_register.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:54 2005 Subject: No subject Wed Nov 3 22:23:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 14:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3MO1Ys050640 for ; Wed, 3 Nov 2004 14:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MO19l000747 for ; Wed, 3 Nov 2004 14:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MO1N1008176; Wed, 3 Nov 2004 14:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MNsN1008159 for ; Wed, 3 Nov 2004 14:23:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MNs9l000745 for ; Wed, 3 Nov 2004 14:23:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3MNslt053099 for ; Wed, 3 Nov 2004 14:23:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3MNs6R053098 for xorp-cvs@icir.org; Wed, 3 Nov 2004 22:23:54 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 22:23:54 GMT From: Pavlin Radoslavov Message-Id: <200411032223.iA3MNs6R053098@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 22:23:54 UTC XORP CVS repository Modified files: . configure configure.in Log message: Increase the maximum instantiation depth for template classes from 20 to 22. This increase is needed to fix a compilation problem when we use gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG The particular place that requires the above increase is inside libfeaclient/test_local_copy.cc when we test copying of fMgrIfTree: // Test Naive copy IfMgrIfTree u = t; Revision Changes Path 1.128 +1 -1 xorp/configure 1.121 +2 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Wed Nov 3 22:30:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 14:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA3MV1lP052006 for ; Wed, 3 Nov 2004 14:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MV19l000835 for ; Wed, 3 Nov 2004 14:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MV1N1008400; Wed, 3 Nov 2004 14:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA3MU2N1008372 for ; Wed, 3 Nov 2004 14:30:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA3MU29l000810 for ; Wed, 3 Nov 2004 14:30:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA3MU2o5053193 for ; Wed, 3 Nov 2004 14:30:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA3MU2F5053192 for xorp-cvs@icir.org; Wed, 3 Nov 2004 22:30:02 GMT (envelope-from pavlin) Date: Wed, 3 Nov 2004 22:30:02 GMT From: Pavlin Radoslavov Message-Id: <200411032230.iA3MU2F5053192@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-03 22:30:02 UTC XORP CVS repository Modified files: bgp attribute_manager.cc Log message: Fix the declaration of a set iterator to correspond to the declaration of the set itself. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.7 +3 -3 xorp/bgp/attribute_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 01:30:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 17:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA41V1cC088332 for ; Wed, 3 Nov 2004 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41V19l002600 for ; Wed, 3 Nov 2004 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41V1N1014660; Wed, 3 Nov 2004 17:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41UhN1014645 for ; Wed, 3 Nov 2004 17:30:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41Ug9l002597 for ; Wed, 3 Nov 2004 17:30:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA41UgVP054555 for ; Wed, 3 Nov 2004 17:30:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA41UgQW054554 for xorp-cvs@icir.org; Thu, 4 Nov 2004 01:30:42 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 01:30:42 GMT From: Pavlin Radoslavov Message-Id: <200411040130.iA41UgQW054554@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 01:30:42 UTC XORP CVS repository Modified files: bgp route_table_deletion.hh Log message: Fix the declaration of a map iterator to correspond to the declaration of the map itself. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.15 +2 -2 xorp/bgp/route_table_deletion.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 01:33:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 17:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA41Y2x5088922 for ; Wed, 3 Nov 2004 17:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41Y29l002626 for ; Wed, 3 Nov 2004 17:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41Y1N1014794; Wed, 3 Nov 2004 17:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41XaN1014734 for ; Wed, 3 Nov 2004 17:33:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41Xa9l002621 for ; Wed, 3 Nov 2004 17:33:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA41Xaqj054610 for ; Wed, 3 Nov 2004 17:33:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA41Xaa6054609 for xorp-cvs@icir.org; Thu, 4 Nov 2004 01:33:36 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 01:33:36 GMT From: Pavlin Radoslavov Message-Id: <200411040133.iA41Xaa6054609@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 01:33:36 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: Fix the declaration of a container iterator to correspond to the declaration of the container itself. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.40 +2 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 01:36:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 17:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA41b1UR089519 for ; Wed, 3 Nov 2004 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41b19l002669 for ; Wed, 3 Nov 2004 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41b1N1014907; Wed, 3 Nov 2004 17:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA41aVN1014864 for ; Wed, 3 Nov 2004 17:36:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA41aV9l002667 for ; Wed, 3 Nov 2004 17:36:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA41aVWn054675 for ; Wed, 3 Nov 2004 17:36:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA41aVPq054674 for xorp-cvs@icir.org; Thu, 4 Nov 2004 01:36:31 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 01:36:31 GMT From: Pavlin Radoslavov Message-Id: <200411040136.iA41aVPq054674@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 01:36:31 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: Fix the declaration of a container iterator to correspond to the declaration of the container itself. This bug has been revealed by running gcc34 with the following compilation flags: ALLOC_OPTIONS=AJ CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.41 +2 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 06:59:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 03 Nov 2004 23:00:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4702mx051967 for ; Wed, 3 Nov 2004 23:00:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA47019l005558 for ; Wed, 3 Nov 2004 23:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4701N1023559; Wed, 3 Nov 2004 23:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA46x0N1023535 for ; Wed, 3 Nov 2004 22:59:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA46x09l005542 for ; Wed, 3 Nov 2004 22:59:00 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA46x0iu056861 for ; Wed, 3 Nov 2004 22:59:00 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA46x0MB056860 for xorp-cvs@icir.org; Thu, 4 Nov 2004 06:59:00 GMT (envelope-from bms) Date: Thu, 4 Nov 2004 06:59:00 GMT From: Bruce Simpson Message-Id: <200411040659.iA46x0MB056860@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-04 06:59:00 UTC XORP CVS repository Modified files: bgp route_table_ribout.cc Log message: Remove an unnecessary cached iterator. i2 is assigned to the current value of i, then i is incremented. The element pointed to by the i2 iterator is then erased. Also: Delete a pointed-to element before erasing its pointer which is held in a sequenced container, as the iterator will then be invalid. This code is marked unreachable, so this fix does nothing, but will stop us from tripping over this in future bug sweeps. Glanced at by: mark, pavlin Revision Changes Path 1.20 +3 -5 xorp/bgp/route_table_ribout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 09:01:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 01:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4921qv076556 for ; Thu, 4 Nov 2004 01:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA49219l006775 for ; Thu, 4 Nov 2004 01:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4921N1026799; Thu, 4 Nov 2004 01:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA491eN1026781 for ; Thu, 4 Nov 2004 01:01:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA491d9l006769 for ; Thu, 4 Nov 2004 01:01:39 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA491dst058138 for ; Thu, 4 Nov 2004 01:01:39 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA491dse058137 for xorp-cvs@icir.org; Thu, 4 Nov 2004 09:01:39 GMT (envelope-from bms) Date: Thu, 4 Nov 2004 09:01:39 GMT From: Bruce Simpson Message-Id: <200411040901.iA491dse058137@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-04 09:01:39 UTC XORP CVS repository Modified files: libxorp vif.cc Log message: Update Vif's operator== to include discard-ness. Revision Changes Path 1.13 +2 -1 xorp/libxorp/vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 21:52:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 13:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4Lr18n037347 for ; Thu, 4 Nov 2004 13:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4Lr19l017339 for ; Thu, 4 Nov 2004 13:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4Lr1N1022691; Thu, 4 Nov 2004 13:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4LqmN1022666 for ; Thu, 4 Nov 2004 13:52:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4Lqm9l017330 for ; Thu, 4 Nov 2004 13:52:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA4Lqm3p067673 for ; Thu, 4 Nov 2004 13:52:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA4Lqm1X067672 for xorp-cvs@icir.org; Thu, 4 Nov 2004 21:52:48 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 21:52:48 GMT From: Pavlin Radoslavov Message-Id: <200411042152.iA4Lqm1X067672@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 21:52:48 UTC XORP CVS repository Modified files: libxipc finder.hh Log message: A nit: add an extra space. Revision Changes Path 1.16 +2 -2 xorp/libxipc/finder.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:55 2005 Subject: No subject Thu Nov 4 21:54:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 13:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4Lt1J0037781 for ; Thu, 4 Nov 2004 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4Lt19l017380 for ; Thu, 4 Nov 2004 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4Lt1N1022770; Thu, 4 Nov 2004 13:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4LshN1022761 for ; Thu, 4 Nov 2004 13:54:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4Lsg9l017375 for ; Thu, 4 Nov 2004 13:54:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA4Lsger067784 for ; Thu, 4 Nov 2004 13:54:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA4LsgSl067783 for xorp-cvs@icir.org; Thu, 4 Nov 2004 21:54:42 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 21:54:42 GMT From: Pavlin Radoslavov Message-Id: <200411042154.iA4LsgSl067783@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 21:54:42 UTC XORP CVS repository Modified files: libxipc finder.cc Log message: Bug fix: explicitly check that the iterator for a container is not equal to end() before attempting to reference that iterator. This bug has been revealed by running gcc34 with the following compilation flags: CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.16 +9 -7 xorp/libxipc/finder.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Thu Nov 4 22:11:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 14:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4MC1Jd041307 for ; Thu, 4 Nov 2004 14:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4MC19l017604 for ; Thu, 4 Nov 2004 14:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4MC1N1023409; Thu, 4 Nov 2004 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4MBhN1023395 for ; Thu, 4 Nov 2004 14:11:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4MBh9l017600 for ; Thu, 4 Nov 2004 14:11:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA4MBhmc068206 for ; Thu, 4 Nov 2004 14:11:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA4MBhV9068205 for xorp-cvs@icir.org; Thu, 4 Nov 2004 22:11:43 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 22:11:43 GMT From: Pavlin Radoslavov Message-Id: <200411042211.iA4MBhV9068205@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 22:11:43 UTC XORP CVS repository Modified files: libxipc test_xrl_args.cc Log message: Bug fix: increase the size of a pre-allocated vector with 1. Otherwise, if the vector size is 0, then we cannot refer to its first element by &buf[0] This bug has been revealed by running gcc34 with the following compilation flags: CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.7 +2 -2 xorp/libxipc/test_xrl_args.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Thu Nov 4 22:19:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 14:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA4MK1xN043103 for ; Thu, 4 Nov 2004 14:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4MK19l017685 for ; Thu, 4 Nov 2004 14:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4MK1N1023728; Thu, 4 Nov 2004 14:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA4MJWN1023712 for ; Thu, 4 Nov 2004 14:19:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA4MJW9l017677 for ; Thu, 4 Nov 2004 14:19:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA4MJWXn068302 for ; Thu, 4 Nov 2004 14:19:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA4MJWUS068301 for xorp-cvs@icir.org; Thu, 4 Nov 2004 22:19:32 GMT (envelope-from pavlin) Date: Thu, 4 Nov 2004 22:19:32 GMT From: Pavlin Radoslavov Message-Id: <200411042219.iA4MJWUS068301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-04 22:19:32 UTC XORP CVS repository Modified files: libxipc finder.cc Log message: Bug fix: explicitly check whether a container is empty before attempting to use its front() This bug has been revealed by running gcc34 with the following compilation flags: CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.17 +2 -2 xorp/libxipc/finder.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:47:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50m1FN078264 for ; Thu, 4 Nov 2004 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50m19l019384 for ; Thu, 4 Nov 2004 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50m0N1029546; Thu, 4 Nov 2004 16:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50lIN1029513 for ; Thu, 4 Nov 2004 16:47:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50lI9l019377 for ; Thu, 4 Nov 2004 16:47:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50lHK3069555 for ; Thu, 4 Nov 2004 16:47:17 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50lHrp069554 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:47:17 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:47:17 GMT From: Bruce Simpson Message-Id: <200411050047.iA50lHrp069554@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:47:17 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc routing_socket_utils.cc Log message: Catch up with the removal of the discard property from Fte. Note that mapping a discard route back to XORP's notion of one (a route which specifies a IfTreeInterface with soft and discard properties set) will require a back-pointer to the IfTree. Revision Changes Path 1.18 +4 -4 xorp/fea/netlink_socket_utils.cc 1.20 +7 -6 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:47:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:48:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50m31Y078291 for ; Thu, 4 Nov 2004 16:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50m39l019386 for ; Thu, 4 Nov 2004 16:48:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50m3N1029557; Thu, 4 Nov 2004 16:48:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50lRN1029518 for ; Thu, 4 Nov 2004 16:47:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50lR9l019379 for ; Thu, 4 Nov 2004 16:47:27 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50lRpQ069590 for ; Thu, 4 Nov 2004 16:47:27 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50lROd069589 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:47:27 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:47:27 GMT From: Bruce Simpson Message-Id: <200411050047.iA50lROd069589@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:47:27 UTC XORP CVS repository Modified files: fea fte.hh Log message: Remove the discard property from forwarding table entries. This is now determined by whether a route points to a discard interface or not. Revision Changes Path 1.12 +5 -12 xorp/fea/fte.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:47:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:48:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50m49N078314 for ; Thu, 4 Nov 2004 16:48:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50m49l019390 for ; Thu, 4 Nov 2004 16:48:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50m3N1029569; Thu, 4 Nov 2004 16:48:04 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50lhN1029532 for ; Thu, 4 Nov 2004 16:47:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50lh9l019382 for ; Thu, 4 Nov 2004 16:47:43 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50lhvu069631 for ; Thu, 4 Nov 2004 16:47:43 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50lhXS069630 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:47:43 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:47:43 GMT From: Bruce Simpson Message-Id: <200411050047.iA50lhXS069630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:47:43 UTC XORP CVS repository Modified files: fea fea.cc fticonfig.cc fticonfig.hh test_mfea.cc Log message: Expose the IfTree to FtiConfig, as platform-specific code may need to directly inspect the interfaces referenced by name in forwarding table entries. Revision Changes Path 1.38 +9 -9 xorp/fea/fea.cc 1.30 +3 -2 xorp/fea/fticonfig.cc 1.23 +11 -2 xorp/fea/fticonfig.hh 1.14 +9 -9 xorp/fea/test_mfea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:48:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:49:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50n0Vx078505 for ; Thu, 4 Nov 2004 16:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50n09l019412 for ; Thu, 4 Nov 2004 16:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50n0N1029614; Thu, 4 Nov 2004 16:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50m3N1029568 for ; Thu, 4 Nov 2004 16:48:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50m39l019388 for ; Thu, 4 Nov 2004 16:48:03 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50m3q9069668 for ; Thu, 4 Nov 2004 16:48:03 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50m3U2069667 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:48:03 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:48:03 GMT From: Bruce Simpson Message-Id: <200411050048.iA50m3U2069667@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:48:03 UTC XORP CVS repository Modified files: fea ifconfig_set.cc iftree.hh Log message: Add a 'soft item' property to IfTreeItems. An item with this property set should never be pushed as it exists solely within software (i.e. the FEA) or is emulated by other means. Revision Changes Path 1.17 +5 -1 xorp/fea/ifconfig_set.cc 1.23 +11 -1 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:48:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50n1VD078520 for ; Thu, 4 Nov 2004 16:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50n19l019414 for ; Thu, 4 Nov 2004 16:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50n1N1029625; Thu, 4 Nov 2004 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50mJN1029585 for ; Thu, 4 Nov 2004 16:48:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50mJ9l019400 for ; Thu, 4 Nov 2004 16:48:19 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50mIwV069703 for ; Thu, 4 Nov 2004 16:48:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50mIAr069702 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:48:18 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:48:18 GMT From: Bruce Simpson Message-Id: <200411050048.iA50mIAr069702@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:48:18 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc Log message: Enable the code which pushes blackhole routes to the Linux kernel forwarding plane. Do not add the output interface as an attribute to such routes. Revision Changes Path 1.14 +11 -10 xorp/fea/fticonfig_entry_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 00:48:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 16:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA50n2rN078535 for ; Thu, 4 Nov 2004 16:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50n29l019416 for ; Thu, 4 Nov 2004 16:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50n2N1029636; Thu, 4 Nov 2004 16:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA50mXN1029594 for ; Thu, 4 Nov 2004 16:48:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA50mW9l019404 for ; Thu, 4 Nov 2004 16:48:32 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA50mWBR069751 for ; Thu, 4 Nov 2004 16:48:32 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA50mW6G069750 for xorp-cvs@icir.org; Fri, 5 Nov 2004 00:48:32 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 00:48:32 GMT From: Bruce Simpson Message-Id: <200411050048.iA50mW6G069750@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 00:48:32 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: Enable the code which pushes blackhole routes to the BSD kernel forwarding plane. Always rewrite the next-hop to point to the system's default loopback interface. Revision Changes Path 1.21 +10 -10 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:56 2005 Subject: No subject Fri Nov 5 01:27:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51S1GA086193 for ; Thu, 4 Nov 2004 17:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51S19l019825 for ; Thu, 4 Nov 2004 17:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51S1N1000941; Thu, 4 Nov 2004 17:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51RsN1000930 for ; Thu, 4 Nov 2004 17:27:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51Rs9l019823 for ; Thu, 4 Nov 2004 17:27:54 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51RsDC070110 for ; Thu, 4 Nov 2004 17:27:54 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51Rsjw070109 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:27:54 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 01:27:54 GMT From: Bruce Simpson Message-Id: <200411050127.iA51Rsjw070109@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 01:27:54 UTC XORP CVS repository Modified files: fea fticonfig_entry_parse_rtm.cc fticonfig_table_parse_rtm.cc routing_socket_utils.cc routing_socket_utils.hh Log message: Attempt to map RTF_BLACKHOLE routes back to the FEA's notion of a software discard interface, when the kernel notifies us about one. If we can't, log an appropriate mesage, and ignore the route notification. Note that RtmUtils::rtm_get_to_fte_cfg now needs to see the FEA's IfTree, so expose it and update function signatures accordingly. Revision Changes Path 1.7 +2 -2 xorp/fea/fticonfig_entry_parse_rtm.cc 1.10 +2 -2 xorp/fea/fticonfig_table_parse_rtm.cc 1.21 +32 -6 xorp/fea/routing_socket_utils.cc 1.6 +5 -2 xorp/fea/routing_socket_utils.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 01:35:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51a1od087783 for ; Thu, 4 Nov 2004 17:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51a19l019929 for ; Thu, 4 Nov 2004 17:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51a1N1001217; Thu, 4 Nov 2004 17:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51ZNN1001189 for ; Thu, 4 Nov 2004 17:35:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51ZN9l019921 for ; Thu, 4 Nov 2004 17:35:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51ZNMK070332 for ; Thu, 4 Nov 2004 17:35:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51ZN7f070331 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:35:23 GMT (envelope-from pavlin) Date: Fri, 5 Nov 2004 01:35:23 GMT From: Pavlin Radoslavov Message-Id: <200411050135.iA51ZN7f070331@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-05 01:35:23 UTC XORP CVS repository Modified files: bgp peer_route_pair.hh Log message: Bug fix: Add a copy constructor for PeerTableInfo that assigns _posn only if _has_queued_data is true. Previously, the compiler auto-generated the copy constructor, and if the iterator other._posn was unassigned, then the run-time STL check didn't like it. This bug has been revealed by running "./isolation_tests" when compiled with gcc34 with the following compilation flags: CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.8 +13 -1 xorp/bgp/peer_route_pair.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 01:37:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51c1D5088186 for ; Thu, 4 Nov 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51c19l019947 for ; Thu, 4 Nov 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51c1N1001280; Thu, 4 Nov 2004 17:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51bDN1001259 for ; Thu, 4 Nov 2004 17:37:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51bC9l019941 for ; Thu, 4 Nov 2004 17:37:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51bCvj070438 for ; Thu, 4 Nov 2004 17:37:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51bCPc070437 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:37:12 GMT (envelope-from pavlin) Date: Fri, 5 Nov 2004 01:37:12 GMT From: Pavlin Radoslavov Message-Id: <200411050137.iA51bCPc070437@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-05 01:37:12 UTC XORP CVS repository Modified files: bgp route_table_deletion.hh Log message: Replace a long declaration type for an iterator with a shorter pre-defined typename. Revision Changes Path 1.16 +3 -4 xorp/bgp/route_table_deletion.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 01:43:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:44:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51i2TO089359 for ; Thu, 4 Nov 2004 17:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51i19l020009 for ; Thu, 4 Nov 2004 17:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51i1N1001517; Thu, 4 Nov 2004 17:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51hQN1001508 for ; Thu, 4 Nov 2004 17:43:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51hQ9l020006 for ; Thu, 4 Nov 2004 17:43:26 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51hQb2070743 for ; Thu, 4 Nov 2004 17:43:26 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51hQ5D070742 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:43:26 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 01:43:26 GMT From: Bruce Simpson Message-Id: <200411050143.iA51hQ5D070742@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 01:43:26 UTC XORP CVS repository Modified files: fea fticonfig_entry_parse_nlm.cc fticonfig_table_parse_nlm.cc netlink_socket_utils.cc netlink_socket_utils.hh Log message: Attempt to map RTN_BLACKHOLE routes back to the FEA's notion of a software discard interface, when the kernel notifies us about one. If we can't, log an appropriate mesage, and ignore the route notification. Note that NlmUtils::nlm_get_to_fte_cfg now needs to see the FEA's IfTree, so expose it and update function signatures accordingly. Revision Changes Path 1.11 +3 -2 xorp/fea/fticonfig_entry_parse_nlm.cc 1.12 +3 -3 xorp/fea/fticonfig_table_parse_nlm.cc 1.19 +35 -10 xorp/fea/netlink_socket_utils.cc 1.11 +5 -2 xorp/fea/netlink_socket_utils.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 01:53:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51s2HK091284 for ; Thu, 4 Nov 2004 17:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51s19l020105 for ; Thu, 4 Nov 2004 17:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51s1N1001877; Thu, 4 Nov 2004 17:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51rHN1001823 for ; Thu, 4 Nov 2004 17:53:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51rG9l020099 for ; Thu, 4 Nov 2004 17:53:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51rGtX071246 for ; Thu, 4 Nov 2004 17:53:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51rGfn071245 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:53:16 GMT (envelope-from pavlin) Date: Fri, 5 Nov 2004 01:53:16 GMT From: Pavlin Radoslavov Message-Id: <200411050153.iA51rGfn071245@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-05 01:53:16 UTC XORP CVS repository Modified files: fea ifconfig_set.cc Log message: Nit: replace 8-space tab with 4-space tab (for indentation purpose). Revision Changes Path 1.18 +2 -2 xorp/fea/ifconfig_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 01:53:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 17:54:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA51s5DG091299 for ; Thu, 4 Nov 2004 17:54:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51s59l020107 for ; Thu, 4 Nov 2004 17:54:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51s5N1001893; Thu, 4 Nov 2004 17:54:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA51rdN1001842 for ; Thu, 4 Nov 2004 17:53:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA51rd9l020103 for ; Thu, 4 Nov 2004 17:53:39 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA51rdFh071281 for ; Thu, 4 Nov 2004 17:53:39 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA51rd3u071280 for xorp-cvs@icir.org; Fri, 5 Nov 2004 01:53:39 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 01:53:39 GMT From: Bruce Simpson Message-Id: <200411050153.iA51rd3u071280@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 01:53:39 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc Log message: When removing a route to a discard interface from the Linux kernel forwarding plane, set the type of the route being removed to RTN_BLACKHOLE. Revision Changes Path 1.15 +9 -1 xorp/fea/fticonfig_entry_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 02:16:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 18:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA52H1jG095734 for ; Thu, 4 Nov 2004 18:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52H19l020365 for ; Thu, 4 Nov 2004 18:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52H1N1002610; Thu, 4 Nov 2004 18:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52GNN1002592 for ; Thu, 4 Nov 2004 18:16:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52GN9l020360 for ; Thu, 4 Nov 2004 18:16:23 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA52GNQG071513 for ; Thu, 4 Nov 2004 18:16:23 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA52GNg4071512 for xorp-cvs@icir.org; Fri, 5 Nov 2004 02:16:23 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 02:16:23 GMT From: Bruce Simpson Message-Id: <200411050216.iA52GNg4071512@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 02:16:23 UTC XORP CVS repository Modified files: rtrmgr config.boot.sample Log message: Add a commented-out example of a discard interface to the sample router manager configuration file. Revision Changes Path 1.17 +15 -1 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 02:35:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 18:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA52a2pp099399 for ; Thu, 4 Nov 2004 18:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52a19l020584 for ; Thu, 4 Nov 2004 18:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52a1N1003237; Thu, 4 Nov 2004 18:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52ZYN1003221 for ; Thu, 4 Nov 2004 18:35:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52ZY9l020582 for ; Thu, 4 Nov 2004 18:35:34 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA52ZX5R071738 for ; Thu, 4 Nov 2004 18:35:33 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA52ZXfA071737 for xorp-cvs@icir.org; Fri, 5 Nov 2004 02:35:33 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 02:35:33 GMT From: Bruce Simpson Message-Id: <200411050235.iA52ZXfA071737@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 02:35:33 UTC XORP CVS repository Modified files: mld6igmp test_mld6igmp.cc pim test_pim.cc Log message: Catch up with FtiConfig changes. Revision Changes Path 1.35 +9 -9 xorp/mld6igmp/test_mld6igmp.cc 1.40 +9 -9 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 02:41:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 18:42:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA52g2ls000681 for ; Thu, 4 Nov 2004 18:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52g29l020642 for ; Thu, 4 Nov 2004 18:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52g1N1003418; Thu, 4 Nov 2004 18:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA52f6N1003394 for ; Thu, 4 Nov 2004 18:41:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA52f59l020629 for ; Thu, 4 Nov 2004 18:41:05 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA52f54A071869 for ; Thu, 4 Nov 2004 18:41:05 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA52f57p071868 for xorp-cvs@icir.org; Fri, 5 Nov 2004 02:41:05 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 02:41:05 GMT From: Bruce Simpson Message-Id: <200411050241.iA52f57p071868@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 02:41:05 UTC XORP CVS repository Modified files: etc/templates interfaces.tp Log message: Add commented-out 'discard' property to router manager template, and commented-out XRL method for setting this property (to be implemented). Submitted by: pavlin Revision Changes Path 1.10 +9 -1 xorp/etc/templates/interfaces.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:57 2005 Subject: No subject Fri Nov 5 03:09:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53A25K006117 for ; Thu, 4 Nov 2004 19:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53A19l020940 for ; Thu, 4 Nov 2004 19:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53A1N1004302; Thu, 4 Nov 2004 19:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA539nN1004284 for ; Thu, 4 Nov 2004 19:09:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA539n9l020935 for ; Thu, 4 Nov 2004 19:09:49 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA539nke072152 for ; Thu, 4 Nov 2004 19:09:49 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA539noX072151 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:09:49 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:09:49 GMT From: Bruce Simpson Message-Id: <200411050309.iA539noX072151@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:09:49 UTC XORP CVS repository Modified files: . TODO Log message: Add a TODO item. Revision Changes Path 1.8 +5 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:19:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53K2KY008070 for ; Thu, 4 Nov 2004 19:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53K19l021054 for ; Thu, 4 Nov 2004 19:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53K1N1004582; Thu, 4 Nov 2004 19:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53JSN1004566 for ; Thu, 4 Nov 2004 19:19:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53JR9l021041 for ; Thu, 4 Nov 2004 19:19:27 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53JRcm072419 for ; Thu, 4 Nov 2004 19:19:27 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53JRgt072418 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:19:27 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:19:27 GMT From: Bruce Simpson Message-Id: <200411050319.iA53JRgt072418@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/libfeaclient xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:19:27 UTC XORP CVS repository Modified files: fea libfeaclient_bridge.cc libfeaclient ifmgr_atoms.hh ifmgr_cmds.cc ifmgr_cmds.hh rib vifmanager.cc Log message: Add commented-out code to marshal the state of a parent interface's discard flag using the libfeaclient interface. Note that if a FEA client (for example, OSPF, when adding a discard route, or the RIB) needs to know that the vif it is going to select for a route is part of a parent discard interface, it is its responsibility to mirror the IfTree and check the state of the parent. Revision Changes Path 1.11 +4 -1 xorp/fea/libfeaclient_bridge.cc 1.14 +9 -1 xorp/libfeaclient/ifmgr_atoms.hh 1.10 +38 -1 xorp/libfeaclient/ifmgr_cmds.cc 1.8 +26 -1 xorp/libfeaclient/ifmgr_cmds.hh 1.34 +3 -1 xorp/rib/vifmanager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:23:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53O1mX008850 for ; Thu, 4 Nov 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53O19l021113 for ; Thu, 4 Nov 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53O1N1004716; Thu, 4 Nov 2004 19:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53N9N1004695 for ; Thu, 4 Nov 2004 19:23:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53N99l021111 for ; Thu, 4 Nov 2004 19:23:09 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53N9FQ072593 for ; Thu, 4 Nov 2004 19:23:09 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53N9Mf072592 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:23:09 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:23:09 GMT From: Bruce Simpson Message-Id: <200411050323.iA53N9Mf072592@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:23:09 UTC XORP CVS repository Modified files: fea TODO Log message: Add a TODO item. Revision Changes Path 1.23 +3 -1 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:30:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:31:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53V0r2010203 for ; Thu, 4 Nov 2004 19:31:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53V09l021192 for ; Thu, 4 Nov 2004 19:31:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53V0N1004949; Thu, 4 Nov 2004 19:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53UDN1004908 for ; Thu, 4 Nov 2004 19:30:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53UC9l021185 for ; Thu, 4 Nov 2004 19:30:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53UC4b072745 for ; Thu, 4 Nov 2004 19:30:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53UCM2072744 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:30:12 GMT (envelope-from pavlin) Date: Fri, 5 Nov 2004 03:30:12 GMT From: Pavlin Radoslavov Message-Id: <200411050330.iA53UCM2072744@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-05 03:30:12 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: Bug fix: don't use an iterator who may have been erased previously. This bug has been revealed by running "./test_sample_config" when compiled with gcc34 with the following compilation flags: CXXFLAGS=-D_GLIBCXX_DEBUG Revision Changes Path 1.40 +5 -3 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:37:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:38:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53c1Tt011547 for ; Thu, 4 Nov 2004 19:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53c19l021245 for ; Thu, 4 Nov 2004 19:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53c1N1005130; Thu, 4 Nov 2004 19:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53bGN1005112 for ; Thu, 4 Nov 2004 19:37:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53bG9l021239 for ; Thu, 4 Nov 2004 19:37:16 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53bG5x072869 for ; Thu, 4 Nov 2004 19:37:16 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53bGwq072868 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:37:16 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:37:16 GMT From: Bruce Simpson Message-Id: <200411050337.iA53bGwq072868@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:37:16 UTC XORP CVS repository Modified files: fea ifmanager_transaction.hh xrl_target.cc xrl_target.hh xrl/interfaces fea_ifmgr.xif fea_ifmgr_xif.cc fea_ifmgr_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: Add new XRLs to ifmgr/0.1: get_configured_interface_discard get_system_interface_discard set_interface_discard Implement them within the FEA to export the new 'discard' property such that it can be set by the router manager. Regen. Revision Changes Path 1.8 +27 -1 xorp/fea/ifmanager_transaction.hh 1.53 +46 -1 xorp/fea/xrl_target.cc 1.40 +19 -1 xorp/fea/xrl_target.hh 1.14 +7 -1 xorp/xrl/interfaces/fea_ifmgr.xif 1.22 +117 -1 xorp/xrl/interfaces/fea_ifmgr_xif.cc 1.21 +45 -1 xorp/xrl/interfaces/fea_ifmgr_xif.hh 1.40 +7 -1 xorp/xrl/targets/fea.xrls 1.42 +121 -1 xorp/xrl/targets/fea_base.cc 1.46 +25 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:39:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53e2e6011951 for ; Thu, 4 Nov 2004 19:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53e19l021266 for ; Thu, 4 Nov 2004 19:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53e1N1005219; Thu, 4 Nov 2004 19:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53deN1005200 for ; Thu, 4 Nov 2004 19:39:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53de9l021259 for ; Thu, 4 Nov 2004 19:39:40 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53deV8072938 for ; Thu, 4 Nov 2004 19:39:40 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53de7x072937 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:39:40 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:39:40 GMT From: Bruce Simpson Message-Id: <200411050339.iA53de7x072937@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:39:40 UTC XORP CVS repository Modified files: etc/templates interfaces.tp rtrmgr config.boot.sample Log message: Activate the use of the discard property within the router manager, and uncomment the sample discard interface within the sample configuration file. Revision Changes Path 1.11 +2 -4 xorp/etc/templates/interfaces.tp 1.18 +2 -3 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 03:54:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 19:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA53t1Vv014833 for ; Thu, 4 Nov 2004 19:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53t09l021409 for ; Thu, 4 Nov 2004 19:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53t0N1005683; Thu, 4 Nov 2004 19:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA53sCN1005655 for ; Thu, 4 Nov 2004 19:54:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA53sC9l021399 for ; Thu, 4 Nov 2004 19:54:12 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA53sCLS073155 for ; Thu, 4 Nov 2004 19:54:12 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA53sCR9073154 for xorp-cvs@icir.org; Fri, 5 Nov 2004 03:54:12 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 03:54:12 GMT From: Bruce Simpson Message-Id: <200411050354.iA53sCR9073154@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/libfeaclient xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 03:54:12 UTC XORP CVS repository Modified files: fea libfeaclient_bridge.cc libfeaclient ifmgr_atoms.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc xrl/interfaces fea_ifmgr_mirror.xif fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh xrl/targets fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh Log message: Add a method to the fea_ifmgr_mirror/0.1 interface named interface_set_discard. Regen. Activate marshaling of this property from the FEA to FEA clients by uncommenting the appropriate code. Revision Changes Path 1.12 +1 -3 xorp/fea/libfeaclient_bridge.cc 1.15 +1 -5 xorp/libfeaclient/ifmgr_atoms.hh 1.11 +1 -3 xorp/libfeaclient/ifmgr_cmds.cc 1.9 +1 -3 xorp/libfeaclient/ifmgr_cmds.hh 1.11 +19 -1 xorp/libfeaclient/ifmgr_xrl_mirror.cc 1.5 +1 -0 xorp/xrl/interfaces/fea_ifmgr_mirror.xif 1.8 +35 -1 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.cc 1.8 +16 -1 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.hh 1.8 +3 -1 xorp/xrl/targets/fea_ifmgr_mirror.xrls 1.10 +32 -1 xorp/xrl/targets/fea_ifmgr_mirror_base.cc 1.9 +8 -1 xorp/xrl/targets/fea_ifmgr_mirror_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 04:11:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 20:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA54C14W018159 for ; Thu, 4 Nov 2004 20:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA54C19l021624 for ; Thu, 4 Nov 2004 20:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA54C1N1006269; Thu, 4 Nov 2004 20:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA54B4N1006245 for ; Thu, 4 Nov 2004 20:11:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA54B49l021618 for ; Thu, 4 Nov 2004 20:11:04 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA54B4v8073355 for ; Thu, 4 Nov 2004 20:11:04 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA54B48l073354 for xorp-cvs@icir.org; Fri, 5 Nov 2004 04:11:04 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 04:11:04 GMT From: Bruce Simpson Message-Id: <200411050411.iA54B48l073354@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 04:11:04 UTC XORP CVS repository Modified files: fea iftree.hh Log message: Very important. Don't forget to set the 'soft interface, so don't push me' flag when marking an interface as a discard interface. Revision Changes Path 1.24 +6 -2 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 04:29:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 04 Nov 2004 20:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA54U2b5021603 for ; Thu, 4 Nov 2004 20:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA54U19l021780 for ; Thu, 4 Nov 2004 20:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA54U1N1006698; Thu, 4 Nov 2004 20:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA54TPN1006682 for ; Thu, 4 Nov 2004 20:29:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA54TP9l021765 for ; Thu, 4 Nov 2004 20:29:25 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA54TPQG073546 for ; Thu, 4 Nov 2004 20:29:25 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA54TP5u073545 for xorp-cvs@icir.org; Fri, 5 Nov 2004 04:29:25 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 04:29:25 GMT From: Bruce Simpson Message-Id: <200411050429.iA54TP5u073545@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 04:29:25 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh xrl/interfaces fea_fib_client.xif fea_fib_client_xif.cc fea_fib_client_xif.hh xrl/targets fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Log message: Add two new methods to interface fea_fib_client/0.1: resolve_route4, resolve_route6 This is a notification from the FEA to indicate that there was a route miss or a request for next-hop resolution from the forwarding plane. It exists primarily to support on-demand and ad-hoc routing protocols implemented using the XORP framework. Add code to present clients of this interface (currently only fib2mrib) to ignore this event. Platform support for generating this event will be forthcoming in future commits. Revision Changes Path 1.15 +26 -1 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.9 +16 -1 xorp/fib2mrib/xrl_fib2mrib_node.hh 1.4 +13 -1 xorp/xrl/interfaces/fea_fib_client.xif 1.5 +65 -1 xorp/xrl/interfaces/fea_fib_client_xif.cc 1.5 +40 -1 xorp/xrl/interfaces/fea_fib_client_xif.hh 1.5 +13 -1 xorp/xrl/targets/fib2mrib.xrls 1.5 +61 -1 xorp/xrl/targets/fib2mrib_base.cc 1.6 +23 -1 xorp/xrl/targets/fib2mrib_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:58 2005 Subject: No subject Fri Nov 5 18:16:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Nov 2004 10:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA5IH1UD084283 for ; Fri, 5 Nov 2004 10:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5IH09l032372 for ; Fri, 5 Nov 2004 10:17:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5IH0N1002893; Fri, 5 Nov 2004 10:17:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5IGIN1002868 for ; Fri, 5 Nov 2004 10:16:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5IGI9l032365 for ; Fri, 5 Nov 2004 10:16:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA5IGI0L081981 for ; Fri, 5 Nov 2004 10:16:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA5IGIlW081980 for xorp-cvs@icir.org; Fri, 5 Nov 2004 18:16:18 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 18:16:18 GMT From: Bruce Simpson Message-Id: <200411051816.iA5IGIlW081980@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 18:16:18 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc Log message: Don't use a goto label which skips over variable declarations which are later referenced. Instead, rework the code to do the right thing. Revision Changes Path 1.16 +35 -29 xorp/fea/fticonfig_entry_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Fri Nov 5 21:01:55 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Nov 2004 13:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA5L21kq021071 for ; Fri, 5 Nov 2004 13:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5L219l034303 for ; Fri, 5 Nov 2004 13:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5L21N1008972; Fri, 5 Nov 2004 13:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5L1uN1008966 for ; Fri, 5 Nov 2004 13:01:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5L1u9l034301 for ; Fri, 5 Nov 2004 13:01:56 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA5L1tBV083724 for ; Fri, 5 Nov 2004 13:01:55 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA5L1tuA083723 for xorp-cvs@icir.org; Fri, 5 Nov 2004 21:01:55 GMT (envelope-from bms) Date: Fri, 5 Nov 2004 21:01:55 GMT From: Bruce Simpson Message-Id: <200411052101.iA5L1tuA083723@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-05 21:01:55 UTC XORP CVS repository Modified files: fea routing_socket_utils.cc Log message: Add code in RtmUtils::rtm_get_to_fte_cfg to parse RTM_MISS and RTM_RESOLVE messages. These only contain a destination host address. The caller will know what to do with them; the message would not have been passed to us otherwise. Revision Changes Path 1.22 +15 -4 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Fri Nov 5 22:37:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Nov 2004 14:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA5Mc1ST040462 for ; Fri, 5 Nov 2004 14:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5Mc19l035382 for ; Fri, 5 Nov 2004 14:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5Mc1N1011796; Fri, 5 Nov 2004 14:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA5Mb3N1011765 for ; Fri, 5 Nov 2004 14:37:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA5Mb29l035365 for ; Fri, 5 Nov 2004 14:37:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA5Mb2u5084665 for ; Fri, 5 Nov 2004 14:37:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA5Mb2hH084664 for xorp-cvs@icir.org; Fri, 5 Nov 2004 22:37:02 GMT (envelope-from pavlin) Date: Fri, 5 Nov 2004 22:37:02 GMT From: Pavlin Radoslavov Message-Id: <200411052237.iA5Mb2hH084664@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-05 22:37:02 UTC XORP CVS repository Modified files: libproto proto_node_cli.cc Log message: Bug fix: Use a local copy of the command name string inside method ProtoNodeCli::delete_cli_command(), because the original string may be deleted by some of the erase operations later. Bug found by: Atanu Ghosh Revision Changes Path 1.5 +12 -6 xorp/libproto/proto_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Sat Nov 6 03:35:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 05 Nov 2004 19:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA63a247099333 for ; Fri, 5 Nov 2004 19:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA63a29l038111 for ; Fri, 5 Nov 2004 19:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA63a2N1020956; Fri, 5 Nov 2004 19:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA63ZTN1020915 for ; Fri, 5 Nov 2004 19:35:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA63ZT9l038105 for ; Fri, 5 Nov 2004 19:35:29 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA63ZSvZ086879 for ; Fri, 5 Nov 2004 19:35:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA63ZS5Z086878 for xorp-cvs@icir.org; Sat, 6 Nov 2004 03:35:28 GMT (envelope-from mjh) Date: Sat, 6 Nov 2004 03:35:28 GMT From: Mark Handley Message-Id: <200411060335.iA63ZS5Z086878@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-11-06 03:35:28 UTC XORP CVS repository Modified files: bgp bgp_trie.cc Log message: Remove unnecessary erase. This cures the bug in the DeletionTable that Pavlin found. Revision Changes Path 1.15 +1 -2 xorp/bgp/bgp_trie.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Sun Nov 7 18:23:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 07 Nov 2004 10:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA7IO1W9065789 for ; Sun, 7 Nov 2004 10:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA7IO19l063152 for ; Sun, 7 Nov 2004 10:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA7IO1N1018185; Sun, 7 Nov 2004 10:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA7INFN1018162 for ; Sun, 7 Nov 2004 10:23:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA7INE9l063144 for ; Sun, 7 Nov 2004 10:23:14 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA7INEp4006045 for ; Sun, 7 Nov 2004 10:23:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA7INE5g006044 for xorp-cvs@icir.org; Sun, 7 Nov 2004 18:23:14 GMT (envelope-from atanu) Date: Sun, 7 Nov 2004 18:23:14 GMT From: Atanu Ghosh Message-Id: <200411071823.iA7INE5g006044@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-07 18:23:14 UTC XORP CVS repository Modified files: libxipc xrl_pf_stcp.cc Log message: Cast for size_t and uint32_t not being equivalent on a Mac. Revision Changes Path 1.37 +4 -3 xorp/libxipc/xrl_pf_stcp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Mon Nov 8 21:14:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Nov 2004 13:15:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA8LF4V2092947 for ; Mon, 8 Nov 2004 13:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8LF49l080824 for ; Mon, 8 Nov 2004 13:15:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8LF3N1002754; Mon, 8 Nov 2004 13:15:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8LEVN1002727 for ; Mon, 8 Nov 2004 13:14:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8LEU9l080815 for ; Mon, 8 Nov 2004 13:14:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA8LEU1e021057 for ; Mon, 8 Nov 2004 13:14:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA8LEUxZ021056 for xorp-cvs@icir.org; Mon, 8 Nov 2004 21:14:30 GMT (envelope-from pavlin) Date: Mon, 8 Nov 2004 21:14:30 GMT From: Pavlin Radoslavov Message-Id: <200411082114.iA8LEUxZ021056@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-08 21:14:30 UTC XORP CVS repository Modified files: . configure configure.in Log message: Explicitly add the "-g" gcc compilation flag to CFLAGS and CXXFLAGS when debugging is enabled instead of relying of it being added implicitly by macro AC_PROG_CC and AC_PROG_CXX. Approved by: Atanu Revision Changes Path 1.129 +165 -6 xorp/configure 1.122 +17 -9 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Mon Nov 8 22:29:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Nov 2004 14:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA8MU1tJ007739 for ; Mon, 8 Nov 2004 14:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8MU19l081823 for ; Mon, 8 Nov 2004 14:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8MU1N1005159; Mon, 8 Nov 2004 14:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8MTKN1005135 for ; Mon, 8 Nov 2004 14:29:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8MTK9l081813 for ; Mon, 8 Nov 2004 14:29:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA8MTJ5Q021885 for ; Mon, 8 Nov 2004 14:29:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA8MTJBW021884 for xorp-cvs@icir.org; Mon, 8 Nov 2004 22:29:19 GMT (envelope-from pavlin) Date: Mon, 8 Nov 2004 22:29:19 GMT From: Pavlin Radoslavov Message-Id: <200411082229.iA8MTJBW021884@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-08 22:29:19 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Bug fix: add profile.xif to the list of files that fea_base.{hh,cc} depend on. Revision Changes Path 1.42 +3 -2 xorp/xrl/targets/Makefile.am 1.54 +2 -1 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Mon Nov 8 22:32:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 08 Nov 2004 14:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA8MX3jr008352 for ; Mon, 8 Nov 2004 14:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8MX39l081876 for ; Mon, 8 Nov 2004 14:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8MX2N1005277; Mon, 8 Nov 2004 14:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA8MWgN1005259 for ; Mon, 8 Nov 2004 14:32:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA8MWg9l081869 for ; Mon, 8 Nov 2004 14:32:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA8MWgaC021962 for ; Mon, 8 Nov 2004 14:32:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA8MWgNK021961 for xorp-cvs@icir.org; Mon, 8 Nov 2004 22:32:42 GMT (envelope-from pavlin) Date: Mon, 8 Nov 2004 22:32:42 GMT From: Pavlin Radoslavov Message-Id: <200411082232.iA8MWgNK021961@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-08 22:32:42 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Bug fix: add profile.xif to the list of files that rib_base.{hh,cc} depend on. Revision Changes Path 1.43 +3 -2 xorp/xrl/targets/Makefile.am 1.55 +2 -1 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Tue Nov 9 20:40:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Nov 2004 12:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iA9Kf1dp010502 for ; Tue, 9 Nov 2004 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA9Kf1D3098171 for ; Tue, 9 Nov 2004 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA9Kf1N1014953; Tue, 9 Nov 2004 12:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iA9Ke8N1014914 for ; Tue, 9 Nov 2004 12:40:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iA9Ke8D3098167 for ; Tue, 9 Nov 2004 12:40:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iA9Ke8Pk036508 for ; Tue, 9 Nov 2004 12:40:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iA9Ke8ww036507 for xorp-cvs@icir.org; Tue, 9 Nov 2004 20:40:08 GMT (envelope-from pavlin) Date: Tue, 9 Nov 2004 20:40:08 GMT From: Pavlin Radoslavov Message-Id: <200411092040.iA9Ke8ww036507@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-09 20:40:08 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: Bug fix: if _fd socket descriptor has been open already, then calling method start() should return XORP_OK instead of _fd. Revision Changes Path 1.23 +2 -2 xorp/fea/netlink_socket.cc 1.15 +2 -2 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 00:32:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Nov 2004 16:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAA0X1I3083334 for ; Tue, 9 Nov 2004 16:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0X1D3000979 for ; Tue, 9 Nov 2004 16:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0X0N1023112; Tue, 9 Nov 2004 16:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0WIN1023099 for ; Tue, 9 Nov 2004 16:32:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0WID3000977 for ; Tue, 9 Nov 2004 16:32:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAA0WIfn039491 for ; Tue, 9 Nov 2004 16:32:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAA0WIiF039490 for xorp-cvs@icir.org; Wed, 10 Nov 2004 00:32:18 GMT (envelope-from pavlin) Date: Wed, 10 Nov 2004 00:32:18 GMT From: Pavlin Radoslavov Message-Id: <200411100032.iAA0WIiF039490@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-10 00:32:18 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh Log message: * Add extra methods to configure Click * Rename few methods and fields * Bug fix: if _fd socket descriptor has been open already, then calling method start() should return XORP_OK instead of _fd. Revision Changes Path 1.4 +9 -6 xorp/fea/click_socket.cc 1.2 +98 -5 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 00:37:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Nov 2004 16:38:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAA0c24V085119 for ; Tue, 9 Nov 2004 16:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0c2D3001042 for ; Tue, 9 Nov 2004 16:38:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0c1N1023290; Tue, 9 Nov 2004 16:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0buN1023280 for ; Tue, 9 Nov 2004 16:37:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0buD3001039 for ; Tue, 9 Nov 2004 16:37:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAA0bu2R039690 for ; Tue, 9 Nov 2004 16:37:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAA0buRc039689 for xorp-cvs@icir.org; Wed, 10 Nov 2004 00:37:56 GMT (envelope-from pavlin) Date: Wed, 10 Nov 2004 00:37:56 GMT From: Pavlin Radoslavov Message-Id: <200411100037.iAA0buRc039689@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-10 00:37:56 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Added files: xrl/interfaces fea_click.xif fea_click_xif.cc fea_click_xif.hh Log message: Add new fea_click/0.1 XRL interface for configuring the FEA Click support. Revision Changes Path 1.24 +5 -1 xorp/xrl/interfaces/Makefile.am 1.37 +18 -5 xorp/xrl/interfaces/Makefile.in 1.1 +107 -0 xorp/xrl/interfaces/fea_click.xif (new) 1.1 +392 -0 xorp/xrl/interfaces/fea_click_xif.cc (new) 1.1 +307 -0 xorp/xrl/interfaces/fea_click_xif.hh (new) 1.44 +3 -2 xorp/xrl/targets/Makefile.am 1.56 +2 -1 xorp/xrl/targets/Makefile.in 1.11 +3 -2 xorp/xrl/targets/fea.tgt 1.41 +91 -1 xorp/xrl/targets/fea.xrls 1.43 +359 -1 xorp/xrl/targets/fea_base.cc 1.47 +161 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 00:39:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Nov 2004 16:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAA0e11h085506 for ; Tue, 9 Nov 2004 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0e1D3001066 for ; Tue, 9 Nov 2004 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0e1N1023368; Tue, 9 Nov 2004 16:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0dnN1023360 for ; Tue, 9 Nov 2004 16:39:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0dmD3001059 for ; Tue, 9 Nov 2004 16:39:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAA0dmpt039831 for ; Tue, 9 Nov 2004 16:39:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAA0dm03039830 for xorp-cvs@icir.org; Wed, 10 Nov 2004 00:39:48 GMT (envelope-from pavlin) Date: Wed, 10 Nov 2004 00:39:48 GMT From: Pavlin Radoslavov Message-Id: <200411100039.iAA0dm03039830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-10 00:39:48 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig.hh fticonfig_entry_get_click.cc fticonfig_entry_set_click.cc fticonfig_table_get_click.cc fticonfig_table_set.hh fticonfig_table_set_click.cc ifconfig.cc ifconfig.hh ifconfig_get_click.cc ifconfig_set_click.cc xrl_target.cc xrl_target.hh Log message: Add support for the fea_click/0.1 XRL interface for configuring Click within the FEA. Revision Changes Path 1.31 +229 -1 xorp/fea/fticonfig.cc 1.24 +95 -1 xorp/fea/fticonfig.hh 1.2 +4 -10 xorp/fea/fticonfig_entry_get_click.cc 1.3 +4 -10 xorp/fea/fticonfig_entry_set_click.cc 1.2 +4 -10 xorp/fea/fticonfig_table_get_click.cc 1.12 +4 -3 xorp/fea/fticonfig_table_set.hh 1.2 +17 -10 xorp/fea/fticonfig_table_set_click.cc 1.34 +179 -1 xorp/fea/ifconfig.cc 1.33 +95 -1 xorp/fea/ifconfig.hh 1.3 +4 -10 xorp/fea/ifconfig_get_click.cc 1.4 +4 -10 xorp/fea/ifconfig_set_click.cc 1.54 +247 -1 xorp/fea/xrl_target.cc 1.41 +114 -1 xorp/fea/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 00:48:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 09 Nov 2004 16:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAA0n1ZM087263 for ; Tue, 9 Nov 2004 16:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0n1D3001154 for ; Tue, 9 Nov 2004 16:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0n0N1023588; Tue, 9 Nov 2004 16:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAA0mEN1023557 for ; Tue, 9 Nov 2004 16:48:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAA0mED3001148 for ; Tue, 9 Nov 2004 16:48:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAA0mExE039936 for ; Tue, 9 Nov 2004 16:48:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAA0mEfs039935 for xorp-cvs@icir.org; Wed, 10 Nov 2004 00:48:14 GMT (envelope-from pavlin) Date: Wed, 10 Nov 2004 00:48:14 GMT From: Pavlin Radoslavov Message-Id: <200411100048.iAA0mEfs039935@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-10 00:48:14 UTC XORP CVS repository Modified files: . configure configure.in Log message: Added an extra comment that mentions that the -D_GLIBCXX_DEBUG flag that can be added to CXXFLAGS for extra debugging. Revision Changes Path 1.130 +1 -1 xorp/configure 1.123 +5 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 22:50:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 14:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAAMp1VI069946 for ; Wed, 10 Nov 2004 14:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAAMp1D3017439 for ; Wed, 10 Nov 2004 14:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAAMp1N1002460; Wed, 10 Nov 2004 14:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAAMoFN1002418 for ; Wed, 10 Nov 2004 14:50:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAAMoED3017430 for ; Wed, 10 Nov 2004 14:50:14 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAAMoEqI073054 for ; Wed, 10 Nov 2004 14:50:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAAMoED3073053 for xorp-cvs@icir.org; Wed, 10 Nov 2004 22:50:14 GMT (envelope-from atanu) Date: Wed, 10 Nov 2004 22:50:14 GMT From: Atanu Ghosh Message-Id: <200411102250.iAAMoED3073053@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-10 22:50:14 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc rib_ipc_handler.hh Log message: When deleting tables from the RIB use the ribname not "". Revision Changes Path 1.60 +10 -10 xorp/bgp/rib_ipc_handler.cc 1.34 +2 -2 xorp/bgp/rib_ipc_handler.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Wed Nov 10 22:55:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 14:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAAMu19m071396 for ; Wed, 10 Nov 2004 14:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAAMu1D3017505 for ; Wed, 10 Nov 2004 14:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAAMu1N1002716; Wed, 10 Nov 2004 14:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAAMtcN1002700 for ; Wed, 10 Nov 2004 14:55:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAAMtbD3017499 for ; Wed, 10 Nov 2004 14:55:37 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAAMtboO073127 for ; Wed, 10 Nov 2004 14:55:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAAMtbt7073126 for xorp-cvs@icir.org; Wed, 10 Nov 2004 22:55:37 GMT (envelope-from atanu) Date: Wed, 10 Nov 2004 22:55:37 GMT From: Atanu Ghosh Message-Id: <200411102255.iAAMtbt7073126@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-10 22:55:37 UTC XORP CVS repository Modified files: bgp peer_list.cc Log message: Use insert(make_pair(...)) when saving an iterator in a map, rather than "[...] = ...", to avoid a call to the copy constructor. Bug found by: -D_GLIBCXX_DEBUG Revision Changes Path 1.13 +3 -2 xorp/bgp/peer_list.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Thu Nov 11 07:30:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 23:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAB7V18K079344 for ; Wed, 10 Nov 2004 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7V1D3022633 for ; Wed, 10 Nov 2004 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7V1N1017009; Wed, 10 Nov 2004 23:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7UYN1016992 for ; Wed, 10 Nov 2004 23:30:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7UYD3022631 for ; Wed, 10 Nov 2004 23:30:34 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAB7UYjP077059 for ; Wed, 10 Nov 2004 23:30:34 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAB7UYJf077058 for xorp-cvs@icir.org; Thu, 11 Nov 2004 07:30:34 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 07:30:34 GMT From: Bruce Simpson Message-Id: <200411110730.iAB7UYJf077058@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 07:30:34 UTC XORP CVS repository Modified files: fea routing_socket_utils.cc Log message: Replace a dubious goto with a simple bool. Revision Changes Path 1.23 +5 -6 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Thu Nov 11 07:45:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 23:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAB7k1NA082530 for ; Wed, 10 Nov 2004 23:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7k1D3022774 for ; Wed, 10 Nov 2004 23:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7k1N1017447; Wed, 10 Nov 2004 23:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7j9N1017425 for ; Wed, 10 Nov 2004 23:45:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7j9D3022760 for ; Wed, 10 Nov 2004 23:45:09 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAB7j8cx077310 for ; Wed, 10 Nov 2004 23:45:08 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAB7j8dC077309 for xorp-cvs@icir.org; Thu, 11 Nov 2004 07:45:08 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 07:45:08 GMT From: Bruce Simpson Message-Id: <200411110745.iAB7j8dC077309@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 07:45:08 UTC XORP CVS repository Modified files: fea fte.hh Log message: Add a new 'unresolved' flag to Fte. An Fte with this flag set is not a valid Fte; rather, it is a destination requiring resolution. This flag is only used within the FEA to support on-demand routing protocols. Revision Changes Path 1.13 +11 -4 xorp/fea/fte.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:14:59 2005 Subject: No subject Thu Nov 11 07:45:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 23:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAB7k2oI082550 for ; Wed, 10 Nov 2004 23:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7k2D3022776 for ; Wed, 10 Nov 2004 23:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7k2N1017458; Wed, 10 Nov 2004 23:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7jPN1017433 for ; Wed, 10 Nov 2004 23:45:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7jPD3022765 for ; Wed, 10 Nov 2004 23:45:25 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAB7jPSB077345 for ; Wed, 10 Nov 2004 23:45:25 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAB7jPvF077344 for xorp-cvs@icir.org; Thu, 11 Nov 2004 07:45:25 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 07:45:25 GMT From: Bruce Simpson Message-Id: <200411110745.iAB7jPvF077344@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 07:45:25 UTC XORP CVS repository Modified files: fea TODO Log message: Add a TODO item Revision Changes Path 1.24 +4 -1 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 07:48:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 10 Nov 2004 23:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAB7n1JO083256 for ; Wed, 10 Nov 2004 23:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7n1D3022807 for ; Wed, 10 Nov 2004 23:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7n1N1017566; Wed, 10 Nov 2004 23:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAB7mNN1017556 for ; Wed, 10 Nov 2004 23:48:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAB7mND3022803 for ; Wed, 10 Nov 2004 23:48:23 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAB7mN8M077457 for ; Wed, 10 Nov 2004 23:48:23 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAB7mNtD077456 for xorp-cvs@icir.org; Thu, 11 Nov 2004 07:48:23 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 07:48:23 GMT From: Bruce Simpson Message-Id: <200411110748.iAB7mNtD077456@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 07:48:23 UTC XORP CVS repository Modified files: fea fticonfig.hh fticonfig_entry_get.hh fticonfig_entry_get_rtsock.cc fticonfig_entry_parse_rtm.cc fticonfig_table_get.hh fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer_rtsock.cc fticonfig_table_parse_rtm.cc xrl_fti.cc xrl_fti.hh Log message: Final round of changes to support on-demand and ad-hoc routing protocols. Add the appropriate XRL glue to pass RESOLVES to client processes of the FEA FIB. Add the appropriate plumbing to do this for BSD rtsock. Specifics are as follows: Add and make use of a new integer typedef, FtiFibMsgSet. Flip the sense of the current filtering to be inclusive rather than exclusive, so we can deal with those situations where routing table observers want to hear about a wider variety of events. Callers within the FEA can ask for UPDATES (adds, deletes, changes), GETS (the 'get' message), and RESOLVES (route misses and resolves). When we get routes back in the FtiConfigTableObserver, look for and flag unresolveds in the copies we make before we hand them off via XRLs, so that the XRL glue will know what to do with them. Revision Changes Path 1.25 +12 -1 xorp/fea/fticonfig.hh 1.18 +3 -3 xorp/fea/fticonfig_entry_get.hh 1.22 +4 -5 xorp/fea/fticonfig_entry_get_rtsock.cc 1.8 +43 -26 xorp/fea/fticonfig_entry_parse_rtm.cc 1.15 +3 -3 xorp/fea/fticonfig_table_get.hh 1.14 +3 -2 xorp/fea/fticonfig_table_get_sysctl.cc 1.8 +5 -1 xorp/fea/fticonfig_table_observer.cc 1.11 +6 -4 xorp/fea/fticonfig_table_observer_rtsock.cc 1.11 +46 -24 xorp/fea/fticonfig_table_parse_rtm.cc 1.11 +79 -4 xorp/fea/xrl_fti.cc 1.10 +27 -1 xorp/fea/xrl_fti.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 10:36:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 02:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABAb1Bh022628 for ; Thu, 11 Nov 2004 02:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABAb1D3024775 for ; Thu, 11 Nov 2004 02:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABAb1N1021473; Thu, 11 Nov 2004 02:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABAadN1021435 for ; Thu, 11 Nov 2004 02:36:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABAadD3024772 for ; Thu, 11 Nov 2004 02:36:39 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABAactC086798 for ; Thu, 11 Nov 2004 02:36:38 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABAacUI086797 for xorp-cvs@icir.org; Thu, 11 Nov 2004 10:36:38 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 10:36:38 GMT From: Bruce Simpson Message-Id: <200411111036.iABAacUI086797@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 10:36:38 UTC XORP CVS repository Modified files: fea xrl_target.cc xrl_target.hh Log message: Comment the assumptions made in XrlFeaTarget::ifmgr_0_1_get_system_interface_discard(). Correct spelling mistakes. Revision Changes Path 1.55 +4 -2 xorp/fea/xrl_target.cc 1.42 +3 -3 xorp/fea/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 10:37:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 02:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABAc1J8022840 for ; Thu, 11 Nov 2004 02:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABAc1D3024785 for ; Thu, 11 Nov 2004 02:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABAc1N1021529; Thu, 11 Nov 2004 02:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABAbrN1021519 for ; Thu, 11 Nov 2004 02:37:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABAbrD3024783 for ; Thu, 11 Nov 2004 02:37:53 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABAbqsZ086833 for ; Thu, 11 Nov 2004 02:37:52 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABAbqm6086832 for xorp-cvs@icir.org; Thu, 11 Nov 2004 10:37:52 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 10:37:52 GMT From: Bruce Simpson Message-Id: <200411111037.iABAbqm6086832@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 10:37:52 UTC XORP CVS repository Modified files: fea TODO Log message: Remove an item. Revision Changes Path 1.25 +1 -3 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 17:16:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 09:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABHH12k001299 for ; Thu, 11 Nov 2004 09:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABHH1D3030550 for ; Thu, 11 Nov 2004 09:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABHH1N1004029; Thu, 11 Nov 2004 09:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABHGIN1004004 for ; Thu, 11 Nov 2004 09:16:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABHGHD3030543 for ; Thu, 11 Nov 2004 09:16:17 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABHGH3M093011 for ; Thu, 11 Nov 2004 09:16:17 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABHGHhq093010 for xorp-cvs@icir.org; Thu, 11 Nov 2004 17:16:17 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 17:16:17 GMT From: Bruce Simpson Message-Id: <200411111716.iABHGHhq093010@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 17:16:17 UTC XORP CVS repository Modified files: fea firewall.cc firewall.hh Log message: Minor whitespace nits. Revision Changes Path 1.3 +2 -2 xorp/fea/firewall.cc 1.10 +2 -2 xorp/fea/firewall.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 17:56:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 09:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABHv1G0009028 for ; Thu, 11 Nov 2004 09:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABHv0D3030998 for ; Thu, 11 Nov 2004 09:57:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABHv0N1005415; Thu, 11 Nov 2004 09:57:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABHu9N1005391 for ; Thu, 11 Nov 2004 09:56:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABHu9D3030991 for ; Thu, 11 Nov 2004 09:56:09 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABHu94G093562 for ; Thu, 11 Nov 2004 09:56:09 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABHu9wA093561 for xorp-cvs@icir.org; Thu, 11 Nov 2004 17:56:09 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 17:56:09 GMT From: Bruce Simpson Message-Id: <200411111756.iABHu9wA093561@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 17:56:09 UTC XORP CVS repository Modified files: . bootstrap Log message: Allow the autotools binaries used to be overridden using environment variables, for the benefit of those who may wish to maintain external builds of XORP (such as the FreeBSD ports maintainers). Revision Changes Path 1.14 +21 -11 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:00 2005 Subject: No subject Thu Nov 11 18:06:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 10:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABI71fb010979 for ; Thu, 11 Nov 2004 10:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABI70D3031141 for ; Thu, 11 Nov 2004 10:07:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABI70N1005769; Thu, 11 Nov 2004 10:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABI6BN1005736 for ; Thu, 11 Nov 2004 10:06:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABI6BD3031129 for ; Thu, 11 Nov 2004 10:06:11 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABI6BiW093748 for ; Thu, 11 Nov 2004 10:06:11 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABI6B0t093747 for xorp-cvs@icir.org; Thu, 11 Nov 2004 18:06:11 GMT (envelope-from bms) Date: Thu, 11 Nov 2004 18:06:11 GMT From: Bruce Simpson Message-Id: <200411111806.iABI6B0t093747@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-11 18:06:11 UTC XORP CVS repository Modified files: . bootstrap Log message: Whoops. libtoolize shouldn't be activated until we actually use libtool. Revision Changes Path 1.15 +2 -2 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Thu Nov 11 10:13:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 10:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABIF1rb012529 for ; Thu, 11 Nov 2004 10:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABIF1D3031225 for ; Thu, 11 Nov 2004 10:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABIF1N1006049; Thu, 11 Nov 2004 10:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABIE4N1006017 for ; Thu, 11 Nov 2004 10:14:04 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABIE4D3031217 for ; Thu, 11 Nov 2004 10:14:04 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id ABC63653AD for ; Thu, 11 Nov 2004 18:13:57 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 43463-03-6 for ; Thu, 11 Nov 2004 18:13:57 +0000 (GMT) Received: from empiric.dek.spc.org (dhcp120.icir.org [192.150.187.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 150B365458 for ; Thu, 11 Nov 2004 18:13:57 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 320416482; Thu, 11 Nov 2004 10:13:46 -0800 (PST) Date: Thu, 11 Nov 2004 10:13:46 -0800 From: Bruce M Simpson To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp Message-ID: <20041111181346.GR723@empiric.icir.org> References: <200411111756.iABHu9wA093561@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200411111756.iABHu9wA093561@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Thu, Nov 11, 2004 at 05:56:09PM +0000, Bruce Simpson wrote: > Log message: > Allow the autotools binaries used to be overridden > using environment variables, for the benefit of those > who may wish to maintain external builds of XORP (such > as the FreeBSD ports maintainers). The main motivation for this change is to enable package maintainers to specify explicit paths to particular versions of the GNU autotools installed on a build system. This is necessary because we use a 'known good' combination of GNU autotools, and they may not always be installed in the same place on each system where XORP may be built; and those same maintainers may need to fine-tune the configure.in script, which in turn requires a re-run of bootstrap to take effect. This change becomes especially important if we choose to use libtool to maintain our libraries, as libtool is especially sensitive to the versions of GNU autotools in use. We would hope, of course, that they would fine-tune the fine-tuning, and push any such required changes for portability back upstream to us. BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Thu Nov 11 23:17:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 15:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABNI2QY076898 for ; Thu, 11 Nov 2004 15:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABNI2D3034506 for ; Thu, 11 Nov 2004 15:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABNI2N1015693; Thu, 11 Nov 2004 15:18:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABNHhN1015676 for ; Thu, 11 Nov 2004 15:17:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABNHhD3034501 for ; Thu, 11 Nov 2004 15:17:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABNHhUZ005753 for ; Thu, 11 Nov 2004 15:17:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABNHh0F005752 for xorp-cvs@icir.org; Thu, 11 Nov 2004 23:17:43 GMT (envelope-from pavlin) Date: Thu, 11 Nov 2004 23:17:43 GMT From: Pavlin Radoslavov Message-Id: <200411112317.iABNHh0F005752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-11 23:17:43 UTC XORP CVS repository Modified files: fea iftree.hh Log message: * Initialize the _soft flag to false in the IfTreeItem constructor. * When set_discard() is called, set the _soft flag to true only if the discard flag is true too. Previously, the _soft flag was unconditionally set to true. Revision Changes Path 1.25 +4 -3 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Thu Nov 11 23:26:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 15:27:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iABNR2cp079136 for ; Thu, 11 Nov 2004 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABNR2D3034610 for ; Thu, 11 Nov 2004 15:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABNR2N1016013; Thu, 11 Nov 2004 15:27:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iABNQBN1015986 for ; Thu, 11 Nov 2004 15:26:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iABNQAD3034604 for ; Thu, 11 Nov 2004 15:26:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iABNQA4D005907 for ; Thu, 11 Nov 2004 15:26:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iABNQAA1005906 for xorp-cvs@icir.org; Thu, 11 Nov 2004 23:26:10 GMT (envelope-from pavlin) Date: Thu, 11 Nov 2004 23:26:10 GMT From: Pavlin Radoslavov Message-Id: <200411112326.iABNQAA1005906@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-11 23:26:10 UTC XORP CVS repository Modified files: fea ifconfig.cc ifconfig.hh Log message: * Save a copy of the IfTree pushed config * Add a new method pushed_config() to access that copy Revision Changes Path 1.35 +6 -1 xorp/fea/ifconfig.cc 1.34 +3 -1 xorp/fea/ifconfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 00:31:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 16:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC0W1xF092998 for ; Thu, 11 Nov 2004 16:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0W1D3035296 for ; Thu, 11 Nov 2004 16:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0W1N1018050; Thu, 11 Nov 2004 16:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0V6N1018022 for ; Thu, 11 Nov 2004 16:31:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0V6D3035286 for ; Thu, 11 Nov 2004 16:31:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC0V685009197 for ; Thu, 11 Nov 2004 16:31:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC0V6mD009196 for xorp-cvs@icir.org; Fri, 12 Nov 2004 00:31:06 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 00:31:06 GMT From: Pavlin Radoslavov Message-Id: <200411120031.iAC0V6mD009196@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 00:31:05 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_click.cc fticonfig_entry_set_click.cc fticonfig_table_get_click.cc fticonfig_table_set_click.cc ifconfig_get_click.cc ifconfig_set_click.cc Log message: Perform the register_ifc_secondary() and register_ftic_secondary() registration after the registering unit is marked as running. Thus, the registration process itself can trigger some startup operations (if any). Revision Changes Path 1.3 +8 -3 xorp/fea/fticonfig_entry_get_click.cc 1.4 +8 -3 xorp/fea/fticonfig_entry_set_click.cc 1.3 +8 -3 xorp/fea/fticonfig_table_get_click.cc 1.3 +8 -3 xorp/fea/fticonfig_table_set_click.cc 1.4 +8 -3 xorp/fea/ifconfig_get_click.cc 1.5 +8 -3 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 00:33:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 16:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC0Y2Ug093381 for ; Thu, 11 Nov 2004 16:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0Y2D3035316 for ; Thu, 11 Nov 2004 16:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0Y2N1018140; Thu, 11 Nov 2004 16:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0XWN1018101 for ; Thu, 11 Nov 2004 16:33:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0XWD3035310 for ; Thu, 11 Nov 2004 16:33:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC0XWPa009272 for ; Thu, 11 Nov 2004 16:33:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC0XWbm009271 for xorp-cvs@icir.org; Fri, 12 Nov 2004 00:33:32 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 00:33:32 GMT From: Pavlin Radoslavov Message-Id: <200411120033.iAC0XWbm009271@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 00:33:32 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.cc fticonfig_table_set.cc ifconfig_set.cc Log message: If register_ifc_secondary() or register_ftic_secondary() is called, then push the current config into this new secondary mechanism that is registering. Note: currently, it is implemented only for IfConfigSet (i.e., the FtiConfigEntrySet and FtiConfigTableSet implementations are still missing). Revision Changes Path 1.6 +8 -1 xorp/fea/fticonfig_entry_set.cc 1.6 +8 -1 xorp/fea/fticonfig_table_set.cc 1.19 +7 -1 xorp/fea/ifconfig_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 00:47:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 16:48:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC0m23h096147 for ; Thu, 11 Nov 2004 16:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0m2D3035477 for ; Thu, 11 Nov 2004 16:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0m2N1018512; Thu, 11 Nov 2004 16:48:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC0lcN1018500 for ; Thu, 11 Nov 2004 16:47:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC0lbD3035471 for ; Thu, 11 Nov 2004 16:47:37 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC0lbVX009910 for ; Thu, 11 Nov 2004 16:47:37 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC0lbWx009909 for xorp-cvs@icir.org; Fri, 12 Nov 2004 00:47:37 GMT (envelope-from bms) Date: Fri, 12 Nov 2004 00:47:37 GMT From: Bruce Simpson Message-Id: <200411120047.iAC0lbWx009909@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-12 00:47:37 UTC XORP CVS repository Modified files: fea ifconfig_set.cc ifconfig_set.hh ifconfig_set_click.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc Log message: Add a flag is_discard_emulated() to IfConfigSet, which is used to determine if an underlying provider implements interface discard semantics as an interface which discards packets, or uses some other means to implement discards. Check this flag when we're about to push an interface so we know whether we should push it, or not. Submitted by: pavlin Revision Changes Path 1.20 +4 -1 xorp/fea/ifconfig_set.cc 1.21 +47 -2 xorp/fea/ifconfig_set.hh 1.6 +8 -1 xorp/fea/ifconfig_set_click.cc 1.15 +8 -1 xorp/fea/ifconfig_set_dummy.cc 1.31 +12 -1 xorp/fea/ifconfig_set_ioctl.cc 1.17 +12 -1 xorp/fea/ifconfig_set_netlink.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 01:36:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 17:37:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC1b2Wj005975 for ; Thu, 11 Nov 2004 17:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC1b2D3036017 for ; Thu, 11 Nov 2004 17:37:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC1b2N1020067; Thu, 11 Nov 2004 17:37:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC1atN1020055 for ; Thu, 11 Nov 2004 17:36:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC1asD3036013 for ; Thu, 11 Nov 2004 17:36:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC1aspG011509 for ; Thu, 11 Nov 2004 17:36:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC1as7P011508 for xorp-cvs@icir.org; Fri, 12 Nov 2004 01:36:54 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 01:36:54 GMT From: Pavlin Radoslavov Message-Id: <200411120136.iAC1as7P011508@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 01:36:54 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc Log message: Bug fix: write to the appropriate handlers when adding/removing forwarding entries to the Click lookup element. Revision Changes Path 1.5 +7 -7 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 01:37:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 17:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC1c1sQ006166 for ; Thu, 11 Nov 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC1c0D3036038 for ; Thu, 11 Nov 2004 17:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC1c0N1020107; Thu, 11 Nov 2004 17:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC1bSN1020092 for ; Thu, 11 Nov 2004 17:37:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC1bRD3036032 for ; Thu, 11 Nov 2004 17:37:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC1bR3J011580 for ; Thu, 11 Nov 2004 17:37:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC1bRqD011579 for xorp-cvs@icir.org; Fri, 12 Nov 2004 01:37:27 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 01:37:27 GMT From: Pavlin Radoslavov Message-Id: <200411120137.iAC1bRqD011579@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 01:37:27 UTC XORP CVS repository Modified files: etc/templates fea.tp Log message: Add Click FEA template. Revision Changes Path 1.25 +85 -3 xorp/etc/templates/fea.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 02:44:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 18:45:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC2j10h019077 for ; Thu, 11 Nov 2004 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC2j1D3036777 for ; Thu, 11 Nov 2004 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC2j1N1022025; Thu, 11 Nov 2004 18:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC2irN1022015 for ; Thu, 11 Nov 2004 18:44:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC2irD3036766 for ; Thu, 11 Nov 2004 18:44:53 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC2irsd013616 for ; Thu, 11 Nov 2004 18:44:53 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC2irIP013615 for xorp-cvs@icir.org; Fri, 12 Nov 2004 02:44:53 GMT (envelope-from bms) Date: Fri, 12 Nov 2004 02:44:53 GMT From: Bruce Simpson Message-Id: <200411120244.iAC2irIP013615@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/bgp xorp/bgp/harness xorp/bgp/tools xorp/cli xorp/cli/tools xorp/contrib xorp/contrib/ospfd xorp/contrib/ospfd/freebsd xorp/contrib/ospfd/src xorp/contrib/ospfd/xorp xorp/docs xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-12 02:44:52 UTC XORP CVS repository Modified files: . Makefile.in MakefileRootCheck.in README bootstrap configure configure.in bgp Makefile.am Makefile.in bgp/harness Makefile.am Makefile.in bgp/tools Makefile.am Makefile.in cli Makefile.am Makefile.in cli/tools Makefile.am Makefile.in contrib Makefile.in contrib/ospfd Makefile.in contrib/ospfd/freebsd Makefile contrib/ospfd/src Makefile.am Makefile.in contrib/ospfd/xorp Makefile.am Makefile.in docs Makefile.in docs/bgp Makefile.in docs/design_arch Makefile.in docs/fea Makefile.in docs/libxipc Makefile.in docs/libxorp Makefile.in docs/mfea Makefile.in docs/mld6igmp Makefile.in docs/multicast Makefile.in docs/pim Makefile.in docs/pim_testsuite Makefile.in docs/rib Makefile.in docs/rtrmgr Makefile.in docs/slides Makefile.in docs/slides/status_2004_02 Makefile.in docs/snmp Makefile.in docs/test_harness Makefile.in docs/user_manual Makefile.in docs/xorpdev_101 Makefile.in etc Makefile.in etc/templates Makefile.in fea Makefile.am Makefile.in MakefileRootCheck.in fea/tools Makefile.am Makefile.in fib2mrib Makefile.am Makefile.in libcomm Makefile.am Makefile.in libfeaclient Makefile.am Makefile.in libproto Makefile.am Makefile.in libxipc Makefile.am Makefile.in libxorp Makefile.am Makefile.in mibs Makefile.am Makefile.in mibs/snmpdscripts Makefile.am Makefile.in mibs/tests Makefile.in mld6igmp Makefile.am Makefile.in mrt Makefile.am Makefile.in pim Makefile.am Makefile.in policy Makefile.am Makefile.in policy/backend Makefile.am Makefile.in policy/common Makefile.am Makefile.in policy/test Makefile.am Makefile.in rib Makefile.am Makefile.in rib/tools Makefile.am Makefile.in rip Makefile.am Makefile.in rip/tools Makefile.am Makefile.in rtrmgr Makefile.am Makefile.in static_routes Makefile.am Makefile.in utils Makefile.am Makefile.in utils/flower_malloc Makefile.am Makefile.in xrl Makefile.in xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in xrl/tests Makefile.am Makefile.in Log message: Mega-commit: phase 1 of libtoolization. Activate the use of libtoolize in bootstrap. Use libtool target macros (*_LIBRARIES -> *_LTLIBRARIES) in all automake Makefiles. Uncomment libtool macros in configure.in. Build all libraries statically by default to begin with. Remove AC_PROG_RANLIB as it is redundant. Update all targets which depend on libraries to use libtool libraries instead (.a -> .la). Comment the libtool version used in the README. Regen all. TODO: Update the mib, libtecla and other shared library components. Approved by: atanu, pavlin Tested on: FreeBSD (but), Linux (koala) Revision Changes Path 1.37 +30 -14 xorp/Makefile.in 1.4 +30 -14 xorp/MakefileRootCheck.in 1.28 +3 -1 xorp/README 1.34 +99 -99 xorp/bgp/Makefile.am 1.46 +225 -206 xorp/bgp/Makefile.in 1.15 +11 -11 xorp/bgp/harness/Makefile.am 1.28 +78 -51 xorp/bgp/harness/Makefile.in 1.10 +10 -10 xorp/bgp/tools/Makefile.am 1.25 +75 -48 xorp/bgp/tools/Makefile.in 1.16 +2 -2 xorp/bootstrap 1.9 +25 -28 xorp/cli/Makefile.am 1.21 +89 -93 xorp/cli/Makefile.in 1.2 +5 -5 xorp/cli/tools/Makefile.am 1.2 +45 -18 xorp/cli/tools/Makefile.in 1.131 +1499 -434 xorp/configure 1.124 +6 -8 xorp/configure.in 1.2 +31 -16 xorp/contrib/Makefile.in 1.15 +31 -16 xorp/contrib/ospfd/Makefile.in 1.2 +37 -37 xorp/contrib/ospfd/freebsd/Makefile 1.4 +75 -75 xorp/contrib/ospfd/src/Makefile.am 1.17 +123 -103 xorp/contrib/ospfd/src/Makefile.in 1.10 +8 -8 xorp/contrib/ospfd/xorp/Makefile.am 1.23 +72 -45 xorp/contrib/ospfd/xorp/Makefile.in 1.20 +31 -16 xorp/docs/Makefile.in 1.15 +29 -11 xorp/docs/bgp/Makefile.in 1.16 +29 -11 xorp/docs/design_arch/Makefile.in 1.16 +29 -11 xorp/docs/fea/Makefile.in 1.17 +29 -11 xorp/docs/libxipc/Makefile.in 1.16 +29 -11 xorp/docs/libxorp/Makefile.in 1.15 +29 -11 xorp/docs/mfea/Makefile.in 1.15 +29 -11 xorp/docs/mld6igmp/Makefile.in 1.15 +29 -11 xorp/docs/multicast/Makefile.in 1.15 +29 -11 xorp/docs/pim/Makefile.in 1.30 +29 -11 xorp/docs/pim_testsuite/Makefile.in 1.15 +29 -11 xorp/docs/rib/Makefile.in 1.17 +29 -11 xorp/docs/rtrmgr/Makefile.in 1.4 +31 -16 xorp/docs/slides/Makefile.in 1.3 +29 -11 xorp/docs/slides/status_2004_02/Makefile.in 1.16 +29 -11 xorp/docs/snmp/Makefile.in 1.15 +29 -11 xorp/docs/test_harness/Makefile.in 1.5 +29 -11 xorp/docs/user_manual/Makefile.in 1.3 +29 -11 xorp/docs/xorpdev_101/Makefile.in 1.6 +31 -16 xorp/etc/Makefile.in 1.17 +26 -11 xorp/etc/templates/Makefile.in 1.46 +220 -220 xorp/fea/Makefile.am 1.57 +384 -367 xorp/fea/Makefile.in 1.5 +24 -9 xorp/fea/MakefileRootCheck.in 1.2 +9 -9 xorp/fea/tools/Makefile.am 1.2 +62 -35 xorp/fea/tools/Makefile.in 1.6 +20 -20 xorp/fib2mrib/Makefile.am 1.8 +80 -56 xorp/fib2mrib/Makefile.in 1.7 +9 -9 xorp/libcomm/Makefile.am 1.20 +62 -40 xorp/libcomm/Makefile.in 1.7 +31 -31 xorp/libfeaclient/Makefile.am 1.11 +89 -65 xorp/libfeaclient/Makefile.in 1.8 +18 -18 xorp/libproto/Makefile.am 1.20 +75 -49 xorp/libproto/Makefile.in 1.38 +112 -112 xorp/libxipc/Makefile.am 1.54 +239 -213 xorp/libxipc/Makefile.in 1.30 +77 -77 xorp/libxorp/Makefile.am 1.40 +140 -111 xorp/libxorp/Makefile.in 1.21 +13 -9 xorp/mibs/Makefile.am 1.30 +55 -22 xorp/mibs/Makefile.in 1.3 +3 -3 xorp/mibs/snmpdscripts/Makefile.am 1.7 +36 -22 xorp/mibs/snmpdscripts/Makefile.in 1.7 +25 -10 xorp/mibs/tests/Makefile.in 1.24 +56 -56 xorp/mld6igmp/Makefile.am 1.36 +161 -136 xorp/mld6igmp/Makefile.in 1.7 +21 -22 xorp/mrt/Makefile.am 1.19 +80 -49 xorp/mrt/Makefile.in 1.28 +116 -116 xorp/pim/Makefile.am 1.40 +276 -237 xorp/pim/Makefile.in 1.9 +64 -64 xorp/policy/Makefile.am 1.21 +111 -89 xorp/policy/Makefile.in 1.3 +36 -36 xorp/policy/backend/Makefile.am 1.3 +83 -60 xorp/policy/backend/Makefile.in 1.3 +25 -25 xorp/policy/common/Makefile.am 1.3 +73 -49 xorp/policy/common/Makefile.in 1.3 +9 -9 xorp/policy/test/Makefile.am 1.3 +53 -25 xorp/policy/test/Makefile.in 1.37 +72 -72 xorp/rib/Makefile.am 1.48 +297 -277 xorp/rib/Makefile.in 1.3 +8 -8 xorp/rib/tools/Makefile.am 1.2 +52 -31 xorp/rib/tools/Makefile.in 1.33 +148 -150 xorp/rip/Makefile.am 1.45 +786 -540 xorp/rip/Makefile.in 1.4 +15 -15 xorp/rip/tools/Makefile.am 1.4 +68 -39 xorp/rip/tools/Makefile.in 1.33 +13 -16 xorp/rtrmgr/Makefile.am 1.43 +83 -64 xorp/rtrmgr/Makefile.in 1.8 +21 -21 xorp/static_routes/Makefile.am 1.8 +81 -56 xorp/static_routes/Makefile.in 1.11 +2 -5 xorp/utils/Makefile.am 1.24 +42 -27 xorp/utils/Makefile.in 1.2 +3 -3 xorp/utils/flower_malloc/Makefile.am 1.4 +55 -25 xorp/utils/flower_malloc/Makefile.in 1.14 +31 -16 xorp/xrl/Makefile.in 1.25 +123 -123 xorp/xrl/interfaces/Makefile.am 1.38 +584 -673 xorp/xrl/interfaces/Makefile.in 1.45 +72 -72 xorp/xrl/targets/Makefile.am 1.57 +373 -412 xorp/xrl/targets/Makefile.in 1.7 +9 -9 xorp/xrl/tests/Makefile.am 1.19 +61 -34 xorp/xrl/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 02:52:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 18:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC2r1Ht020628 for ; Thu, 11 Nov 2004 18:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC2r1D3036868 for ; Thu, 11 Nov 2004 18:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC2r1N1022296; Thu, 11 Nov 2004 18:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC2qsN1022287 for ; Thu, 11 Nov 2004 18:52:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC2qsD3036866 for ; Thu, 11 Nov 2004 18:52:54 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC2qsc5013767 for ; Thu, 11 Nov 2004 18:52:54 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC2qsPr013766 for xorp-cvs@icir.org; Fri, 12 Nov 2004 02:52:54 GMT (envelope-from bms) Date: Fri, 12 Nov 2004 02:52:54 GMT From: Bruce Simpson Message-Id: <200411120252.iAC2qsPr013766@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-12 02:52:54 UTC XORP CVS repository Modified files: . configure.in Log message: Forced commit to note that there may be some issues when bootstrapping with earlier automake versions, i.e. 1.4, and binarytarget_CXXFLAGS not being expanded by the m4 macros. Re-bootstrapping with a newer automake appears to workaround the problem and builds OK. Revision Changes Path 1.125 +1 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 07:49:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 11 Nov 2004 23:50:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAC7o2nm089128 for ; Thu, 11 Nov 2004 23:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC7o1D3039629 for ; Thu, 11 Nov 2004 23:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC7o1N1029399; Thu, 11 Nov 2004 23:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAC7nmN1029389 for ; Thu, 11 Nov 2004 23:49:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAC7nmD3039624 for ; Thu, 11 Nov 2004 23:49:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAC7nlLf017228 for ; Thu, 11 Nov 2004 23:49:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAC7nlSK017227 for xorp-cvs@icir.org; Fri, 12 Nov 2004 07:49:47 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 07:49:47 GMT From: Pavlin Radoslavov Message-Id: <200411120749.iAC7nlSK017227@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 07:49:47 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh fticonfig_entry_set_click.cc ifconfig_set_click.cc Log message: * Add new method ClickSocket::write_config() for writing Click configuration. * Eliminate duplicated code which was used in number of places to do the same thing. Revision Changes Path 1.5 +51 -1 xorp/fea/click_socket.cc 1.3 +12 -1 xorp/fea/click_socket.hh 1.6 +17 -79 xorp/fea/fticonfig_entry_set_click.cc 1.7 +5 -31 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Fri Nov 12 17:43:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 12 Nov 2004 09:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iACHi1nT011439 for ; Fri, 12 Nov 2004 09:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iACHi1D3047632 for ; Fri, 12 Nov 2004 09:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iACHi1N1016274; Fri, 12 Nov 2004 09:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iACHhfN1016258 for ; Fri, 12 Nov 2004 09:43:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iACHhfD3047626 for ; Fri, 12 Nov 2004 09:43:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iACHhfdT025973 for ; Fri, 12 Nov 2004 09:43:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iACHhfTC025972 for xorp-cvs@icir.org; Fri, 12 Nov 2004 17:43:41 GMT (envelope-from pavlin) Date: Fri, 12 Nov 2004 17:43:41 GMT From: Pavlin Radoslavov Message-Id: <200411121743.iACHhfTC025972@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-12 17:43:41 UTC XORP CVS repository Modified files: fea iftree.hh Log message: Don't set the _soft flag inside the set_discard() method, because this is not necessary anymore after the introduction of the new IfConfigSet::is_discard_emulated() method. Revision Changes Path 1.26 +1 -3 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:01 2005 Subject: No subject Mon Nov 15 21:01:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 13:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAFL21FT073524 for ; Mon, 15 Nov 2004 13:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAFL2129097711 for ; Mon, 15 Nov 2004 13:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAFL21N1009916; Mon, 15 Nov 2004 13:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAFL18N1009879 for ; Mon, 15 Nov 2004 13:01:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAFL1729097701 for ; Mon, 15 Nov 2004 13:01:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAFL17BS065883 for ; Mon, 15 Nov 2004 13:01:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAFL17bD065882 for xorp-cvs@icir.org; Mon, 15 Nov 2004 21:01:07 GMT (envelope-from atanu) Date: Mon, 15 Nov 2004 21:01:07 GMT From: Atanu Ghosh Message-Id: <200411152101.iAFL17bD065882@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-15 21:01:07 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Add three tests (test10, test11, test12) all dealing with router IDs. test10: A peering with router ID 0.0.0.0 causes BGP to core dump. It looks like router ID 0.0.0.0 may be used internally by BGP. test11: Two peerings with the same router ID cause BGP to fail. test12: A new peering reusing a router ID alse cause BGP to fail. Revision Changes Path 1.35 +65 -2 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Mon Nov 15 22:06:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 14:07:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAFM727W019352 for ; Mon, 15 Nov 2004 14:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAFM7229098495 for ; Mon, 15 Nov 2004 14:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAFM71N1012196; Mon, 15 Nov 2004 14:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAFM64N1012131 for ; Mon, 15 Nov 2004 14:06:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAFM6329098480 for ; Mon, 15 Nov 2004 14:06:03 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAFM62rN014631 for ; Mon, 15 Nov 2004 14:06:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAFM62Ln014630 for xorp-cvs@icir.org; Mon, 15 Nov 2004 22:06:02 GMT (envelope-from atanu) Date: Mon, 15 Nov 2004 22:06:02 GMT From: Atanu Ghosh Message-Id: <200411152206.iAFM62Ln014630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-15 22:06:02 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Replace spaces with TAB in test12, for consistent output with the test is run. Revision Changes Path 1.36 +2 -2 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 01:48:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 17:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAG1n1ig063754 for ; Mon, 15 Nov 2004 17:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG1n129000893 for ; Mon, 15 Nov 2004 17:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG1n0N1019543; Mon, 15 Nov 2004 17:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG1mqN1019530 for ; Mon, 15 Nov 2004 17:48:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG1mq29000889 for ; Mon, 15 Nov 2004 17:48:52 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAG1mqvb003337 for ; Mon, 15 Nov 2004 17:48:52 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAG1mqEI003336 for xorp-cvs@icir.org; Tue, 16 Nov 2004 01:48:52 GMT (envelope-from mjh) Date: Tue, 16 Nov 2004 01:48:52 GMT From: Mark Handley Message-Id: <200411160148.iAG1mqEI003336@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-11-16 01:48:51 UTC XORP CVS repository Modified files: bgp route_table_ribin.cc Log message: Fix for STL iterator access error in next_chain() reported by Atanu. Revision Changes Path 1.34 +29 -28 xorp/bgp/route_table_ribin.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 05:41:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 21:42:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAG5g2Dk010232 for ; Mon, 15 Nov 2004 21:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5g229003147 for ; Mon, 15 Nov 2004 21:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5g1N1025117; Mon, 15 Nov 2004 21:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5f6N1025075 for ; Mon, 15 Nov 2004 21:41:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5f629003143 for ; Mon, 15 Nov 2004 21:41:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAG5f6fc051509 for ; Mon, 15 Nov 2004 21:41:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAG5f6WE051508 for xorp-cvs@icir.org; Tue, 16 Nov 2004 05:41:06 GMT (envelope-from pavlin) Date: Tue, 16 Nov 2004 05:41:06 GMT From: Pavlin Radoslavov Message-Id: <200411160541.iAG5f6WE051508@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-16 05:41:06 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in op_commands.cc libxorp Makefile.am Makefile.in Added files: libxorp popen.cc popen.hh Removed files: rtrmgr popen.cc popen.hh Log message: Move files rtrmgr/popen.hh and rtrmgr/popen.cc to libxorp, so the facility they provide can be used elsewhere. Revision Changes Path 1.31 +3 -1 xorp/libxorp/Makefile.am 1.41 +7 -5 xorp/libxorp/Makefile.in 1.1 +209 -0 xorp/libxorp/popen.cc (new) 1.1 +23 -0 xorp/libxorp/popen.hh (new) 1.34 +1 -3 xorp/rtrmgr/Makefile.am 1.44 +4 -5 xorp/rtrmgr/Makefile.in 1.35 +2 -2 xorp/rtrmgr/op_commands.cc 1.9 +0 -209 xorp/rtrmgr/popen.cc (dead) 1.6 +0 -23 xorp/rtrmgr/popen.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 05:42:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 21:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAG5h1rp010433 for ; Mon, 15 Nov 2004 21:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5h129003164 for ; Mon, 15 Nov 2004 21:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5h1N1025146; Mon, 15 Nov 2004 21:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5g6N1025122 for ; Mon, 15 Nov 2004 21:42:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5g629003149 for ; Mon, 15 Nov 2004 21:42:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAG5g6S0051563 for ; Mon, 15 Nov 2004 21:42:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAG5g61v051562 for xorp-cvs@icir.org; Tue, 16 Nov 2004 05:42:06 GMT (envelope-from pavlin) Date: Tue, 16 Nov 2004 05:42:06 GMT From: Pavlin Radoslavov Message-Id: <200411160542.iAG5g61v051562@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-16 05:42:06 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Replace commented-out text with a clarifying comment. Revision Changes Path 1.36 +6 -5 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 05:45:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 15 Nov 2004 21:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAG5k1RW011034 for ; Mon, 15 Nov 2004 21:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5k129003206 for ; Mon, 15 Nov 2004 21:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5k1N1025211; Mon, 15 Nov 2004 21:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAG5jgN1025195 for ; Mon, 15 Nov 2004 21:45:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAG5jg29003203 for ; Mon, 15 Nov 2004 21:45:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAG5jf8e058328 for ; Mon, 15 Nov 2004 21:45:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAG5jfi4058327 for xorp-cvs@icir.org; Tue, 16 Nov 2004 05:45:41 GMT (envelope-from pavlin) Date: Tue, 16 Nov 2004 05:45:41 GMT From: Pavlin Radoslavov Message-Id: <200411160545.iAG5jfi4058327@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-16 05:45:41 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in Log message: Keep the file names in alphabetical order. Revision Changes Path 1.32 +6 -6 xorp/libxorp/Makefile.am 1.42 +12 -12 xorp/libxorp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 21:39:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Nov 2004 13:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAGLe2uk013209 for ; Tue, 16 Nov 2004 13:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAGLe229015136 for ; Tue, 16 Nov 2004 13:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAGLe1N1024563; Tue, 16 Nov 2004 13:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAGLdMN1024544 for ; Tue, 16 Nov 2004 13:39:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAGLdM29015125 for ; Tue, 16 Nov 2004 13:39:22 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAGLdMns069588 for ; Tue, 16 Nov 2004 13:39:22 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAGLdM2G069587 for xorp-cvs@icir.org; Tue, 16 Nov 2004 21:39:22 GMT (envelope-from bms) Date: Tue, 16 Nov 2004 21:39:22 GMT From: Bruce Simpson Message-Id: <200411162139.iAGLdM2G069587@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-16 21:39:22 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in Log message: Workaround for building SNMP MIB .so's for the libtoolized XORP. Specify the use of .la targets instead of .a ones. Note that the real fix is to rewrite mibs/Makefile.am (and flower_malloc) to use the libtool automake macros for shared library building. Revision Changes Path 1.22 +4 -4 xorp/mibs/Makefile.am 1.31 +3 -3 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Tue Nov 16 21:43:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Nov 2004 13:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAGLi1h3014153 for ; Tue, 16 Nov 2004 13:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAGLi129015200 for ; Tue, 16 Nov 2004 13:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAGLi1N1024714; Tue, 16 Nov 2004 13:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAGLhDN1024698 for ; Tue, 16 Nov 2004 13:43:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAGLhC29015190 for ; Tue, 16 Nov 2004 13:43:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAGLhC4S069737 for ; Tue, 16 Nov 2004 13:43:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAGLhCqb069736 for xorp-cvs@icir.org; Tue, 16 Nov 2004 21:43:12 GMT (envelope-from pavlin) Date: Tue, 16 Nov 2004 21:43:12 GMT From: Pavlin Radoslavov Message-Id: <200411162143.iAGLhCqb069736@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-16 21:43:12 UTC XORP CVS repository Modified files: rtrmgr cli.cc op_commands.cc op_commands.hh Log message: Pass the main eventloop as a reference instead of a pointer. This change is for consistency with how we deal with the eventloop elsewhere. Revision Changes Path 1.58 +2 -2 xorp/rtrmgr/cli.cc 1.37 +7 -7 xorp/rtrmgr/op_commands.cc 1.21 +5 -5 xorp/rtrmgr/op_commands.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Wed Nov 17 00:30:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Nov 2004 16:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAH0V1Av075542 for ; Tue, 16 Nov 2004 16:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH0V129017148 for ; Tue, 16 Nov 2004 16:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH0V1N1000116; Tue, 16 Nov 2004 16:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH0UWN1000093 for ; Tue, 16 Nov 2004 16:30:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH0UV29017140 for ; Tue, 16 Nov 2004 16:30:32 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAH0UVTN071530 for ; Tue, 16 Nov 2004 16:30:31 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAH0UVMO071529 for xorp-cvs@icir.org; Wed, 17 Nov 2004 00:30:31 GMT (envelope-from bms) Date: Wed, 17 Nov 2004 00:30:31 GMT From: Bruce Simpson Message-Id: <200411170030.iAH0UVMO071529@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-17 00:30:31 UTC XORP CVS repository Modified files: . Makefile.am Log message: Comment out SNMP MIBS from being built until a solution is found for the libtool problem. Revision Changes Path 1.17 +2 -2 xorp/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Wed Nov 17 01:15:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Nov 2004 17:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAH1G1St055015 for ; Tue, 16 Nov 2004 17:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH1G129017625 for ; Tue, 16 Nov 2004 17:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH1G1N1001793; Tue, 16 Nov 2004 17:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH1FPN1001777 for ; Tue, 16 Nov 2004 17:15:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH1FP29017618 for ; Tue, 16 Nov 2004 17:15:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAH1FPZ0072075 for ; Tue, 16 Nov 2004 17:15:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAH1FPI1072074 for xorp-cvs@icir.org; Wed, 17 Nov 2004 01:15:25 GMT (envelope-from atanu) Date: Wed, 17 Nov 2004 01:15:25 GMT From: Atanu Ghosh Message-Id: <200411170115.iAH1FPI1072074@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-17 01:15:25 UTC XORP CVS repository Modified files: . Makefile.in Log message: Makefile.am was changed; hence run bootstrap and checkin Makefile.in. Revision Changes Path 1.38 +4 -3 xorp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Wed Nov 17 02:42:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 16 Nov 2004 18:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAH2h1QG006428 for ; Tue, 16 Nov 2004 18:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH2h129018509 for ; Tue, 16 Nov 2004 18:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH2h1N1004497; Tue, 16 Nov 2004 18:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAH2gwN1004490 for ; Tue, 16 Nov 2004 18:42:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAH2gw29018507 for ; Tue, 16 Nov 2004 18:42:58 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAH2gwkn072894 for ; Tue, 16 Nov 2004 18:42:58 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAH2gwGM072893 for xorp-cvs@icir.org; Wed, 17 Nov 2004 02:42:58 GMT (envelope-from bms) Date: Wed, 17 Nov 2004 02:42:58 GMT From: Bruce Simpson Message-Id: <200411170242.iAH2gwGM072893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-17 02:42:58 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in . Makefile.am Makefile.in Log message: Uncomment the mibs subdirectory build. Do not change the dependencies, but instead point at where the objects really are. This assumes knowledge about libtool's behaviour. Note that this is a kludge and will break if any of libxipc, libxorp or libcomm are built as shared objects. The correct fix is to teach mibs/Makefile.am about libtool objects. Revision Changes Path 1.18 +2 -2 xorp/Makefile.am 1.39 +3 -4 xorp/Makefile.in 1.23 +4 -4 xorp/mibs/Makefile.am 1.32 +3 -3 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Wed Nov 17 12:07:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 17 Nov 2004 04:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAHC81Ad032620 for ; Wed, 17 Nov 2004 04:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAHC8129027019 for ; Wed, 17 Nov 2004 04:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAHC81N1019256; Wed, 17 Nov 2004 04:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAHC77N1019228 for ; Wed, 17 Nov 2004 04:07:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAHC7629026995 for ; Wed, 17 Nov 2004 04:07:06 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAHC76vA077786 for ; Wed, 17 Nov 2004 04:07:06 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAHC76A6077785 for xorp-cvs@icir.org; Wed, 17 Nov 2004 12:07:06 GMT (envelope-from bms) Date: Wed, 17 Nov 2004 12:07:06 GMT From: Bruce Simpson Message-Id: <200411171207.iAHC76A6077785@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-17 12:07:06 UTC XORP CVS repository Log message: Directory /usr/local/www/data/cvs/xorp/mibs/config added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Thu Nov 18 14:25:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 06:26:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAIEQ1nW069061 for ; Thu, 18 Nov 2004 06:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIEQ129049315 for ; Thu, 18 Nov 2004 06:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIEQ1N1006608; Thu, 18 Nov 2004 06:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIEPUN1006594 for ; Thu, 18 Nov 2004 06:25:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIEPU29049311 for ; Thu, 18 Nov 2004 06:25:30 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAIEPUo1010595 for ; Thu, 18 Nov 2004 06:25:30 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAIEPUmT010594 for xorp-cvs@icir.org; Thu, 18 Nov 2004 14:25:30 GMT (envelope-from bms) Date: Thu, 18 Nov 2004 14:25:30 GMT From: Bruce Simpson Message-Id: <200411181425.iAIEPUmT010594@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/fib2mrib xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-18 14:25:30 UTC XORP CVS repository Modified files: fea xrl_fti.cc xrl_fti.hh xrl_target.cc xrl_target.hh fib2mrib xrl_fib2mrib_node.cc xrl/interfaces fea_fib.xif fea_fib_xif.cc fea_fib_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: Add a means of filtering the messages that FIB clients get when they register with the FEA. Update fib2mrib accordingly. TODO: Push this state into FibClient and use it. Requested by: atanu Revision Changes Path 1.12 +9 -3 xorp/fea/xrl_fti.cc 1.11 +12 -4 xorp/fea/xrl_fti.hh 1.56 +9 -5 xorp/fea/xrl_target.cc 1.43 +9 -3 xorp/fea/xrl_target.hh 1.16 +5 -1 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.2 +9 -4 xorp/xrl/interfaces/fea_fib.xif 1.4 +9 -1 xorp/xrl/interfaces/fea_fib_xif.cc 1.3 +9 -1 xorp/xrl/interfaces/fea_fib_xif.hh 1.42 +7 -3 xorp/xrl/targets/fea.xrls 1.44 +11 -7 xorp/xrl/targets/fea_base.cc 1.48 +11 -3 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Thu Nov 18 14:39:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 06:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAIEe11u071797 for ; Thu, 18 Nov 2004 06:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIEe129049433 for ; Thu, 18 Nov 2004 06:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIEe0N1007002; Thu, 18 Nov 2004 06:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIEdvN1006993 for ; Thu, 18 Nov 2004 06:39:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIEdv29049428 for ; Thu, 18 Nov 2004 06:39:57 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAIEdvEn010747 for ; Thu, 18 Nov 2004 06:39:57 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAIEdvVi010746 for xorp-cvs@icir.org; Thu, 18 Nov 2004 14:39:57 GMT (envelope-from bms) Date: Thu, 18 Nov 2004 14:39:57 GMT From: Bruce Simpson Message-Id: <200411181439.iAIEdvVi010746@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-18 14:39:57 UTC XORP CVS repository Modified files: fea xrl_fti.cc xrl_fti.hh Log message: Push the event filtering preferences expressed by FEA FIB clients down into the FibClient object, and pay attention to them when it's time to send a FIB event. Requested by: atanu Revision Changes Path 1.13 +24 -14 xorp/fea/xrl_fti.cc 1.12 +11 -2 xorp/fea/xrl_fti.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Thu Nov 18 11:30:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 11:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAIJV2FR065386 for ; Thu, 18 Nov 2004 11:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIJV129054049 for ; Thu, 18 Nov 2004 11:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIJV1N1015484; Thu, 18 Nov 2004 11:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIJUUN1015454 for ; Thu, 18 Nov 2004 11:30:30 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIJUU29054047; Thu, 18 Nov 2004 11:30:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id iAIJUUr3019321; Thu, 18 Nov 2004 11:30:30 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200411181930.iAIJUUr3019321@possum.icir.org> To: Bruce Simpson cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea In-Reply-To: Message from Bruce Simpson of "Thu, 18 Nov 2004 14:39:57 GMT." <200411181439.iAIEdvVi010746@xorpc.icir.org> Date: Thu, 18 Nov 2004 11:30:30 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/www/data/cvs > Module name: xorp > Changes by: bms@xorpc.icir.org 2004-11-18 14:39:57 UTC > > XORP CVS repository > > > Modified files: > fea xrl_fti.cc xrl_fti.hh > > Log message: > Push the event filtering preferences expressed > by FEA FIB clients down into the FibClient > object, and pay attention to them when it's > time to send a FIB event. > > Requested by: atanu Nice work! BTW, when it comes to propagating the updated or unresolved routes, and if a client has requested to receive, say, only the updates then is it suppose to receive the unresolved routes as well? I believe the answer is no. If this is correct, then you you may want to apply the following simple patch. Thanks, Pavlin Index: xrl_fti.cc =================================================================== RCS file: /usr/local/share/doc/apache/cvs/xorp/fea/xrl_fti.cc,v retrieving revision 1.13 diff -c -u -r1.13 xrl_fti.cc --- xrl_fti.cc 18 Nov 2004 14:39:57 -0000 1.13 +++ xrl_fti.cc 18 Nov 2004 19:26:23 -0000 @@ -483,7 +483,7 @@ // If FIB updates were requested by the client, then send notification // of a route being added or deleted. // - if (_send_updates) { + if (_send_updates && !fte.is_unresolved()) { if (!fte.is_deleted()) { // Send notification of a route being added success = _xftm.send_fib_client_add_route(_target_name, fte); > > Revision Changes Path > 1.13 +24 -14 xorp/fea/xrl_fti.cc > 1.12 +11 -2 xorp/fea/xrl_fti.hh > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Thu Nov 18 20:50:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 12:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAIKp2B9015068 for ; Thu, 18 Nov 2004 12:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIKp229055063 for ; Thu, 18 Nov 2004 12:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIKp1N1018426; Thu, 18 Nov 2004 12:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAIKoNN1018403 for ; Thu, 18 Nov 2004 12:50:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAIKoM29055058 for ; Thu, 18 Nov 2004 12:50:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAIKoMbm016027 for ; Thu, 18 Nov 2004 12:50:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAIKoMJw016026 for xorp-cvs@icir.org; Thu, 18 Nov 2004 20:50:22 GMT (envelope-from pavlin) Date: Thu, 18 Nov 2004 20:50:22 GMT From: Pavlin Radoslavov Message-Id: <200411182050.iAIKoMJw016026@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-18 20:50:22 UTC XORP CVS repository Modified files: fea test_add_route.sh Log message: Bug fix: The previous commit had misnamed the subtest_lookup_deleted_*() functions during function renaming. Now the misnamed functions are renamed to subtest_lookup_deleted_route_by_network*() and subtest_lookup_deleted_route_by_dest*() as appropriate. Revision Changes Path 1.21 +9 -9 xorp/fea/test_add_route.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:02 2005 Subject: No subject Thu Nov 18 21:21:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 13:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAILM1cZ022698 for ; Thu, 18 Nov 2004 13:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAILM129055480 for ; Thu, 18 Nov 2004 13:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAILM1N1019397; Thu, 18 Nov 2004 13:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAILL2N1019370 for ; Thu, 18 Nov 2004 13:21:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAILL229055473 for ; Thu, 18 Nov 2004 13:21:02 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAILL2hl016330 for ; Thu, 18 Nov 2004 13:21:02 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAILL2Vs016329 for xorp-cvs@icir.org; Thu, 18 Nov 2004 21:21:02 GMT (envelope-from bms) Date: Thu, 18 Nov 2004 21:21:02 GMT From: Bruce Simpson Message-Id: <200411182121.iAILL2Vs016329@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-18 21:21:02 UTC XORP CVS repository Modified files: fea xrl_fti.cc Log message: Fix send update logic. Only send the update if the Fte wasn't an unresolved route. Submitted by: pavlin Revision Changes Path 1.14 +2 -2 xorp/fea/xrl_fti.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 05:19:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 21:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ5K1jv019904 for ; Thu, 18 Nov 2004 21:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ5K129060653 for ; Thu, 18 Nov 2004 21:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ5K1N1004283; Thu, 18 Nov 2004 21:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ5JIN1004254 for ; Thu, 18 Nov 2004 21:19:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ5JI29060646 for ; Thu, 18 Nov 2004 21:19:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ5JIFM029768 for ; Thu, 18 Nov 2004 21:19:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ5JIVB029767 for xorp-cvs@icir.org; Fri, 19 Nov 2004 05:19:18 GMT (envelope-from bms) Date: Fri, 19 Nov 2004 05:19:18 GMT From: Bruce Simpson Message-Id: <200411190519.iAJ5JIVB029767@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/bgp xorp/bgp/harness xorp/bgp/tools xorp/cli xorp/cli/tools xorp/contrib xorp/contrib/ospfd xorp/contrib/ospfd/src xorp/contrib/ospfd/xorp xorp/docs xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-19 05:19:18 UTC XORP CVS repository Modified files: . Makefile.in MakefileRootCheck.in bootstrap config.h.in configure configure.in bgp Makefile.in bgp/harness Makefile.in bgp/tools Makefile.in cli Makefile.in cli/tools Makefile.in contrib Makefile.in contrib/ospfd Makefile.in contrib/ospfd/src Makefile.in contrib/ospfd/xorp Makefile.in docs Makefile.in docs/bgp Makefile.in docs/design_arch Makefile.in docs/fea Makefile.in docs/libxipc Makefile.in docs/libxorp Makefile.in docs/mfea Makefile.in docs/mld6igmp Makefile.in docs/multicast Makefile.in docs/pim Makefile.in docs/pim_testsuite Makefile.in docs/rib Makefile.in docs/rtrmgr Makefile.in docs/slides Makefile.in docs/slides/status_2004_02 Makefile.in docs/snmp Makefile.in docs/test_harness Makefile.in docs/user_manual Makefile.in docs/xorpdev_101 Makefile.in etc Makefile.in etc/templates Makefile.in fea Makefile.in MakefileRootCheck.in fea/tools Makefile.in fib2mrib Makefile.in libcomm Makefile.in libfeaclient Makefile.in libproto Makefile.in libxipc Makefile.in libxorp Makefile.in mibs Makefile.am Makefile.in mibs/snmpdscripts Makefile.in mibs/tests Makefile.in mld6igmp Makefile.in mrt Makefile.in pim Makefile.in policy Makefile.in policy/backend Makefile.in policy/common Makefile.in policy/test Makefile.in rib Makefile.in rib/tools Makefile.in rip Makefile.in rip/tools Makefile.in rtrmgr Makefile.in static_routes Makefile.in utils Makefile.in utils/flower_malloc Makefile.in xrl Makefile.in xrl/interfaces Makefile.in xrl/targets Makefile.in xrl/tests Makefile.in Added files: mibs COPYING INSTALL aclocal.m4 configure configure.in mibs/config config.guess config.sub depcomp install-sh ltconfig ltmain.sh missing mkinstalldirs Log message: Libtoolize the mibs directory separately, by treating it as a separate package, in order to enforce dynamic linkage in a libtool-correct manner. This completes the libtoolization of the regular XORP build. Approved by: atanu Revision Changes Path 1.40 +1 -4 xorp/Makefile.in 1.5 +1 -4 xorp/MakefileRootCheck.in 1.47 +0 -3 xorp/bgp/Makefile.in 1.29 +0 -3 xorp/bgp/harness/Makefile.in 1.26 +0 -3 xorp/bgp/tools/Makefile.in 1.17 +33 -2 xorp/bootstrap 1.22 +0 -3 xorp/cli/Makefile.in 1.3 +0 -3 xorp/cli/tools/Makefile.in 1.38 +0 -7 xorp/config.h.in 1.132 +14 -522 xorp/configure 1.126 +11 -223 xorp/configure.in 1.3 +0 -3 xorp/contrib/Makefile.in 1.16 +0 -3 xorp/contrib/ospfd/Makefile.in 1.18 +0 -3 xorp/contrib/ospfd/src/Makefile.in 1.24 +0 -3 xorp/contrib/ospfd/xorp/Makefile.in 1.21 +0 -3 xorp/docs/Makefile.in 1.16 +0 -3 xorp/docs/bgp/Makefile.in 1.17 +0 -3 xorp/docs/design_arch/Makefile.in 1.17 +0 -3 xorp/docs/fea/Makefile.in 1.18 +0 -3 xorp/docs/libxipc/Makefile.in 1.17 +0 -3 xorp/docs/libxorp/Makefile.in 1.16 +0 -3 xorp/docs/mfea/Makefile.in 1.16 +0 -3 xorp/docs/mld6igmp/Makefile.in 1.16 +0 -3 xorp/docs/multicast/Makefile.in 1.16 +0 -3 xorp/docs/pim/Makefile.in 1.31 +0 -3 xorp/docs/pim_testsuite/Makefile.in 1.16 +0 -3 xorp/docs/rib/Makefile.in 1.18 +0 -3 xorp/docs/rtrmgr/Makefile.in 1.5 +0 -3 xorp/docs/slides/Makefile.in 1.4 +0 -3 xorp/docs/slides/status_2004_02/Makefile.in 1.17 +0 -3 xorp/docs/snmp/Makefile.in 1.16 +0 -3 xorp/docs/test_harness/Makefile.in 1.6 +0 -3 xorp/docs/user_manual/Makefile.in 1.4 +0 -3 xorp/docs/xorpdev_101/Makefile.in 1.7 +0 -3 xorp/etc/Makefile.in 1.18 +0 -3 xorp/etc/templates/Makefile.in 1.58 +0 -3 xorp/fea/Makefile.in 1.6 +0 -3 xorp/fea/MakefileRootCheck.in 1.3 +0 -3 xorp/fea/tools/Makefile.in 1.9 +0 -3 xorp/fib2mrib/Makefile.in 1.21 +0 -3 xorp/libcomm/Makefile.in 1.12 +0 -3 xorp/libfeaclient/Makefile.in 1.21 +0 -3 xorp/libproto/Makefile.in 1.55 +0 -3 xorp/libxipc/Makefile.in 1.43 +0 -3 xorp/libxorp/Makefile.in 1.1 +340 -0 xorp/mibs/COPYING (new) 1.1 +182 -0 xorp/mibs/INSTALL (new) 1.24 +64 -71 xorp/mibs/Makefile.am 1.33 +213 -149 xorp/mibs/Makefile.in 1.1 +922 -0 xorp/mibs/aclocal.m4 (new) 1.1 +1121 -0 xorp/mibs/config/config.guess (new) 1.1 +1232 -0 xorp/mibs/config/config.sub (new) 1.1 +411 -0 xorp/mibs/config/depcomp (new) 1.1 +251 -0 xorp/mibs/config/install-sh (new) 1.1 +3096 -0 xorp/mibs/config/ltconfig (new) 1.1 +4122 -0 xorp/mibs/config/ltmain.sh (new) 1.1 +283 -0 xorp/mibs/config/missing (new) 1.1 +40 -0 xorp/mibs/config/mkinstalldirs (new) 1.1 +8529 -0 xorp/mibs/configure (new) 1.1 +607 -0 xorp/mibs/configure.in (new) 1.8 +4 -13 xorp/mibs/snmpdscripts/Makefile.in 1.8 +4 -13 xorp/mibs/tests/Makefile.in 1.37 +0 -3 xorp/mld6igmp/Makefile.in 1.20 +0 -3 xorp/mrt/Makefile.in 1.41 +0 -3 xorp/pim/Makefile.in 1.22 +0 -3 xorp/policy/Makefile.in 1.4 +0 -3 xorp/policy/backend/Makefile.in 1.4 +0 -3 xorp/policy/common/Makefile.in 1.4 +0 -3 xorp/policy/test/Makefile.in 1.49 +0 -3 xorp/rib/Makefile.in 1.3 +0 -3 xorp/rib/tools/Makefile.in 1.46 +0 -3 xorp/rip/Makefile.in 1.5 +0 -3 xorp/rip/tools/Makefile.in 1.45 +0 -3 xorp/rtrmgr/Makefile.in 1.9 +0 -3 xorp/static_routes/Makefile.in 1.25 +0 -3 xorp/utils/Makefile.in 1.5 +0 -3 xorp/utils/flower_malloc/Makefile.in 1.15 +0 -3 xorp/xrl/Makefile.in 1.39 +0 -3 xorp/xrl/interfaces/Makefile.in 1.58 +0 -3 xorp/xrl/targets/Makefile.in 1.20 +0 -3 xorp/xrl/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 05:53:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 21:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ5s19Z026631 for ; Thu, 18 Nov 2004 21:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ5s129060974 for ; Thu, 18 Nov 2004 21:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ5s1N1005080; Thu, 18 Nov 2004 21:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ5rJN1005055 for ; Thu, 18 Nov 2004 21:53:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ5rJ29060972 for ; Thu, 18 Nov 2004 21:53:19 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ5rISP030079 for ; Thu, 18 Nov 2004 21:53:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ5rIHF030078 for xorp-cvs@icir.org; Fri, 19 Nov 2004 05:53:18 GMT (envelope-from bms) Date: Fri, 19 Nov 2004 05:53:18 GMT From: Bruce Simpson Message-Id: <200411190553.iAJ5rIHF030078@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-19 05:53:18 UTC XORP CVS repository Modified files: . TODO Log message: Add a TODO item. Revision Changes Path 1.9 +3 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 06:34:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 22:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ6Z1AY034820 for ; Thu, 18 Nov 2004 22:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ6Z129061428 for ; Thu, 18 Nov 2004 22:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ6Z1N1006288; Thu, 18 Nov 2004 22:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ6YKN1006265 for ; Thu, 18 Nov 2004 22:34:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ6YK29061420 for ; Thu, 18 Nov 2004 22:34:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ6YKFX030565 for ; Thu, 18 Nov 2004 22:34:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ6YK7E030564 for xorp-cvs@icir.org; Fri, 19 Nov 2004 06:34:20 GMT (envelope-from pavlin) Date: Fri, 19 Nov 2004 06:34:20 GMT From: Pavlin Radoslavov Message-Id: <200411190634.iAJ6YK7E030564@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-19 06:34:20 UTC XORP CVS repository Removed files: mibs COPYING Log message: Remove the COPYING file with the GPL license, because our license is not GPL. Revision Changes Path 1.2 +0 -340 xorp/mibs/COPYING (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 06:48:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 22:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ6n1Wx037630 for ; Thu, 18 Nov 2004 22:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ6n129061586 for ; Thu, 18 Nov 2004 22:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ6n1N1006696; Thu, 18 Nov 2004 22:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ6miN1006687 for ; Thu, 18 Nov 2004 22:48:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ6mi29061583 for ; Thu, 18 Nov 2004 22:48:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ6miTs030814 for ; Thu, 18 Nov 2004 22:48:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ6miXT030813 for xorp-cvs@icir.org; Fri, 19 Nov 2004 06:48:44 GMT (envelope-from pavlin) Date: Fri, 19 Nov 2004 06:48:44 GMT From: Pavlin Radoslavov Message-Id: <200411190648.iAJ6miXT030813@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-19 06:48:44 UTC XORP CVS repository Removed files: mibs INSTALL Log message: Remove generic file INSTALL with installation instructions, because those instructions may create the wrong impression that the user has to "cd mibs" and configure/install something. In addition, the text may be misleading a bit, because it uses "make" instead of "gmake". Note: this or a similar file with installation instructions may be added back to the mibs directory and/or the top-level XORP directory once we have a consistent story on the subject. Revision Changes Path 1.2 +0 -182 xorp/mibs/INSTALL (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 07:01:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 23:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ721TR040243 for ; Thu, 18 Nov 2004 23:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ72129061744 for ; Thu, 18 Nov 2004 23:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ721N1007070; Thu, 18 Nov 2004 23:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ71WN1007047 for ; Thu, 18 Nov 2004 23:01:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ71V29061737 for ; Thu, 18 Nov 2004 23:01:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ71Vnm031108 for ; Thu, 18 Nov 2004 23:01:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ71Vpa031107 for xorp-cvs@icir.org; Fri, 19 Nov 2004 07:01:31 GMT (envelope-from pavlin) Date: Fri, 19 Nov 2004 07:01:31 GMT From: Pavlin Radoslavov Message-Id: <200411190701.iAJ71Vpa031107@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-19 07:01:31 UTC XORP CVS repository Modified files: mibs .cvsignore Removed files: mibs aclocal.m4 Log message: * Remove aclocal.m4 from the CVS repository, because it is not really needed in the repository. * Add aclocal.m4 to .cvsignore Revision Changes Path 1.3 +1 -1 xorp/mibs/.cvsignore 1.2 +0 -922 xorp/mibs/aclocal.m4 (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 07:02:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 23:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ732b6040454 for ; Thu, 18 Nov 2004 23:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ73229061754 for ; Thu, 18 Nov 2004 23:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ732N1007139; Thu, 18 Nov 2004 23:03:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ72DN1007083 for ; Thu, 18 Nov 2004 23:02:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ72D29061748 for ; Thu, 18 Nov 2004 23:02:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJ72DLk031161 for ; Thu, 18 Nov 2004 23:02:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJ72Dli031160 for xorp-cvs@icir.org; Fri, 19 Nov 2004 07:02:13 GMT (envelope-from pavlin) Date: Fri, 19 Nov 2004 07:02:13 GMT From: Pavlin Radoslavov Message-Id: <200411190702.iAJ72Dli031160@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-19 07:02:13 UTC XORP CVS repository Modified files: mibs .cvsignore Log message: Added a number of autoconf/automake related files to .cvsignore Revision Changes Path 1.4 +9 -0 xorp/mibs/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Thu Nov 18 23:57:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 18 Nov 2004 23:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ7w1Sw051461 for ; Thu, 18 Nov 2004 23:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ7w129062320 for ; Thu, 18 Nov 2004 23:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ7w1N1008918; Thu, 18 Nov 2004 23:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ7vtN1008910 for ; Thu, 18 Nov 2004 23:57:55 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ7vs29062318; Thu, 18 Nov 2004 23:57:54 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id E01D165468; Fri, 19 Nov 2004 07:57:53 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 77420-01-2; Fri, 19 Nov 2004 07:57:53 +0000 (GMT) Received: from empiric.dek.spc.org (adsl-67-124-247-26.dsl.snfc21.pacbell.net [67.124.247.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 36BE7651FA; Fri, 19 Nov 2004 07:57:53 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id EBC556334; Thu, 18 Nov 2004 23:57:48 -0800 (PST) Date: Thu, 18 Nov 2004 23:57:48 -0800 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/mibs Message-ID: <20041119075748.GG723@empiric.icir.org> References: <200411190702.iAJ72Dli031160@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200411190702.iAJ72Dli031160@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Fri, Nov 19, 2004 at 07:02:13AM +0000, Pavlin Radoslavov wrote: > Log message: > Added a number of autoconf/automake related files to .cvsignore How about we add --foreign to stop it putting this stuff in? _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 00:24:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 00:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJ8P1a0056919 for ; Fri, 19 Nov 2004 00:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ8P029062613 for ; Fri, 19 Nov 2004 00:25:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ8P0N1009624; Fri, 19 Nov 2004 00:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJ8OLN1009607 for ; Fri, 19 Nov 2004 00:24:21 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJ8OK29062606; Fri, 19 Nov 2004 00:24:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id iAJ8OK6i084859; Fri, 19 Nov 2004 00:24:20 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200411190824.iAJ8OK6i084859@possum.icir.org> To: Bruce M Simpson cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/mibs In-Reply-To: Message from Bruce M Simpson of "Thu, 18 Nov 2004 23:57:48 PST." <20041119075748.GG723@empiric.icir.org> Date: Fri, 19 Nov 2004 00:24:20 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > On Fri, Nov 19, 2004 at 07:02:13AM +0000, Pavlin Radoslavov wrote: > > Log message: > > Added a number of autoconf/automake related files to .cvsignore > > How about we add --foreign to stop it putting this stuff in? Yes, I was thinking about something like this. Though, in case of the top-level XORP directory we don't use --foreigh. I was going to find-out why we don't have that problem there. In particular, we don't want the autoconf/automake to put files COPYING and INSTALL. I will look into this tomorrow. Thanks, Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 10:54:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 02:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJAt1ud087849 for ; Fri, 19 Nov 2004 02:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJAt129064442 for ; Fri, 19 Nov 2004 02:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJAt1N1013544; Fri, 19 Nov 2004 02:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJAsTN1013528 for ; Fri, 19 Nov 2004 02:54:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJAsT29064433 for ; Fri, 19 Nov 2004 02:54:29 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJAsT13033366 for ; Fri, 19 Nov 2004 02:54:29 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJAsTLO033365 for xorp-cvs@icir.org; Fri, 19 Nov 2004 10:54:29 GMT (envelope-from bms) Date: Fri, 19 Nov 2004 10:54:29 GMT From: Bruce Simpson Message-Id: <200411191054.iAJAsTLO033365@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-19 10:54:29 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Added files: fea rawsock6.cc rawsock6.hh Log message: Add basic IPv6 raw socket send/receive support. This is currently internal to the FEA and is not exported via XRL. Requested by: pavlin Revision Changes Path 1.47 +3 -1 xorp/fea/Makefile.am 1.59 +9 -6 xorp/fea/Makefile.in 1.1 +266 -0 xorp/fea/rawsock6.cc (new) 1.1 +170 -0 xorp/fea/rawsock6.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:03 2005 Subject: No subject Fri Nov 19 11:02:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 03:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAJB31S6089612 for ; Fri, 19 Nov 2004 03:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJB3129064567 for ; Fri, 19 Nov 2004 03:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJB31N1013769; Fri, 19 Nov 2004 03:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAJB2ZN1013758 for ; Fri, 19 Nov 2004 03:02:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAJB2Y29064557 for ; Fri, 19 Nov 2004 03:02:34 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAJB2Ycv033622 for ; Fri, 19 Nov 2004 03:02:34 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAJB2Y3R033621 for xorp-cvs@icir.org; Fri, 19 Nov 2004 11:02:34 GMT (envelope-from bms) Date: Fri, 19 Nov 2004 11:02:34 GMT From: Bruce Simpson Message-Id: <200411191102.iAJB2Y3R033621@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-19 11:02:34 UTC XORP CVS repository Modified files: fea rawsock4.cc rawsock4.hh xrl_rawsock4.cc xrl_rawsock4.hh Log message: Name change for consistency: RawSocketException -> RawSocket4Exception. Revision Changes Path 1.7 +10 -10 xorp/fea/rawsock4.cc 1.4 +7 -7 xorp/fea/rawsock4.hh 1.7 +2 -2 xorp/fea/xrl_rawsock4.cc 1.5 +3 -3 xorp/fea/xrl_rawsock4.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 20 01:16:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 17:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAK1H1KZ065904 for ; Fri, 19 Nov 2004 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1H129075167 for ; Fri, 19 Nov 2004 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1H0N1011984; Fri, 19 Nov 2004 17:17:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1G2N1011960 for ; Fri, 19 Nov 2004 17:16:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1G229075165 for ; Fri, 19 Nov 2004 17:16:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAK1G26W042098 for ; Fri, 19 Nov 2004 17:16:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAK1G20r042097 for xorp-cvs@icir.org; Sat, 20 Nov 2004 01:16:02 GMT (envelope-from pavlin) Date: Sat, 20 Nov 2004 01:16:02 GMT From: Pavlin Radoslavov Message-Id: <200411200116.iAK1G20r042097@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-20 01:16:02 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in Log message: * Add "foreign" to the automake options (requested by Bruce) * Copy the ETAGS_ARGS setup from the XORP top-level Makefile.am * Add -I$(top_builddir)/.. to the list of include directories. This fixes build problem when the compilation directory is different from the source directory. Revision Changes Path 1.25 +6 -2 xorp/mibs/Makefile.am 1.34 +15 -10 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Fri Nov 19 17:21:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 17:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAK1M2Nb066900 for ; Fri, 19 Nov 2004 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1M229075230 for ; Fri, 19 Nov 2004 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1M1N1012133; Fri, 19 Nov 2004 17:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1LhN1012121 for ; Fri, 19 Nov 2004 17:21:44 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1Lh29075226; Fri, 19 Nov 2004 17:21:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id iAK1LhSi061641; Fri, 19 Nov 2004 17:21:43 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200411200121.iAK1LhSi061641@possum.icir.org> To: Pavlin Radoslavov cc: Bruce M Simpson , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/mibs In-Reply-To: Message from Pavlin Radoslavov of "Fri, 19 Nov 2004 00:24:20 PST." <200411190824.iAJ8OK6i084859@possum.icir.org> Date: Fri, 19 Nov 2004 17:21:43 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > > On Fri, Nov 19, 2004 at 07:02:13AM +0000, Pavlin Radoslavov wrote: > > > Log message: > > > Added a number of autoconf/automake related files to .cvsignore > > > > How about we add --foreign to stop it putting this stuff in? > > Yes, I was thinking about something like this. Though, in case of > the top-level XORP directory we don't use --foreigh. I was going to > find-out why we don't have that problem there. In particular, we > don't want the autoconf/automake to put files COPYING and INSTALL. > > I will look into this tomorrow. Problem fixed by adding "foreign". For consistency with the top-level XORP setup and the top-level Makefile.am file, I added the following line to mibs/Makefile.am: AUTOMAKE_OPTIONS = foreign Though, on second thought it may be more appropriate if indeed we add the --foreign argument when we run automake inside "bootstrap". Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 20 01:27:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 17:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAK1S2oR068078 for ; Fri, 19 Nov 2004 17:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1S129075289 for ; Fri, 19 Nov 2004 17:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1S1N1012323; Fri, 19 Nov 2004 17:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1RQN1012314 for ; Fri, 19 Nov 2004 17:27:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1RQ29075283 for ; Fri, 19 Nov 2004 17:27:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAK1RQq3042364 for ; Fri, 19 Nov 2004 17:27:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAK1RQLj042363 for xorp-cvs@icir.org; Sat, 20 Nov 2004 01:27:26 GMT (envelope-from pavlin) Date: Sat, 20 Nov 2004 01:27:26 GMT From: Pavlin Radoslavov Message-Id: <200411200127.iAK1RQLj042363@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs xorp/mibs/config xorp/mibs/snmpdscripts xorp/mibs/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-20 01:27:26 UTC XORP CVS repository Modified files: . bootstrap mibs configure configure.in mibs/snmpdscripts Makefile.in mibs/tests Makefile.in Removed files: mibs/config config.guess config.sub depcomp install-sh ltconfig ltmain.sh missing mkinstalldirs Log message: Remove all files in directory mibs/config, and change the mibs autoconf configuration to use the top-level xorp/config directory instead. Only if there is need for the AC_CONFIG_AUX_DIR to be different for the mibs directory, then we can add-back mibs/config. Revision Changes Path 1.18 +3 -3 xorp/bootstrap 1.2 +0 -1121 xorp/mibs/config/config.guess (dead) 1.2 +0 -1232 xorp/mibs/config/config.sub (dead) 1.2 +0 -411 xorp/mibs/config/depcomp (dead) 1.2 +0 -251 xorp/mibs/config/install-sh (dead) 1.2 +0 -3096 xorp/mibs/config/ltconfig (dead) 1.2 +0 -4122 xorp/mibs/config/ltmain.sh (dead) 1.2 +0 -283 xorp/mibs/config/missing (dead) 1.2 +0 -40 xorp/mibs/config/mkinstalldirs (dead) 1.2 +35 -6 xorp/mibs/configure 1.2 +2 -2 xorp/mibs/configure.in 1.9 +1 -1 xorp/mibs/snmpdscripts/Makefile.in 1.9 +1 -1 xorp/mibs/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 20 01:31:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 19 Nov 2004 17:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAK1W3od068907 for ; Fri, 19 Nov 2004 17:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1W329075343 for ; Fri, 19 Nov 2004 17:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1W2N1012437; Fri, 19 Nov 2004 17:32:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAK1VxN1012431 for ; Fri, 19 Nov 2004 17:31:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAK1Vx29075341 for ; Fri, 19 Nov 2004 17:31:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAK1Vx5S042467 for ; Fri, 19 Nov 2004 17:31:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAK1VxFs042466 for xorp-cvs@icir.org; Sat, 20 Nov 2004 01:31:59 GMT (envelope-from pavlin) Date: Sat, 20 Nov 2004 01:31:59 GMT From: Pavlin Radoslavov Message-Id: <200411200131.iAK1VxFs042466@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-20 01:31:59 UTC XORP CVS repository Modified files: . bootstrap Log message: Fix the config path from within the mibs directory: config/aclocal.m4 -> ../config/aclocal.m4 Revision Changes Path 1.19 +2 -2 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Tue Nov 23 00:53:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 22 Nov 2004 16:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAN0s292032362 for ; Mon, 22 Nov 2004 16:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAN0s2l1021910 for ; Mon, 22 Nov 2004 16:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAN0s1N1027490; Mon, 22 Nov 2004 16:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAN0rLN1027471 for ; Mon, 22 Nov 2004 16:53:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAN0rLl1021905 for ; Mon, 22 Nov 2004 16:53:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAN0rLOx009766 for ; Mon, 22 Nov 2004 16:53:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAN0rL47009765 for xorp-cvs@icir.org; Tue, 23 Nov 2004 00:53:21 GMT (envelope-from pavlin) Date: Tue, 23 Nov 2004 00:53:21 GMT From: Pavlin Radoslavov Message-Id: <200411230053.iAN0rL47009765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-23 00:53:21 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh netlink_socket.cc netlink_socket.hh rawsock4.cc rawsock4.hh rawsock6.cc rawsock6.hh routing_socket.cc routing_socket.hh xrl_rawsock4.cc xrl_rawsock4.hh xrl_socket_server.cc xrl_socket_server.hh Log message: Editorial nits: rename variables "e" and "_e" to "eventloop" and "_eventloop" respectively for consistency with the rest of the code. Revision Changes Path 1.6 +6 -6 xorp/fea/click_socket.cc 1.4 +3 -3 xorp/fea/click_socket.hh 1.24 +6 -6 xorp/fea/netlink_socket.cc 1.12 +3 -3 xorp/fea/netlink_socket.hh 1.8 +8 -8 xorp/fea/rawsock4.cc 1.5 +5 -4 xorp/fea/rawsock4.hh 1.2 +8 -8 xorp/fea/rawsock6.cc 1.2 +5 -4 xorp/fea/rawsock6.hh 1.16 +6 -6 xorp/fea/routing_socket.cc 1.9 +3 -3 xorp/fea/routing_socket.hh 1.8 +3 -3 xorp/fea/xrl_rawsock4.cc 1.6 +4 -3 xorp/fea/xrl_rawsock4.hh 1.18 +17 -15 xorp/fea/xrl_socket_server.cc 1.8 +5 -5 xorp/fea/xrl_socket_server.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Tue Nov 23 19:04:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Nov 2004 11:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iANJ51YW027888 for ; Tue, 23 Nov 2004 11:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iANJ51l1034671 for ; Tue, 23 Nov 2004 11:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iANJ51N1028887; Tue, 23 Nov 2004 11:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iANJ49N1028848 for ; Tue, 23 Nov 2004 11:04:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iANJ49l1034658 for ; Tue, 23 Nov 2004 11:04:09 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iANJ49Z8040318 for ; Tue, 23 Nov 2004 11:04:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iANJ49Ah040317 for xorp-cvs@icir.org; Tue, 23 Nov 2004 19:04:09 GMT (envelope-from atanu) Date: Tue, 23 Nov 2004 19:04:09 GMT From: Atanu Ghosh Message-Id: <200411231904.iANJ49Ah040317@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-23 19:04:09 UTC XORP CVS repository Modified files: fea rawsock6.cc Log message: Refactor some casts for the Mac OS X. Revision Changes Path 1.3 +4 -4 xorp/fea/rawsock6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Tue Nov 23 22:43:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Nov 2004 14:44:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iANMi2su035763 for ; Tue, 23 Nov 2004 14:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iANMi1eU037215 for ; Tue, 23 Nov 2004 14:44:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iANMi1N1006252; Tue, 23 Nov 2004 14:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iANMhoN1006244 for ; Tue, 23 Nov 2004 14:43:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iANMhneU037210 for ; Tue, 23 Nov 2004 14:43:49 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iANMhnqM045248 for ; Tue, 23 Nov 2004 14:43:49 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iANMhn31045247 for xorp-cvs@icir.org; Tue, 23 Nov 2004 22:43:49 GMT (envelope-from bms) Date: Tue, 23 Nov 2004 22:43:49 GMT From: Bruce Simpson Message-Id: <200411232243.iANMhn31045247@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/cli xorp/fea xorp/libcomm xorp/libfeaclient xorp/libproto xorp/libxipc xorp/libxorp xorp/mibs xorp/mld6igmp xorp/mrt xorp/pim xorp/rib xorp/rip xorp/rtrmgr xorp/utils/flower_malloc xorp/xrl/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-23 22:43:49 UTC XORP CVS repository Modified files: bgp Makefile.am Makefile.in bgp/harness Makefile.am Makefile.in cli Makefile.am Makefile.in fea Makefile.am Makefile.in libcomm Makefile.am Makefile.in libfeaclient Makefile.am Makefile.in libproto Makefile.am Makefile.in libxipc Makefile.am Makefile.in libxorp Makefile.am Makefile.in mibs Makefile.am Makefile.in mld6igmp Makefile.am Makefile.in mrt Makefile.am Makefile.in pim Makefile.am Makefile.in rib Makefile.am Makefile.in rip Makefile.am Makefile.in rtrmgr Makefile.am Makefile.in utils/flower_malloc Makefile.am Makefile.in xrl/tests Makefile.am Makefile.in Log message: Do not build the XORP test programs by default. Instead, add a dependency for them to the top-level check target using the automake 'check' prefix, such that they are built at 'gmake check' time. This reduces the pre-install disk space requirements for a standard XORP build on FreeBSD 4.10-RELEASE from 1.91GB to 1.28GB. This does not apply to the test XRL targets or their associated libraries. Regen the Makefile.in files. Approved by: pavlin Revision Changes Path 1.35 +8 -8 xorp/bgp/Makefile.am 1.48 +11 -10 xorp/bgp/Makefile.in 1.16 +4 -4 xorp/bgp/harness/Makefile.am 1.30 +10 -9 xorp/bgp/harness/Makefile.in 1.10 +2 -2 xorp/cli/Makefile.am 1.23 +10 -11 xorp/cli/Makefile.in 1.48 +7 -6 xorp/fea/Makefile.am 1.60 +30 -24 xorp/fea/Makefile.in 1.8 +2 -2 xorp/libcomm/Makefile.am 1.22 +10 -9 xorp/libcomm/Makefile.in 1.8 +3 -3 xorp/libfeaclient/Makefile.am 1.13 +10 -9 xorp/libfeaclient/Makefile.in 1.9 +2 -2 xorp/libproto/Makefile.am 1.22 +10 -9 xorp/libproto/Makefile.in 1.39 +3 -3 xorp/libxipc/Makefile.am 1.56 +12 -13 xorp/libxipc/Makefile.in 1.33 +25 -25 xorp/libxorp/Makefile.am 1.44 +10 -9 xorp/libxorp/Makefile.in 1.26 +2 -2 xorp/mibs/Makefile.am 1.35 +20 -22 xorp/mibs/Makefile.in 1.25 +2 -2 xorp/mld6igmp/Makefile.am 1.38 +10 -9 xorp/mld6igmp/Makefile.in 1.8 +3 -3 xorp/mrt/Makefile.am 1.21 +10 -9 xorp/mrt/Makefile.in 1.29 +2 -2 xorp/pim/Makefile.am 1.42 +10 -9 xorp/pim/Makefile.in 1.38 +8 -7 xorp/rib/Makefile.am 1.50 +28 -20 xorp/rib/Makefile.in 1.34 +8 -8 xorp/rip/Makefile.am 1.47 +11 -10 xorp/rip/Makefile.in 1.35 +4 -4 xorp/rtrmgr/Makefile.am 1.46 +18 -18 xorp/rtrmgr/Makefile.in 1.3 +4 -2 xorp/utils/flower_malloc/Makefile.am 1.6 +15 -7 xorp/utils/flower_malloc/Makefile.in 1.8 +2 -2 xorp/xrl/tests/Makefile.am 1.21 +10 -9 xorp/xrl/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Wed Nov 24 02:40:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Nov 2004 18:41:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAO2f3NQ083848 for ; Tue, 23 Nov 2004 18:41:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAO2f2eU039494 for ; Tue, 23 Nov 2004 18:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAO2f2N1014800; Tue, 23 Nov 2004 18:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAO2eCN1014778 for ; Tue, 23 Nov 2004 18:40:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAO2eCeU039484 for ; Tue, 23 Nov 2004 18:40:12 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAO2eCR9046924 for ; Tue, 23 Nov 2004 18:40:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAO2eCpT046923 for xorp-cvs@icir.org; Wed, 24 Nov 2004 02:40:12 GMT (envelope-from atanu) Date: Wed, 24 Nov 2004 02:40:12 GMT From: Atanu Ghosh Message-Id: <200411240240.iAO2eCpT046923@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-24 02:40:12 UTC XORP CVS repository Modified files: bgp/harness test_terminate.sh Log message: Add a test (test2) that enables a number of peerings before terminating BGP. Used to trigger a shutdown bug in BGP. Revision Changes Path 1.6 +38 -4 xorp/bgp/harness/test_terminate.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Wed Nov 24 07:27:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 23 Nov 2004 23:28:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAO7S39t040857 for ; Tue, 23 Nov 2004 23:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAO7S3eU042035 for ; Tue, 23 Nov 2004 23:28:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAO7S2N1021940; Tue, 23 Nov 2004 23:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAO7R3N1021916 for ; Tue, 23 Nov 2004 23:27:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAO7R3eU042025 for ; Tue, 23 Nov 2004 23:27:03 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAO7R3gS051976 for ; Tue, 23 Nov 2004 23:27:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAO7R3Ii051975 for xorp-cvs@icir.org; Wed, 24 Nov 2004 07:27:03 GMT (envelope-from atanu) Date: Wed, 24 Nov 2004 07:27:03 GMT From: Atanu Ghosh Message-Id: <200411240727.iAO7R3Ii051975@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-11-24 07:27:02 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh Log message: The iterator stepping through session file descriptors was being incorrectly advanced. The regression test "test2" in test_terminate.sh revealed the problem with the compiler flags "-D_GLIBXX_DEBUG -D_GLIBXX_DEBUG_PEDANTIC". Revision Changes Path 1.42 +6 -3 xorp/bgp/bgp.cc 1.34 +5 -1 xorp/bgp/bgp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Thu Nov 25 01:42:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Nov 2004 17:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAP1h1l5082583 for ; Wed, 24 Nov 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP1h1eU055109 for ; Wed, 24 Nov 2004 17:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP1h1N1027305; Wed, 24 Nov 2004 17:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP1gRN1027274 for ; Wed, 24 Nov 2004 17:42:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP1gQeU055107 for ; Wed, 24 Nov 2004 17:42:26 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAP1gQT9071237 for ; Wed, 24 Nov 2004 17:42:26 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAP1gQ4u071236 for xorp-cvs@icir.org; Thu, 25 Nov 2004 01:42:26 GMT (envelope-from bms) Date: Thu, 25 Nov 2004 01:42:26 GMT From: Bruce Simpson Message-Id: <200411250142.iAP1gQ4u071236@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-25 01:42:26 UTC XORP CVS repository Modified files: . bootstrap mibs Makefile.am Makefile.in Log message: Remove AUTOMAKE_OPTIONS, and instead call automake with --foreign from the project-wide bootstrap. Apply the 'pkglib' prefix to all shared library targets in the mibs package, as we now install SNMP MIBS if they were requested using the --with-snmp project-wide option. Update comments. Regen. Requested by: pavlin Revision Changes Path 1.20 +2 -2 xorp/bootstrap 1.27 +15 -24 xorp/mibs/Makefile.am 1.36 +30 -61 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Thu Nov 25 01:54:32 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Nov 2004 17:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAP1t04V084930 for ; Wed, 24 Nov 2004 17:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP1t0eU055225 for ; Wed, 24 Nov 2004 17:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP1t0N1027748; Wed, 24 Nov 2004 17:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP1sWN1027731 for ; Wed, 24 Nov 2004 17:54:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP1sWeU055220 for ; Wed, 24 Nov 2004 17:54:32 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAP1sWmH071515 for ; Wed, 24 Nov 2004 17:54:32 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAP1sWYo071514 for xorp-cvs@icir.org; Thu, 25 Nov 2004 01:54:32 GMT (envelope-from bms) Date: Thu, 25 Nov 2004 01:54:32 GMT From: Bruce Simpson Message-Id: <200411250154.iAP1sWYo071514@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-25 01:54:32 UTC XORP CVS repository Modified files: . Makefile.am Makefile.in bootstrap Log message: Remove AUTOMAKE_OPTIONS from top-level makefile, and move the --foreign flag to bootstrap (it is still necessary to prevent the installation of GNU files). Requested by: pavlin Revision Changes Path 1.19 +1 -2 xorp/Makefile.am 1.41 +0 -1 xorp/Makefile.in 1.21 +2 -3 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Thu Nov 25 03:23:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 24 Nov 2004 19:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAP3O1TO002550 for ; Wed, 24 Nov 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP3O1eU056036 for ; Wed, 24 Nov 2004 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP3O0N1029960; Wed, 24 Nov 2004 19:24:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAP3NUN1029952 for ; Wed, 24 Nov 2004 19:23:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAP3NTeU056033 for ; Wed, 24 Nov 2004 19:23:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAP3NTd3084766 for ; Wed, 24 Nov 2004 19:23:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAP3NT4k084765 for xorp-cvs@icir.org; Thu, 25 Nov 2004 03:23:29 GMT (envelope-from pavlin) Date: Thu, 25 Nov 2004 03:23:29 GMT From: Pavlin Radoslavov Message-Id: <200411250323.iAP3NT4k084765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-25 03:23:29 UTC XORP CVS repository Modified files: libxorp Makefile.am Makefile.in Added files: libxorp run_command.cc run_command.hh test_run_command.cc Log message: * Add new class RunCommand that can be used for running an external command, reading its stdout and stderr, and obtaining it return status. The implementation is based on class OpInstance (from rtrmgr/op_commands.{hh,cc}), but is heavily modified. * Add a new test program test_running_command.cc that tests the above class. Revision Changes Path 1.34 +6 -1 xorp/libxorp/Makefile.am 1.45 +27 -14 xorp/libxorp/Makefile.in 1.1 +265 -0 xorp/libxorp/run_command.cc (new) 1.1 +140 -0 xorp/libxorp/run_command.hh (new) 1.1 +673 -0 xorp/libxorp/test_run_command.cc (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Fri Nov 26 02:07:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 25 Nov 2004 18:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAQ281Rs072853 for ; Thu, 25 Nov 2004 18:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQ281eU070255 for ; Thu, 25 Nov 2004 18:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQ281N1003392; Thu, 25 Nov 2004 18:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQ27cN1003381 for ; Thu, 25 Nov 2004 18:07:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQ27ceU070251 for ; Thu, 25 Nov 2004 18:07:38 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAQ27cqn097239 for ; Thu, 25 Nov 2004 18:07:38 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAQ27ce2097238 for xorp-cvs@icir.org; Fri, 26 Nov 2004 02:07:38 GMT (envelope-from bms) Date: Fri, 26 Nov 2004 02:07:38 GMT From: Bruce Simpson Message-Id: <200411260207.iAQ27ce2097238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: other Changes by: bms@xorpc.icir.org 2004-11-26 02:07:37 UTC XORP CVS repository Modified files: tinderbox/scripts build_xorp.sh config Log message: Sync with current XORP tinderbox configuration at ICSI. Allow arguments to the remote configure job to be passed in the environment using CONFIGURE_ARGS. Rototile tinderbox targets. Use pedantic STL debugging in a seperate FreeBSD/gcc 3.4 target. Revision Changes Path 1.9 +2 -2 other/tinderbox/scripts/build_xorp.sh 1.11 +7 -2 other/tinderbox/scripts/config _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Fri Nov 26 23:05:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Nov 2004 15:06:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAQN60Ci023140 for ; Fri, 26 Nov 2004 15:06:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQN60eU083646 for ; Fri, 26 Nov 2004 15:06:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQN60N1003076; Fri, 26 Nov 2004 15:06:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQN5EN1003048 for ; Fri, 26 Nov 2004 15:05:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQN5EeU083635 for ; Fri, 26 Nov 2004 15:05:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAQN5Eob009432 for ; Fri, 26 Nov 2004 15:05:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAQN5E3U009431 for xorp-cvs@icir.org; Fri, 26 Nov 2004 23:05:14 GMT (envelope-from pavlin) Date: Fri, 26 Nov 2004 23:05:14 GMT From: Pavlin Radoslavov Message-Id: <200411262305.iAQN5E3U009431@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-26 23:05:14 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc op_commands.hh Log message: Editorial nits: variables renaming, prune unnecessary debug_msg(), etc. Revision Changes Path 1.38 +44 -50 xorp/rtrmgr/op_commands.cc 1.22 +15 -13 xorp/rtrmgr/op_commands.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Fri Nov 26 23:44:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Nov 2004 15:45:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAQNj1QB030762 for ; Fri, 26 Nov 2004 15:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQNj1eU083954 for ; Fri, 26 Nov 2004 15:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQNj1N1003982; Fri, 26 Nov 2004 15:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAQNipN1003955 for ; Fri, 26 Nov 2004 15:44:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAQNioeU083949 for ; Fri, 26 Nov 2004 15:44:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAQNioXC010004 for ; Fri, 26 Nov 2004 15:44:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAQNioT0010003 for xorp-cvs@icir.org; Fri, 26 Nov 2004 23:44:50 GMT (envelope-from pavlin) Date: Fri, 26 Nov 2004 23:44:50 GMT From: Pavlin Radoslavov Message-Id: <200411262344.iAQNioT0010003@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-26 23:44:50 UTC XORP CVS repository Modified files: libxorp asyncio.cc Log message: Compilation fix for Mac OS X Revision Changes Path 1.12 +3 -2 xorp/libxorp/asyncio.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 27 04:14:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 26 Nov 2004 20:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAR4F1bL083507 for ; Fri, 26 Nov 2004 20:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAR4F1eU086138 for ; Fri, 26 Nov 2004 20:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAR4F1N1010392; Fri, 26 Nov 2004 20:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAR4E5N1010378 for ; Fri, 26 Nov 2004 20:14:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAR4E5eU086130 for ; Fri, 26 Nov 2004 20:14:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAR4E5Xm011785 for ; Fri, 26 Nov 2004 20:14:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAR4E5Zx011784 for xorp-cvs@icir.org; Sat, 27 Nov 2004 04:14:05 GMT (envelope-from pavlin) Date: Sat, 27 Nov 2004 04:14:05 GMT From: Pavlin Radoslavov Message-Id: <200411270414.iAR4E5Zx011784@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-27 04:14:05 UTC XORP CVS repository Modified files: fea fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh Log message: Split the list with the primary and secondary get/set/observer methods: a pointer to the primary method and a list of secondary methods. Revision Changes Path 1.32 +254 -182 xorp/fea/fticonfig.cc 1.26 +20 -13 xorp/fea/fticonfig.hh 1.36 +87 -50 xorp/fea/ifconfig.cc 1.35 +10 -7 xorp/fea/ifconfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 27 09:08:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Nov 2004 01:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAR991xg040922 for ; Sat, 27 Nov 2004 01:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAR991eU088649 for ; Sat, 27 Nov 2004 01:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAR991N1016886; Sat, 27 Nov 2004 01:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAR98ON1016877 for ; Sat, 27 Nov 2004 01:08:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAR98OeU088641 for ; Sat, 27 Nov 2004 01:08:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAR98O77014020 for ; Sat, 27 Nov 2004 01:08:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAR98OYw014019 for xorp-cvs@icir.org; Sat, 27 Nov 2004 09:08:24 GMT (envelope-from pavlin) Date: Sat, 27 Nov 2004 09:08:24 GMT From: Pavlin Radoslavov Message-Id: <200411270908.iAR98OYw014019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-27 09:08:24 UTC XORP CVS repository Modified files: fea fticonfig.cc ifconfig.cc Log message: Bug fix: fix the check for NULL pointers. Revision Changes Path 1.33 +6 -6 xorp/fea/fticonfig.cc 1.37 +2 -2 xorp/fea/ifconfig.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:04 2005 Subject: No subject Sat Nov 27 13:06:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Nov 2004 05:07:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iARD72fE089402 for ; Sat, 27 Nov 2004 05:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARD72eU093903 for ; Sat, 27 Nov 2004 05:07:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARD71N1023360; Sat, 27 Nov 2004 05:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARD6bN1023243 for ; Sat, 27 Nov 2004 05:06:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARD6beU093901 for ; Sat, 27 Nov 2004 05:06:37 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iARD6b9B016174 for ; Sat, 27 Nov 2004 05:06:37 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iARD6bv1016173 for xorp-cvs@icir.org; Sat, 27 Nov 2004 13:06:37 GMT (envelope-from mjh) Date: Sat, 27 Nov 2004 13:06:37 GMT From: Mark Handley Message-Id: <200411271306.iARD6bv1016173@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2004-11-27 13:06:37 UTC XORP CVS repository Modified files: . contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html license.html livecd.html mailing_lists.html mirror_operation.html mirrors.html news.html html_src news.html Log message: Include BusinessWeek article on XORP news pages. Revision Changes Path 1.23 +1 -1 www/contributing.html 1.21 +3 -3 www/cvs.html 1.12 +3 -3 www/design_docs.html 1.32 +3 -3 www/downloads.html 1.10 +3 -3 www/empty.html 1.16 +3 -3 www/faq.html 1.29 +1 -1 www/getting_started.html 1.8 +9 -0 www/html_src/news.html 1.19 +3 -3 www/license.html 1.23 +3 -3 www/livecd.html 1.14 +1 -1 www/mailing_lists.html 1.2 +3 -3 www/mirror_operation.html 1.15 +1 -1 www/mirrors.html 1.36 +10 -1 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Sat Nov 27 13:42:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Nov 2004 13:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iARLh1le092039 for ; Sat, 27 Nov 2004 13:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARLh1eU099743 for ; Sat, 27 Nov 2004 13:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARLh1N1003317; Sat, 27 Nov 2004 13:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARLgqN1003310 for ; Sat, 27 Nov 2004 13:42:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARLgpeU099739; Sat, 27 Nov 2004 13:42:51 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4888365213; Sat, 27 Nov 2004 21:42:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 23565-03; Sat, 27 Nov 2004 21:42:45 +0000 (GMT) Received: from empiric.dek.spc.org (dhcp120.icir.org [192.150.187.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 9453D651FC; Sat, 27 Nov 2004 21:42:44 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id DC71466A3; Sat, 27 Nov 2004 13:42:42 -0800 (PST) Date: Sat, 27 Nov 2004 13:42:42 -0800 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <20041127214242.GQ61236@empiric.icir.org> References: <200411270908.iAR98OYw014019@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200411270908.iAR98OYw014019@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Looks like one of the past few commits killed the regression tests... I haven't committed any of the shared library stuff yet, because I know it reproducibly fails regression tests and why, just not sure how to deal with the problems. BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Sat Nov 27 13:56:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Nov 2004 13:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iARLv1Hl094801 for ; Sat, 27 Nov 2004 13:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARLv1eU099874 for ; Sat, 27 Nov 2004 13:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARLv1N1003589; Sat, 27 Nov 2004 13:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARLuFN1003569 for ; Sat, 27 Nov 2004 13:56:15 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARLuFeU099864; Sat, 27 Nov 2004 13:56:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id iARLuFIZ039218; Sat, 27 Nov 2004 13:56:15 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200411272156.iARLuFIZ039218@possum.icir.org> To: Bruce M Simpson cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/fea In-Reply-To: Message from Bruce M Simpson of "Sat, 27 Nov 2004 13:42:42 PST." <20041127214242.GQ61236@empiric.icir.org> Date: Sat, 27 Nov 2004 13:56:15 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > Looks like one of the past few commits killed the regression tests... Yep, I think it was me. Last night I committed a fix which should have taken care of the problem. Sorry, I forgot to send an email about the problem and the fix. > I haven't committed any of the shared library stuff yet, because I know > it reproducibly fails regression tests and why, just not sure how to > deal with the problems. OK, lets discuss this in person. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Sat Nov 27 23:35:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 27 Nov 2004 15:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iARNa1ZP014263 for ; Sat, 27 Nov 2004 15:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARNa0eU000755 for ; Sat, 27 Nov 2004 15:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARNa0N1005356; Sat, 27 Nov 2004 15:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iARNZXN1005348 for ; Sat, 27 Nov 2004 15:35:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iARNZXeU000751 for ; Sat, 27 Nov 2004 15:35:33 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iARNZXk1021917 for ; Sat, 27 Nov 2004 15:35:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iARNZXxD021916 for xorp-cvs@icir.org; Sat, 27 Nov 2004 23:35:33 GMT (envelope-from mjh) Date: Sat, 27 Nov 2004 23:35:33 GMT From: Mark Handley Message-Id: <200411272335.iARNZXxD021916@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-11-27 23:35:33 UTC XORP CVS repository Modified files: bgp dump_iterators.cc dump_iterators.hh route_table_dump.cc route_table_dump.hh Log message: Add code that keeps an audit trail of the last 1000 events to pass through a dump table. There's still a bug somewhere in BGP that causes occasional aborts during the process of dumping to new peers, as found in crash17 on xorp12. There's not enough data in the crash17 core dump to diagnose the history leading up to this, so this audit trail is an attempt to keep enough data. Revision Changes Path 1.24 +8 -2 xorp/bgp/dump_iterators.cc 1.13 +3 -4 xorp/bgp/dump_iterators.hh 1.29 +80 -1 xorp/bgp/route_table_dump.cc 1.15 +17 -1 xorp/bgp/route_table_dump.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Sun Nov 28 20:42:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 12:43:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iASKh2uK065000 for ; Sun, 28 Nov 2004 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iASKh2eU013405 for ; Sun, 28 Nov 2004 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iASKh2N1003289; Sun, 28 Nov 2004 12:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iASKgPN1003255 for ; Sun, 28 Nov 2004 12:42:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iASKgPeU013399 for ; Sun, 28 Nov 2004 12:42:25 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iASKgPVE033861 for ; Sun, 28 Nov 2004 12:42:25 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iASKgPoP033860 for xorp-cvs@icir.org; Sun, 28 Nov 2004 20:42:25 GMT (envelope-from bms) Date: Sun, 28 Nov 2004 20:42:25 GMT From: Bruce Simpson Message-Id: <200411282042.iASKgPoP033860@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/bgp/tools xorp/cli xorp/cli/tools xorp/contrib xorp/contrib/ospfd xorp/contrib/ospfd/src xorp/contrib/ospfd/xorp xorp/docs xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-28 20:42:25 UTC XORP CVS repository Modified files: bgp Makefile.in bgp/harness Makefile.in bgp/tools Makefile.in cli Makefile.in cli/tools Makefile.in contrib Makefile.in contrib/ospfd Makefile.in contrib/ospfd/src Makefile.in contrib/ospfd/xorp Makefile.in docs Makefile.in docs/bgp Makefile.in docs/design_arch Makefile.in docs/fea Makefile.in docs/libxipc Makefile.in docs/libxorp Makefile.in docs/mfea Makefile.in docs/mld6igmp Makefile.in docs/multicast Makefile.in docs/pim Makefile.in docs/pim_testsuite Makefile.in docs/rib Makefile.in docs/rtrmgr Makefile.in docs/slides Makefile.in docs/slides/status_2004_02 Makefile.in docs/snmp Makefile.in docs/test_harness Makefile.in docs/user_manual Makefile.in docs/xorpdev_101 Makefile.in etc Makefile.in etc/templates Makefile.in fea Makefile.in MakefileRootCheck.in fea/tools Makefile.in fib2mrib Makefile.in libcomm Makefile.in libfeaclient Makefile.in libproto Makefile.in libxipc Makefile.in libxorp Makefile.in mibs/snmpdscripts Makefile.in mibs/tests Makefile.in mld6igmp Makefile.in mrt Makefile.in pim Makefile.in policy Makefile.in policy/backend Makefile.in policy/common Makefile.in policy/test Makefile.in rib Makefile.in rib/tools Makefile.in rip Makefile.in rip/tools Makefile.in rtrmgr Makefile.in static_routes Makefile.in utils Makefile.in utils/flower_malloc Makefile.in xrl Makefile.in xrl/interfaces Makefile.in xrl/targets Makefile.in xrl/tests Makefile.in Log message: Commit Makefile.in files after change to --foreign from --gnu in bootstrap. Revision Changes Path 1.49 +1 -1 xorp/bgp/Makefile.in 1.31 +1 -1 xorp/bgp/harness/Makefile.in 1.27 +1 -1 xorp/bgp/tools/Makefile.in 1.24 +1 -1 xorp/cli/Makefile.in 1.4 +1 -1 xorp/cli/tools/Makefile.in 1.4 +1 -1 xorp/contrib/Makefile.in 1.17 +1 -1 xorp/contrib/ospfd/Makefile.in 1.19 +1 -1 xorp/contrib/ospfd/src/Makefile.in 1.25 +1 -1 xorp/contrib/ospfd/xorp/Makefile.in 1.22 +1 -1 xorp/docs/Makefile.in 1.17 +1 -1 xorp/docs/bgp/Makefile.in 1.18 +1 -1 xorp/docs/design_arch/Makefile.in 1.18 +1 -1 xorp/docs/fea/Makefile.in 1.19 +1 -1 xorp/docs/libxipc/Makefile.in 1.18 +1 -1 xorp/docs/libxorp/Makefile.in 1.17 +1 -1 xorp/docs/mfea/Makefile.in 1.17 +1 -1 xorp/docs/mld6igmp/Makefile.in 1.17 +1 -1 xorp/docs/multicast/Makefile.in 1.17 +1 -1 xorp/docs/pim/Makefile.in 1.32 +1 -1 xorp/docs/pim_testsuite/Makefile.in 1.17 +1 -1 xorp/docs/rib/Makefile.in 1.19 +1 -1 xorp/docs/rtrmgr/Makefile.in 1.6 +1 -1 xorp/docs/slides/Makefile.in 1.5 +1 -1 xorp/docs/slides/status_2004_02/Makefile.in 1.18 +1 -1 xorp/docs/snmp/Makefile.in 1.17 +1 -1 xorp/docs/test_harness/Makefile.in 1.7 +1 -1 xorp/docs/user_manual/Makefile.in 1.5 +1 -1 xorp/docs/xorpdev_101/Makefile.in 1.8 +1 -1 xorp/etc/Makefile.in 1.19 +1 -1 xorp/etc/templates/Makefile.in 1.61 +1 -1 xorp/fea/Makefile.in 1.7 +1 -1 xorp/fea/MakefileRootCheck.in 1.4 +1 -1 xorp/fea/tools/Makefile.in 1.10 +1 -1 xorp/fib2mrib/Makefile.in 1.23 +1 -1 xorp/libcomm/Makefile.in 1.14 +1 -1 xorp/libfeaclient/Makefile.in 1.23 +1 -1 xorp/libproto/Makefile.in 1.57 +1 -1 xorp/libxipc/Makefile.in 1.46 +1 -1 xorp/libxorp/Makefile.in 1.10 +1 -1 xorp/mibs/snmpdscripts/Makefile.in 1.10 +1 -1 xorp/mibs/tests/Makefile.in 1.39 +1 -1 xorp/mld6igmp/Makefile.in 1.22 +1 -1 xorp/mrt/Makefile.in 1.43 +1 -1 xorp/pim/Makefile.in 1.23 +1 -1 xorp/policy/Makefile.in 1.5 +1 -1 xorp/policy/backend/Makefile.in 1.5 +1 -1 xorp/policy/common/Makefile.in 1.5 +1 -1 xorp/policy/test/Makefile.in 1.51 +1 -1 xorp/rib/Makefile.in 1.4 +1 -1 xorp/rib/tools/Makefile.in 1.48 +1 -1 xorp/rip/Makefile.in 1.6 +1 -1 xorp/rip/tools/Makefile.in 1.47 +1 -1 xorp/rtrmgr/Makefile.in 1.10 +1 -1 xorp/static_routes/Makefile.in 1.26 +1 -1 xorp/utils/Makefile.in 1.7 +1 -1 xorp/utils/flower_malloc/Makefile.in 1.16 +1 -1 xorp/xrl/Makefile.in 1.40 +1 -1 xorp/xrl/interfaces/Makefile.in 1.59 +1 -1 xorp/xrl/targets/Makefile.in 1.22 +1 -1 xorp/xrl/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Sun Nov 28 22:47:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 14:48:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iASMm2vG089456 for ; Sun, 28 Nov 2004 14:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iASMm2eU014534 for ; Sun, 28 Nov 2004 14:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iASMm1N1005940; Sun, 28 Nov 2004 14:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iASMl2N1005920 for ; Sun, 28 Nov 2004 14:47:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iASMl2eU014525 for ; Sun, 28 Nov 2004 14:47:02 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iASMl2ll035019 for ; Sun, 28 Nov 2004 14:47:02 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iASMl2LB035018 for xorp-cvs@icir.org; Sun, 28 Nov 2004 22:47:02 GMT (envelope-from bms) Date: Sun, 28 Nov 2004 22:47:02 GMT From: Bruce Simpson Message-Id: <200411282247.iASMl2LB035018@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-28 22:47:02 UTC XORP CVS repository Modified files: fea xrl_rawsock4.cc xrl_rawsock4.hh Log message: Rename the following typenames to avoid clash when the IPv6 equivalents are introduced, as they are mostly visible within the global namespace: XrlRawSocketFilter -> XrlRawSocket4Filter XrlVifInputFilter -> XrlVifInputFilter4 FilterBag -> FilterBag4 These may be candidates for templatization later on when the IPv6 XRLs are added. Verified with: gmake check (as root) Revision Changes Path 1.9 +21 -21 xorp/fea/xrl_rawsock4.cc 1.7 +6 -6 xorp/fea/xrl_rawsock4.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 00:32:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 16:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT0X1eN010076 for ; Sun, 28 Nov 2004 16:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT0X0eU015542 for ; Sun, 28 Nov 2004 16:33:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT0X0N1008380; Sun, 28 Nov 2004 16:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT0WAN1008353 for ; Sun, 28 Nov 2004 16:32:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT0WAeU015538 for ; Sun, 28 Nov 2004 16:32:10 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT0WAkI036161 for ; Sun, 28 Nov 2004 16:32:10 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT0W92o036160 for xorp-cvs@icir.org; Mon, 29 Nov 2004 00:32:09 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 00:32:09 GMT From: Bruce Simpson Message-Id: <200411290032.iAT0W92o036160@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 00:32:09 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in xrl_rawsock4.cc xrl_target.cc xrl_target.hh mld6igmp Makefile.am Makefile.in pim Makefile.am Makefile.in xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Added files: xrl/interfaces fea_rawpkt4.xif fea_rawpkt4_client.xif fea_rawpkt4_client_xif.cc fea_rawpkt4_client_xif.hh fea_rawpkt4_xif.cc fea_rawpkt4_xif.hh Removed files: xrl/interfaces fea_rawpkt.xif fea_rawpkt_client.xif fea_rawpkt_client_xif.cc fea_rawpkt_client_xif.hh fea_rawpkt_xif.cc fea_rawpkt_xif.hh Log message: Make the raw socket interface for IPv4 distinctly separate from anything else, as IPv6 raw socket semantics are totally different from IPv4's. Rename: fea_rawpkt.xif -> fea_rawpkt4.xif fea_rawpkt_client.xif -> fea_rawpkt4_client.xif In xrl_target.[ch][ch]: xrsm -> xrsm4 _xrsm -> _xrsm4 Propagate name changes into the rest of the codebase accordingly. Regen. Revision Changes Path 1.49 +3 -3 xorp/fea/Makefile.am 1.62 +5 -5 xorp/fea/Makefile.in 1.10 +4 -4 xorp/fea/xrl_rawsock4.cc 1.57 +15 -15 xorp/fea/xrl_target.cc 1.44 +7 -7 xorp/fea/xrl_target.hh 1.26 +2 -2 xorp/mld6igmp/Makefile.am 1.40 +4 -4 xorp/mld6igmp/Makefile.in 1.30 +2 -2 xorp/pim/Makefile.am 1.44 +4 -4 xorp/pim/Makefile.in 1.26 +8 -8 xorp/xrl/interfaces/Makefile.am 1.41 +23 -23 xorp/xrl/interfaces/Makefile.in 1.3 +0 -78 xorp/xrl/interfaces/fea_rawpkt.xif (dead) 1.1 +78 -0 xorp/xrl/interfaces/fea_rawpkt4.xif (new) 1.1 +25 -0 xorp/xrl/interfaces/fea_rawpkt4_client.xif (new) 1.1 +48 -0 xorp/xrl/interfaces/fea_rawpkt4_client_xif.cc (new) 1.1 +59 -0 xorp/xrl/interfaces/fea_rawpkt4_client_xif.hh (new) 1.1 +168 -0 xorp/xrl/interfaces/fea_rawpkt4_xif.cc (new) 1.1 +135 -0 xorp/xrl/interfaces/fea_rawpkt4_xif.hh (new) 1.2 +0 -25 xorp/xrl/interfaces/fea_rawpkt_client.xif (dead) 1.11 +0 -48 xorp/xrl/interfaces/fea_rawpkt_client_xif.cc (dead) 1.11 +0 -59 xorp/xrl/interfaces/fea_rawpkt_client_xif.hh (dead) 1.11 +0 -168 xorp/xrl/interfaces/fea_rawpkt_xif.cc (dead) 1.11 +0 -135 xorp/xrl/interfaces/fea_rawpkt_xif.hh (dead) 1.46 +2 -2 xorp/xrl/targets/Makefile.am 1.60 +1 -1 xorp/xrl/targets/Makefile.in 1.12 +3 -3 xorp/xrl/targets/fea.tgt 1.43 +5 -5 xorp/xrl/targets/fea.xrls 1.45 +36 -36 xorp/xrl/targets/fea_base.cc 1.49 +9 -9 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 01:59:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 18:00:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT204hV027112 for ; Sun, 28 Nov 2004 18:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT203eU016344 for ; Sun, 28 Nov 2004 18:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT203N1010773; Sun, 28 Nov 2004 18:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT1xlN1010759 for ; Sun, 28 Nov 2004 17:59:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT1xkeU016331 for ; Sun, 28 Nov 2004 17:59:46 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT1xk24036874 for ; Sun, 28 Nov 2004 17:59:46 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT1xkIZ036873 for xorp-cvs@icir.org; Mon, 29 Nov 2004 01:59:46 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 01:59:46 GMT From: Bruce Simpson Message-Id: <200411290159.iAT1xkIZ036873@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 01:59:46 UTC XORP CVS repository Modified files: fea xrl_target.cc xrl_target.hh xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in fea.tgt fea.xrls fea_base.cc fea_base.hh Log message: Implement IPv6 raw socket XRL interface within the FEA. Don't add it to any consumers because there are none yet. Tidy up comments in fea/xrl_target.cc. Regen automakefiles. TODO: Wire front end to back end. Stubbed out with '#ifdef notyet' for now. TODO: Roll a regression test. Revision Changes Path 1.58 +95 -8 xorp/fea/xrl_target.cc 1.45 +26 -2 xorp/fea/xrl_target.hh 1.27 +12 -2 xorp/xrl/interfaces/Makefile.am 1.42 +27 -4 xorp/xrl/interfaces/Makefile.in 1.47 +2 -1 xorp/xrl/targets/Makefile.am 1.61 +1 -0 xorp/xrl/targets/Makefile.in 1.13 +3 -1 xorp/xrl/targets/fea.tgt 1.44 +19 -1 xorp/xrl/targets/fea.xrls 1.46 +99 -1 xorp/xrl/targets/fea_base.cc 1.50 +45 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 02:00:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 18:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT211b2027334 for ; Sun, 28 Nov 2004 18:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT211eU016383 for ; Sun, 28 Nov 2004 18:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT211N1010826; Sun, 28 Nov 2004 18:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT20wN1010817 for ; Sun, 28 Nov 2004 18:00:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT20veU016380 for ; Sun, 28 Nov 2004 18:00:57 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT20v61036963 for ; Sun, 28 Nov 2004 18:00:57 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT20vO6036962 for xorp-cvs@icir.org; Mon, 29 Nov 2004 02:00:57 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 02:00:57 GMT From: Bruce Simpson Message-Id: <200411290200.iAT20vO6036962@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 02:00:57 UTC XORP CVS repository Added files: xrl/interfaces fea_rawpkt6.xif fea_rawpkt6_client.xif fea_rawpkt6_client_xif.cc fea_rawpkt6_client_xif.hh fea_rawpkt6_xif.cc fea_rawpkt6_xif.hh Log message: Add the new IPv6 raw socket interface to the repository. Revision Changes Path 1.1 +53 -0 xorp/xrl/interfaces/fea_rawpkt6.xif (new) 1.1 +21 -0 xorp/xrl/interfaces/fea_rawpkt6_client.xif (new) 1.1 +50 -0 xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc (new) 1.1 +60 -0 xorp/xrl/interfaces/fea_rawpkt6_client_xif.hh (new) 1.1 +124 -0 xorp/xrl/interfaces/fea_rawpkt6_xif.cc (new) 1.1 +108 -0 xorp/xrl/interfaces/fea_rawpkt6_xif.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 02:56:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 18:57:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT2v25r038255 for ; Sun, 28 Nov 2004 18:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT2v2eU016922 for ; Sun, 28 Nov 2004 18:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT2v1N1012283; Sun, 28 Nov 2004 18:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT2uaN1012272 for ; Sun, 28 Nov 2004 18:56:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT2uaeU016919 for ; Sun, 28 Nov 2004 18:56:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT2uanZ037613 for ; Sun, 28 Nov 2004 18:56:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT2ua3i037612 for xorp-cvs@icir.org; Mon, 29 Nov 2004 02:56:36 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 02:56:36 GMT From: Pavlin Radoslavov Message-Id: <200411290256.iAT2ua3i037612@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 02:56:36 UTC XORP CVS repository Modified files: fea xrl_target.cc Log message: Reverse the ordering of the stop_click() operations on IfConfig and FtiConfig: the ordering should be the reverse of the start_click() operations. Revision Changes Path 1.59 +5 -5 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 03:26:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 19:27:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT3R2ia044181 for ; Sun, 28 Nov 2004 19:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT3R2eU017199 for ; Sun, 28 Nov 2004 19:27:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT3R1N1013084; Sun, 28 Nov 2004 19:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT3QfN1013075 for ; Sun, 28 Nov 2004 19:26:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT3QfeU017197 for ; Sun, 28 Nov 2004 19:26:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT3Qfiv037931 for ; Sun, 28 Nov 2004 19:26:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT3Qf4w037930 for xorp-cvs@icir.org; Mon, 29 Nov 2004 03:26:41 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 03:26:41 GMT From: Pavlin Radoslavov Message-Id: <200411290326.iAT3Qf4w037930@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 03:26:41 UTC XORP CVS repository Modified files: libxorp run_command.cc run_command.hh test_run_command.cc Log message: Add a RunCommand pointer as an argument to the OutputCallback. Revision Changes Path 1.2 +3 -3 xorp/libxorp/run_command.cc 1.2 +2 -2 xorp/libxorp/run_command.hh 1.2 +5 -3 xorp/libxorp/test_run_command.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 03:27:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 19:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT3S1VW044362 for ; Sun, 28 Nov 2004 19:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT3S1eU017211 for ; Sun, 28 Nov 2004 19:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT3S1N1013137; Sun, 28 Nov 2004 19:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT3RGN1013096 for ; Sun, 28 Nov 2004 19:27:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT3RGeU017205 for ; Sun, 28 Nov 2004 19:27:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT3RFYx037969 for ; Sun, 28 Nov 2004 19:27:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT3RFRF037968 for xorp-cvs@icir.org; Mon, 29 Nov 2004 03:27:15 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 03:27:15 GMT From: Pavlin Radoslavov Message-Id: <200411290327.iAT3RFRF037968@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 03:27:15 UTC XORP CVS repository Modified files: libxorp .cvsignore Log message: Add test_run_command to the .cvsignore list. Revision Changes Path 1.10 +1 -0 xorp/libxorp/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 04:02:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 20:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT431fY051279 for ; Sun, 28 Nov 2004 20:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT430eU017552 for ; Sun, 28 Nov 2004 20:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT430N1014032; Sun, 28 Nov 2004 20:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT428N1014018 for ; Sun, 28 Nov 2004 20:02:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT428eU017547 for ; Sun, 28 Nov 2004 20:02:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT42887038350 for ; Sun, 28 Nov 2004 20:02:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT428dK038349 for xorp-cvs@icir.org; Mon, 29 Nov 2004 04:02:08 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 04:02:08 GMT From: Pavlin Radoslavov Message-Id: <200411290402.iAT428dK038349@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 04:02:08 UTC XORP CVS repository Modified files: fea fticonfig.cc ifconfig.cc Log message: Modify IfConfig::set_user_click_command_execute_on_startup() and FtiConfig::set_user_click_command_execute_on_startup() such that only IfConfigGet is allowed to execute the user-level Click command. Otherwise, we may end up trying to execute the user-level Click command more than once. Revision Changes Path 1.34 +7 -5 xorp/fea/fticonfig.cc 1.38 +3 -2 xorp/fea/ifconfig.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 04:10:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 20:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT4B1b2052857 for ; Sun, 28 Nov 2004 20:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT4B0eU017625 for ; Sun, 28 Nov 2004 20:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT4B0N1014211; Sun, 28 Nov 2004 20:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT4AFN1014183 for ; Sun, 28 Nov 2004 20:10:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT4AFeU017615 for ; Sun, 28 Nov 2004 20:10:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT4AF6U038474 for ; Sun, 28 Nov 2004 20:10:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT4AFp3038473 for xorp-cvs@icir.org; Mon, 29 Nov 2004 04:10:15 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 04:10:15 GMT From: Pavlin Radoslavov Message-Id: <200411290410.iAT4AFp3038473@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 04:10:15 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh Log message: Add mechanism to start the user-level Click command. Revision Changes Path 1.7 +117 -7 xorp/fea/click_socket.cc 1.5 +40 -1 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 07:19:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 23:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT7K1N5089692 for ; Sun, 28 Nov 2004 23:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT7K1eU019302 for ; Sun, 28 Nov 2004 23:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT7K1N1019069; Sun, 28 Nov 2004 23:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT7J8N1019043 for ; Sun, 28 Nov 2004 23:19:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT7J7eU019294 for ; Sun, 28 Nov 2004 23:19:07 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT7J7wR072762 for ; Sun, 28 Nov 2004 23:19:07 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT7J7SG072761 for xorp-cvs@icir.org; Mon, 29 Nov 2004 07:19:07 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 07:19:07 GMT From: Bruce Simpson Message-Id: <200411290719.iAT7J7SG072761@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 07:19:07 UTC XORP CVS repository Modified files: fea rawsock6.cc rawsock6.hh Log message: Rewrite rawsock6.cc so that we are able to get enough information from the underlying socket to dispatch each datagram to its listener, after glancing at mfea_proto_comm for hints. Wrap the following in a structure, IPv6HeaderInfo: Source Destination Hoplimit Interface TrafficClass Pass the following in a separate buffer: Hop-by-hop Options (needed for Router Alerts) Pass these down into the process_recv_data functions in the bottom half so that filtering initiated by the XRL dispatchers in the top half can happen. Revision Changes Path 1.4 +65 -21 xorp/fea/rawsock6.cc 1.3 +42 -15 xorp/fea/rawsock6.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 07:33:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 28 Nov 2004 23:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT7Y2W1092563 for ; Sun, 28 Nov 2004 23:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT7Y2eU019460 for ; Sun, 28 Nov 2004 23:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT7Y1N1019404; Sun, 28 Nov 2004 23:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT7XZN1019365 for ; Sun, 28 Nov 2004 23:33:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT7XZeU019452 for ; Sun, 28 Nov 2004 23:33:35 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT7XY01072953 for ; Sun, 28 Nov 2004 23:33:34 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT7XYrb072952 for xorp-cvs@icir.org; Mon, 29 Nov 2004 07:33:34 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 07:33:34 GMT From: Bruce Simpson Message-Id: <200411290733.iAT7XYrb072952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 07:33:34 UTC XORP CVS repository Modified files: fea rawsock6.hh Log message: Whitespace nits. Revision Changes Path 1.4 +2 -2 xorp/fea/rawsock6.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 09:18:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 01:19:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT9J2BE013522 for ; Mon, 29 Nov 2004 01:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9J2eU020465 for ; Mon, 29 Nov 2004 01:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9J2N1022265; Mon, 29 Nov 2004 01:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9ION1022250 for ; Mon, 29 Nov 2004 01:18:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9INeU020459 for ; Mon, 29 Nov 2004 01:18:23 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT9IN0M074007 for ; Mon, 29 Nov 2004 01:18:23 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT9INcW074006 for xorp-cvs@icir.org; Mon, 29 Nov 2004 09:18:23 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 09:18:23 GMT From: Bruce Simpson Message-Id: <200411290918.iAT9INcW074006@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 09:18:23 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in rawsock6.cc rawsock6.hh xrl_target.cc xrl_target.hh xrl/interfaces fea_rawpkt6.xif fea_rawpkt6_client.xif fea_rawpkt6_client_xif.cc fea_rawpkt6_client_xif.hh fea_rawpkt6_xif.cc fea_rawpkt6_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Added files: fea xrl_rawsock6.cc xrl_rawsock6.hh Log message: Because of the way IPv6 raw sockets work, clients have to state which protocol they're sending or be told which they are receiving. Update the XRL interfaces to reflect this. Push changes into the top half of the FEA XRL dispatch. Hook up the XrlRawSocket6Manager to the build, but don't connect it to the top half yet. TODO: Wire things together at the FEA XRL target. TODO: Improve the IPv6 raw send capabilities. Revision Changes Path 1.50 +3 -1 xorp/fea/Makefile.am 1.63 +5 -3 xorp/fea/Makefile.in 1.5 +7 -7 xorp/fea/rawsock6.cc 1.5 +5 -5 xorp/fea/rawsock6.hh 1.1 +331 -0 xorp/fea/xrl_rawsock6.cc (new) 1.1 +101 -0 xorp/fea/xrl_rawsock6.hh (new) 1.60 +17 -7 xorp/fea/xrl_target.cc 1.46 +8 -3 xorp/fea/xrl_target.hh 1.2 +17 -7 xorp/xrl/interfaces/fea_rawpkt6.xif 1.2 +15 -5 xorp/xrl/interfaces/fea_rawpkt6_client.xif 1.2 +15 -5 xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc 1.2 +8 -3 xorp/xrl/interfaces/fea_rawpkt6_client_xif.hh 1.2 +13 -3 xorp/xrl/interfaces/fea_rawpkt6_xif.cc 1.2 +7 -2 xorp/xrl/interfaces/fea_rawpkt6_xif.hh 1.45 +2 -2 xorp/xrl/targets/fea.xrls 1.47 +9 -4 xorp/xrl/targets/fea_base.cc 1.51 +7 -2 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:05 2005 Subject: No subject Mon Nov 29 09:25:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 01:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT9Q1qX014924 for ; Mon, 29 Nov 2004 01:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9Q1eU020562 for ; Mon, 29 Nov 2004 01:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9Q1N1022461; Mon, 29 Nov 2004 01:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9P9N1022432 for ; Mon, 29 Nov 2004 01:25:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9P9eU020556 for ; Mon, 29 Nov 2004 01:25:09 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT9P9Wn074299 for ; Mon, 29 Nov 2004 01:25:09 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT9P9UL074298 for xorp-cvs@icir.org; Mon, 29 Nov 2004 09:25:09 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 09:25:09 GMT From: Bruce Simpson Message-Id: <200411290925.iAT9P9UL074298@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 09:25:09 UTC XORP CVS repository Modified files: fea fea.cc xrl_target.cc xrl_target.hh Log message: Add code to deal with instantiating an XrlRawSocket6Manager in XrlFeaTarget and update function calls accordingly. TODO: Attempt to create raw socket managers during FEA initialization. Revision Changes Path 1.39 +2 -3 xorp/fea/fea.cc 1.61 +4 -4 xorp/fea/xrl_target.cc 1.47 +4 -1 xorp/fea/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Mon Nov 29 09:36:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 01:37:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAT9b15p017073 for ; Mon, 29 Nov 2004 01:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9b1eU020681 for ; Mon, 29 Nov 2004 01:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9b1N1022719; Mon, 29 Nov 2004 01:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAT9aRN1022700 for ; Mon, 29 Nov 2004 01:36:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAT9aReU020669 for ; Mon, 29 Nov 2004 01:36:27 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAT9aRl5074506 for ; Mon, 29 Nov 2004 01:36:27 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT9aRjd074505 for xorp-cvs@icir.org; Mon, 29 Nov 2004 09:36:27 GMT (envelope-from bms) Date: Mon, 29 Nov 2004 09:36:27 GMT From: Bruce Simpson Message-Id: <200411290936.iAT9aRjd074505@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-29 09:36:27 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in rawsock6.hh xrl_target.cc Log message: Wire up dispatch from XrlFeaTarget to XrlRawSocket6Manager. Add the new IPv6 raw socket XRLs to the FEA's linker options. TODO: Actually attempt to instantiate the raw socket managers within the FEA main() (this is still clearly marked in the code). Revision Changes Path 1.51 +3 -1 xorp/fea/Makefile.am 1.64 +5 -2 xorp/fea/Makefile.in 1.6 +4 -4 xorp/fea/rawsock6.hh 1.62 +4 -34 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Mon Nov 29 11:03:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 03:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iATB42aI035327 for ; Mon, 29 Nov 2004 03:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATB42eU021959 for ; Mon, 29 Nov 2004 03:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATB41N1024795; Mon, 29 Nov 2004 03:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATB3UN1024776 for ; Mon, 29 Nov 2004 03:03:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATB3UeU021946 for ; Mon, 29 Nov 2004 03:03:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iATB3TsV075718 for ; Mon, 29 Nov 2004 03:03:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iATB3TVj075717 for xorp-cvs@icir.org; Mon, 29 Nov 2004 11:03:29 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 11:03:29 GMT From: Pavlin Radoslavov Message-Id: <200411291103.iATB3TVj075717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 11:03:29 UTC XORP CVS repository Modified files: etc/templates fea.tp Log message: Bug fix: replace forgotten click-config-generator with click-config-generator-file Revision Changes Path 1.26 +2 -2 xorp/etc/templates/fea.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Mon Nov 29 11:06:20 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 03:07:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iATB70Co035937 for ; Mon, 29 Nov 2004 03:07:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATB70eU022025 for ; Mon, 29 Nov 2004 03:07:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATB70N1024894; Mon, 29 Nov 2004 03:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATB6LN1024881 for ; Mon, 29 Nov 2004 03:06:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATB6LeU022012 for ; Mon, 29 Nov 2004 03:06:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iATB6Kr0075830 for ; Mon, 29 Nov 2004 03:06:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iATB6Kh1075829 for xorp-cvs@icir.org; Mon, 29 Nov 2004 11:06:20 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 11:06:20 GMT From: Pavlin Radoslavov Message-Id: <200411291106.iATB6Kh1075829@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 11:06:20 UTC XORP CVS repository Modified files: fea click_socket.hh Log message: Add new method ClickSocket::click_config_generator_file() to get the value of ClickSocket:_click_socket_generator_file Revision Changes Path 1.6 +12 -1 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Mon Nov 29 11:28:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 03:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iATBT1ta040361 for ; Mon, 29 Nov 2004 03:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATBT1eU022249 for ; Mon, 29 Nov 2004 03:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATBT0N1025425; Mon, 29 Nov 2004 03:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iATBSNN1025414 for ; Mon, 29 Nov 2004 03:28:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iATBSNeU022244 for ; Mon, 29 Nov 2004 03:28:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iATBSNc5076206 for ; Mon, 29 Nov 2004 03:28:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iATBSNMD076205 for xorp-cvs@icir.org; Mon, 29 Nov 2004 11:28:23 GMT (envelope-from pavlin) Date: Mon, 29 Nov 2004 11:28:23 GMT From: Pavlin Radoslavov Message-Id: <200411291128.iATBSNMD076205@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-29 11:28:23 UTC XORP CVS repository Modified files: fea ifconfig_set.hh ifconfig_set_click.cc Log message: Add a mechanism to call an external program to generate the Click configuration whenever the network information changes. Note: this should be an intermediate solution, because design-wise the FEA should not call external programs on-the-fly. A more appropriate design solution is that the FEA should always receive the generated configuration (e.g., via XRL). For example, when the interface configuration is changed via the xorpsh, the xorpsh itself may call the external program to regenerate the new Click configuration, and then send that configuration by XRL to the FEA. Currently, we cannot use this solution, because the xorpsh/rtrmgr configuration template semantics do not provide for externalgenerator programs whose output can be used as an XRL argument. Revision Changes Path 1.22 +14 -1 xorp/fea/ifconfig_set.hh 1.8 +120 -8 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 07:29:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 23:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAU7U1I4078273 for ; Mon, 29 Nov 2004 23:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7U1eU036870 for ; Mon, 29 Nov 2004 23:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7U0N1004184; Mon, 29 Nov 2004 23:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7TfN1004172 for ; Mon, 29 Nov 2004 23:29:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7TeeU036865 for ; Mon, 29 Nov 2004 23:29:40 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAU7TeJH088518 for ; Mon, 29 Nov 2004 23:29:40 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAU7Tekd088517 for xorp-cvs@icir.org; Tue, 30 Nov 2004 07:29:40 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 07:29:40 GMT From: Bruce Simpson Message-Id: <200411300729.iAU7Tekd088517@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 07:29:40 UTC XORP CVS repository Modified files: fea test_mfea.cc Log message: Fix after addition of XrlRawSocket6Manager. Revision Changes Path 1.15 +2 -3 xorp/fea/test_mfea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 07:30:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 23:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAU7V1H1078483 for ; Mon, 29 Nov 2004 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7V1eU036900 for ; Mon, 29 Nov 2004 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7V1N1004219; Mon, 29 Nov 2004 23:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7ULN1004201 for ; Mon, 29 Nov 2004 23:30:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7ULeU036889 for ; Mon, 29 Nov 2004 23:30:21 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAU7ULne088573 for ; Mon, 29 Nov 2004 23:30:21 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAU7UL3c088572 for xorp-cvs@icir.org; Tue, 30 Nov 2004 07:30:21 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 07:30:21 GMT From: Bruce Simpson Message-Id: <200411300730.iAU7UL3c088572@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 07:30:21 UTC XORP CVS repository Modified files: mld6igmp test_mld6igmp.cc Log message: Fix after addition of XrlRawSocket6Manager. Revision Changes Path 1.36 +2 -3 xorp/mld6igmp/test_mld6igmp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 07:31:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 23:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAU7W17X078696 for ; Mon, 29 Nov 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7W1eU036918 for ; Mon, 29 Nov 2004 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7W1N1004249; Mon, 29 Nov 2004 23:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7V3N1004230 for ; Mon, 29 Nov 2004 23:31:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7V3eU036902 for ; Mon, 29 Nov 2004 23:31:03 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAU7V3MN088621 for ; Mon, 29 Nov 2004 23:31:03 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAU7V3PC088620 for xorp-cvs@icir.org; Tue, 30 Nov 2004 07:31:03 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 07:31:03 GMT From: Bruce Simpson Message-Id: <200411300731.iAU7V3PC088620@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 07:31:03 UTC XORP CVS repository Modified files: pim test_pim.cc Log message: Fix after introduction of XrlRawSocket6Manager. Revision Changes Path 1.41 +2 -2 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 07:45:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 23:46:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAU7k3ED081465 for ; Mon, 29 Nov 2004 23:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7k3eU037056 for ; Mon, 29 Nov 2004 23:46:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7k2N1004730; Mon, 29 Nov 2004 23:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7jSN1004710 for ; Mon, 29 Nov 2004 23:45:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7jSeU037052 for ; Mon, 29 Nov 2004 23:45:28 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAU7jSCc088858 for ; Mon, 29 Nov 2004 23:45:28 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAU7jS66088857 for xorp-cvs@icir.org; Tue, 30 Nov 2004 07:45:28 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 07:45:28 GMT From: Bruce Simpson Message-Id: <200411300745.iAU7jS66088857@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 07:45:28 UTC XORP CVS repository Modified files: mld6igmp Makefile.am Makefile.in Log message: Add IPv6 raw socket XRL bindings to link line. Revision Changes Path 1.27 +2 -1 xorp/mld6igmp/Makefile.am 1.41 +4 -1 xorp/mld6igmp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 07:47:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 29 Nov 2004 23:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAU7m1kG081855 for ; Mon, 29 Nov 2004 23:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7m1eU037076 for ; Mon, 29 Nov 2004 23:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7m0N1004804; Mon, 29 Nov 2004 23:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAU7lQN1004782 for ; Mon, 29 Nov 2004 23:47:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAU7lQeU037072 for ; Mon, 29 Nov 2004 23:47:26 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAU7lQVW088913 for ; Mon, 29 Nov 2004 23:47:26 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAU7lQO7088912 for xorp-cvs@icir.org; Tue, 30 Nov 2004 07:47:26 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 07:47:26 GMT From: Bruce Simpson Message-Id: <200411300747.iAU7lQO7088912@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 07:47:26 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in Log message: Add IPv6 raw socket XRL bindings to link line. Revision Changes Path 1.31 +2 -1 xorp/pim/Makefile.am 1.45 +4 -1 xorp/pim/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 11:49:29 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 03:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUBo1it031056 for ; Tue, 30 Nov 2004 03:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUBo1eU040103 for ; Tue, 30 Nov 2004 03:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUBo1N1010850; Tue, 30 Nov 2004 03:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUBnUN1010835 for ; Tue, 30 Nov 2004 03:49:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUBnTeU040096 for ; Tue, 30 Nov 2004 03:49:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUBnTLI091477 for ; Tue, 30 Nov 2004 03:49:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUBnTYn091476 for xorp-cvs@icir.org; Tue, 30 Nov 2004 11:49:29 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 11:49:29 GMT From: Pavlin Radoslavov Message-Id: <200411301149.iAUBnTYn091476@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 11:49:29 UTC XORP CVS repository Modified files: fea iftree.cc Log message: Bug fix: initialize _discard to false inside the IfTreeInterface constructor. Revision Changes Path 1.24 +2 -2 xorp/fea/iftree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 12:54:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 04:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUCt17h043947 for ; Tue, 30 Nov 2004 04:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUCt1eU040806 for ; Tue, 30 Nov 2004 04:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUCt0N1013426; Tue, 30 Nov 2004 04:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUCssN1013419 for ; Tue, 30 Nov 2004 04:54:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUCsseU040801 for ; Tue, 30 Nov 2004 04:54:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUCsshh092309 for ; Tue, 30 Nov 2004 04:54:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUCssce092308 for xorp-cvs@icir.org; Tue, 30 Nov 2004 12:54:54 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 12:54:54 GMT From: Pavlin Radoslavov Message-Id: <200411301254.iAUCssce092308@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 12:54:54 UTC XORP CVS repository Modified files: etc/templates fea.tp Log message: Change the default value of click-config-generator-file Revision Changes Path 1.27 +2 -2 xorp/etc/templates/fea.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 13:02:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 05:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUD31Mv045549 for ; Tue, 30 Nov 2004 05:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUD31eU040914 for ; Tue, 30 Nov 2004 05:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUD31N1014181; Tue, 30 Nov 2004 05:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUD2WN1014158 for ; Tue, 30 Nov 2004 05:02:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUD2WeU040907 for ; Tue, 30 Nov 2004 05:02:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUD2Wli092500 for ; Tue, 30 Nov 2004 05:02:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUD2VoA092499 for xorp-cvs@icir.org; Tue, 30 Nov 2004 13:02:31 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 13:02:31 GMT From: Pavlin Radoslavov Message-Id: <200411301302.iAUD2VoA092499@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 13:02:31 UTC XORP CVS repository Modified files: fea ifconfig_set.hh ifconfig_set_click.cc Log message: Complete the implementation of the mechanism for generating the Click configuration by using an external program: * Generate internally the interface configuration in XORP configuration format and write it to a temporary file. * Pass the name of this temporary file as an argument to the external program. * Generate the new Click-related port mapping (NextHopPortMapper) after we have written successfully the Click configuration. * Modify the original embedded code for generation of the Click configuration such that now the interface-related port mapping into the xorp_rt starts from 0. Previously, port number 0 was reserved for local delivery. * Few variables renaming. Revision Changes Path 1.23 +12 -1 xorp/fea/ifconfig_set.hh 1.9 +195 -38 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 13:11:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 05:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUDC19q047318 for ; Tue, 30 Nov 2004 05:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUDC1eU040998 for ; Tue, 30 Nov 2004 05:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUDC0N1014776; Tue, 30 Nov 2004 05:12:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUDBcN1014764 for ; Tue, 30 Nov 2004 05:11:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUDBceU040992 for ; Tue, 30 Nov 2004 05:11:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUDBcN4092699 for ; Tue, 30 Nov 2004 05:11:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUDBbrD092698 for xorp-cvs@icir.org; Tue, 30 Nov 2004 13:11:37 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 13:11:37 GMT From: Pavlin Radoslavov Message-Id: <200411301311.iAUDBbrD092698@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 13:11:37 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Added files: fea xorp_fea_click_config_generator Log message: Add a sample script to generate Click configuration from XORP configuration. The first argument is the XORP configuration file name. Currently, the script is called on-demand by the FEA whenever the network interface information changes. Revision Changes Path 1.52 +5 -1 xorp/fea/Makefile.am 1.65 +18 -4 xorp/fea/Makefile.in 1.1 +692 -0 xorp/fea/xorp_fea_click_config_generator (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 15:35:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 07:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUFa1br075532 for ; Tue, 30 Nov 2004 07:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUFa1eU042513 for ; Tue, 30 Nov 2004 07:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUFa0N1017975; Tue, 30 Nov 2004 07:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUFZTN1017957 for ; Tue, 30 Nov 2004 07:35:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUFZSeU042507 for ; Tue, 30 Nov 2004 07:35:28 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUFZSeL094306 for ; Tue, 30 Nov 2004 07:35:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUFZSrM094305 for xorp-cvs@icir.org; Tue, 30 Nov 2004 15:35:28 GMT (envelope-from mjh) Date: Tue, 30 Nov 2004 15:35:28 GMT From: Mark Handley Message-Id: <200411301535.iAUFZSrM094305@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-11-30 15:35:28 UTC XORP CVS repository Modified files: rtrmgr userdb.cc userdb.hh Log message: Fix bug where user was not allowed into configure mode if they had group xorp as their default group, but were allowed if it was an additional group. Revision Changes Path 1.8 +19 -11 xorp/rtrmgr/userdb.cc 1.7 +2 -2 xorp/rtrmgr/userdb.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 20:01:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:02:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUK22bI031115 for ; Tue, 30 Nov 2004 12:02:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK21eU046858 for ; Tue, 30 Nov 2004 12:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK21N1026837; Tue, 30 Nov 2004 12:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK1EN1026803 for ; Tue, 30 Nov 2004 12:01:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK1EeU046854 for ; Tue, 30 Nov 2004 12:01:14 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUK1EKc098376 for ; Tue, 30 Nov 2004 12:01:14 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUK1EDg098375 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:01:14 GMT (envelope-from bms) Date: Tue, 30 Nov 2004 20:01:14 GMT From: Bruce Simpson Message-Id: <200411302001.iAUK1EDg098375@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-11-30 20:01:14 UTC XORP CVS repository Modified files: rtrmgr userdb.cc Log message: Fix compilation error on FreeBSD: cast to gid_t before comparison. Revision Changes Path 1.9 +2 -2 xorp/rtrmgr/userdb.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 20:06:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:07:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUK73eV032486 for ; Tue, 30 Nov 2004 12:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK73eU046920 for ; Tue, 30 Nov 2004 12:07:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK72N1026984; Tue, 30 Nov 2004 12:07:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK6QN1026960 for ; Tue, 30 Nov 2004 12:06:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK6QeU046916 for ; Tue, 30 Nov 2004 12:06:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUK6Q84098521 for ; Tue, 30 Nov 2004 12:06:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUK6QGp098520 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:06:26 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 20:06:26 GMT From: Pavlin Radoslavov Message-Id: <200411302006.iAUK6QGp098520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 20:06:26 UTC XORP CVS repository Modified files: fea ifconfig.hh Log message: Add a new method IfConfig::ifc_set_click() to obtain a reference to the IfConfigSetClick instance. Revision Changes Path 1.36 +2 -1 xorp/fea/ifconfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 20:08:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUK91S9033049 for ; Tue, 30 Nov 2004 12:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK90eU046934 for ; Tue, 30 Nov 2004 12:09:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK90N1027069; Tue, 30 Nov 2004 12:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUK89N1027042 for ; Tue, 30 Nov 2004 12:08:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUK89eU046932 for ; Tue, 30 Nov 2004 12:08:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUK89NB098616 for ; Tue, 30 Nov 2004 12:08:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUK89uC098615 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:08:09 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 20:08:09 GMT From: Pavlin Radoslavov Message-Id: <200411302008.iAUK89uC098615@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 20:08:09 UTC XORP CVS repository Modified files: fea fticonfig_entry_get.hh fticonfig_entry_observer.hh fticonfig_entry_set.hh fticonfig_table_get.hh fticonfig_table_observer.hh fticonfig_table_set.hh ifconfig_get.hh ifconfig_observer.hh Log message: Add a new method is_running() that returns true if the particular instance is activated and running. Revision Changes Path 1.19 +2 -1 xorp/fea/fticonfig_entry_get.hh 1.11 +2 -1 xorp/fea/fticonfig_entry_observer.hh 1.13 +2 -1 xorp/fea/fticonfig_entry_set.hh 1.16 +2 -1 xorp/fea/fticonfig_table_get.hh 1.12 +2 -1 xorp/fea/fticonfig_table_observer.hh 1.13 +2 -1 xorp/fea/fticonfig_table_set.hh 1.17 +2 -1 xorp/fea/ifconfig_get.hh 1.11 +2 -1 xorp/fea/ifconfig_observer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 20:10:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:11:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUKB2pN033623 for ; Tue, 30 Nov 2004 12:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKB2eU046975 for ; Tue, 30 Nov 2004 12:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKB2N1027148; Tue, 30 Nov 2004 12:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKA4N1027108 for ; Tue, 30 Nov 2004 12:10:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKA3eU046947 for ; Tue, 30 Nov 2004 12:10:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUKA3h8098685 for ; Tue, 30 Nov 2004 12:10:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUKA3DN098684 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:10:03 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 20:10:03 GMT From: Pavlin Radoslavov Message-Id: <200411302010.iAUKA3DN098684@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 20:10:03 UTC XORP CVS repository Modified files: fea ifconfig_set.hh Log message: * Add a new method is_running() that returns true if the particular instance is activated and running. * Add a new method iftree() to get a reference of the IfTree instance inside IfConfigSetClick. Revision Changes Path 1.24 +9 -1 xorp/fea/ifconfig_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:06 2005 Subject: No subject Tue Nov 30 20:13:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:14:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUKE2Ql034395 for ; Tue, 30 Nov 2004 12:14:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKE2eU046996 for ; Tue, 30 Nov 2004 12:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKE2N1027252; Tue, 30 Nov 2004 12:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKD1N1027213 for ; Tue, 30 Nov 2004 12:13:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKD1eU046990 for ; Tue, 30 Nov 2004 12:13:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUKD1bU098776 for ; Tue, 30 Nov 2004 12:13:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUKD19E098775 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:13:01 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 20:13:01 GMT From: Pavlin Radoslavov Message-Id: <200411302013.iAUKD19E098775@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 20:13:01 UTC XORP CVS repository Modified files: fea ifconfig_get_click.cc Log message: Implement IfConfigGetClick::read_config(). Basically, it returns the IfTree state from the IfConfigSetClick instance, because IfConfigSetClick keeps an internal state of the IfTree. The reason for that is because it is practically impossible to read the Click configuration and parse it to restore the original IfTree state. Revision Changes Path 1.5 +9 -18 xorp/fea/ifconfig_get_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Tue Nov 30 20:32:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 12:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUKX1TW039296 for ; Tue, 30 Nov 2004 12:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKX1eU047188 for ; Tue, 30 Nov 2004 12:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKX1N1027776; Tue, 30 Nov 2004 12:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUKWiN1027755 for ; Tue, 30 Nov 2004 12:32:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUKWieU047185 for ; Tue, 30 Nov 2004 12:32:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUKWiJA099068 for ; Tue, 30 Nov 2004 12:32:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUKWi99099067 for xorp-cvs@icir.org; Tue, 30 Nov 2004 20:32:44 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 20:32:44 GMT From: Pavlin Radoslavov Message-Id: <200411302032.iAUKWi99099067@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 20:32:44 UTC XORP CVS repository Modified files: fea fticonfig_table_set.cc Log message: Complete the implementation of FtiConfigTableSet::register_ftic_secondary(): push the current config into the new secondary method. Revision Changes Path 1.7 +22 -2 xorp/fea/fticonfig_table_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Tue Nov 30 21:57:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 13:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAULw14h059648 for ; Tue, 30 Nov 2004 13:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAULw1eU048231 for ; Tue, 30 Nov 2004 13:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAULw1N1000490; Tue, 30 Nov 2004 13:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAULvvN1000482 for ; Tue, 30 Nov 2004 13:57:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAULvueU048228 for ; Tue, 30 Nov 2004 13:57:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAULvuH5000185 for ; Tue, 30 Nov 2004 13:57:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAULvu81000184 for xorp-cvs@icir.org; Tue, 30 Nov 2004 21:57:56 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 21:57:56 GMT From: Pavlin Radoslavov Message-Id: <200411302157.iAULvu81000184@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 21:57:56 UTC XORP CVS repository Modified files: fea fticonfig_entry_get.hh fticonfig_entry_get_click.cc Log message: * Implement FtiConfigEntryGetClick::lookup_route_by_dest4() and FtiConfigEntryGetClick::lookup_route_by_dest6(). Note that the currrent implementation is very inefficient. * Remove the non-implemented FtiConfigEntryGetClick::lookup_route_by_dest(), because it is not needed anymore. Revision Changes Path 1.20 +1 -11 xorp/fea/fticonfig_entry_get.hh 1.4 +55 -37 xorp/fea/fticonfig_entry_get_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Tue Nov 30 22:54:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 14:55:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUMt4pJ073549 for ; Tue, 30 Nov 2004 14:55:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUMt4eU048810 for ; Tue, 30 Nov 2004 14:55:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUMt3N1002565; Tue, 30 Nov 2004 14:55:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUMs9N1002545 for ; Tue, 30 Nov 2004 14:54:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUMs9eU048796 for ; Tue, 30 Nov 2004 14:54:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUMs9Yv000711 for ; Tue, 30 Nov 2004 14:54:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUMs9vc000710 for xorp-cvs@icir.org; Tue, 30 Nov 2004 22:54:09 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 22:54:09 GMT From: Pavlin Radoslavov Message-Id: <200411302254.iAUMs9vc000710@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 22:54:09 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.cc Log message: Update a comment. Revision Changes Path 1.7 +9 -2 xorp/fea/fticonfig_entry_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Tue Nov 30 22:56:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 14:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iAUMv1kj074074 for ; Tue, 30 Nov 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUMv1eU048847 for ; Tue, 30 Nov 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUMv1N1002639; Tue, 30 Nov 2004 14:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iAUMuwN1002633 for ; Tue, 30 Nov 2004 14:56:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iAUMuweU048845 for ; Tue, 30 Nov 2004 14:56:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iAUMuwT9000810 for ; Tue, 30 Nov 2004 14:56:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAUMuwRe000809 for xorp-cvs@icir.org; Tue, 30 Nov 2004 22:56:58 GMT (envelope-from pavlin) Date: Tue, 30 Nov 2004 22:56:58 GMT From: Pavlin Radoslavov Message-Id: <200411302256.iAUMuwRe000809@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-11-30 22:56:58 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.hh fticonfig_entry_set_click.cc Log message: Keep a local copy (inside the Click module itself) of the forwarding entries installed into Click. This copy is needed so we can update appropriately the forwarding entries if the network interface information changes. Revision Changes Path 1.14 +4 -1 xorp/fea/fticonfig_entry_set.hh 1.7 +65 -5 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Wed Dec 1 03:28:13 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 19:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB13T2GN060819 for ; Tue, 30 Nov 2004 19:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13T2eU051831 for ; Tue, 30 Nov 2004 19:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13T1N1012772; Tue, 30 Nov 2004 19:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13SEN1012748 for ; Tue, 30 Nov 2004 19:28:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13SEeU051819 for ; Tue, 30 Nov 2004 19:28:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB13SDce003480 for ; Tue, 30 Nov 2004 19:28:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB13SDga003479 for xorp-cvs@icir.org; Wed, 1 Dec 2004 03:28:13 GMT (envelope-from pavlin) Date: Wed, 1 Dec 2004 03:28:13 GMT From: Pavlin Radoslavov Message-Id: <200412010328.iB13SDga003479@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-01 03:28:13 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh fea.cc fti_transaction.cc fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_click.cc fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_set.hh fticonfig_entry_set_click.cc fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_click.cc fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_set.hh fticonfig_table_set_click.cc fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_get.cc ifconfig_get.hh ifconfig_get_click.cc ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_set.hh ifconfig_set_click.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc netlink_socket.cc netlink_socket.hh routing_socket.cc routing_socket.hh test_mfea.cc Log message: Pass-by-reference a string error_msg as an argument to methods start() and stop(). Assign this string with the error message (if an error) at the place where exactly the problem happened, and propagate that error message as appropriate. Revision Changes Path 1.8 +46 -40 xorp/fea/click_socket.cc 1.7 +5 -5 xorp/fea/click_socket.hh 1.40 +15 -5 xorp/fea/fea.cc 1.7 +12 -3 xorp/fea/fti_transaction.cc 1.35 +140 -78 xorp/fea/fticonfig.cc 1.27 +9 -5 xorp/fea/fticonfig.hh 1.6 +7 -3 xorp/fea/fticonfig_entry_get.cc 1.21 +21 -11 xorp/fea/fticonfig_entry_get.hh 1.5 +16 -7 xorp/fea/fticonfig_entry_get_click.cc 1.10 +15 -4 xorp/fea/fticonfig_entry_get_dummy.cc 1.24 +22 -10 xorp/fea/fticonfig_entry_get_netlink.cc 1.23 +13 -6 xorp/fea/fticonfig_entry_get_rtsock.cc 1.12 +17 -9 xorp/fea/fticonfig_entry_observer.hh 1.7 +15 -4 xorp/fea/fticonfig_entry_observer_dummy.cc 1.8 +25 -10 xorp/fea/fticonfig_entry_observer_netlink.cc 1.7 +14 -7 xorp/fea/fticonfig_entry_observer_rtsock.cc 1.15 +34 -17 xorp/fea/fticonfig_entry_set.hh 1.8 +16 -7 xorp/fea/fticonfig_entry_set_click.cc 1.7 +15 -4 xorp/fea/fticonfig_entry_set_dummy.cc 1.17 +22 -10 xorp/fea/fticonfig_entry_set_netlink.cc 1.22 +13 -6 xorp/fea/fticonfig_entry_set_rtsock.cc 1.6 +7 -3 xorp/fea/fticonfig_table_get.cc 1.17 +21 -11 xorp/fea/fticonfig_table_get.hh 1.4 +16 -7 xorp/fea/fticonfig_table_get_click.cc 1.8 +15 -4 xorp/fea/fticonfig_table_get_dummy.cc 1.22 +22 -10 xorp/fea/fticonfig_table_get_netlink.cc 1.15 +16 -5 xorp/fea/fticonfig_table_get_sysctl.cc 1.13 +17 -9 xorp/fea/fticonfig_table_observer.hh 1.7 +15 -4 xorp/fea/fticonfig_table_observer_dummy.cc 1.9 +25 -10 xorp/fea/fticonfig_table_observer_netlink.cc 1.12 +13 -6 xorp/fea/fticonfig_table_observer_rtsock.cc 1.14 +35 -17 xorp/fea/fticonfig_table_set.hh 1.4 +16 -7 xorp/fea/fticonfig_table_set_click.cc 1.7 +15 -4 xorp/fea/fticonfig_table_set_dummy.cc 1.6 +26 -4 xorp/fea/fticonfig_table_set_netlink.cc 1.9 +26 -4 xorp/fea/fticonfig_table_set_rtsock.cc 1.39 +55 -31 xorp/fea/ifconfig.cc 1.37 +6 -4 xorp/fea/ifconfig.hh 1.7 +7 -3 xorp/fea/ifconfig_get.cc 1.18 +33 -17 xorp/fea/ifconfig_get.hh 1.6 +16 -7 xorp/fea/ifconfig_get_click.cc 1.8 +15 -4 xorp/fea/ifconfig_get_dummy.cc 1.9 +15 -4 xorp/fea/ifconfig_get_getifaddrs.cc 1.11 +33 -8 xorp/fea/ifconfig_get_ioctl.cc 1.12 +22 -10 xorp/fea/ifconfig_get_netlink.cc 1.18 +14 -6 xorp/fea/ifconfig_get_proc_linux.cc 1.9 +15 -4 xorp/fea/ifconfig_get_sysctl.cc 1.12 +17 -9 xorp/fea/ifconfig_observer.hh 1.7 +15 -4 xorp/fea/ifconfig_observer_dummy.cc 1.10 +25 -10 xorp/fea/ifconfig_observer_netlink.cc 1.9 +13 -6 xorp/fea/ifconfig_observer_rtsock.cc 1.25 +21 -11 xorp/fea/ifconfig_set.hh 1.10 +16 -7 xorp/fea/ifconfig_set_click.cc 1.16 +15 -4 xorp/fea/ifconfig_set_dummy.cc 1.32 +33 -8 xorp/fea/ifconfig_set_ioctl.cc 1.18 +22 -10 xorp/fea/ifconfig_set_netlink.cc 1.25 +34 -26 xorp/fea/netlink_socket.cc 1.13 +14 -8 xorp/fea/netlink_socket.hh 1.17 +22 -16 xorp/fea/routing_socket.cc 1.10 +14 -6 xorp/fea/routing_socket.hh 1.16 +10 -4 xorp/fea/test_mfea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Wed Dec 1 03:29:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 19:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB13U1kH061077 for ; Tue, 30 Nov 2004 19:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13U1eU051857 for ; Tue, 30 Nov 2004 19:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13U1N1012842; Tue, 30 Nov 2004 19:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13TAN1012801 for ; Tue, 30 Nov 2004 19:29:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13TAeU051833 for ; Tue, 30 Nov 2004 19:29:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB13TAwC003588 for ; Tue, 30 Nov 2004 19:29:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB13TAcF003587 for xorp-cvs@icir.org; Wed, 1 Dec 2004 03:29:10 GMT (envelope-from pavlin) Date: Wed, 1 Dec 2004 03:29:10 GMT From: Pavlin Radoslavov Message-Id: <200412010329.iB13TAcF003587@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-01 03:29:10 UTC XORP CVS repository Modified files: pim test_pim.cc Log message: ass-by-reference a string error_msg as an argument to the FEA-related methods start() and stop(). Assign this string with the error message (if an error) at the place where exactly the problem happened, and propagate that error message as appropriate. Revision Changes Path 1.42 +10 -4 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Wed Dec 1 03:29:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 19:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB13U2TF061092 for ; Tue, 30 Nov 2004 19:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13U2eU051859 for ; Tue, 30 Nov 2004 19:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13U2N1012853; Tue, 30 Nov 2004 19:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13T1N1012771 for ; Tue, 30 Nov 2004 19:29:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13T1eU051829 for ; Tue, 30 Nov 2004 19:29:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB13T1m1003545 for ; Tue, 30 Nov 2004 19:29:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB13T1wZ003544 for xorp-cvs@icir.org; Wed, 1 Dec 2004 03:29:01 GMT (envelope-from pavlin) Date: Wed, 1 Dec 2004 03:29:01 GMT From: Pavlin Radoslavov Message-Id: <200412010329.iB13T1wZ003544@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-01 03:29:01 UTC XORP CVS repository Modified files: mld6igmp test_mld6igmp.cc Log message: Pass-by-reference a string error_msg as an argument to the FEA-related methods start() and stop(). Assign this string with the error message (if an error) at the place where exactly the problem happened, and propagate that error message as appropriate. Revision Changes Path 1.37 +10 -4 xorp/mld6igmp/test_mld6igmp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Wed Dec 1 03:48:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 30 Nov 2004 19:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB13n1M1065739 for ; Tue, 30 Nov 2004 19:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13n1eU052111 for ; Tue, 30 Nov 2004 19:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13n1N1013405; Tue, 30 Nov 2004 19:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB13mSN1013375 for ; Tue, 30 Nov 2004 19:48:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB13mReU052107 for ; Tue, 30 Nov 2004 19:48:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB13mRij015827 for ; Tue, 30 Nov 2004 19:48:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB13mRH5015826 for xorp-cvs@icir.org; Wed, 1 Dec 2004 03:48:27 GMT (envelope-from pavlin) Date: Wed, 1 Dec 2004 03:48:27 GMT From: Pavlin Radoslavov Message-Id: <200412010348.iB13mRH5015826@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-01 03:48:27 UTC XORP CVS repository Modified files: fea ifconfig_set_click.cc Log message: * Comment-out unused variable. * Add a comment about method that will go away in the future. Revision Changes Path 1.11 +3 -2 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Thu Dec 2 02:37:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Dec 2004 18:38:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB22c3Ao094947 for ; Wed, 1 Dec 2004 18:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB22c3eU068942 for ; Wed, 1 Dec 2004 18:38:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB22c2N1000857; Wed, 1 Dec 2004 18:38:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB22boN1000835 for ; Wed, 1 Dec 2004 18:37:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB22boeU068939 for ; Wed, 1 Dec 2004 18:37:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB22boVp042989 for ; Wed, 1 Dec 2004 18:37:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB22bokH042988 for xorp-cvs@icir.org; Thu, 2 Dec 2004 02:37:50 GMT (envelope-from pavlin) Date: Thu, 2 Dec 2004 02:37:50 GMT From: Pavlin Radoslavov Message-Id: <200412020237.iB22bokH042988@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-02 02:37:50 UTC XORP CVS repository Modified files: etc/templates fea.tp fea click_socket.cc click_socket.hh fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh xrl_target.cc xrl_target.hh xrl/interfaces fea_click.xif fea_click_xif.cc fea_click_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: Add XRL interface for configuring/installing kernel-level Click: kernel module loading and Click file system mounting. The loading and the mounting operations are not implemented yet. Revision Changes Path 1.28 +23 -2 xorp/etc/templates/fea.tp 1.9 +2 -1 xorp/fea/click_socket.cc 1.8 +35 -1 xorp/fea/click_socket.hh 1.36 +48 -1 xorp/fea/fticonfig.cc 1.28 +27 -2 xorp/fea/fticonfig.hh 1.40 +42 -1 xorp/fea/ifconfig.cc 1.38 +26 -1 xorp/fea/ifconfig.hh 1.63 +61 -1 xorp/fea/xrl_target.cc 1.48 +31 -1 xorp/fea/xrl_target.hh 1.2 +28 -4 xorp/xrl/interfaces/fea_click.xif 1.2 +97 -1 xorp/xrl/interfaces/fea_click_xif.cc 1.2 +70 -1 xorp/xrl/interfaces/fea_click_xif.hh 1.46 +25 -1 xorp/xrl/targets/fea.xrls 1.48 +91 -1 xorp/xrl/targets/fea_base.cc 1.52 +43 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Thu Dec 2 07:02:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Dec 2004 23:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB2731Vb090933 for ; Wed, 1 Dec 2004 23:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB2730eU071986 for ; Wed, 1 Dec 2004 23:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB2730N1008020; Wed, 1 Dec 2004 23:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB272dN1007992 for ; Wed, 1 Dec 2004 23:02:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB272deU071984 for ; Wed, 1 Dec 2004 23:02:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB272cVq045380 for ; Wed, 1 Dec 2004 23:02:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB272ciT045379 for xorp-cvs@icir.org; Thu, 2 Dec 2004 07:02:38 GMT (envelope-from pavlin) Date: Thu, 2 Dec 2004 07:02:38 GMT From: Pavlin Radoslavov Message-Id: <200412020702.iB272ciT045379@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-02 07:02:38 UTC XORP CVS repository Modified files: fea click_socket.hh fticonfig.cc fticonfig.hh ifconfig.cc ifconfig.hh xrl_target.cc Log message: Split upfront (inside xrl_target.cc) the string with the names of the kernel Click modules that are separated by ':', and pass the names around as a list of strings. Revision Changes Path 1.9 +4 -7 xorp/fea/click_socket.hh 1.37 +3 -6 xorp/fea/fticonfig.cc 1.29 +3 -6 xorp/fea/fticonfig.hh 1.41 +3 -6 xorp/fea/ifconfig.cc 1.39 +3 -6 xorp/fea/ifconfig.hh 1.64 +24 -3 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 00:29:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 16:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB30U1ig004929 for ; Thu, 2 Dec 2004 16:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB30U0eU085443 for ; Thu, 2 Dec 2004 16:30:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB30U0N1011129; Thu, 2 Dec 2004 16:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB30T6N1011091 for ; Thu, 2 Dec 2004 16:29:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB30T6eU085433 for ; Thu, 2 Dec 2004 16:29:06 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB30T69C056764 for ; Thu, 2 Dec 2004 16:29:06 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB30T6cp056763 for xorp-cvs@icir.org; Fri, 3 Dec 2004 00:29:06 GMT (envelope-from bms) Date: Fri, 3 Dec 2004 00:29:06 GMT From: Bruce Simpson Message-Id: <200412030029.iB30T6cp056763@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-03 00:29:06 UTC XORP CVS repository Modified files: fea rawsock6.cc Log message: Fix a brain-o. CMSG_DATA() should be used with cmsghdr, not msghdr. Bug found by: pavlin Revision Changes Path 1.6 +4 -4 xorp/fea/rawsock6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 00:59:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 17:00:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB3103Y7010782 for ; Thu, 2 Dec 2004 17:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3103eU085723 for ; Thu, 2 Dec 2004 17:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3102N1012251; Thu, 2 Dec 2004 17:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB30xoN1012239 for ; Thu, 2 Dec 2004 16:59:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB30xoeU085713 for ; Thu, 2 Dec 2004 16:59:50 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB30xosk057092 for ; Thu, 2 Dec 2004 16:59:50 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB30xoQN057091 for xorp-cvs@icir.org; Fri, 3 Dec 2004 00:59:50 GMT (envelope-from bms) Date: Fri, 3 Dec 2004 00:59:50 GMT From: Bruce Simpson Message-Id: <200412030059.iB30xoQN057091@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-03 00:59:50 UTC XORP CVS repository Modified files: fea rawsock6.cc Log message: De-braino the braino. CMSG_DATA in this case is being passed a pointer to cmsghdr. HOPOPTS should actually be copied into the _hoptbuf. We need to #include to see the CMSG_* series of macros. Nudged by: pavlin Revision Changes Path 1.7 +6 -5 xorp/fea/rawsock6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 01:06:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 17:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB3171nr012172 for ; Thu, 2 Dec 2004 17:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3171eU085810 for ; Thu, 2 Dec 2004 17:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3171N1012505; Thu, 2 Dec 2004 17:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB316AN1012476 for ; Thu, 2 Dec 2004 17:06:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB316AeU085799 for ; Thu, 2 Dec 2004 17:06:10 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB316A6G057238 for ; Thu, 2 Dec 2004 17:06:10 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB316AII057237 for xorp-cvs@icir.org; Fri, 3 Dec 2004 01:06:10 GMT (envelope-from bms) Date: Fri, 3 Dec 2004 01:06:10 GMT From: Bruce Simpson Message-Id: <200412030106.iB316AII057237@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-03 01:06:10 UTC XORP CVS repository Modified files: fea rawsock6.cc Log message: Further guard against compilation fail-warnings due to unused variables if parts of the IPv6 API definition on the target platform are missing. Revision Changes Path 1.8 +5 -1 xorp/fea/rawsock6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 03:52:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 19:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB33r1jN045359 for ; Thu, 2 Dec 2004 19:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB33r1eU087385 for ; Thu, 2 Dec 2004 19:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB33r0N1017077; Thu, 2 Dec 2004 19:53:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB33qdN1017064 for ; Thu, 2 Dec 2004 19:52:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB33qdeU087379 for ; Thu, 2 Dec 2004 19:52:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB33qchL058541 for ; Thu, 2 Dec 2004 19:52:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB33qcJG058540 for xorp-cvs@icir.org; Fri, 3 Dec 2004 03:52:38 GMT (envelope-from pavlin) Date: Fri, 3 Dec 2004 03:52:38 GMT From: Pavlin Radoslavov Message-Id: <200412030352.iB33qcJG058540@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-03 03:52:38 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_click.cc fticonfig_entry_set_click.cc fticonfig_table_get_click.cc fticonfig_table_set_click.cc Log message: Register Click as the primary method to get/set forwarding info. Revision Changes Path 1.6 +2 -2 xorp/fea/fticonfig_entry_get_click.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_set_click.cc 1.5 +2 -2 xorp/fea/fticonfig_table_get_click.cc 1.5 +2 -2 xorp/fea/fticonfig_table_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 04:10:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 20:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB34B1N2048879 for ; Thu, 2 Dec 2004 20:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB34B0eU087570 for ; Thu, 2 Dec 2004 20:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB34B0N1017532; Thu, 2 Dec 2004 20:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB34AlN1017520 for ; Thu, 2 Dec 2004 20:10:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB34AleU087567 for ; Thu, 2 Dec 2004 20:10:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB34AljR058777 for ; Thu, 2 Dec 2004 20:10:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB34Alta058776 for xorp-cvs@icir.org; Fri, 3 Dec 2004 04:10:47 GMT (envelope-from pavlin) Date: Fri, 3 Dec 2004 04:10:47 GMT From: Pavlin Radoslavov Message-Id: <200412030410.iB34Alta058776@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-03 04:10:47 UTC XORP CVS repository Modified files: fea ifconfig_get.hh ifconfig_get_proc_linux.cc Log message: * Clean-up the mechanism for specifying the /proc filename that can be used to read the network information. * Rename few variables and functions. * Minor bug fix in function get_proc_linux_iface_name() (previously named get_name()). Revision Changes Path 1.19 +4 -1 xorp/fea/ifconfig_get.hh 1.19 +52 -34 xorp/fea/ifconfig_get_proc_linux.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 04:18:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 20:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB34J1hx050457 for ; Thu, 2 Dec 2004 20:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB34J0eU087648 for ; Thu, 2 Dec 2004 20:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB34J0N1017794; Thu, 2 Dec 2004 20:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB34I6N1017766 for ; Thu, 2 Dec 2004 20:18:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB34I6eU087646 for ; Thu, 2 Dec 2004 20:18:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB34I6YU058902 for ; Thu, 2 Dec 2004 20:18:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB34I6n1058901 for xorp-cvs@icir.org; Fri, 3 Dec 2004 04:18:06 GMT (envelope-from pavlin) Date: Fri, 3 Dec 2004 04:18:06 GMT From: Pavlin Radoslavov Message-Id: <200412030418.iB34I6n1058901@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-03 04:18:06 UTC XORP CVS repository Modified files: . config.h.in configure configure.in Log message: Add check whether the system has header file Revision Changes Path 1.39 +3 -0 xorp/config.h.in 1.133 +2 -1 xorp/configure 1.127 +2 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 04:59:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Dec 2004 21:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB3501ch058468 for ; Thu, 2 Dec 2004 21:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3501eU088026 for ; Thu, 2 Dec 2004 21:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3501N1018741; Thu, 2 Dec 2004 21:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB34xTN1018725 for ; Thu, 2 Dec 2004 20:59:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB34xTeU088014 for ; Thu, 2 Dec 2004 20:59:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB34xS5I059249 for ; Thu, 2 Dec 2004 20:59:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB34xSAd059248 for xorp-cvs@icir.org; Fri, 3 Dec 2004 04:59:28 GMT (envelope-from pavlin) Date: Fri, 3 Dec 2004 04:59:28 GMT From: Pavlin Radoslavov Message-Id: <200412030459.iB34xSAd059248@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-03 04:59:28 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh Log message: * Implement the mechanism to load/unload kernel modules on Linux and FreeBSD. * Implement the mechanism to mount/unmount the kernel Linux file system. * Remove hard-coded value and use instead a private const variable ClickSocket::USER_CLICK_STARTUP_MAX_WAIT_TIME to define the maximum time to wait on startup until the user-level Click is ready. Revision Changes Path 1.10 +492 -6 xorp/fea/click_socket.cc 1.10 +76 -1 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:07 2005 Subject: No subject Fri Dec 3 14:01:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Dec 2004 06:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB3E21uq067518 for ; Fri, 3 Dec 2004 06:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3E21eU093903 for ; Fri, 3 Dec 2004 06:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3E20N1003294; Fri, 3 Dec 2004 06:02:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3E1VN1003284 for ; Fri, 3 Dec 2004 06:01:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3E1VeU093894 for ; Fri, 3 Dec 2004 06:01:31 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB3E1UWt039796 for ; Fri, 3 Dec 2004 06:01:30 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB3E1UQ1039795 for xorp-cvs@icir.org; Fri, 3 Dec 2004 14:01:30 GMT (envelope-from mjh) Date: Fri, 3 Dec 2004 14:01:30 GMT From: Mark Handley Message-Id: <200412031401.iB3E1UQ1039795@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2004-12-03 14:01:30 UTC XORP CVS repository Modified files: . faq.html html_src faq.html Log message: Fix typo. Revision Changes Path 1.17 +5 -5 www/faq.html 1.4 +4 -4 www/html_src/faq.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Fri Dec 3 21:30:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Dec 2004 13:31:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB3LV3xA065295 for ; Fri, 3 Dec 2004 13:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3LV3eU000395 for ; Fri, 3 Dec 2004 13:31:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3LV1UF005282; Fri, 3 Dec 2004 13:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB3LU8UF005259 for ; Fri, 3 Dec 2004 13:30:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB3LU7eU000389 for ; Fri, 3 Dec 2004 13:30:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB3LU7N3045007 for ; Fri, 3 Dec 2004 13:30:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB3LU7bM045006 for xorp-cvs@icir.org; Fri, 3 Dec 2004 21:30:07 GMT (envelope-from pavlin) Date: Fri, 3 Dec 2004 21:30:07 GMT From: Pavlin Radoslavov Message-Id: <200412032130.iB3LU7bM045006@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-03 21:30:07 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh fticonfig_entry_set_click.cc ifconfig_set_click.cc Log message: * Implement the mechanism to write Click configuration to kernel-level Click. * Modify some of the error messages to make it clear whether they apply to kernel Click or to user-level Click. * Rename ClickSocket::check_command_status() to ClickSocket::check_user_command_status(), because this method is used only by user-level Click. Revision Changes Path 1.11 +113 -27 xorp/fea/click_socket.cc 1.11 +9 -6 xorp/fea/click_socket.hh 1.10 +9 -5 xorp/fea/fticonfig_entry_set_click.cc 1.12 +3 -2 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sat Dec 4 20:59:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Dec 2004 13:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB4L01FB007247 for ; Sat, 4 Dec 2004 13:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB4L00Fw017525 for ; Sat, 4 Dec 2004 13:00:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB4L00UF011660; Sat, 4 Dec 2004 13:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB4KxmUF011651 for ; Sat, 4 Dec 2004 12:59:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB4KxmFw017516 for ; Sat, 4 Dec 2004 12:59:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB4Kxmo1057189 for ; Sat, 4 Dec 2004 12:59:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB4Kxm42057188 for xorp-cvs@icir.org; Sat, 4 Dec 2004 20:59:48 GMT (envelope-from atanu) Date: Sat, 4 Dec 2004 20:59:48 GMT From: Atanu Ghosh Message-Id: <200412042059.iB4Kxm42057188@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-04 20:59:47 UTC XORP CVS repository Modified files: libproto spt.cc Log message: The place holder method incremental_spt() was not returning a value. This problem was caught by "gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-42)", why didn't the tinderbox catch it? Revision Changes Path 1.3 +3 -1 xorp/libproto/spt.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sat Dec 4 21:08:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Dec 2004 13:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB4L91BN009347 for ; Sat, 4 Dec 2004 13:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB4L91Fw017633 for ; Sat, 4 Dec 2004 13:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB4L91UF011863; Sat, 4 Dec 2004 13:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB4L8IUF011848 for ; Sat, 4 Dec 2004 13:08:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB4L8HFw017628 for ; Sat, 4 Dec 2004 13:08:17 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB4L8HFx057477 for ; Sat, 4 Dec 2004 13:08:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB4L8HWQ057476 for xorp-cvs@icir.org; Sat, 4 Dec 2004 21:08:17 GMT (envelope-from atanu) Date: Sat, 4 Dec 2004 21:08:17 GMT From: Atanu Ghosh Message-Id: <200412042108.iB4L8HWQ057476@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-04 21:08:17 UTC XORP CVS repository Modified files: bgp peer_handler.hh Log message: Use the peer's BGP ID convertered into an integer for decision, not the actual address (The address could be an IPv6 address). Revision Changes Path 1.15 +5 -4 xorp/bgp/peer_handler.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 02:44:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Dec 2004 18:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB52j1p6059048 for ; Sat, 4 Dec 2004 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB52j1Fw020484 for ; Sat, 4 Dec 2004 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB52j1UF019925; Sat, 4 Dec 2004 18:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB52inUF019917 for ; Sat, 4 Dec 2004 18:44:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB52imFw020479 for ; Sat, 4 Dec 2004 18:44:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB52imwU059993 for ; Sat, 4 Dec 2004 18:44:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB52imZ5059992 for xorp-cvs@icir.org; Sun, 5 Dec 2004 02:44:48 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 02:44:48 GMT From: Atanu Ghosh Message-Id: <200412050244.iB52imZ5059992@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 02:44:48 UTC XORP CVS repository Modified files: bgp/harness test_peering1.sh Log message: Most of the tests initiate the TCP connection to the BGP under test. This test waits for the BGP under test to make a connection. Unfortunately the test didn't actually verify that a connection had been made. Revision Changes Path 1.28 +3 -5 xorp/bgp/harness/test_peering1.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 08:44:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 00:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB58j16I054683 for ; Sun, 5 Dec 2004 00:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB58j1Fw023630 for ; Sun, 5 Dec 2004 00:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB58j1UF028324; Sun, 5 Dec 2004 00:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB58i4UF028306 for ; Sun, 5 Dec 2004 00:44:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB58i4Fw023620 for ; Sun, 5 Dec 2004 00:44:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB58i4p3062727 for ; Sun, 5 Dec 2004 00:44:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB58i44h062726 for xorp-cvs@icir.org; Sun, 5 Dec 2004 08:44:04 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 08:44:04 GMT From: Atanu Ghosh Message-Id: <200412050844.iB58i44h062726@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 08:44:04 UTC XORP CVS repository Modified files: bgp/tools print_peer.cc Log message: If an error occurs exit. Revision Changes Path 1.14 +3 -2 xorp/bgp/tools/print_peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 16:14:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 08:16:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5GG2pP059197 for ; Sun, 5 Dec 2004 08:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5GG1Fw029327 for ; Sun, 5 Dec 2004 08:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5GG1UF010653; Sun, 5 Dec 2004 08:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5GEaUF010613 for ; Sun, 5 Dec 2004 08:14:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5GEaFw029302 for ; Sun, 5 Dec 2004 08:14:36 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5GEafJ067910 for ; Sun, 5 Dec 2004 08:14:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5GEaKC067909 for xorp-cvs@icir.org; Sun, 5 Dec 2004 16:14:36 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 16:14:36 GMT From: Atanu Ghosh Message-Id: <200412051614.iB5GEaKC067909@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 16:14:36 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh dummy_main.cc iptuple.cc iptuple.hh peer.cc peer_list.cc socket.cc socket.hh bgp/harness test_peer.cc Log message: The XORP BGP process can now make IPv6 TCP connections. Note that the interface to get peer status is still IPv6 centric. The Iptuple class is now responsible for creating the sockaddr for the BGP socket class. The BGP socket class is now agnostic to the address family being used. Revision Changes Path 1.43 +19 -13 xorp/bgp/bgp.cc 1.35 +2 -3 xorp/bgp/bgp.hh 1.9 +2 -2 xorp/bgp/dummy_main.cc 1.27 +34 -39 xorp/bgp/harness/test_peer.cc 1.6 +128 -43 xorp/bgp/iptuple.cc 1.5 +59 -11 xorp/bgp/iptuple.hh 1.82 +3 -3 xorp/bgp/peer.cc 1.14 +20 -3 xorp/bgp/peer_list.cc 1.18 +56 -47 xorp/bgp/socket.cc 1.9 +33 -10 xorp/bgp/socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 22:23:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 14:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5MO1dK068845 for ; Sun, 5 Dec 2004 14:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5MO1Fw032927 for ; Sun, 5 Dec 2004 14:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5MO1UF019376; Sun, 5 Dec 2004 14:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5MNsUF019370 for ; Sun, 5 Dec 2004 14:23:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5MNsFw032925 for ; Sun, 5 Dec 2004 14:23:54 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5MNstO071085 for ; Sun, 5 Dec 2004 14:23:54 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5MNsvC071084 for xorp-cvs@icir.org; Sun, 5 Dec 2004 22:23:54 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 22:23:54 GMT From: Atanu Ghosh Message-Id: <200412052223.iB5MNsvC071084@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 22:23:54 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh peer_list.cc peer_list.hh xrl_target.cc xrl_target.hh bgp/tools print_peer.cc print_peer.hh Log message: The interface for gettting peer status now returns strings containing the numeric address. The print peer tool has been modified appropriately. Revision Changes Path 1.44 +7 -5 xorp/bgp/bgp.cc 1.36 +3 -3 xorp/bgp/bgp.hh 1.15 +7 -23 xorp/bgp/peer_list.cc 1.6 +3 -3 xorp/bgp/peer_list.hh 1.15 +11 -10 xorp/bgp/tools/print_peer.cc 1.9 +5 -5 xorp/bgp/tools/print_peer.hh 1.31 +24 -24 xorp/bgp/xrl_target.cc 1.26 +17 -17 xorp/bgp/xrl_target.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 22:28:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 14:30:29 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5MUTfP070185 for ; Sun, 5 Dec 2004 14:30:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5MUSFw033010 for ; Sun, 5 Dec 2004 14:30:29 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5MUSUF019610; Sun, 5 Dec 2004 14:30:28 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5MSaUF019524 for ; Sun, 5 Dec 2004 14:28:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5MSaFw032977 for ; Sun, 5 Dec 2004 14:28:36 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5MSa3I071175 for ; Sun, 5 Dec 2004 14:28:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5MSar0071174 for xorp-cvs@icir.org; Sun, 5 Dec 2004 22:28:36 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 22:28:36 GMT From: Atanu Ghosh Message-Id: <200412052228.iB5MSar0071174@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 22:28:36 UTC XORP CVS repository Modified files: mibs bgp4_mib_1657_bgppeertable.cc Log message: The interface for getting BGP peer status now returns strings containing the numeric addresses. As opposed to an IPv4 objects. The mib code has been modified to use the new interface. If an IPv6 peering is returned, rather than discarding it, it is passed to the higher level code with the local and peer addresses set to zero. This is not the correct behaviour and should be fixed. Revision Changes Path 1.15 +37 -11 xorp/mibs/bgp4_mib_1657_bgppeertable.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 22:35:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 14:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5Ma1k2071306 for ; Sun, 5 Dec 2004 14:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5Ma1Fw033081 for ; Sun, 5 Dec 2004 14:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5Ma1UF019759; Sun, 5 Dec 2004 14:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5MZ9UF019735 for ; Sun, 5 Dec 2004 14:35:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5MZ9Fw033075 for ; Sun, 5 Dec 2004 14:35:09 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5MZ9gd071371 for ; Sun, 5 Dec 2004 14:35:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5MZ9vr071370 for xorp-cvs@icir.org; Sun, 5 Dec 2004 22:35:09 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 22:35:09 GMT From: Atanu Ghosh Message-Id: <200412052235.iB5MZ9vr071370@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 22:35:09 UTC XORP CVS repository Modified files: xrl/interfaces bgp.xif bgp_xif.cc bgp_xif.hh xrl/targets bgp.xrls bgp_base.cc bgp_base.hh Log message: The interface for getting the BGP peer status now returns strings containing numeric addresses, as opposed to IPv4 objects. Revision Changes Path 1.20 +17 -17 xorp/xrl/interfaces/bgp.xif 1.28 +17 -17 xorp/xrl/interfaces/bgp_xif.cc 1.28 +16 -16 xorp/xrl/interfaces/bgp_xif.hh 1.33 +9 -9 xorp/xrl/targets/bgp.xrls 1.33 +17 -17 xorp/xrl/targets/bgp_base.cc 1.39 +17 -17 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:31:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5NW1GC089701 for ; Sun, 5 Dec 2004 15:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NW1Fw033611 for ; Sun, 5 Dec 2004 15:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NW1UF021290; Sun, 5 Dec 2004 15:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NVjUF021279 for ; Sun, 5 Dec 2004 15:31:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NVjFw033609 for ; Sun, 5 Dec 2004 15:31:45 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NVjTi071952 for ; Sun, 5 Dec 2004 15:31:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NVjJb071951 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:31:45 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 23:31:45 GMT From: Atanu Ghosh Message-Id: <200412052331.iB5NVjJb071951@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 23:31:45 UTC XORP CVS repository Modified files: bgp xrl_target.cc Log message: Add some debugging. Revision Changes Path 1.32 +11 -1 xorp/bgp/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:32:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5NX1IN089922 for ; Sun, 5 Dec 2004 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NX1Fw033625 for ; Sun, 5 Dec 2004 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NX1UF021323; Sun, 5 Dec 2004 15:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NWHUF021306 for ; Sun, 5 Dec 2004 15:32:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NWHFw033617 for ; Sun, 5 Dec 2004 15:32:17 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NWHdF071998 for ; Sun, 5 Dec 2004 15:32:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NWH7Y071997 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:32:17 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 23:32:17 GMT From: Atanu Ghosh Message-Id: <200412052332.iB5NWH7Y071997@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 23:32:17 UTC XORP CVS repository Modified files: bgp bgp.cc Log message: Add some warning messages if a peer can't be found. Revision Changes Path 1.45 +35 -8 xorp/bgp/bgp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:35:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5Na1ih090549 for ; Sun, 5 Dec 2004 15:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5Na0Fw033673 for ; Sun, 5 Dec 2004 15:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5Na0UF021445; Sun, 5 Dec 2004 15:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NZHUF021408 for ; Sun, 5 Dec 2004 15:35:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NZGFw033671 for ; Sun, 5 Dec 2004 15:35:16 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NZGx6072080 for ; Sun, 5 Dec 2004 15:35:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NZGOi072079 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:35:16 GMT (envelope-from atanu) Date: Sun, 5 Dec 2004 23:35:16 GMT From: Atanu Ghosh Message-Id: <200412052335.iB5NZGOi072079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-05 23:35:16 UTC XORP CVS repository Modified files: bgp peer_list.cc Log message: The port number in the iptuple is no longer held in network byte order, so it no longer needs to be transformed, especially by htons()? Revision Changes Path 1.16 +3 -3 xorp/bgp/peer_list.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:43:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5Ni1q4092119 for ; Sun, 5 Dec 2004 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5Ni1Fw033733 for ; Sun, 5 Dec 2004 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5Ni1UF021657; Sun, 5 Dec 2004 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NhPUF021641 for ; Sun, 5 Dec 2004 15:43:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NhOFw033726 for ; Sun, 5 Dec 2004 15:43:24 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NhOUT072163 for ; Sun, 5 Dec 2004 15:43:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NhOOU072162 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:43:24 GMT (envelope-from mjh) Date: Sun, 5 Dec 2004 23:43:24 GMT From: Mark Handley Message-Id: <200412052343.iB5NhOOU072162@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-05 23:43:24 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Log message: Add generic_module_manager Revision Changes Path 1.36 +5 -2 xorp/rtrmgr/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:47:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5Nm1N8092911 for ; Sun, 5 Dec 2004 15:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5Nm1Fw033792 for ; Sun, 5 Dec 2004 15:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5Nm1UF021777; Sun, 5 Dec 2004 15:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NljUF021769 for ; Sun, 5 Dec 2004 15:47:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NljFw033787 for ; Sun, 5 Dec 2004 15:47:45 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NljTh072532 for ; Sun, 5 Dec 2004 15:47:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NljAs072531 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:47:45 GMT (envelope-from mjh) Date: Sun, 5 Dec 2004 23:47:45 GMT From: Mark Handley Message-Id: <200412052347.iB5NljAs072531@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-05 23:47:45 UTC XORP CVS repository Modified files: rtrmgr Makefile.in Log message: update to match Makefile.am Revision Changes Path 1.48 +17 -16 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Sun Dec 5 23:48:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 15:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB5Nn1P1093128 for ; Sun, 5 Dec 2004 15:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5Nn1Fw033811 for ; Sun, 5 Dec 2004 15:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5Nn1UF021809; Sun, 5 Dec 2004 15:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB5NmnUF021801 for ; Sun, 5 Dec 2004 15:48:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB5NmnFw033806 for ; Sun, 5 Dec 2004 15:48:49 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB5NmmXA072614 for ; Sun, 5 Dec 2004 15:48:48 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB5NmmPL072613 for xorp-cvs@icir.org; Sun, 5 Dec 2004 23:48:48 GMT (envelope-from mjh) Date: Sun, 5 Dec 2004 23:48:48 GMT From: Mark Handley Message-Id: <200412052348.iB5NmmPL072613@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-05 23:48:48 UTC XORP CVS repository Modified files: xrl/interfaces rtrmgr_client.xif rtrmgr_client_xif.cc rtrmgr_client_xif.hh xrl/targets xorpsh.tgt xorpsh.xrls xorpsh_base.cc xorpsh_base.hh Log message: Update rtrmgr_client interface so xorpsh can track status of modules. Revision Changes Path 1.3 +4 -2 xorp/xrl/interfaces/rtrmgr_client.xif 1.11 +47 -13 xorp/xrl/interfaces/rtrmgr_client_xif.cc 1.11 +19 -4 xorp/xrl/interfaces/rtrmgr_client_xif.hh 1.3 +2 -2 xorp/xrl/targets/xorpsh.tgt 1.8 +6 -4 xorp/xrl/targets/xorpsh.xrls 1.13 +56 -25 xorp/xrl/targets/xorpsh_base.cc 1.15 +14 -7 xorp/xrl/targets/xorpsh_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:08 2005 Subject: No subject Mon Dec 6 00:18:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 16:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB60J1Tk099022 for ; Sun, 5 Dec 2004 16:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60J1Fw034044 for ; Sun, 5 Dec 2004 16:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60J0UF022447; Sun, 5 Dec 2004 16:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60IxUF022439 for ; Sun, 5 Dec 2004 16:18:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60IxFw034042 for ; Sun, 5 Dec 2004 16:18:59 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB60Ixup072882 for ; Sun, 5 Dec 2004 16:18:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB60IxTE072881 for xorp-cvs@icir.org; Mon, 6 Dec 2004 00:18:59 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 00:18:59 GMT From: Mark Handley Message-Id: <200412060018.iB60IxTE072881@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 00:18:59 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Log message: Add generic_module_manager to test binaries too. Revision Changes Path 1.37 +7 -1 xorp/rtrmgr/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 00:21:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 16:22:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB60M0J4099629 for ; Sun, 5 Dec 2004 16:22:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60M0Fw034093 for ; Sun, 5 Dec 2004 16:22:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60M0UF022504; Sun, 5 Dec 2004 16:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60LjUF022495 for ; Sun, 5 Dec 2004 16:21:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60LjFw034089 for ; Sun, 5 Dec 2004 16:21:45 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB60LjrR073240 for ; Sun, 5 Dec 2004 16:21:45 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB60LjWh073239 for xorp-cvs@icir.org; Mon, 6 Dec 2004 00:21:45 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 00:21:45 GMT From: Mark Handley Message-Id: <200412060021.iB60LjWh073239@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 00:21:45 UTC XORP CVS repository Modified files: rtrmgr Makefile.in Log message: regenerate Revision Changes Path 1.49 +21 -19 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 00:31:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 16:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB60W2f7001748 for ; Sun, 5 Dec 2004 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60W1Fw034182 for ; Sun, 5 Dec 2004 16:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60W1UF022744; Sun, 5 Dec 2004 16:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60V6UF022715 for ; Sun, 5 Dec 2004 16:31:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60V6Fw034173 for ; Sun, 5 Dec 2004 16:31:06 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB60V6jq073362 for ; Sun, 5 Dec 2004 16:31:06 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB60V6r8073361 for xorp-cvs@icir.org; Mon, 6 Dec 2004 00:31:06 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 00:31:06 GMT From: Mark Handley Message-Id: <200412060031.iB60V6r8073361@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 00:31:06 UTC XORP CVS repository Modified files: rtrmgr module_manager.cc module_manager.hh slave_conf_tree.hh slave_module_manager.cc slave_module_manager.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh Log message: A start towards removing the slave ModuleManager code by adding a parent GenericModuleManager class. This will eventually permit xorpsh to track the status of running modules, which in turn should permit only the available operational mode commands to be visible in xorpsh. Revision Changes Path 1.35 +3 -5 xorp/rtrmgr/module_manager.cc 1.24 +9 -36 xorp/rtrmgr/module_manager.hh 1.14 +2 -2 xorp/rtrmgr/slave_conf_tree.hh 1.18 +3 -2 xorp/rtrmgr/slave_module_manager.cc 1.17 +5 -2 xorp/rtrmgr/slave_module_manager.hh 1.31 +11 -1 xorp/rtrmgr/xorpsh_main.cc 1.15 +5 -1 xorp/rtrmgr/xorpsh_main.hh 1.15 +2 -2 xorp/rtrmgr/xrl_rtrmgr_interface.hh 1.16 +15 -4 xorp/rtrmgr/xrl_xorpsh_interface.cc 1.10 +9 -4 xorp/rtrmgr/xrl_xorpsh_interface.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 00:31:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 16:32:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB60W3tP001763 for ; Sun, 5 Dec 2004 16:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60W3Fw034184 for ; Sun, 5 Dec 2004 16:32:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60W2UF022755; Sun, 5 Dec 2004 16:32:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60VgUF022730 for ; Sun, 5 Dec 2004 16:31:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60VgFw034180 for ; Sun, 5 Dec 2004 16:31:42 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB60VgcD073405 for ; Sun, 5 Dec 2004 16:31:42 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB60VgHc073404 for xorp-cvs@icir.org; Mon, 6 Dec 2004 00:31:42 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 00:31:42 GMT From: Mark Handley Message-Id: <200412060031.iB60VgHc073404@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 00:31:42 UTC XORP CVS repository Added files: rtrmgr generic_module_manager.cc generic_module_manager.hh Log message: New parent classes for Module and ModuleManager Revision Changes Path 1.1 +122 -0 xorp/rtrmgr/generic_module_manager.cc (new) 1.1 +90 -0 xorp/rtrmgr/generic_module_manager.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 00:51:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 16:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB60q1mY005667 for ; Sun, 5 Dec 2004 16:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60q1Fw034356 for ; Sun, 5 Dec 2004 16:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60q1UF023337; Sun, 5 Dec 2004 16:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB60pfUF023324 for ; Sun, 5 Dec 2004 16:51:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB60pfFw034352 for ; Sun, 5 Dec 2004 16:51:41 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB60peIQ073581 for ; Sun, 5 Dec 2004 16:51:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB60peno073580 for xorp-cvs@icir.org; Mon, 6 Dec 2004 00:51:40 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 00:51:40 GMT From: Mark Handley Message-Id: <200412060051.iB60peno073580@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 00:51:40 UTC XORP CVS repository Modified files: rtrmgr xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Add method to send module status change to xorpsh clients. (not yet invoked) Revision Changes Path 1.25 +19 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.16 +6 -1 xorp/rtrmgr/xrl_rtrmgr_interface.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 01:10:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 17:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB61B13a009440 for ; Sun, 5 Dec 2004 17:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61B1Fw034549 for ; Sun, 5 Dec 2004 17:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61B1UF023920; Sun, 5 Dec 2004 17:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61AhUF023910 for ; Sun, 5 Dec 2004 17:10:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61AhFw034541 for ; Sun, 5 Dec 2004 17:10:43 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB61AgWE073733 for ; Sun, 5 Dec 2004 17:10:42 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB61AghG073732 for xorp-cvs@icir.org; Mon, 6 Dec 2004 01:10:42 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 01:10:42 GMT From: Mark Handley Message-Id: <200412060110.iB61AghG073732@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 01:10:42 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Log message: Disable test_templates because it no longer builds Revision Changes Path 1.38 +6 -5 xorp/rtrmgr/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 01:12:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 17:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB61D1EH009844 for ; Sun, 5 Dec 2004 17:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61D1Fw034568 for ; Sun, 5 Dec 2004 17:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61D1UF023966; Sun, 5 Dec 2004 17:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61CJUF023957 for ; Sun, 5 Dec 2004 17:12:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61CJFw034564 for ; Sun, 5 Dec 2004 17:12:19 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB61CJf5073861 for ; Sun, 5 Dec 2004 17:12:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB61CJHV073860 for xorp-cvs@icir.org; Mon, 6 Dec 2004 01:12:19 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 01:12:19 GMT From: Mark Handley Message-Id: <200412060112.iB61CJHV073860@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 01:12:19 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Log message: I hate automake Revision Changes Path 1.39 +48 -48 xorp/rtrmgr/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 01:13:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 17:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB61E1M4010041 for ; Sun, 5 Dec 2004 17:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61E1Fw034584 for ; Sun, 5 Dec 2004 17:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61E0UF024002; Sun, 5 Dec 2004 17:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61DNUF023982 for ; Sun, 5 Dec 2004 17:13:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61DNFw034578 for ; Sun, 5 Dec 2004 17:13:23 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB61DNXk074170 for ; Sun, 5 Dec 2004 17:13:23 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB61DNmX074169 for xorp-cvs@icir.org; Mon, 6 Dec 2004 01:13:23 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 01:13:23 GMT From: Mark Handley Message-Id: <200412060113.iB61DNmX074169@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 01:13:23 UTC XORP CVS repository Modified files: rtrmgr Makefile.in Log message: update Revision Changes Path 1.50 +55 -30 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 01:15:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 17:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB61G1IX010458 for ; Sun, 5 Dec 2004 17:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61G1Fw034627 for ; Sun, 5 Dec 2004 17:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61G1UF024075; Sun, 5 Dec 2004 17:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61FxUF024064 for ; Sun, 5 Dec 2004 17:15:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61FxFw034625 for ; Sun, 5 Dec 2004 17:15:59 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB61FxXY074259 for ; Sun, 5 Dec 2004 17:15:59 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB61FxVU074258 for xorp-cvs@icir.org; Mon, 6 Dec 2004 01:15:59 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 01:15:59 GMT From: Mark Handley Message-Id: <200412060115.iB61FxVU074258@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 01:15:59 UTC XORP CVS repository Modified files: rtrmgr Makefile.am main_rtrmgr.cc module_manager.cc module_manager.hh Log message: Disable all rtrmgr tests due to linking issues. Will solve this some other time. Revision Changes Path 1.40 +93 -93 xorp/rtrmgr/Makefile.am 1.53 +4 -1 xorp/rtrmgr/main_rtrmgr.cc 1.36 +3 -4 xorp/rtrmgr/module_manager.cc 1.25 +6 -1 xorp/rtrmgr/module_manager.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Mon Dec 6 01:16:54 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 05 Dec 2004 17:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB61H1CJ010671 for ; Sun, 5 Dec 2004 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61H1Fw034651 for ; Sun, 5 Dec 2004 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61H1UF024153; Sun, 5 Dec 2004 17:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB61GsUF024144 for ; Sun, 5 Dec 2004 17:16:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB61GsFw034649 for ; Sun, 5 Dec 2004 17:16:54 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB61GsWh074575 for ; Sun, 5 Dec 2004 17:16:54 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB61Gsu3074574 for xorp-cvs@icir.org; Mon, 6 Dec 2004 01:16:54 GMT (envelope-from mjh) Date: Mon, 6 Dec 2004 01:16:54 GMT From: Mark Handley Message-Id: <200412060116.iB61Gsu3074574@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-06 01:16:54 UTC XORP CVS repository Modified files: rtrmgr Makefile.in Log message: update Revision Changes Path 1.51 +107 -128 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Tue Dec 7 10:33:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 02:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB7AY1ej029984 for ; Tue, 7 Dec 2004 02:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7AY1Fw056733 for ; Tue, 7 Dec 2004 02:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7AY1UF021009; Tue, 7 Dec 2004 02:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7AXBUF020980 for ; Tue, 7 Dec 2004 02:33:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7AXBFw056729 for ; Tue, 7 Dec 2004 02:33:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB7AXAXN093295 for ; Tue, 7 Dec 2004 02:33:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB7AXAwx093294 for xorp-cvs@icir.org; Tue, 7 Dec 2004 10:33:10 GMT (envelope-from pavlin) Date: Tue, 7 Dec 2004 10:33:10 GMT From: Pavlin Radoslavov Message-Id: <200412071033.iB7AXAwx093294@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-07 10:33:10 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Log message: Reorder the recently added generic_module_manager.hh generic_module_manager.cc to preserve the alphabetical order of files. Revision Changes Path 1.41 +11 -11 xorp/rtrmgr/Makefile.am 1.52 +25 -23 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Tue Dec 7 10:45:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 02:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB7Ak1BU032422 for ; Tue, 7 Dec 2004 02:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7Ak1Fw056861 for ; Tue, 7 Dec 2004 02:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7Ak1UF021306; Tue, 7 Dec 2004 02:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7AjpUF021296 for ; Tue, 7 Dec 2004 02:45:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7AjpFw056855 for ; Tue, 7 Dec 2004 02:45:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB7Ajo3c093504 for ; Tue, 7 Dec 2004 02:45:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB7AjokA093503 for xorp-cvs@icir.org; Tue, 7 Dec 2004 10:45:50 GMT (envelope-from pavlin) Date: Tue, 7 Dec 2004 10:45:50 GMT From: Pavlin Radoslavov Message-Id: <200412071045.iB7AjokA093503@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-07 10:45:50 UTC XORP CVS repository Modified files: rtrmgr generic_module_manager.hh module_manager.hh Log message: Compilation fix: move method ModuleManager::eventloop() to GenericModuleManager::eventloop(), because the reference to the eventloop is contained only within GenericModuleManager. The problem was found by gcc-2.95.3 on OpenBSD-current (as of July 2004). Revision Changes Path 1.2 +3 -1 xorp/rtrmgr/generic_module_manager.hh 1.26 +1 -2 xorp/rtrmgr/module_manager.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Tue Dec 7 22:43:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 14:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB7Mi1XJ088284 for ; Tue, 7 Dec 2004 14:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7Mi1Fw065811 for ; Tue, 7 Dec 2004 14:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7Mi0UF015137; Tue, 7 Dec 2004 14:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7MhbUF015122 for ; Tue, 7 Dec 2004 14:43:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7MhaFw065808 for ; Tue, 7 Dec 2004 14:43:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB7Mha1q001446 for ; Tue, 7 Dec 2004 14:43:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB7MhaNX001445 for xorp-cvs@icir.org; Tue, 7 Dec 2004 22:43:36 GMT (envelope-from pavlin) Date: Tue, 7 Dec 2004 22:43:36 GMT From: Pavlin Radoslavov Message-Id: <200412072243.iB7MhaNX001445@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-07 22:43:36 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: Add support for parsing the fea/click XORP configuration, and for setting the kernel/user click flag. Revision Changes Path 1.2 +129 -8 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Tue Dec 7 23:09:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 15:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB7NA2KL094584 for ; Tue, 7 Dec 2004 15:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7NA2Fw066108 for ; Tue, 7 Dec 2004 15:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7NA2UF015970; Tue, 7 Dec 2004 15:10:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB7N9DUF015947 for ; Tue, 7 Dec 2004 15:09:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB7N9DFw066094 for ; Tue, 7 Dec 2004 15:09:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB7N9Cho001730 for ; Tue, 7 Dec 2004 15:09:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB7N9Cvg001729 for xorp-cvs@icir.org; Tue, 7 Dec 2004 23:09:12 GMT (envelope-from pavlin) Date: Tue, 7 Dec 2004 23:09:12 GMT From: Pavlin Radoslavov Message-Id: <200412072309.iB7N9Cvg001729@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-07 23:09:12 UTC XORP CVS repository Modified files: fea ifconfig_set.hh ifconfig_set_click.cc Log message: * Re-generate the fea/click XORP configuration * Add a comment that this internal regeneration is a temporary solution. Revision Changes Path 1.26 +2 -1 xorp/fea/ifconfig_set.hh 1.13 +62 -1 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Wed Dec 8 01:41:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 17:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB81g1JA031477 for ; Tue, 7 Dec 2004 17:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB81g1Fw067468 for ; Tue, 7 Dec 2004 17:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB81g1UF022539; Tue, 7 Dec 2004 17:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB81fLUF022524 for ; Tue, 7 Dec 2004 17:41:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB81fLFw067464 for ; Tue, 7 Dec 2004 17:41:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB81fLfG002896 for ; Tue, 7 Dec 2004 17:41:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB81fLtg002895 for xorp-cvs@icir.org; Wed, 8 Dec 2004 01:41:21 GMT (envelope-from pavlin) Date: Wed, 8 Dec 2004 01:41:21 GMT From: Pavlin Radoslavov Message-Id: <200412080141.iB81fLtg002895@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-08 01:41:21 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_click.cc fticonfig_entry_set_netlink.cc fticonfig_table_get_netlink.cc ifconfig_get_netlink.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_click.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc netlink_socket.cc netlink_socket.hh netlink_socket_utils.cc netlink_socket_utils.hh routing_socket.cc routing_socket.hh xrl_fti.cc Log message: Editorial: rename "errmsg" to "error_msg" for consistency with the majority of the code. Revision Changes Path 1.12 +46 -44 xorp/fea/click_socket.cc 1.12 +12 -12 xorp/fea/click_socket.hh 1.25 +5 -4 xorp/fea/fticonfig_entry_get_netlink.cc 1.24 +7 -7 xorp/fea/fticonfig_entry_get_rtsock.cc 1.11 +7 -7 xorp/fea/fticonfig_entry_set_click.cc 1.18 +7 -7 xorp/fea/fticonfig_entry_set_netlink.cc 1.23 +5 -4 xorp/fea/fticonfig_table_get_netlink.cc 1.13 +12 -10 xorp/fea/ifconfig_get_netlink.cc 1.21 +67 -62 xorp/fea/ifconfig_set.cc 1.27 +65 -65 xorp/fea/ifconfig_set.hh 1.14 +92 -85 xorp/fea/ifconfig_set_click.cc 1.17 +21 -21 xorp/fea/ifconfig_set_dummy.cc 1.33 +63 -62 xorp/fea/ifconfig_set_ioctl.cc 1.19 +58 -58 xorp/fea/ifconfig_set_netlink.cc 1.26 +41 -40 xorp/fea/netlink_socket.cc 1.14 +13 -13 xorp/fea/netlink_socket.hh 1.20 +9 -9 xorp/fea/netlink_socket_utils.cc 1.12 +3 -3 xorp/fea/netlink_socket_utils.hh 1.18 +18 -17 xorp/fea/routing_socket.cc 1.11 +5 -5 xorp/fea/routing_socket.hh 1.15 +4 -4 xorp/fea/xrl_fti.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Wed Dec 8 04:59:35 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 21:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8501eo079556 for ; Tue, 7 Dec 2004 21:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8501Fw069333 for ; Tue, 7 Dec 2004 21:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8501UF027414; Tue, 7 Dec 2004 21:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB84xaUF027386 for ; Tue, 7 Dec 2004 20:59:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB84xZFw069320 for ; Tue, 7 Dec 2004 20:59:35 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB84xZsD004287 for ; Tue, 7 Dec 2004 20:59:35 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB84xZMo004286 for xorp-cvs@icir.org; Wed, 8 Dec 2004 04:59:35 GMT (envelope-from bms) Date: Wed, 8 Dec 2004 04:59:35 GMT From: Bruce Simpson Message-Id: <200412080459.iB84xZMo004286@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-08 04:59:34 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in fea.cc Log message: Disable linkage to the old firewall code. It is scheduled for reincarnation. Revision Changes Path 1.53 +14 -13 xorp/fea/Makefile.am 1.66 +23 -18 xorp/fea/Makefile.in 1.41 +13 -10 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Wed Dec 8 05:07:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 07 Dec 2004 21:08:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8582iN081534 for ; Tue, 7 Dec 2004 21:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8581Fw069442 for ; Tue, 7 Dec 2004 21:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8581UF027621; Tue, 7 Dec 2004 21:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB857UUF027603 for ; Tue, 7 Dec 2004 21:07:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB857UFw069440 for ; Tue, 7 Dec 2004 21:07:30 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB857Ujw004449 for ; Tue, 7 Dec 2004 21:07:30 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB857UjM004448 for xorp-cvs@icir.org; Wed, 8 Dec 2004 05:07:30 GMT (envelope-from bms) Date: Wed, 8 Dec 2004 05:07:30 GMT From: Bruce Simpson Message-Id: <200412080507.iB857UjM004448@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-08 05:07:30 UTC XORP CVS repository Removed files: fea firewall.cc firewall.hh firewall_dummy.hh firewall_ipf.cc firewall_ipf.hh firewall_ipfw.cc firewall_ipfw.hh firewall_iptables.hh xrl_firewall.cc xrl_firewall.hh Log message: Kill the old firewall code. Revision Changes Path 1.4 +0 -78 xorp/fea/firewall.cc (dead) 1.11 +0 -231 xorp/fea/firewall.hh (dead) 1.5 +0 -118 xorp/fea/firewall_dummy.hh (dead) 1.8 +0 -284 xorp/fea/firewall_ipf.cc (dead) 1.6 +0 -120 xorp/fea/firewall_ipf.hh (dead) 1.12 +0 -432 xorp/fea/firewall_ipfw.cc (dead) 1.13 +0 -181 xorp/fea/firewall_ipfw.hh (dead) 1.7 +0 -113 xorp/fea/firewall_iptables.hh (dead) 1.4 +0 -579 xorp/fea/xrl_firewall.cc (dead) 1.2 +0 -429 xorp/fea/xrl_firewall.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Wed Dec 8 17:51:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 09:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8Hq2AQ035826 for ; Wed, 8 Dec 2004 09:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8Hq2Fw078896 for ; Wed, 8 Dec 2004 09:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8Hq1UF017582; Wed, 8 Dec 2004 09:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8Hq0UF017574 for ; Wed, 8 Dec 2004 09:52:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8HpxFw078894 for ; Wed, 8 Dec 2004 09:51:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB8Hpx1D046260 for ; Wed, 8 Dec 2004 09:51:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB8Hpx8W046259 for xorp-cvs@icir.org; Wed, 8 Dec 2004 17:51:59 GMT (envelope-from pavlin) Date: Wed, 8 Dec 2004 17:51:59 GMT From: Pavlin Radoslavov Message-Id: <200412081751.iB8Hpx8W046259@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-08 17:51:59 UTC XORP CVS repository Modified files: fea Makefile.in Log message: Re-generate. Revision Changes Path 1.67 +9 -12 xorp/fea/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:09 2005 Subject: No subject Wed Dec 8 17:56:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 09:57:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8Hv2YM036803 for ; Wed, 8 Dec 2004 09:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8Hv1Fw078950 for ; Wed, 8 Dec 2004 09:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8Hv1UF017721; Wed, 8 Dec 2004 09:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8HuOUF017704 for ; Wed, 8 Dec 2004 09:56:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8HuOFw078944 for ; Wed, 8 Dec 2004 09:56:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB8HuOsP046352 for ; Wed, 8 Dec 2004 09:56:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB8HuOZR046351 for xorp-cvs@icir.org; Wed, 8 Dec 2004 17:56:24 GMT (envelope-from pavlin) Date: Wed, 8 Dec 2004 17:56:24 GMT From: Pavlin Radoslavov Message-Id: <200412081756.iB8HuOZR046351@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-08 17:56:24 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in finder_constants.hh Added files: libxipc finder_constants.cc Log message: Move the definition of the finder-related constants to the new file finder_constants.cc The reason is because on OpenBSD, the following definition does not work if it is in a header file: static const IPv4 FINDER_DEFAULT_HOST = IPv4::LOOPBACK(); On startup, when FINDER_DEFAULT_HOST is used in the beginning of main(), FINDER_DEFAULT_HOST value is incorrectly set to 0.0.0.0 The problem appears on OpenBSD-current (as of July 2004) with the following two compilers: g++-2.95.3 and eg++-3.3.2 Revision Changes Path 1.40 +3 -1 xorp/libxipc/Makefile.am 1.58 +13 -10 xorp/libxipc/Makefile.in 1.1 +24 -0 xorp/libxipc/finder_constants.cc (new) 1.4 +3 -3 xorp/libxipc/finder_constants.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Wed Dec 8 22:47:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 14:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8Mm1kh094442 for ; Wed, 8 Dec 2004 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8Mm1Fw082191 for ; Wed, 8 Dec 2004 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8Mm1UF027641; Wed, 8 Dec 2004 14:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8MlSUF027594 for ; Wed, 8 Dec 2004 14:47:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8MlSFw082185 for ; Wed, 8 Dec 2004 14:47:28 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB8MlSVH048971 for ; Wed, 8 Dec 2004 14:47:28 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB8MlSkp048970 for xorp-cvs@icir.org; Wed, 8 Dec 2004 22:47:28 GMT (envelope-from mjh) Date: Wed, 8 Dec 2004 22:47:28 GMT From: Mark Handley Message-Id: <200412082247.iB8MlSkp048970@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-08 22:47:28 UTC XORP CVS repository Modified files: rtrmgr generic_module_manager.hh master_conf_tree.hh module_manager.cc module_manager.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Change the way xorpsh learns the initial router config from the rtrmgr. Previously it requested it. Now it's proactively given it via the rtrmgr_client interface as soon as it's finished authentication. This avoids a possible race where a config change could occur before xorpsh knew about the config, which would have caused a crash. Add code to proactively report the current running modules and their status as soon as xorpsh finished authenticating, and to update this information as it changes. This information will (eventually) be used to ensure that only relevant operational mode commands are available through the CLI, not ones for protocols we're not currently running. Revision Changes Path 1.3 +5 -2 xorp/rtrmgr/generic_module_manager.hh 1.23 +6 -5 xorp/rtrmgr/master_conf_tree.hh 1.37 +21 -1 xorp/rtrmgr/module_manager.cc 1.27 +6 -1 xorp/rtrmgr/module_manager.hh 1.32 +23 -6 xorp/rtrmgr/xorpsh_main.cc 1.16 +2 -1 xorp/rtrmgr/xorpsh_main.hh 1.26 +53 -1 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.17 +6 -1 xorp/rtrmgr/xrl_rtrmgr_interface.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Wed Dec 8 23:19:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 15:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8NK10o000815 for ; Wed, 8 Dec 2004 15:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8NK1Fw082597 for ; Wed, 8 Dec 2004 15:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8NK0UF028693; Wed, 8 Dec 2004 15:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8NJ1UF028667 for ; Wed, 8 Dec 2004 15:19:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8NJ1Fw082572 for ; Wed, 8 Dec 2004 15:19:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB8NJ1mF049572 for ; Wed, 8 Dec 2004 15:19:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB8NJ1av049571 for xorp-cvs@icir.org; Wed, 8 Dec 2004 23:19:01 GMT (envelope-from pavlin) Date: Wed, 8 Dec 2004 23:19:01 GMT From: Pavlin Radoslavov Message-Id: <200412082319.iB8NJ1av049571@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-08 23:19:01 UTC XORP CVS repository Modified files: rtrmgr xorpsh_main.cc Log message: * Add missing initialization of _got_modules inside the XorpShell constructor. * Replace assert() with XORP_ASSERT() * Replace C-style comment with C++ style comment. Revision Changes Path 1.33 +8 -5 xorp/rtrmgr/xorpsh_main.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Wed Dec 8 23:19:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 15:20:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB8NK2R2000835 for ; Wed, 8 Dec 2004 15:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8NK2Fw082599 for ; Wed, 8 Dec 2004 15:20:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8NK2UF028705; Wed, 8 Dec 2004 15:20:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB8NJbUF028681 for ; Wed, 8 Dec 2004 15:19:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB8NJbFw082586 for ; Wed, 8 Dec 2004 15:19:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB8NJan7049623 for ; Wed, 8 Dec 2004 15:19:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB8NJaVY049622 for xorp-cvs@icir.org; Wed, 8 Dec 2004 23:19:36 GMT (envelope-from pavlin) Date: Wed, 8 Dec 2004 23:19:36 GMT From: Pavlin Radoslavov Message-Id: <200412082319.iB8NJaVY049622@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-08 23:19:36 UTC XORP CVS repository Modified files: rtrmgr xrl_rtrmgr_interface.cc Log message: * Replace C-style comments with C++ style comments * "for(" -> "for (" Revision Changes Path 1.27 +10 -8 xorp/rtrmgr/xrl_rtrmgr_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Thu Dec 9 07:39:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 23:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB97e1I1099157 for ; Wed, 8 Dec 2004 23:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97e1Fw087202 for ; Wed, 8 Dec 2004 23:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97e0UF013381; Wed, 8 Dec 2004 23:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97dRUF013352 for ; Wed, 8 Dec 2004 23:39:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97dQFw087196 for ; Wed, 8 Dec 2004 23:39:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB97dQQ6053239 for ; Wed, 8 Dec 2004 23:39:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB97dQGr053238 for xorp-cvs@icir.org; Thu, 9 Dec 2004 07:39:26 GMT (envelope-from pavlin) Date: Thu, 9 Dec 2004 07:39:26 GMT From: Pavlin Radoslavov Message-Id: <200412090739.iB97dQGr053238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-09 07:39:26 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh Log message: Replace static const variable DEFAULT_USER_CLICK_CONTROL_ADDRESS within class ClickSocket with inlined static member function with the same name. This replacement is to prevent run-time errors when the initialization of the above static const variable may fail if we try to assign a value like IPv4::LOOPBACK() (i.e., a value that depends on the initialization of another static const variable). The problem appears to exist on OpenBSD. Revision Changes Path 1.13 +2 -3 xorp/fea/click_socket.cc 1.13 +4 -2 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Thu Dec 9 07:54:42 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 23:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB97t1hQ002226 for ; Wed, 8 Dec 2004 23:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97t0Fw087330 for ; Wed, 8 Dec 2004 23:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97t0UF013807; Wed, 8 Dec 2004 23:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97shUF013779 for ; Wed, 8 Dec 2004 23:54:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97shFw087321 for ; Wed, 8 Dec 2004 23:54:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB97sgdJ053802 for ; Wed, 8 Dec 2004 23:54:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB97sgbL053801 for xorp-cvs@icir.org; Thu, 9 Dec 2004 07:54:42 GMT (envelope-from pavlin) Date: Thu, 9 Dec 2004 07:54:42 GMT From: Pavlin Radoslavov Message-Id: <200412090754.iB97sgbL053801@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness xorp/cli xorp/cli/tools xorp/fea xorp/fea/tools xorp/fib2mrib xorp/libfeaclient xorp/libxipc xorp/mibs xorp/mld6igmp xorp/pim xorp/policy xorp/rib xorp/rib/tools xorp/rip xorp/rip/tools xorp/rtrmgr ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-09 07:54:42 UTC XORP CVS repository Modified files: bgp/harness coord.cc test_peer.cc cli test_cli.cc cli/tools send_cli_processor_xrl.cc fea fea.cc fea_click.cc test_fea.cc test_mfea.cc test_xrl_sockets4_udp.cc fea/tools show_interfaces.cc fib2mrib xorp_fib2mrib.cc libfeaclient ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc libxipc call_xrl.cc finder_constants.cc finder_constants.hh finder_main.cc finder_server.cc finder_server.hh test_finder.cc test_finder_events.cc test_finder_tcp.cc test_finder_to.cc test_lemming.cc test_xrl_receiver.cc test_xrl_router.cc test_xrl_sender.cc xrl_router.cc xrl_router.hh xrl_std_router.cc mibs test_xorpevents.cc mld6igmp test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc pim test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc policy xorp_policy.cc rib test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc rib/tools show_routes.cc rip xorp_rip_main.cc rip/tools show_peer_stats.cc show_stats.cc rtrmgr main_rtrmgr.cc test_sample_config.cc static_routes xorp_static_routes.cc xrl/tests test_generated.cc Log message: * Add a new class FinderConstants that can be used to access Finder-related values. * Replace global variables FINDER_DEFAULT_HOST and FINDER_DEFAULT_PORT with FinderConstants::FINDER_DEFAULT_HOST() and FinderConstants::FINDER_DEFAULT_PORT() respectively. * Remove the implicit argument values to the constructor(s) of class FinderServer: finder_addr and finder_port, and always explicitly assign them when we call the FinderServer constructor. While there, reverse the order so now the finder_addr argument is before the finder_port argument (for consistency with the rest of the code when we deal with a pair of address and port). * Remove the implicit argument values to the constructor(s) of class XrlRouter: finder_address and finder_port, and always explicitly assign them when we call the XrlRouter constructor. * Remove the implicit argument values to the constructor(s) of class IfMgrXrlMirror: reg_tgt, finder_host, and finder_port, and always explicitly assign them when we call the IfMgrXrlMirror constructor. The major reason for removing the implicit argument values of the above constructors is to reduce the possibility for mismatch when we start dealing with non-default values of the finder address and finder port. The above modifications fix a run-time error on OpenBSD when the FINDER_DEFAULT_HOST was not initialized properly on startup. Revision Changes Path 1.20 +2 -2 xorp/bgp/harness/coord.cc 1.28 +2 -2 xorp/bgp/harness/test_peer.cc 1.32 +4 -4 xorp/cli/test_cli.cc 1.5 +3 -3 xorp/cli/tools/send_cli_processor_xrl.cc 1.42 +3 -3 xorp/fea/fea.cc 1.11 +2 -2 xorp/fea/fea_click.cc 1.11 +5 -5 xorp/fea/test_fea.cc 1.17 +5 -4 xorp/fea/test_mfea.cc 1.8 +4 -4 xorp/fea/test_xrl_sockets4_udp.cc 1.8 +3 -3 xorp/fea/tools/show_interfaces.cc 1.6 +3 -3 xorp/fib2mrib/xorp_fib2mrib.cc 1.12 +1 -2 xorp/libfeaclient/ifmgr_xrl_mirror.cc 1.7 +4 -9 xorp/libfeaclient/ifmgr_xrl_mirror.hh 1.8 +4 -3 xorp/libfeaclient/test_remote_copy.cc 1.29 +3 -3 xorp/libxipc/call_xrl.cc 1.2 +3 -3 xorp/libxipc/finder_constants.cc 1.5 +6 -3 xorp/libxipc/finder_constants.hh 1.14 +3 -3 xorp/libxipc/finder_main.cc 1.10 +3 -3 xorp/libxipc/finder_server.cc 1.13 +2 -4 xorp/libxipc/finder_server.hh 1.16 +6 -4 xorp/libxipc/test_finder.cc 1.13 +7 -7 xorp/libxipc/test_finder_events.cc 1.13 +6 -5 xorp/libxipc/test_finder_tcp.cc 1.7 +3 -2 xorp/libxipc/test_finder_to.cc 1.12 +4 -2 xorp/libxipc/test_lemming.cc 1.5 +3 -3 xorp/libxipc/test_xrl_receiver.cc 1.14 +4 -2 xorp/libxipc/test_xrl_router.cc 1.9 +3 -3 xorp/libxipc/test_xrl_sender.cc 1.42 +4 -4 xorp/libxipc/xrl_router.cc 1.31 +4 -4 xorp/libxipc/xrl_router.hh 1.8 +7 -4 xorp/libxipc/xrl_std_router.cc 1.13 +4 -2 xorp/mibs/test_xorpevents.cc 1.38 +5 -4 xorp/mld6igmp/test_mld6igmp.cc 1.7 +3 -3 xorp/mld6igmp/xorp_igmp.cc 1.8 +3 -3 xorp/mld6igmp/xorp_mld.cc 1.43 +5 -4 xorp/pim/test_pim.cc 1.7 +3 -3 xorp/pim/xorp_pimsm4.cc 1.8 +3 -3 xorp/pim/xorp_pimsm6.cc 1.2 +2 -2 xorp/policy/xorp_policy.cc 1.32 +3 -2 xorp/rib/test_register_xrls.cc 1.17 +3 -2 xorp/rib/test_rib_direct.cc 1.39 +3 -2 xorp/rib/test_rib_xrls.cc 1.7 +3 -3 xorp/rib/tools/show_routes.cc 1.6 +3 -3 xorp/rip/tools/show_peer_stats.cc 1.7 +3 -3 xorp/rip/tools/show_stats.cc 1.8 +6 -4 xorp/rip/xorp_rip_main.cc 1.54 +5 -3 xorp/rtrmgr/main_rtrmgr.cc 1.18 +3 -2 xorp/rtrmgr/test_sample_config.cc 1.8 +3 -3 xorp/static_routes/xorp_static_routes.cc 1.13 +3 -2 xorp/xrl/tests/test_generated.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Thu Dec 9 07:57:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Dec 2004 23:58:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB97w04k002868 for ; Wed, 8 Dec 2004 23:58:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97w0Fw087378 for ; Wed, 8 Dec 2004 23:58:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97w0UF013887; Wed, 8 Dec 2004 23:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB97vcUF013877 for ; Wed, 8 Dec 2004 23:57:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB97vcFw087376 for ; Wed, 8 Dec 2004 23:57:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB97vcQt053933 for ; Wed, 8 Dec 2004 23:57:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB97vcCW053932 for xorp-cvs@icir.org; Thu, 9 Dec 2004 07:57:38 GMT (envelope-from pavlin) Date: Thu, 9 Dec 2004 07:57:38 GMT From: Pavlin Radoslavov Message-Id: <200412090757.iB97vcCW053932@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-09 07:57:38 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in Removed files: libxipc finder_constants.cc Log message: Remove file finder_constants.cc, because it is not needed anymore. Revision Changes Path 1.41 +1 -3 xorp/libxipc/Makefile.am 1.59 +10 -13 xorp/libxipc/Makefile.in 1.3 +0 -24 xorp/libxipc/finder_constants.cc (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Thu Dec 9 20:52:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Dec 2004 12:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iB9Kr1VB062668 for ; Thu, 9 Dec 2004 12:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB9Kr1Fw097205 for ; Thu, 9 Dec 2004 12:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB9Kr1UF006513; Thu, 9 Dec 2004 12:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iB9KqQUF006494 for ; Thu, 9 Dec 2004 12:52:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iB9KqQFw097201 for ; Thu, 9 Dec 2004 12:52:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iB9KqQiP004842 for ; Thu, 9 Dec 2004 12:52:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iB9KqPvu004841 for xorp-cvs@icir.org; Thu, 9 Dec 2004 20:52:25 GMT (envelope-from pavlin) Date: Thu, 9 Dec 2004 20:52:25 GMT From: Pavlin Radoslavov Message-Id: <200412092052.iB9KqPvu004841@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-09 20:52:25 UTC XORP CVS repository Modified files: fea click_socket.cc Log message: Check the return value of close(2) after writing to a Click kernel handler. If the close() system call returned an error, this is an indication that the write to the Click handler failed. Note that typically we should have caught any errors by reading the "/errors" handler, so the check for the return value of close() is the last line of defense. Obtained from: Eddie Kohler Revision Changes Path 1.14 +17 -2 xorp/fea/click_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Fri Dec 10 01:24:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Dec 2004 17:25:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBA1P2aY021016 for ; Thu, 9 Dec 2004 17:25:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA1P1Fw000318 for ; Thu, 9 Dec 2004 17:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA1P1UF015239; Thu, 9 Dec 2004 17:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA1OkUF015214 for ; Thu, 9 Dec 2004 17:24:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA1OkFw000312 for ; Thu, 9 Dec 2004 17:24:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBA1Ok9v007455 for ; Thu, 9 Dec 2004 17:24:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBA1Okuj007454 for xorp-cvs@icir.org; Fri, 10 Dec 2004 01:24:46 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 01:24:46 GMT From: Pavlin Radoslavov Message-Id: <200412100124.iBA1Okuj007454@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 01:24:46 UTC XORP CVS repository Modified files: rtrmgr TODO Log message: Add TODO entries how to deal with configuration changes on-the-fly (based on XORP discussion). Revision Changes Path 1.26 +7 -1 xorp/rtrmgr/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Fri Dec 10 02:43:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Dec 2004 18:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBA2i1Um040702 for ; Thu, 9 Dec 2004 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA2i1Fw001085 for ; Thu, 9 Dec 2004 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA2i1UF017126; Thu, 9 Dec 2004 18:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA2hwUF017120 for ; Thu, 9 Dec 2004 18:43:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA2hwFw001083 for ; Thu, 9 Dec 2004 18:43:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBA2hwUN008103 for ; Thu, 9 Dec 2004 18:43:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBA2hwa8008102 for xorp-cvs@icir.org; Fri, 10 Dec 2004 02:43:58 GMT (envelope-from atanu) Date: Fri, 10 Dec 2004 02:43:58 GMT From: Atanu Ghosh Message-Id: <200412100243.iBA2hwa8008102@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-12-10 02:43:58 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Add www9.xorp.org "Romanian Education Network, Iasi Branch". Revision Changes Path 1.13 +6 -0 www/html_src/mirrors.html 1.16 +7 -1 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Fri Dec 10 02:45:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 09 Dec 2004 18:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBA2k19v041222 for ; Thu, 9 Dec 2004 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA2k1Fw001119 for ; Thu, 9 Dec 2004 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA2k0UF017161; Thu, 9 Dec 2004 18:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA2jjUF017155 for ; Thu, 9 Dec 2004 18:45:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA2jjFw001117 for ; Thu, 9 Dec 2004 18:45:45 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBA2jjaC008224 for ; Thu, 9 Dec 2004 18:45:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBA2jj5n008223 for xorp-cvs@icir.org; Fri, 10 Dec 2004 02:45:45 GMT (envelope-from atanu) Date: Fri, 10 Dec 2004 02:45:45 GMT From: Atanu Ghosh Message-Id: <200412100245.iBA2jj5n008223@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2004-12-10 02:45:45 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Updater hourly not daily. Revision Changes Path 1.14 +1 -1 www/html_src/mirrors.html 1.17 +2 -2 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Fri Dec 10 09:39:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 01:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBA9e1mZ029803 for ; Fri, 10 Dec 2004 01:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA9e1Fw005061 for ; Fri, 10 Dec 2004 01:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA9e1UF027797; Fri, 10 Dec 2004 01:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBA9dHUF027774 for ; Fri, 10 Dec 2004 01:39:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBA9dGFw005056 for ; Fri, 10 Dec 2004 01:39:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBA9dGi6011483 for ; Fri, 10 Dec 2004 01:39:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBA9dG7F011482 for xorp-cvs@icir.org; Fri, 10 Dec 2004 09:39:16 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 09:39:16 GMT From: Pavlin Radoslavov Message-Id: <200412100939.iBA9dG7F011482@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 09:39:16 UTC XORP CVS repository Modified files: fea fti_transaction.hh xrl_target.cc Log message: Change the last argument (xorp_route) of the FtiAddEntry[4,6] constructors to be explicit rather than implicit. Revision Changes Path 1.9 +3 -3 xorp/fea/fti_transaction.hh 1.65 +11 -3 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:10 2005 Subject: No subject Fri Dec 10 10:22:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 02:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAAN11j038961 for ; Fri, 10 Dec 2004 02:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAAN1Fw005745 for ; Fri, 10 Dec 2004 02:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAAN1UF028764; Fri, 10 Dec 2004 02:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAAMxUF028758 for ; Fri, 10 Dec 2004 02:22:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAAMwFw005743 for ; Fri, 10 Dec 2004 02:22:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAAMwD6011944 for ; Fri, 10 Dec 2004 02:22:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAAMwu3011943 for xorp-cvs@icir.org; Fri, 10 Dec 2004 10:22:58 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 10:22:58 GMT From: Pavlin Radoslavov Message-Id: <200412101022.iBAAMwu3011943@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 10:22:58 UTC XORP CVS repository Modified files: fea fte.hh Log message: * Add a new bool _is_connected_route field to Fte class to indicate whether this is a route to directly-connected subnet. * Add missing initalizations of the "_is_deleted" and "_is_unresolved" Fte fields in some of the Fte constructors. Revision Changes Path 1.14 +15 -5 xorp/fea/fte.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 14:18:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 06:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAEJ1RT096037 for ; Fri, 10 Dec 2004 06:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEJ1Fw008064 for ; Fri, 10 Dec 2004 06:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEJ1UF005740; Fri, 10 Dec 2004 06:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEIPUF005722 for ; Fri, 10 Dec 2004 06:18:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEIPFw008048 for ; Fri, 10 Dec 2004 06:18:25 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAEIPh5014835 for ; Fri, 10 Dec 2004 06:18:25 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAEIPqF014834 for xorp-cvs@icir.org; Fri, 10 Dec 2004 14:18:25 GMT (envelope-from bms) Date: Fri, 10 Dec 2004 14:18:25 GMT From: Bruce Simpson Message-Id: <200412101418.iBAEIPqF014834@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-10 14:18:25 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in Removed files: xrl/interfaces firewall.xif firewall_xif.cc firewall_xif.hh xrl/targets firewall.tgt firewall.xrls firewall_base.cc firewall_base.hh Log message: Purge all traces of the old firewall code from the head revision. Revision Changes Path 1.54 +1 -12 xorp/fea/Makefile.am 1.68 +0 -11 xorp/fea/Makefile.in 1.28 +1 -5 xorp/xrl/interfaces/Makefile.am 1.43 +9 -19 xorp/xrl/interfaces/Makefile.in 1.2 +0 -226 xorp/xrl/interfaces/firewall.xif (dead) 1.2 +0 -784 xorp/xrl/interfaces/firewall_xif.cc (dead) 1.2 +0 -504 xorp/xrl/interfaces/firewall_xif.hh (dead) 1.48 +1 -9 xorp/xrl/targets/Makefile.am 1.62 +13 -26 xorp/xrl/targets/Makefile.in 1.2 +0 -7 xorp/xrl/targets/firewall.tgt (dead) 1.2 +0 -215 xorp/xrl/targets/firewall.xrls (dead) 1.2 +0 -1023 xorp/xrl/targets/firewall_base.cc (dead) 1.2 +0 -461 xorp/xrl/targets/firewall_base.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 14:40:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 06:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAEf17h004840 for ; Fri, 10 Dec 2004 06:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEf1Fw008303 for ; Fri, 10 Dec 2004 06:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEf1UF006463; Fri, 10 Dec 2004 06:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEeIUF006437 for ; Fri, 10 Dec 2004 06:40:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEeIFw008299 for ; Fri, 10 Dec 2004 06:40:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAEeIBU015235 for ; Fri, 10 Dec 2004 06:40:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAEeIkG015234 for xorp-cvs@icir.org; Fri, 10 Dec 2004 14:40:18 GMT (envelope-from bms) Date: Fri, 10 Dec 2004 14:40:18 GMT From: Bruce Simpson Message-Id: <200412101440.iBAEeIkG015234@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-10 14:40:18 UTC XORP CVS repository Added files: fea pa_backend.hh pa_backend_dummy.cc pa_backend_dummy.hh pa_entry.cc pa_entry.hh pa_table.cc pa_table.hh pa_transaction.cc pa_transaction.hh xrl_packet_acl.cc xrl_packet_acl.hh xrl/interfaces packet_acl.xif packet_acl_xif.cc packet_acl_xif.hh xrl/targets packet_acl.tgt packet_acl.xrls packet_acl_base.cc packet_acl_base.hh Log message: Introduce the packet ACL code as a replacement for the old, snafu'd firewall design. This considerably simplifies the back-end design and introduces a transaction-driven interface. Stylistic changes: Change prefix Fw -> Pa so as to avoid any confusion between IPF, PF, IPFW, and what XORP's code is. It is probably slightly easier to pronounce, but not much. Design assumptions: 1. The FEA is assumed to be the sole entity managing the back-end ACLs. 2. All communication with the kernel is one-way; the FEA pushes ACLs to the kernel. Notification from the kernel, at the top level, is assumed to only be of the kind 'this operation succeeded or failed'. This may be expanded in future if the first assumption changes. 3. All access to the FEA's ACLs is via a transaction-driven interface to ensure atomicity of updates. 4. Snapshots of the FEA's ACLs are taken just before transactions are committed to ensure consistency. Transactions which fail are rolled back to the previous snapshot by reloading the FEA's snapshot, and pushing it back down to the kernel. This update is atomic; see point 5 next. 5. The push to the underlying ACL back-end inside the kernel is atomic on a per-transaction basis, *if* and *only if* the back-end supports this. For back-ends which do not support the notion of transaction atomicity, the FEA will attempt to emulate such atomicity, in some cases, by taking snapshots of the kernel's ACL state also. This is also done when rolling back (as in point 4). Revision Changes Path 1.1 +106 -0 xorp/fea/pa_backend.hh (new) 1.1 +110 -0 xorp/fea/pa_backend_dummy.cc (new) 1.1 +92 -0 xorp/fea/pa_backend_dummy.hh (new) 1.1 +48 -0 xorp/fea/pa_entry.cc (new) 1.1 +182 -0 xorp/fea/pa_entry.hh (new) 1.1 +203 -0 xorp/fea/pa_table.cc (new) 1.1 +185 -0 xorp/fea/pa_table.hh (new) 1.1 +201 -0 xorp/fea/pa_transaction.cc (new) 1.1 +296 -0 xorp/fea/pa_transaction.hh (new) 1.1 +640 -0 xorp/fea/xrl_packet_acl.cc (new) 1.1 +375 -0 xorp/fea/xrl_packet_acl.hh (new) 1.1 +200 -0 xorp/xrl/interfaces/packet_acl.xif (new) 1.1 +570 -0 xorp/xrl/interfaces/packet_acl_xif.cc (new) 1.1 +409 -0 xorp/xrl/interfaces/packet_acl_xif.hh (new) 1.1 +7 -0 xorp/xrl/targets/packet_acl.tgt (new) 1.1 +175 -0 xorp/xrl/targets/packet_acl.xrls (new) 1.1 +758 -0 xorp/xrl/targets/packet_acl_base.cc (new) 1.1 +380 -0 xorp/xrl/targets/packet_acl_base.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 14:48:18 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 06:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAEn1Bu008031 for ; Fri, 10 Dec 2004 06:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEn1Fw008370 for ; Fri, 10 Dec 2004 06:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEn1UF006682; Fri, 10 Dec 2004 06:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEmIUF006655 for ; Fri, 10 Dec 2004 06:48:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEmIFw008366 for ; Fri, 10 Dec 2004 06:48:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAEmICL015434 for ; Fri, 10 Dec 2004 06:48:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAEmIVu015433 for xorp-cvs@icir.org; Fri, 10 Dec 2004 14:48:18 GMT (envelope-from bms) Date: Fri, 10 Dec 2004 14:48:18 GMT From: Bruce Simpson Message-Id: <200412101448.iBAEmIVu015433@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-10 14:48:18 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in Log message: Connect the packet ACL code to the build. Revision Changes Path 1.55 +13 -3 xorp/fea/Makefile.am 1.69 +20 -10 xorp/fea/Makefile.in 1.29 +5 -1 xorp/xrl/interfaces/Makefile.am 1.44 +15 -5 xorp/xrl/interfaces/Makefile.in 1.49 +9 -1 xorp/xrl/targets/Makefile.am 1.63 +24 -10 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 14:52:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 06:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAEr1LS010232 for ; Fri, 10 Dec 2004 06:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEr1Fw008411 for ; Fri, 10 Dec 2004 06:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEr1UF006827; Fri, 10 Dec 2004 06:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAEq2UF006805 for ; Fri, 10 Dec 2004 06:52:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAEq2Fw008407 for ; Fri, 10 Dec 2004 06:52:02 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAEq2Wt015532 for ; Fri, 10 Dec 2004 06:52:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAEq2Gl015531 for xorp-cvs@icir.org; Fri, 10 Dec 2004 14:52:02 GMT (envelope-from atanu) Date: Fri, 10 Dec 2004 14:52:02 GMT From: Atanu Ghosh Message-Id: <200412101452.iBAEq2Gl015531@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-10 14:52:02 UTC XORP CVS repository Modified files: bgp socket.cc Log message: When getpeername() failed it was not being detected as the return value was being compared against 1 not -1. This was giving the incorrect impression that connect had succeeded. It looks like this code has been broken for a long time. When the code was IPv4 specific the members of the stucture returned by getpeername used to be checked, so the failure was still detected. The DEBUG_PEERNAME code is now agnostic to address family. The regression test "test2" in test_peering2.sh should now work. Revision Changes Path 1.19 +29 -11 xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 21:15:39 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 13:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBALG1gR057328 for ; Fri, 10 Dec 2004 13:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBALG1Fw013843 for ; Fri, 10 Dec 2004 13:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBALG1UF018476; Fri, 10 Dec 2004 13:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBALFdUF018454 for ; Fri, 10 Dec 2004 13:15:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBALFdFw013840 for ; Fri, 10 Dec 2004 13:15:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBALFdnJ020914 for ; Fri, 10 Dec 2004 13:15:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBALFdqP020913 for xorp-cvs@icir.org; Fri, 10 Dec 2004 21:15:39 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 21:15:39 GMT From: Pavlin Radoslavov Message-Id: <200412102115.iBALFdqP020913@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 21:15:38 UTC XORP CVS repository Removed files: etc/templates firewall.cmds firewall.tp Log message: Remove firewall-related templates, because they appear obsolete, and because firewall.tp prevents the rtrmgr from starting (firewall.tp refers to non-existing XRLs). Revision Changes Path 1.3 +0 -9 xorp/etc/templates/firewall.cmds (dead) 1.3 +0 -161 xorp/etc/templates/firewall.tp (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 22:50:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 14:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAMp1Pj076207 for ; Fri, 10 Dec 2004 14:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAMp1Fw014835 for ; Fri, 10 Dec 2004 14:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAMp1UF021194; Fri, 10 Dec 2004 14:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAMoeUF021180 for ; Fri, 10 Dec 2004 14:50:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAMoeFw014829 for ; Fri, 10 Dec 2004 14:50:40 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBAMoeBm021961 for ; Fri, 10 Dec 2004 14:50:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBAMoe5v021960 for xorp-cvs@icir.org; Fri, 10 Dec 2004 22:50:40 GMT (envelope-from mjh) Date: Fri, 10 Dec 2004 22:50:40 GMT From: Mark Handley Message-Id: <200412102250.iBAMoe5v021960@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-10 22:50:40 UTC XORP CVS repository Modified files: rtrmgr userdb.cc xrl_rtrmgr_interface.cc Log message: Don't report known zombies to xorpsh as being in config mode. Revision Changes Path 1.10 +3 -2 xorp/rtrmgr/userdb.cc 1.28 +7 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 15:03:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:04:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAN42sG078867 for ; Fri, 10 Dec 2004 15:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAN41Fw014986 for ; Fri, 10 Dec 2004 15:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAN41UF021547; Fri, 10 Dec 2004 15:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAN40UF021543 for ; Fri, 10 Dec 2004 15:04:00 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAN3xFw014984; Fri, 10 Dec 2004 15:03:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id iBAN3xwj016987; Fri, 10 Dec 2004 15:03:59 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200412102303.iBAN3xwj016987@possum.icir.org> To: Mark Handley cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr In-Reply-To: Message from Mark Handley of "Fri, 10 Dec 2004 22:50:40 GMT." <200412102250.iBAMoe5v021960@xorpc.icir.org> Date: Fri, 10 Dec 2004 15:03:59 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: mjh@xorpc.icir.org 2004-12-10 22:50:40 UTC > > XORP CVS repository > > > Modified files: > rtrmgr userdb.cc xrl_rtrmgr_interface.cc > > Log message: > Don't report known zombies to xorpsh as being in config mode. Mark, Is it possible to modify the fix such that it doesn't use printf(). Thanks, Pavlin > > Revision Changes Path > 1.10 +3 -2 xorp/rtrmgr/userdb.cc > 1.28 +7 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 23:12:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBAND1aO080732 for ; Fri, 10 Dec 2004 15:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBAND1Fw015085 for ; Fri, 10 Dec 2004 15:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBAND1UF021822; Fri, 10 Dec 2004 15:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANCFUF021770 for ; Fri, 10 Dec 2004 15:12:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANCFFw015077 for ; Fri, 10 Dec 2004 15:12:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANCFej022390 for ; Fri, 10 Dec 2004 15:12:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANCFbq022389 for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:12:15 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 23:12:15 GMT From: Pavlin Radoslavov Message-Id: <200412102312.iBANCFbq022389@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 23:12:15 UTC XORP CVS repository Modified files: fea fte.hh fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_set_click.cc fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get_click.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc Log message: * Re-implement FteX to use BaseFteX as a base class. Now the new implementation allows to construct an FteX object ftom Fte4 or Fte6 objects. In addition, it supports new methods get_fte4() and get_fte6() to construct the corresponding Fte4 or Fte6 entries. * Remove all explicit Fte4/Fte6/FteX constructors that use numerous parameters. Instead, use the new FteX constructors, and the new FteX::get_fte4() and FteX::get_fte6() methods. * Modify the routing socket and netlink socket provider-specific add/delete entry methods to check if the entry to add/delete is directly-connected route. If yes, then return success without doing anything, because the UNIX kernel doesn't like user-land programs to manipulate the directly-connected forwarding entries that the kernel itself manipulates. Revision Changes Path 1.15 +120 -2 xorp/fea/fte.hh 1.26 +3 -7 xorp/fea/fticonfig_entry_get_netlink.cc 1.25 +5 -13 xorp/fea/fticonfig_entry_get_rtsock.cc 1.12 +17 -13 xorp/fea/fticonfig_entry_set_click.cc 1.8 +13 -1 xorp/fea/fticonfig_entry_set_dummy.cc 1.19 +11 -13 xorp/fea/fticonfig_entry_set_netlink.cc 1.23 +11 -13 xorp/fea/fticonfig_entry_set_rtsock.cc 1.6 +3 -11 xorp/fea/fticonfig_table_get_click.cc 1.24 +3 -11 xorp/fea/fticonfig_table_get_netlink.cc 1.16 +3 -11 xorp/fea/fticonfig_table_get_sysctl.cc 1.9 +3 -23 xorp/fea/fticonfig_table_observer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 23:14:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBANF1ZJ081227 for ; Fri, 10 Dec 2004 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANF1Fw015109 for ; Fri, 10 Dec 2004 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANF1UF021883; Fri, 10 Dec 2004 15:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANE2UF021856 for ; Fri, 10 Dec 2004 15:14:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANE2Fw015098 for ; Fri, 10 Dec 2004 15:14:02 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANE2Mu022458 for ; Fri, 10 Dec 2004 15:14:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANE2Ik022456 for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:14:02 GMT (envelope-from mjh) Date: Fri, 10 Dec 2004 23:14:02 GMT From: Mark Handley Message-Id: <200412102314.iBANE2Ik022456@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-10 23:14:02 UTC XORP CVS repository Modified files: rtrmgr xrl_rtrmgr_interface.cc Log message: printf -> XLOG_WARNING Revision Changes Path 1.29 +2 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 23:15:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBANG1Wv081495 for ; Fri, 10 Dec 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANG1Fw015142 for ; Fri, 10 Dec 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANG1UF021953; Fri, 10 Dec 2004 15:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANFGUF021897 for ; Fri, 10 Dec 2004 15:15:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANFFFw015133 for ; Fri, 10 Dec 2004 15:15:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANFFPg022517 for ; Fri, 10 Dec 2004 15:15:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANFFMA022516 for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:15:15 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 23:15:15 GMT From: Pavlin Radoslavov Message-Id: <200412102315.iBANFFMA022516@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 23:15:15 UTC XORP CVS repository Modified files: fea fti_transaction.hh xrl_target.cc Log message: Mark the directly-connected routes and propagate them down to the FEA. Leave it to the bottom part of the FEA to decide whether to install them or to ignore them. For example, if we write to the UNIX kernel, we should not modify the directly-connected routing entries. If we deal with Click, then we should install the directly-connected routes. Revision Changes Path 1.10 +27 -9 xorp/fea/fti_transaction.hh 1.66 +19 -25 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 23:19:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBANK1WP082450 for ; Fri, 10 Dec 2004 15:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANK1Fw015181 for ; Fri, 10 Dec 2004 15:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANK1UF022082; Fri, 10 Dec 2004 15:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANJQUF022055 for ; Fri, 10 Dec 2004 15:19:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANJPFw015176 for ; Fri, 10 Dec 2004 15:19:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANJPp0022634 for ; Fri, 10 Dec 2004 15:19:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANJPe7022633 for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:19:25 GMT (envelope-from pavlin) Date: Fri, 10 Dec 2004 23:19:25 GMT From: Pavlin Radoslavov Message-Id: <200412102319.iBANJPe7022633@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-10 23:19:25 UTC XORP CVS repository Modified files: fea ifconfig_set.hh ifconfig_set_click.cc Log message: Remove method IfConfigSetClick::generate_config() because it is not needed anymore: the config is generated externally. Revision Changes Path 1.28 +1 -3 xorp/fea/ifconfig_set.hh 1.15 +1 -281 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Fri Dec 10 23:32:40 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 15:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBANX1OD085649 for ; Fri, 10 Dec 2004 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANX1Fw015330 for ; Fri, 10 Dec 2004 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANX0UF022502; Fri, 10 Dec 2004 15:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBANWfUF022491 for ; Fri, 10 Dec 2004 15:32:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBANWfFw015327 for ; Fri, 10 Dec 2004 15:32:41 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANWeiA022801 for ; Fri, 10 Dec 2004 15:32:40 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANWeAm022800 for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:32:40 GMT (envelope-from mjh) Date: Fri, 10 Dec 2004 23:32:40 GMT From: Mark Handley Message-Id: <200412102332.iBANWeAm022800@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-10 23:32:40 UTC XORP CVS repository Modified files: etc/templates fea.cmds Log message: These commands used to be part of the fea module, but at some point the fea module got split, so now they should be in the interfaces module. Revision Changes Path 1.9 +3 -3 xorp/etc/templates/fea.cmds _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Sat Dec 11 02:20:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 18:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBB2L1su026836 for ; Fri, 10 Dec 2004 18:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2L1f9016927 for ; Fri, 10 Dec 2004 18:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2L0UF027462; Fri, 10 Dec 2004 18:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2KYUF027448 for ; Fri, 10 Dec 2004 18:20:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2KYf9016925 for ; Fri, 10 Dec 2004 18:20:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBB2KX2N024317 for ; Fri, 10 Dec 2004 18:20:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBB2KXhK024316 for xorp-cvs@icir.org; Sat, 11 Dec 2004 02:20:33 GMT (envelope-from pavlin) Date: Sat, 11 Dec 2004 02:20:33 GMT From: Pavlin Radoslavov Message-Id: <200412110220.iBB2KXhK024316@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-11 02:20:33 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: Add new function check_state() to check that the state is in order. Currently, it checks that each interface has configured MAC address and MTU. Bug found by: Xavier Brouckaert Revision Changes Path 1.3 +20 -1 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Sat Dec 11 02:23:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 18:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBB2O1KD027588 for ; Fri, 10 Dec 2004 18:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2O1f9016958 for ; Fri, 10 Dec 2004 18:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2O1UF027549; Fri, 10 Dec 2004 18:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2NpUF027539 for ; Fri, 10 Dec 2004 18:23:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2Npf9016954 for ; Fri, 10 Dec 2004 18:23:51 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBB2Noo3024412 for ; Fri, 10 Dec 2004 18:23:50 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBB2No2V024411 for xorp-cvs@icir.org; Sat, 11 Dec 2004 02:23:50 GMT (envelope-from atanu) Date: Sat, 11 Dec 2004 02:23:50 GMT From: Atanu Ghosh Message-Id: <200412110223.iBB2No2V024411@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-11 02:23:50 UTC XORP CVS repository Modified files: . config.h.in configure configure.in Log message: Discover if we are on a windows system. Revision Changes Path 1.40 +3 -0 xorp/config.h.in 1.134 +7 -0 xorp/configure 1.128 +4 -1 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Sat Dec 11 02:33:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 18:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBB2Y1VI030046 for ; Fri, 10 Dec 2004 18:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2Y0f9017045 for ; Fri, 10 Dec 2004 18:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2Y0UF027849; Fri, 10 Dec 2004 18:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB2X1UF027814 for ; Fri, 10 Dec 2004 18:33:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB2X1f9017037 for ; Fri, 10 Dec 2004 18:33:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBB2X0xG024629 for ; Fri, 10 Dec 2004 18:33:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBB2X0TS024628 for xorp-cvs@icir.org; Sat, 11 Dec 2004 02:33:00 GMT (envelope-from pavlin) Date: Sat, 11 Dec 2004 02:33:00 GMT From: Pavlin Radoslavov Message-Id: <200412110233.iBB2X0TS024628@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-11 02:33:00 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: Each interface and vif are now implicitly enabled, hence now the configuration does not have to contain the explicit statement "enabled: true" that an interface and/or a vif is enabled. Bug found by: Xavier Brouckaert Revision Changes Path 1.4 +21 -5 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:11 2005 Subject: No subject Sat Dec 11 03:20:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 10 Dec 2004 19:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBB3L1GX041316 for ; Fri, 10 Dec 2004 19:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB3L1f9017447 for ; Fri, 10 Dec 2004 19:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB3L1UF029139; Fri, 10 Dec 2004 19:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBB3KlUF029131 for ; Fri, 10 Dec 2004 19:20:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBB3Klf9017441 for ; Fri, 10 Dec 2004 19:20:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBB3Klkl025006 for ; Fri, 10 Dec 2004 19:20:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBB3KlIS025005 for xorp-cvs@icir.org; Sat, 11 Dec 2004 03:20:47 GMT (envelope-from pavlin) Date: Sat, 11 Dec 2004 03:20:47 GMT From: Pavlin Radoslavov Message-Id: <200412110320.iBB3KlIS025005@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-11 03:20:47 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: * Bug fix: the multiple IP addresses used as arguments to element IPGWOptions() must be separated by commas. The online Click documentation has a typo that the arguments are space-separated. * Add the following constants, that may be handy in the future: ipv4_addr_bitlen = 32 ipv6_addr_bitlen = 128 Revision Changes Path 1.5 +7 -7 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Sat Dec 11 10:35:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Dec 2004 02:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBBAa18i075901 for ; Sat, 11 Dec 2004 02:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBAa1f9021427 for ; Sat, 11 Dec 2004 02:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBAa1UF009580; Sat, 11 Dec 2004 02:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBAZVUF009563 for ; Sat, 11 Dec 2004 02:35:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBAZVf9021419 for ; Sat, 11 Dec 2004 02:35:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBBAZVIM028457 for ; Sat, 11 Dec 2004 02:35:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBBAZVBG028456 for xorp-cvs@icir.org; Sat, 11 Dec 2004 10:35:31 GMT (envelope-from pavlin) Date: Sat, 11 Dec 2004 10:35:31 GMT From: Pavlin Radoslavov Message-Id: <200412111035.iBBAZVBG028456@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-11 10:35:31 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: Order the interfaces and vif names by their names: the interfaces and vifs with "smaller" names are chosen first. Such ordering is needed to achieve consistency with the FEA when it comes to do mapping between interface/vif names and the corresponding port number. Revision Changes Path 1.6 +56 -2 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Sat Dec 11 10:57:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Dec 2004 02:58:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBBAw1CJ080258 for ; Sat, 11 Dec 2004 02:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBAw1f9021612 for ; Sat, 11 Dec 2004 02:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBAw1UF010106; Sat, 11 Dec 2004 02:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBAvBUF010087 for ; Sat, 11 Dec 2004 02:57:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBAvBf9021606 for ; Sat, 11 Dec 2004 02:57:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBBAvBJN028650 for ; Sat, 11 Dec 2004 02:57:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBBAvBGp028649 for xorp-cvs@icir.org; Sat, 11 Dec 2004 10:57:11 GMT (envelope-from pavlin) Date: Sat, 11 Dec 2004 10:57:11 GMT From: Pavlin Radoslavov Message-Id: <200412111057.iBBAvBGp028649@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-11 10:57:11 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: * Don't have a default setting whether we use kernel Click or user-level Click * Add a test that we cannot have both kernel Click and user-level Click enabled. * Add a new function internal_error() and set an internal-error flag as appropriate * If there is an error, return before printing any Click configuration * If Click is not enabled, or if neither kernel or user-level Click is enabled, then print nothing. Revision Changes Path 1.7 +39 -12 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Sat Dec 11 13:36:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Dec 2004 05:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBBDb18O012471 for ; Sat, 11 Dec 2004 05:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBDb1f9025981 for ; Sat, 11 Dec 2004 05:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBDb1UF015045; Sat, 11 Dec 2004 05:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBDa3UF015021 for ; Sat, 11 Dec 2004 05:36:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBDa3f9025971 for ; Sat, 11 Dec 2004 05:36:03 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBBDa38h030035 for ; Sat, 11 Dec 2004 05:36:03 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBBDa32n030034 for xorp-cvs@icir.org; Sat, 11 Dec 2004 13:36:03 GMT (envelope-from mjh) Date: Sat, 11 Dec 2004 13:36:03 GMT From: Mark Handley Message-Id: <200412111336.iBBDa32n030034@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-11 13:36:02 UTC XORP CVS repository Modified files: rtrmgr generic_module_manager.cc generic_module_manager.hh module_manager.cc module_manager.hh xorpsh_main.cc xorpsh_main.hh xrl_xorpsh_interface.cc Log message: Move some functionality from the ModuleManager to the GenericModuleManager so it can be used in xorpsh as well as rtrmgr. Revision Changes Path 1.2 +49 -8 xorp/rtrmgr/generic_module_manager.cc 1.4 +7 -2 xorp/rtrmgr/generic_module_manager.hh 1.38 +12 -58 xorp/rtrmgr/module_manager.cc 1.28 +1 -7 xorp/rtrmgr/module_manager.hh 1.34 +2 -1 xorp/rtrmgr/xorpsh_main.cc 1.17 +2 -1 xorp/rtrmgr/xorpsh_main.hh 1.17 +4 -1 xorp/rtrmgr/xrl_xorpsh_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Sat Dec 11 21:30:01 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 11 Dec 2004 13:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBBLV1EN010918 for ; Sat, 11 Dec 2004 13:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBLV1f9032751 for ; Sat, 11 Dec 2004 13:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBLV1UF025529; Sat, 11 Dec 2004 13:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBBLU1UF025505 for ; Sat, 11 Dec 2004 13:30:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBBLU1f9032725 for ; Sat, 11 Dec 2004 13:30:01 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBBLU10d035201 for ; Sat, 11 Dec 2004 13:30:01 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBBLU1dN035199 for xorp-cvs@icir.org; Sat, 11 Dec 2004 21:30:01 GMT (envelope-from mjh) Date: Sat, 11 Dec 2004 21:30:01 GMT From: Mark Handley Message-Id: <200412112130.iBBLU1dN035199@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-11 21:30:01 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh generic_module_manager.cc generic_module_manager.hh main_rtrmgr.cc master_conf_tree.cc master_conf_tree.hh module_command.cc module_command.hh module_manager.cc module_manager.hh slave_conf_tree.cc slave_conf_tree_node.cc slave_conf_tree_node.hh task.cc task.hh template.yy template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh unexpanded_xrl.cc unexpanded_xrl.hh xorpsh_main.cc xrl_xorpsh_interface.cc xrldb.cc y.tplt_tab.cc Added files: rtrmgr master_conf_tree_node.cc master_conf_tree_node.hh master_template_tree.cc master_template_tree.hh master_template_tree_node.cc master_template_tree_node.hh template_base_command.cc template_base_command.hh Log message: Major refactoring of class hierarchy in rtrmgr and xorpsh. Previously xorpsh needed to be linked with lots of code from rtrmgr that was not used, just to satisfy compilation dependencies, even though the code was not used. The code was getting too hard to work with when anything needed to be added to xorpsh. This refactoring removes almost all of the unused code, by introducting more specialized subclasses of many of the classes for use in rtrmgr (prefixed Master-). The less specialized versions continue to be used in xorpsh. This commit touches a lot of code. It has been tested, but not desperately thoroughly. Next step is to modify the test code which is currently not enabled to use the refactored classes. Currently the tinderbox doesn't test anything in rtrmgr, which is not good. Revision Changes Path 1.42 +11 -16 xorp/rtrmgr/Makefile.am 1.53 +23 -18 xorp/rtrmgr/Makefile.in 1.23 +15 -14 xorp/rtrmgr/conf_tree.cc 1.16 +6 -5 xorp/rtrmgr/conf_tree.hh 1.55 +114 -582 xorp/rtrmgr/conf_tree_node.cc 1.27 +8 -21 xorp/rtrmgr/conf_tree_node.hh 1.3 +29 -6 xorp/rtrmgr/generic_module_manager.cc 1.5 +10 -7 xorp/rtrmgr/generic_module_manager.hh 1.55 +41 -9 xorp/rtrmgr/main_rtrmgr.cc 1.41 +23 -21 xorp/rtrmgr/master_conf_tree.cc 1.24 +18 -2 xorp/rtrmgr/master_conf_tree.hh 1.4 +572 -0 xorp/rtrmgr/master_conf_tree_node.cc (new) 1.4 +64 -0 xorp/rtrmgr/master_conf_tree_node.hh (new) 1.1 +59 -0 xorp/rtrmgr/master_template_tree.cc (new) 1.1 +51 -0 xorp/rtrmgr/master_template_tree.hh (new) 1.1 +135 -0 xorp/rtrmgr/master_template_tree_node.cc (new) 1.1 +46 -0 xorp/rtrmgr/master_template_tree_node.hh (new) 1.30 +5 -4 xorp/rtrmgr/module_command.cc 1.20 +5 -4 xorp/rtrmgr/module_command.hh 1.39 +7 -17 xorp/rtrmgr/module_manager.cc 1.29 +2 -2 xorp/rtrmgr/module_manager.hh 1.23 +2 -3 xorp/rtrmgr/slave_conf_tree.cc 1.15 +49 -2 xorp/rtrmgr/slave_conf_tree_node.cc 1.8 +3 -1 xorp/rtrmgr/slave_conf_tree_node.hh 1.41 +6 -6 xorp/rtrmgr/task.cc 1.28 +6 -5 xorp/rtrmgr/task.hh 1.13 +5 -2 xorp/rtrmgr/template.yy 1.1 +215 -0 xorp/rtrmgr/template_base_command.cc (new) 1.1 +88 -0 xorp/rtrmgr/template_base_command.hh (new) 1.48 +10 -173 xorp/rtrmgr/template_commands.cc 1.23 +7 -55 xorp/rtrmgr/template_commands.hh 1.25 +48 -32 xorp/rtrmgr/template_tree.cc 1.16 +9 -9 xorp/rtrmgr/template_tree.hh 1.29 +31 -37 xorp/rtrmgr/template_tree_node.cc 1.19 +12 -11 xorp/rtrmgr/template_tree_node.hh 1.11 +2 -2 xorp/rtrmgr/unexpanded_xrl.cc 1.9 +4 -4 xorp/rtrmgr/unexpanded_xrl.hh 1.35 +27 -7 xorp/rtrmgr/xorpsh_main.cc 1.18 +1 -4 xorp/rtrmgr/xrl_xorpsh_interface.cc 1.11 +1 -2 xorp/rtrmgr/xrldb.cc 1.13 +50 -47 xorp/rtrmgr/y.tplt_tab.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Sun Dec 12 18:53:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 12 Dec 2004 10:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBCIs1j4040283 for ; Sun, 12 Dec 2004 10:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBCIs1f9045605 for ; Sun, 12 Dec 2004 10:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBCIs0UF026010; Sun, 12 Dec 2004 10:54:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBCIrHUF025998 for ; Sun, 12 Dec 2004 10:53:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBCIrHf9045603 for ; Sun, 12 Dec 2004 10:53:17 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBCIrHQk047134 for ; Sun, 12 Dec 2004 10:53:17 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBCIrHQD047133 for xorp-cvs@icir.org; Sun, 12 Dec 2004 18:53:17 GMT (envelope-from mjh) Date: Sun, 12 Dec 2004 18:53:17 GMT From: Mark Handley Message-Id: <200412121853.iBCIrHQD047133@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-12 18:53:17 UTC XORP CVS repository Modified files: rtrmgr template_tree_node.cc Log message: Remove unused variable. It's strange that g++ 3.4 does *not* spot that this variable was not used. Revision Changes Path 1.30 +1 -2 xorp/rtrmgr/template_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 14:24:31 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 06:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDEP16v072702 for ; Mon, 13 Dec 2004 06:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDEP1f9057272 for ; Mon, 13 Dec 2004 06:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDEP1UF027327; Mon, 13 Dec 2004 06:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDEOVUF027312 for ; Mon, 13 Dec 2004 06:24:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDEOVf9057264 for ; Mon, 13 Dec 2004 06:24:31 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDEOVqZ058065 for ; Mon, 13 Dec 2004 06:24:31 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDEOVYD058064 for xorp-cvs@icir.org; Mon, 13 Dec 2004 14:24:31 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 14:24:31 GMT From: Bruce Simpson Message-Id: <200412131424.iBDEOVYD058064@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 14:24:31 UTC XORP CVS repository Modified files: fea fea.cc Log message: Instantiate the Packet ACL components from within the FEA's main() function. Revision Changes Path 1.43 +7 -12 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 14:28:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 06:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDET1vk073500 for ; Mon, 13 Dec 2004 06:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDET1f9057329 for ; Mon, 13 Dec 2004 06:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDET1UF027462; Mon, 13 Dec 2004 06:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDESoUF027454 for ; Mon, 13 Dec 2004 06:28:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDESof9057324 for ; Mon, 13 Dec 2004 06:28:50 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDESoUL058151 for ; Mon, 13 Dec 2004 06:28:50 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDESopH058150 for xorp-cvs@icir.org; Mon, 13 Dec 2004 14:28:50 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 14:28:50 GMT From: Bruce Simpson Message-Id: <200412131428.iBDESopH058150@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 14:28:50 UTC XORP CVS repository Modified files: . TODO Log message: Forced commit to see if cvsupd/cvsup clients pick up the change. Revision Changes Path 1.10 +1 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 14:40:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 06:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDEf1u4075898 for ; Mon, 13 Dec 2004 06:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDEf1f9057520 for ; Mon, 13 Dec 2004 06:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDEf1UF027768; Mon, 13 Dec 2004 06:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDEebUF027758 for ; Mon, 13 Dec 2004 06:40:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDEebf9057516 for ; Mon, 13 Dec 2004 06:40:37 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDEebCh058390 for ; Mon, 13 Dec 2004 06:40:37 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDEebTb058389 for xorp-cvs@icir.org; Mon, 13 Dec 2004 14:40:37 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 14:40:37 GMT From: Bruce Simpson Message-Id: <200412131440.iBDEebTb058389@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 14:40:37 UTC XORP CVS repository Modified files: . TODO Log message: Another forced commit to ensure cronjob cvsup mirror jobs pick up changes from xorpc's master repository. [This is necessary to ensure import jobs into Perforce or Subversion will work correctly when the alternative SCM is hosted on a machine other than xorpc] Revision Changes Path 1.11 +1 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 17:13:44 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 09:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDHE1Ea007461 for ; Mon, 13 Dec 2004 09:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHE0f9060651 for ; Mon, 13 Dec 2004 09:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHE0UF002168; Mon, 13 Dec 2004 09:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHDiUF002154 for ; Mon, 13 Dec 2004 09:13:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHDif9060647 for ; Mon, 13 Dec 2004 09:13:44 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDHDi1V061314 for ; Mon, 13 Dec 2004 09:13:44 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDHDiwn061313 for xorp-cvs@icir.org; Mon, 13 Dec 2004 17:13:44 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 17:13:44 GMT From: Bruce Simpson Message-Id: <200412131713.iBDHDiwn061313@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 17:13:44 UTC XORP CVS repository Modified files: . TODO Log message: Add a dummy TODO item to test cvsup mirror propagation, and the Perforce importer. Revision Changes Path 1.12 +4 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 17:17:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 09:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDHI1Ka008283 for ; Mon, 13 Dec 2004 09:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHI1f9060697 for ; Mon, 13 Dec 2004 09:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHI1UF002343; Mon, 13 Dec 2004 09:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHHLUF002298 for ; Mon, 13 Dec 2004 09:17:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHHLf9060688 for ; Mon, 13 Dec 2004 09:17:21 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDHHLH8061375 for ; Mon, 13 Dec 2004 09:17:21 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDHHLuC061374 for xorp-cvs@icir.org; Mon, 13 Dec 2004 17:17:21 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 17:17:21 GMT From: Bruce Simpson Message-Id: <200412131717.iBDHHLuC061374@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 17:17:21 UTC XORP CVS repository Modified files: . TODO Log message: More of the same Revision Changes Path 1.13 +2 -2 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 17:18:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 09:19:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDHJ2Q1008508 for ; Mon, 13 Dec 2004 09:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHJ1f9060722 for ; Mon, 13 Dec 2004 09:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHJ1UF002392; Mon, 13 Dec 2004 09:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHIMUF002370 for ; Mon, 13 Dec 2004 09:18:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHIMf9060709 for ; Mon, 13 Dec 2004 09:18:22 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDHIMWq061415 for ; Mon, 13 Dec 2004 09:18:22 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDHIMWh061414 for xorp-cvs@icir.org; Mon, 13 Dec 2004 17:18:22 GMT (envelope-from bms) Date: Mon, 13 Dec 2004 17:18:22 GMT From: Bruce Simpson Message-Id: <200412131718.iBDHIMWh061414@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-13 17:18:21 UTC XORP CVS repository Modified files: . TODO Log message: Remove the dummy item. Revision Changes Path 1.14 +1 -4 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 09:35:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 09:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDHa15G011943 for ; Mon, 13 Dec 2004 09:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHa0f9061030 for ; Mon, 13 Dec 2004 09:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHa0UF002917; Mon, 13 Dec 2004 09:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDHZLUF002877 for ; Mon, 13 Dec 2004 09:35:22 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDHZKf9061017 for ; Mon, 13 Dec 2004 09:35:21 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id A5BBB654A2 for ; Mon, 13 Dec 2004 17:35:14 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 98630-01-4 for ; Mon, 13 Dec 2004 17:35:14 +0000 (GMT) Received: from empiric.dek.spc.org (dhcp120.icir.org [192.150.187.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 553B3653F8 for ; Mon, 13 Dec 2004 17:35:06 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id CA6B76710; Mon, 13 Dec 2004 09:35:00 -0800 (PST) Date: Mon, 13 Dec 2004 09:35:00 -0800 From: Bruce M Simpson To: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp Message-ID: <20041213173500.GL708@empiric.icir.org> References: <200412131718.iBDHIMWh061414@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200412131718.iBDHIMWh061414@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Mon, Dec 13, 2004 at 05:18:22PM +0000, Bruce Simpson wrote: > Log message: > Remove the dummy item. My cronjobbed Perforce imports appear to work now. Thanks to Peter Wemm of Yahoo!, Inc. for providing the scripts used to import FreeBSD's CVS HEAD into ther p4 repository. I was able to branch my xorp import as 'xorp_ng' in seconds. There are some changes related to p4 - I've had to rearrange the software collections exported via cvsupd to pickup CVSROOT/ as well as xorp/ (the source directory). I'll follow up with these soon; p4's depot and file hierarchy probably needs to be updated to keep up. BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 21:27:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 13:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDLS1rb058538 for ; Mon, 13 Dec 2004 13:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDLS1f9063846 for ; Mon, 13 Dec 2004 13:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDLS1UF010194; Mon, 13 Dec 2004 13:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDLRCUF010181 for ; Mon, 13 Dec 2004 13:27:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDLRBf9063835 for ; Mon, 13 Dec 2004 13:27:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDLRBlr064554 for ; Mon, 13 Dec 2004 13:27:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDLRBri064553 for xorp-cvs@icir.org; Mon, 13 Dec 2004 21:27:11 GMT (envelope-from pavlin) Date: Mon, 13 Dec 2004 21:27:11 GMT From: Pavlin Radoslavov Message-Id: <200412132127.iBDLRBri064553@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-13 21:27:11 UTC XORP CVS repository Modified files: rtrmgr master_template_tree_node.hh Log message: Fix a typo inside a comment: __RTRMGR_TEMPLATE_TREE_NODE_HH__ -> __RTRMGR_MASTER_TEMPLATE_TREE_NODE_HH__ Revision Changes Path 1.2 +2 -2 xorp/rtrmgr/master_template_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 23:15:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 15:16:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDNG2Df079960 for ; Mon, 13 Dec 2004 15:16:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNG1f9065033 for ; Mon, 13 Dec 2004 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNG1UF014030; Mon, 13 Dec 2004 15:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNFZUF014015 for ; Mon, 13 Dec 2004 15:15:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNFZf9065028 for ; Mon, 13 Dec 2004 15:15:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDNFYbG023970 for ; Mon, 13 Dec 2004 15:15:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDNFYSC023969 for xorp-cvs@icir.org; Mon, 13 Dec 2004 23:15:34 GMT (envelope-from pavlin) Date: Mon, 13 Dec 2004 23:15:34 GMT From: Pavlin Radoslavov Message-Id: <200412132315.iBDNFYSC023969@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-13 23:15:34 UTC XORP CVS repository Modified files: fea fticonfig.hh Log message: Add a new method FtiConfig::ftic_entry_set_click() to access the provider for setting forwarding entries into Click. Revision Changes Path 1.30 +3 -1 xorp/fea/fticonfig.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 23:17:28 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 15:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDNI2QH080367 for ; Mon, 13 Dec 2004 15:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNI2f9065046 for ; Mon, 13 Dec 2004 15:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNI1UF014108; Mon, 13 Dec 2004 15:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNHSUF014088 for ; Mon, 13 Dec 2004 15:17:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNHSf9065038 for ; Mon, 13 Dec 2004 15:17:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDNHSe5024026 for ; Mon, 13 Dec 2004 15:17:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDNHS6x024025 for xorp-cvs@icir.org; Mon, 13 Dec 2004 23:17:28 GMT (envelope-from pavlin) Date: Mon, 13 Dec 2004 23:17:28 GMT From: Pavlin Radoslavov Message-Id: <200412132317.iBDNHS6x024025@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-13 23:17:28 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.hh Log message: Add new methods FtiConfigEntrySetClick::fte_table4() and fte_table6() to obtain a reference to the table with the IPv4/IPv6 forwarding entries. Note that this table exists only within the Click provider. Revision Changes Path 1.16 +15 -1 xorp/fea/fticonfig_entry_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Mon Dec 13 23:18:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 15:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBDNJ1Lc080550 for ; Mon, 13 Dec 2004 15:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNJ0f9065061 for ; Mon, 13 Dec 2004 15:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNJ0UF014152; Mon, 13 Dec 2004 15:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBDNIdUF014139 for ; Mon, 13 Dec 2004 15:18:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBDNIdf9065053 for ; Mon, 13 Dec 2004 15:18:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBDNIcNR024089 for ; Mon, 13 Dec 2004 15:18:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBDNIcht024088 for xorp-cvs@icir.org; Mon, 13 Dec 2004 23:18:38 GMT (envelope-from pavlin) Date: Mon, 13 Dec 2004 23:18:38 GMT From: Pavlin Radoslavov Message-Id: <200412132318.iBDNIcht024088@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-13 23:18:38 UTC XORP CVS repository Modified files: fea fticonfig_table_get.hh fticonfig_table_get_click.cc Log message: Implement methods FtiConfigTableGetClick::get_table4() and get_table6() Revision Changes Path 1.18 +1 -2 xorp/fea/fticonfig_table_get.hh 1.7 +10 -32 xorp/fea/fticonfig_table_get_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:12 2005 Subject: No subject Tue Dec 14 00:14:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 16:15:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBE0F2eW091638 for ; Mon, 13 Dec 2004 16:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE0F2f9065678 for ; Mon, 13 Dec 2004 16:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE0F1UF016161; Mon, 13 Dec 2004 16:15:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE0EKUF016083 for ; Mon, 13 Dec 2004 16:14:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE0EJf9065670 for ; Mon, 13 Dec 2004 16:14:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBE0EJWU024762 for ; Mon, 13 Dec 2004 16:14:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBE0EJBa024761 for xorp-cvs@icir.org; Tue, 14 Dec 2004 00:14:19 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 00:14:19 GMT From: Pavlin Radoslavov Message-Id: <200412140014.iBE0EJBa024761@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 00:14:19 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.hh fticonfig_entry_set_click.cc nexthop_port_mapper.cc nexthop_port_mapper.hh Log message: Add a boolean flag is_mapping_changed to method NexthopPortMapperObserver::nexthop_port_mapper_event() which is set to true if the port mapping has changed. If the flag is false, then the port mapping remains the same (i.e., it has been only "touched"). The reason we need this flag is because in some cases (e.g., Click), we always want to know that that the port mapping has been touched so we can re-add all forwarding entries. Revision Changes Path 1.17 +2 -2 xorp/fea/fticonfig_entry_set.hh 1.13 +3 -2 xorp/fea/fticonfig_entry_set_click.cc 1.7 +7 -6 xorp/fea/nexthop_port_mapper.cc 1.7 +5 -2 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 02:23:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 18:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBE2O1xI022146 for ; Mon, 13 Dec 2004 18:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE2O1f9066844 for ; Mon, 13 Dec 2004 18:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE2O1UF020227; Mon, 13 Dec 2004 18:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE2NoUF020219 for ; Mon, 13 Dec 2004 18:23:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE2Nnf9066842 for ; Mon, 13 Dec 2004 18:23:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBE2Nn1t025726 for ; Mon, 13 Dec 2004 18:23:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBE2NnE4025725 for xorp-cvs@icir.org; Tue, 14 Dec 2004 02:23:49 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 02:23:49 GMT From: Pavlin Radoslavov Message-Id: <200412140223.iBE2NnE4025725@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 02:23:49 UTC XORP CVS repository Modified files: fea fticonfig_entry_set.hh fticonfig_entry_set_click.cc Log message: If the interface to port mapper is changed, then reinstall all IPv4/IPv6 forwarding entries in Click. The re-installation task uses time-slices of 100ms so the task doesn't block the rest of the events. Revision Changes Path 1.18 +19 -1 xorp/fea/fticonfig_entry_set.hh 1.14 +136 -3 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 07:27:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 13 Dec 2004 23:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBE7S1WT088649 for ; Mon, 13 Dec 2004 23:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE7S1f9069581 for ; Mon, 13 Dec 2004 23:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE7S1UF027973; Mon, 13 Dec 2004 23:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBE7R9UF027945 for ; Mon, 13 Dec 2004 23:27:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBE7R9f9069572 for ; Mon, 13 Dec 2004 23:27:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBE7R9cW073911 for ; Mon, 13 Dec 2004 23:27:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBE7R90G073910 for xorp-cvs@icir.org; Tue, 14 Dec 2004 07:27:09 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 07:27:09 GMT From: Pavlin Radoslavov Message-Id: <200412140727.iBE7R90G073910@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 07:27:09 UTC XORP CVS repository Modified files: pim pim_mre_task.cc Log message: Fix a typo. Revision Changes Path 1.12 +2 -2 xorp/pim/pim_mre_task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 18:10:10 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 10:11:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEIB1WP050746 for ; Tue, 14 Dec 2004 10:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEIB1f9078732 for ; Tue, 14 Dec 2004 10:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEIB1UF017124; Tue, 14 Dec 2004 10:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEIAAUF017090 for ; Tue, 14 Dec 2004 10:10:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEIAAf9078724 for ; Tue, 14 Dec 2004 10:10:10 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEIAAoo081978 for ; Tue, 14 Dec 2004 10:10:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEIAA9M081977 for xorp-cvs@icir.org; Tue, 14 Dec 2004 18:10:10 GMT (envelope-from atanu) Date: Tue, 14 Dec 2004 18:10:10 GMT From: Atanu Ghosh Message-Id: <200412141810.iBEIAA9M081977@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-14 18:10:10 UTC XORP CVS repository Modified files: libxorp utility.h Log message: XORP code uses typedefs (e.g. uint32_t, int32_t) rather than using the base types, because the 'C' language allows a compiler to use a natural size for base type. The XORP code is internally consistent in this usage, one problem arises with format strings in printf style functions. In order to print a size_t or uint32_t with "%u" it is necessary to cast to an unsigned int. On Mac OS X a size_t is not an unsigned int. On windows uint32_t is not an unsigned int. In order to print a int32_t with a "%d" it is necessary to cast to a signed int. On windows int32_t is not a signed int. Two convenience macros to help with the casting. Revision Changes Path 1.9 +22 -1 xorp/libxorp/utility.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 18:37:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 10:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEIc15J020059 for ; Tue, 14 Dec 2004 10:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEIc1f9079104 for ; Tue, 14 Dec 2004 10:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEIc1UF018165; Tue, 14 Dec 2004 10:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEIbCUF018145 for ; Tue, 14 Dec 2004 10:37:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEIbCf9079095 for ; Tue, 14 Dec 2004 10:37:12 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEIbCRu082629 for ; Tue, 14 Dec 2004 10:37:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEIbCPL082628 for xorp-cvs@icir.org; Tue, 14 Dec 2004 18:37:12 GMT (envelope-from atanu) Date: Tue, 14 Dec 2004 18:37:12 GMT From: Atanu Ghosh Message-Id: <200412141837.iBEIbCPL082628@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/scripts xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-14 18:37:12 UTC XORP CVS repository Modified files: xrl/interfaces bgp_mib_traps_xif.cc bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_processor_xif.cc common_xif.cc coord_xif.cc datain_xif.cc fea_click_xif.cc fea_fib_client_xif.cc fea_fib_xif.cc fea_ifmgr_client_xif.cc fea_ifmgr_mirror_xif.cc fea_ifmgr_replicator_xif.cc fea_ifmgr_xif.cc fea_rawpkt4_client_xif.cc fea_rawpkt4_xif.cc fea_rawpkt6_client_xif.cc fea_rawpkt6_xif.cc fib2mrib_xif.cc finder_client_xif.cc finder_event_notifier_xif.cc finder_event_observer_xif.cc finder_xif.cc fti_xif.cc mfea_client_xif.cc mfea_xif.cc mld6igmp_client_xif.cc mld6igmp_xif.cc ospf_xif.cc packet_acl_xif.cc pim_xif.cc policy_backend_xif.cc policy_redist4_xif.cc policy_redist6_xif.cc policy_xif.cc profile_client_xif.cc profile_xif.cc redist4_xif.cc redist6_xif.cc redist_transaction4_xif.cc redist_transaction6_xif.cc rib_client_xif.cc rib_xif.cc rip_xif.cc ripng_xif.cc rtrmgr_client_xif.cc rtrmgr_xif.cc socket4_locator_xif.cc socket4_user_xif.cc socket4_xif.cc socket6_locator_xif.cc socket6_user_xif.cc socket6_xif.cc static_routes_xif.cc test_peer_xif.cc test_xif.cc test_xrls_xif.cc xorp_if_mib_xif.cc xrl/scripts clnt-gen tgt-gen xrl/targets bgp4_mib_base.cc bgp_base.cc bgp_base.hh cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc fea_ifmgr_mirror_base.cc test_finder_events_base.cc test_xrls_base.cc Log message: Modify the python generator scripts to use the casting macros for printing unsigned ints and re-generate all the stubs. Revision Changes Path 1.7 +3 -3 xorp/xrl/interfaces/bgp_mib_traps_xif.cc 1.29 +36 -34 xorp/xrl/interfaces/bgp_xif.cc 1.29 +2 -1 xorp/xrl/interfaces/bgp_xif.hh 1.14 +14 -14 xorp/xrl/interfaces/cli_manager_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/cli_processor_xif.cc 1.13 +5 -5 xorp/xrl/interfaces/common_xif.cc 1.12 +4 -4 xorp/xrl/interfaces/coord_xif.cc 1.12 +4 -4 xorp/xrl/interfaces/datain_xif.cc 1.3 +16 -16 xorp/xrl/interfaces/fea_click_xif.cc 1.6 +9 -9 xorp/xrl/interfaces/fea_fib_client_xif.cc 1.5 +5 -5 xorp/xrl/interfaces/fea_fib_xif.cc 1.12 +6 -6 xorp/xrl/interfaces/fea_ifmgr_client_xif.cc 1.9 +33 -33 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.cc 1.5 +3 -3 xorp/xrl/interfaces/fea_ifmgr_replicator_xif.cc 1.23 +69 -69 xorp/xrl/interfaces/fea_ifmgr_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_client_xif.cc 1.2 +5 -5 xorp/xrl/interfaces/fea_rawpkt4_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc 1.3 +4 -4 xorp/xrl/interfaces/fea_rawpkt6_xif.cc 1.5 +5 -5 xorp/xrl/interfaces/fib2mrib_xif.cc 1.13 +5 -5 xorp/xrl/interfaces/finder_client_xif.cc 1.9 +5 -5 xorp/xrl/interfaces/finder_event_notifier_xif.cc 1.8 +3 -3 xorp/xrl/interfaces/finder_event_observer_xif.cc 1.17 +14 -14 xorp/xrl/interfaces/finder_xif.cc 1.12 +11 -11 xorp/xrl/interfaces/fti_xif.cc 1.15 +21 -21 xorp/xrl/interfaces/mfea_client_xif.cc 1.16 +48 -48 xorp/xrl/interfaces/mfea_xif.cc 1.12 +5 -5 xorp/xrl/interfaces/mld6igmp_client_xif.cc 1.15 +21 -21 xorp/xrl/interfaces/mld6igmp_xif.cc 1.11 +93 -93 xorp/xrl/interfaces/ospf_xif.cc 1.2 +15 -15 xorp/xrl/interfaces/packet_acl_xif.cc 1.26 +226 -226 xorp/xrl/interfaces/pim_xif.cc 1.2 +4 -4 xorp/xrl/interfaces/policy_backend_xif.cc 1.2 +3 -3 xorp/xrl/interfaces/policy_redist4_xif.cc 1.2 +3 -3 xorp/xrl/interfaces/policy_redist6_xif.cc 1.2 +15 -15 xorp/xrl/interfaces/policy_xif.cc 1.2 +3 -3 xorp/xrl/interfaces/profile_client_xif.cc 1.2 +6 -6 xorp/xrl/interfaces/profile_xif.cc 1.8 +5 -5 xorp/xrl/interfaces/redist4_xif.cc 1.8 +5 -5 xorp/xrl/interfaces/redist6_xif.cc 1.8 +7 -7 xorp/xrl/interfaces/redist_transaction4_xif.cc 1.8 +7 -7 xorp/xrl/interfaces/redist_transaction6_xif.cc 1.12 +5 -5 xorp/xrl/interfaces/rib_client_xif.cc 1.27 +43 -43 xorp/xrl/interfaces/rib_xif.cc 1.7 +43 -43 xorp/xrl/interfaces/rip_xif.cc 1.7 +41 -41 xorp/xrl/interfaces/ripng_xif.cc 1.12 +5 -5 xorp/xrl/interfaces/rtrmgr_client_xif.cc 1.12 +16 -16 xorp/xrl/interfaces/rtrmgr_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/socket4_locator_xif.cc 1.6 +5 -5 xorp/xrl/interfaces/socket4_user_xif.cc 1.8 +17 -17 xorp/xrl/interfaces/socket4_xif.cc 1.4 +2 -2 xorp/xrl/interfaces/socket6_locator_xif.cc 1.4 +5 -5 xorp/xrl/interfaces/socket6_user_xif.cc 1.6 +17 -17 xorp/xrl/interfaces/socket6_xif.cc 1.5 +15 -15 xorp/xrl/interfaces/static_routes_xif.cc 1.13 +10 -10 xorp/xrl/interfaces/test_peer_xif.cc 1.11 +6 -6 xorp/xrl/interfaces/test_xif.cc 1.3 +8 -8 xorp/xrl/interfaces/test_xrls_xif.cc 1.6 +3 -3 xorp/xrl/interfaces/xorp_if_mib_xif.cc 1.10 +1 -1 xorp/xrl/scripts/clnt-gen 1.15 +1 -1 xorp/xrl/scripts/tgt-gen 1.12 +7 -7 xorp/xrl/targets/bgp4_mib_base.cc 1.34 +59 -58 xorp/xrl/targets/bgp_base.cc 1.40 +3 -2 xorp/xrl/targets/bgp_base.hh 1.16 +18 -18 xorp/xrl/targets/cli_base.cc 1.15 +11 -11 xorp/xrl/targets/coord_base.cc 1.13 +10 -10 xorp/xrl/targets/demo_fea_ifmgr_client_base.cc 1.49 +130 -130 xorp/xrl/targets/fea_base.cc 1.11 +37 -37 xorp/xrl/targets/fea_ifmgr_mirror_base.cc 1.10 +7 -7 xorp/xrl/targets/test_finder_events_base.cc 1.3 +12 -12 xorp/xrl/targets/test_xrls_base.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 19:56:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 11:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEJv1S9080668 for ; Tue, 14 Dec 2004 11:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEJv1f9080318 for ; Tue, 14 Dec 2004 11:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEJv1UF021022; Tue, 14 Dec 2004 11:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEJuOUF020999 for ; Tue, 14 Dec 2004 11:56:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEJuOf9080310 for ; Tue, 14 Dec 2004 11:56:24 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEJuOWL083596 for ; Tue, 14 Dec 2004 11:56:24 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEJuOiI083595 for xorp-cvs@icir.org; Tue, 14 Dec 2004 19:56:24 GMT (envelope-from atanu) Date: Tue, 14 Dec 2004 19:56:24 GMT From: Atanu Ghosh Message-Id: <200412141956.iBEJuOiI083595@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-14 19:56:24 UTC XORP CVS repository Modified files: bgp iptuple.cc Log message: Add casting macros to print size_t's. Revision Changes Path 1.7 +3 -2 xorp/bgp/iptuple.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 19:59:11 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 12:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEK01fK081465 for ; Tue, 14 Dec 2004 12:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEK01f9080395 for ; Tue, 14 Dec 2004 12:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEK01UF021127; Tue, 14 Dec 2004 12:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEJxBUF021097 for ; Tue, 14 Dec 2004 11:59:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEJxBf9080381 for ; Tue, 14 Dec 2004 11:59:11 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEJxBB5083684 for ; Tue, 14 Dec 2004 11:59:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEJxBLB083683 for xorp-cvs@icir.org; Tue, 14 Dec 2004 19:59:11 GMT (envelope-from atanu) Date: Tue, 14 Dec 2004 19:59:11 GMT From: Atanu Ghosh Message-Id: <200412141959.iBEJxBLB083683@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-14 19:59:11 UTC XORP CVS repository Modified files: bgp socket.cc Log message: Add casting macros to print size_t's. Revision Changes Path 1.20 +3 -2 xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 21:52:50 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 13:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBELr1MY009207 for ; Tue, 14 Dec 2004 13:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELr1f9081900 for ; Tue, 14 Dec 2004 13:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELr1UF024815; Tue, 14 Dec 2004 13:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELqoUF024807 for ; Tue, 14 Dec 2004 13:52:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELqof9081895 for ; Tue, 14 Dec 2004 13:52:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBELqoC6090476 for ; Tue, 14 Dec 2004 13:52:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBELqotv090475 for xorp-cvs@icir.org; Tue, 14 Dec 2004 21:52:50 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 21:52:50 GMT From: Pavlin Radoslavov Message-Id: <200412142152.iBELqotv090475@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 21:52:50 UTC XORP CVS repository Modified files: xrl/interfaces bgp_xif.cc bgp_xif.hh Log message: Re-generate with the current version of the bgp.xif file. Revision Changes Path 1.30 +1 -3 xorp/xrl/interfaces/bgp_xif.cc 1.30 +1 -2 xorp/xrl/interfaces/bgp_xif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 21:54:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 13:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBELt171009822 for ; Tue, 14 Dec 2004 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELt1f9081926 for ; Tue, 14 Dec 2004 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELt1UF024878; Tue, 14 Dec 2004 13:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELsqUF024868 for ; Tue, 14 Dec 2004 13:54:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELspf9081918 for ; Tue, 14 Dec 2004 13:54:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBELspD2090576 for ; Tue, 14 Dec 2004 13:54:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBELspob090575 for xorp-cvs@icir.org; Tue, 14 Dec 2004 21:54:51 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 21:54:51 GMT From: Pavlin Radoslavov Message-Id: <200412142154.iBELspob090575@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 21:54:51 UTC XORP CVS repository Modified files: xrl/targets bgp_base.cc bgp_base.hh Log message: Re-generate with the current version of bgp.xif and the current version of the Python code generation script. Revision Changes Path 1.35 +4 -5 xorp/xrl/targets/bgp_base.cc 1.41 +2 -3 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 21:55:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 13:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBELu1wg010169 for ; Tue, 14 Dec 2004 13:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELu1f9081961 for ; Tue, 14 Dec 2004 13:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELu1UF024913; Tue, 14 Dec 2004 13:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELtDUF024891 for ; Tue, 14 Dec 2004 13:55:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELtCf9081949 for ; Tue, 14 Dec 2004 13:55:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBELtCC5090684 for ; Tue, 14 Dec 2004 13:55:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBELtC4p090683 for xorp-cvs@icir.org; Tue, 14 Dec 2004 21:55:12 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 21:55:12 GMT From: Pavlin Radoslavov Message-Id: <200412142155.iBELtC4p090683@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 21:55:12 UTC XORP CVS repository Modified files: xrl/targets fib2mrib_base.cc finder_base.cc finder_client_base.cc mfea_base.cc mld6igmp_base.cc ospf_base.cc packet_acl_base.cc pim_base.cc policy_base.cc profiler_base.cc rib_base.cc ribclient_base.cc rip_base.cc ripng_base.cc rtrmgr_base.cc show_routes_base.cc socket_server_base.cc static_routes_base.cc test_base.cc test_fea_ifmgr_mirror_base.cc test_peer_base.cc test_socket4_base.cc test_socket6_base.cc xorp_if_mib_base.cc xorpsh_base.cc Log message: Re-generate with the current version of the Python code generations cript. Revision Changes Path 1.6 +17 -17 xorp/xrl/targets/fib2mrib_base.cc 1.21 +22 -22 xorp/xrl/targets/finder_base.cc 1.15 +9 -9 xorp/xrl/targets/finder_client_base.cc 1.21 +53 -53 xorp/xrl/targets/mfea_base.cc 1.20 +46 -46 xorp/xrl/targets/mld6igmp_base.cc 1.13 +97 -97 xorp/xrl/targets/ospf_base.cc 1.2 +19 -19 xorp/xrl/targets/packet_acl_base.cc 1.40 +267 -267 xorp/xrl/targets/pim_base.cc 1.2 +21 -21 xorp/xrl/targets/policy_base.cc 1.2 +7 -7 xorp/xrl/targets/profiler_base.cc 1.32 +57 -57 xorp/xrl/targets/rib_base.cc 1.12 +5 -5 xorp/xrl/targets/ribclient_base.cc 1.17 +62 -62 xorp/xrl/targets/rip_base.cc 1.19 +60 -60 xorp/xrl/targets/ripng_base.cc 1.14 +20 -20 xorp/xrl/targets/rtrmgr_base.cc 1.4 +15 -15 xorp/xrl/targets/show_routes_base.cc 1.7 +39 -39 xorp/xrl/targets/socket_server_base.cc 1.6 +22 -22 xorp/xrl/targets/static_routes_base.cc 1.13 +10 -10 xorp/xrl/targets/test_base.cc 1.6 +3 -3 xorp/xrl/targets/test_fea_ifmgr_mirror_base.cc 1.15 +14 -14 xorp/xrl/targets/test_peer_base.cc 1.4 +9 -9 xorp/xrl/targets/test_socket4_base.cc 1.4 +9 -9 xorp/xrl/targets/test_socket6_base.cc 1.9 +7 -7 xorp/xrl/targets/xorp_if_mib_base.cc 1.14 +9 -9 xorp/xrl/targets/xorpsh_base.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 21:58:06 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 13:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBELx12r011073 for ; Tue, 14 Dec 2004 13:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELx0f9081993 for ; Tue, 14 Dec 2004 13:59:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELx0UF025006; Tue, 14 Dec 2004 13:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBELw6UF024972 for ; Tue, 14 Dec 2004 13:58:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBELw6f9081988 for ; Tue, 14 Dec 2004 13:58:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBELw629090753 for ; Tue, 14 Dec 2004 13:58:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBELw5kg090752 for xorp-cvs@icir.org; Tue, 14 Dec 2004 21:58:06 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 21:58:06 GMT From: Pavlin Radoslavov Message-Id: <200412142158.iBELw5kg090752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 21:58:05 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc conf_tree_node.hh master_conf_tree_node.cc master_conf_tree_node.hh Log message: Linux coredump (temporary) fix: All MasterConfigTreeNode local state has been moved temporary to the base ConfigTreeNode class. This is a temporary solution of a memory allocation problem: in number of places, ConfigTreeNode objects are allocated, but later they are casted (using C-style cast) to the larger MasterConfigTreeNode, and the extra state (outside of the allocated memory) is modified. Approved by: Atanu Revision Changes Path 1.56 +25 -5 xorp/rtrmgr/conf_tree_node.cc 1.28 +17 -1 xorp/rtrmgr/conf_tree_node.hh 1.5 +17 -5 xorp/rtrmgr/master_conf_tree_node.cc 1.5 +15 -1 xorp/rtrmgr/master_conf_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 22:30:38 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 14:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEMV1Ah067615 for ; Tue, 14 Dec 2004 14:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEMV1f9082473 for ; Tue, 14 Dec 2004 14:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEMV1UF025989; Tue, 14 Dec 2004 14:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEMUcUF025972 for ; Tue, 14 Dec 2004 14:30:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEMUcf9082463 for ; Tue, 14 Dec 2004 14:30:38 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEMUcQW019020 for ; Tue, 14 Dec 2004 14:30:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEMUc12019019 for xorp-cvs@icir.org; Tue, 14 Dec 2004 22:30:38 GMT (envelope-from atanu) Date: Tue, 14 Dec 2004 22:30:38 GMT From: Atanu Ghosh Message-Id: <200412142230.iBEMUc12019019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-14 22:30:38 UTC XORP CVS repository Modified files: libxorp ipv4.cc Log message: Cast 0x0U to uint32_t for environments where they are not equivalent. Revision Changes Path 1.16 +2 -2 xorp/libxorp/ipv4.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Tue Dec 14 22:43:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 14:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBEMi1tq071123 for ; Tue, 14 Dec 2004 14:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEMi1f9082666 for ; Tue, 14 Dec 2004 14:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEMi1UF026395; Tue, 14 Dec 2004 14:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBEMhDUF026372 for ; Tue, 14 Dec 2004 14:43:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBEMhCf9082651 for ; Tue, 14 Dec 2004 14:43:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBEMhC68038601 for ; Tue, 14 Dec 2004 14:43:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBEMhC2N038600 for xorp-cvs@icir.org; Tue, 14 Dec 2004 22:43:12 GMT (envelope-from pavlin) Date: Tue, 14 Dec 2004 22:43:12 GMT From: Pavlin Radoslavov Message-Id: <200412142243.iBEMhC2N038600@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-14 22:43:11 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in Log message: Bug fix: add xorp_fea_click_config_generator to bin_SCRIPTS instead of bin_PROGRAMS. This fixes "gmake clean" problem which would actually remove the xorp_fea_click_config_generator script file. Bug found by: Xavier Brouckaert Revision Changes Path 1.56 +3 -5 xorp/fea/Makefile.am 1.70 +45 -34 xorp/fea/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Wed Dec 15 04:30:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 20:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBF4V1Pd003294 for ; Tue, 14 Dec 2004 20:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4V1pl086653 for ; Tue, 14 Dec 2004 20:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4V1UF006808; Tue, 14 Dec 2004 20:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4U5UF006791 for ; Tue, 14 Dec 2004 20:30:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4U5pl086632 for ; Tue, 14 Dec 2004 20:30:05 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBF4U54u080284 for ; Tue, 14 Dec 2004 20:30:05 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBF4U5eh080283 for xorp-cvs@icir.org; Wed, 15 Dec 2004 04:30:05 GMT (envelope-from atanu) Date: Wed, 15 Dec 2004 04:30:05 GMT From: Atanu Ghosh Message-Id: <200412150430.iBF4U5eh080283@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-15 04:30:05 UTC XORP CVS repository Modified files: bgp iptuple.cc iptuple.hh Log message: Remove the constructor that with IPv4 parameters. Revision Changes Path 1.8 +1 -22 xorp/bgp/iptuple.cc 1.6 +1 -4 xorp/bgp/iptuple.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Wed Dec 15 04:41:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 20:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBF4g1Zh023449 for ; Tue, 14 Dec 2004 20:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4g1pl086778 for ; Tue, 14 Dec 2004 20:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4g1UF007115; Tue, 14 Dec 2004 20:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4f3UF007070 for ; Tue, 14 Dec 2004 20:41:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4f3pl086765 for ; Tue, 14 Dec 2004 20:41:03 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBF4f21Q080600 for ; Tue, 14 Dec 2004 20:41:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBF4f2Na080599 for xorp-cvs@icir.org; Wed, 15 Dec 2004 04:41:02 GMT (envelope-from atanu) Date: Wed, 15 Dec 2004 04:41:02 GMT From: Atanu Ghosh Message-Id: <200412150441.iBF4f2Na080599@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-15 04:41:02 UTC XORP CVS repository Modified files: bgp peer.cc Log message: If IPv4 Unicast has not been configured for a peering then remove any NLRIs or WITHDRAWs. Revision Changes Path 1.83 +29 -2 xorp/bgp/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Wed Dec 15 04:44:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 14 Dec 2004 20:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBF4j10k028673 for ; Tue, 14 Dec 2004 20:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4j1pl086806 for ; Tue, 14 Dec 2004 20:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4j0UF007171; Tue, 14 Dec 2004 20:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBF4i8UF007157 for ; Tue, 14 Dec 2004 20:44:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBF4i8pl086795 for ; Tue, 14 Dec 2004 20:44:08 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBF4i8Tk080685 for ; Tue, 14 Dec 2004 20:44:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBF4i8Tw080684 for xorp-cvs@icir.org; Wed, 15 Dec 2004 04:44:08 GMT (envelope-from atanu) Date: Wed, 15 Dec 2004 04:44:08 GMT From: Atanu Ghosh Message-Id: <200412150444.iBF4i8Tw080684@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-15 04:44:08 UTC XORP CVS repository Modified files: bgp peer_handler.cc Log message: Only send AFI/SAFI NLRIs and WITHDRAWs that have been agreed by both end of the peering. Previously we sent what the peer had requested. Revision Changes Path 1.36 +9 -9 xorp/bgp/peer_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Wed Dec 15 17:09:57 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 09:10:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFHA1NT023749 for ; Wed, 15 Dec 2004 09:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFHA1pl097420 for ; Wed, 15 Dec 2004 09:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFHA16N028445; Wed, 15 Dec 2004 09:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFH9w6N028436 for ; Wed, 15 Dec 2004 09:09:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFH9vpl097415 for ; Wed, 15 Dec 2004 09:09:57 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFH9vf9090333 for ; Wed, 15 Dec 2004 09:09:57 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFH9v8x090332 for xorp-cvs@icir.org; Wed, 15 Dec 2004 17:09:57 GMT (envelope-from bms) Date: Wed, 15 Dec 2004 17:09:57 GMT From: Bruce Simpson Message-Id: <200412151709.iBFH9v8x090332@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-15 17:09:57 UTC XORP CVS repository Modified files: . bootstrap Log message: When removing the cache directories after a bootstrap, check the name of the autoconf binary in use, as the cache directories will be named 'autom4teXXX.cache' (where XXX is the version of autoconf in use). Revision Changes Path 1.22 +10 -3 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:13 2005 Subject: No subject Wed Dec 15 17:51:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 09:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFHq1Xe048062 for ; Wed, 15 Dec 2004 09:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFHq0pl098003 for ; Wed, 15 Dec 2004 09:52:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFHq06N029853; Wed, 15 Dec 2004 09:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFHpn6N029842 for ; Wed, 15 Dec 2004 09:51:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFHpnpl097999 for ; Wed, 15 Dec 2004 09:51:49 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFHpneB090931 for ; Wed, 15 Dec 2004 09:51:49 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFHpnxv090930 for xorp-cvs@icir.org; Wed, 15 Dec 2004 17:51:49 GMT (envelope-from bms) Date: Wed, 15 Dec 2004 17:51:49 GMT From: Bruce Simpson Message-Id: <200412151751.iBFHpnxv090930@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-15 17:51:49 UTC XORP CVS repository Modified files: . config.h.in configure configure.in Log message: Remove IPFW v1 test. We will never support IPFW v1 as a host firewall type. Add logic to the IPFW2 test to heed the following: a) For FreeBSD 5.x, only 5.1 and above have IPFW2 with atomic set support, and IPFW1 no longer exists. b) For FreeBSD 4.x, only 4.9 and above have IPFW2 with atomic set support (required by XORP's FEA). c) FreeBSD 4.x requires that IPFW2 be explicitly requested by defining the symbol IPFW2 before including its system headers. You must rebuild your FreeBSD 4.x system with 'options IPFW2' as well as 'options IPFIREWALL', and IPFW2 defined to a non-zero value in /etc/make.conf, for XORP's packet ACL support to work on this version of FreeBSD. Rename config.h defines: s/HAVE_FIREWALL/HAVE_PACKETFILTER/ Clean up comments. Regen files. Discussed with: atanu, luigi, andre@FreeBSD.org Revision Changes Path 1.41 +12 -15 xorp/config.h.in 1.135 +25 -87 xorp/configure 1.129 +40 -55 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 18:46:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 10:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFIl1Mt061333 for ; Wed, 15 Dec 2004 10:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFIl1pl098754 for ; Wed, 15 Dec 2004 10:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFIl16N001949; Wed, 15 Dec 2004 10:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFIkG6N001908 for ; Wed, 15 Dec 2004 10:46:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFIkGpl098748 for ; Wed, 15 Dec 2004 10:46:16 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFIkGDE091589 for ; Wed, 15 Dec 2004 10:46:16 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFIkGw6091588 for xorp-cvs@icir.org; Wed, 15 Dec 2004 18:46:16 GMT (envelope-from bms) Date: Wed, 15 Dec 2004 18:46:16 GMT From: Bruce Simpson Message-Id: <200412151846.iBFIkGw6091588@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-15 18:46:16 UTC XORP CVS repository Modified files: fea TODO Log message: Add Packet ACL specific TODO items. Revision Changes Path 1.26 +18 -1 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 18:48:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 10:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFIn1mX061829 for ; Wed, 15 Dec 2004 10:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFIn0pl098782 for ; Wed, 15 Dec 2004 10:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFIn06N002029; Wed, 15 Dec 2004 10:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFImi6N002021 for ; Wed, 15 Dec 2004 10:48:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFImipl098779 for ; Wed, 15 Dec 2004 10:48:44 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFImh1s091684 for ; Wed, 15 Dec 2004 10:48:43 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFImhGh091683 for xorp-cvs@icir.org; Wed, 15 Dec 2004 18:48:43 GMT (envelope-from bms) Date: Wed, 15 Dec 2004 18:48:43 GMT From: Bruce Simpson Message-Id: <200412151848.iBFImhGh091683@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-15 18:48:43 UTC XORP CVS repository Modified files: fea TODO Log message: Add more packet ACL TODO items. Revision Changes Path 1.27 +8 -1 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 21:33:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 13:34:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFLY3LM097426 for ; Wed, 15 Dec 2004 13:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFLY3pl000851 for ; Wed, 15 Dec 2004 13:34:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFLY28f008067; Wed, 15 Dec 2004 13:34:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFLX48f007999 for ; Wed, 15 Dec 2004 13:33:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFLX4pl000837 for ; Wed, 15 Dec 2004 13:33:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFLX4Dd093510 for ; Wed, 15 Dec 2004 13:33:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFLX46r093509 for xorp-cvs@icir.org; Wed, 15 Dec 2004 21:33:04 GMT (envelope-from pavlin) Date: Wed, 15 Dec 2004 21:33:04 GMT From: Pavlin Radoslavov Message-Id: <200412152133.iBFLX46r093509@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-15 21:33:04 UTC XORP CVS repository Modified files: libxorp mac.cc mac.hh Log message: * Add new method EtherMac::normalize() that can be used to normalize the EtherMAC address string representation to the system's internal preference. Example: "00:00:00:00:00:00" -> "0:0:0:0:0:0" * Always set the MAC (or EtherMac) internal string with the address after normalizing it (see above). * Editorial nits. Revision Changes Path 1.7 +62 -18 xorp/libxorp/mac.cc 1.5 +15 -1 xorp/libxorp/mac.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 21:39:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 13:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFLe1YY098581 for ; Wed, 15 Dec 2004 13:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFLe1pl000948 for ; Wed, 15 Dec 2004 13:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFLe08f008243; Wed, 15 Dec 2004 13:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFLdG8f008217 for ; Wed, 15 Dec 2004 13:39:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFLdGpl000939 for ; Wed, 15 Dec 2004 13:39:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFLdGe9093691 for ; Wed, 15 Dec 2004 13:39:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFLdGr3093690 for xorp-cvs@icir.org; Wed, 15 Dec 2004 21:39:16 GMT (envelope-from pavlin) Date: Wed, 15 Dec 2004 21:39:16 GMT From: Pavlin Radoslavov Message-Id: <200412152139.iBFLdGr3093690@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-15 21:39:16 UTC XORP CVS repository Modified files: rtrmgr boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc template.ll Log message: Fix the regular expression for parsing an Ethernet MAC address. Previously, the string must had the format: 01:01:01:01:01:01 Now the format can be: 1:1:1:1:1:1 Bug found by: Xavier Brouckaert Revision Changes Path 1.18 +1 -1 xorp/rtrmgr/boot.ll 1.7 +929 -929 xorp/rtrmgr/lex.boot.cc 1.7 +0 -0 xorp/rtrmgr/lex.opcmd.cc 1.7 +1149 -1147 xorp/rtrmgr/lex.tplt.cc 1.11 +1 -1 xorp/rtrmgr/template.ll _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 22:56:00 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 14:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFMv1rJ019831 for ; Wed, 15 Dec 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFMv1pl001758 for ; Wed, 15 Dec 2004 14:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFMv18f010774; Wed, 15 Dec 2004 14:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFMu08f010754 for ; Wed, 15 Dec 2004 14:56:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFMu0pl001751 for ; Wed, 15 Dec 2004 14:56:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFMu0em070350 for ; Wed, 15 Dec 2004 14:56:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFMu0GO070349 for xorp-cvs@icir.org; Wed, 15 Dec 2004 22:56:00 GMT (envelope-from pavlin) Date: Wed, 15 Dec 2004 22:56:00 GMT From: Pavlin Radoslavov Message-Id: <200412152256.iBFMu0GO070349@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-15 22:56:00 UTC XORP CVS repository Modified files: libxorp mac.cc mac.hh Log message: * Reverse some of the previous changes: Don't store the Mac or EtherMac address as a normalized string, but always use the original string (as before). Otherwise, some of the XRL code doesn't like the fact that the initialization string and the mac.str() strings have different size. * Add a new method Mac::normalized_str() to return the normalized string of a Mac address. * Use Mac::normalized_str() to compare Mac addresses. Revision Changes Path 1.8 +24 -6 xorp/libxorp/mac.cc 1.6 +16 -2 xorp/libxorp/mac.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Wed Dec 15 23:54:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 15:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBFNt1gm031255 for ; Wed, 15 Dec 2004 15:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFNt1pl002437 for ; Wed, 15 Dec 2004 15:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFNt18f012850; Wed, 15 Dec 2004 15:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBFNsZ8f012824 for ; Wed, 15 Dec 2004 15:54:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBFNsYpl002430 for ; Wed, 15 Dec 2004 15:54:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBFNsYSs021199 for ; Wed, 15 Dec 2004 15:54:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBFNsYZi021198 for xorp-cvs@icir.org; Wed, 15 Dec 2004 23:54:34 GMT (envelope-from pavlin) Date: Wed, 15 Dec 2004 23:54:34 GMT From: Pavlin Radoslavov Message-Id: <200412152354.iBFNsYZi021198@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-15 23:54:34 UTC XORP CVS repository Modified files: fea ifconfig_set.cc Log message: Fix a typo: MTU -> MAC Revision Changes Path 1.22 +2 -2 xorp/fea/ifconfig_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Thu Dec 16 01:57:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 15 Dec 2004 17:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBG1w1bS085792 for ; Wed, 15 Dec 2004 17:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBG1w1pl003614 for ; Wed, 15 Dec 2004 17:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBG1w08f016741; Wed, 15 Dec 2004 17:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBG1v28f016715 for ; Wed, 15 Dec 2004 17:57:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBG1v2pl003609 for ; Wed, 15 Dec 2004 17:57:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBG1v2Rb059507 for ; Wed, 15 Dec 2004 17:57:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBG1v21s059506 for xorp-cvs@icir.org; Thu, 16 Dec 2004 01:57:02 GMT (envelope-from pavlin) Date: Thu, 16 Dec 2004 01:57:02 GMT From: Pavlin Radoslavov Message-Id: <200412160157.iBG1v21s059506@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/scripts xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-16 01:57:02 UTC XORP CVS repository Modified files: xrl/interfaces bgp_mib_traps_xif.cc bgp_xif.cc cli_manager_xif.cc cli_processor_xif.cc common_xif.cc coord_xif.cc datain_xif.cc fea_click_xif.cc fea_fib_client_xif.cc fea_fib_xif.cc fea_ifmgr_client_xif.cc fea_ifmgr_mirror_xif.cc fea_ifmgr_replicator_xif.cc fea_ifmgr_xif.cc fea_rawpkt4_client_xif.cc fea_rawpkt4_xif.cc fea_rawpkt6_client_xif.cc fea_rawpkt6_xif.cc fib2mrib_xif.cc finder_client_xif.cc finder_event_notifier_xif.cc finder_event_observer_xif.cc finder_xif.cc fti_xif.cc mfea_client_xif.cc mfea_xif.cc mld6igmp_client_xif.cc mld6igmp_xif.cc ospf_xif.cc packet_acl_xif.cc pim_xif.cc policy_backend_xif.cc policy_redist4_xif.cc policy_redist6_xif.cc policy_xif.cc profile_client_xif.cc profile_xif.cc redist4_xif.cc redist6_xif.cc redist_transaction4_xif.cc redist_transaction6_xif.cc rib_client_xif.cc rib_xif.cc rip_xif.cc ripng_xif.cc rtrmgr_client_xif.cc rtrmgr_xif.cc socket4_locator_xif.cc socket4_user_xif.cc socket4_xif.cc socket6_locator_xif.cc socket6_user_xif.cc socket6_xif.cc static_routes_xif.cc test_peer_xif.cc test_xif.cc test_xrls_xif.cc xorp_if_mib_xif.cc xrl/scripts clnt-gen tgt-gen xrl/targets bgp4_mib_base.cc bgp_base.cc cli_base.cc coord_base.cc demo_fea_ifmgr_client_base.cc fea_base.cc fea_ifmgr_mirror_base.cc fib2mrib_base.cc finder_base.cc finder_client_base.cc mfea_base.cc mld6igmp_base.cc ospf_base.cc packet_acl_base.cc pim_base.cc policy_base.cc profiler_base.cc rib_base.cc ribclient_base.cc rip_base.cc ripng_base.cc rtrmgr_base.cc show_routes_base.cc socket_server_base.cc static_routes_base.cc test_base.cc test_fea_ifmgr_mirror_base.cc test_finder_events_base.cc test_peer_base.cc test_socket4_base.cc test_socket6_base.cc test_xrls_base.cc xorp_if_mib_base.cc xorpsh_base.cc Log message: * Add XORP_UINT_CAST() cast to the XRL Python script generators. Apparently, some OS-es don't like printf("%u", 1), and they require that the number has to be casted or specified as an unsigned integer. * Regenerate all XRL-related auto-generated files. Approved by: Atanu Revision Changes Path 1.8 +3 -3 xorp/xrl/interfaces/bgp_mib_traps_xif.cc 1.31 +34 -34 xorp/xrl/interfaces/bgp_xif.cc 1.15 +14 -14 xorp/xrl/interfaces/cli_manager_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/cli_processor_xif.cc 1.14 +5 -5 xorp/xrl/interfaces/common_xif.cc 1.13 +4 -4 xorp/xrl/interfaces/coord_xif.cc 1.13 +4 -4 xorp/xrl/interfaces/datain_xif.cc 1.4 +16 -16 xorp/xrl/interfaces/fea_click_xif.cc 1.7 +9 -9 xorp/xrl/interfaces/fea_fib_client_xif.cc 1.6 +5 -5 xorp/xrl/interfaces/fea_fib_xif.cc 1.13 +6 -6 xorp/xrl/interfaces/fea_ifmgr_client_xif.cc 1.10 +33 -33 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.cc 1.6 +3 -3 xorp/xrl/interfaces/fea_ifmgr_replicator_xif.cc 1.24 +69 -69 xorp/xrl/interfaces/fea_ifmgr_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_client_xif.cc 1.3 +5 -5 xorp/xrl/interfaces/fea_rawpkt4_xif.cc 1.4 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc 1.4 +4 -4 xorp/xrl/interfaces/fea_rawpkt6_xif.cc 1.6 +5 -5 xorp/xrl/interfaces/fib2mrib_xif.cc 1.14 +5 -5 xorp/xrl/interfaces/finder_client_xif.cc 1.10 +5 -5 xorp/xrl/interfaces/finder_event_notifier_xif.cc 1.9 +3 -3 xorp/xrl/interfaces/finder_event_observer_xif.cc 1.18 +14 -14 xorp/xrl/interfaces/finder_xif.cc 1.13 +11 -11 xorp/xrl/interfaces/fti_xif.cc 1.16 +21 -21 xorp/xrl/interfaces/mfea_client_xif.cc 1.17 +48 -48 xorp/xrl/interfaces/mfea_xif.cc 1.13 +5 -5 xorp/xrl/interfaces/mld6igmp_client_xif.cc 1.16 +21 -21 xorp/xrl/interfaces/mld6igmp_xif.cc 1.12 +93 -93 xorp/xrl/interfaces/ospf_xif.cc 1.3 +15 -15 xorp/xrl/interfaces/packet_acl_xif.cc 1.27 +226 -226 xorp/xrl/interfaces/pim_xif.cc 1.3 +4 -4 xorp/xrl/interfaces/policy_backend_xif.cc 1.3 +3 -3 xorp/xrl/interfaces/policy_redist4_xif.cc 1.3 +3 -3 xorp/xrl/interfaces/policy_redist6_xif.cc 1.3 +15 -15 xorp/xrl/interfaces/policy_xif.cc 1.3 +3 -3 xorp/xrl/interfaces/profile_client_xif.cc 1.3 +6 -6 xorp/xrl/interfaces/profile_xif.cc 1.9 +5 -5 xorp/xrl/interfaces/redist4_xif.cc 1.9 +5 -5 xorp/xrl/interfaces/redist6_xif.cc 1.9 +7 -7 xorp/xrl/interfaces/redist_transaction4_xif.cc 1.9 +7 -7 xorp/xrl/interfaces/redist_transaction6_xif.cc 1.13 +5 -5 xorp/xrl/interfaces/rib_client_xif.cc 1.28 +43 -43 xorp/xrl/interfaces/rib_xif.cc 1.8 +43 -43 xorp/xrl/interfaces/rip_xif.cc 1.8 +41 -41 xorp/xrl/interfaces/ripng_xif.cc 1.13 +5 -5 xorp/xrl/interfaces/rtrmgr_client_xif.cc 1.13 +16 -16 xorp/xrl/interfaces/rtrmgr_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/socket4_locator_xif.cc 1.7 +5 -5 xorp/xrl/interfaces/socket4_user_xif.cc 1.9 +17 -17 xorp/xrl/interfaces/socket4_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/socket6_locator_xif.cc 1.5 +5 -5 xorp/xrl/interfaces/socket6_user_xif.cc 1.7 +17 -17 xorp/xrl/interfaces/socket6_xif.cc 1.6 +15 -15 xorp/xrl/interfaces/static_routes_xif.cc 1.14 +10 -10 xorp/xrl/interfaces/test_peer_xif.cc 1.12 +6 -6 xorp/xrl/interfaces/test_xif.cc 1.4 +8 -8 xorp/xrl/interfaces/test_xrls_xif.cc 1.7 +3 -3 xorp/xrl/interfaces/xorp_if_mib_xif.cc 1.11 +1 -1 xorp/xrl/scripts/clnt-gen 1.16 +1 -1 xorp/xrl/scripts/tgt-gen 1.13 +7 -7 xorp/xrl/targets/bgp4_mib_base.cc 1.36 +56 -56 xorp/xrl/targets/bgp_base.cc 1.17 +18 -18 xorp/xrl/targets/cli_base.cc 1.16 +11 -11 xorp/xrl/targets/coord_base.cc 1.14 +10 -10 xorp/xrl/targets/demo_fea_ifmgr_client_base.cc 1.50 +130 -130 xorp/xrl/targets/fea_base.cc 1.12 +37 -37 xorp/xrl/targets/fea_ifmgr_mirror_base.cc 1.7 +17 -17 xorp/xrl/targets/fib2mrib_base.cc 1.22 +22 -22 xorp/xrl/targets/finder_base.cc 1.16 +9 -9 xorp/xrl/targets/finder_client_base.cc 1.22 +53 -53 xorp/xrl/targets/mfea_base.cc 1.21 +46 -46 xorp/xrl/targets/mld6igmp_base.cc 1.14 +97 -97 xorp/xrl/targets/ospf_base.cc 1.3 +19 -19 xorp/xrl/targets/packet_acl_base.cc 1.41 +267 -267 xorp/xrl/targets/pim_base.cc 1.3 +21 -21 xorp/xrl/targets/policy_base.cc 1.3 +7 -7 xorp/xrl/targets/profiler_base.cc 1.33 +57 -57 xorp/xrl/targets/rib_base.cc 1.13 +5 -5 xorp/xrl/targets/ribclient_base.cc 1.18 +62 -62 xorp/xrl/targets/rip_base.cc 1.20 +60 -60 xorp/xrl/targets/ripng_base.cc 1.15 +20 -20 xorp/xrl/targets/rtrmgr_base.cc 1.5 +15 -15 xorp/xrl/targets/show_routes_base.cc 1.8 +39 -39 xorp/xrl/targets/socket_server_base.cc 1.7 +22 -22 xorp/xrl/targets/static_routes_base.cc 1.14 +10 -10 xorp/xrl/targets/test_base.cc 1.7 +3 -3 xorp/xrl/targets/test_fea_ifmgr_mirror_base.cc 1.11 +7 -7 xorp/xrl/targets/test_finder_events_base.cc 1.16 +14 -14 xorp/xrl/targets/test_peer_base.cc 1.5 +9 -9 xorp/xrl/targets/test_socket4_base.cc 1.5 +9 -9 xorp/xrl/targets/test_socket6_base.cc 1.4 +12 -12 xorp/xrl/targets/test_xrls_base.cc 1.10 +7 -7 xorp/xrl/targets/xorp_if_mib_base.cc 1.15 +9 -9 xorp/xrl/targets/xorpsh_base.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Thu Dec 16 16:48:24 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 08:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBGGn285036620 for ; Thu, 16 Dec 2004 08:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBGGn2pl014160 for ; Thu, 16 Dec 2004 08:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBGGn18f012440; Thu, 16 Dec 2004 08:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBGGmO8f012418 for ; Thu, 16 Dec 2004 08:48:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBGGmOpl014154 for ; Thu, 16 Dec 2004 08:48:24 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBGGmOHr014437 for ; Thu, 16 Dec 2004 08:48:24 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBGGmOC6014436 for xorp-cvs@icir.org; Thu, 16 Dec 2004 16:48:24 GMT (envelope-from bms) Date: Thu, 16 Dec 2004 16:48:24 GMT From: Bruce Simpson Message-Id: <200412161648.iBGGmOC6014436@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-16 16:48:23 UTC XORP CVS repository Modified files: fea pa_transaction.cc Log message: Catch up with config.h define name changes, and the IPFW2 stuff which is being committed today. Revision Changes Path 1.2 +10 -6 xorp/fea/pa_transaction.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 00:09:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 16:10:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH0A2ZP030794 for ; Thu, 16 Dec 2004 16:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH0A2pl019163 for ; Thu, 16 Dec 2004 16:10:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH0A18f028228; Thu, 16 Dec 2004 16:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH09f8f028217 for ; Thu, 16 Dec 2004 16:09:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH09fpl019154 for ; Thu, 16 Dec 2004 16:09:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH09fXU019227 for ; Thu, 16 Dec 2004 16:09:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH09fpm019226 for xorp-cvs@icir.org; Fri, 17 Dec 2004 00:09:41 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 00:09:41 GMT From: Pavlin Radoslavov Message-Id: <200412170009.iBH09fpm019226@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 00:09:41 UTC XORP CVS repository Modified files: libxorp mac.cc Log message: Bug fix: if the Mac address is actually an empty string, then Mac::normalized_str() now returns an empty string. Revision Changes Path 1.9 +4 -1 xorp/libxorp/mac.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 00:19:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 16:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH0K1CQ033251 for ; Thu, 16 Dec 2004 16:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH0K1pl019279 for ; Thu, 16 Dec 2004 16:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH0K08f028576; Thu, 16 Dec 2004 16:20:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH0Jc8f028561 for ; Thu, 16 Dec 2004 16:19:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH0Jbpl019274 for ; Thu, 16 Dec 2004 16:19:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH0JbSr019568 for ; Thu, 16 Dec 2004 16:19:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH0Jb6v019567 for xorp-cvs@icir.org; Fri, 17 Dec 2004 00:19:37 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 00:19:37 GMT From: Pavlin Radoslavov Message-Id: <200412170019.iBH0Jb6v019567@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 00:19:37 UTC XORP CVS repository Modified files: etc/templates fea.tp fea click_socket.cc click_socket.hh fticonfig.cc fticonfig.hh fticonfig_entry_set_click.cc ifconfig.cc ifconfig.hh ifconfig_set.hh ifconfig_set_click.cc xrl_target.cc xrl_target.hh xrl/interfaces fea_click.xif fea_click_xif.cc fea_click_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: * Add support to the FEA to run both user-level and kernel-level Click at the same time. * Change the FEA template and the XORP Click related configuration such that now we can specify two external programs to generate the Click configuration: one for user-level Click and another for kernel-level Click. Note that this changes the Click configuration files: OLD: click { ... click-config-generator-file: "foo" } NEW: click { ... kernel-click { ... kernel-click-config-generator-file: "foo1" } user-click { ... user-click-config-generator-file: "foo2" } } Furthermore, enabling both kernel-level Click and user-level Click is permitted. Revision Changes Path 1.29 +13 -7 xorp/etc/templates/fea.tp 1.15 +80 -58 xorp/fea/click_socket.cc 1.14 +95 -28 xorp/fea/click_socket.hh 1.38 +33 -16 xorp/fea/fticonfig.cc 1.31 +19 -9 xorp/fea/fticonfig.hh 1.15 +23 -3 xorp/fea/fticonfig_entry_set_click.cc 1.42 +22 -7 xorp/fea/ifconfig.cc 1.40 +15 -5 xorp/fea/ifconfig.hh 1.29 +43 -13 xorp/fea/ifconfig_set.hh 1.16 +206 -97 xorp/fea/ifconfig_set_click.cc 1.67 +43 -21 xorp/fea/xrl_target.cc 1.49 +23 -11 xorp/fea/xrl_target.hh 1.3 +19 -9 xorp/xrl/interfaces/fea_click.xif 1.5 +65 -33 xorp/xrl/interfaces/fea_click_xif.cc 1.3 +49 -24 xorp/xrl/interfaces/fea_click_xif.hh 1.47 +19 -9 xorp/xrl/targets/fea.xrls 1.51 +60 -30 xorp/xrl/targets/fea_base.cc 1.53 +31 -15 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 00:44:36 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 16:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH0j1PS039481 for ; Thu, 16 Dec 2004 16:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH0j1pl019531 for ; Thu, 16 Dec 2004 16:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH0j18f029618; Thu, 16 Dec 2004 16:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH0ia8f029594 for ; Thu, 16 Dec 2004 16:44:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH0iapl019525 for ; Thu, 16 Dec 2004 16:44:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH0iaw0020183 for ; Thu, 16 Dec 2004 16:44:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH0iaLC020182 for xorp-cvs@icir.org; Fri, 17 Dec 2004 00:44:36 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 00:44:36 GMT From: Pavlin Radoslavov Message-Id: <200412170044.iBH0iaLC020182@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/config xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 00:44:35 UTC XORP CVS repository Modified files: . configure config compiler_flags.m4 dmalloc.m4 mibs configure Log message: Bug fix: replace "AC_DEFUN(FOO, ..." with "AC_DEFUN([FOO], ..." The latter is the right syntax, but so far the autoconf/automake tools have been very liberal about such mistakes. Bug found by: Mark Handley Revision Changes Path 1.2 +7 -7 xorp/config/compiler_flags.m4 1.2 +1 -1 xorp/config/dmalloc.m4 1.136 +3 -1 xorp/configure 1.3 +1 -0 xorp/mibs/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 01:07:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 17:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH181Jl045092 for ; Thu, 16 Dec 2004 17:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH180pl019787 for ; Thu, 16 Dec 2004 17:08:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH1808f000564; Thu, 16 Dec 2004 17:08:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH17Y8f000546 for ; Thu, 16 Dec 2004 17:07:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH17Ypl019783 for ; Thu, 16 Dec 2004 17:07:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH17YtA020511 for ; Thu, 16 Dec 2004 17:07:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH17YsD020510 for xorp-cvs@icir.org; Fri, 17 Dec 2004 01:07:34 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 01:07:34 GMT From: Pavlin Radoslavov Message-Id: <200412170107.iBH17YsD020510@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 01:07:34 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in libproto Makefile.am Makefile.in Log message: Don't add library source files to the list of source files for some of the test programs. Instead, link the test programs against the already built library. Apparently, libtoop-1.5.x doesn't like it if a source file is listed both as a part of a library and within the list of files a binary is built from Bug found by: Mark Handley Revision Changes Path 1.57 +26 -30 xorp/fea/Makefile.am 1.71 +16 -25 xorp/fea/Makefile.in 1.10 +1 -3 xorp/libproto/Makefile.am 1.24 +3 -5 xorp/libproto/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 01:31:04 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 17:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH1W1FC070977 for ; Thu, 16 Dec 2004 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH1W1pl020015 for ; Thu, 16 Dec 2004 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH1W18f001307; Thu, 16 Dec 2004 17:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH1V48f001270 for ; Thu, 16 Dec 2004 17:31:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH1V4pl020006 for ; Thu, 16 Dec 2004 17:31:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH1V4HA020939 for ; Thu, 16 Dec 2004 17:31:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH1V4gO020938 for xorp-cvs@icir.org; Fri, 17 Dec 2004 01:31:04 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 01:31:04 GMT From: Atanu Ghosh Message-Id: <200412170131.iBH1V4gO020938@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/etc/templates xorp/rtrmgr xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 01:31:04 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh parameter.cc parameter.hh peer.cc peer_data.cc test_peer_data.cc xrl_target.cc xrl_target.hh bgp/harness test_peering1.sh test_rib1.sh test_rib_fea1.sh test_routing1.sh test_routing2.sh etc/templates bgp.tp rtrmgr config.boot.sample xrl/interfaces bgp.xif bgp_xif.cc bgp_xif.hh xrl/targets bgp.xrls bgp_base.hh Log message: Add support for removing as well as adding an optional parameter. Now a setting such as "ipv4-multicast" is a variable that can be enabled or disabled. Now that it is possible to remove a parameter it is possible to configure BGP to not send IPv4 Unicast traffic. Previously we would send to a peer whatever it had requested a AFI/SAFI now we send what we and the peer have agreed on. The changes above have uncovered a number of bugs that have also been fixed in this commit. Revision Changes Path 1.46 +21 -20 xorp/bgp/bgp.cc 1.37 +5 -3 xorp/bgp/bgp.hh 1.29 +5 -5 xorp/bgp/harness/test_peering1.sh 1.17 +3 -3 xorp/bgp/harness/test_rib1.sh 1.12 +4 -4 xorp/bgp/harness/test_rib_fea1.sh 1.16 +4 -4 xorp/bgp/harness/test_routing1.sh 1.12 +4 -4 xorp/bgp/harness/test_routing2.sh 1.23 +5 -3 xorp/bgp/parameter.cc 1.16 +8 -4 xorp/bgp/parameter.hh 1.84 +3 -2 xorp/bgp/peer.cc 1.17 +44 -21 xorp/bgp/peer_data.cc 1.7 +4 -1 xorp/bgp/test_peer_data.cc 1.33 +8 -5 xorp/bgp/xrl_target.cc 1.27 +3 -2 xorp/bgp/xrl_target.hh 1.36 +32 -11 xorp/etc/templates/bgp.tp 1.19 +4 -4 xorp/rtrmgr/config.boot.sample 1.21 +3 -2 xorp/xrl/interfaces/bgp.xif 1.32 +3 -1 xorp/xrl/interfaces/bgp_xif.cc 1.31 +2 -1 xorp/xrl/interfaces/bgp_xif.hh 1.34 +2 -2 xorp/xrl/targets/bgp.xrls 1.42 +3 -2 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 02:37:23 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 18:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH2c1QC069637 for ; Thu, 16 Dec 2004 18:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH2c1pl020637 for ; Thu, 16 Dec 2004 18:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH2c08f003221; Thu, 16 Dec 2004 18:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH2bN8f003196 for ; Thu, 16 Dec 2004 18:37:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH2bNpl020630 for ; Thu, 16 Dec 2004 18:37:23 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH2bNrc021671 for ; Thu, 16 Dec 2004 18:37:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH2bNBG021670 for xorp-cvs@icir.org; Fri, 17 Dec 2004 02:37:23 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 02:37:23 GMT From: Atanu Ghosh Message-Id: <200412170237.iBH2bNBG021670@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 02:37:23 UTC XORP CVS repository Modified files: xrl/targets bgp_base.cc bgp_base.hh Log message: Missed in last commit. Revision Changes Path 1.37 +5 -4 xorp/xrl/targets/bgp_base.cc 1.43 +1 -1 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 04:45:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 20:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH4k1jB094496 for ; Thu, 16 Dec 2004 20:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH4k1pl021754 for ; Thu, 16 Dec 2004 20:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH4k08f006502; Thu, 16 Dec 2004 20:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH4jN8f006455 for ; Thu, 16 Dec 2004 20:45:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH4jMpl021747 for ; Thu, 16 Dec 2004 20:45:22 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH4jMBr022752 for ; Thu, 16 Dec 2004 20:45:22 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH4jM1s022751 for xorp-cvs@icir.org; Fri, 17 Dec 2004 04:45:22 GMT (envelope-from bms) Date: Fri, 17 Dec 2004 04:45:22 GMT From: Bruce Simpson Message-Id: <200412170445.iBH4jM1s022751@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2004-12-17 04:45:22 UTC XORP CVS repository Modified files: fea Makefile.am Makefile.in pa_backend.hh pa_backend_dummy.cc pa_backend_dummy.hh pa_transaction.cc Added files: fea pa_backend_ipfw2.cc pa_backend_ipfw2.hh Log message: Merge IPFW2 backend support to the tree. Revision Changes Path 1.58 +3 -1 xorp/fea/Makefile.am 1.72 +7 -5 xorp/fea/Makefile.in 1.2 +3 -3 xorp/fea/pa_backend.hh 1.2 +2 -2 xorp/fea/pa_backend_dummy.cc 1.2 +3 -3 xorp/fea/pa_backend_dummy.hh 1.1 +599 -0 xorp/fea/pa_backend_ipfw2.cc (new) 1.1 +178 -0 xorp/fea/pa_backend_ipfw2.hh (new) 1.3 +4 -3 xorp/fea/pa_transaction.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:14 2005 Subject: No subject Fri Dec 17 04:55:53 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 20:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH4u1sC096455 for ; Thu, 16 Dec 2004 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH4u1pl021857 for ; Thu, 16 Dec 2004 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH4u18f006713; Thu, 16 Dec 2004 20:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH4tr8f006707 for ; Thu, 16 Dec 2004 20:55:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH4trpl021854 for ; Thu, 16 Dec 2004 20:55:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH4trHa022883 for ; Thu, 16 Dec 2004 20:55:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH4trC3022882 for xorp-cvs@icir.org; Fri, 17 Dec 2004 04:55:53 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 04:55:53 GMT From: Pavlin Radoslavov Message-Id: <200412170455.iBH4trC3022882@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 04:55:53 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: * Allow that both kernel-level and user-level click can be enabled. * Add a note that if both kernel-level and user-level Click are enabled (which is allowed), this script will print the kernel-level Click configuration. Revision Changes Path 1.8 +10 -5 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 05:47:08 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 21:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH5m1e9006788 for ; Thu, 16 Dec 2004 21:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5m1pl022398 for ; Thu, 16 Dec 2004 21:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5m18f007930; Thu, 16 Dec 2004 21:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5l98f007912 for ; Thu, 16 Dec 2004 21:47:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5l8pl022388 for ; Thu, 16 Dec 2004 21:47:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH5l8P7023652 for ; Thu, 16 Dec 2004 21:47:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH5l8TK023651 for xorp-cvs@icir.org; Fri, 17 Dec 2004 05:47:08 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 05:47:08 GMT From: Pavlin Radoslavov Message-Id: <200412170547.iBH5l8TK023651@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 05:47:08 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh Log message: * Bug fix in ClickSocket::stop() First we should stop user-level Click, and then kernel-level Click. Otherwise, the user-level Click process may block the unmounting of the kernel-level Click file system. The reason for this blocking is unknown... * Few variables renaming Revision Changes Path 1.16 +22 -17 xorp/fea/click_socket.cc 1.15 +5 -5 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 05:48:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 21:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH5n1Go007001 for ; Thu, 16 Dec 2004 21:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5n1pl022418 for ; Thu, 16 Dec 2004 21:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5n18f007972; Thu, 16 Dec 2004 21:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5m88f007945 for ; Thu, 16 Dec 2004 21:48:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5m8pl022402 for ; Thu, 16 Dec 2004 21:48:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH5m7WJ023708 for ; Thu, 16 Dec 2004 21:48:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH5m7lc023707 for xorp-cvs@icir.org; Fri, 17 Dec 2004 05:48:07 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 05:48:07 GMT From: Pavlin Radoslavov Message-Id: <200412170548.iBH5m7lc023707@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 05:48:07 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc Log message: Few variables renaming (for consistency with the rest of the code). Revision Changes Path 1.16 +9 -9 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 05:49:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 21:50:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH5o0nW007206 for ; Thu, 16 Dec 2004 21:50:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5o0pl022440 for ; Thu, 16 Dec 2004 21:50:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5o08f008035; Thu, 16 Dec 2004 21:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH5nh8f008026 for ; Thu, 16 Dec 2004 21:49:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH5nhpl022430 for ; Thu, 16 Dec 2004 21:49:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH5nhb1023777 for ; Thu, 16 Dec 2004 21:49:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH5nhqQ023776 for xorp-cvs@icir.org; Fri, 17 Dec 2004 05:49:43 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 05:49:43 GMT From: Pavlin Radoslavov Message-Id: <200412170549.iBH5nhqQ023776@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 05:49:43 UTC XORP CVS repository Modified files: fea ifconfig_set.hh ifconfig_set_click.cc Log message: * Bug fix: if both kernel-level Click and user-level Click are enabled, then configure both of them properly. * Few variables renaming (for consistency with the rest of the code). Revision Changes Path 1.30 +3 -1 xorp/fea/ifconfig_set.hh 1.17 +28 -17 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 06:03:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 22:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH6415f010034 for ; Thu, 16 Dec 2004 22:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH640pl022627 for ; Thu, 16 Dec 2004 22:04:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH6408f008363; Thu, 16 Dec 2004 22:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH63J8f008346 for ; Thu, 16 Dec 2004 22:03:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH63Jpl022617 for ; Thu, 16 Dec 2004 22:03:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH63JhR023953 for ; Thu, 16 Dec 2004 22:03:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH63JHU023952 for xorp-cvs@icir.org; Fri, 17 Dec 2004 06:03:19 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 06:03:19 GMT From: Pavlin Radoslavov Message-Id: <200412170603.iBH63JHU023952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 06:03:19 UTC XORP CVS repository Modified files: rtrmgr config.boot.sample Log message: Add sample configuration for Click FEA. Revision Changes Path 1.20 +38 -1 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 06:05:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 16 Dec 2004 22:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH661kB010449 for ; Thu, 16 Dec 2004 22:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH661pl022666 for ; Thu, 16 Dec 2004 22:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH6618f008410; Thu, 16 Dec 2004 22:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH65p8f008403 for ; Thu, 16 Dec 2004 22:05:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH65ppl022659 for ; Thu, 16 Dec 2004 22:05:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH65pwO024053 for ; Thu, 16 Dec 2004 22:05:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH65pOS024052 for xorp-cvs@icir.org; Fri, 17 Dec 2004 06:05:51 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 06:05:51 GMT From: Pavlin Radoslavov Message-Id: <200412170605.iBH65pOS024052@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 06:05:51 UTC XORP CVS repository Modified files: fea click_socket.cc Log message: Add an extra comment that didn't make it with the previous commit. Revision Changes Path 1.17 +3 -2 xorp/fea/click_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 08:35:59 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 00:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH8a1Q5048576 for ; Fri, 17 Dec 2004 00:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8a1pl024479 for ; Fri, 17 Dec 2004 00:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8a18f012795; Fri, 17 Dec 2004 00:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8a08f012788 for ; Fri, 17 Dec 2004 00:36:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8Zxpl024477 for ; Fri, 17 Dec 2004 00:35:59 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH8Zxk3025529 for ; Fri, 17 Dec 2004 00:35:59 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH8ZxxN025528 for xorp-cvs@icir.org; Fri, 17 Dec 2004 08:35:59 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 08:35:59 GMT From: Atanu Ghosh Message-Id: <200412170835.iBH8ZxxN025528@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 08:35:59 UTC XORP CVS repository Modified files: bgp peer.cc profile_vars.cc profile_vars.hh Log message: Add some XLOG_TRACE macros for all input packets, temporarily enable them using the profile machinery. Revision Changes Path 1.85 +9 -1 xorp/bgp/peer.cc 1.8 +3 -1 xorp/bgp/profile_vars.cc 1.5 +3 -1 xorp/bgp/profile_vars.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 08:37:33 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 00:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH8c17a049003 for ; Fri, 17 Dec 2004 00:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8c1pl024493 for ; Fri, 17 Dec 2004 00:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8c18f012893; Fri, 17 Dec 2004 00:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8bY8f012854 for ; Fri, 17 Dec 2004 00:37:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8bYpl024491 for ; Fri, 17 Dec 2004 00:37:34 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH8bXQn025634 for ; Fri, 17 Dec 2004 00:37:33 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH8bXHg025633 for xorp-cvs@icir.org; Fri, 17 Dec 2004 08:37:33 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 08:37:33 GMT From: Atanu Ghosh Message-Id: <200412170837.iBH8bXHg025633@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 08:37:33 UTC XORP CVS repository Modified files: bgp xrl_shell_funcs.sh Log message: The set_parameter call now takes a new toggle argument. Failed to commit this earlier. Revision Changes Path 1.10 +2 -2 xorp/bgp/xrl_shell_funcs.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 08:43:07 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 00:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH8i1pd051286 for ; Fri, 17 Dec 2004 00:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8i1pl024549 for ; Fri, 17 Dec 2004 00:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8i08f013034; Fri, 17 Dec 2004 00:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH8h78f013017 for ; Fri, 17 Dec 2004 00:43:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH8h7pl024543 for ; Fri, 17 Dec 2004 00:43:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH8h75l025767 for ; Fri, 17 Dec 2004 00:43:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH8h7pR025766 for xorp-cvs@icir.org; Fri, 17 Dec 2004 08:43:07 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 08:43:07 GMT From: Pavlin Radoslavov Message-Id: <200412170843.iBH8h7pR025766@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 08:43:07 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Log message: Fix the ordering of the source files so now they are in alphabetical order. Revision Changes Path 1.43 +7 -7 xorp/rtrmgr/Makefile.am 1.54 +8 -9 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 09:19:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 01:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH9K1oQ062772 for ; Fri, 17 Dec 2004 01:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9K1pl024941 for ; Fri, 17 Dec 2004 01:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9K08f014090; Fri, 17 Dec 2004 01:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9JI8f014079 for ; Fri, 17 Dec 2004 01:19:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9JIpl024934 for ; Fri, 17 Dec 2004 01:19:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH9JHhP026467 for ; Fri, 17 Dec 2004 01:19:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH9JHSb026466 for xorp-cvs@icir.org; Fri, 17 Dec 2004 09:19:17 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 09:19:17 GMT From: Pavlin Radoslavov Message-Id: <200412170919.iBH9JHSb026466@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/click_elements Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 09:19:17 UTC XORP CVS repository Removed files: fea/click_elements .cvsignore Makefile.in README acclick.m4 aclocal.m4 config.h.in configure.in forward1.cc forward1.hh forward2.cc forward2.hh install-sh ipv4address.hh kernelversion.c missing mkinstalldirs push_files repeat.conf rtable1.cc rtable1.hh rtable2.cc run trie.cc xorp.click Log message: Remove old Click FEA related stuff. Approved by: Atanu Revision Changes Path 1.2 +0 -26 xorp/fea/click_elements/.cvsignore (dead) 1.2 +0 -221 xorp/fea/click_elements/Makefile.in (dead) 1.2 +0 -29 xorp/fea/click_elements/README (dead) 1.3 +0 -520 xorp/fea/click_elements/acclick.m4 (dead) 1.3 +0 -520 xorp/fea/click_elements/aclocal.m4 (dead) 1.2 +0 -7 xorp/fea/click_elements/config.h.in (dead) 1.2 +0 -187 xorp/fea/click_elements/configure.in (dead) 1.4 +0 -142 xorp/fea/click_elements/forward1.cc (dead) 1.5 +0 -41 xorp/fea/click_elements/forward1.hh (dead) 1.4 +0 -610 xorp/fea/click_elements/forward2.cc (dead) 1.4 +0 -94 xorp/fea/click_elements/forward2.hh (dead) 1.2 +0 -251 xorp/fea/click_elements/install-sh (dead) 1.4 +0 -199 xorp/fea/click_elements/ipv4address.hh (dead) 1.2 +0 -29 xorp/fea/click_elements/kernelversion.c (dead) 1.2 +0 -216 xorp/fea/click_elements/missing (dead) 1.2 +0 -40 xorp/fea/click_elements/mkinstalldirs (dead) 1.2 +0 -17 xorp/fea/click_elements/push_files (dead) 1.2 +0 -16 xorp/fea/click_elements/repeat.conf (dead) 1.4 +0 -116 xorp/fea/click_elements/rtable1.cc (dead) 1.4 +0 -49 xorp/fea/click_elements/rtable1.hh (dead) 1.4 +0 -236 xorp/fea/click_elements/rtable2.cc (dead) 1.2 +0 -3 xorp/fea/click_elements/run (dead) 1.4 +0 -361 xorp/fea/click_elements/trie.cc (dead) 1.2 +0 -33 xorp/fea/click_elements/xorp.click (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 09:20:03 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 01:21:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH9L23J063093 for ; Fri, 17 Dec 2004 01:21:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9L1pl024971 for ; Fri, 17 Dec 2004 01:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9L18f014129; Fri, 17 Dec 2004 01:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9K38f014103 for ; Fri, 17 Dec 2004 01:20:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9K3pl024943 for ; Fri, 17 Dec 2004 01:20:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH9K3cK026521 for ; Fri, 17 Dec 2004 01:20:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH9K3rW026520 for xorp-cvs@icir.org; Fri, 17 Dec 2004 09:20:03 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 09:20:03 GMT From: Pavlin Radoslavov Message-Id: <200412170920.iBH9K3rW026520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/click_elements Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 09:20:03 UTC XORP CVS repository Removed files: fea/click_elements rtable2.hh Log message: Remove old Click/FEA stuff. Approved by: Atanu Revision Changes Path 1.4 +0 -70 xorp/fea/click_elements/rtable2.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 09:20:43 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 01:21:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH9L3vF063108 for ; Fri, 17 Dec 2004 01:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9L3pl024973 for ; Fri, 17 Dec 2004 01:21:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9L28f014140; Fri, 17 Dec 2004 01:21:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9Ki8f014118 for ; Fri, 17 Dec 2004 01:20:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9Khpl024969 for ; Fri, 17 Dec 2004 01:20:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH9Kh8K026603 for ; Fri, 17 Dec 2004 01:20:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH9Khvk026602 for xorp-cvs@icir.org; Fri, 17 Dec 2004 09:20:43 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 09:20:43 GMT From: Pavlin Radoslavov Message-Id: <200412170920.iBH9Khvk026602@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 09:20:43 UTC XORP CVS repository Removed files: fea click.cc click.hh click_glue.hh fea_click.cc fti_click.cc fti_click.hh ifconfig_click.cc ifconfig_click.hh Log message: Remove old Click FEA stuff. Approved by: Atanu Revision Changes Path 1.5 +0 -300 xorp/fea/click.cc (dead) 1.5 +0 -49 xorp/fea/click.hh (dead) 1.4 +0 -53 xorp/fea/click_glue.hh (dead) 1.12 +0 -167 xorp/fea/fea_click.cc (dead) 1.8 +0 -337 xorp/fea/fti_click.cc (dead) 1.5 +0 -76 xorp/fea/fti_click.hh (dead) 1.7 +0 -682 xorp/fea/ifconfig_click.cc (dead) 1.5 +0 -216 xorp/fea/ifconfig_click.hh (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 09:49:15 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 01:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBH9o1Pj074831 for ; Fri, 17 Dec 2004 01:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9o1pl025295 for ; Fri, 17 Dec 2004 01:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9o08f014989; Fri, 17 Dec 2004 01:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBH9nG8f014972 for ; Fri, 17 Dec 2004 01:49:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBH9nGpl025284 for ; Fri, 17 Dec 2004 01:49:16 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBH9nFBN027074 for ; Fri, 17 Dec 2004 01:49:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBH9nFFT027073 for xorp-cvs@icir.org; Fri, 17 Dec 2004 09:49:15 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 09:49:15 GMT From: Atanu Ghosh Message-Id: <200412170949.iBH9nFFT027073@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 09:49:15 UTC XORP CVS repository Modified files: bgp bgp.cc bgp.hh xrl_target.cc xrl_target.hh xrl/interfaces bgp.xif bgp_xif.cc bgp_xif.hh xrl/targets bgp.xrls bgp_base.cc bgp_base.hh Log message: Set a IPv6 nexthop. Revision Changes Path 1.47 +29 -1 xorp/bgp/bgp.cc 1.38 +21 -1 xorp/bgp/bgp.hh 1.34 +43 -1 xorp/bgp/xrl_target.cc 1.28 +18 -1 xorp/bgp/xrl_target.hh 1.22 +35 -1 xorp/xrl/interfaces/bgp.xif 1.33 +87 -1 xorp/xrl/interfaces/bgp_xif.cc 1.32 +50 -1 xorp/xrl/interfaces/bgp_xif.hh 1.35 +15 -1 xorp/xrl/targets/bgp.xrls 1.38 +82 -1 xorp/xrl/targets/bgp_base.cc 1.44 +36 -1 xorp/xrl/targets/bgp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 10:27:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 02:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHAS1Vd083935 for ; Fri, 17 Dec 2004 02:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAS1pl025998 for ; Fri, 17 Dec 2004 02:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAS18f016072; Fri, 17 Dec 2004 02:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHARq8f016062 for ; Fri, 17 Dec 2004 02:27:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHARqpl025995 for ; Fri, 17 Dec 2004 02:27:52 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHARqWI027620 for ; Fri, 17 Dec 2004 02:27:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHARqCT027619 for xorp-cvs@icir.org; Fri, 17 Dec 2004 10:27:52 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 10:27:52 GMT From: Atanu Ghosh Message-Id: <200412171027.iBHARqCT027619@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 10:27:52 UTC XORP CVS repository Modified files: etc/templates bgp.tp Log message: IPv6 nexthop. Revision Changes Path 1.37 +11 -2 xorp/etc/templates/bgp.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 10:40:19 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 02:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHAf1KZ086590 for ; Fri, 17 Dec 2004 02:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAf1pl026165 for ; Fri, 17 Dec 2004 02:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAf18f016385; Fri, 17 Dec 2004 02:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAeJ8f016366 for ; Fri, 17 Dec 2004 02:40:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAeJpl026148 for ; Fri, 17 Dec 2004 02:40:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHAeJf0027859 for ; Fri, 17 Dec 2004 02:40:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHAeJQk027858 for xorp-cvs@icir.org; Fri, 17 Dec 2004 10:40:19 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 10:40:19 GMT From: Pavlin Radoslavov Message-Id: <200412171040.iBHAeJQk027858@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 10:40:19 UTC XORP CVS repository Modified files: fea ifconfig_set.hh Log message: Make method IfConfigSetClick::click_config_generator_done() public. This fixes a compilation error with gcc-2.9x Revision Changes Path 1.31 +18 -7 xorp/fea/ifconfig_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 10:46:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 02:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHAl1pV087884 for ; Fri, 17 Dec 2004 02:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAl1pl026222 for ; Fri, 17 Dec 2004 02:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAl18f016520; Fri, 17 Dec 2004 02:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAkw8f016512 for ; Fri, 17 Dec 2004 02:46:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAkwpl026219 for ; Fri, 17 Dec 2004 02:46:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHAkwXZ027968 for ; Fri, 17 Dec 2004 02:46:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHAkw8s027967 for xorp-cvs@icir.org; Fri, 17 Dec 2004 10:46:58 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 10:46:58 GMT From: Pavlin Radoslavov Message-Id: <200412171046.iBHAkw8s027967@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 10:46:58 UTC XORP CVS repository Modified files: fea ifconfig_set.hh Log message: Declare IfConfigSetClick::ClickConfigGenerator as a private class, because it is defined as private. This fixes a compilation error on gcc-3.x Revision Changes Path 1.32 +3 -2 xorp/fea/ifconfig_set.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:15 2005 Subject: No subject Fri Dec 17 10:59:25 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 03:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHB017A090499 for ; Fri, 17 Dec 2004 03:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHB01pl026326 for ; Fri, 17 Dec 2004 03:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHB018f016811; Fri, 17 Dec 2004 03:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHAxP8f016802 for ; Fri, 17 Dec 2004 02:59:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHAxPpl026315 for ; Fri, 17 Dec 2004 02:59:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHAxPvO028142 for ; Fri, 17 Dec 2004 02:59:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHAxPig028141 for xorp-cvs@icir.org; Fri, 17 Dec 2004 10:59:25 GMT (envelope-from atanu) Date: Fri, 17 Dec 2004 10:59:25 GMT From: Atanu Ghosh Message-Id: <200412171059.iBHAxPig028141@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-17 10:59:25 UTC XORP CVS repository Modified files: etc/templates misc.cmds Log message: When asked to run the traceroute command try running it as opposed to ping. Revision Changes Path 1.2 +2 -2 xorp/etc/templates/misc.cmds _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Fri Dec 17 20:30:47 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 12:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHKV1Rn009390 for ; Fri, 17 Dec 2004 12:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHKV1pl033841 for ; Fri, 17 Dec 2004 12:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHKV18f005396; Fri, 17 Dec 2004 12:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHKUl8f005383 for ; Fri, 17 Dec 2004 12:30:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHKUlpl033839 for ; Fri, 17 Dec 2004 12:30:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHKUlia054938 for ; Fri, 17 Dec 2004 12:30:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHKUlHL054937 for xorp-cvs@icir.org; Fri, 17 Dec 2004 20:30:47 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 20:30:47 GMT From: Pavlin Radoslavov Message-Id: <200412172030.iBHKUlHL054937@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 20:30:47 UTC XORP CVS repository Modified files: fea mfea_node.cc mld6igmp mld6igmp_node.cc pim pim_node.cc Log message: On startup, the default is to disable the XLOG_TRACE() log messages. Requested by: Atanu Revision Changes Path 1.40 +2 -2 xorp/fea/mfea_node.cc 1.33 +2 -2 xorp/mld6igmp/mld6igmp_node.cc 1.54 +2 -2 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Fri Dec 17 20:42:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 12:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBHKh0Xx012403 for ; Fri, 17 Dec 2004 12:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHKh0pl033973 for ; Fri, 17 Dec 2004 12:43:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHKh08f005815; Fri, 17 Dec 2004 12:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBHKgM8f005798 for ; Fri, 17 Dec 2004 12:42:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBHKgMpl033969 for ; Fri, 17 Dec 2004 12:42:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBHKgMh5055125 for ; Fri, 17 Dec 2004 12:42:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBHKgMxA055124 for xorp-cvs@icir.org; Fri, 17 Dec 2004 20:42:22 GMT (envelope-from pavlin) Date: Fri, 17 Dec 2004 20:42:22 GMT From: Pavlin Radoslavov Message-Id: <200412172042.iBHKgMxA055124@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-17 20:42:22 UTC XORP CVS repository Modified files: fea netlink_socket.cc routing_socket.cc Log message: Change the return code for NetlinkSocket::stop() and RoutingSocket::stop() when the system doesn't support them. Even if the system doesn not support netlink/routing sockets, we still allow to call the no-op stop() method and return success. This is needed to cover the case when a Netlink/RoutingSocket is allocated but not used. Revision Changes Path 1.27 +9 -3 xorp/fea/netlink_socket.cc 1.19 +9 -3 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 02:01:45 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 18:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI221r4036926 for ; Fri, 17 Dec 2004 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI221pl037247 for ; Fri, 17 Dec 2004 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI2218f015633; Fri, 17 Dec 2004 18:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI21j8f015617 for ; Fri, 17 Dec 2004 18:01:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI21jpl037240 for ; Fri, 17 Dec 2004 18:01:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI21j9O058102 for ; Fri, 17 Dec 2004 18:01:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI21jIU058101 for xorp-cvs@icir.org; Sat, 18 Dec 2004 02:01:45 GMT (envelope-from pavlin) Date: Sat, 18 Dec 2004 02:01:45 GMT From: Pavlin Radoslavov Message-Id: <200412180201.iBI21jIU058101@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-18 02:01:45 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc Log message: If the route to add/delete is a directly connected route, then don't specify a gateway address to the route added to Click. Apparently, the directly-connected routes received from RIB have the IP address of the interface as the next-hop router address, and Click doesn't like this. Revision Changes Path 1.17 +23 -9 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 02:03:21 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 18:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI241MY037423 for ; Fri, 17 Dec 2004 18:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI241pl037266 for ; Fri, 17 Dec 2004 18:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI2418f015694; Fri, 17 Dec 2004 18:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI23M8f015680 for ; Fri, 17 Dec 2004 18:03:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI23Mpl037259 for ; Fri, 17 Dec 2004 18:03:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI23L77058163 for ; Fri, 17 Dec 2004 18:03:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI23LwG058162 for xorp-cvs@icir.org; Sat, 18 Dec 2004 02:03:21 GMT (envelope-from pavlin) Date: Sat, 18 Dec 2004 02:03:21 GMT From: Pavlin Radoslavov Message-Id: <200412180203.iBI23LwG058162@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-18 02:03:21 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: Bug fix: add the host-specific routes for each of the IP addresses of the router to the Click lookup table. Obtained from: Eddie Kohler Revision Changes Path 1.9 +12 -3 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 02:08:12 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 18:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI291rP038634 for ; Fri, 17 Dec 2004 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI291pl037322 for ; Fri, 17 Dec 2004 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI2908f015796; Fri, 17 Dec 2004 18:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI28D8f015777 for ; Fri, 17 Dec 2004 18:08:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI28Cpl037316 for ; Fri, 17 Dec 2004 18:08:12 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI28CUD058287 for ; Fri, 17 Dec 2004 18:08:12 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI28CfM058286 for xorp-cvs@icir.org; Sat, 18 Dec 2004 02:08:12 GMT (envelope-from mjh) Date: Sat, 18 Dec 2004 02:08:12 GMT From: Mark Handley Message-Id: <200412180208.iBI28CfM058286@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-18 02:08:12 UTC XORP CVS repository Modified files: rtrmgr cli.cc conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh master_conf_tree.cc master_conf_tree.hh master_conf_tree_node.cc master_conf_tree_node.hh slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh Log message: Continue last week's refactoring - now we never create a base ConfigTree or ConfigTreeNode, but always a master or slave version. Revert Pavlin's workaround, and move master-specific state back to MasterConfigTreeNode. Revision Changes Path 1.59 +10 -9 xorp/rtrmgr/cli.cc 1.24 +52 -29 xorp/rtrmgr/conf_tree.cc 1.17 +13 -5 xorp/rtrmgr/conf_tree.hh 1.57 +15 -35 xorp/rtrmgr/conf_tree_node.cc 1.29 +10 -17 xorp/rtrmgr/conf_tree_node.hh 1.42 +84 -35 xorp/rtrmgr/master_conf_tree.cc 1.25 +31 -10 xorp/rtrmgr/master_conf_tree.hh 1.6 +35 -16 xorp/rtrmgr/master_conf_tree_node.cc 1.6 +7 -15 xorp/rtrmgr/master_conf_tree_node.hh 1.24 +33 -4 xorp/rtrmgr/slave_conf_tree.cc 1.15 +21 -8 xorp/rtrmgr/slave_conf_tree.hh 1.16 +50 -7 xorp/rtrmgr/slave_conf_tree_node.cc 1.9 +9 -1 xorp/rtrmgr/slave_conf_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 02:47:26 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 18:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI2m1um059286 for ; Fri, 17 Dec 2004 18:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI2m1pl037681 for ; Fri, 17 Dec 2004 18:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI2m18f016608; Fri, 17 Dec 2004 18:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI2lQ8f016591 for ; Fri, 17 Dec 2004 18:47:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI2lQpl037679 for ; Fri, 17 Dec 2004 18:47:26 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI2lQ73059080 for ; Fri, 17 Dec 2004 18:47:26 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI2lQED059079 for xorp-cvs@icir.org; Sat, 18 Dec 2004 02:47:26 GMT (envelope-from atanu) Date: Sat, 18 Dec 2004 02:47:26 GMT From: Atanu Ghosh Message-Id: <200412180247.iBI2lQED059079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-18 02:47:26 UTC XORP CVS repository Modified files: bgp aspath.cc aspath.hh dump_iterators.cc internal_message.cc packet.hh Log message: Cast "%d" and "%u" arguments to printf to the respective types with magic macros. Revision Changes Path 1.23 +3 -3 xorp/bgp/aspath.cc 1.17 +3 -3 xorp/bgp/aspath.hh 1.25 +12 -9 xorp/bgp/dump_iterators.cc 1.7 +2 -2 xorp/bgp/internal_message.cc 1.29 +3 -3 xorp/bgp/packet.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 03:21:48 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 19:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI3M1Vg074610 for ; Fri, 17 Dec 2004 19:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3M1pl037984 for ; Fri, 17 Dec 2004 19:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3M18f017308; Fri, 17 Dec 2004 19:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3Lm8f017298 for ; Fri, 17 Dec 2004 19:21:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3Lmpl037982 for ; Fri, 17 Dec 2004 19:21:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI3LmP5059674 for ; Fri, 17 Dec 2004 19:21:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI3LmMK059673 for xorp-cvs@icir.org; Sat, 18 Dec 2004 03:21:48 GMT (envelope-from atanu) Date: Sat, 18 Dec 2004 03:21:48 GMT From: Atanu Ghosh Message-Id: <200412180321.iBI3LmMK059673@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-18 03:21:48 UTC XORP CVS repository Modified files: bgp parameter.cc parameter.hh peer_data.cc Log message: Have parameters decide for themselves if they should be sent with open packets. This is specifically for the multiprotocol capability AFI = IPv4 and SAFI = Unicast. Internally the code add ones of these to the parameters that should be sent. This allows it to be used in the negotiation computation. We don't however really want to send it. Revision Changes Path 1.24 +5 -5 xorp/bgp/parameter.cc 1.17 +17 -7 xorp/bgp/parameter.hh 1.18 +2 -5 xorp/bgp/peer_data.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 03:24:37 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 19:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI3P1hN075753 for ; Fri, 17 Dec 2004 19:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3P1pl038004 for ; Fri, 17 Dec 2004 19:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3P08f017366; Fri, 17 Dec 2004 19:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3Oc8f017351 for ; Fri, 17 Dec 2004 19:24:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3Ocpl037997 for ; Fri, 17 Dec 2004 19:24:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI3Obbg059749 for ; Fri, 17 Dec 2004 19:24:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI3Obma059748 for xorp-cvs@icir.org; Sat, 18 Dec 2004 03:24:37 GMT (envelope-from pavlin) Date: Sat, 18 Dec 2004 03:24:37 GMT From: Pavlin Radoslavov Message-Id: <200412180324.iBI3Obma059748@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2004-12-18 03:24:37 UTC XORP CVS repository Modified files: libxipc Makefile.am Makefile.in finder.cc finder_client.cc finder_client.hh finder_client_xrl_target.hh finder_xrl_queue.hh finder_xrl_target.hh test_finder_events.cc Log message: Get rid of the symbolic links created to some of the auto-generated XRL files, because they create various problems. Now all of the autogenerated source files that are needed by libxipc are referenced by their full name (by including the source directory path as prefix). Note that this fixes the compilation dependency problem on gcc-29x, but occasionally gmake may still attemt to recompile some of the auto-generated XRL files that haven't been changed since the previous compilation. Approved by: Atanu Revision Changes Path 1.42 +33 -107 xorp/libxipc/Makefile.am 1.60 +209 -74 xorp/libxipc/Makefile.in 1.18 +2 -2 xorp/libxipc/finder.cc 1.27 +2 -2 xorp/libxipc/finder_client.cc 1.17 +2 -2 xorp/libxipc/finder_client.hh 1.9 +2 -2 xorp/libxipc/finder_client_xrl_target.hh 1.10 +2 -2 xorp/libxipc/finder_xrl_queue.hh 1.14 +2 -2 xorp/libxipc/finder_xrl_target.hh 1.14 +3 -3 xorp/libxipc/test_finder_events.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 03:37:58 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 19:38:06 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI3c63t083897 for ; Fri, 17 Dec 2004 19:38:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3c1pl038138 for ; Fri, 17 Dec 2004 19:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3c18f017702; Fri, 17 Dec 2004 19:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3bx8f017695 for ; Fri, 17 Dec 2004 19:37:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3bxpl038136 for ; Fri, 17 Dec 2004 19:37:59 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI3bwD5060098 for ; Fri, 17 Dec 2004 19:37:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI3bwvr060097 for xorp-cvs@icir.org; Sat, 18 Dec 2004 03:37:58 GMT (envelope-from atanu) Date: Sat, 18 Dec 2004 03:37:58 GMT From: Atanu Ghosh Message-Id: <200412180337.iBI3bwvr060097@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-18 03:37:58 UTC XORP CVS repository Modified files: bgp packet.hh Log message: Correct the previous cast should have been unsigned not signed. Revision Changes Path 1.30 +2 -2 xorp/bgp/packet.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 03:40:30 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 19:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI3f1Gg084611 for ; Fri, 17 Dec 2004 19:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3f1pl038173 for ; Fri, 17 Dec 2004 19:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3f18f017773; Fri, 17 Dec 2004 19:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3eV8f017761 for ; Fri, 17 Dec 2004 19:40:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3eUpl038170 for ; Fri, 17 Dec 2004 19:40:30 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI3eU0j060218 for ; Fri, 17 Dec 2004 19:40:30 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI3eUSs060217 for xorp-cvs@icir.org; Sat, 18 Dec 2004 03:40:30 GMT (envelope-from atanu) Date: Sat, 18 Dec 2004 03:40:30 GMT From: Atanu Ghosh Message-Id: <200412180340.iBI3eUSs060217@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-18 03:40:30 UTC XORP CVS repository Modified files: libxorp asnum.hh asyncio.cc buffered_asyncio.cc exceptions.hh ipnet.hh run_command.cc selector.cc transaction.cc Log message: Cast "%d" and "%u" arguments to printf to the respective types with magic macros. Revision Changes Path 1.9 +4 -3 xorp/libxorp/asnum.hh 1.13 +3 -4 xorp/libxorp/asyncio.cc 1.2 +7 -7 xorp/libxorp/buffered_asyncio.cc 1.5 +3 -2 xorp/libxorp/exceptions.hh 1.12 +2 -2 xorp/libxorp/ipnet.hh 1.3 +2 -2 xorp/libxorp/run_command.cc 1.22 +2 -2 xorp/libxorp/selector.cc 1.5 +2 -2 xorp/libxorp/transaction.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Sat Dec 18 03:48:52 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 17 Dec 2004 19:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBI3n14A086503 for ; Fri, 17 Dec 2004 19:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3n1pl038226 for ; Fri, 17 Dec 2004 19:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3n18f017926; Fri, 17 Dec 2004 19:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBI3mr8f017918 for ; Fri, 17 Dec 2004 19:48:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBI3mrpl038224 for ; Fri, 17 Dec 2004 19:48:53 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBI3mqwI060435 for ; Fri, 17 Dec 2004 19:48:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBI3mqkb060434 for xorp-cvs@icir.org; Sat, 18 Dec 2004 03:48:52 GMT (envelope-from atanu) Date: Sat, 18 Dec 2004 03:48:52 GMT From: Atanu Ghosh Message-Id: <200412180348.iBI3mqkb060434@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-18 03:48:52 UTC XORP CVS repository Modified files: libxipc finder.cc finder_tcp_messenger.cc xrl_parser.cc xrl_pf_inproc.cc xrl_pf_stcp.cc xrl_pf_sudp.cc Log message: Cast "%d" and "%u" arguments to printf to the respective types with magic macros. Revision Changes Path 1.19 +2 -2 xorp/libxipc/finder.cc 1.21 +4 -3 xorp/libxipc/finder_tcp_messenger.cc 1.9 +3 -3 xorp/libxipc/xrl_parser.cc 1.22 +8 -8 xorp/libxipc/xrl_pf_inproc.cc 1.38 +16 -14 xorp/libxipc/xrl_pf_stcp.cc 1.35 +6 -5 xorp/libxipc/xrl_pf_sudp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Mon Dec 20 21:29:49 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 20 Dec 2004 13:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBKLU1Wh035861 for ; Mon, 20 Dec 2004 13:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBKLU1ox081309 for ; Mon, 20 Dec 2004 13:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBKLU08f020605; Mon, 20 Dec 2004 13:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBKLTo8f020596 for ; Mon, 20 Dec 2004 13:29:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBKLToox081302 for ; Mon, 20 Dec 2004 13:29:50 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBKLTn3g094618 for ; Mon, 20 Dec 2004 13:29:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBKLTncx094617 for xorp-cvs@icir.org; Mon, 20 Dec 2004 21:29:49 GMT (envelope-from atanu) Date: Mon, 20 Dec 2004 21:29:49 GMT From: Atanu Ghosh Message-Id: <200412202129.iBKLTncx094617@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-20 21:29:49 UTC XORP CVS repository Modified files: bgp TODO Log message: It is now possible to remove a parameter as well as remove it. Revision Changes Path 1.11 +9 -9 xorp/bgp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Tue Dec 21 16:16:51 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Dec 2004 08:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBLGH1PY058035 for ; Tue, 21 Dec 2004 08:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBLGH1ox095638 for ; Tue, 21 Dec 2004 08:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBLGH18f018963; Tue, 21 Dec 2004 08:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBLGGp8f018935 for ; Tue, 21 Dec 2004 08:16:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBLGGpox095634 for ; Tue, 21 Dec 2004 08:16:51 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBLGGp9D006080 for ; Tue, 21 Dec 2004 08:16:51 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBLGGpJN006079 for xorp-cvs@icir.org; Tue, 21 Dec 2004 16:16:51 GMT (envelope-from mjh) Date: Tue, 21 Dec 2004 16:16:51 GMT From: Mark Handley Message-Id: <200412211616.iBLGGpJN006079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-21 16:16:51 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in generic_module_manager.cc generic_module_manager.hh op_commands.cc op_commands.hh slave_module_manager.cc slave_module_manager.hh xorpsh_main.cc xorpsh_main.hh Log message: A little more refactoring in the ModuleManager. Fix so that xorpsh module manager gets updated properly with the module state from the rtrmgr. Use module state in xorpsh to determine whether or not to provide the operational mode commands for each module to the user. Only commands for active modules will be shown. This should fix bug 26. Revision Changes Path 1.44 +3 -1 xorp/rtrmgr/Makefile.am 1.55 +10 -8 xorp/rtrmgr/Makefile.in 1.4 +1 -56 xorp/rtrmgr/generic_module_manager.cc 1.6 +1 -11 xorp/rtrmgr/generic_module_manager.hh 1.39 +11 -2 xorp/rtrmgr/op_commands.cc 1.23 +5 -2 xorp/rtrmgr/op_commands.hh 1.19 +32 -61 xorp/rtrmgr/slave_module_manager.cc 1.18 +5 -16 xorp/rtrmgr/slave_module_manager.hh 1.36 +5 -6 xorp/rtrmgr/xorpsh_main.cc 1.18 +3 -3 xorp/rtrmgr/xorpsh_main.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Tue Dec 21 23:43:16 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 21 Dec 2004 15:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBLNi1O2063014 for ; Tue, 21 Dec 2004 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBLNi1ox001081 for ; Tue, 21 Dec 2004 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBLNi08f001266; Tue, 21 Dec 2004 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBLNhG8f001250 for ; Tue, 21 Dec 2004 15:43:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBLNhGox001078 for ; Tue, 21 Dec 2004 15:43:16 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBLNhGWU009945 for ; Tue, 21 Dec 2004 15:43:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBLNhG2A009944 for xorp-cvs@icir.org; Tue, 21 Dec 2004 23:43:16 GMT (envelope-from mjh) Date: Tue, 21 Dec 2004 23:43:16 GMT From: Mark Handley Message-Id: <200412212343.iBLNhG2A009944@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-21 23:43:16 UTC XORP CVS repository Modified files: rtrmgr xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh Log message: Change locking so that it is by xorpsh instance rather than by user ID. This allows one user to be safely logged in twice and attempting to simultaneously load from more than one xorpsh. Lock the config before loading a new configuration from a file. This fixes an error in the config locking whereby a user could be loading a config and another user could simultaneously modify the previous config, with ill-defined results. This should fix bugzilla bug number 37. Revision Changes Path 1.37 +17 -1 xorp/rtrmgr/xorpsh_main.cc 1.19 +6 -1 xorp/rtrmgr/xorpsh_main.hh 1.30 +14 -12 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.18 +2 -2 xorp/rtrmgr/xrl_rtrmgr_interface.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Wed Dec 22 17:46:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Dec 2004 09:47:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBMHl2W9093277 for ; Wed, 22 Dec 2004 09:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBMHl2ox014759 for ; Wed, 22 Dec 2004 09:47:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBMHl18f001201; Wed, 22 Dec 2004 09:47:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBMHkg8f001179 for ; Wed, 22 Dec 2004 09:46:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBMHkfox014754 for ; Wed, 22 Dec 2004 09:46:41 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBMHkfMj020866 for ; Wed, 22 Dec 2004 09:46:41 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBMHkfvm020865 for xorp-cvs@icir.org; Wed, 22 Dec 2004 17:46:41 GMT (envelope-from mjh) Date: Wed, 22 Dec 2004 17:46:41 GMT From: Mark Handley Message-Id: <200412221746.iBMHkfvm020865@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: mjh@xorpc.icir.org 2004-12-22 17:46:41 UTC XORP CVS repository Modified files: tinderbox/scripts config Log message: Add a FreeBSD 5.3 host to the tinderbox. Revision Changes Path 1.12 +6 -1 other/tinderbox/scripts/config _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Wed Dec 22 23:34:05 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 22 Dec 2004 15:35:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBMNZ2ju065367 for ; Wed, 22 Dec 2004 15:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBMNZ1ox018271 for ; Wed, 22 Dec 2004 15:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBMNZ18f010668; Wed, 22 Dec 2004 15:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBMNY58f010649 for ; Wed, 22 Dec 2004 15:34:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBMNY5ox018266 for ; Wed, 22 Dec 2004 15:34:05 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBMNY5GZ024651 for ; Wed, 22 Dec 2004 15:34:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBMNY5hL024650 for xorp-cvs@icir.org; Wed, 22 Dec 2004 23:34:05 GMT (envelope-from mjh) Date: Wed, 22 Dec 2004 23:34:05 GMT From: Mark Handley Message-Id: <200412222334.iBMNY5hL024650@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-22 23:34:05 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree_node.cc master_conf_tree_node.hh Log message: Don't call start_transaction/end_transaction unless there was actually a change to any of the configuration under the part of the config tree associated with the module. This should fix bug number 72 Revision Changes Path 1.7 +26 -1 xorp/rtrmgr/master_conf_tree_node.cc 1.7 +2 -1 xorp/rtrmgr/master_conf_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Thu Dec 23 16:38:27 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 08:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNGd128003247 for ; Thu, 23 Dec 2004 08:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNGd1ox031227 for ; Thu, 23 Dec 2004 08:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNGd18f005550; Thu, 23 Dec 2004 08:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNGcR8f005535 for ; Thu, 23 Dec 2004 08:38:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNGcRox031220 for ; Thu, 23 Dec 2004 08:38:27 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNGcRaP036490 for ; Thu, 23 Dec 2004 08:38:27 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNGcRVX036489 for xorp-cvs@icir.org; Thu, 23 Dec 2004 16:38:27 GMT (envelope-from mjh) Date: Thu, 23 Dec 2004 16:38:27 GMT From: Mark Handley Message-Id: <200412231638.iBNGcRVX036489@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-23 16:38:27 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in test_templates.cc Log message: Re-enable test_templates test (this had been disabled during refactoring). Revision Changes Path 1.45 +21 -49 xorp/rtrmgr/Makefile.am 1.56 +97 -32 xorp/rtrmgr/Makefile.in 1.13 +28 -6 xorp/rtrmgr/test_templates.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:16 2005 Subject: No subject Thu Dec 23 17:33:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 09:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNHY2ot014121 for ; Thu, 23 Dec 2004 09:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNHY1ox031907 for ; Thu, 23 Dec 2004 09:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNHY18f007069; Thu, 23 Dec 2004 09:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNHXE8f007021 for ; Thu, 23 Dec 2004 09:33:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNHXEox031902 for ; Thu, 23 Dec 2004 09:33:14 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNHXE23037238 for ; Thu, 23 Dec 2004 09:33:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNHXEot037237 for xorp-cvs@icir.org; Thu, 23 Dec 2004 17:33:14 GMT (envelope-from mjh) Date: Thu, 23 Dec 2004 17:33:14 GMT From: Mark Handley Message-Id: <200412231733.iBNHXEot037237@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-23 17:33:14 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in main_rtrmgr.cc main_rtrmgr.hh module_manager.cc module_manager.hh test_sample_config.cc Log message: A little refactoring so that ModuleManager doesn't have to know how to send an XRL. Re-enable test_sample_config, which had been disabled while earlier refactoring was in progress. Revision Changes Path 1.46 +56 -46 xorp/rtrmgr/Makefile.am 1.57 +35 -83 xorp/rtrmgr/Makefile.in 1.56 +15 -5 xorp/rtrmgr/main_rtrmgr.cc 1.10 +6 -1 xorp/rtrmgr/main_rtrmgr.hh 1.40 +8 -5 xorp/rtrmgr/module_manager.cc 1.30 +9 -4 xorp/rtrmgr/module_manager.hh 1.19 +77 -18 xorp/rtrmgr/test_sample_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 23 18:57:22 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 10:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNIw18C033051 for ; Thu, 23 Dec 2004 10:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNIw0ox032854 for ; Thu, 23 Dec 2004 10:58:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNIw08f009005; Thu, 23 Dec 2004 10:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNIvM8f008989 for ; Thu, 23 Dec 2004 10:57:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNIvMox032849 for ; Thu, 23 Dec 2004 10:57:22 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNIvM52038115 for ; Thu, 23 Dec 2004 10:57:22 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNIvMm6038114 for xorp-cvs@icir.org; Thu, 23 Dec 2004 18:57:22 GMT (envelope-from atanu) Date: Thu, 23 Dec 2004 18:57:22 GMT From: Atanu Ghosh Message-Id: <200412231857.iBNIvMm6038114@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-23 18:57:22 UTC XORP CVS repository Modified files: bgp route_table_dump.cc Log message: Move a return statement outside the braketting of a '#ifdef AUDIT_ENABLE'. Revision Changes Path 1.30 +2 -2 xorp/bgp/route_table_dump.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 23 22:00:02 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 14:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNM11kE081783 for ; Thu, 23 Dec 2004 14:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNM11ox034861 for ; Thu, 23 Dec 2004 14:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNM118f013528; Thu, 23 Dec 2004 14:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNM028f013508 for ; Thu, 23 Dec 2004 14:00:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNM02ox034836 for ; Thu, 23 Dec 2004 14:00:02 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNM02RC039831 for ; Thu, 23 Dec 2004 14:00:02 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNM022b039830 for xorp-cvs@icir.org; Thu, 23 Dec 2004 22:00:02 GMT (envelope-from mjh) Date: Thu, 23 Dec 2004 22:00:02 GMT From: Mark Handley Message-Id: <200412232200.iBNM022b039830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-23 22:00:02 UTC XORP CVS repository Added files: rtrmgr test_sample_config.hh Log message: Add missing file Revision Changes Path 1.1 +30 -0 xorp/rtrmgr/test_sample_config.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 23 22:17:34 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 14:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNMI1eI091996 for ; Thu, 23 Dec 2004 14:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNMI1ox035042 for ; Thu, 23 Dec 2004 14:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNMI18f013864; Thu, 23 Dec 2004 14:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNMHY8f013849 for ; Thu, 23 Dec 2004 14:17:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNMHYox035038 for ; Thu, 23 Dec 2004 14:17:34 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNMHYPl040089 for ; Thu, 23 Dec 2004 14:17:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNMHYf1040088 for xorp-cvs@icir.org; Thu, 23 Dec 2004 22:17:34 GMT (envelope-from mjh) Date: Thu, 23 Dec 2004 22:17:34 GMT From: Mark Handley Message-Id: <200412232217.iBNMHYf1040088@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-23 22:17:34 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in test_module_manager.cc Added files: rtrmgr test_module_manager.hh Log message: Re-enable test_module_manager. All the rtrmgr tinderbox tests are now re-enabled after the previous refactoring. Revision Changes Path 1.47 +48 -44 xorp/rtrmgr/Makefile.am 1.58 +31 -48 xorp/rtrmgr/Makefile.in 1.14 +55 -11 xorp/rtrmgr/test_module_manager.cc 1.1 +30 -0 xorp/rtrmgr/test_module_manager.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 23 22:47:46 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 23 Dec 2004 14:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBNMm02w003226 for ; Thu, 23 Dec 2004 14:48:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNMm0ox035348 for ; Thu, 23 Dec 2004 14:48:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNMm08f014517; Thu, 23 Dec 2004 14:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBNMll8f014506 for ; Thu, 23 Dec 2004 14:47:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBNMlkox035344 for ; Thu, 23 Dec 2004 14:47:46 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBNMlkSE040406 for ; Thu, 23 Dec 2004 14:47:46 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBNMlkYf040405 for xorp-cvs@icir.org; Thu, 23 Dec 2004 22:47:46 GMT (envelope-from mjh) Date: Thu, 23 Dec 2004 22:47:46 GMT From: Mark Handley Message-Id: <200412232247.iBNMlkYf040405@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-23 22:47:46 UTC XORP CVS repository Modified files: rtrmgr xrl_rtrmgr_interface.cc Log message: Make rtrmgr delay sending the running config to a new xorpsh if a commit or rtrmgr startup is in progress. This fixes a xorpsh startup bug introduced in the recent refactoring. Revision Changes Path 1.31 +13 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Tue Dec 28 09:49:17 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 29 Dec 2004 15:29:53 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBTNTrkW050533 for ; Wed, 29 Dec 2004 15:29:53 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBTNTqox030084 for ; Wed, 29 Dec 2004 15:29:52 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBTNTq7e014587; Wed, 29 Dec 2004 15:29:52 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBS9nI7e022364 for ; Tue, 28 Dec 2004 01:49:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBS9nIox003501 for ; Tue, 28 Dec 2004 01:49:18 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBS9nHQd092499 for ; Tue, 28 Dec 2004 01:49:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBS9nH5B092498 for xorp-cvs@icir.org; Tue, 28 Dec 2004 09:49:17 GMT (envelope-from atanu) Date: Tue, 28 Dec 2004 09:49:17 GMT From: Atanu Ghosh Message-Id: <200412280949.iBS9nH5B092498@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-28 09:49:17 UTC XORP CVS repository Modified files: xrl/interfaces Makefile.am Makefile.in xrl/targets Makefile.am Makefile.in Added files: xrl/interfaces ospfv2.xif ospfv2_xif.cc ospfv2_xif.hh ospfv3.xif ospfv3_xif.cc ospfv3_xif.hh xrl/targets ospfv2.tgt ospfv2.xrls ospfv2_base.cc ospfv2_base.hh ospfv3.tgt ospfv3.xrls ospfv3_base.cc ospfv3_base.hh Log message: Placeholder for OSPF V2 and V3. Revision Changes Path 1.30 +10 -2 xorp/xrl/interfaces/Makefile.am 1.45 +25 -3 xorp/xrl/interfaces/Makefile.in 1.1 +11 -0 xorp/xrl/interfaces/ospfv2.xif (new) 1.1 +44 -0 xorp/xrl/interfaces/ospfv2_xif.cc (new) 1.1 +57 -0 xorp/xrl/interfaces/ospfv2_xif.hh (new) 1.1 +10 -0 xorp/xrl/interfaces/ospfv3.xif (new) 1.1 +44 -0 xorp/xrl/interfaces/ospfv3_xif.cc (new) 1.1 +57 -0 xorp/xrl/interfaces/ospfv3_xif.hh (new) 1.50 +18 -2 xorp/xrl/targets/Makefile.am 1.64 +33 -5 xorp/xrl/targets/Makefile.in 1.1 +7 -0 xorp/xrl/targets/ospfv2.tgt (new) 1.1 +36 -0 xorp/xrl/targets/ospfv2.xrls (new) 1.1 +245 -0 xorp/xrl/targets/ospfv2_base.cc (new) 1.1 +126 -0 xorp/xrl/targets/ospfv2_base.hh (new) 1.1 +7 -0 xorp/xrl/targets/ospfv3.tgt (new) 1.1 +36 -0 xorp/xrl/targets/ospfv3.xrls (new) 1.1 +245 -0 xorp/xrl/targets/ospfv3_base.cc (new) 1.1 +126 -0 xorp/xrl/targets/ospfv3_base.hh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 30 11:13:09 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Dec 2004 03:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBUBE19v092023 for ; Thu, 30 Dec 2004 03:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUBE1ox038784 for ; Thu, 30 Dec 2004 03:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUBE17e029787; Thu, 30 Dec 2004 03:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUBD97e029778 for ; Thu, 30 Dec 2004 03:13:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUBD9ox038779 for ; Thu, 30 Dec 2004 03:13:09 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBUBD9D2018566 for ; Thu, 30 Dec 2004 03:13:09 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBUBD9GK018565 for xorp-cvs@icir.org; Thu, 30 Dec 2004 11:13:09 GMT (envelope-from mjh) Date: Thu, 30 Dec 2004 11:13:09 GMT From: Mark Handley Message-Id: <200412301113.iBUBD9GK018565@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-30 11:13:09 UTC XORP CVS repository Modified files: rtrmgr cli.cc Log message: Don't crash in text entry mode if we encounter a close brace on the same line as a config statement, but handle it gracefully and do what the user probably intended. This should fix bug 107. Revision Changes Path 1.60 +12 -2 xorp/rtrmgr/cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 30 12:42:14 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Dec 2004 04:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBUCh1Yt009575 for ; Thu, 30 Dec 2004 04:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUCh1ox039572 for ; Thu, 30 Dec 2004 04:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUCh17e001606; Thu, 30 Dec 2004 04:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUCgF7e001591 for ; Thu, 30 Dec 2004 04:42:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUCgEox039565 for ; Thu, 30 Dec 2004 04:42:14 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBUCgE7U019421 for ; Thu, 30 Dec 2004 04:42:14 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBUCgEtr019420 for xorp-cvs@icir.org; Thu, 30 Dec 2004 12:42:14 GMT (envelope-from mjh) Date: Thu, 30 Dec 2004 12:42:14 GMT From: Mark Handley Message-Id: <200412301242.iBUCgEtr019420@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/cli/libtecla xorp/mibs xorp/rtrmgr xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2004-12-30 12:42:14 UTC XORP CVS repository Modified files: . configure cli/libtecla configure mibs configure rtrmgr Makefile.am Makefile.in xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl/targets rtrmgr.tgt rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh Log message: Make the rtrmgr register with the finder to receive birth and death events for xorpsh instances. When a xorpsh dies due to Ctrl-D (or whatever other reason) then remove it from the registered users kept in rtrmgr. This should fix bug number 67. Revision Changes Path 1.7 +668 -319 xorp/cli/libtecla/configure 1.137 +1731 -1009 xorp/configure 1.4 +1147 -582 xorp/mibs/configure 1.48 +2 -1 xorp/rtrmgr/Makefile.am 1.59 +2 -1 xorp/rtrmgr/Makefile.in 1.32 +70 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.19 +16 -1 xorp/rtrmgr/xrl_rtrmgr_interface.hh 1.3 +4 -2 xorp/xrl/targets/rtrmgr.tgt 1.10 +11 -1 xorp/xrl/targets/rtrmgr.xrls 1.16 +63 -1 xorp/xrl/targets/rtrmgr_base.cc 1.16 +25 -1 xorp/xrl/targets/rtrmgr_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Dec 30 23:04:56 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 30 Dec 2004 15:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id iBUN51Wg040715 for ; Thu, 30 Dec 2004 15:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUN51ox046499 for ; Thu, 30 Dec 2004 15:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUN50X1004238; Thu, 30 Dec 2004 15:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id iBUN4uX1004231 for ; Thu, 30 Dec 2004 15:04:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id iBUN4uox046493 for ; Thu, 30 Dec 2004 15:04:56 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBUN4uEb025602 for ; Thu, 30 Dec 2004 15:04:56 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBUN4ul5025601 for xorp-cvs@icir.org; Thu, 30 Dec 2004 23:04:56 GMT (envelope-from atanu) Date: Thu, 30 Dec 2004 23:04:56 GMT From: Atanu Ghosh Message-Id: <200412302304.iBUN4ul5025601@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2004-12-30 23:04:56 UTC XORP CVS repository Modified files: bgp xrl_target.cc Log message: BGP uses the endpoint addresses and ports used by a peering to define a peering. The protocol actually uses fixed ports variable ports are used for debugging; allowing more than one session between a pair of hosts. A class Iptuple takes the addresses and ports and defines a peering. An address is in textual form allowing IPv4 and IPv6 notation as well as hostnames. If a lookup fails then Iptuple will throw an exception. Iptuple can also throw an exception if that address families of the two addresses don't match. The exceptions thrown by Iptuple are now been caught, a bad address will now generate an error, not cause BGP to exit. This is part of the fix for bug: Revision Changes Path 1.35 +162 -65 xorp/bgp/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Wed Jan 5 21:40:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 13:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j05Lf1RW010751 for ; Wed, 5 Jan 2005 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j05Lf1BC037594 for ; Wed, 5 Jan 2005 13:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j05Lf16p013238; Wed, 5 Jan 2005 13:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j05LeQ6p013221 for ; Wed, 5 Jan 2005 13:40:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j05LeQBC037588 for ; Wed, 5 Jan 2005 13:40:26 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j05LeQGq098369 for ; Wed, 5 Jan 2005 13:40:26 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j05LeQRG098368 for xorp-cvs@icir.org; Wed, 5 Jan 2005 21:40:26 GMT (envelope-from atanu) Date: Wed, 5 Jan 2005 21:40:26 GMT From: Atanu Ghosh Message-Id: <200501052140.j05LeQRG098368@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-05 21:40:26 UTC XORP CVS repository Modified files: bgp plumbing.cc Log message: Memory leak, at some point the line adding "nexthop_in" to the list of tables that should be deleted was lost. Revision Changes Path 1.58 +2 -1 xorp/bgp/plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Wed Jan 5 22:04:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 14:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j05M51kx016524 for ; Wed, 5 Jan 2005 14:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j05M51BC037833 for ; Wed, 5 Jan 2005 14:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j05M516p013975; Wed, 5 Jan 2005 14:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j05M4V6p013963 for ; Wed, 5 Jan 2005 14:04:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j05M4VBC037826 for ; Wed, 5 Jan 2005 14:04:31 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j05M4VW6098665 for ; Wed, 5 Jan 2005 14:04:31 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j05M4VR3098664 for xorp-cvs@icir.org; Wed, 5 Jan 2005 22:04:31 GMT (envelope-from atanu) Date: Wed, 5 Jan 2005 22:04:31 GMT From: Atanu Ghosh Message-Id: <200501052204.j05M4VR3098664@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-05 22:04:31 UTC XORP CVS repository Modified files: bgp bgp.cc route_table_cache.hh Log message: BGP when exiting was not deleting some cache tables. The cache tables are deleted using a timer. The timer was primed to run in one second. The BGP process was exiting before the timer had a chance to expire. The BGP destruction process now waits for the cache table deletion to complete. While searching for the memory leak the code to delete cache tables "DeleteAllNodes" has been refactored. Revision Changes Path 1.48 +4 -2 xorp/bgp/bgp.cc 1.17 +23 -17 xorp/bgp/route_table_cache.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 00:38:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 16:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j060d13q025151 for ; Wed, 5 Jan 2005 16:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j060d1BC039505 for ; Wed, 5 Jan 2005 16:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j060d16p018359; Wed, 5 Jan 2005 16:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j060c06p018325 for ; Wed, 5 Jan 2005 16:38:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j060c0BC039493 for ; Wed, 5 Jan 2005 16:38:00 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j060c0Lp000236 for ; Wed, 5 Jan 2005 16:38:00 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j060c0sM000235 for xorp-cvs@icir.org; Thu, 6 Jan 2005 00:38:00 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 00:38:00 GMT From: Atanu Ghosh Message-Id: <200501060038.j060c0sM000235@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 00:38:00 UTC XORP CVS repository Modified files: libxipc finder_client.cc Log message: The XLOG_ASSERT in messenger_death_event checks that "m" is equal to "_messenger". If messenger_death_event is reached via "notify_failed" then "_messenger" has been set to zero. Changed the XLOG_ASSERT to capture this case. The program call_xrl was hitting this problem, probably when the finder died during an XRL transaction. Revision Changes Path 1.28 +2 -2 xorp/libxipc/finder_client.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 03:18:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 19:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j063J1q7063591 for ; Wed, 5 Jan 2005 19:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j063J1cx041331 for ; Wed, 5 Jan 2005 19:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j063J06p022789; Wed, 5 Jan 2005 19:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j063IL6p022757 for ; Wed, 5 Jan 2005 19:18:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j063ILcx041325 for ; Wed, 5 Jan 2005 19:18:21 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j063ILK0001454 for ; Wed, 5 Jan 2005 19:18:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j063IL06001453 for xorp-cvs@icir.org; Thu, 6 Jan 2005 03:18:21 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 03:18:21 GMT From: Atanu Ghosh Message-Id: <200501060318.j063IL06001453@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 03:18:21 UTC XORP CVS repository Modified files: rip xrl_target_rip.cc Log message: Start with an ID of 1 not 0 Cisco compatibility. Revision Changes Path 1.20 +1 -1 xorp/rip/xrl_target_rip.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 03:21:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 19:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j063M1KF064328 for ; Wed, 5 Jan 2005 19:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j063M1cx041372 for ; Wed, 5 Jan 2005 19:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j063M16p022884; Wed, 5 Jan 2005 19:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j063Lo6p022876 for ; Wed, 5 Jan 2005 19:21:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j063Lncx041370 for ; Wed, 5 Jan 2005 19:21:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j063Lnkl001555 for ; Wed, 5 Jan 2005 19:21:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j063Ln80001554 for xorp-cvs@icir.org; Thu, 6 Jan 2005 03:21:49 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 03:21:49 GMT From: Atanu Ghosh Message-Id: <200501060321.j063Ln80001554@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 03:21:49 UTC XORP CVS repository Modified files: rip auth.cc Log message: Save the first packet that fails the MD5 authentication into a file. Enabled by defining DUMP_BAD_MD5. Revision Changes Path 1.8 +14 -1 xorp/rip/auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 04:55:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 20:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j064u1Lu089483 for ; Wed, 5 Jan 2005 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j064u1cx042197 for ; Wed, 5 Jan 2005 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j064u16p024965; Wed, 5 Jan 2005 20:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j064tG6p024942 for ; Wed, 5 Jan 2005 20:55:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j064tGcx042188 for ; Wed, 5 Jan 2005 20:55:16 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j064tG98002160 for ; Wed, 5 Jan 2005 20:55:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j064tGxR002159 for xorp-cvs@icir.org; Thu, 6 Jan 2005 04:55:16 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 04:55:16 GMT From: Atanu Ghosh Message-Id: <200501060455.j064tGxR002159@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 04:55:16 UTC XORP CVS repository Modified files: rip auth.cc Log message: Fix typo use the variable not the literal. Revision Changes Path 1.9 +2 -2 xorp/rip/auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 05:37:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 21:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j065c1TD001326 for ; Wed, 5 Jan 2005 21:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j065c0cx042548 for ; Wed, 5 Jan 2005 21:38:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j065c06p025854; Wed, 5 Jan 2005 21:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j065bE6p025842 for ; Wed, 5 Jan 2005 21:37:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j065bEcx042544 for ; Wed, 5 Jan 2005 21:37:14 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j065bEpn002518 for ; Wed, 5 Jan 2005 21:37:14 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j065bEHp002517 for xorp-cvs@icir.org; Thu, 6 Jan 2005 05:37:14 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 05:37:14 GMT From: Atanu Ghosh Message-Id: <200501060537.j065bEHp002517@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 05:37:14 UTC XORP CVS repository Modified files: rip test_auth.cc Log message: Add a real md5 packet to the test cases. The call to saved_md5() is currently commented out as we seem to be failing the authentication. Revision Changes Path 1.8 +70 -1 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 05:51:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 05 Jan 2005 21:52:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j065q08V021961 for ; Wed, 5 Jan 2005 21:52:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j065q0cx042685 for ; Wed, 5 Jan 2005 21:52:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j065q06p026159; Wed, 5 Jan 2005 21:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j065p46p026142 for ; Wed, 5 Jan 2005 21:51:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j065p3cx042680 for ; Wed, 5 Jan 2005 21:51:03 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j065p33F002685 for ; Wed, 5 Jan 2005 21:51:03 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j065p39K002684 for xorp-cvs@icir.org; Thu, 6 Jan 2005 05:51:03 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 05:51:03 GMT From: Atanu Ghosh Message-Id: <200501060551.j065p39K002684@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 05:51:03 UTC XORP CVS repository Modified files: rip test_auth.cc Log message: Oops the compiler spotted the commented out function was no longer being called, changed it from static to inline. Revision Changes Path 1.9 +2 -2 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Thu Jan 6 17:49:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Jan 2005 09:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j06Ho1gK081084 for ; Thu, 6 Jan 2005 09:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j06Ho0cx051592 for ; Thu, 6 Jan 2005 09:50:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j06Ho06p014443; Thu, 6 Jan 2005 09:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j06HnR6p014421 for ; Thu, 6 Jan 2005 09:49:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j06HnRcx051587 for ; Thu, 6 Jan 2005 09:49:27 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j06HnRvK010083 for ; Thu, 6 Jan 2005 09:49:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j06HnRIv010082 for xorp-cvs@icir.org; Thu, 6 Jan 2005 17:49:27 GMT (envelope-from atanu) Date: Thu, 6 Jan 2005 17:49:27 GMT From: Atanu Ghosh Message-Id: <200501061749.j06HnRIv010082@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-06 17:49:27 UTC XORP CVS repository Modified files: fea ifconfig_parse_ifreq.cc Log message: Missing semicolon in conditional code. Bug found by: "Yonghong Ren" Revision Changes Path 1.21 +2 -2 xorp/fea/ifconfig_parse_ifreq.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:17 2005 Subject: No subject Fri Jan 7 03:07:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 06 Jan 2005 19:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j07380aN003441 for ; Thu, 6 Jan 2005 19:08:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j07380cx057753 for ; Thu, 6 Jan 2005 19:08:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j073806p000534; Thu, 6 Jan 2005 19:08:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0737b6p000525 for ; Thu, 6 Jan 2005 19:07:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0737bcx057750 for ; Thu, 6 Jan 2005 19:07:37 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0737bo4014717 for ; Thu, 6 Jan 2005 19:07:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0737b3b014716 for xorp-cvs@icir.org; Fri, 7 Jan 2005 03:07:37 GMT (envelope-from atanu) Date: Fri, 7 Jan 2005 03:07:37 GMT From: Atanu Ghosh Message-Id: <200501070307.j0737b3b014716@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-07 03:07:37 UTC XORP CVS repository Modified files: rip auth.cc packets.hh test_auth.cc Log message: The MD5 trailer contains four bytes at its start which need to be included in the checksum. Revision Changes Path 1.10 +4 -3 xorp/rip/auth.cc 1.16 +2 -1 xorp/rip/packets.hh 1.10 +6 -7 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Mon Jan 10 02:58:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 09 Jan 2005 18:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0A2x2RM032150 for ; Sun, 9 Jan 2005 18:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0A2x1cx003950 for ; Sun, 9 Jan 2005 18:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0A2x16p004907; Sun, 9 Jan 2005 18:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0A2wJ6p004886 for ; Sun, 9 Jan 2005 18:58:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0A2wJcx003945 for ; Sun, 9 Jan 2005 18:58:19 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0A2wJkb051579 for ; Sun, 9 Jan 2005 18:58:19 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0A2wJXx051578 for xorp-cvs@icir.org; Mon, 10 Jan 2005 02:58:19 GMT (envelope-from mjh) Date: Mon, 10 Jan 2005 02:58:19 GMT From: Mark Handley Message-Id: <200501100258.j0A2wJXx051578@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-01-10 02:58:19 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc conf_tree_node.hh master_conf_tree_node.cc master_conf_tree_node.hh template_tree_node.cc template_tree_node.hh Log message: Commit configuration changes within a single module in the order that the template tree is built in the rtrmgr template (*.tp) files. The configuration is still stored in the order the user specifies in the config file or xorpsh, but we walk the config tree in the template tree order when calling XRLs. This should fix a bug with BGP, where BGP would abort if the user specified a peer before specifying the local-as because it considered itself not yet ready. In general this should reduce the possibility of this sort of coding error because now there are fewer possibilities to be tested. Revision Changes Path 1.58 +10 -1 xorp/rtrmgr/conf_tree_node.cc 1.30 +2 -1 xorp/rtrmgr/conf_tree_node.hh 1.8 +12 -3 xorp/rtrmgr/master_conf_tree_node.cc 1.8 +9 -1 xorp/rtrmgr/master_conf_tree_node.hh 1.31 +4 -1 xorp/rtrmgr/template_tree_node.cc 1.20 +5 -1 xorp/rtrmgr/template_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Tue Jan 11 15:56:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Jan 2005 07:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0BFv1lA072883 for ; Tue, 11 Jan 2005 07:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0BFv1cx028410 for ; Tue, 11 Jan 2005 07:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0BFv06p002818; Tue, 11 Jan 2005 07:57:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0BFuF6p002798 for ; Tue, 11 Jan 2005 07:56:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0BFuFcx028398 for ; Tue, 11 Jan 2005 07:56:15 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0BFuFdP045096 for ; Tue, 11 Jan 2005 07:56:15 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0BFuFXq045095 for xorp-cvs@icir.org; Tue, 11 Jan 2005 15:56:15 GMT (envelope-from bms) Date: Tue, 11 Jan 2005 15:56:15 GMT From: Bruce Simpson Message-Id: <200501111556.j0BFuFXq045095@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-11 15:56:15 UTC XORP CVS repository Modified files: fea pa_backend_ipfw2.cc Log message: Don't assume nbytes is initialized to zero; initialize it explicitly. Bug found by: Bernhard Schmidt Revision Changes Path 1.2 +3 -3 xorp/fea/pa_backend_ipfw2.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Tue Jan 11 19:29:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 11 Jan 2005 11:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0BJU1b0016006 for ; Tue, 11 Jan 2005 11:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0BJU1cx031928 for ; Tue, 11 Jan 2005 11:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0BJU16p009290; Tue, 11 Jan 2005 11:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0BJTH6p009261 for ; Tue, 11 Jan 2005 11:29:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0BJTHcx031920 for ; Tue, 11 Jan 2005 11:29:17 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0BJTHRg048423 for ; Tue, 11 Jan 2005 11:29:17 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0BJTHOB048422 for xorp-cvs@icir.org; Tue, 11 Jan 2005 19:29:17 GMT (envelope-from bms) Date: Tue, 11 Jan 2005 19:29:17 GMT From: Bruce Simpson Message-Id: <200501111929.j0BJTHOB048422@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-11 19:29:16 UTC XORP CVS repository Modified files: fea pa_backend_ipfw2.cc Log message: nbytes should be initialized to the same value as nalloc. Revision Changes Path 1.3 +4 -3 xorp/fea/pa_backend_ipfw2.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Thu Jan 13 00:48:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Jan 2005 16:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0D0n2GM097570 for ; Wed, 12 Jan 2005 16:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0n2IY051229 for ; Wed, 12 Jan 2005 16:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0n16p001587; Wed, 12 Jan 2005 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0ms6p001578 for ; Wed, 12 Jan 2005 16:48:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0mrIY051227 for ; Wed, 12 Jan 2005 16:48:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0D0mr5a077530 for ; Wed, 12 Jan 2005 16:48:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0D0mro0077529 for xorp-cvs@icir.org; Thu, 13 Jan 2005 00:48:53 GMT (envelope-from pavlin) Date: Thu, 13 Jan 2005 00:48:53 GMT From: Pavlin Radoslavov Message-Id: <200501130048.j0D0mro0077529@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-13 00:48:53 UTC XORP CVS repository Modified files: docs/pim_testsuite pim_testsuite.tex Log message: Fix typos: {ps,tex} -> {ps,txt} Revision Changes Path 1.34 +7 -7 xorp/docs/pim_testsuite/pim_testsuite.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Thu Jan 13 00:49:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Jan 2005 16:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0D0o1M0097821 for ; Wed, 12 Jan 2005 16:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0o1IY051253 for ; Wed, 12 Jan 2005 16:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0o06p001644; Wed, 12 Jan 2005 16:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0ng6p001625 for ; Wed, 12 Jan 2005 16:49:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0ngIY051245 for ; Wed, 12 Jan 2005 16:49:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0D0ngAG077588 for ; Wed, 12 Jan 2005 16:49:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0D0nf8j077587 for xorp-cvs@icir.org; Thu, 13 Jan 2005 00:49:41 GMT (envelope-from pavlin) Date: Thu, 13 Jan 2005 00:49:41 GMT From: Pavlin Radoslavov Message-Id: <200501130049.j0D0nf8j077587@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-13 00:49:41 UTC XORP CVS repository Modified files: rtrmgr TODO Log message: * Move a TODO entry to the DONE section (done by Mark Handley). * Spacing nits. Revision Changes Path 1.27 +2 -6 xorp/rtrmgr/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Thu Jan 13 00:53:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 12 Jan 2005 16:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0D0s1oH098797 for ; Wed, 12 Jan 2005 16:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0s1IY051304 for ; Wed, 12 Jan 2005 16:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0s16p001829; Wed, 12 Jan 2005 16:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0D0r76p001797 for ; Wed, 12 Jan 2005 16:53:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0D0r7IY051298 for ; Wed, 12 Jan 2005 16:53:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0D0r72J077689 for ; Wed, 12 Jan 2005 16:53:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0D0r7cj077688 for xorp-cvs@icir.org; Thu, 13 Jan 2005 00:53:07 GMT (envelope-from pavlin) Date: Thu, 13 Jan 2005 00:53:07 GMT From: Pavlin Radoslavov Message-Id: <200501130053.j0D0r7cj077688@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-13 00:53:07 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Log message: Reorder the file names in alphabetical order. Revision Changes Path 1.49 +22 -22 xorp/rtrmgr/Makefile.am 1.60 +21 -23 xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Thu Jan 13 23:22:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Jan 2005 15:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0DNN1a0096266 for ; Thu, 13 Jan 2005 15:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0DNN1IY067397 for ; Thu, 13 Jan 2005 15:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0DNN16p013157; Thu, 13 Jan 2005 15:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0DNMH6p013147 for ; Thu, 13 Jan 2005 15:22:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0DNMHIY067395 for ; Thu, 13 Jan 2005 15:22:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0DNMHtE090135 for ; Thu, 13 Jan 2005 15:22:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0DNMHOm090134 for xorp-cvs@icir.org; Thu, 13 Jan 2005 23:22:17 GMT (envelope-from pavlin) Date: Thu, 13 Jan 2005 23:22:17 GMT From: Pavlin Radoslavov Message-Id: <200501132322.j0DNMHOm090134@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-13 23:22:17 UTC XORP CVS repository Modified files: fea README.mfea mld6igmp README pim README Log message: Add text that clarifies that the "test_foo" multicast-related stand-alone binaries are not compiled by "gmake". The user has to run "gmake check" in the particular directory to compile those binaries. Revision Changes Path 1.16 +4 -1 xorp/fea/README.mfea 1.15 +4 -1 xorp/mld6igmp/README 1.28 +4 -1 xorp/pim/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Thu Jan 13 23:30:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Jan 2005 15:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0DNV1kY097843 for ; Thu, 13 Jan 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0DNV1IY067492 for ; Thu, 13 Jan 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0DNV16p013437; Thu, 13 Jan 2005 15:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0DNUP6p013415 for ; Thu, 13 Jan 2005 15:30:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0DNUPIY067482 for ; Thu, 13 Jan 2005 15:30:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0DNUOMh090268 for ; Thu, 13 Jan 2005 15:30:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0DNUOXN090267 for xorp-cvs@icir.org; Thu, 13 Jan 2005 23:30:24 GMT (envelope-from pavlin) Date: Thu, 13 Jan 2005 23:30:24 GMT From: Pavlin Radoslavov Message-Id: <200501132330.j0DNUOXN090267@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-13 23:30:24 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Bug fix: "if (active_bsr_zone == NULL)" -> "if (active_bsr_group_prefix == NULL)" Bug found by: "edrt" Revision Changes Path 1.30 +2 -2 xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Fri Jan 14 01:26:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Jan 2005 17:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0E1R17P020499 for ; Thu, 13 Jan 2005 17:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0E1R1IY068743 for ; Thu, 13 Jan 2005 17:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0E1R16p017375; Thu, 13 Jan 2005 17:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0E1QF6p017310 for ; Thu, 13 Jan 2005 17:26:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0E1QFIY068734 for ; Thu, 13 Jan 2005 17:26:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0E1QEsL091376 for ; Thu, 13 Jan 2005 17:26:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0E1QExx091375 for xorp-cvs@icir.org; Fri, 14 Jan 2005 01:26:14 GMT (envelope-from pavlin) Date: Fri, 14 Jan 2005 01:26:14 GMT From: Pavlin Radoslavov Message-Id: <200501140126.j0E1QExx091375@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-14 01:26:14 UTC XORP CVS repository Modified files: etc/templates interfaces.tp Log message: Bug fix: fix the parameters ordering in the following XRL: ifmgr/0.1/delete_vif Apparently, the mis-ordering was never caught because of a bug in the "XrlAtom::operator==" implementation. Revision Changes Path 1.12 +2 -2 xorp/etc/templates/interfaces.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Fri Jan 14 01:35:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 13 Jan 2005 17:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0E1a1vq022311 for ; Thu, 13 Jan 2005 17:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0E1a1IY068823 for ; Thu, 13 Jan 2005 17:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0E1a16p017680; Thu, 13 Jan 2005 17:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0E1ZG6p017632 for ; Thu, 13 Jan 2005 17:35:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0E1ZGIY068809 for ; Thu, 13 Jan 2005 17:35:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0E1ZFSm091473 for ; Thu, 13 Jan 2005 17:35:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0E1ZFfW091472 for xorp-cvs@icir.org; Fri, 14 Jan 2005 01:35:15 GMT (envelope-from pavlin) Date: Fri, 14 Jan 2005 01:35:15 GMT From: Pavlin Radoslavov Message-Id: <200501140135.j0E1ZFfW091472@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-14 01:35:15 UTC XORP CVS repository Modified files: libxipc xrl_atom.cc Log message: Bug fix: Fix the check whether a number of values are all true. OLD: return mn == mt == md == mv == true; NEW: return ((mn == true) && (mt == true) && (md == true) && (mv == true)); The "==" operator is evaluated left-to-right, hence there are a number of cases when the old code will fail. For example, the old code will return true even if the variables have, say, the following values: mn = true; mt = false; md = false; mv = true; Note that the bug is in the XrlAtom::operator== implementation, which is used in many places by the XRL code. It appears that so far it hasn't created any notable issues. After the fix, a single rtrmgr template XRL mismatch was discovered, and "gmake check" appears to succeed. Bug found by: "edrt" Revision Changes Path 1.15 +2 -2 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Tue Jan 18 03:08:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 17 Jan 2005 19:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0I391kq059297 for ; Mon, 17 Jan 2005 19:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0I391IY032616 for ; Mon, 17 Jan 2005 19:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0I3916p010420; Mon, 17 Jan 2005 19:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0I3886p010397 for ; Mon, 17 Jan 2005 19:08:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0I388IY032603 for ; Mon, 17 Jan 2005 19:08:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0I388bF064203 for ; Mon, 17 Jan 2005 19:08:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0I387mV064202 for xorp-cvs@icir.org; Tue, 18 Jan 2005 03:08:07 GMT (envelope-from pavlin) Date: Tue, 18 Jan 2005 03:08:07 GMT From: Pavlin Radoslavov Message-Id: <200501180308.j0I387mV064202@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-18 03:08:07 UTC XORP CVS repository Modified files: rtrmgr test_sample_config.cc Log message: Add missing "\n" at the end of printf() string. Revision Changes Path 1.20 +3 -3 xorp/rtrmgr/test_sample_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Tue Jan 18 20:41:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 12:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0IKg1tR079723 for ; Tue, 18 Jan 2005 12:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0IKg1IY045564 for ; Tue, 18 Jan 2005 12:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0IKg06p009305; Tue, 18 Jan 2005 12:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0IKfR6p009281 for ; Tue, 18 Jan 2005 12:41:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0IKfRIY045557 for ; Tue, 18 Jan 2005 12:41:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0IKfQuv081823 for ; Tue, 18 Jan 2005 12:41:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0IKfQ2p081822 for xorp-cvs@icir.org; Tue, 18 Jan 2005 20:41:26 GMT (envelope-from pavlin) Date: Tue, 18 Jan 2005 20:41:26 GMT From: Pavlin Radoslavov Message-Id: <200501182041.j0IKfQ2p081822@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-18 20:41:26 UTC XORP CVS repository Modified files: fea ifmanager_transaction.hh Log message: Fix a typo in a string: ConfigureInterfacefromSystem: -> ConfigureInterfaceFromSystem: Revision Changes Path 1.9 +2 -2 xorp/fea/ifmanager_transaction.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Tue Jan 18 23:56:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 15:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0INv1d4025963 for ; Tue, 18 Jan 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0INv1IY047465 for ; Tue, 18 Jan 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0INv16p015813; Tue, 18 Jan 2005 15:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0INuk6p015794 for ; Tue, 18 Jan 2005 15:56:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0INukIY047460 for ; Tue, 18 Jan 2005 15:56:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0INukV0096409 for ; Tue, 18 Jan 2005 15:56:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0INujO6096408 for xorp-cvs@icir.org; Tue, 18 Jan 2005 23:56:45 GMT (envelope-from pavlin) Date: Tue, 18 Jan 2005 23:56:45 GMT From: Pavlin Radoslavov Message-Id: <200501182356.j0INujO6096408@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-18 23:56:45 UTC XORP CVS repository Modified files: etc/templates interfaces.tp Log message: Add missing "mtu" template leaf node with the XRLs to set/get the MTU per interface. Revision Changes Path 1.13 +7 -1 xorp/etc/templates/interfaces.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Wed Jan 19 00:00:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 16:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0J011F1026794 for ; Tue, 18 Jan 2005 16:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J010IY047523 for ; Tue, 18 Jan 2005 16:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J0106p015953; Tue, 18 Jan 2005 16:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J00e6p015938 for ; Tue, 18 Jan 2005 16:00:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J00eIY047515 for ; Tue, 18 Jan 2005 16:00:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0J00eGu096513 for ; Tue, 18 Jan 2005 16:00:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0J00eRT096512 for xorp-cvs@icir.org; Wed, 19 Jan 2005 00:00:40 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 00:00:40 GMT From: Pavlin Radoslavov Message-Id: <200501190000.j0J00eRT096512@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 00:00:40 UTC XORP CVS repository Modified files: rtrmgr template.yy y.tplt_tab.cc Log message: Extend the syntax for template commands. Previously, a template command %foo was suppose to have a syntax like: %foo: bar "my string"; Now, the following syntax is also accepted: %foo: "my string". This extention is needed to support the following new command: %deprecated: "String with reason for template node deprecation" Revision Changes Path 1.14 +4 -1 xorp/rtrmgr/template.yy 1.14 +85 -76 xorp/rtrmgr/y.tplt_tab.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Wed Jan 19 00:01:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 16:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0J021Cc026998 for ; Tue, 18 Jan 2005 16:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J021IY047535 for ; Tue, 18 Jan 2005 16:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J0216p015986; Tue, 18 Jan 2005 16:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J01X6p015972 for ; Tue, 18 Jan 2005 16:01:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J01WIY047533 for ; Tue, 18 Jan 2005 16:01:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0J01Who096609 for ; Tue, 18 Jan 2005 16:01:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0J01Wku096608 for xorp-cvs@icir.org; Wed, 19 Jan 2005 00:01:32 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 00:01:32 GMT From: Pavlin Radoslavov Message-Id: <200501190001.j0J01Wku096608@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 00:01:32 UTC XORP CVS repository Modified files: rtrmgr slave_conf_tree.cc Log message: Update a comment. Revision Changes Path 1.25 +2 -2 xorp/rtrmgr/slave_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Wed Jan 19 00:08:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 16:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0J091d0028351 for ; Tue, 18 Jan 2005 16:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J091IY047619 for ; Tue, 18 Jan 2005 16:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J0916p016196; Tue, 18 Jan 2005 16:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J08B6p016167 for ; Tue, 18 Jan 2005 16:08:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J08BIY047605 for ; Tue, 18 Jan 2005 16:08:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0J08Bk2096785 for ; Tue, 18 Jan 2005 16:08:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0J08BwJ096784 for xorp-cvs@icir.org; Wed, 19 Jan 2005 00:08:11 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 00:08:11 GMT From: Pavlin Radoslavov Message-Id: <200501190008.j0J08BwJ096784@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 00:08:11 UTC XORP CVS repository Modified files: rtrmgr cli.cc conf_tree_node.cc master_conf_tree_node.cc slave_conf_tree_node.cc template_tree_node.cc template_tree_node.hh Log message: Implement the following rtrmgr template command: %deprecated: "String with reason for template node deprecation" This command can be used to deprecate a template tree node (and the subtree below it). If the XORP startup configuration contains a statement that uses a deprecated node in the template, the rtrmgr prints an error with the string with the reason, and exits. If, however, somehow the xorpsh sends to the rtrmgr configuration that contains deprecated statement, the rtrmgr returns an error, and the error string returned to the xorpsh will contain the %deprecated string. Obviously, the %deprecated string can contain anything; e.g., instructions to the user what configuration to use as a substitution, etc. Revision Changes Path 1.61 +19 -3 xorp/rtrmgr/cli.cc 1.59 +13 -1 xorp/rtrmgr/conf_tree_node.cc 1.9 +25 -1 xorp/rtrmgr/master_conf_tree_node.cc 1.17 +9 -3 xorp/rtrmgr/slave_conf_tree_node.cc 1.32 +27 -5 xorp/rtrmgr/template_tree_node.cc 1.21 +8 -1 xorp/rtrmgr/template_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Wed Jan 19 00:14:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 18 Jan 2005 16:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0J0F1qn029523 for ; Tue, 18 Jan 2005 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J0F0IY047699 for ; Tue, 18 Jan 2005 16:15:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J0F06p016410; Tue, 18 Jan 2005 16:15:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0J0Eq6p016400 for ; Tue, 18 Jan 2005 16:14:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0J0EpIY047694 for ; Tue, 18 Jan 2005 16:14:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0J0Eplv096906 for ; Tue, 18 Jan 2005 16:14:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0J0EpR2096905 for xorp-cvs@icir.org; Wed, 19 Jan 2005 00:14:51 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 00:14:51 GMT From: Pavlin Radoslavov Message-Id: <200501190014.j0J0EpR2096905@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 00:14:51 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add release notes for the rtrmgr. Revision Changes Path 1.57 +12 -3 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:18 2005 Subject: No subject Wed Jan 19 19:18:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 11:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0JJJ1UM057414 for ; Wed, 19 Jan 2005 11:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJJ1IY061763 for ; Wed, 19 Jan 2005 11:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJJ16p019260; Wed, 19 Jan 2005 11:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJIn6p019251 for ; Wed, 19 Jan 2005 11:18:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJInIY061758 for ; Wed, 19 Jan 2005 11:18:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0JJImcn008362 for ; Wed, 19 Jan 2005 11:18:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0JJImp7008361 for xorp-cvs@icir.org; Wed, 19 Jan 2005 19:18:48 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 19:18:48 GMT From: Pavlin Radoslavov Message-Id: <200501191918.j0JJImp7008361@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 19:18:48 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: * Add missing text about the ordering of the XRLs originated by the rtrmgr. * Add text describing the %help and %deprecated template commands. Revision Changes Path 1.25 +32 -1 xorp/docs/rtrmgr/rtrmgr.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Wed Jan 19 19:23:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 11:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0JJO1mp058388 for ; Wed, 19 Jan 2005 11:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJO1IY061816 for ; Wed, 19 Jan 2005 11:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJO16p019419; Wed, 19 Jan 2005 11:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJNK6p019388 for ; Wed, 19 Jan 2005 11:23:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJNJIY061814 for ; Wed, 19 Jan 2005 11:23:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0JJNJgB008439 for ; Wed, 19 Jan 2005 11:23:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0JJNJOS008438 for xorp-cvs@icir.org; Wed, 19 Jan 2005 19:23:19 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 19:23:19 GMT From: Pavlin Radoslavov Message-Id: <200501191923.j0JJNJOS008438@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mk Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 19:23:19 UTC XORP CVS repository Modified files: docs/mk Makefile.doc.am Log message: Improve the support for using the doc-related macros when compiling in a directory that is different from the source directory. Note that this is not the final solution. E.g., if the Latex file includes a file with a figure, unlike C/C++ compilers we cannot use the equivalent -I to specify the directory to search for the included file. A hackish work-around would be to create temporary symbolic links to the directories with the figures, bib files, etc. Revision Changes Path 1.3 +28 -7 xorp/docs/mk/Makefile.doc.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Wed Jan 19 19:25:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 11:26:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0JJQ2Kg058815 for ; Wed, 19 Jan 2005 11:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJQ2IY061848 for ; Wed, 19 Jan 2005 11:26:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJQ16p019491; Wed, 19 Jan 2005 11:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JJPs6p019481 for ; Wed, 19 Jan 2005 11:25:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JJPsIY061846 for ; Wed, 19 Jan 2005 11:25:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0JJPswK008857 for ; Wed, 19 Jan 2005 11:25:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0JJPslW008856 for xorp-cvs@icir.org; Wed, 19 Jan 2005 19:25:54 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 19:25:54 GMT From: Pavlin Radoslavov Message-Id: <200501191925.j0JJPslW008856@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea xorp/docs/libxipc xorp/docs/libxorp xorp/docs/mfea xorp/docs/mld6igmp xorp/docs/multicast xorp/docs/pim xorp/docs/pim_testsuite xorp/docs/rib xorp/docs/rtrmgr ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 19:25:54 UTC XORP CVS repository Modified files: docs/bgp Makefile.in docs/design_arch Makefile.in docs/fea Makefile.in docs/libxipc Makefile.in docs/libxorp Makefile.in docs/mfea Makefile.in docs/mld6igmp Makefile.in docs/multicast Makefile.in docs/pim Makefile.in docs/pim_testsuite Makefile.in docs/rib Makefile.in docs/rtrmgr Makefile.in docs/slides/status_2004_02 Makefile.in docs/snmp Makefile.in docs/test_harness Makefile.in docs/user_manual Makefile.in docs/xorpdev_101 Makefile.in Log message: Re-generate the Makefile.in doc files after docs/mk/Makefile.doc.am was updated. Revision Changes Path 1.18 +27 -6 xorp/docs/bgp/Makefile.in 1.19 +27 -6 xorp/docs/design_arch/Makefile.in 1.19 +27 -6 xorp/docs/fea/Makefile.in 1.20 +27 -6 xorp/docs/libxipc/Makefile.in 1.19 +27 -6 xorp/docs/libxorp/Makefile.in 1.18 +27 -6 xorp/docs/mfea/Makefile.in 1.18 +27 -6 xorp/docs/mld6igmp/Makefile.in 1.18 +27 -6 xorp/docs/multicast/Makefile.in 1.18 +27 -6 xorp/docs/pim/Makefile.in 1.33 +27 -6 xorp/docs/pim_testsuite/Makefile.in 1.18 +27 -6 xorp/docs/rib/Makefile.in 1.20 +27 -6 xorp/docs/rtrmgr/Makefile.in 1.6 +27 -6 xorp/docs/slides/status_2004_02/Makefile.in 1.19 +27 -6 xorp/docs/snmp/Makefile.in 1.18 +27 -6 xorp/docs/test_harness/Makefile.in 1.8 +27 -6 xorp/docs/user_manual/Makefile.in 1.6 +27 -6 xorp/docs/xorpdev_101/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Wed Jan 19 23:24:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 15:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0JNP122014194 for ; Wed, 19 Jan 2005 15:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JNP1IY064420 for ; Wed, 19 Jan 2005 15:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JNP16p027440; Wed, 19 Jan 2005 15:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0JNO46p027418 for ; Wed, 19 Jan 2005 15:24:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0JNO4IY064409 for ; Wed, 19 Jan 2005 15:24:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0JNO3lF011260 for ; Wed, 19 Jan 2005 15:24:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0JNO3XZ011259 for xorp-cvs@icir.org; Wed, 19 Jan 2005 23:24:03 GMT (envelope-from pavlin) Date: Wed, 19 Jan 2005 23:24:03 GMT From: Pavlin Radoslavov Message-Id: <200501192324.j0JNO3XZ011259@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-19 23:24:03 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_click.cc fticonfig_table_get_click.cc Log message: Add a comment clarifying why Click is the primary method to get the forwarding entries info. Revision Changes Path 1.7 +5 -1 xorp/fea/fticonfig_entry_get_click.cc 1.8 +5 -1 xorp/fea/fticonfig_table_get_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Thu Jan 20 00:39:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 16:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0K0e1Ps032531 for ; Wed, 19 Jan 2005 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0e1IY065240 for ; Wed, 19 Jan 2005 16:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0e16p000268; Wed, 19 Jan 2005 16:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0dt6p000256 for ; Wed, 19 Jan 2005 16:39:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0dtIY065235 for ; Wed, 19 Jan 2005 16:39:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0K0dtAA012153 for ; Wed, 19 Jan 2005 16:39:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0K0dtsc012152 for xorp-cvs@icir.org; Thu, 20 Jan 2005 00:39:55 GMT (envelope-from pavlin) Date: Thu, 20 Jan 2005 00:39:55 GMT From: Pavlin Radoslavov Message-Id: <200501200039.j0K0dtsc012152@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-20 00:39:54 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a FEA release note. Revision Changes Path 1.58 +2 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Thu Jan 20 00:43:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 16:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0K0i1xY033517 for ; Wed, 19 Jan 2005 16:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0i1IY065285 for ; Wed, 19 Jan 2005 16:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0i16p000370; Wed, 19 Jan 2005 16:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0hJ6p000343 for ; Wed, 19 Jan 2005 16:43:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0hJIY065279 for ; Wed, 19 Jan 2005 16:43:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0K0hJse012322 for ; Wed, 19 Jan 2005 16:43:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0K0hJYc012321 for xorp-cvs@icir.org; Thu, 20 Jan 2005 00:43:19 GMT (envelope-from pavlin) Date: Thu, 20 Jan 2005 00:43:19 GMT From: Pavlin Radoslavov Message-Id: <200501200043.j0K0hJYc012321@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-20 00:43:19 UTC XORP CVS repository Modified files: fea click_socket.cc click_socket.hh fticonfig.cc fticonfig.hh fticonfig_entry_set_click.cc fticonfig_table_set_click.cc xrl_target.cc xrl_target.hh xrl/interfaces fea_click.xif fea_click_xif.cc fea_click_xif.hh xrl/targets fea.xrls fea_base.cc fea_base.hh Log message: Implement a new FEA Click XRL that can be used to enable/disable duplicating the Click routes to the system kernel: enable_duplicate_routes_to_kernel ? enable:bool Revision Changes Path 1.18 +2 -1 xorp/fea/click_socket.cc 1.16 +19 -1 xorp/fea/click_socket.hh 1.39 +16 -1 xorp/fea/fticonfig.cc 1.32 +9 -1 xorp/fea/fticonfig.hh 1.18 +5 -2 xorp/fea/fticonfig_entry_set_click.cc 1.6 +5 -2 xorp/fea/fticonfig_table_set_click.cc 1.68 +19 -1 xorp/fea/xrl_target.cc 1.50 +11 -1 xorp/fea/xrl_target.hh 1.4 +9 -1 xorp/xrl/interfaces/fea_click.xif 1.6 +33 -1 xorp/xrl/interfaces/fea_click_xif.cc 1.4 +24 -1 xorp/xrl/interfaces/fea_click_xif.hh 1.48 +9 -1 xorp/xrl/targets/fea.xrls 1.52 +31 -1 xorp/xrl/targets/fea_base.cc 1.54 +15 -1 xorp/xrl/targets/fea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Thu Jan 20 00:45:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 16:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0K0k1Ib034024 for ; Wed, 19 Jan 2005 16:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0k1IY065329 for ; Wed, 19 Jan 2005 16:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0k16p000438; Wed, 19 Jan 2005 16:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0jb6p000424 for ; Wed, 19 Jan 2005 16:45:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0jbIY065324 for ; Wed, 19 Jan 2005 16:45:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0K0jbjM012492 for ; Wed, 19 Jan 2005 16:45:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0K0jbre012491 for xorp-cvs@icir.org; Thu, 20 Jan 2005 00:45:37 GMT (envelope-from pavlin) Date: Thu, 20 Jan 2005 00:45:37 GMT From: Pavlin Radoslavov Message-Id: <200501200045.j0K0jbre012491@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/cli/libtecla xorp/etc/templates xorp/mibs xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-20 00:45:37 UTC XORP CVS repository Modified files: . configure cli/libtecla configure etc/templates fea.tp mibs configure rtrmgr config.boot.sample Log message: Add a new FEA Click configuration statement: duplicate-routes-to-kernel: bool It can be used to enable/disable duplicating the Click routes to the system kernel. The default is false (i.e., the routes are not duplicated). Revision Changes Path 1.8 +319 -668 xorp/cli/libtecla/configure 1.138 +1009 -1731 xorp/configure 1.30 +8 -1 xorp/etc/templates/fea.tp 1.5 +582 -1147 xorp/mibs/configure 1.21 +7 -1 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Wed Jan 19 16:51:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 16:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0K0q11a035461 for ; Wed, 19 Jan 2005 16:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0q0IY065403 for ; Wed, 19 Jan 2005 16:52:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0q06p000608; Wed, 19 Jan 2005 16:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K0pF6p000593 for ; Wed, 19 Jan 2005 16:51:15 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K0pFIY065398; Wed, 19 Jan 2005 16:51:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id j0K0pFpV089802; Wed, 19 Jan 2005 16:51:15 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200501200051.j0K0pFpV089802@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp xorp/cli/libtecla xorp/etc/templates xorp/mibs xorp/rtrmgr In-Reply-To: Message from Pavlin Radoslavov of "Thu, 20 Jan 2005 00:45:37 GMT." <200501200045.j0K0jbre012491@xorpc.icir.org> Date: Wed, 19 Jan 2005 16:51:15 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2005-01-20 00:45:37 UTC > > XORP CVS repository > > > Modified files: > . configure > cli/libtecla configure > etc/templates fea.tp > mibs configure > rtrmgr config.boot.sample > > Log message: > Add a new FEA Click configuration statement: > > duplicate-routes-to-kernel: bool > > It can be used to enable/disable duplicating the Click routes > to the system kernel. > The default is false (i.e., the routes are not duplicated). > > Revision Changes Path > 1.8 +319 -668 xorp/cli/libtecla/configure > 1.138 +1009 -1731 xorp/configure > 1.30 +8 -1 xorp/etc/templates/fea.tp > 1.5 +582 -1147 xorp/mibs/configure > 1.21 +7 -1 xorp/rtrmgr/config.boot.sample Opps, the "configure" files were committed by accident, so the above log message doesn't apply to them. The reason that the new committed configure files are different from their previous version in the CVS is because a different set of autoconf/automake tools has been used for the previous commit. Pavlin > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Thu Jan 20 02:43:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 19 Jan 2005 18:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0K2i14S063678 for ; Wed, 19 Jan 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K2i11x067356 for ; Wed, 19 Jan 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K2i16p003935; Wed, 19 Jan 2005 18:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0K2hE6p003900 for ; Wed, 19 Jan 2005 18:43:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0K2hE1x067350 for ; Wed, 19 Jan 2005 18:43:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0K2hEGT034436 for ; Wed, 19 Jan 2005 18:43:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0K2hEsk034435 for xorp-cvs@icir.org; Thu, 20 Jan 2005 02:43:14 GMT (envelope-from pavlin) Date: Thu, 20 Jan 2005 02:43:14 GMT From: Pavlin Radoslavov Message-Id: <200501200243.j0K2hEsk034435@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-20 02:43:14 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc Log message: Bug fix: Rewrite few XLOG_ASSERT() checks which test whether the ifname of a route to add/delete is in the FEA configuration iftree. Those checks are part of the code that tries to figure-out whether the route to add/delete is a discard route. Now the check is more careful: * If the interface name is an empty string (legal, because we can specify only the next-hop router), then this is not a discard route. * If we try to delete a route, and if the interface name is not in the FEA configuration iftree, then assume this is not a discard route. This situation may happen on startup when the FEA doesn't have any iftree information yet, but tries to pull-out from the kernel all XORP leftover routes. Revision Changes Path 1.20 +44 -25 xorp/fea/fticonfig_entry_set_netlink.cc 1.24 +20 -12 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 01:59:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Jan 2005 18:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0L20181045310 for ; Thu, 20 Jan 2005 18:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L2011x083989 for ; Thu, 20 Jan 2005 18:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L2009i015330; Thu, 20 Jan 2005 18:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L1xo9i015324 for ; Thu, 20 Jan 2005 17:59:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L1xo1x083976 for ; Thu, 20 Jan 2005 17:59:50 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L1xo4i055410 for ; Thu, 20 Jan 2005 17:59:50 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L1xoGH055409 for xorp-cvs@icir.org; Fri, 21 Jan 2005 01:59:50 GMT (envelope-from atanu) Date: Fri, 21 Jan 2005 01:59:50 GMT From: Atanu Ghosh Message-Id: <200501210159.j0L1xoGH055409@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-21 01:59:50 UTC XORP CVS repository Modified files: libxipc finder_tcp.cc finder_xrl_target.cc header.cc xrl_atom.cc Log message: Casts for printing ints and unsigned ints. Revision Changes Path 1.20 +2 -2 xorp/libxipc/finder_tcp.cc 1.20 +3 -2 xorp/libxipc/finder_xrl_target.cc 1.6 +5 -3 xorp/libxipc/header.cc 1.16 +10 -8 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 02:40:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Jan 2005 18:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0L2f1AF063895 for ; Thu, 20 Jan 2005 18:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L2f11x084419 for ; Thu, 20 Jan 2005 18:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L2f19i016244; Thu, 20 Jan 2005 18:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L2e29i016218 for ; Thu, 20 Jan 2005 18:40:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L2e21x084391 for ; Thu, 20 Jan 2005 18:40:02 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L2e2m9055785 for ; Thu, 20 Jan 2005 18:40:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L2e1FR055784 for xorp-cvs@icir.org; Fri, 21 Jan 2005 02:40:01 GMT (envelope-from atanu) Date: Fri, 21 Jan 2005 02:40:01 GMT From: Atanu Ghosh Message-Id: <200501210240.j0L2e1FR055784@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-21 02:40:01 UTC XORP CVS repository Modified files: libxipc xrl_router.cc Log message: If a send fails, don't dispatch the callback as well. This is the documented behaviour in the error handling document. Note: the patch suggested was not used. http://www.xorp.org/bugzilla/show_bug.cgi?id=34 Revision Changes Path 1.43 +9 -4 xorp/libxipc/xrl_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 03:25:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Jan 2005 19:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0L3Q16T098637 for ; Thu, 20 Jan 2005 19:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L3Q11x084892 for ; Thu, 20 Jan 2005 19:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L3Q19i017226; Thu, 20 Jan 2005 19:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L3P79i017175 for ; Thu, 20 Jan 2005 19:25:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L3P71x084880 for ; Thu, 20 Jan 2005 19:25:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L3P7fG056128 for ; Thu, 20 Jan 2005 19:25:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L3P7a5056127 for xorp-cvs@icir.org; Fri, 21 Jan 2005 03:25:07 GMT (envelope-from atanu) Date: Fri, 21 Jan 2005 03:25:07 GMT From: Atanu Ghosh Message-Id: <200501210325.j0L3P7a5056127@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-01-21 03:25:06 UTC XORP CVS repository Modified files: rib main_rib.cc rib_manager.cc vifmanager.cc Log message: Fix to allow the RIB to shutdown properly. http://www.xorp.org/bugzilla/show_bug.cgi?id=65 Respond to all possible values of ServiceStatus. Revision Changes Path 1.24 +2 -2 xorp/rib/main_rib.cc 1.44 +37 -13 xorp/rib/rib_manager.cc 1.35 +3 -2 xorp/rib/vifmanager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 07:42:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 20 Jan 2005 23:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0L7h1Pd052486 for ; Thu, 20 Jan 2005 23:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L7h11x087779 for ; Thu, 20 Jan 2005 23:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L7h19i023926; Thu, 20 Jan 2005 23:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L7gP9i023907 for ; Thu, 20 Jan 2005 23:42:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L7gO1x087776 for ; Thu, 20 Jan 2005 23:42:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L7gOHH058612 for ; Thu, 20 Jan 2005 23:42:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L7gOMu058611 for xorp-cvs@icir.org; Fri, 21 Jan 2005 07:42:24 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 07:42:24 GMT From: Pavlin Radoslavov Message-Id: <200501210742.j0L7gOMu058611@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 07:42:24 UTC XORP CVS repository Modified files: rtrmgr lex.boot.cc lex.opcmd.cc lex.tplt.cc op_commands.ll template.ll Log message: Allow "'" to be part of a string in the rtrmgr templates. Revision Changes Path 1.8 +0 -0 xorp/rtrmgr/lex.boot.cc 1.8 +1 -1 xorp/rtrmgr/lex.opcmd.cc 1.8 +1 -1 xorp/rtrmgr/lex.tplt.cc 1.10 +1 -1 xorp/rtrmgr/op_commands.ll 1.12 +1 -1 xorp/rtrmgr/template.ll _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 09:41:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 01:42:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0L9g0su075766 for ; Fri, 21 Jan 2005 01:42:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L9g01x089031 for ; Fri, 21 Jan 2005 01:42:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L9g09i026917; Fri, 21 Jan 2005 01:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L9fZ9i026905 for ; Fri, 21 Jan 2005 01:41:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L9fZ1x089029 for ; Fri, 21 Jan 2005 01:41:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L9fZan059772 for ; Fri, 21 Jan 2005 01:41:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L9fZul059771 for xorp-cvs@icir.org; Fri, 21 Jan 2005 09:41:35 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 09:41:35 GMT From: Pavlin Radoslavov Message-Id: <200501210941.j0L9fZul059771@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 09:41:35 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: * Check the config tree inside the MasterConfigTree constructor, and throw an error if the check fails. * Fix an XLOG_ERROR() string. Revision Changes Path 1.43 +6 -2 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 09:59:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 02:00:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0LA01PS079559 for ; Fri, 21 Jan 2005 02:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LA001x089365 for ; Fri, 21 Jan 2005 02:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LA009i027298; Fri, 21 Jan 2005 02:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0L9xE9i027264 for ; Fri, 21 Jan 2005 01:59:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0L9xD1x089334 for ; Fri, 21 Jan 2005 01:59:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0L9xDax059959 for ; Fri, 21 Jan 2005 01:59:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0L9xDUV059958 for xorp-cvs@icir.org; Fri, 21 Jan 2005 09:59:13 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 09:59:13 GMT From: Pavlin Radoslavov Message-Id: <200501210959.j0L9xDUV059958@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 09:59:13 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: Add an early check to ConfigTreeNode::check_config_tree() that the child nodes are not deprecated. We need this early check to print a better error message if, say, a mandatory child node has been renamed and the old one has been deprecated. Revision Changes Path 1.60 +19 -1 xorp/rtrmgr/conf_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 18:50:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 10:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0LIp1MM086689 for ; Fri, 21 Jan 2005 10:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LIp11x096983 for ; Fri, 21 Jan 2005 10:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LIp09i014168; Fri, 21 Jan 2005 10:51:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LIoQ9i014149 for ; Fri, 21 Jan 2005 10:50:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LIoQ1x096981 for ; Fri, 21 Jan 2005 10:50:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0LIoQhp066793 for ; Fri, 21 Jan 2005 10:50:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0LIoQEs066792 for xorp-cvs@icir.org; Fri, 21 Jan 2005 18:50:26 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 18:50:26 GMT From: Pavlin Radoslavov Message-Id: <200501211850.j0LIoQEs066792@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 18:50:26 UTC XORP CVS repository Modified files: etc/templates static_routes.tp Log message: Deprecate leaf node "nexthop" and replace it with "next-hop". The reason for the renaming is for consistency with the rest of the XORP configuration and the configuration of other routing vendors. Revision Changes Path 1.14 +41 -13 xorp/etc/templates/static_routes.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:19 2005 Subject: No subject Fri Jan 21 20:44:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 12:45:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0LKj3QG009974 for ; Fri, 21 Jan 2005 12:45:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LKj21x098548 for ; Fri, 21 Jan 2005 12:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LKj29i018274; Fri, 21 Jan 2005 12:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LKiu9i018263 for ; Fri, 21 Jan 2005 12:44:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LKiu1x098539 for ; Fri, 21 Jan 2005 12:44:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0LKiuO6068361 for ; Fri, 21 Jan 2005 12:44:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0LKiugc068360 for xorp-cvs@icir.org; Fri, 21 Jan 2005 20:44:56 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 20:44:56 GMT From: Pavlin Radoslavov Message-Id: <200501212044.j0LKiugc068360@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 20:44:56 UTC XORP CVS repository Modified files: etc/templates static_routes.tp Log message: Add configuration support for interface-specific static routes. Unlike the "typical" routes where the next-hop is specified by the IP address of the next-hop router, the interface-specific routes specify the network interface and vif name. Example: interface-route4 10.10.0.0/16 { next-hop-interface: "eth2" next-hop-vif: "eth2" metric: 10 } The corresponding IPv6 and multicast-specific nodes are: interface-route6, mrib-interface-route4, and mrib-interface-route6 Revision Changes Path 1.15 +131 -6 xorp/etc/templates/static_routes.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Fri Jan 21 20:48:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 12:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0LKn1eY010832 for ; Fri, 21 Jan 2005 12:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LKn11x098608 for ; Fri, 21 Jan 2005 12:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LKn19i018458; Fri, 21 Jan 2005 12:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LKmP9i018443 for ; Fri, 21 Jan 2005 12:48:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LKmP1x098595 for ; Fri, 21 Jan 2005 12:48:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0LKmPtb068468 for ; Fri, 21 Jan 2005 12:48:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0LKmPc5068467 for xorp-cvs@icir.org; Fri, 21 Jan 2005 20:48:25 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 20:48:25 GMT From: Pavlin Radoslavov Message-Id: <200501212048.j0LKmPc5068467@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 20:48:25 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for static routes. Revision Changes Path 1.59 +3 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Fri Jan 21 22:02:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 14:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0LM31CG025445 for ; Fri, 21 Jan 2005 14:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LM311x099395 for ; Fri, 21 Jan 2005 14:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LM319i020947; Fri, 21 Jan 2005 14:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0LM259i020929 for ; Fri, 21 Jan 2005 14:02:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0LM241x099377 for ; Fri, 21 Jan 2005 14:02:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0LM24S5069274 for ; Fri, 21 Jan 2005 14:02:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0LM24ll069273 for xorp-cvs@icir.org; Fri, 21 Jan 2005 22:02:04 GMT (envelope-from pavlin) Date: Fri, 21 Jan 2005 22:02:04 GMT From: Pavlin Radoslavov Message-Id: <200501212202.j0LM24ll069273@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-21 22:02:04 UTC XORP CVS repository Modified files: rib rib_manager.cc Log message: Bug fix: if the RIB is in process of shutting-down, the process return code should be PROC_SHUTDOWN instead of PROC_NOT_READY. Otherwise, the rtrmgr will be confused and will attempt to abnormally kill the RIB during shutdown. Revision Changes Path 1.45 +2 -2 xorp/rib/rib_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 04:53:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 20:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M4s1Xe002165 for ; Fri, 21 Jan 2005 20:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M4s11x003162 for ; Fri, 21 Jan 2005 20:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M4s1ip002725; Fri, 21 Jan 2005 20:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M4rKip002707 for ; Fri, 21 Jan 2005 20:53:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M4rK1x003160 for ; Fri, 21 Jan 2005 20:53:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M4rK2b089802 for ; Fri, 21 Jan 2005 20:53:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M4rKMD089801 for xorp-cvs@icir.org; Sat, 22 Jan 2005 04:53:20 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 04:53:20 GMT From: Pavlin Radoslavov Message-Id: <200501220453.j0M4rKMD089801@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 04:53:20 UTC XORP CVS repository Modified files: libxorp test_vif.cc vif.cc vif.hh Log message: Rename method VifAddr:is_same_addr() to is_my_addr() Revision Changes Path 1.7 +5 -5 xorp/libxorp/test_vif.cc 1.14 +5 -5 xorp/libxorp/vif.cc 1.9 +3 -3 xorp/libxorp/vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 06:02:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 22:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M631EZ005701 for ; Fri, 21 Jan 2005 22:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M6311x003767 for ; Fri, 21 Jan 2005 22:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M631ip004047; Fri, 21 Jan 2005 22:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M62Hip004025 for ; Fri, 21 Jan 2005 22:02:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M62G1x003756 for ; Fri, 21 Jan 2005 22:02:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M62GTh090521 for ; Fri, 21 Jan 2005 22:02:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M62GFO090520 for xorp-cvs@icir.org; Sat, 22 Jan 2005 06:02:16 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 06:02:16 GMT From: Pavlin Radoslavov Message-Id: <200501220602.j0M62GFO090520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 06:02:16 UTC XORP CVS repository Modified files: rib rib.cc Log message: Fix some comments. Revision Changes Path 1.44 +4 -6 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 06:59:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 23:00:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M700cD007569 for ; Fri, 21 Jan 2005 23:00:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M7001x004182 for ; Fri, 21 Jan 2005 23:00:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M700ip005104; Fri, 21 Jan 2005 23:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M6xhip005093 for ; Fri, 21 Jan 2005 22:59:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M6xg1x004169 for ; Fri, 21 Jan 2005 22:59:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M6xg9l090984 for ; Fri, 21 Jan 2005 22:59:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M6xg7H090983 for xorp-cvs@icir.org; Sat, 22 Jan 2005 06:59:42 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 06:59:42 GMT From: Pavlin Radoslavov Message-Id: <200501220659.j0M6xg7H090983@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 06:59:42 UTC XORP CVS repository Modified files: rtrmgr config.boot.sample Log message: Rename "nexthop" -> "next-hop" to reflect the change in the static routes configuration. Revision Changes Path 1.22 +5 -5 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 07:05:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 23:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M761AN007717 for ; Fri, 21 Jan 2005 23:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M7611x004257 for ; Fri, 21 Jan 2005 23:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M761ip005241; Fri, 21 Jan 2005 23:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M75gip005220 for ; Fri, 21 Jan 2005 23:05:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M75g1x004254 for ; Fri, 21 Jan 2005 23:05:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M75g31091101 for ; Fri, 21 Jan 2005 23:05:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M75gWL091100 for xorp-cvs@icir.org; Sat, 22 Jan 2005 07:05:42 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 07:05:42 GMT From: Pavlin Radoslavov Message-Id: <200501220705.j0M75gWL091100@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 07:05:42 UTC XORP CVS repository Modified files: libxorp vif.cc vif.hh Log message: * Fix the implementation of VifAddr::is_same_subnet(const IPvXNet& ipvxnet) so now it tests if a given subnet address is a subset of the VifAddr subnet address. * Improve the implementation of VifAddr::is_same_subnet(const IPvX& ipvx_addr) * Fix some of the kdoc comments accordingly. Revision Changes Path 1.15 +3 -5 xorp/libxorp/vif.cc 1.10 +18 -14 xorp/libxorp/vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 07:06:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 21 Jan 2005 23:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M7717t007774 for ; Fri, 21 Jan 2005 23:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M7711x004268 for ; Fri, 21 Jan 2005 23:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M771ip005277; Fri, 21 Jan 2005 23:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M76oip005267 for ; Fri, 21 Jan 2005 23:06:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M76n1x004265 for ; Fri, 21 Jan 2005 23:06:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M76n76091159 for ; Fri, 21 Jan 2005 23:06:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M76nPH091158 for xorp-cvs@icir.org; Sat, 22 Jan 2005 07:06:49 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 07:06:49 GMT From: Pavlin Radoslavov Message-Id: <200501220706.j0M76nPH091158@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 07:06:49 UTC XORP CVS repository Modified files: libxorp test_vif.cc Log message: * Add an extra test whether a subnet address is a subset of one of the subnet addresses of a vif. * Fix some of the comments. Revision Changes Path 1.8 +15 -4 xorp/libxorp/test_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 09:34:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Jan 2005 01:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M9Z1KX016937 for ; Sat, 22 Jan 2005 01:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M9Z11x005550 for ; Sat, 22 Jan 2005 01:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M9Z1ip008565; Sat, 22 Jan 2005 01:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M9YPip008552 for ; Sat, 22 Jan 2005 01:34:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M9YP1x005545 for ; Sat, 22 Jan 2005 01:34:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M9YPcw017034 for ; Sat, 22 Jan 2005 01:34:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M9YPB2017033 for xorp-cvs@icir.org; Sat, 22 Jan 2005 09:34:25 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 09:34:25 GMT From: Pavlin Radoslavov Message-Id: <200501220934.j0M9YPB2017033@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 09:34:25 UTC XORP CVS repository Modified files: rtrmgr template_tree_node.cc template_tree_node.hh Log message: Add new method: TemplateTreeNode::find_first_deprecated_ancestor() Revision Changes Path 1.33 +19 -1 xorp/rtrmgr/template_tree_node.cc 1.22 +7 -1 xorp/rtrmgr/template_tree_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Sat Jan 22 09:36:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 22 Jan 2005 01:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0M9b1w7017057 for ; Sat, 22 Jan 2005 01:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M9b11x005591 for ; Sat, 22 Jan 2005 01:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M9b1ip008614; Sat, 22 Jan 2005 01:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0M9acip008605 for ; Sat, 22 Jan 2005 01:36:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0M9ab1x005589 for ; Sat, 22 Jan 2005 01:36:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0M9abmu017114 for ; Sat, 22 Jan 2005 01:36:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0M9abEn017113 for xorp-cvs@icir.org; Sat, 22 Jan 2005 09:36:37 GMT (envelope-from pavlin) Date: Sat, 22 Jan 2005 09:36:37 GMT From: Pavlin Radoslavov Message-Id: <200501220936.j0M9abEn017113@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-22 09:36:37 UTC XORP CVS repository Modified files: rtrmgr cli.cc Log message: Bug fix: Test if some part of the configuration path is deprecated when we attempt to create a long path of nodes. E.g., now xorpsh can print the appropriate error if we use the following command: create protocols static route4 10.2.2.200/32 nexthop 10.4.0.100 and "nexthop" is deprecated. Revision Changes Path 1.62 +14 -1 xorp/rtrmgr/cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:20 2005 Subject: No subject Mon Jan 24 21:03:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Jan 2005 13:04:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0OL42TJ093544 for ; Mon, 24 Jan 2005 13:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0OL421x045834 for ; Mon, 24 Jan 2005 13:04:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0OL42Ip000142; Mon, 24 Jan 2005 13:04:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0OL31Ip000104 for ; Mon, 24 Jan 2005 13:03:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0OL311x045822 for ; Mon, 24 Jan 2005 13:03:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0OL31ea048039 for ; Mon, 24 Jan 2005 13:03:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0OL31XZ048038 for xorp-cvs@icir.org; Mon, 24 Jan 2005 21:03:01 GMT (envelope-from pavlin) Date: Mon, 24 Jan 2005 21:03:01 GMT From: Pavlin Radoslavov Message-Id: <200501242103.j0OL31XZ048038@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-24 21:03:01 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for RIB. Revision Changes Path 1.60 +3 -1 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:21 2005 Subject: No subject Tue Jan 25 00:52:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Jan 2005 16:53:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0P0r2RO048650 for ; Mon, 24 Jan 2005 16:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0P0r21x048597 for ; Mon, 24 Jan 2005 16:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0P0r1Ip008182; Mon, 24 Jan 2005 16:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0P0qXIp008155 for ; Mon, 24 Jan 2005 16:52:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0P0qX1x048592 for ; Mon, 24 Jan 2005 16:52:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0P0qXfd063503 for ; Mon, 24 Jan 2005 16:52:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0P0qXPw063502 for xorp-cvs@icir.org; Tue, 25 Jan 2005 00:52:33 GMT (envelope-from pavlin) Date: Tue, 25 Jan 2005 00:52:33 GMT From: Pavlin Radoslavov Message-Id: <200501250052.j0P0qXPw063502@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-25 00:52:33 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc Log message: On startup, explicitly wait until the network interfaces information is received from the MFEA before changing status that we are ready to be configured. Otherwise, there is a race condition the rtrmgr will attempt to configure interface foo within a multicast-related process (MLD6IGMP or PIM), but that process hasn't received yet the information about that interface from the MFEA. Bug found by: "VideoIP" Revision Changes Path 1.30 +17 -3 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.59 +16 -3 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:21 2005 Subject: No subject Tue Jan 25 01:47:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 24 Jan 2005 17:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0P1m1Hs061872 for ; Mon, 24 Jan 2005 17:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0P1m11x049236 for ; Mon, 24 Jan 2005 17:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0P1m1Ip009749; Mon, 24 Jan 2005 17:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0P1l1Ip009710 for ; Mon, 24 Jan 2005 17:47:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0P1l01x049226 for ; Mon, 24 Jan 2005 17:47:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0P1l0cF068894 for ; Mon, 24 Jan 2005 17:47:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0P1l0YI068893 for xorp-cvs@icir.org; Tue, 25 Jan 2005 01:47:00 GMT (envelope-from pavlin) Date: Tue, 25 Jan 2005 01:47:00 GMT From: Pavlin Radoslavov Message-Id: <200501250147.j0P1l0YI068893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-25 01:47:00 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in Log message: Bug fix: Replace $(top_builddir) with $(top_srcdir) when referring to source files in other directories. Revision Changes Path 1.32 +7 -7 xorp/pim/Makefile.am 1.46 +31 -31 xorp/pim/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:21 2005 Subject: No subject Wed Jan 26 02:45:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 25 Jan 2005 18:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0Q2k1Bg076925 for ; Tue, 25 Jan 2005 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0Q2k11x067202 for ; Tue, 25 Jan 2005 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0Q2k1Ip021024; Tue, 25 Jan 2005 18:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0Q2jYIp021008 for ; Tue, 25 Jan 2005 18:45:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0Q2jY1x067194 for ; Tue, 25 Jan 2005 18:45:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0Q2jYN9049975 for ; Tue, 25 Jan 2005 18:45:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0Q2jYGt049974 for xorp-cvs@icir.org; Wed, 26 Jan 2005 02:45:34 GMT (envelope-from pavlin) Date: Wed, 26 Jan 2005 02:45:34 GMT From: Pavlin Radoslavov Message-Id: <200501260245.j0Q2jYGt049974@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-26 02:45:33 UTC XORP CVS repository Modified files: libxipc xrl_pf_stcp.cc xrl_pf_stcp.hh Log message: * Add an optional flag "verbose" to method XrlPFSTCPSender::die() with default value of "true". If it is false, then XrlPFSTCPSender::die() won't print an XLOG_ERROR() message. * Silence the die("end of file") error message inside XrlPFSTCPSender::read_event() which happens because of the normal BufferedAsyncReader::END_OF_FILE event when the other side of the TCP connection closes it. This eliminates the error messages like the one below during graceful shutdown of the rtrmgr: [ 2005/01/25 17:35:45 ERROR xorp_rtrmgr:2100 XRL +628 xrl_pf_stcp.cc die ] XrlPFSTCPSender died: end of file Revision Changes Path 1.39 +5 -4 xorp/libxipc/xrl_pf_stcp.cc 1.21 +2 -2 xorp/libxipc/xrl_pf_stcp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 00:22:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Jan 2005 16:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0R0N1DB057004 for ; Wed, 26 Jan 2005 16:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R0N11x083546 for ; Wed, 26 Jan 2005 16:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R0N1Ip002071; Wed, 26 Jan 2005 16:23:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R0MKIp002041 for ; Wed, 26 Jan 2005 16:22:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R0MJ1x083537 for ; Wed, 26 Jan 2005 16:22:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0R0MJ0S063897 for ; Wed, 26 Jan 2005 16:22:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0R0MJ0Q063896 for xorp-cvs@icir.org; Thu, 27 Jan 2005 00:22:19 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 00:22:19 GMT From: Pavlin Radoslavov Message-Id: <200501270022.j0R0MJ0Q063896@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 00:22:19 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc Log message: Bug fix: when deleting a routing entry in Click, allow the delete to proceed even if we don't have the next-hop info (which in case of Click translates into an outgoing port number of the lookup element). Currently, we don't have the next-hop info when deleting a route, simply because the XRL from the RIB doesn't carry it. In any case, in Click if we use the "remove ADDR/MASK" command to the LinearIPLookup element, then we are going to remove all routes with the same ADDR and MASK. However, in case of XORP+Click we never attempt to install more than route with the same ADDR and MASK, therefore the "remove ADDR/MASK" format is acceptable. Bug found by: Rafael Paoliello Guimaraes Approved by: Atanu Revision Changes Path 1.19 +25 -9 xorp/fea/fticonfig_entry_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 01:36:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Jan 2005 17:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0R1b14W074809 for ; Wed, 26 Jan 2005 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R1b11x084509 for ; Wed, 26 Jan 2005 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R1b1Ip004566; Wed, 26 Jan 2005 17:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R1aFIp004550 for ; Wed, 26 Jan 2005 17:36:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R1aF1x084501 for ; Wed, 26 Jan 2005 17:36:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0R1aE4E064718 for ; Wed, 26 Jan 2005 17:36:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0R1aEUW064717 for xorp-cvs@icir.org; Thu, 27 Jan 2005 01:36:14 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 01:36:14 GMT From: Pavlin Radoslavov Message-Id: <200501270136.j0R1aEUW064717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 01:36:14 UTC XORP CVS repository Modified files: rib/tools show_routes.cc Log message: * Bug fix: Fix a coredump problem when a the RIB returns an error. E.g., when the command is executed like ./show_routes ribin ipv4 unicast connected * Set the process target name to a more unuque name: OLD: "show_routes" NEW: "show_routes<%d>" where %d is expanded to the process ID. * Nits in the ShowRoutesProcessor constructor and destructor Revision Changes Path 1.8 +14 -8 xorp/rib/tools/show_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 01:38:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 26 Jan 2005 17:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0R1d1ZJ075263 for ; Wed, 26 Jan 2005 17:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R1d11x084536 for ; Wed, 26 Jan 2005 17:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R1d1Ip004639; Wed, 26 Jan 2005 17:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0R1c6Ip004617 for ; Wed, 26 Jan 2005 17:38:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0R1c61x084529 for ; Wed, 26 Jan 2005 17:38:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0R1c6Cu064787 for ; Wed, 26 Jan 2005 17:38:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0R1c6ws064786 for xorp-cvs@icir.org; Thu, 27 Jan 2005 01:38:06 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 01:38:06 GMT From: Pavlin Radoslavov Message-Id: <200501270138.j0R1c6ws064786@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 01:38:06 UTC XORP CVS repository Modified files: fea/tools show_interfaces.cc Log message: Change the target name format (where %d expands to the process ID): OLD: "interface_monitor%d" NEW: "interface_monitor<%d>" Revision Changes Path 1.9 +2 -2 xorp/fea/tools/show_interfaces.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 23:29:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 15:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0RNU2Ns044948 for ; Thu, 27 Jan 2005 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNU11x099815 for ; Thu, 27 Jan 2005 15:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNU1Ip013338; Thu, 27 Jan 2005 15:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNTbIp013317 for ; Thu, 27 Jan 2005 15:29:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNTb1x099808 for ; Thu, 27 Jan 2005 15:29:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0RNTa39078876 for ; Thu, 27 Jan 2005 15:29:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0RNTahP078875 for xorp-cvs@icir.org; Thu, 27 Jan 2005 23:29:36 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 23:29:36 GMT From: Pavlin Radoslavov Message-Id: <200501272329.j0RNTahP078875@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 23:29:36 UTC XORP CVS repository Modified files: rib rt_tab_pol_redist.cc Log message: Editorial nits. Revision Changes Path 1.3 +19 -17 xorp/rib/rt_tab_pol_redist.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 23:30:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 15:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0RNV1TN045217 for ; Thu, 27 Jan 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNV11x099842 for ; Thu, 27 Jan 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNV1Ip013372; Thu, 27 Jan 2005 15:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNURIp013357 for ; Thu, 27 Jan 2005 15:30:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNUR1x099834 for ; Thu, 27 Jan 2005 15:30:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0RNUR5I078947 for ; Thu, 27 Jan 2005 15:30:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0RNURqu078946 for xorp-cvs@icir.org; Thu, 27 Jan 2005 23:30:27 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 23:30:27 GMT From: Pavlin Radoslavov Message-Id: <200501272330.j0RNURqu078946@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 23:30:27 UTC XORP CVS repository Modified files: rib rt_tab_merged.cc Log message: Remove an extra space in the "Merged:(..." table names. Revision Changes Path 1.16 +2 -2 xorp/rib/rt_tab_merged.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:22 2005 Subject: No subject Thu Jan 27 23:36:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 15:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0RNb14M046621 for ; Thu, 27 Jan 2005 15:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNb11x099914 for ; Thu, 27 Jan 2005 15:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNb1Ip013569; Thu, 27 Jan 2005 15:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNaMIp013551 for ; Thu, 27 Jan 2005 15:36:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNaM1x099906 for ; Thu, 27 Jan 2005 15:36:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0RNaMXm079046 for ; Thu, 27 Jan 2005 15:36:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0RNaMod079045 for xorp-cvs@icir.org; Thu, 27 Jan 2005 23:36:22 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 23:36:22 GMT From: Pavlin Radoslavov Message-Id: <200501272336.j0RNaMod079045@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 23:36:22 UTC XORP CVS repository Modified files: rib rib.cc Log message: * Plug-in the policy table for connected routes after the redist table. [Previously the policy table was between the origin table and the redist table] Thus the placement of the redist table for connected routes is consistent with the placement of the redist table for other protocols. This fixes a bug when we try to use the show_routes command to show the connected routes: ./show_routes ribin ipv4 unicast connected * Fix a typo in an XLOG_FATAL message: "connected" -> "static" * Editorial nits Revision Changes Path 1.45 +29 -25 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:23 2005 Subject: No subject Thu Jan 27 23:48:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 15:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0RNn2Wp049457 for ; Thu, 27 Jan 2005 15:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNn21x000115 for ; Thu, 27 Jan 2005 15:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNn2Ip013930; Thu, 27 Jan 2005 15:49:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0RNmMIp013899 for ; Thu, 27 Jan 2005 15:48:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0RNmM1x000107 for ; Thu, 27 Jan 2005 15:48:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0RNmLe1079264 for ; Thu, 27 Jan 2005 15:48:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0RNmLfF079263 for xorp-cvs@icir.org; Thu, 27 Jan 2005 23:48:21 GMT (envelope-from pavlin) Date: Thu, 27 Jan 2005 23:48:21 GMT From: Pavlin Radoslavov Message-Id: <200501272348.j0RNmLfF079263@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-27 23:48:21 UTC XORP CVS repository Modified files: libxorp debug.c Log message: Change the type of the argument "line" from "int32_t" to "int", because there is no reason for it to be int32_t. Revision Changes Path 1.5 +2 -2 xorp/libxorp/debug.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:23 2005 Subject: No subject Fri Jan 28 00:35:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 16:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S0a12O060761 for ; Thu, 27 Jan 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S0a11x000643 for ; Thu, 27 Jan 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S0a1Ip015354; Thu, 27 Jan 2005 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S0ZQIp015328 for ; Thu, 27 Jan 2005 16:35:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S0ZQ1x000640 for ; Thu, 27 Jan 2005 16:35:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S0ZPmj079646 for ; Thu, 27 Jan 2005 16:35:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S0ZP7u079645 for xorp-cvs@icir.org; Fri, 28 Jan 2005 00:35:25 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 00:35:25 GMT From: Pavlin Radoslavov Message-Id: <200501280035.j0S0ZP7u079645@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 00:35:25 UTC XORP CVS repository Modified files: . configure configure.in Log message: Change the Windows host_os matching string from "windows*" to "*cygwin". Revision Changes Path 1.139 +1 -1 xorp/configure 1.130 +2 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:23 2005 Subject: No subject Fri Jan 28 02:30:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 18:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S2V1DP085715 for ; Thu, 27 Jan 2005 18:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S2V11x001866 for ; Thu, 27 Jan 2005 18:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S2V1Ip019035; Thu, 27 Jan 2005 18:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S2UHIp019016 for ; Thu, 27 Jan 2005 18:30:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S2UG1x001861 for ; Thu, 27 Jan 2005 18:30:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S2UGrC080408 for ; Thu, 27 Jan 2005 18:30:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S2UGEI080407 for xorp-cvs@icir.org; Fri, 28 Jan 2005 02:30:16 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 02:30:16 GMT From: Pavlin Radoslavov Message-Id: <200501280230.j0S2UGEI080407@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 02:30:16 UTC XORP CVS repository Modified files: mrt max_vifs.h Log message: Include , because it is needed by ip_mroute.h on FreeBSD Revision Changes Path 1.5 +2 -2 xorp/mrt/max_vifs.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:24 2005 Subject: No subject Fri Jan 28 02:41:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 18:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S2g1UV087839 for ; Thu, 27 Jan 2005 18:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S2g11x001981 for ; Thu, 27 Jan 2005 18:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S2g1Ip019345; Thu, 27 Jan 2005 18:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S2fDIp019323 for ; Thu, 27 Jan 2005 18:41:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S2fD1x001977 for ; Thu, 27 Jan 2005 18:41:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S2fCA1080560 for ; Thu, 27 Jan 2005 18:41:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S2fCrj080559 for xorp-cvs@icir.org; Fri, 28 Jan 2005 02:41:12 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 02:41:12 GMT From: Pavlin Radoslavov Message-Id: <200501280241.j0S2fCrj080559@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt xorp/mrt/include Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 02:41:12 UTC XORP CVS repository Modified files: mrt max_vifs.h mrt/include ip_mroute.h Log message: Move #include from mrt/max_vifs.h to mrt/include/ip_mroute.h Revision Changes Path 1.8 +3 -1 xorp/mrt/include/ip_mroute.h 1.6 +1 -2 xorp/mrt/max_vifs.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:24 2005 Subject: No subject Fri Jan 28 03:27:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:28:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3S0lZ097097 for ; Thu, 27 Jan 2005 19:28:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3S01x002423 for ; Thu, 27 Jan 2005 19:28:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3S0Ip020395; Thu, 27 Jan 2005 19:28:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3RuIp020389 for ; Thu, 27 Jan 2005 19:27:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3Rt1x002421 for ; Thu, 27 Jan 2005 19:27:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3Rt13080984 for ; Thu, 27 Jan 2005 19:27:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3Rtaq080983 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:27:55 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:27:55 GMT From: Pavlin Radoslavov Message-Id: <200501280327.j0S3Rtaq080983@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/contrib/ospfd/xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:27:55 UTC XORP CVS repository Modified files: contrib/ospfd/xorp ospfd_xorp.h Log message: Add #include Revision Changes Path 1.4 +3 -0 xorp/contrib/ospfd/xorp/ospfd_xorp.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:24 2005 Subject: No subject Fri Jan 28 03:28:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:29:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3T15d097295 for ; Thu, 27 Jan 2005 19:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3T11x002437 for ; Thu, 27 Jan 2005 19:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3T1Ip020436; Thu, 27 Jan 2005 19:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3SAIp020408 for ; Thu, 27 Jan 2005 19:28:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3SA1x002425 for ; Thu, 27 Jan 2005 19:28:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3SAXB081035 for ; Thu, 27 Jan 2005 19:28:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3S945081034 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:28:09 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:28:09 GMT From: Pavlin Radoslavov Message-Id: <200501280328.j0S3S945081034@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/contrib/ospfd/xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:28:09 UTC XORP CVS repository Modified files: contrib/ospfd/xorp ospfd_xorp.C Log message: Add #include Revision Changes Path 1.9 +2 -0 xorp/contrib/ospfd/xorp/ospfd_xorp.C _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:24 2005 Subject: No subject Fri Jan 28 03:28:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3T2pC097334 for ; Thu, 27 Jan 2005 19:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3T21x002439 for ; Thu, 27 Jan 2005 19:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3T2Ip020449; Thu, 27 Jan 2005 19:29:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3SjIp020419 for ; Thu, 27 Jan 2005 19:28:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3Si1x002435 for ; Thu, 27 Jan 2005 19:28:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3Si6I081080 for ; Thu, 27 Jan 2005 19:28:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3Sigq081079 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:28:44 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:28:44 GMT From: Pavlin Radoslavov Message-Id: <200501280328.j0S3Sigq081079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:28:44 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_rtsock.cc fticonfig_entry_set_rtsock.cc Log message: Add #include Revision Changes Path 1.26 +2 -1 xorp/fea/fticonfig_entry_get_rtsock.cc 1.25 +3 -1 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 03:29:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3U1Ml097521 for ; Thu, 27 Jan 2005 19:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3U01x002458 for ; Thu, 27 Jan 2005 19:30:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3U0Ip020488; Thu, 27 Jan 2005 19:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3TFIp020468 for ; Thu, 27 Jan 2005 19:29:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3TF1x002443 for ; Thu, 27 Jan 2005 19:29:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3TFWg081123 for ; Thu, 27 Jan 2005 19:29:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3TF0u081122 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:29:15 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:29:15 GMT From: Pavlin Radoslavov Message-Id: <200501280329.j0S3TF0u081122@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:29:15 UTC XORP CVS repository Modified files: libcomm test_comm.c Log message: Add a number of include files needed by inet_addr(3) Revision Changes Path 1.7 +7 -1 xorp/libcomm/test_comm.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 03:30:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3V1Ok097751 for ; Thu, 27 Jan 2005 19:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3V11x002485 for ; Thu, 27 Jan 2005 19:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3V1Ip020535; Thu, 27 Jan 2005 19:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3UFIp020503 for ; Thu, 27 Jan 2005 19:30:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3UF1x002479 for ; Thu, 27 Jan 2005 19:30:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3UFod081186 for ; Thu, 27 Jan 2005 19:30:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3UFqt081185 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:30:15 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:30:15 GMT From: Pavlin Radoslavov Message-Id: <200501280330.j0S3UFqt081185@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:30:15 UTC XORP CVS repository Modified files: libxorp xorp.h Log message: Remove and from the list of included files, because they shouldn't be here. Revision Changes Path 1.8 +1 -3 xorp/libxorp/xorp.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 03:34:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3Z1Nd098565 for ; Thu, 27 Jan 2005 19:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3Z11x002520 for ; Thu, 27 Jan 2005 19:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3Z1Ip020682; Thu, 27 Jan 2005 19:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3YPIp020657 for ; Thu, 27 Jan 2005 19:34:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3YP1x002511 for ; Thu, 27 Jan 2005 19:34:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3YPiu081468 for ; Thu, 27 Jan 2005 19:34:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3YPVb081467 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:34:25 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:34:25 GMT From: Pavlin Radoslavov Message-Id: <200501280334.j0S3YPVb081467@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim xorp/xrl/interfaces xorp/xrl/targets xorp/docs/mfea xorp/docs/mfea/figs xorp/docs/multicast xorp/docs/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:34:25 UTC XORP CVS repository Modified files: fea TODO mfea_config.cc mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh xrl_mfea_node.cc xrl_mfea_node.hh xrl_mfea_shell_funcs.sh mld6igmp xrl_mld6igmp_node.hh pim TODO configure_pim pim_node.cc pim_node.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh xrl/interfaces mfea.xif mfea_client.xif mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh xrl/targets mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh docs/mfea mfea_arch.tex docs/mfea/figs mfea_design_overview.eps mfea_design_overview.fig docs/multicast multicast_arch.tex docs/pim pim_arch.tex Log message: * Remove the MRIB support from the MFEA, because now all interested multicast-related parties (namely, PIM-SM) do use the RIB itself. * Update the multicast-related design documentation to reflect the above cleanup. Revision Changes Path 1.5 +4 -40 xorp/docs/mfea/figs/mfea_design_overview.eps 1.3 +0 -14 xorp/docs/mfea/figs/mfea_design_overview.fig 1.14 +8 -34 xorp/docs/mfea/mfea_arch.tex 1.11 +4 -7 xorp/docs/multicast/multicast_arch.tex 1.12 +5 -3 xorp/docs/pim/pim_arch.tex 1.28 +1 -8 xorp/fea/TODO 1.9 +1 -33 xorp/fea/mfea_config.cc 1.41 +1 -363 xorp/fea/mfea_node.cc 1.23 +1 -213 xorp/fea/mfea_node.hh 1.11 +1 -85 xorp/fea/mfea_node_cli.cc 1.3 +1 -2 xorp/fea/mfea_node_cli.hh 1.32 +1 -362 xorp/fea/xrl_mfea_node.cc 1.17 +1 -102 xorp/fea/xrl_mfea_node.hh 1.10 +1 -81 xorp/fea/xrl_mfea_shell_funcs.sh 1.24 +1 -58 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.78 +1 -5 xorp/pim/TODO 1.37 +1 -13 xorp/pim/configure_pim 1.55 +1 -2 xorp/pim/pim_node.cc 1.39 +1 -6 xorp/pim/pim_node.hh 1.44 +2 -7 xorp/pim/test_pim.cc 1.60 +2 -240 xorp/pim/xrl_pim_node.cc 1.46 +1 -69 xorp/pim/xrl_pim_node.hh 1.7 +1 -31 xorp/xrl/interfaces/mfea.xif 1.6 +1 -44 xorp/xrl/interfaces/mfea_client.xif 1.17 +1 -189 xorp/xrl/interfaces/mfea_client_xif.cc 1.15 +1 -126 xorp/xrl/interfaces/mfea_client_xif.hh 1.18 +1 -239 xorp/xrl/interfaces/mfea_xif.cc 1.16 +1 -123 xorp/xrl/interfaces/mfea_xif.hh 1.18 +1 -36 xorp/xrl/targets/mfea.xrls 1.23 +1 -238 xorp/xrl/targets/mfea_base.cc 1.24 +1 -67 xorp/xrl/targets/mfea_base.hh 1.17 +1 -42 xorp/xrl/targets/mld6igmp.xrls 1.22 +1 -165 xorp/xrl/targets/mld6igmp_base.cc 1.23 +1 -83 xorp/xrl/targets/mld6igmp_base.hh 1.39 +1 -42 xorp/xrl/targets/pim.xrls 1.42 +1 -165 xorp/xrl/targets/pim_base.cc 1.45 +1 -83 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 03:58:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 27 Jan 2005 19:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0S3x1p5003318 for ; Thu, 27 Jan 2005 19:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3x11x002752 for ; Thu, 27 Jan 2005 19:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3x1Ip021301; Thu, 27 Jan 2005 19:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0S3wTIp021277 for ; Thu, 27 Jan 2005 19:58:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0S3wT1x002743 for ; Thu, 27 Jan 2005 19:58:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0S3wTBZ081754 for ; Thu, 27 Jan 2005 19:58:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0S3wTNg081753 for xorp-cvs@icir.org; Fri, 28 Jan 2005 03:58:29 GMT (envelope-from pavlin) Date: Fri, 28 Jan 2005 03:58:29 GMT From: Pavlin Radoslavov Message-Id: <200501280358.j0S3wTNg081753@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-28 03:58:29 UTC XORP CVS repository Modified files: libxorp timeval.hh Log message: Use XORP_INT_CAST() as appropriate. Revision Changes Path 1.19 +3 -2 xorp/libxorp/timeval.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 20:44:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 12:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SKj16x007161 for ; Fri, 28 Jan 2005 12:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKj11x014624 for ; Fri, 28 Jan 2005 12:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKj1Ip018879; Fri, 28 Jan 2005 12:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKiFIp018844 for ; Fri, 28 Jan 2005 12:44:19 -0800 (PST) Received: from arginine.spc.org ([83.167.185.2]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKiE1x014614; Fri, 28 Jan 2005 12:44:14 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id A63026538B; Fri, 28 Jan 2005 20:42:48 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 21029-01; Fri, 28 Jan 2005 20:42:48 +0000 (GMT) Received: from empiric.dek.spc.org (unknown [213.210.24.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 579F2652FE; Fri, 28 Jan 2005 20:42:45 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 6377D63D5; Fri, 28 Jan 2005 20:44:38 +0000 (GMT) Date: Fri, 28 Jan 2005 20:44:37 +0000 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <20050128204437.GL24432@dhcp120.icir.org> References: <200501280330.j0S3UFqt081185@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501280330.j0S3UFqt081185@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Fri, Jan 28, 2005 at 03:30:15AM +0000, Pavlin Radoslavov wrote: > Log message: > Remove and from the list of included > files, because they shouldn't be here. This change breaks my uncommitted fix for bug# 110, which needs to print a meaningful error message when bind() fails. I've reintroduced the required includes to socket.cc itself on my private branch, do you have suggestions as to how/where we should detect that inet_ntop() is defined? Or would it be better to cast the sockaddrs to XORP IPvX library types? Regards, BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 12:54:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 12:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SKt2nY009181 for ; Fri, 28 Jan 2005 12:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKt21x014733 for ; Fri, 28 Jan 2005 12:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKt2Ip019180; Fri, 28 Jan 2005 12:55:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKswIp019172 for ; Fri, 28 Jan 2005 12:54:58 -0800 (PST) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKsw1x014727; Fri, 28 Jan 2005 12:54:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.8) with ESMTP id j0SKswet069756; Fri, 28 Jan 2005 12:54:58 -0800 (PST) (envelope-from pavlin@possum.icir.org) Message-Id: <200501282054.j0SKswet069756@possum.icir.org> To: Bruce M Simpson cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp In-Reply-To: Message from Bruce M Simpson of "Fri, 28 Jan 2005 20:44:37 GMT." <20050128204437.GL24432@dhcp120.icir.org> Date: Fri, 28 Jan 2005 12:54:58 -0800 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , > On Fri, Jan 28, 2005 at 03:30:15AM +0000, Pavlin Radoslavov wrote: > > Log message: > > Remove and from the list of included > > files, because they shouldn't be here. > > This change breaks my uncommitted fix for bug# 110, which needs > to print a meaningful error message when bind() fails. > > I've reintroduced the required includes to socket.cc itself on my > private branch, do you have suggestions as to how/where we should > detect that inet_ntop() is defined? In general, if the above two files are needed somewhere, then I'd say to include them as needed. So far they are needed in very few places. > Or would it be better to cast the sockaddrs to XORP IPvX library types? You could use this solution if you like, up to you. Though, as you know in the future the goal is that the TCP connections should go via the FEA hence the above code will eventually be removed. About the inet_ntop detection, lets discuss it out-of-band. Regards, Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:25 2005 Subject: No subject Fri Jan 28 12:57:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 12:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SKw1mS009811 for ; Fri, 28 Jan 2005 12:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKw11x014785 for ; Fri, 28 Jan 2005 12:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKw1Ip019286; Fri, 28 Jan 2005 12:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SKvwIp019277 for ; Fri, 28 Jan 2005 12:57:58 -0800 (PST) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SKvw1x014783; Fri, 28 Jan 2005 12:57:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SKvwOD009797; Fri, 28 Jan 2005 12:57:58 -0800 (PST) (envelope-from atanu@tigger.icir.org) To: Pavlin Radoslavov cc: Bruce M Simpson , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp In-Reply-To: Message from Pavlin Radoslavov of "Fri, 28 Jan 2005 12:54:58 PST." <200501282054.j0SKswet069756@possum.icir.org> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Mailer: MH-E 7.4.2; nmh 1.0.3; XEmacs 21.4 (patch 14) Date: Fri, 28 Jan 2005 12:57:58 -0800 Message-ID: <9795.1106945878@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Pavlin> You could use this solution if you like, up to you. Though, Pavlin> as you know in the future the goal is that the TCP Pavlin> connections should go via the FEA hence the above code will Pavlin> eventually be removed. The default will be to make TCP connections through the FEA. For a number of reasons it makes sense to keep code so it can be conditionally enabled. Atanu. _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:26 2005 Subject: No subject Fri Jan 28 21:16:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 13:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SLH1bV013622 for ; Fri, 28 Jan 2005 13:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SLH11x015002 for ; Fri, 28 Jan 2005 13:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SLH1Ip019939; Fri, 28 Jan 2005 13:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SLG3Ip019913 for ; Fri, 28 Jan 2005 13:16:03 -0800 (PST) Received: from arginine.spc.org ([83.167.185.2]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SLG21x014994; Fri, 28 Jan 2005 13:16:02 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 7604D651FA; Fri, 28 Jan 2005 21:14:42 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 21342-02-8; Fri, 28 Jan 2005 21:14:42 +0000 (GMT) Received: from empiric.dek.spc.org (unknown [213.210.24.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 75F92651F7; Fri, 28 Jan 2005 21:14:38 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id EE382652F; Fri, 28 Jan 2005 21:16:35 +0000 (GMT) Date: Fri, 28 Jan 2005 21:16:35 +0000 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <20050128211635.GM24432@dhcp120.icir.org> References: <200501280330.j0S3UFqt081185@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501280330.j0S3UFqt081185@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Wait, no worries, I've written a fix which uses IPvX::str() instead of trying to use inet_ntop() directly now. BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:26 2005 Subject: No subject Fri Jan 28 21:34:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 13:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SLY104016900 for ; Fri, 28 Jan 2005 13:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SLY11x015217 for ; Fri, 28 Jan 2005 13:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SLY1Ip020469; Fri, 28 Jan 2005 13:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SLXVIp020440 for ; Fri, 28 Jan 2005 13:33:31 -0800 (PST) Received: from arginine.spc.org ([83.167.185.2]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SLXU1x015212; Fri, 28 Jan 2005 13:33:31 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 994F16538E; Fri, 28 Jan 2005 21:32:10 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 21278-03-2; Fri, 28 Jan 2005 21:32:09 +0000 (GMT) Received: from empiric.dek.spc.org (unknown [213.210.24.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 03A1E6520E; Fri, 28 Jan 2005 21:32:06 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id D734B652F; Fri, 28 Jan 2005 21:34:03 +0000 (GMT) Date: Fri, 28 Jan 2005 21:34:03 +0000 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <20050128213403.GN24432@dhcp120.icir.org> References: <200501280330.j0S3UFqt081185@xorpc.icir.org> <20050128211635.GM24432@dhcp120.icir.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H8ygTp4AXg6deix2" Content-Disposition: inline In-Reply-To: <20050128211635.GM24432@dhcp120.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , --H8ygTp4AXg6deix2 Content-Type: multipart/mixed; boundary="Pd0ReVV5GZGQvF3a" Content-Disposition: inline --Pd0ReVV5GZGQvF3a Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 28, 2005 at 09:16:35PM +0000, Bruce M Simpson wrote: > Wait, no worries, I've written a fix which uses IPvX::str() instead > of trying to use inet_ntop() directly now. Here is my diff as it currently stands. [p4x diff2 -dbuw //depot/vendor/xorp/bgp/socket.cc //depot/user/bms/xorp_ng/bgp/socket.cc] Atanu, you mentioned a change further up in bgp which catches an exception and might make the function signature / return value checks in my diff unnecessary. Can you point me at this change (off the top of your head) ? [I appreciate that moving BGP to use the FEA for sockets is what we want to do long term, but I would consider it better to fix the issue in the short term.] I'd like to merge a fix for this we're happy with so we can kill off the bug, so review would be much appreciated! Pavlin: I agree that the presence/absence of inet_ntop() is a separate issue (IPvX et al wrap it), let's get the bugs smashed and worry about portability later. Thanks, BMS --Pd0ReVV5GZGQvF3a Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=1 Content-Transfer-Encoding: quoted-printable =3D=3D=3D=3D //depot/vendor/xorp/bgp/socket.cc#2 (text) - //depot/user/bms/= xorp_ng/bgp/socket.cc#6 (text) =3D=3D=3D=3D content @@ -32,7 +32,6 @@ #include "socket.hh" #include "packet.hh" =20 - /* **************** BGPSocket - PUBLIC METHODS *********************** */ =20 Socket::Socket(const Iptuple& iptuple, EventLoop& e) @@ -49,7 +48,7 @@ #endif } =20 -void +int Socket::create_listener() { debug_msg("create_listener called"); @@ -57,15 +56,28 @@ size_t len; const struct sockaddr *sin =3D get_local_socket(len); =20 - create_socket(sin); + if (create_socket(sin) !=3D XORP_OK) + return (XORP_ERROR); =20 int opt =3D 1; - if(-1 =3D=3D setsockopt(get_sock(), - SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt))) - XLOG_FATAL("setsockopt failed: %s", strerror(errno)); + if (::setsockopt(get_sock(), SOL_SOCKET, SO_REUSEADDR, &opt, + sizeof(opt)) =3D=3D -1) { + XLOG_WARNING("setsockopt failed: %s", strerror(errno)); + } + + if (::bind(get_sock(), sin, len) =3D=3D -1) { + int saved_errno =3D errno; + try { + IPvX addr(*sin); + XLOG_ERROR("Failed to bind socket %d to address %s: %s", + get_sock(), addr.str().c_str(), strerror(saved_errno)); + } catch (...) { + XLOG_ERROR("Failed to bind socket %d to address %s: %s", + get_sock(), "(unprintable)", strerror(saved_errno)); + }; + } =20 - if(-1 =3D=3D bind(get_sock(), sin, len)) - XLOG_FATAL("Bind failed: %s", strerror(errno)); + return (XORP_OK); } =20 /* **************** BGPSocket - PROTECTED METHODS *********************** = */ @@ -79,17 +91,20 @@ _s =3D UNCONNECTED; } =20 -void +int Socket::create_socket(const struct sockaddr *sin) { debug_msg("create_socket called\n"); =20 XLOG_ASSERT(UNCONNECTED =3D=3D _s); =20 - if(UNCONNECTED =3D=3D (_s =3D ::socket (sin->sa_family, SOCK_STREAM, 0= ))) - XLOG_FATAL("Socket call failed: %s", strerror(errno)); + if (UNCONNECTED =3D=3D (_s =3D ::socket (sin->sa_family, SOCK_STREAM, = 0))) { + XLOG_ERROR("socket() failed: %s", strerror(errno)); + return (XORP_ERROR); + } =20 debug_msg("BGPSocket socket created (sock - %d)\n", _s); + return (XORP_OK); } =20 void --Pd0ReVV5GZGQvF3a-- --H8ygTp4AXg6deix2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Comment: '' iD8DBQFB+q/LueUpAYYNtTsRAsbWAKCXRnjV884XfzEMeCEEwdhF4kaPHgCcC6Yw P+w+q8GmPkub7WKONc9YBGA= =Hthu -----END PGP SIGNATURE----- --H8ygTp4AXg6deix2-- _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:27 2005 Subject: No subject Fri Jan 28 23:33:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 15:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SNY108040891 for ; Fri, 28 Jan 2005 15:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNY11x016627 for ; Fri, 28 Jan 2005 15:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNY0Ip024416; Fri, 28 Jan 2005 15:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNXQIp024371 for ; Fri, 28 Jan 2005 15:33:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNXQ1x016625 for ; Fri, 28 Jan 2005 15:33:26 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0SNXQlg092210 for ; Fri, 28 Jan 2005 15:33:26 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0SNXQ3Z092209 for xorp-cvs@icir.org; Fri, 28 Jan 2005 23:33:26 GMT (envelope-from bms) Date: Fri, 28 Jan 2005 23:33:26 GMT From: Bruce Simpson Message-Id: <200501282333.j0SNXQ3Z092209@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-28 23:33:26 UTC XORP CVS repository Modified files: libxorp eventloop.cc selector.cc selector.hh Log message: Update XORP's notion of system time on return from a potentially blocking select() system call. This fixes the bug whereby XorpTimers may have been scheduled in the past unintentionally. Merge from: p4://but.icir.org//depot/user/bms/xorp_ng/... Reviewed by: orion Bugzilla ID: 111 Revision Changes Path 1.8 +2 -2 xorp/libxorp/eventloop.cc 1.23 +8 -3 xorp/libxorp/selector.cc 1.12 +4 -3 xorp/libxorp/selector.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:27 2005 Subject: No subject Fri Jan 28 15:35:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 15:36:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SNa0lk041331 for ; Fri, 28 Jan 2005 15:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNa01x016665 for ; Fri, 28 Jan 2005 15:36:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNa0Ip024487; Fri, 28 Jan 2005 15:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNZYIp024466 for ; Fri, 28 Jan 2005 15:35:34 -0800 (PST) Received: from tigger.icir.org (tigger.icir.org [192.150.187.78]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNZY1x016661; Fri, 28 Jan 2005 15:35:34 -0800 (PST) (envelope-from atanu@icir.org) Received: from tigger.icir.org (localhost [127.0.0.1]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SNZY7D041214; Fri, 28 Jan 2005 15:35:34 -0800 (PST) (envelope-from atanu@tigger.icir.org) To: Bruce M Simpson cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxorp In-Reply-To: Message from Bruce M Simpson of "Fri, 28 Jan 2005 21:34:03 GMT." <20050128213403.GN24432@dhcp120.icir.org> From: Atanu Ghosh Reply-To: atanu@ICSI.Berkeley.EDU X-Organisation: The International Computer Science Institute X-Phone: +1 510 666 2966 X-Fax: +1 510 666 2956 X-Url: X-Mailer: MH-E 7.4.2; nmh 1.0.3; XEmacs 21.4 (patch 14) Date: Fri, 28 Jan 2005 15:35:34 -0800 Message-ID: <41213.1106955334@tigger.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , The rest of the fix is in xrl_target.cc. We allow an arbitary string to be passed as an address, this allows IPv4, IPV6 and FQDN. Lets not get into if this is a good idea or not. One bug was a FQDN that didn't resolve would cause a problem. I believe that case that triggered the problem was am empty string. The class Ituple does this lookup. It has always thrown an exception. My fix was to catch it in xrl_target.cc. You have now fixed the low level bind problem. There are two common reasons that the bind will fail. The user is not root, or the local address not match an inteface address. If might be nice to look at errno and print a more meaningful error if either of these conditions arises. You didn't include the patch for bgp.cc, the caller. I am intending to leave the TCP support in BGP we will use a switch to enable/disable its use. Atanu. >>>>> "Bruce" == Bruce M Simpson writes: Bruce> On Fri, Jan 28, 2005 at 09:16:35PM +0000, Bruce M Simpson Bruce> wrote: >> Wait, no worries, I've written a fix which uses IPvX::str() >> instead of trying to use inet_ntop() directly now. Bruce> Here is my diff as it currently stands. [p4x diff2 -dbuw Bruce> //depot/vendor/xorp/bgp/socket.cc Bruce> //depot/user/bms/xorp_ng/bgp/socket.cc] Bruce> Atanu, you mentioned a change further up in bgp which catches Bruce> an exception and might make the function signature / return Bruce> value checks in my diff unnecessary. Bruce> Can you point me at this change (off the top of your head) ? Bruce> [I appreciate that moving BGP to use the FEA for sockets is Bruce> what we want to do long term, but I would consider it better Bruce> to fix the issue in the short term.] Bruce> I'd like to merge a fix for this we're happy with so we can Bruce> kill off the bug, so review would be much appreciated! Bruce> Pavlin: I agree that the presence/absence of inet_ntop() is a Bruce> separate issue (IPvX et al wrap it), let's get the bugs Bruce> smashed and worry about portability later. Bruce> Thanks, BMS _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:27 2005 Subject: No subject Fri Jan 28 23:56:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 15:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0SNv1oR045490 for ; Fri, 28 Jan 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNv11x016835 for ; Fri, 28 Jan 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNv1Ip025152; Fri, 28 Jan 2005 15:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0SNuFIp025112 for ; Fri, 28 Jan 2005 15:56:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0SNuF1x016827 for ; Fri, 28 Jan 2005 15:56:15 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0SNuF7o092437 for ; Fri, 28 Jan 2005 15:56:15 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0SNuFMD092436 for xorp-cvs@icir.org; Fri, 28 Jan 2005 23:56:15 GMT (envelope-from bms) Date: Fri, 28 Jan 2005 23:56:15 GMT From: Bruce Simpson Message-Id: <200501282356.j0SNuFMD092436@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-28 23:56:15 UTC XORP CVS repository Modified files: bgp socket.cc Log message: Do not treat the failure of the bind() and socket() system calls in Socket::create_listener() or Socket::create_socket() as fatal error conditions. Make the error message printed when bind() fails more informative. Merge from: p4://but.icir.org//depot/user/bms/xorp_ng/... Reviewed by: atanu Bugzilla ID: 110 Revision Changes Path 1.21 +20 -9 xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sat Jan 29 05:20:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 21:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0T5L10T008249 for ; Fri, 28 Jan 2005 21:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T5L11x020269 for ; Fri, 28 Jan 2005 21:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T5L0Ip003578; Fri, 28 Jan 2005 21:21:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T5KRIp003566 for ; Fri, 28 Jan 2005 21:20:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T5KR1x020266 for ; Fri, 28 Jan 2005 21:20:27 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0T5KRE6095523 for ; Fri, 28 Jan 2005 21:20:27 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0T5KRVS095522 for xorp-cvs@icir.org; Sat, 29 Jan 2005 05:20:27 GMT (envelope-from bms) Date: Sat, 29 Jan 2005 05:20:27 GMT From: Bruce Simpson Message-Id: <200501290520.j0T5KRVS095522@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-29 05:20:27 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in configure configure.in Log message: Resolve two long-standing bugs in the XORP SNMP agent build. 1. Forcibly disable the use of inlining when building code against net-snmp includes and libraries. The net-snmp headers erroneously declare certain functions (such as netsnmp_request_get_list_data) as being inline, when they are not defined within the same translation unit, and therefore correctly trigger an error in ANSI C++ compilers. A special workaround is needed which is dependent on the version of net-snmp in use. Versions in the 5.0.x series don't support -DNETSNMP_NO_INLINE correctly. 2. Workaround compiler warnings caused by the redefinition of preprocessor macros named PACKAGExxx, by forcibly undefining the values defined for them by mibs/configure. This is achieved by adding -U flags to AM_CPPFLAGS in mibs/Makefile.in. These definitions arise because versions of autoconf newer than 2.52 try to define these macros when the AC_INIT macro is called. However, these macros have already been defined in net-snmp's include file namespace. This is an obvious net-snmp bug. It is still necessary to include fixconfigs.h to undefine net-snmp's subsequent definitions of these macros. This poses no problem as the XORP SNMP agent code does not reference them. Merge from: Perforce Bugzilla ID: 89 Revision Changes Path 1.28 +8 -2 xorp/mibs/Makefile.am 1.37 +7 -1 xorp/mibs/Makefile.in 1.6 +179 -0 xorp/mibs/configure 1.3 +20 -1 xorp/mibs/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sat Jan 29 07:14:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 23:15:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0T7F7BZ030365 for ; Fri, 28 Jan 2005 23:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T7F71x021126 for ; Fri, 28 Jan 2005 23:15:07 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T7F7Ip005974; Fri, 28 Jan 2005 23:15:07 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T7EXIp005949 for ; Fri, 28 Jan 2005 23:14:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T7EX1x021098 for ; Fri, 28 Jan 2005 23:14:33 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0T7EXcI096187 for ; Fri, 28 Jan 2005 23:14:33 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0T7EXqF096186 for xorp-cvs@icir.org; Sat, 29 Jan 2005 07:14:33 GMT (envelope-from bms) Date: Sat, 29 Jan 2005 07:14:33 GMT From: Bruce Simpson Message-Id: <200501290714.j0T7EXqF096186@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-29 07:14:33 UTC XORP CVS repository Modified files: static_routes Makefile.am Makefile.in xrl_static_routes_node.cc xrl_static_routes_node.hh xrl/targets static_routes.tgt static_routes.xrls static_routes_base.cc static_routes_base.hh Log message: Teach static_routes about finder_event_observer. Pay attention to the FEA and RIB going away. If either of them do, die. This does not resolve issue 45 but goes some way towards it. Bugzilla ID: 45 Revision Changes Path 1.9 +2 -1 xorp/static_routes/Makefile.am 1.11 +2 -1 xorp/static_routes/Makefile.in 1.17 +48 -1 xorp/static_routes/xrl_static_routes_node.cc 1.11 +17 -1 xorp/static_routes/xrl_static_routes_node.hh 1.3 +3 -1 xorp/xrl/targets/static_routes.tgt 1.6 +11 -1 xorp/xrl/targets/static_routes.xrls 1.8 +63 -1 xorp/xrl/targets/static_routes_base.cc 1.7 +25 -1 xorp/xrl/targets/static_routes_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sat Jan 29 07:33:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 28 Jan 2005 23:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0T7Y1tQ034101 for ; Fri, 28 Jan 2005 23:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T7Y11x021265 for ; Fri, 28 Jan 2005 23:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T7Y1Ip006478; Fri, 28 Jan 2005 23:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0T7XVIp006428 for ; Fri, 28 Jan 2005 23:33:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0T7XV1x021262 for ; Fri, 28 Jan 2005 23:33:31 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0T7XVH4096340 for ; Fri, 28 Jan 2005 23:33:31 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0T7XVme096339 for xorp-cvs@icir.org; Sat, 29 Jan 2005 07:33:31 GMT (envelope-from bms) Date: Sat, 29 Jan 2005 07:33:31 GMT From: Bruce Simpson Message-Id: <200501290733.j0T7XVme096339@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-29 07:33:31 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.cc Log message: Attempt a clean shutdown when the RIB or FEA die. Bugzilla ID: 45 Revision Changes Path 1.18 +3 -4 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sun Jan 30 05:30:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Jan 2005 21:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0U5V2Ol094967 for ; Sat, 29 Jan 2005 21:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U5V21x036744 for ; Sat, 29 Jan 2005 21:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U5V1Ip005465; Sat, 29 Jan 2005 21:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U5UeIp005436 for ; Sat, 29 Jan 2005 21:30:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U5Ue1x036741 for ; Sat, 29 Jan 2005 21:30:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0U5Uett007831 for ; Sat, 29 Jan 2005 21:30:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0U5UePh007830 for xorp-cvs@icir.org; Sun, 30 Jan 2005 05:30:40 GMT (envelope-from pavlin) Date: Sun, 30 Jan 2005 05:30:40 GMT From: Pavlin Radoslavov Message-Id: <200501300530.j0U5UePh007830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-30 05:30:40 UTC XORP CVS repository Modified files: libxorp ref_trie.hh Log message: Add missing XORP_UINT_CAST() casting. Revision Changes Path 1.21 +3 -2 xorp/libxorp/ref_trie.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sun Jan 30 07:03:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Jan 2005 23:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0U741dd013005 for ; Sat, 29 Jan 2005 23:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U7401x037393 for ; Sat, 29 Jan 2005 23:04:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U740Ip007460; Sat, 29 Jan 2005 23:04:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U73GIp007433 for ; Sat, 29 Jan 2005 23:03:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U73F1x037386 for ; Sat, 29 Jan 2005 23:03:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0U73FPM008806 for ; Sat, 29 Jan 2005 23:03:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0U73F1a008805 for xorp-cvs@icir.org; Sun, 30 Jan 2005 07:03:15 GMT (envelope-from pavlin) Date: Sun, 30 Jan 2005 07:03:15 GMT From: Pavlin Radoslavov Message-Id: <200501300703.j0U73F1a008805@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-30 07:03:15 UTC XORP CVS repository Modified files: libxorp test_asyncio.cc test_ipnet.cc test_ipv4.cc test_ipv6.cc test_ipvx.cc test_ref_ptr.cc Log message: Add XORP_UINT_CAST() and XORP_INT_CAST() casting as appropriate. Revision Changes Path 1.6 +2 -2 xorp/libxorp/test_asyncio.cc 1.7 +7 -6 xorp/libxorp/test_ipnet.cc 1.14 +3 -3 xorp/libxorp/test_ipv4.cc 1.14 +3 -3 xorp/libxorp/test_ipv6.cc 1.13 +5 -5 xorp/libxorp/test_ipvx.cc 1.4 +2 -2 xorp/libxorp/test_ref_ptr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:28 2005 Subject: No subject Sun Jan 30 07:04:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Jan 2005 23:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0U751O0013209 for ; Sat, 29 Jan 2005 23:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U7511x037406 for ; Sat, 29 Jan 2005 23:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U751Ip007490; Sat, 29 Jan 2005 23:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U74tIp007482 for ; Sat, 29 Jan 2005 23:04:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U74t1x037401 for ; Sat, 29 Jan 2005 23:04:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0U74tKv008862 for ; Sat, 29 Jan 2005 23:04:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0U74tHO008861 for xorp-cvs@icir.org; Sun, 30 Jan 2005 07:04:55 GMT (envelope-from pavlin) Date: Sun, 30 Jan 2005 07:04:55 GMT From: Pavlin Radoslavov Message-Id: <200501300704.j0U74tHO008861@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-30 07:04:55 UTC XORP CVS repository Modified files: libxorp test_ipnet.cc Log message: Add missing XORP_UINT_CAST() casting. Revision Changes Path 1.8 +2 -2 xorp/libxorp/test_ipnet.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Sun Jan 30 07:08:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 29 Jan 2005 23:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0U791aA013985 for ; Sat, 29 Jan 2005 23:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U7911x037441 for ; Sat, 29 Jan 2005 23:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U791Ip007608; Sat, 29 Jan 2005 23:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U78qIp007598 for ; Sat, 29 Jan 2005 23:08:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U78q1x037439 for ; Sat, 29 Jan 2005 23:08:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0U78qXr008959 for ; Sat, 29 Jan 2005 23:08:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0U78q83008958 for xorp-cvs@icir.org; Sun, 30 Jan 2005 07:08:52 GMT (envelope-from pavlin) Date: Sun, 30 Jan 2005 07:08:52 GMT From: Pavlin Radoslavov Message-Id: <200501300708.j0U78q83008958@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-30 07:08:52 UTC XORP CVS repository Modified files: libxorp test_service.cc Log message: Add missing XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.5 +6 -6 xorp/libxorp/test_service.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Sun Jan 30 09:44:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Jan 2005 01:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0U9j1pm045634 for ; Sun, 30 Jan 2005 01:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U9j11x038676 for ; Sun, 30 Jan 2005 01:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U9j1Ip011112; Sun, 30 Jan 2005 01:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0U9iQIp011089 for ; Sun, 30 Jan 2005 01:44:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0U9iQ1x038669 for ; Sun, 30 Jan 2005 01:44:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0U9iPgC010141 for ; Sun, 30 Jan 2005 01:44:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0U9iPqa010140 for xorp-cvs@icir.org; Sun, 30 Jan 2005 09:44:25 GMT (envelope-from pavlin) Date: Sun, 30 Jan 2005 09:44:25 GMT From: Pavlin Radoslavov Message-Id: <200501300944.j0U9iPqa010140@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-30 09:44:25 UTC XORP CVS repository Modified files: libxipc finder_client.cc Log message: Add XORP_UINT_CAST() casting. Revision Changes Path 1.29 +2 -2 xorp/libxipc/finder_client.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Mon Jan 31 01:22:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Jan 2005 17:23:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0V1N1K5036861 for ; Sun, 30 Jan 2005 17:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V1N01x048125 for ; Sun, 30 Jan 2005 17:23:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V1N0Ip004296; Sun, 30 Jan 2005 17:23:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V1MpIp004289 for ; Sun, 30 Jan 2005 17:22:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V1Mp1x048123 for ; Sun, 30 Jan 2005 17:22:51 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0V1MpAD017769 for ; Sun, 30 Jan 2005 17:22:51 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0V1MpHK017768 for xorp-cvs@icir.org; Mon, 31 Jan 2005 01:22:51 GMT (envelope-from bms) Date: Mon, 31 Jan 2005 01:22:51 GMT From: Bruce Simpson Message-Id: <200501310122.j0V1MpHK017768@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-31 01:22:51 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Fix an operator precedence bug in the code used to locate XORP commands in the router manager's path. Use eaccess() to determine if the desired executable may be invoked with the router manager's EUID. Add a comment. Tweak style. Notes: 1. An S_ISLNK() test is redundant because stat() will dereference any symlinks in the path. 2. Whilst [e]access() may create race conditions if used inappropriately, this is no worse than the previous code because there is no way to protect against such a race in the case of execv(); it isn't possible to defeat the race by open()-ing the file which Module::shell_execute() is about to execv(), because the exec*() syscalls don't accept file descriptors instead of pathnames. Reviewed by: mjh (with input from rwatson at FreeBSD dot org) Revision Changes Path 1.40 +8 -7 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Mon Jan 31 01:29:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Jan 2005 17:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0V1U11Q038255 for ; Sun, 30 Jan 2005 17:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V1U01x048191 for ; Sun, 30 Jan 2005 17:30:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V1U0Ip004546; Sun, 30 Jan 2005 17:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V1TVIp004522 for ; Sun, 30 Jan 2005 17:29:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V1TU1x048183 for ; Sun, 30 Jan 2005 17:29:30 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0V1TU9U017839 for ; Sun, 30 Jan 2005 17:29:30 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0V1TU9k017838 for xorp-cvs@icir.org; Mon, 31 Jan 2005 01:29:30 GMT (envelope-from bms) Date: Mon, 31 Jan 2005 01:29:30 GMT From: Bruce Simpson Message-Id: <200501310129.j0V1TU9k017838@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-31 01:29:30 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Modify previous fix -- eaccess() isn't present on RELENG_4, but the reasoning is still sound, so use access(). Include unistd.h for access() prototype. Revision Changes Path 1.41 +4 -3 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Mon Jan 31 06:53:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Jan 2005 22:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0V6s1Yl000995 for ; Sun, 30 Jan 2005 22:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V6s11x050963 for ; Sun, 30 Jan 2005 22:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V6s1Ip012403; Sun, 30 Jan 2005 22:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V6reIp012391 for ; Sun, 30 Jan 2005 22:53:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V6re1x050961 for ; Sun, 30 Jan 2005 22:53:40 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0V6relE019793 for ; Sun, 30 Jan 2005 22:53:40 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0V6rejR019792 for xorp-cvs@icir.org; Mon, 31 Jan 2005 06:53:40 GMT (envelope-from bms) Date: Mon, 31 Jan 2005 06:53:40 GMT From: Bruce Simpson Message-Id: <200501310653.j0V6rejR019792@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-31 06:53:40 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Fix a forgotten comparison. Revision Changes Path 1.42 +2 -2 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:29 2005 Subject: No subject Mon Jan 31 07:03:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 30 Jan 2005 23:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0V741kO002952 for ; Sun, 30 Jan 2005 23:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V7411x051057 for ; Sun, 30 Jan 2005 23:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V741Ip012651; Sun, 30 Jan 2005 23:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0V73JIp012621 for ; Sun, 30 Jan 2005 23:03:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0V73I1x051052 for ; Sun, 30 Jan 2005 23:03:18 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0V73IE5019906 for ; Sun, 30 Jan 2005 23:03:18 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0V73Ici019905 for xorp-cvs@icir.org; Mon, 31 Jan 2005 07:03:18 GMT (envelope-from bms) Date: Mon, 31 Jan 2005 07:03:18 GMT From: Bruce Simpson Message-Id: <200501310703.j0V73Ici019905@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-01-31 07:03:18 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Comment out the access() calls for now -- xorpsh does not like them, when running under sudo -u xorp (euid?) and as a result xorpsh fails to start up. Consider checking for it in configure.in and shipping our own if we can't find it on the system. Ping rwatson about eaccess() merge to FreeBSD 4. Revision Changes Path 1.43 +3 -3 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:16:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJH1Gt053409 for ; Mon, 31 Jan 2005 11:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJH01x060971 for ; Mon, 31 Jan 2005 11:17:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJH0Ip005351; Mon, 31 Jan 2005 11:17:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJGeIp005334 for ; Mon, 31 Jan 2005 11:16:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJGe1x060967 for ; Mon, 31 Jan 2005 11:16:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJGdlS028352 for ; Mon, 31 Jan 2005 11:16:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJGd3A028351 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:16:39 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:16:39 GMT From: Pavlin Radoslavov Message-Id: <200501311916.j0VJGd3A028351@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:16:39 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: * Add XORP_UINT_CAST() casting as appropriate * Nits: "if(" -> "if (" Revision Changes Path 1.33 +30 -23 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:23:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJO1Ns054810 for ; Mon, 31 Jan 2005 11:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJO11x061027 for ; Mon, 31 Jan 2005 11:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJO1Ip005563; Mon, 31 Jan 2005 11:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJN4Ip005542 for ; Mon, 31 Jan 2005 11:23:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJN41x061011 for ; Mon, 31 Jan 2005 11:23:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJN460028426 for ; Mon, 31 Jan 2005 11:23:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJN4WP028425 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:23:04 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:23:04 GMT From: Pavlin Radoslavov Message-Id: <200501311923.j0VJN4WP028425@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:23:04 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: Add missing XORP_UINT_CAST() casting. Revision Changes Path 1.34 +3 -3 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:29:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJU2GX056021 for ; Mon, 31 Jan 2005 11:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJU21x061110 for ; Mon, 31 Jan 2005 11:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJU1Ip005762; Mon, 31 Jan 2005 11:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJTmIp005755 for ; Mon, 31 Jan 2005 11:29:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJTl1x061100 for ; Mon, 31 Jan 2005 11:29:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJTlEN028523 for ; Mon, 31 Jan 2005 11:29:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJTlqU028522 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:29:47 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:29:47 GMT From: Pavlin Radoslavov Message-Id: <200501311929.j0VJTlqU028522@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:29:47 UTC XORP CVS repository Modified files: bgp notification_packet.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.18 +4 -3 xorp/bgp/notification_packet.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:32:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJX1ca056670 for ; Mon, 31 Jan 2005 11:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJX11x061154 for ; Mon, 31 Jan 2005 11:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJX1Ip005887; Mon, 31 Jan 2005 11:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJW1Ip005860 for ; Mon, 31 Jan 2005 11:32:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJW11x061147 for ; Mon, 31 Jan 2005 11:32:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJW0tE028597 for ; Mon, 31 Jan 2005 11:32:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJW04k028596 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:32:00 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:32:00 GMT From: Pavlin Radoslavov Message-Id: <200501311932.j0VJW04k028596@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:32:00 UTC XORP CVS repository Modified files: bgp open_packet.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +2 -2 xorp/bgp/open_packet.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:36:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJb1Gu057476 for ; Mon, 31 Jan 2005 11:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJb11x061205 for ; Mon, 31 Jan 2005 11:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJb0Ip006060; Mon, 31 Jan 2005 11:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJaCIp006029 for ; Mon, 31 Jan 2005 11:36:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJaC1x061197 for ; Mon, 31 Jan 2005 11:36:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJaBEj028715 for ; Mon, 31 Jan 2005 11:36:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJaBlq028714 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:36:11 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:36:11 GMT From: Pavlin Radoslavov Message-Id: <200501311936.j0VJaBlq028714@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:36:11 UTC XORP CVS repository Modified files: bgp parameter.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.25 +3 -3 xorp/bgp/parameter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:50:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 11:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VJp2Zt060180 for ; Mon, 31 Jan 2005 11:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJp11x061342 for ; Mon, 31 Jan 2005 11:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJp1Ip006498; Mon, 31 Jan 2005 11:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJoTIp006471 for ; Mon, 31 Jan 2005 11:50:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJoT1x061334 for ; Mon, 31 Jan 2005 11:50:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJoS53028833 for ; Mon, 31 Jan 2005 11:50:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJoSZ6028832 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:50:28 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:50:28 GMT From: Pavlin Radoslavov Message-Id: <200501311950.j0VJoSZ6028832@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:50:28 UTC XORP CVS repository Modified files: bgp path_attribute.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Nits: "if(" -> "if (" * Nits: space alignment of multi-lines commands and their arguments. Revision Changes Path 1.54 +32 -28 xorp/bgp/path_attribute.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 19:59:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 12:00:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VK03ZG061941 for ; Mon, 31 Jan 2005 12:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VK031x061425 for ; Mon, 31 Jan 2005 12:00:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VK03Ip006816; Mon, 31 Jan 2005 12:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VJxrIp006805 for ; Mon, 31 Jan 2005 11:59:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VJxr1x061411 for ; Mon, 31 Jan 2005 11:59:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VJxqrQ028907 for ; Mon, 31 Jan 2005 11:59:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VJxqPQ028906 for xorp-cvs@icir.org; Mon, 31 Jan 2005 19:59:52 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 19:59:52 GMT From: Pavlin Radoslavov Message-Id: <200501311959.j0VJxqPQ028906@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 19:59:52 UTC XORP CVS repository Modified files: bgp peer.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Nits: "if(" -> "if (" * Nits: space alignment of multi-lines commands and their arguments. Revision Changes Path 1.86 +47 -45 xorp/bgp/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:30 2005 Subject: No subject Mon Jan 31 20:02:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 12:03:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VK32C7062558 for ; Mon, 31 Jan 2005 12:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VK311x061472 for ; Mon, 31 Jan 2005 12:03:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VK31Ip007007; Mon, 31 Jan 2005 12:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VK2oIp006999 for ; Mon, 31 Jan 2005 12:02:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VK2o1x061469 for ; Mon, 31 Jan 2005 12:02:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VK2ovc028983 for ; Mon, 31 Jan 2005 12:02:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VK2ohT028982 for xorp-cvs@icir.org; Mon, 31 Jan 2005 20:02:50 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 20:02:50 GMT From: Pavlin Radoslavov Message-Id: <200501312002.j0VK2ohT028982@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 20:02:50 UTC XORP CVS repository Modified files: bgp peer_data.hh Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +3 -2 xorp/bgp/peer_data.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:31 2005 Subject: No subject Mon Jan 31 20:16:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 12:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VKH1uG065283 for ; Mon, 31 Jan 2005 12:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VKH11x061618 for ; Mon, 31 Jan 2005 12:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VKH1Ip007534; Mon, 31 Jan 2005 12:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VKG4Ip007504 for ; Mon, 31 Jan 2005 12:16:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VKG41x061612 for ; Mon, 31 Jan 2005 12:16:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VKG4Es029137 for ; Mon, 31 Jan 2005 12:16:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VKG41I029136 for xorp-cvs@icir.org; Mon, 31 Jan 2005 20:16:04 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 20:16:04 GMT From: Pavlin Radoslavov Message-Id: <200501312016.j0VKG41I029136@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 20:16:04 UTC XORP CVS repository Modified files: bgp peer_data.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +4 -3 xorp/bgp/peer_data.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:31 2005 Subject: No subject Mon Jan 31 20:58:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 12:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VKx1tj073533 for ; Mon, 31 Jan 2005 12:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VKx01x062095 for ; Mon, 31 Jan 2005 12:59:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VKx0Ip009070; Mon, 31 Jan 2005 12:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VKwnIp009060 for ; Mon, 31 Jan 2005 12:58:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VKwn1x062093 for ; Mon, 31 Jan 2005 12:58:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VKwnkH029437 for ; Mon, 31 Jan 2005 12:58:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VKwnLT029436 for xorp-cvs@icir.org; Mon, 31 Jan 2005 20:58:49 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 20:58:49 GMT From: Pavlin Radoslavov Message-Id: <200501312058.j0VKwnLT029436@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 20:58:49 UTC XORP CVS repository Modified files: bgp plumbing.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Nits: "if(" -> "if (" Revision Changes Path 1.59 +16 -10 xorp/bgp/plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:31 2005 Subject: No subject Mon Jan 31 21:07:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 13:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VL81ft075460 for ; Mon, 31 Jan 2005 13:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VL811x062213 for ; Mon, 31 Jan 2005 13:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VL81Ip009340; Mon, 31 Jan 2005 13:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VL7tIp009334 for ; Mon, 31 Jan 2005 13:07:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VL7t1x062208 for ; Mon, 31 Jan 2005 13:07:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VL7tI5029541 for ; Mon, 31 Jan 2005 13:07:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VL7txm029540 for xorp-cvs@icir.org; Mon, 31 Jan 2005 21:07:55 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 21:07:55 GMT From: Pavlin Radoslavov Message-Id: <200501312107.j0VL7txm029540@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 21:07:55 UTC XORP CVS repository Modified files: bgp plumbing.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.60 +3 -2 xorp/bgp/plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:31 2005 Subject: No subject Mon Jan 31 21:48:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 13:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VLn1H1083424 for ; Mon, 31 Jan 2005 13:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VLn11x062731 for ; Mon, 31 Jan 2005 13:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VLn1Ip010721; Mon, 31 Jan 2005 13:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VLmnIp010711 for ; Mon, 31 Jan 2005 13:48:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VLmm1x062728 for ; Mon, 31 Jan 2005 13:48:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VLmmEN029903 for ; Mon, 31 Jan 2005 13:48:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VLmmnZ029902 for xorp-cvs@icir.org; Mon, 31 Jan 2005 21:48:48 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 21:48:48 GMT From: Pavlin Radoslavov Message-Id: <200501312148.j0VLmmnZ029902@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 21:48:48 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Replace "(unsigned int)0" with IPv4:ZERO() for IPv4 initialization purpose. Revision Changes Path 1.61 +3 -3 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 21:53:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 13:54:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VLs2ox084486 for ; Mon, 31 Jan 2005 13:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VLs21x062785 for ; Mon, 31 Jan 2005 13:54:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VLs2Ip010896; Mon, 31 Jan 2005 13:54:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VLrEIp010869 for ; Mon, 31 Jan 2005 13:53:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VLrD1x062777 for ; Mon, 31 Jan 2005 13:53:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VLrDIK029972 for ; Mon, 31 Jan 2005 13:53:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VLrD3q029971 for xorp-cvs@icir.org; Mon, 31 Jan 2005 21:53:13 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 21:53:13 GMT From: Pavlin Radoslavov Message-Id: <200501312153.j0VLrD3q029971@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 21:53:13 UTC XORP CVS repository Modified files: bgp route_table_decision.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.30 +3 -3 xorp/bgp/route_table_decision.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:04:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VM51mw086694 for ; Mon, 31 Jan 2005 14:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VM511x062920 for ; Mon, 31 Jan 2005 14:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VM51Ip011307; Mon, 31 Jan 2005 14:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VM4HIp011270 for ; Mon, 31 Jan 2005 14:04:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VM4H1x062911 for ; Mon, 31 Jan 2005 14:04:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VM4HbG030074 for ; Mon, 31 Jan 2005 14:04:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VM4H3B030073 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:04:17 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:04:17 GMT From: Pavlin Radoslavov Message-Id: <200501312204.j0VM4H3B030073@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:04:17 UTC XORP CVS repository Modified files: bgp route_table_dump.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.31 +29 -23 xorp/bgp/route_table_dump.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:11:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMC1Sg088093 for ; Mon, 31 Jan 2005 14:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMC11x063013 for ; Mon, 31 Jan 2005 14:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMC1Ip011581; Mon, 31 Jan 2005 14:12:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMBQIp011551 for ; Mon, 31 Jan 2005 14:11:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMBP1x063007 for ; Mon, 31 Jan 2005 14:11:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMBP7W030182 for ; Mon, 31 Jan 2005 14:11:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMBPxQ030181 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:11:25 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:11:25 GMT From: Pavlin Radoslavov Message-Id: <200501312211.j0VMBPxQ030181@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:11:25 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.42 +16 -10 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:25:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMQ1HZ090900 for ; Mon, 31 Jan 2005 14:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMQ01x063195 for ; Mon, 31 Jan 2005 14:26:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMQ0Ip012239; Mon, 31 Jan 2005 14:26:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMPCIp012177 for ; Mon, 31 Jan 2005 14:25:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMPC1x063187 for ; Mon, 31 Jan 2005 14:25:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMPCXG030330 for ; Mon, 31 Jan 2005 14:25:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMPCoK030329 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:25:12 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:25:12 GMT From: Pavlin Radoslavov Message-Id: <200501312225.j0VMPCoK030329@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:25:12 UTC XORP CVS repository Modified files: bgp socket.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.22 +8 -5 xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:35:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMa2Ia092960 for ; Mon, 31 Jan 2005 14:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMa11x063291 for ; Mon, 31 Jan 2005 14:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMa1Ip012731; Mon, 31 Jan 2005 14:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMZJIp012704 for ; Mon, 31 Jan 2005 14:35:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMZI1x063288 for ; Mon, 31 Jan 2005 14:35:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMZIA7030448 for ; Mon, 31 Jan 2005 14:35:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMZIsl030447 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:35:18 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:35:18 GMT From: Pavlin Radoslavov Message-Id: <200501312235.j0VMZIsl030447@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:35:18 UTC XORP CVS repository Modified files: bgp update_attrib.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.9 +3 -3 xorp/bgp/update_attrib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:41:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMg1mC094181 for ; Mon, 31 Jan 2005 14:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMg11x063354 for ; Mon, 31 Jan 2005 14:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMg0Ip012943; Mon, 31 Jan 2005 14:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMf5Ip012919 for ; Mon, 31 Jan 2005 14:41:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMf51x063349 for ; Mon, 31 Jan 2005 14:41:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMf53b030529 for ; Mon, 31 Jan 2005 14:41:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMf5RZ030528 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:41:05 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:41:05 GMT From: Pavlin Radoslavov Message-Id: <200501312241.j0VMf5RZ030528@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:41:05 UTC XORP CVS repository Modified files: bgp update_packet.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.33 +20 -15 xorp/bgp/update_packet.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:54:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMt2D6096767 for ; Mon, 31 Jan 2005 14:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMt11x063532 for ; Mon, 31 Jan 2005 14:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMt1Ip013511; Mon, 31 Jan 2005 14:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMsYIp013493 for ; Mon, 31 Jan 2005 14:54:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMsY1x063524 for ; Mon, 31 Jan 2005 14:54:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMsYTr030632 for ; Mon, 31 Jan 2005 14:54:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMsYZB030631 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:54:34 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:54:34 GMT From: Pavlin Radoslavov Message-Id: <200501312254.j0VMsYZB030631@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:54:34 UTC XORP CVS repository Modified files: bgp xrl_target.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.36 +53 -39 xorp/bgp/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:32 2005 Subject: No subject Mon Jan 31 22:57:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 14:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VMw1G9097381 for ; Mon, 31 Jan 2005 14:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMw01x063573 for ; Mon, 31 Jan 2005 14:58:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMw0Ip013629; Mon, 31 Jan 2005 14:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VMvwIp013619 for ; Mon, 31 Jan 2005 14:57:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VMvw1x063571 for ; Mon, 31 Jan 2005 14:57:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VMvwUn030702 for ; Mon, 31 Jan 2005 14:57:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VMvwl6030701 for xorp-cvs@icir.org; Mon, 31 Jan 2005 22:57:58 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 22:57:58 GMT From: Pavlin Radoslavov Message-Id: <200501312257.j0VMvwl6030701@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 22:57:58 UTC XORP CVS repository Modified files: bgp bgp.hh Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.39 +5 -3 xorp/bgp/bgp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:33 2005 Subject: No subject Mon Jan 31 23:14:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 15:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VNF12r000902 for ; Mon, 31 Jan 2005 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNF11x063841 for ; Mon, 31 Jan 2005 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNF1Ip014331; Mon, 31 Jan 2005 15:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNEmIp014322 for ; Mon, 31 Jan 2005 15:14:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNEl1x063836 for ; Mon, 31 Jan 2005 15:14:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VNElht030873 for ; Mon, 31 Jan 2005 15:14:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VNElMV030872 for xorp-cvs@icir.org; Mon, 31 Jan 2005 23:14:47 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 23:14:47 GMT From: Pavlin Radoslavov Message-Id: <200501312314.j0VNElMV030872@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 23:14:47 UTC XORP CVS repository Modified files: bgp bgp.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.49 +12 -8 xorp/bgp/bgp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:33 2005 Subject: No subject Mon Jan 31 23:32:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 15:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VNX1RX004543 for ; Mon, 31 Jan 2005 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNX11x064058 for ; Mon, 31 Jan 2005 15:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNX1Ip015087; Mon, 31 Jan 2005 15:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNWrIp015078 for ; Mon, 31 Jan 2005 15:32:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNWq1x064055 for ; Mon, 31 Jan 2005 15:32:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VNWqAe031050 for ; Mon, 31 Jan 2005 15:32:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VNWqKo031049 for xorp-cvs@icir.org; Mon, 31 Jan 2005 23:32:52 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 23:32:52 GMT From: Pavlin Radoslavov Message-Id: <200501312332.j0VNWqKo031049@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 23:32:52 UTC XORP CVS repository Modified files: bgp/tools print_peer.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.16 +14 -13 xorp/bgp/tools/print_peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:33 2005 Subject: No subject Mon Jan 31 23:43:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 15:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j0VNi1c1006756 for ; Mon, 31 Jan 2005 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNi11x064172 for ; Mon, 31 Jan 2005 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNi1Ip015577; Mon, 31 Jan 2005 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNhEIp015545 for ; Mon, 31 Jan 2005 15:43:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNhE1x064162 for ; Mon, 31 Jan 2005 15:43:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VNhELc031153 for ; Mon, 31 Jan 2005 15:43:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VNhEnP031152 for xorp-cvs@icir.org; Mon, 31 Jan 2005 23:43:14 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 23:43:14 GMT From: Pavlin Radoslavov Message-Id: <200501312343.j0VNhEnP031152@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 23:43:14 UTC XORP CVS repository Modified files: libfeaclient ifmgr_cmds.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.12 +6 -6 xorp/libfeaclient/ifmgr_cmds.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Mon Jan 31 23:59:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 16:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11001Cj009867 for ; Mon, 31 Jan 2005 16:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j110011x064325 for ; Mon, 31 Jan 2005 16:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11001Ip016121; Mon, 31 Jan 2005 16:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j0VNxDIp016106 for ; Mon, 31 Jan 2005 15:59:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j0VNxD1x064310 for ; Mon, 31 Jan 2005 15:59:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j0VNxDLf031282 for ; Mon, 31 Jan 2005 15:59:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j0VNxDo1031281 for xorp-cvs@icir.org; Mon, 31 Jan 2005 23:59:13 GMT (envelope-from pavlin) Date: Mon, 31 Jan 2005 23:59:13 GMT From: Pavlin Radoslavov Message-Id: <200501312359.j0VNxDo1031281@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-01-31 23:59:13 UTC XORP CVS repository Modified files: cli cli_node_internal_commands.cc cli_node_net.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.9 +5 -3 xorp/cli/cli_node_internal_commands.cc 1.31 +10 -10 xorp/cli/cli_node_net.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Tue Feb 1 00:06:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 16:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11071El011269 for ; Mon, 31 Jan 2005 16:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j110711x064411 for ; Mon, 31 Jan 2005 16:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11071Ip016385; Mon, 31 Jan 2005 16:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1106eIp016365 for ; Mon, 31 Jan 2005 16:06:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1106e1x064409 for ; Mon, 31 Jan 2005 16:06:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1106ewd031381 for ; Mon, 31 Jan 2005 16:06:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1106e3O031380 for xorp-cvs@icir.org; Tue, 1 Feb 2005 00:06:40 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 00:06:40 GMT From: Pavlin Radoslavov Message-Id: <200502010006.j1106e3O031380@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 00:06:40 UTC XORP CVS repository Modified files: cli test_cli.cc Log message: Change a variable's type from uint32_t to int Revision Changes Path 1.33 +3 -3 xorp/cli/test_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Tue Feb 1 01:06:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 17:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11171om023502 for ; Mon, 31 Jan 2005 17:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111711x065093 for ; Mon, 31 Jan 2005 17:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11171Ip018652; Mon, 31 Jan 2005 17:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11169Ip018600 for ; Mon, 31 Jan 2005 17:06:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111691x065085 for ; Mon, 31 Jan 2005 17:06:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11169EY031769 for ; Mon, 31 Jan 2005 17:06:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11169Q0031768 for xorp-cvs@icir.org; Tue, 1 Feb 2005 01:06:09 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 01:06:09 GMT From: Pavlin Radoslavov Message-Id: <200502010106.j11169Q0031768@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 01:06:09 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +3 -3 xorp/fib2mrib/fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Tue Feb 1 01:18:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 17:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j111J1mA026282 for ; Mon, 31 Jan 2005 17:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111J11x065222 for ; Mon, 31 Jan 2005 17:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111J1Ip019043; Mon, 31 Jan 2005 17:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111IIIp019013 for ; Mon, 31 Jan 2005 17:18:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111II1x065214 for ; Mon, 31 Jan 2005 17:18:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j111IIAT031894 for ; Mon, 31 Jan 2005 17:18:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j111IIog031893 for xorp-cvs@icir.org; Tue, 1 Feb 2005 01:18:18 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 01:18:18 GMT From: Pavlin Radoslavov Message-Id: <200502010118.j111IIog031893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 01:18:18 UTC XORP CVS repository Modified files: rib rib.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.46 +8 -6 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Tue Feb 1 01:31:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 17:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j111W1Q4029215 for ; Mon, 31 Jan 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111W11x065361 for ; Mon, 31 Jan 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111W1Ip019404; Mon, 31 Jan 2005 17:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111VjIp019395 for ; Mon, 31 Jan 2005 17:31:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111Vj1x065358 for ; Mon, 31 Jan 2005 17:31:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j111ViL7032034 for ; Mon, 31 Jan 2005 17:31:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j111Vi9W032033 for xorp-cvs@icir.org; Tue, 1 Feb 2005 01:31:44 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 01:31:44 GMT From: Pavlin Radoslavov Message-Id: <200502010131.j111Vi9W032033@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 01:31:44 UTC XORP CVS repository Modified files: rib rt_tab_log.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.7 +9 -5 xorp/rib/rt_tab_log.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:34 2005 Subject: No subject Tue Feb 1 01:46:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 17:47:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j111l0pv032858 for ; Mon, 31 Jan 2005 17:47:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111l01x065569 for ; Mon, 31 Jan 2005 17:47:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111l0Ip019869; Mon, 31 Jan 2005 17:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111kkIp019862 for ; Mon, 31 Jan 2005 17:46:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111kk1x065566 for ; Mon, 31 Jan 2005 17:46:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j111kkrk032162 for ; Mon, 31 Jan 2005 17:46:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j111kkG4032161 for xorp-cvs@icir.org; Tue, 1 Feb 2005 01:46:46 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 01:46:46 GMT From: Pavlin Radoslavov Message-Id: <200502010146.j111kkG4032161@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 01:46:46 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.48 +8 -8 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:35 2005 Subject: No subject Tue Feb 1 01:53:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 17:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j111s1ui034519 for ; Mon, 31 Jan 2005 17:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111s11x065641 for ; Mon, 31 Jan 2005 17:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111s1Ip020050; Mon, 31 Jan 2005 17:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j111riIp020029 for ; Mon, 31 Jan 2005 17:53:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j111rh1x065637 for ; Mon, 31 Jan 2005 17:53:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j111rhdB032244 for ; Mon, 31 Jan 2005 17:53:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j111rhUM032243 for xorp-cvs@icir.org; Tue, 1 Feb 2005 01:53:43 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 01:53:43 GMT From: Pavlin Radoslavov Message-Id: <200502010153.j111rhUM032243@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 01:53:43 UTC XORP CVS repository Modified files: rib redist_xrl.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.18 +5 -5 xorp/rib/redist_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:35 2005 Subject: No subject Tue Feb 1 02:01:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11221M0036452 for ; Mon, 31 Jan 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112211x065741 for ; Mon, 31 Jan 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11220Ip020265; Mon, 31 Jan 2005 18:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11219Ip020240 for ; Mon, 31 Jan 2005 18:01:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112191x065732 for ; Mon, 31 Jan 2005 18:01:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11219Af032344 for ; Mon, 31 Jan 2005 18:01:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11219Ax032343 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:01:09 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:01:09 GMT From: Pavlin Radoslavov Message-Id: <200502010201.j11219Ax032343@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:01:09 UTC XORP CVS repository Modified files: mld6igmp igmp_proto.cc mld6_proto.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.27 +2 -2 xorp/mld6igmp/igmp_proto.cc 1.30 +2 -2 xorp/mld6igmp/mld6_proto.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:35 2005 Subject: No subject Tue Feb 1 02:02:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112317F036744 for ; Mon, 31 Jan 2005 18:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112311x065754 for ; Mon, 31 Jan 2005 18:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11231Ip020300; Mon, 31 Jan 2005 18:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1122xIp020294 for ; Mon, 31 Jan 2005 18:02:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1122x1x065752 for ; Mon, 31 Jan 2005 18:02:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1122xGm032389 for ; Mon, 31 Jan 2005 18:02:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1122xql032388 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:02:59 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:02:59 GMT From: Pavlin Radoslavov Message-Id: <200502010202.j1122xql032388@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:02:59 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.31 +2 -2 xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:35 2005 Subject: No subject Tue Feb 1 02:08:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112917j038075 for ; Mon, 31 Jan 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112911x065832 for ; Mon, 31 Jan 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11291Ip020498; Mon, 31 Jan 2005 18:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11280Ip020454 for ; Mon, 31 Jan 2005 18:08:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112801x065826 for ; Mon, 31 Jan 2005 18:08:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11280ER032469 for ; Mon, 31 Jan 2005 18:08:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11280MD032468 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:08:00 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:08:00 GMT From: Pavlin Radoslavov Message-Id: <200502010208.j11280MD032468@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:08:00 UTC XORP CVS repository Modified files: rip auth.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.11 +13 -12 xorp/rip/auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:35 2005 Subject: No subject Tue Feb 1 02:15:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112G1LH039609 for ; Mon, 31 Jan 2005 18:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112G11x065926 for ; Mon, 31 Jan 2005 18:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112G0Ip020698; Mon, 31 Jan 2005 18:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112FfIp020682 for ; Mon, 31 Jan 2005 18:15:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112Fe1x065912 for ; Mon, 31 Jan 2005 18:15:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112Fenv032590 for ; Mon, 31 Jan 2005 18:15:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112FeGY032589 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:15:40 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:15:40 GMT From: Pavlin Radoslavov Message-Id: <200502010215.j112FeGY032589@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:15:40 UTC XORP CVS repository Modified files: rip port.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.39 +5 -4 xorp/rip/port.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:20:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:21:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112L19O040718 for ; Mon, 31 Jan 2005 18:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112L11x065972 for ; Mon, 31 Jan 2005 18:21:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112L1Ip020842; Mon, 31 Jan 2005 18:21:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112KZIp020832 for ; Mon, 31 Jan 2005 18:20:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112KZ1x065969 for ; Mon, 31 Jan 2005 18:20:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112KZ30032677 for ; Mon, 31 Jan 2005 18:20:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112KZj8032676 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:20:35 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:20:35 GMT From: Pavlin Radoslavov Message-Id: <200502010220.j112KZj8032676@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:20:35 UTC XORP CVS repository Modified files: rip route_db.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +3 -2 xorp/rip/route_db.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:30:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112V1XD042650 for ; Mon, 31 Jan 2005 18:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112V01x066088 for ; Mon, 31 Jan 2005 18:31:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112V0Ip021139; Mon, 31 Jan 2005 18:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112U6Ip021121 for ; Mon, 31 Jan 2005 18:30:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112U51x066069 for ; Mon, 31 Jan 2005 18:30:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112U5SE032744 for ; Mon, 31 Jan 2005 18:30:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112U5YK032743 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:30:05 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:30:05 GMT From: Pavlin Radoslavov Message-Id: <200502010230.j112U5YK032743@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:30:05 UTC XORP CVS repository Modified files: rip update_queue.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.13 +4 -3 xorp/rip/update_queue.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:36:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112b1g5043813 for ; Mon, 31 Jan 2005 18:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112b01x066138 for ; Mon, 31 Jan 2005 18:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112b0Ip021307; Mon, 31 Jan 2005 18:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112anIp021295 for ; Mon, 31 Jan 2005 18:36:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112an1x066136 for ; Mon, 31 Jan 2005 18:36:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112amxL032840 for ; Mon, 31 Jan 2005 18:36:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112am6W032839 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:36:48 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:36:48 GMT From: Pavlin Radoslavov Message-Id: <200502010236.j112am6W032839@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:36:48 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.17 +3 -3 xorp/static_routes/static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:44:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112j0rt045373 for ; Mon, 31 Jan 2005 18:45:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112j01x066217 for ; Mon, 31 Jan 2005 18:45:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112j0Ip021500; Mon, 31 Jan 2005 18:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112iYIp021491 for ; Mon, 31 Jan 2005 18:44:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112iY1x066209 for ; Mon, 31 Jan 2005 18:44:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112iY6u032918 for ; Mon, 31 Jan 2005 18:44:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112iYdT032917 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:44:34 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:44:34 GMT From: Pavlin Radoslavov Message-Id: <200502010244.j112iYdT032917@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:44:34 UTC XORP CVS repository Modified files: rtrmgr conf_tree.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.25 +5 -4 xorp/rtrmgr/conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:46:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:47:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112l0w4045772 for ; Mon, 31 Jan 2005 18:47:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112l01x066249 for ; Mon, 31 Jan 2005 18:47:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112l0Ip021551; Mon, 31 Jan 2005 18:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112kpIp021541 for ; Mon, 31 Jan 2005 18:46:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112kp1x066247 for ; Mon, 31 Jan 2005 18:46:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112kpNw032992 for ; Mon, 31 Jan 2005 18:46:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112kpU6032991 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:46:51 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:46:51 GMT From: Pavlin Radoslavov Message-Id: <200502010246.j112kpU6032991@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:46:51 UTC XORP CVS repository Modified files: rip xrl_port_manager.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.17 +9 -9 xorp/rip/xrl_port_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:47:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112m1JR045997 for ; Mon, 31 Jan 2005 18:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112m11x066260 for ; Mon, 31 Jan 2005 18:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112m1Ip021585; Mon, 31 Jan 2005 18:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112lcIp021575 for ; Mon, 31 Jan 2005 18:47:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112lb1x066253 for ; Mon, 31 Jan 2005 18:47:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112lbGe033031 for ; Mon, 31 Jan 2005 18:47:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112lbUQ033030 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:47:37 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:47:37 GMT From: Pavlin Radoslavov Message-Id: <200502010247.j112lbUQ033030@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:47:37 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.61 +2 -2 xorp/rtrmgr/conf_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:50:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112p1kb046643 for ; Mon, 31 Jan 2005 18:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112p01x066313 for ; Mon, 31 Jan 2005 18:51:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112p0Ip021648; Mon, 31 Jan 2005 18:51:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112oDIp021633 for ; Mon, 31 Jan 2005 18:50:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112oD1x066301 for ; Mon, 31 Jan 2005 18:50:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112oDwA033093 for ; Mon, 31 Jan 2005 18:50:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112oD7Z033092 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:50:13 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:50:13 GMT From: Pavlin Radoslavov Message-Id: <200502010250.j112oD7Z033092@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:50:13 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.44 +9 -7 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:51:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112q1dC046856 for ; Mon, 31 Jan 2005 18:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112q11x066322 for ; Mon, 31 Jan 2005 18:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112q1Ip021695; Mon, 31 Jan 2005 18:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112pEIp021664 for ; Mon, 31 Jan 2005 18:51:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112pD1x066315 for ; Mon, 31 Jan 2005 18:51:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112pDJ5033132 for ; Mon, 31 Jan 2005 18:51:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112pDAQ033131 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:51:13 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:51:13 GMT From: Pavlin Radoslavov Message-Id: <200502010251.j112pDAQ033131@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:51:13 UTC XORP CVS repository Modified files: rip xrl_port_io.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +3 -3 xorp/rip/xrl_port_io.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:36 2005 Subject: No subject Tue Feb 1 02:52:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:53:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112r26Z047059 for ; Mon, 31 Jan 2005 18:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112r21x066337 for ; Mon, 31 Jan 2005 18:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112r2Ip021742; Mon, 31 Jan 2005 18:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112qFIp021707 for ; Mon, 31 Jan 2005 18:52:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112qE1x066327 for ; Mon, 31 Jan 2005 18:52:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112qELJ033171 for ; Mon, 31 Jan 2005 18:52:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112qEdJ033170 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:52:14 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:52:14 GMT From: Pavlin Radoslavov Message-Id: <200502010252.j112qEdJ033170@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:52:14 UTC XORP CVS repository Modified files: rtrmgr module_manager.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.41 +3 -2 xorp/rtrmgr/module_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:53:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112s1i4047278 for ; Mon, 31 Jan 2005 18:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112s11x066352 for ; Mon, 31 Jan 2005 18:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112s1Ip021776; Mon, 31 Jan 2005 18:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112riIp021765 for ; Mon, 31 Jan 2005 18:53:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112ri1x066343 for ; Mon, 31 Jan 2005 18:53:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112riDd033210 for ; Mon, 31 Jan 2005 18:53:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112ri4l033209 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:53:44 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:53:44 GMT From: Pavlin Radoslavov Message-Id: <200502010253.j112ri4l033209@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:53:44 UTC XORP CVS repository Modified files: rtrmgr randomness.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +4 -4 xorp/rtrmgr/randomness.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:54:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112t0pq047482 for ; Mon, 31 Jan 2005 18:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112t01x066366 for ; Mon, 31 Jan 2005 18:55:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112t0Ip021801; Mon, 31 Jan 2005 18:55:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112sdIp021793 for ; Mon, 31 Jan 2005 18:54:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112sd1x066358 for ; Mon, 31 Jan 2005 18:54:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112sdwh033249 for ; Mon, 31 Jan 2005 18:54:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112sdsZ033248 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:54:39 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:54:39 GMT From: Pavlin Radoslavov Message-Id: <200502010254.j112sdsZ033248@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:54:39 UTC XORP CVS repository Modified files: rip xrl_redist_manager.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.7 +3 -3 xorp/rip/xrl_redist_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:56:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:57:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112v0pu047913 for ; Mon, 31 Jan 2005 18:57:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112v01x066402 for ; Mon, 31 Jan 2005 18:57:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112v0Ip021852; Mon, 31 Jan 2005 18:57:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112uXIp021835 for ; Mon, 31 Jan 2005 18:56:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112uW1x066398 for ; Mon, 31 Jan 2005 18:56:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112uWsJ033308 for ; Mon, 31 Jan 2005 18:56:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112uWTM033307 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:56:32 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:56:32 GMT From: Pavlin Radoslavov Message-Id: <200502010256.j112uWTM033307@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:56:32 UTC XORP CVS repository Modified files: rtrmgr template_base_command.cc Log message: Add XORP_INT_CAST() casting as appropriate. Revision Changes Path 1.2 +10 -3 xorp/rtrmgr/template_base_command.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:57:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112w1bH048122 for ; Mon, 31 Jan 2005 18:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112w11x066420 for ; Mon, 31 Jan 2005 18:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112w0Ip021893; Mon, 31 Jan 2005 18:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112vgIp021879 for ; Mon, 31 Jan 2005 18:57:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112vg1x066418 for ; Mon, 31 Jan 2005 18:57:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112vgD5033353 for ; Mon, 31 Jan 2005 18:57:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112vgYw033352 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:57:42 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:57:42 GMT From: Pavlin Radoslavov Message-Id: <200502010257.j112vgYw033352@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:57:42 UTC XORP CVS repository Modified files: rip xrl_redist_manager.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.8 +2 -2 xorp/rip/xrl_redist_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:58:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 18:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j112x1jh048307 for ; Mon, 31 Jan 2005 18:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112x11x066429 for ; Mon, 31 Jan 2005 18:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112x1Ip021952; Mon, 31 Jan 2005 18:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112wKIp021907 for ; Mon, 31 Jan 2005 18:58:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112wK1x066425 for ; Mon, 31 Jan 2005 18:58:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112wJuX033392 for ; Mon, 31 Jan 2005 18:58:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112wJk7033391 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:58:19 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:58:19 GMT From: Pavlin Radoslavov Message-Id: <200502010258.j112wJk7033391@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:58:19 UTC XORP CVS repository Modified files: rtrmgr template_commands.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.49 +2 -2 xorp/rtrmgr/template_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 02:59:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 19:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11301Zv048514 for ; Mon, 31 Jan 2005 19:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113011x066446 for ; Mon, 31 Jan 2005 19:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11301Ip022015; Mon, 31 Jan 2005 19:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j112xiIp022001 for ; Mon, 31 Jan 2005 18:59:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j112xi1x066435 for ; Mon, 31 Jan 2005 18:59:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j112xiaJ033431 for ; Mon, 31 Jan 2005 18:59:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j112xiqg033430 for xorp-cvs@icir.org; Tue, 1 Feb 2005 02:59:44 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 02:59:44 GMT From: Pavlin Radoslavov Message-Id: <200502010259.j112xiqg033430@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 02:59:44 UTC XORP CVS repository Modified files: rtrmgr template_tree_node.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.34 +2 -2 xorp/rtrmgr/template_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 03:01:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 19:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11321TS048928 for ; Mon, 31 Jan 2005 19:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113211x066482 for ; Mon, 31 Jan 2005 19:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11320Ip022063; Mon, 31 Jan 2005 19:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11313Ip022034 for ; Mon, 31 Jan 2005 19:01:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113131x066472 for ; Mon, 31 Jan 2005 19:01:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11313c8033493 for ; Mon, 31 Jan 2005 19:01:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11313IF033492 for xorp-cvs@icir.org; Tue, 1 Feb 2005 03:01:03 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 03:01:03 GMT From: Pavlin Radoslavov Message-Id: <200502010301.j11313IF033492@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 03:01:03 UTC XORP CVS repository Modified files: rtrmgr userdb.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.11 +3 -2 xorp/rtrmgr/userdb.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:37 2005 Subject: No subject Tue Feb 1 03:06:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 19:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11371Oa049931 for ; Mon, 31 Jan 2005 19:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113711x066544 for ; Mon, 31 Jan 2005 19:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11371Ip022202; Mon, 31 Jan 2005 19:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1136WIp022182 for ; Mon, 31 Jan 2005 19:06:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1136W1x066536 for ; Mon, 31 Jan 2005 19:06:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1136WLJ033554 for ; Mon, 31 Jan 2005 19:06:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1136Wnb033553 for xorp-cvs@icir.org; Tue, 1 Feb 2005 03:06:32 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 03:06:32 GMT From: Pavlin Radoslavov Message-Id: <200502010306.j1136Wnb033553@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 03:06:32 UTC XORP CVS repository Modified files: rtrmgr xrl_rtrmgr_interface.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Use an "unsigned int" argument to scanf("%u"). Revision Changes Path 1.33 +14 -9 xorp/rtrmgr/xrl_rtrmgr_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:38 2005 Subject: No subject Tue Feb 1 03:07:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 19:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11381cx050141 for ; Mon, 31 Jan 2005 19:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113811x066555 for ; Mon, 31 Jan 2005 19:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11381Ip022239; Mon, 31 Jan 2005 19:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1137PIp022220 for ; Mon, 31 Jan 2005 19:07:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1137O1x066550 for ; Mon, 31 Jan 2005 19:07:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1137OTb033599 for ; Mon, 31 Jan 2005 19:07:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1137ObC033598 for xorp-cvs@icir.org; Tue, 1 Feb 2005 03:07:24 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 03:07:24 GMT From: Pavlin Radoslavov Message-Id: <200502010307.j1137ObC033598@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 03:07:24 UTC XORP CVS repository Modified files: rip xrl_port_io.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.15 +3 -3 xorp/rip/xrl_port_io.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:38 2005 Subject: No subject Tue Feb 1 03:57:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 19:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j113w1bV059809 for ; Mon, 31 Jan 2005 19:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113w11x067111 for ; Mon, 31 Jan 2005 19:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j113w1Ip023438; Mon, 31 Jan 2005 19:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j113v8Ip023415 for ; Mon, 31 Jan 2005 19:57:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j113v71x067103 for ; Mon, 31 Jan 2005 19:57:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j113v7jO033906 for ; Mon, 31 Jan 2005 19:57:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j113v7cd033905 for xorp-cvs@icir.org; Tue, 1 Feb 2005 03:57:07 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 03:57:07 GMT From: Pavlin Radoslavov Message-Id: <200502010357.j113v7cd033905@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 03:57:07 UTC XORP CVS repository Modified files: rip xorp_rip_main.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.9 +3 -2 xorp/rip/xorp_rip_main.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:38 2005 Subject: No subject Tue Feb 1 04:01:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 20:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11421ws060637 for ; Mon, 31 Jan 2005 20:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j114211x067192 for ; Mon, 31 Jan 2005 20:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11421Ip023532; Mon, 31 Jan 2005 20:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1141sIp023524 for ; Mon, 31 Jan 2005 20:01:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1141s1x067190 for ; Mon, 31 Jan 2005 20:01:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1141sKD033989 for ; Mon, 31 Jan 2005 20:01:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1141sbn033988 for xorp-cvs@icir.org; Tue, 1 Feb 2005 04:01:54 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 04:01:54 GMT From: Pavlin Radoslavov Message-Id: <200502010401.j1141sbn033988@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 04:01:54 UTC XORP CVS repository Modified files: rip xrl_target_common.hh Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.18 +6 -6 xorp/rip/xrl_target_common.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:38 2005 Subject: No subject Tue Feb 1 04:10:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 20:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j114B0jV062842 for ; Mon, 31 Jan 2005 20:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j114B01x067386 for ; Mon, 31 Jan 2005 20:11:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j114B0Ip023775; Mon, 31 Jan 2005 20:11:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j114AKIp023763 for ; Mon, 31 Jan 2005 20:10:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j114AJ1x067381 for ; Mon, 31 Jan 2005 20:10:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j114AJ47034112 for ; Mon, 31 Jan 2005 20:10:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j114AJGd034111 for xorp-cvs@icir.org; Tue, 1 Feb 2005 04:10:19 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 04:10:19 GMT From: Pavlin Radoslavov Message-Id: <200502010410.j114AJGd034111@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 04:10:19 UTC XORP CVS repository Modified files: fea click_socket.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +4 -4 xorp/fea/click_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 04:55:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 20:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j114u1Y0072843 for ; Mon, 31 Jan 2005 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j114u11x067926 for ; Mon, 31 Jan 2005 20:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j114u1Ip024929; Mon, 31 Jan 2005 20:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j114tYIp024909 for ; Mon, 31 Jan 2005 20:55:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j114tY1x067919 for ; Mon, 31 Jan 2005 20:55:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j114tYNL034378 for ; Mon, 31 Jan 2005 20:55:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j114tYqw034377 for xorp-cvs@icir.org; Tue, 1 Feb 2005 04:55:34 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 04:55:34 GMT From: Pavlin Radoslavov Message-Id: <200502010455.j114tYqw034377@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 04:55:34 UTC XORP CVS repository Modified files: libxipc test_xrl_atom.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.8 +2 -2 xorp/libxipc/test_xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:00:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115118K073829 for ; Mon, 31 Jan 2005 21:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115111x067992 for ; Mon, 31 Jan 2005 21:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11511Ip025044; Mon, 31 Jan 2005 21:01:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1150MIp025029 for ; Mon, 31 Jan 2005 21:00:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1150M1x067987 for ; Mon, 31 Jan 2005 21:00:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1150MvP034445 for ; Mon, 31 Jan 2005 21:00:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1150Mxs034444 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:00:22 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:00:22 GMT From: Pavlin Radoslavov Message-Id: <200502010500.j1150Mxs034444@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:00:22 UTC XORP CVS repository Modified files: libxipc test_xrl_args.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.8 +19 -13 xorp/libxipc/test_xrl_args.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:04:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11551pR074642 for ; Mon, 31 Jan 2005 21:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115501x068035 for ; Mon, 31 Jan 2005 21:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11550Ip025130; Mon, 31 Jan 2005 21:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1154BIp025117 for ; Mon, 31 Jan 2005 21:04:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1154B1x068026 for ; Mon, 31 Jan 2005 21:04:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1154BTh034494 for ; Mon, 31 Jan 2005 21:04:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1154BI8034493 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:04:11 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:04:11 GMT From: Pavlin Radoslavov Message-Id: <200502010504.j1154BI8034493@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:04:11 UTC XORP CVS repository Modified files: libxipc test_header.cc Log message: Fix the argument type of an integer to correspond to the add() and get() arguments: OLD: int NEW: int32_t Revision Changes Path 1.5 +3 -3 xorp/libxipc/test_header.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:12:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115D1IQ076303 for ; Mon, 31 Jan 2005 21:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115D11x068162 for ; Mon, 31 Jan 2005 21:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115D1Ip025332; Mon, 31 Jan 2005 21:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115CdIp025319 for ; Mon, 31 Jan 2005 21:12:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115Cd1x068157 for ; Mon, 31 Jan 2005 21:12:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115CdIg034640 for ; Mon, 31 Jan 2005 21:12:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115CdGK034639 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:12:39 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:12:39 GMT From: Pavlin Radoslavov Message-Id: <200502010512.j115CdGK034639@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:12:39 UTC XORP CVS repository Modified files: libxipc test_finder_tcp.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +7 -4 xorp/libxipc/test_finder_tcp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:16:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115H1wk077147 for ; Mon, 31 Jan 2005 21:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115H11x068232 for ; Mon, 31 Jan 2005 21:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115H1Ip025437; Mon, 31 Jan 2005 21:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115GIIp025414 for ; Mon, 31 Jan 2005 21:16:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115GH1x068220 for ; Mon, 31 Jan 2005 21:16:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115GHIi034705 for ; Mon, 31 Jan 2005 21:16:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115GHqH034704 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:16:17 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:16:17 GMT From: Pavlin Radoslavov Message-Id: <200502010516.j115GHqH034704@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:16:17 UTC XORP CVS repository Modified files: libxipc test_finder_msgs.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.5 +9 -5 xorp/libxipc/test_finder_msgs.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:26:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115R1jb079146 for ; Mon, 31 Jan 2005 21:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115R11x068365 for ; Mon, 31 Jan 2005 21:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115R1Ip025668; Mon, 31 Jan 2005 21:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115QsIp025661 for ; Mon, 31 Jan 2005 21:26:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115Qs1x068363 for ; Mon, 31 Jan 2005 21:26:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115QrT0034821 for ; Mon, 31 Jan 2005 21:26:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115QrTF034820 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:26:53 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:26:53 GMT From: Pavlin Radoslavov Message-Id: <200502010526.j115QrTF034820@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:26:53 UTC XORP CVS repository Modified files: libxipc test_finder_events.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Add static_cast casting to callback arguments that are unsigned integer constants. Revision Changes Path 1.15 +17 -13 xorp/libxipc/test_finder_events.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:30:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:31:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115V0dC079970 for ; Mon, 31 Jan 2005 21:31:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115V01x068432 for ; Mon, 31 Jan 2005 21:31:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115V0Ip025760; Mon, 31 Jan 2005 21:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115UoIp025753 for ; Mon, 31 Jan 2005 21:30:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115Uo1x068430 for ; Mon, 31 Jan 2005 21:30:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115UoGR034890 for ; Mon, 31 Jan 2005 21:30:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115UoQH034889 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:30:50 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:30:50 GMT From: Pavlin Radoslavov Message-Id: <200502010530.j115UoQH034889@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:30:50 UTC XORP CVS repository Modified files: libxipc test_finder_to.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.8 +3 -3 xorp/libxipc/test_finder_to.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:33:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115Y1dI080564 for ; Mon, 31 Jan 2005 21:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115Y11x068466 for ; Mon, 31 Jan 2005 21:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115Y0Ip025851; Mon, 31 Jan 2005 21:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115X1Ip025811 for ; Mon, 31 Jan 2005 21:33:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115X11x068451 for ; Mon, 31 Jan 2005 21:33:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115X0TI034929 for ; Mon, 31 Jan 2005 21:33:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115X0GS034928 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:33:00 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:33:00 GMT From: Pavlin Radoslavov Message-Id: <200502010533.j115X0GS034928@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:33:00 UTC XORP CVS repository Modified files: libxipc test_xrl_receiver.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.6 +4 -3 xorp/libxipc/test_xrl_receiver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 05:35:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 21:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j115a1Gh080980 for ; Mon, 31 Jan 2005 21:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115a11x068510 for ; Mon, 31 Jan 2005 21:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115a1Ip025922; Mon, 31 Jan 2005 21:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j115ZEIp025908 for ; Mon, 31 Jan 2005 21:35:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j115ZD1x068503 for ; Mon, 31 Jan 2005 21:35:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j115ZD6Q034993 for ; Mon, 31 Jan 2005 21:35:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j115ZDWP034992 for xorp-cvs@icir.org; Tue, 1 Feb 2005 05:35:13 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 05:35:13 GMT From: Pavlin Radoslavov Message-Id: <200502010535.j115ZDWP034992@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 05:35:13 UTC XORP CVS repository Modified files: libxipc test_xrl_sender.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.10 +4 -3 xorp/libxipc/test_xrl_sender.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:39 2005 Subject: No subject Tue Feb 1 07:24:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117P13v006160 for ; Mon, 31 Jan 2005 23:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117P11x069560 for ; Mon, 31 Jan 2005 23:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117P0Ip028601; Mon, 31 Jan 2005 23:25:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117OfIp028587 for ; Mon, 31 Jan 2005 23:24:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117Of1x069553 for ; Mon, 31 Jan 2005 23:24:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117Of2X035824 for ; Mon, 31 Jan 2005 23:24:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117OfTV035823 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:24:41 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:24:41 GMT From: Pavlin Radoslavov Message-Id: <200502010724.j117OfTV035823@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:24:41 UTC XORP CVS repository Modified files: rib add_route.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.3 +3 -3 xorp/rib/add_route.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:30:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117V1Q6007565 for ; Mon, 31 Jan 2005 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117V11x069641 for ; Mon, 31 Jan 2005 23:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117V1Ip028757; Mon, 31 Jan 2005 23:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117UkIp028748 for ; Mon, 31 Jan 2005 23:30:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117Uk1x069638 for ; Mon, 31 Jan 2005 23:30:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117UkHD035908 for ; Mon, 31 Jan 2005 23:30:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117UkRM035907 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:30:46 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:30:46 GMT From: Pavlin Radoslavov Message-Id: <200502010730.j117UkRM035907@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:30:46 UTC XORP CVS repository Modified files: rib/tools show_routes.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.9 +3 -2 xorp/rib/tools/show_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:38:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117d1vZ009414 for ; Mon, 31 Jan 2005 23:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117d11x069706 for ; Mon, 31 Jan 2005 23:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117d1Ip029103; Mon, 31 Jan 2005 23:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117c6Ip029080 for ; Mon, 31 Jan 2005 23:38:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117c61x069701 for ; Mon, 31 Jan 2005 23:38:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117c6Mp035969 for ; Mon, 31 Jan 2005 23:38:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117c5io035968 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:38:05 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:38:05 GMT From: Pavlin Radoslavov Message-Id: <200502010738.j117c5io035968@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:38:05 UTC XORP CVS repository Modified files: rib test_redist.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.6 +2 -2 xorp/rib/test_redist.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:41:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117g1al010154 for ; Mon, 31 Jan 2005 23:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117g01x069748 for ; Mon, 31 Jan 2005 23:42:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117g0Ip029202; Mon, 31 Jan 2005 23:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117fGIp029163 for ; Mon, 31 Jan 2005 23:41:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117fG1x069738 for ; Mon, 31 Jan 2005 23:41:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117fGid036030 for ; Mon, 31 Jan 2005 23:41:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117fGFD036029 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:41:16 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:41:16 GMT From: Pavlin Radoslavov Message-Id: <200502010741.j117fGFD036029@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:41:16 UTC XORP CVS repository Modified files: rtrmgr cli.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.63 +7 -6 xorp/rtrmgr/cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:43:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117i1UH010629 for ; Mon, 31 Jan 2005 23:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117i11x069760 for ; Mon, 31 Jan 2005 23:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117i1Ip029270; Mon, 31 Jan 2005 23:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117h9Ip029230 for ; Mon, 31 Jan 2005 23:43:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117h91x069752 for ; Mon, 31 Jan 2005 23:43:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117h9Cr036074 for ; Mon, 31 Jan 2005 23:43:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117h93N036073 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:43:09 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:43:09 GMT From: Pavlin Radoslavov Message-Id: <200502010743.j117h93N036073@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:43:09 UTC XORP CVS repository Modified files: rib dummy_register_server.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.10 +10 -8 xorp/rib/dummy_register_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:44:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117j1Ke010879 for ; Mon, 31 Jan 2005 23:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117j11x069767 for ; Mon, 31 Jan 2005 23:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117j0Ip029297; Mon, 31 Jan 2005 23:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117i4Ip029285 for ; Mon, 31 Jan 2005 23:44:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117i41x069762 for ; Mon, 31 Jan 2005 23:44:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117i4Ch036118 for ; Mon, 31 Jan 2005 23:44:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117i4A5036117 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:44:04 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:44:04 GMT From: Pavlin Radoslavov Message-Id: <200502010744.j117i4A5036117@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:44:04 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.44 +3 -3 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:45:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:46:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117k2dM011129 for ; Mon, 31 Jan 2005 23:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117k21x069792 for ; Mon, 31 Jan 2005 23:46:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117k2Ip029339; Mon, 31 Jan 2005 23:46:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117juIp029320 for ; Mon, 31 Jan 2005 23:45:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117ju1x069790 for ; Mon, 31 Jan 2005 23:45:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117jurK036177 for ; Mon, 31 Jan 2005 23:45:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117ju12036176 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:45:56 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:45:56 GMT From: Pavlin Radoslavov Message-Id: <200502010745.j117ju12036176@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:45:56 UTC XORP CVS repository Modified files: rtrmgr slave_conf_tree_node.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.18 +2 -2 xorp/rtrmgr/slave_conf_tree_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:40 2005 Subject: No subject Tue Feb 1 07:47:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117m1Zj011588 for ; Mon, 31 Jan 2005 23:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117m11x069807 for ; Mon, 31 Jan 2005 23:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117m1Ip029393; Mon, 31 Jan 2005 23:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117lRIp029374 for ; Mon, 31 Jan 2005 23:47:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117lR1x069802 for ; Mon, 31 Jan 2005 23:47:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117lRxO036221 for ; Mon, 31 Jan 2005 23:47:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117lRVZ036220 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:47:27 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:47:27 GMT From: Pavlin Radoslavov Message-Id: <200502010747.j117lRVZ036220@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:47:27 UTC XORP CVS repository Modified files: rib test_register_xrls.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.33 +8 -7 xorp/rib/test_register_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:41 2005 Subject: No subject Tue Feb 1 07:48:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117n1Qi011847 for ; Mon, 31 Jan 2005 23:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117n01x069813 for ; Mon, 31 Jan 2005 23:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117n0Ip029428; Mon, 31 Jan 2005 23:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117miIp029415 for ; Mon, 31 Jan 2005 23:48:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117mi1x069809 for ; Mon, 31 Jan 2005 23:48:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117miwb036260 for ; Mon, 31 Jan 2005 23:48:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117miji036259 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:48:44 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:48:44 GMT From: Pavlin Radoslavov Message-Id: <200502010748.j117miji036259@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:48:44 UTC XORP CVS repository Modified files: rtrmgr xorpsh_main.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.38 +3 -3 xorp/rtrmgr/xorpsh_main.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:41 2005 Subject: No subject Tue Feb 1 07:51:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117q1uF012540 for ; Mon, 31 Jan 2005 23:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117q01x069854 for ; Mon, 31 Jan 2005 23:52:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117q0Ip029499; Mon, 31 Jan 2005 23:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117p1Ip029465 for ; Mon, 31 Jan 2005 23:51:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117p11x069845 for ; Mon, 31 Jan 2005 23:51:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117p0Ym036329 for ; Mon, 31 Jan 2005 23:51:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117p06m036328 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:51:00 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:51:00 GMT From: Pavlin Radoslavov Message-Id: <200502010751.j117p06m036328@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:51:00 UTC XORP CVS repository Modified files: rtrmgr xrl_xorpsh_interface.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +5 -5 xorp/rtrmgr/xrl_xorpsh_interface.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:41 2005 Subject: No subject Tue Feb 1 07:55:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 31 Jan 2005 23:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j117u2Q0013463 for ; Mon, 31 Jan 2005 23:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117u11x069892 for ; Mon, 31 Jan 2005 23:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117u1Ip029612; Mon, 31 Jan 2005 23:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j117tXIp029592 for ; Mon, 31 Jan 2005 23:55:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j117tX1x069887 for ; Mon, 31 Jan 2005 23:55:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j117tXFA036393 for ; Mon, 31 Jan 2005 23:55:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j117tXJb036392 for xorp-cvs@icir.org; Tue, 1 Feb 2005 07:55:33 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 07:55:33 GMT From: Pavlin Radoslavov Message-Id: <200502010755.j117tXJb036392@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 07:55:33 UTC XORP CVS repository Modified files: rtrmgr profiler.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.2 +3 -2 xorp/rtrmgr/profiler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:03:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11841o6015314 for ; Tue, 1 Feb 2005 00:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118411x069989 for ; Tue, 1 Feb 2005 00:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11841Ip029800; Tue, 1 Feb 2005 00:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1183KIp029774 for ; Tue, 1 Feb 2005 00:03:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1183K1x069983 for ; Tue, 1 Feb 2005 00:03:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1183K21036474 for ; Tue, 1 Feb 2005 00:03:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1183KBc036473 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:03:20 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:03:20 GMT From: Pavlin Radoslavov Message-Id: <200502010803.j1183KBc036473@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:03:20 UTC XORP CVS repository Modified files: rip/tools common.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.3 +5 -3 xorp/rip/tools/common.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:31:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118W28l021019 for ; Tue, 1 Feb 2005 00:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118W21x070286 for ; Tue, 1 Feb 2005 00:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118W1Ip000554; Tue, 1 Feb 2005 00:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118V7Ip000519 for ; Tue, 1 Feb 2005 00:31:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118V71x070283 for ; Tue, 1 Feb 2005 00:31:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118V7Ft036728 for ; Tue, 1 Feb 2005 00:31:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118V7CJ036727 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:31:07 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:31:07 GMT From: Pavlin Radoslavov Message-Id: <200502010831.j118V7CJ036727@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:31:07 UTC XORP CVS repository Modified files: rip test_auth.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.11 +21 -17 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:33:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118Y1YH021390 for ; Tue, 1 Feb 2005 00:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118Y11x070305 for ; Tue, 1 Feb 2005 00:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118Y1Ip000611; Tue, 1 Feb 2005 00:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118XeIp000588 for ; Tue, 1 Feb 2005 00:33:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118Xd1x070301 for ; Tue, 1 Feb 2005 00:33:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118XdVx036778 for ; Tue, 1 Feb 2005 00:33:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118XdDM036777 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:33:39 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:33:39 GMT From: Pavlin Radoslavov Message-Id: <200502010833.j118XdDM036777@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:33:39 UTC XORP CVS repository Modified files: rip test_auth.cc Log message: Fix a typo from the previous commit. Revision Changes Path 1.12 +2 -2 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:35:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118a1jv021806 for ; Tue, 1 Feb 2005 00:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118a11x070338 for ; Tue, 1 Feb 2005 00:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118a1Ip000676; Tue, 1 Feb 2005 00:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118ZrIp000669 for ; Tue, 1 Feb 2005 00:35:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118Zq1x070336 for ; Tue, 1 Feb 2005 00:35:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118Zq9G036855 for ; Tue, 1 Feb 2005 00:35:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118Zq7C036854 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:35:52 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:35:52 GMT From: Pavlin Radoslavov Message-Id: <200502010835.j118Zq7C036854@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:35:52 UTC XORP CVS repository Modified files: rip test_packets.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.8 +5 -5 xorp/rip/test_packets.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:40:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118f170022775 for ; Tue, 1 Feb 2005 00:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118f11x070389 for ; Tue, 1 Feb 2005 00:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118f1Ip000797; Tue, 1 Feb 2005 00:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118eNIp000763 for ; Tue, 1 Feb 2005 00:40:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118eN1x070381 for ; Tue, 1 Feb 2005 00:40:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118eNT6036969 for ; Tue, 1 Feb 2005 00:40:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118eNkk036968 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:40:23 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:40:23 GMT From: Pavlin Radoslavov Message-Id: <200502010840.j118eNkk036968@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:40:23 UTC XORP CVS repository Modified files: rip test_request.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +9 -6 xorp/rip/test_request.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:42 2005 Subject: No subject Tue Feb 1 08:49:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118o1L9024521 for ; Tue, 1 Feb 2005 00:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118o11x070492 for ; Tue, 1 Feb 2005 00:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118o0Ip001041; Tue, 1 Feb 2005 00:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118nwIp001035 for ; Tue, 1 Feb 2005 00:49:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118nw1x070487 for ; Tue, 1 Feb 2005 00:49:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118nwZD037051 for ; Tue, 1 Feb 2005 00:49:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118nwHc037050 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:49:58 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:49:58 GMT From: Pavlin Radoslavov Message-Id: <200502010849.j118nwHc037050@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:49:58 UTC XORP CVS repository Modified files: rip test_route_walk.cc Log message: * Add XORP_UINT_CAST() and XORP_INT_CAST() casting as appropriate. * Add static_cast casting to unsigned int constants that are used as callback arguments (to match the callback specification). Revision Changes Path 1.10 +18 -11 xorp/rip/test_route_walk.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 08:53:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118s1VS025289 for ; Tue, 1 Feb 2005 00:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118s11x070533 for ; Tue, 1 Feb 2005 00:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118s1Ip001149; Tue, 1 Feb 2005 00:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118rQIp001136 for ; Tue, 1 Feb 2005 00:53:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118rQ1x070527 for ; Tue, 1 Feb 2005 00:53:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118rQ6n037115 for ; Tue, 1 Feb 2005 00:53:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118rQ4Z037114 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:53:26 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:53:26 GMT From: Pavlin Radoslavov Message-Id: <200502010853.j118rQ4Z037114@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:53:26 UTC XORP CVS repository Modified files: rip test_timers.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.11 +5 -4 xorp/rip/test_timers.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 08:57:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 00:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j118w1VB026066 for ; Tue, 1 Feb 2005 00:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118w11x070573 for ; Tue, 1 Feb 2005 00:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118w1Ip001224; Tue, 1 Feb 2005 00:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j118vUIp001214 for ; Tue, 1 Feb 2005 00:57:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j118vT1x070570 for ; Tue, 1 Feb 2005 00:57:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j118vTr8037185 for ; Tue, 1 Feb 2005 00:57:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j118vTbV037184 for xorp-cvs@icir.org; Tue, 1 Feb 2005 08:57:29 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 08:57:29 GMT From: Pavlin Radoslavov Message-Id: <200502010857.j118vTbV037184@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 08:57:29 UTC XORP CVS repository Modified files: rip test_timers.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.12 +2 -2 xorp/rip/test_timers.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 09:04:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 01:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11952ej027508 for ; Tue, 1 Feb 2005 01:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119521x070686 for ; Tue, 1 Feb 2005 01:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11951Ip001436; Tue, 1 Feb 2005 01:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1194OIp001403 for ; Tue, 1 Feb 2005 01:04:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1194O1x070676 for ; Tue, 1 Feb 2005 01:04:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1194OB6037262 for ; Tue, 1 Feb 2005 01:04:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1194Old037261 for xorp-cvs@icir.org; Tue, 1 Feb 2005 09:04:24 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 09:04:24 GMT From: Pavlin Radoslavov Message-Id: <200502010904.j1194Old037261@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 09:04:24 UTC XORP CVS repository Modified files: rip test_update_queue.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.11 +12 -9 xorp/rip/test_update_queue.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 09:05:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 01:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11961pe027727 for ; Tue, 1 Feb 2005 01:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119611x070714 for ; Tue, 1 Feb 2005 01:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11960Ip001472; Tue, 1 Feb 2005 01:06:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1195oIp001465 for ; Tue, 1 Feb 2005 01:05:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1195o1x070710 for ; Tue, 1 Feb 2005 01:05:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1195odU037327 for ; Tue, 1 Feb 2005 01:05:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1195orA037326 for xorp-cvs@icir.org; Tue, 1 Feb 2005 09:05:50 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 09:05:50 GMT From: Pavlin Radoslavov Message-Id: <200502010905.j1195orA037326@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 09:05:50 UTC XORP CVS repository Modified files: rip test_update_queue.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Fix a typo in the previous commit. Revision Changes Path 1.12 +3 -3 xorp/rip/test_update_queue.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 09:17:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 01:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j119I1gl030019 for ; Tue, 1 Feb 2005 01:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119I11x070864 for ; Tue, 1 Feb 2005 01:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119I0Ip001743; Tue, 1 Feb 2005 01:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119HtIp001737 for ; Tue, 1 Feb 2005 01:17:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119Ht1x070862 for ; Tue, 1 Feb 2005 01:17:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j119HsV6037492 for ; Tue, 1 Feb 2005 01:17:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j119HsNp037491 for xorp-cvs@icir.org; Tue, 1 Feb 2005 09:17:54 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 09:17:54 GMT From: Pavlin Radoslavov Message-Id: <200502010917.j119HsNp037491@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 09:17:54 UTC XORP CVS repository Modified files: rip test_outputs.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.16 +10 -10 xorp/rip/test_outputs.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:43 2005 Subject: No subject Tue Feb 1 09:26:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 01:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j119R1jV031756 for ; Tue, 1 Feb 2005 01:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119R11x070966 for ; Tue, 1 Feb 2005 01:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119R1Ip001969; Tue, 1 Feb 2005 01:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119QiIp001961 for ; Tue, 1 Feb 2005 01:26:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119Qh1x070962 for ; Tue, 1 Feb 2005 01:26:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j119Qh7N037592 for ; Tue, 1 Feb 2005 01:26:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j119Qhvs037591 for xorp-cvs@icir.org; Tue, 1 Feb 2005 09:26:43 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 09:26:43 GMT From: Pavlin Radoslavov Message-Id: <200502010926.j119Qhvs037591@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 09:26:43 UTC XORP CVS repository Modified files: rip test_outputs.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.17 +34 -24 xorp/rip/test_outputs.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:44 2005 Subject: No subject Tue Feb 1 09:39:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 01:40:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j119e0Wa034292 for ; Tue, 1 Feb 2005 01:40:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119e01x071075 for ; Tue, 1 Feb 2005 01:40:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119e0Ip002276; Tue, 1 Feb 2005 01:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j119dlIp002270 for ; Tue, 1 Feb 2005 01:39:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j119dk1x071070 for ; Tue, 1 Feb 2005 01:39:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j119dkCf037786 for ; Tue, 1 Feb 2005 01:39:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j119dkHR037785 for xorp-cvs@icir.org; Tue, 1 Feb 2005 09:39:46 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 09:39:46 GMT From: Pavlin Radoslavov Message-Id: <200502010939.j119dkHR037785@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 09:39:46 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Add finder_event_observer.xif to the list of files that static_routes_base.hh and static_routes_base.cc depend on. Revision Changes Path 1.51 +2 -1 xorp/xrl/targets/Makefile.am 1.65 +1 -0 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:44 2005 Subject: No subject Tue Feb 1 10:02:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11A31vB039126 for ; Tue, 1 Feb 2005 02:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11A311x071540 for ; Tue, 1 Feb 2005 02:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11A31Ip002827; Tue, 1 Feb 2005 02:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11A2QIp002800 for ; Tue, 1 Feb 2005 02:02:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11A2Q1x071536 for ; Tue, 1 Feb 2005 02:02:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11A2QN4038017 for ; Tue, 1 Feb 2005 02:02:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11A2Q2N038016 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:02:26 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:02:26 GMT From: Pavlin Radoslavov Message-Id: <200502011002.j11A2Q2N038016@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:02:26 UTC XORP CVS repository Modified files: bgp/tools print_routes.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.14 +3 -2 xorp/bgp/tools/print_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:45 2005 Subject: No subject Tue Feb 1 10:11:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:12:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11AC1jM041317 for ; Tue, 1 Feb 2005 02:12:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AC01x071692 for ; Tue, 1 Feb 2005 02:12:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AC0Ip003027; Tue, 1 Feb 2005 02:12:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AB1Ip002998 for ; Tue, 1 Feb 2005 02:11:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AB11x071684 for ; Tue, 1 Feb 2005 02:11:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11AB1ei038145 for ; Tue, 1 Feb 2005 02:11:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11AB19P038144 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:11:01 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:11:01 GMT From: Pavlin Radoslavov Message-Id: <200502011011.j11AB19P038144@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:11:01 UTC XORP CVS repository Modified files: bgp/harness command.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.19 +9 -9 xorp/bgp/harness/command.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:45 2005 Subject: No subject Tue Feb 1 10:13:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11AE15I041703 for ; Tue, 1 Feb 2005 02:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AE11x071712 for ; Tue, 1 Feb 2005 02:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AE0Ip003083; Tue, 1 Feb 2005 02:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11ADKIp003058 for ; Tue, 1 Feb 2005 02:13:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11ADK1x071705 for ; Tue, 1 Feb 2005 02:13:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11ADKD1038209 for ; Tue, 1 Feb 2005 02:13:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11ADKdt038208 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:13:20 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:13:20 GMT From: Pavlin Radoslavov Message-Id: <200502011013.j11ADKdt038208@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:13:20 UTC XORP CVS repository Modified files: bgp/harness coord.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.21 +7 -5 xorp/bgp/harness/coord.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:45 2005 Subject: No subject Tue Feb 1 10:21:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11AM1wJ043318 for ; Tue, 1 Feb 2005 02:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AM11x071804 for ; Tue, 1 Feb 2005 02:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AM1Ip003314; Tue, 1 Feb 2005 02:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AL4Ip003283 for ; Tue, 1 Feb 2005 02:21:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AL41x071796 for ; Tue, 1 Feb 2005 02:21:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11AL4sF038318 for ; Tue, 1 Feb 2005 02:21:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11AL4TF038317 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:21:04 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:21:04 GMT From: Pavlin Radoslavov Message-Id: <200502011021.j11AL4TF038317@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:21:04 UTC XORP CVS repository Modified files: bgp/harness peer.cc Log message: * Add XORP_UINT_CAST() casting as appropriate. * Bug fix: replace debug_msg(foo.str().c_str()) with debug_msg("%s", foo.str().c_str()) The first form may create a problem if the string itself contains, say, '%' which will be interpretated incorrectly. Revision Changes Path 1.57 +11 -10 xorp/bgp/harness/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:45 2005 Subject: No subject Tue Feb 1 10:24:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11AP1hO043924 for ; Tue, 1 Feb 2005 02:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AP11x071826 for ; Tue, 1 Feb 2005 02:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AP1Ip003382; Tue, 1 Feb 2005 02:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AO4Ip003363 for ; Tue, 1 Feb 2005 02:24:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AO41x071817 for ; Tue, 1 Feb 2005 02:24:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11AO3Np038368 for ; Tue, 1 Feb 2005 02:24:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11AO3YR038367 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:24:03 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:24:03 GMT From: Pavlin Radoslavov Message-Id: <200502011024.j11AO3YR038367@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:24:03 UTC XORP CVS repository Modified files: bgp/harness real_trie.hh Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.7 +12 -12 xorp/bgp/harness/real_trie.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:46 2005 Subject: No subject Tue Feb 1 10:28:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Feb 2005 02:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j11AT2Jp044698 for ; Tue, 1 Feb 2005 02:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11AT21x071862 for ; Tue, 1 Feb 2005 02:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11AT1Ip003517; Tue, 1 Feb 2005 02:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j11ASEIp003500 for ; Tue, 1 Feb 2005 02:28:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j11ASE1x071856 for ; Tue, 1 Feb 2005 02:28:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j11ASD5p038427 for ; Tue, 1 Feb 2005 02:28:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j11ASDrT038426 for xorp-cvs@icir.org; Tue, 1 Feb 2005 10:28:13 GMT (envelope-from pavlin) Date: Tue, 1 Feb 2005 10:28:13 GMT From: Pavlin Radoslavov Message-Id: <200502011028.j11ASDrT038426@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-01 10:28:13 UTC XORP CVS repository Modified files: bgp/harness test_peer.cc Log message: Add XORP_UINT_CAST() casting as appropriate. Revision Changes Path 1.29 +10 -9 xorp/bgp/harness/test_peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:46 2005 Subject: No subject Thu Feb 3 02:45:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Feb 2005 18:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j132k1Eo047521 for ; Wed, 2 Feb 2005 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j132k18R000976 for ; Wed, 2 Feb 2005 18:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j132k1Ip022252; Wed, 2 Feb 2005 18:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j132jRIp022239 for ; Wed, 2 Feb 2005 18:45:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j132jR8R000970 for ; Wed, 2 Feb 2005 18:45:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j132jRdE059518 for ; Wed, 2 Feb 2005 18:45:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j132jRBg059517 for xorp-cvs@icir.org; Thu, 3 Feb 2005 02:45:27 GMT (envelope-from pavlin) Date: Thu, 3 Feb 2005 02:45:27 GMT From: Pavlin Radoslavov Message-Id: <200502030245.j132jRBg059517@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-03 02:45:27 UTC XORP CVS repository Modified files: rtrmgr main_rtrmgr.cc Log message: Merge the declaration of a variable with its initialization. This fixes a bogus compilation error on OpenBSD-current (as of January 17, 2005) when we configure XORP with ./configure --enable-optimize Revision Changes Path 1.57 +3 -4 xorp/rtrmgr/main_rtrmgr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:46 2005 Subject: No subject Thu Feb 3 04:12:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Feb 2005 20:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j134D1Nx068026 for ; Wed, 2 Feb 2005 20:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j134D18R002118 for ; Wed, 2 Feb 2005 20:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j134D1Ip024087; Wed, 2 Feb 2005 20:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j134CIIp024060 for ; Wed, 2 Feb 2005 20:12:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j134CI8R002105 for ; Wed, 2 Feb 2005 20:12:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j134CILm060050 for ; Wed, 2 Feb 2005 20:12:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j134CI5I060049 for xorp-cvs@icir.org; Thu, 3 Feb 2005 04:12:18 GMT (envelope-from pavlin) Date: Thu, 3 Feb 2005 04:12:18 GMT From: Pavlin Radoslavov Message-Id: <200502030412.j134CI5I060049@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-03 04:12:18 UTC XORP CVS repository Modified files: cli test_cli.cc Log message: Refactor the implementation, so now it is more consistent with the test_mfea, test_mld6igmp and test_pim implementations. Revision Changes Path 1.34 +137 -163 xorp/cli/test_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:46 2005 Subject: No subject Thu Feb 3 04:36:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Feb 2005 20:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j134b08c073642 for ; Wed, 2 Feb 2005 20:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j134b08R002384 for ; Wed, 2 Feb 2005 20:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j134b0Ip024600; Wed, 2 Feb 2005 20:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j134afIp024578 for ; Wed, 2 Feb 2005 20:36:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j134af8R002378 for ; Wed, 2 Feb 2005 20:36:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j134afT6060233 for ; Wed, 2 Feb 2005 20:36:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j134af9h060232 for xorp-cvs@icir.org; Thu, 3 Feb 2005 04:36:41 GMT (envelope-from pavlin) Date: Thu, 3 Feb 2005 04:36:41 GMT From: Pavlin Radoslavov Message-Id: <200502030436.j134af9h060232@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-03 04:36:41 UTC XORP CVS repository Modified files: . configure configure.in Log message: Fix the help message for the "--disable-debug" command line option. Revision Changes Path 1.140 +1 -1 xorp/configure 1.131 +2 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:46 2005 Subject: No subject Thu Feb 3 06:51:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Feb 2005 22:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j136q1kR004068 for ; Wed, 2 Feb 2005 22:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j136q18R003832 for ; Wed, 2 Feb 2005 22:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j136q1Ip027857; Wed, 2 Feb 2005 22:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j136ppIp027851 for ; Wed, 2 Feb 2005 22:51:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j136pp8R003829 for ; Wed, 2 Feb 2005 22:51:51 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j136pp6s061195 for ; Wed, 2 Feb 2005 22:51:51 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j136ppQq061194 for xorp-cvs@icir.org; Thu, 3 Feb 2005 06:51:51 GMT (envelope-from bms) Date: Thu, 3 Feb 2005 06:51:51 GMT From: Bruce Simpson Message-Id: <200502030651.j136ppQq061194@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-02-03 06:51:51 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh xrl/targets Makefile.am Makefile.in fib2mrib.tgt fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh Log message: Teach fib2mrib about FEA and RIB process death events, and exit cleanly if these are received. Merge from: Perforce Bugzilla ID: 42 Revision Changes Path 1.17 +53 -1 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.10 +17 -1 xorp/fib2mrib/xrl_fib2mrib_node.hh 1.52 +2 -1 xorp/xrl/targets/Makefile.am 1.66 +1 -0 xorp/xrl/targets/Makefile.in 1.3 +3 -1 xorp/xrl/targets/fib2mrib.tgt 1.6 +11 -1 xorp/xrl/targets/fib2mrib.xrls 1.8 +63 -1 xorp/xrl/targets/fib2mrib_base.cc 1.7 +25 -1 xorp/xrl/targets/fib2mrib_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:47 2005 Subject: No subject Thu Feb 3 07:10:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Feb 2005 23:11:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j137B1wT007984 for ; Wed, 2 Feb 2005 23:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j137B18R004017 for ; Wed, 2 Feb 2005 23:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j137B1Ip028284; Wed, 2 Feb 2005 23:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j137AHIp028254 for ; Wed, 2 Feb 2005 23:10:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j137AH8R004012 for ; Wed, 2 Feb 2005 23:10:17 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j137AGGS061412 for ; Wed, 2 Feb 2005 23:10:16 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j137AGkj061411 for xorp-cvs@icir.org; Thu, 3 Feb 2005 07:10:16 GMT (envelope-from bms) Date: Thu, 3 Feb 2005 07:10:16 GMT From: Bruce Simpson Message-Id: <200502030710.j137AGkj061411@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-02-03 07:10:16 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: Comment out the call to shutdown_module() on the first pass of applying router manager configuration deltas, as I suspect it's responsible for a number of the problems we currently have in Bugzilla. Revision Changes Path 1.45 +3 -1 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:47 2005 Subject: No subject Thu Feb 3 13:45:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Feb 2005 05:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j13Dk1Sr004516 for ; Thu, 3 Feb 2005 05:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j13Dk18R008403 for ; Thu, 3 Feb 2005 05:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j13Dk0Ip009825; Thu, 3 Feb 2005 05:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j13DjYIp009815 for ; Thu, 3 Feb 2005 05:45:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j13DjY8R008399 for ; Thu, 3 Feb 2005 05:45:34 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j13DjY9i064532 for ; Thu, 3 Feb 2005 05:45:34 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j13DjYPh064531 for xorp-cvs@icir.org; Thu, 3 Feb 2005 13:45:34 GMT (envelope-from bms) Date: Thu, 3 Feb 2005 13:45:34 GMT From: Bruce Simpson Message-Id: <200502031345.j13DjYPh064531@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-02-03 13:45:34 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: Make the code which checks for the completion code of an XRL which has been sent by the router manager more bullet-proof by using a switch() statement without a default case. The underlying type is an enum therefore the compiler will check for potentially unhandled cases with the appropriate warning flags. TODO: Cleanup comments. TODO: Eliminate hard-coded XRL retry values and replace them with something which can be tweaked e.g. for the BGP-is-dumping-core edge case. Reviewed by: atanu Merge from: Perforce Bugzilla ID: 81 Revision Changes Path 1.42 +55 -58 xorp/rtrmgr/task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:47 2005 Subject: No subject Tue Feb 8 01:33:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Feb 2005 17:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j181Y19f041469 for ; Mon, 7 Feb 2005 17:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j181Y1uM080827 for ; Mon, 7 Feb 2005 17:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j181Y1Ip003662; Mon, 7 Feb 2005 17:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j181XDIp003601 for ; Mon, 7 Feb 2005 17:33:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j181XDuM080813 for ; Mon, 7 Feb 2005 17:33:13 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j181XDBQ016767 for ; Mon, 7 Feb 2005 17:33:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j181XDLE016766 for xorp-cvs@icir.org; Tue, 8 Feb 2005 01:33:13 GMT (envelope-from atanu) Date: Tue, 8 Feb 2005 01:33:13 GMT From: Atanu Ghosh Message-Id: <200502080133.j181XDLE016766@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-02-08 01:33:13 UTC XORP CVS repository Modified files: libproto test_spt.cc Log message: Test2 now checks the returned edge weights are correct. Added test to verify that the links are unidirectional. Revision Changes Path 1.2 +25 -4 xorp/libproto/test_spt.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:47 2005 Subject: No subject Wed Feb 9 23:25:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 15:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j19NQ1Ti036265 for ; Wed, 9 Feb 2005 15:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NQ1uM009685 for ; Wed, 9 Feb 2005 15:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NQ1Ip020694; Wed, 9 Feb 2005 15:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NPVIp020681 for ; Wed, 9 Feb 2005 15:25:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NPVuM009683 for ; Wed, 9 Feb 2005 15:25:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j19NPUV5042765 for ; Wed, 9 Feb 2005 15:25:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j19NPUhe042764 for xorp-cvs@icir.org; Wed, 9 Feb 2005 23:25:30 GMT (envelope-from pavlin) Date: Wed, 9 Feb 2005 23:25:30 GMT From: Pavlin Radoslavov Message-Id: <200502092325.j19NPUhe042764@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-09 23:25:30 UTC XORP CVS repository Modified files: libfeaclient ifmgr_xrl_mirror.hh Log message: A nit: rename an argument name for consistency with the rest of the code. Revision Changes Path 1.8 +3 -3 xorp/libfeaclient/ifmgr_xrl_mirror.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:47 2005 Subject: No subject Wed Feb 9 23:27:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 15:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j19NS2D8036754 for ; Wed, 9 Feb 2005 15:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NS2uM009700 for ; Wed, 9 Feb 2005 15:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NS2Ip020764; Wed, 9 Feb 2005 15:28:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NRQIp020748 for ; Wed, 9 Feb 2005 15:27:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NRQuM009695 for ; Wed, 9 Feb 2005 15:27:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j19NRQg0042816 for ; Wed, 9 Feb 2005 15:27:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j19NRQ2h042815 for xorp-cvs@icir.org; Wed, 9 Feb 2005 23:27:26 GMT (envelope-from pavlin) Date: Wed, 9 Feb 2005 23:27:26 GMT From: Pavlin Radoslavov Message-Id: <200502092327.j19NRQ2h042815@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-09 23:27:26 UTC XORP CVS repository Modified files: libfeaclient ifmgr_xrl_mirror.cc Log message: Explicitly check for NULL pointers before allocating memory. Revision Changes Path 1.13 +10 -5 xorp/libfeaclient/ifmgr_xrl_mirror.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:48 2005 Subject: No subject Wed Feb 9 23:29:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 15:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j19NU2mQ037255 for ; Wed, 9 Feb 2005 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NU2uM009723 for ; Wed, 9 Feb 2005 15:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NU2Ip020851; Wed, 9 Feb 2005 15:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j19NTfIp020821 for ; Wed, 9 Feb 2005 15:29:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j19NTfuM009714 for ; Wed, 9 Feb 2005 15:29:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j19NTfnP042897 for ; Wed, 9 Feb 2005 15:29:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j19NTfe2042896 for xorp-cvs@icir.org; Wed, 9 Feb 2005 23:29:41 GMT (envelope-from pavlin) Date: Wed, 9 Feb 2005 23:29:41 GMT From: Pavlin Radoslavov Message-Id: <200502092329.j19NTfe2042896@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-09 23:29:41 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc static_routes_node.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: * Refactor and improve the mechanism for registering/deregistering interest in the FEA and RIB targets. * Track the finder state and exit if the finder is disconnected. Revision Changes Path 1.18 +16 -12 xorp/static_routes/static_routes_node.cc 1.14 +5 -9 xorp/static_routes/static_routes_node.hh 1.9 +9 -11 xorp/static_routes/xorp_static_routes.cc 1.19 +338 -84 xorp/static_routes/xrl_static_routes_node.cc 1.12 +56 -21 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:48 2005 Subject: No subject Thu Feb 10 01:21:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 17:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1A1M2jA063314 for ; Wed, 9 Feb 2005 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A1M2uM010708 for ; Wed, 9 Feb 2005 17:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A1M2Ip024196; Wed, 9 Feb 2005 17:22:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A1LFIp024174 for ; Wed, 9 Feb 2005 17:21:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A1LFuM010700 for ; Wed, 9 Feb 2005 17:21:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1A1LEbu044105 for ; Wed, 9 Feb 2005 17:21:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1A1LE8F044104 for xorp-cvs@icir.org; Thu, 10 Feb 2005 01:21:14 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 01:21:14 GMT From: Pavlin Radoslavov Message-Id: <200502100121.j1A1LE8F044104@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 01:21:14 UTC XORP CVS repository Modified files: rib rib.hh rt_tab_origin.hh Log message: Fix a typo. Revision Changes Path 1.30 +2 -2 xorp/rib/rib.hh 1.15 +2 -2 xorp/rib/rt_tab_origin.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:49 2005 Subject: No subject Thu Feb 10 03:51:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 19:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1A3q1Lq099645 for ; Wed, 9 Feb 2005 19:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A3q1uM011900 for ; Wed, 9 Feb 2005 19:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A3q1Ip027448; Wed, 9 Feb 2005 19:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A3pxIp027442 for ; Wed, 9 Feb 2005 19:51:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A3pxuM011898 for ; Wed, 9 Feb 2005 19:51:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1A3pxiW029637 for ; Wed, 9 Feb 2005 19:51:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1A3pxHD029636 for xorp-cvs@icir.org; Thu, 10 Feb 2005 03:51:59 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 03:51:59 GMT From: Pavlin Radoslavov Message-Id: <200502100351.j1A3pxHD029636@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 03:51:58 UTC XORP CVS repository Modified files: etc/templates rip.tp ripng.tp rib rib.cc Log message: Don't hard-wire a "static" table inside RIB. The reason for this hard-wiring is because if RIP is configured to export the static routes, it cannot do it if the "static" origin table is not there already. The work-around solution is to modify the rtrmgr templates and to make RIP depend on "static_routes". This fixes the remaining issues in Bugzilla entry #69 Approved by: Atanu Revision Changes Path 1.18 +6 -1 xorp/etc/templates/rip.tp 1.19 +6 -1 xorp/etc/templates/ripng.tp 1.47 +1 -5 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:49 2005 Subject: No subject Thu Feb 10 04:12:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 20:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1A4D1kY004991 for ; Wed, 9 Feb 2005 20:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A4D0uM012077 for ; Wed, 9 Feb 2005 20:13:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A4D0Ip027851; Wed, 9 Feb 2005 20:13:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A4CEIp027837 for ; Wed, 9 Feb 2005 20:12:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A4CEuM012072 for ; Wed, 9 Feb 2005 20:12:14 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1A4CEMG029943 for ; Wed, 9 Feb 2005 20:12:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1A4CEj9029942 for xorp-cvs@icir.org; Thu, 10 Feb 2005 04:12:14 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 04:12:14 GMT From: Pavlin Radoslavov Message-Id: <200502100412.j1A4CEj9029942@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 04:12:14 UTC XORP CVS repository Modified files: rtrmgr TODO Log message: Add a TODO entry regarding the usage of access(2) Obtained from: Bruce Simpson Revision Changes Path 1.28 +9 -2 xorp/rtrmgr/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:49 2005 Subject: No subject Thu Feb 10 04:54:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 20:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1A4t1IM014157 for ; Wed, 9 Feb 2005 20:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A4t1uM012422 for ; Wed, 9 Feb 2005 20:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A4t1Ip028812; Wed, 9 Feb 2005 20:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A4sgIp028804 for ; Wed, 9 Feb 2005 20:54:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A4sguM012417 for ; Wed, 9 Feb 2005 20:54:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1A4sgHh030333 for ; Wed, 9 Feb 2005 20:54:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1A4sg0q030332 for xorp-cvs@icir.org; Thu, 10 Feb 2005 04:54:42 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 04:54:42 GMT From: Pavlin Radoslavov Message-Id: <200502100454.j1A4sg0q030332@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 04:54:42 UTC XORP CVS repository Modified files: rtrmgr task.cc task.hh Log message: Make the number of retries and the delay between them used when retrying XRLs configurable from arguments passed to the TaskXrlItem constructor. This change is based on a patch from bms (see Bugzilla entry 81, comment #4, attachment 8) Obtained from: Bruce Simpson Revision Changes Path 1.43 +22 -14 xorp/rtrmgr/task.cc 1.29 +15 -8 xorp/rtrmgr/task.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:50 2005 Subject: No subject Thu Feb 10 05:14:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Feb 2005 21:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1A5F17i018026 for ; Wed, 9 Feb 2005 21:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A5F1uM012580 for ; Wed, 9 Feb 2005 21:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A5F1Ip029212; Wed, 9 Feb 2005 21:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1A5EYIp029197 for ; Wed, 9 Feb 2005 21:14:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1A5EYuM012572 for ; Wed, 9 Feb 2005 21:14:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1A5EXci030554 for ; Wed, 9 Feb 2005 21:14:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1A5EX9J030553 for xorp-cvs@icir.org; Thu, 10 Feb 2005 05:14:33 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 05:14:33 GMT From: Pavlin Radoslavov Message-Id: <200502100514.j1A5EX9J030553@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 05:14:33 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: Further harden the XRL handling code by replacing if..else with switch, when dealing with XrlErrors. This change is based on a patch from bms (See Bugzilla entry 81, comment #5, attachment 10) Obtained from: Bruce Simpson Revision Changes Path 1.44 +80 -38 xorp/rtrmgr/task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:50 2005 Subject: No subject Thu Feb 10 20:25:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 12:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1AKQ1fQ004835 for ; Thu, 10 Feb 2005 12:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1AKQ1uM024288 for ; Thu, 10 Feb 2005 12:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1AKQ1Ip023048; Thu, 10 Feb 2005 12:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1AKPPIp023031 for ; Thu, 10 Feb 2005 12:25:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1AKPPuM024286 for ; Thu, 10 Feb 2005 12:25:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1AKPPES047775 for ; Thu, 10 Feb 2005 12:25:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1AKPPUa047774 for xorp-cvs@icir.org; Thu, 10 Feb 2005 20:25:25 GMT (envelope-from pavlin) Date: Thu, 10 Feb 2005 20:25:25 GMT From: Pavlin Radoslavov Message-Id: <200502102025.j1AKPPUa047774@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-10 20:25:25 UTC XORP CVS repository Modified files: static_routes Makefile.am Makefile.in Log message: Reorder the list of libraries to link against (for consistency with fib2mrib). Revision Changes Path 1.10 +3 -3 xorp/static_routes/Makefile.am 1.12 +4 -4 xorp/static_routes/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:50 2005 Subject: No subject Fri Feb 11 02:49:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 18:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1B2o1eI080504 for ; Thu, 10 Feb 2005 18:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B2o1uM028245 for ; Thu, 10 Feb 2005 18:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B2o13q004847; Thu, 10 Feb 2005 18:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B2nW3q004828 for ; Thu, 10 Feb 2005 18:49:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B2nWuM028239 for ; Thu, 10 Feb 2005 18:49:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1B2nV9n050827 for ; Thu, 10 Feb 2005 18:49:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1B2nVwI050826 for xorp-cvs@icir.org; Fri, 11 Feb 2005 02:49:31 GMT (envelope-from pavlin) Date: Fri, 11 Feb 2005 02:49:31 GMT From: Pavlin Radoslavov Message-Id: <200502110249.j1B2nVwI050826@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-11 02:49:31 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc static_routes_node.hh xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: Nits: rename most of FEA-related registration methods and variables from ifmgr_* to fea_* to reflect better their purpose. Revision Changes Path 1.19 +8 -7 xorp/static_routes/static_routes_node.cc 1.15 +5 -5 xorp/static_routes/static_routes_node.hh 1.20 +44 -40 xorp/static_routes/xrl_static_routes_node.cc 1.13 +13 -12 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:51 2005 Subject: No subject Fri Feb 11 02:57:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 18:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1B2w1hY082087 for ; Thu, 10 Feb 2005 18:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B2w1uM028325 for ; Thu, 10 Feb 2005 18:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B2w03q005072; Thu, 10 Feb 2005 18:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B2vS3q005053 for ; Thu, 10 Feb 2005 18:57:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B2vSuM028320 for ; Thu, 10 Feb 2005 18:57:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1B2vRQF050949 for ; Thu, 10 Feb 2005 18:57:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1B2vRUh050948 for xorp-cvs@icir.org; Fri, 11 Feb 2005 02:57:27 GMT (envelope-from pavlin) Date: Fri, 11 Feb 2005 02:57:27 GMT From: Pavlin Radoslavov Message-Id: <200502110257.j1B2vRUh050948@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-11 02:57:27 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc fib2mrib_node.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Log message: * Refactor and improve the mechanism for registering/deregistering interest in the FEA and RIB targets. * Track the finder state and exit if the finder is disconnected. Note: the above changes synchronized the fib2mrib implementation with the static_routes implementation, because they share similar design. Also, note that this improves the solution for Bugzilla #42. Revision Changes Path 1.15 +16 -21 xorp/fib2mrib/fib2mrib_node.cc 1.11 +5 -25 xorp/fib2mrib/fib2mrib_node.hh 1.7 +8 -11 xorp/fib2mrib/xorp_fib2mrib.cc 1.18 +371 -120 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.11 +69 -35 xorp/fib2mrib/xrl_fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:51 2005 Subject: No subject Fri Feb 11 04:19:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 20:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1B4K198098161 for ; Thu, 10 Feb 2005 20:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B4K1uM029091 for ; Thu, 10 Feb 2005 20:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B4K13q007081; Thu, 10 Feb 2005 20:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B4Jw3q007073 for ; Thu, 10 Feb 2005 20:19:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B4JwuM029086 for ; Thu, 10 Feb 2005 20:19:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1B4JvLu051713 for ; Thu, 10 Feb 2005 20:19:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1B4JveH051712 for xorp-cvs@icir.org; Fri, 11 Feb 2005 04:19:57 GMT (envelope-from pavlin) Date: Fri, 11 Feb 2005 04:19:57 GMT From: Pavlin Radoslavov Message-Id: <200502110419.j1B4JveH051712@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-11 04:19:57 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc static_routes_node.hh Log message: Editorial nits. Revision Changes Path 1.20 +14 -16 xorp/static_routes/static_routes_node.cc 1.16 +3 -4 xorp/static_routes/static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:51 2005 Subject: No subject Fri Feb 11 04:21:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 20:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1B4M1IE098581 for ; Thu, 10 Feb 2005 20:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B4M1uM029123 for ; Thu, 10 Feb 2005 20:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B4M03q007142; Thu, 10 Feb 2005 20:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B4Le3q007124 for ; Thu, 10 Feb 2005 20:21:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B4LeuM029121 for ; Thu, 10 Feb 2005 20:21:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1B4LeIq051812 for ; Thu, 10 Feb 2005 20:21:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1B4Lebd051811 for xorp-cvs@icir.org; Fri, 11 Feb 2005 04:21:40 GMT (envelope-from pavlin) Date: Fri, 11 Feb 2005 04:21:40 GMT From: Pavlin Radoslavov Message-Id: <200502110421.j1B4Lebd051811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-11 04:21:40 UTC XORP CVS repository Modified files: fib2mrib Makefile.am Makefile.in fib2mrib_node.cc fib2mrib_node.hh xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh Added files: fib2mrib fib2mrib_varrw.cc fib2mrib_varrw.hh Log message: Support for policy filtering. This is a port of the policy filtering in static_routes. Revision Changes Path 1.7 +4 -1 xorp/fib2mrib/Makefile.am 1.11 +7 -3 xorp/fib2mrib/Makefile.in 1.16 +184 -41 xorp/fib2mrib/fib2mrib_node.cc 1.12 +79 -4 xorp/fib2mrib/fib2mrib_node.hh 1.1 +68 -0 xorp/fib2mrib/fib2mrib_varrw.cc (new) 1.1 +47 -0 xorp/fib2mrib/fib2mrib_varrw.hh (new) 1.19 +42 -9 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.12 +27 -1 xorp/fib2mrib/xrl_fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:52 2005 Subject: No subject Fri Feb 11 07:38:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Feb 2005 23:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1B7d1bD038658 for ; Thu, 10 Feb 2005 23:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B7d1uM030732 for ; Thu, 10 Feb 2005 23:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B7d13q011887; Thu, 10 Feb 2005 23:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1B7cT3q011877 for ; Thu, 10 Feb 2005 23:38:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1B7cSuM030727 for ; Thu, 10 Feb 2005 23:38:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1B7cSq1053156 for ; Thu, 10 Feb 2005 23:38:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1B7cSK9053155 for xorp-cvs@icir.org; Fri, 11 Feb 2005 07:38:28 GMT (envelope-from pavlin) Date: Fri, 11 Feb 2005 07:38:28 GMT From: Pavlin Radoslavov Message-Id: <200502110738.j1B7cSK9053155@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-11 07:38:28 UTC XORP CVS repository Modified files: pim test_pim.cc Log message: Fix the arguments for the new XrlFib2mribNode constructor. Revision Changes Path 1.45 +6 -7 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:52 2005 Subject: No subject Sat Feb 12 04:50:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Feb 2005 20:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1C4p1sb092830 for ; Fri, 11 Feb 2005 20:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C4p1uM044253 for ; Fri, 11 Feb 2005 20:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C4p13q019496; Fri, 11 Feb 2005 20:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C4oR3q019479 for ; Fri, 11 Feb 2005 20:50:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C4oQuM044249 for ; Fri, 11 Feb 2005 20:50:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1C4oQim064430 for ; Fri, 11 Feb 2005 20:50:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1C4oQlM064429 for xorp-cvs@icir.org; Sat, 12 Feb 2005 04:50:26 GMT (envelope-from pavlin) Date: Sat, 12 Feb 2005 04:50:26 GMT From: Pavlin Radoslavov Message-Id: <200502120450.j1C4oQlM064429@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-12 04:50:26 UTC XORP CVS repository Modified files: cli test_cli.cc xrl_cli_node.cc xrl_cli_node.hh fea fea.cc test_mfea.cc mld6igmp test_mld6igmp.cc pim test_pim.cc Log message: Refactor the XrlCliNode implementation: now it can detect if the Finder has disappeared, and then it will shutdown. Revision Changes Path 1.35 +19 -13 xorp/cli/test_cli.cc 1.18 +27 -4 xorp/cli/xrl_cli_node.cc 1.14 +25 -5 xorp/cli/xrl_cli_node.hh 1.44 +21 -12 xorp/fea/fea.cc 1.18 +18 -11 xorp/fea/test_mfea.cc 1.39 +21 -13 xorp/mld6igmp/test_mld6igmp.cc 1.46 +29 -16 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:52 2005 Subject: No subject Sat Feb 12 05:54:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Feb 2005 21:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1C5t10h005516 for ; Fri, 11 Feb 2005 21:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C5t1uM044818 for ; Fri, 11 Feb 2005 21:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C5t13q020907; Fri, 11 Feb 2005 21:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C5sv3q020901 for ; Fri, 11 Feb 2005 21:54:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C5svuM044813 for ; Fri, 11 Feb 2005 21:54:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1C5svLt065009 for ; Fri, 11 Feb 2005 21:54:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1C5svcd065008 for xorp-cvs@icir.org; Sat, 12 Feb 2005 05:54:57 GMT (envelope-from pavlin) Date: Sat, 12 Feb 2005 05:54:57 GMT From: Pavlin Radoslavov Message-Id: <200502120554.j1C5svcd065008@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-12 05:54:57 UTC XORP CVS repository Modified files: rip redist.cc route_db.cc route_db.hh Log message: Rename RouterWalker::RUNNING and PAUSED to STATE_RUNNING and STATE_PAUSED respectively. The reason is to avoid confusion with other states such as the ServiceStatus. Revision Changes Path 1.7 +2 -2 xorp/rip/redist.cc 1.20 +13 -13 xorp/rip/route_db.cc 1.18 +15 -12 xorp/rip/route_db.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:52 2005 Subject: No subject Sat Feb 12 08:09:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Feb 2005 00:10:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1C8A19o031990 for ; Sat, 12 Feb 2005 00:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C8A0uM045937 for ; Sat, 12 Feb 2005 00:10:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C8A03q024065; Sat, 12 Feb 2005 00:10:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1C89C3q024049 for ; Sat, 12 Feb 2005 00:09:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1C89CuM045927 for ; Sat, 12 Feb 2005 00:09:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1C89CI4066120 for ; Sat, 12 Feb 2005 00:09:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1C89CXs066119 for xorp-cvs@icir.org; Sat, 12 Feb 2005 08:09:12 GMT (envelope-from pavlin) Date: Sat, 12 Feb 2005 08:09:12 GMT From: Pavlin Radoslavov Message-Id: <200502120809.j1C89CXs066119@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli xorp/fea xorp/fea/tools xorp/fib2mrib xorp/libfeaclient xorp/libproto xorp/libxorp xorp/mld6igmp xorp/pim xorp/rib xorp/rib/tools xorp/rip xorp/rip/tools xorp/rtrmgr xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-12 08:09:12 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc fea mfea_node.cc xrl_socket_server.cc xrl_target.cc fea/tools show_interfaces.cc fib2mrib fib2mrib_node.cc xrl_fib2mrib_node.cc libfeaclient ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh test_remote_copy.cc libproto proto_node.hh proto_state.cc libxorp service.cc service.hh test_service.cc mld6igmp mld6igmp_node.cc xrl_mld6igmp_node.cc pim pim_node.cc xrl_pim_node.cc rib rib_manager.cc vifmanager.cc rib/tools show_routes.cc rip xorp_rip_main.cc xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_redist_manager.cc xrl_rib_notifier.cc xrl_rib_notifier.hh rip/tools common.cc show_peer_stats.cc show_stats.cc rtrmgr task.cc static_routes static_routes_node.cc xrl_static_routes_node.cc Log message: Rename all ServiceStatus enumerated values from FOO to SERVICE_FOO to improve code clarity and to reduce the probability of name clash. Revision Changes Path 1.19 +3 -3 xorp/cli/xrl_cli_node.cc 1.42 +9 -6 xorp/fea/mfea_node.cc 1.10 +32 -28 xorp/fea/tools/show_interfaces.cc 1.19 +36 -36 xorp/fea/xrl_socket_server.cc 1.69 +3 -3 xorp/fea/xrl_target.cc 1.17 +31 -28 xorp/fib2mrib/fib2mrib_node.cc 1.20 +11 -11 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.14 +25 -20 xorp/libfeaclient/ifmgr_xrl_mirror.cc 1.9 +6 -6 xorp/libfeaclient/ifmgr_xrl_mirror.hh 1.9 +4 -4 xorp/libfeaclient/test_remote_copy.cc 1.25 +6 -6 xorp/libproto/proto_node.hh 1.7 +18 -18 xorp/libproto/proto_state.cc 1.4 +12 -12 xorp/libxorp/service.cc 1.6 +30 -24 xorp/libxorp/service.hh 1.6 +23 -23 xorp/libxorp/test_service.cc 1.34 +5 -3 xorp/mld6igmp/mld6igmp_node.cc 1.31 +3 -3 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.56 +5 -3 xorp/pim/pim_node.cc 1.61 +5 -5 xorp/pim/xrl_pim_node.cc 1.46 +11 -11 xorp/rib/rib_manager.cc 1.10 +35 -30 xorp/rib/tools/show_routes.cc 1.36 +14 -11 xorp/rib/vifmanager.cc 1.4 +6 -6 xorp/rip/tools/common.cc 1.7 +3 -3 xorp/rip/tools/show_peer_stats.cc 1.8 +3 -3 xorp/rip/tools/show_stats.cc 1.10 +14 -11 xorp/rip/xorp_rip_main.cc 1.16 +17 -15 xorp/rip/xrl_port_io.cc 1.6 +4 -4 xorp/rip/xrl_port_io.hh 1.18 +9 -9 xorp/rip/xrl_port_manager.cc 1.10 +3 -3 xorp/rip/xrl_port_manager.hh 1.7 +13 -11 xorp/rip/xrl_process_spy.cc 1.5 +3 -3 xorp/rip/xrl_process_spy.hh 1.9 +5 -5 xorp/rip/xrl_redist_manager.cc 1.11 +11 -11 xorp/rip/xrl_rib_notifier.cc 1.4 +7 -7 xorp/rip/xrl_rib_notifier.hh 1.45 +2 -2 xorp/rtrmgr/task.cc 1.21 +31 -28 xorp/static_routes/static_routes_node.cc 1.21 +8 -8 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:52 2005 Subject: No subject Mon Feb 14 20:17:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 12:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1EKI2vU054455 for ; Mon, 14 Feb 2005 12:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1EKI1uM084909 for ; Mon, 14 Feb 2005 12:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1EKI13q019284; Mon, 14 Feb 2005 12:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1EKHp3q019274 for ; Mon, 14 Feb 2005 12:17:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1EKHpuM084907 for ; Mon, 14 Feb 2005 12:17:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1EKHpS5098360 for ; Mon, 14 Feb 2005 12:17:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1EKHpTp098359 for xorp-cvs@icir.org; Mon, 14 Feb 2005 20:17:51 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 20:17:51 GMT From: Pavlin Radoslavov Message-Id: <200502142017.j1EKHpTp098359@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 20:17:51 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in Log message: Reorder some of the libraries to fix a linkage problem with gcc-2.9x Revision Changes Path 1.33 +2 -2 xorp/pim/Makefile.am 1.47 +2 -2 xorp/pim/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:53 2005 Subject: No subject Mon Feb 14 20:35:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 12:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1EKa17K058251 for ; Mon, 14 Feb 2005 12:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1EKa1uM085122 for ; Mon, 14 Feb 2005 12:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1EKa13q019877; Mon, 14 Feb 2005 12:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1EKZm3q019868 for ; Mon, 14 Feb 2005 12:35:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1EKZmuM085114 for ; Mon, 14 Feb 2005 12:35:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1EKZmHa098654 for ; Mon, 14 Feb 2005 12:35:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1EKZm0L098653 for xorp-cvs@icir.org; Mon, 14 Feb 2005 20:35:48 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 20:35:48 GMT From: Pavlin Radoslavov Message-Id: <200502142035.j1EKZm0L098653@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 20:35:48 UTC XORP CVS repository Modified files: fea fea.cc mfea_node.cc mfea_node.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh mld6igmp test_mld6igmp.cc pim test_pim.cc Log message: Remove FtiConfig as one of the arguments to the MfeaNode constructor, because it is not needed anymore. [Previously it was used the by MFEA to periodically obtain the forwarding table from the FEA, but now the MFEA doesn't perform that task anymore: the fib2mrib has taken over it]. Revision Changes Path 1.45 +3 -5 xorp/fea/fea.cc 1.43 +3 -9 xorp/fea/mfea_node.cc 1.24 +2 -10 xorp/fea/mfea_node.hh 1.19 +3 -5 xorp/fea/test_mfea.cc 1.33 +3 -4 xorp/fea/xrl_mfea_node.cc 1.18 +2 -4 xorp/fea/xrl_mfea_node.hh 1.40 +3 -5 xorp/mld6igmp/test_mld6igmp.cc 1.47 +3 -5 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:53 2005 Subject: No subject Mon Feb 14 23:15:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 15:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1ENG1F6089933 for ; Mon, 14 Feb 2005 15:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENG0YT086685 for ; Mon, 14 Feb 2005 15:16:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENG03q025128; Mon, 14 Feb 2005 15:16:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENFG3q025085 for ; Mon, 14 Feb 2005 15:15:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENFGYT086681 for ; Mon, 14 Feb 2005 15:15:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1ENFGdO000317 for ; Mon, 14 Feb 2005 15:15:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1ENFGl4000316 for xorp-cvs@icir.org; Mon, 14 Feb 2005 23:15:16 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 23:15:16 GMT From: Pavlin Radoslavov Message-Id: <200502142315.j1ENFGl4000316@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 23:15:16 UTC XORP CVS repository Modified files: libproto proto_node.hh Log message: Use method set_node_status() to set the node status. Revision Changes Path 1.26 +4 -6 xorp/libproto/proto_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:53 2005 Subject: No subject Mon Feb 14 23:17:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 15:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1ENI1If090382 for ; Mon, 14 Feb 2005 15:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENI1YT086703 for ; Mon, 14 Feb 2005 15:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENI03q025235; Mon, 14 Feb 2005 15:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENHa3q025220 for ; Mon, 14 Feb 2005 15:17:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENHaYT086699 for ; Mon, 14 Feb 2005 15:17:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1ENHaog000383 for ; Mon, 14 Feb 2005 15:17:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1ENHa3c000382 for xorp-cvs@icir.org; Mon, 14 Feb 2005 23:17:36 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 23:17:36 GMT From: Pavlin Radoslavov Message-Id: <200502142317.j1ENHa3c000382@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 23:17:36 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc fib2mrib_node.hh Log message: * Add new method FibNode::set_node_status() * Use the above method to set the node status instead of directly assigning the value. Revision Changes Path 1.18 +9 -14 xorp/fib2mrib/fib2mrib_node.cc 1.13 +8 -1 xorp/fib2mrib/fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:53 2005 Subject: No subject Mon Feb 14 23:17:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 15:18:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1ENI2HJ090397 for ; Mon, 14 Feb 2005 15:18:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENI1YT086705 for ; Mon, 14 Feb 2005 15:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENI13q025246; Mon, 14 Feb 2005 15:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENHr3q025227 for ; Mon, 14 Feb 2005 15:17:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENHrYT086701 for ; Mon, 14 Feb 2005 15:17:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1ENHr1R000428 for ; Mon, 14 Feb 2005 15:17:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1ENHrJO000427 for xorp-cvs@icir.org; Mon, 14 Feb 2005 23:17:53 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 23:17:53 GMT From: Pavlin Radoslavov Message-Id: <200502142317.j1ENHrJO000427@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 23:17:53 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc static_routes_node.hh Log message: * Add new method FibNode::set_node_status() * Use the above method to set the node status instead of directly assigning the value. Revision Changes Path 1.22 +9 -14 xorp/static_routes/static_routes_node.cc 1.17 +7 -1 xorp/static_routes/static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:53 2005 Subject: No subject Mon Feb 14 23:37:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 15:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1ENc1aE094362 for ; Mon, 14 Feb 2005 15:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENc0YT086874 for ; Mon, 14 Feb 2005 15:38:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENc03q026016; Mon, 14 Feb 2005 15:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1ENbS3q026006 for ; Mon, 14 Feb 2005 15:37:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1ENbSYT086870 for ; Mon, 14 Feb 2005 15:37:28 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1ENbSqS000616 for ; Mon, 14 Feb 2005 15:37:28 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1ENbSvm000615 for xorp-cvs@icir.org; Mon, 14 Feb 2005 23:37:28 GMT (envelope-from pavlin) Date: Mon, 14 Feb 2005 23:37:28 GMT From: Pavlin Radoslavov Message-Id: <200502142337.j1ENbSvm000615@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-14 23:37:28 UTC XORP CVS repository Modified files: libproto proto_state.cc Log message: Update the set of service status values which allow the shutdown operation. Revision Changes Path 1.8 +7 -2 xorp/libproto/proto_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:54 2005 Subject: No subject Tue Feb 15 00:00:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 16:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F011wc099092 for ; Mon, 14 Feb 2005 16:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F010YT087116 for ; Mon, 14 Feb 2005 16:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F0103q026736; Mon, 14 Feb 2005 16:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F00f3q026718 for ; Mon, 14 Feb 2005 16:00:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F00fYT087114 for ; Mon, 14 Feb 2005 16:00:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F00fg4000890 for ; Mon, 14 Feb 2005 16:00:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F00f4J000889 for xorp-cvs@icir.org; Tue, 15 Feb 2005 00:00:41 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 00:00:41 GMT From: Pavlin Radoslavov Message-Id: <200502150000.j1F00f4J000889@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 00:00:41 UTC XORP CVS repository Modified files: libproto proto_state.cc Log message: Fix the service status names. Revision Changes Path 1.9 +5 -5 xorp/libproto/proto_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:54 2005 Subject: No subject Tue Feb 15 01:50:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 17:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F1p1eq021623 for ; Mon, 14 Feb 2005 17:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1p1YT088118 for ; Mon, 14 Feb 2005 17:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1p13q029689; Mon, 14 Feb 2005 17:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1oK3q029669 for ; Mon, 14 Feb 2005 17:50:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1oKYT088114 for ; Mon, 14 Feb 2005 17:50:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F1oJBQ001942 for ; Mon, 14 Feb 2005 17:50:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F1oJkV001941 for xorp-cvs@icir.org; Tue, 15 Feb 2005 01:50:19 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 01:50:19 GMT From: Pavlin Radoslavov Message-Id: <200502150150.j1F1oJkV001941@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 01:50:19 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc Log message: Editorial nitlets. Revision Changes Path 1.19 +6 -6 xorp/fib2mrib/fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:54 2005 Subject: No subject Tue Feb 15 01:50:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 17:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F1p2tL021638 for ; Mon, 14 Feb 2005 17:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1p2YT088120 for ; Mon, 14 Feb 2005 17:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1p23q029700; Mon, 14 Feb 2005 17:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1ow3q029683 for ; Mon, 14 Feb 2005 17:50:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1owYT088116 for ; Mon, 14 Feb 2005 17:50:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F1owDp001993 for ; Mon, 14 Feb 2005 17:50:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F1owMa001992 for xorp-cvs@icir.org; Tue, 15 Feb 2005 01:50:58 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 01:50:58 GMT From: Pavlin Radoslavov Message-Id: <200502150150.j1F1owMa001992@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 01:50:58 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc Log message: * Add few kdoc comments * Remove an extra #include Revision Changes Path 1.21 +11 -5 xorp/fib2mrib/xrl_fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Tue Feb 15 01:51:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 17:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F1q1lf021849 for ; Mon, 14 Feb 2005 17:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1q1YT088128 for ; Mon, 14 Feb 2005 17:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1q03q029734; Mon, 14 Feb 2005 17:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1pd3q029717 for ; Mon, 14 Feb 2005 17:51:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1pdYT088124 for ; Mon, 14 Feb 2005 17:51:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F1pdb4002051 for ; Mon, 14 Feb 2005 17:51:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F1pdci002050 for xorp-cvs@icir.org; Tue, 15 Feb 2005 01:51:39 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 01:51:39 GMT From: Pavlin Radoslavov Message-Id: <200502150151.j1F1pdci002050@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 01:51:39 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc Log message: Editorial nitlets. Revision Changes Path 1.23 +6 -6 xorp/static_routes/static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Tue Feb 15 01:57:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 17:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F1w12w023029 for ; Mon, 14 Feb 2005 17:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1w1YT088186 for ; Mon, 14 Feb 2005 17:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1w13q000081; Mon, 14 Feb 2005 17:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F1v63q000031 for ; Mon, 14 Feb 2005 17:57:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F1v6YT088180 for ; Mon, 14 Feb 2005 17:57:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F1v6Nm002149 for ; Mon, 14 Feb 2005 17:57:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F1v6iO002148 for xorp-cvs@icir.org; Tue, 15 Feb 2005 01:57:06 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 01:57:06 GMT From: Pavlin Radoslavov Message-Id: <200502150157.j1F1v6iO002148@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 01:57:06 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: * Add few kdoc comments * Remove an extra #include Revision Changes Path 1.22 +15 -1 xorp/static_routes/xrl_static_routes_node.cc 1.14 +15 -1 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Tue Feb 15 02:00:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 18:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F211AB023673 for ; Mon, 14 Feb 2005 18:01:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F210YT088241 for ; Mon, 14 Feb 2005 18:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F2103q000194; Mon, 14 Feb 2005 18:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F20q3q000183 for ; Mon, 14 Feb 2005 18:00:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F20qYT088239 for ; Mon, 14 Feb 2005 18:00:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F20qJg002317 for ; Mon, 14 Feb 2005 18:00:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F20qYo002316 for xorp-cvs@icir.org; Tue, 15 Feb 2005 02:00:52 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 02:00:52 GMT From: Pavlin Radoslavov Message-Id: <200502150200.j1F20qYo002316@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets xorp/xrl/interfaces Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 02:00:52 UTC XORP CVS repository Modified files: xrl/targets bgp.xrls bgp_base.hh fib2mrib.xrls fib2mrib_base.hh policy.xrls policy_base.hh rib.xrls rib_base.hh rip.xrls rip_base.hh ripng.xrls ripng_base.hh show_routes.xrls show_routes_base.hh socket_server.xrls socket_server_base.hh static_routes.xrls static_routes_base.hh test_finder_events.xrls test_finder_events_base.hh xrl/interfaces finder_event_observer.xif finder_event_observer_xif.hh Log message: Add kdoc comments to xrl_target_birth and xrl_target_death XRLs. Revision Changes Path 1.4 +8 -2 xorp/xrl/interfaces/finder_event_observer.xif 1.8 +11 -3 xorp/xrl/interfaces/finder_event_observer_xif.hh 1.36 +11 -3 xorp/xrl/targets/bgp.xrls 1.45 +11 -3 xorp/xrl/targets/bgp_base.hh 1.7 +11 -3 xorp/xrl/targets/fib2mrib.xrls 1.8 +11 -3 xorp/xrl/targets/fib2mrib_base.hh 1.3 +11 -3 xorp/xrl/targets/policy.xrls 1.3 +11 -3 xorp/xrl/targets/policy_base.hh 1.30 +11 -3 xorp/xrl/targets/rib.xrls 1.36 +11 -3 xorp/xrl/targets/rib_base.hh 1.18 +11 -3 xorp/xrl/targets/rip.xrls 1.19 +11 -3 xorp/xrl/targets/rip_base.hh 1.20 +11 -3 xorp/xrl/targets/ripng.xrls 1.21 +11 -3 xorp/xrl/targets/ripng_base.hh 1.5 +11 -3 xorp/xrl/targets/show_routes.xrls 1.5 +11 -3 xorp/xrl/targets/show_routes_base.hh 1.6 +11 -3 xorp/xrl/targets/socket_server.xrls 1.7 +11 -3 xorp/xrl/targets/socket_server_base.hh 1.7 +11 -3 xorp/xrl/targets/static_routes.xrls 1.8 +11 -3 xorp/xrl/targets/static_routes_base.hh 1.5 +11 -3 xorp/xrl/targets/test_finder_events.xrls 1.9 +11 -3 xorp/xrl/targets/test_finder_events_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Tue Feb 15 02:02:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 18:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F231Sc024082 for ; Mon, 14 Feb 2005 18:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F231YT088263 for ; Mon, 14 Feb 2005 18:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F2313q000253; Mon, 14 Feb 2005 18:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F22c3q000243 for ; Mon, 14 Feb 2005 18:02:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F22cYT088261 for ; Mon, 14 Feb 2005 18:02:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F22cJT002395 for ; Mon, 14 Feb 2005 18:02:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F22cAD002394 for xorp-cvs@icir.org; Tue, 15 Feb 2005 02:02:38 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 02:02:38 GMT From: Pavlin Radoslavov Message-Id: <200502150202.j1F22cAD002394@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 02:02:37 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.hh Log message: Add few kdoc comments Revision Changes Path 1.13 +19 -5 xorp/fib2mrib/xrl_fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Tue Feb 15 02:08:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Feb 2005 18:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1F291So025322 for ; Mon, 14 Feb 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F291YT088323 for ; Mon, 14 Feb 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F2913q000428; Mon, 14 Feb 2005 18:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1F28d3q000415 for ; Mon, 14 Feb 2005 18:08:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1F28dYT088321 for ; Mon, 14 Feb 2005 18:08:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1F28dKx002658 for ; Mon, 14 Feb 2005 18:08:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1F28dBF002657 for xorp-cvs@icir.org; Tue, 15 Feb 2005 02:08:39 GMT (envelope-from pavlin) Date: Tue, 15 Feb 2005 02:08:39 GMT From: Pavlin Radoslavov Message-Id: <200502150208.j1F28dBF002657@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-15 02:08:39 UTC XORP CVS repository Modified files: fea fea.cc mfea_node.cc mfea_node.hh test_mfea.cc xrl_mfea_node.cc xrl_mfea_node.hh mld6igmp test_mld6igmp.cc pim test_pim.cc xrl/targets Makefile.am Makefile.in mfea.tgt mfea.xrls mfea_base.cc mfea_base.hh Log message: * Apply the patch from Bruce Simpson (Bugzilla entry 46, Comment #1, Attachment id=9) so the MFEA can register/deregister interest in the FEA. * Refactor and improve the above patch. * Track the finder state and exit if the finder is disconnected. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=46 Revision Changes Path 1.46 +20 -20 xorp/fea/fea.cc 1.44 +32 -15 xorp/fea/mfea_node.cc 1.25 +6 -11 xorp/fea/mfea_node.hh 1.20 +14 -17 xorp/fea/test_mfea.cc 1.34 +216 -27 xorp/fea/xrl_mfea_node.cc 1.19 +71 -18 xorp/fea/xrl_mfea_node.hh 1.41 +14 -17 xorp/mld6igmp/test_mld6igmp.cc 1.48 +19 -24 xorp/pim/test_pim.cc 1.53 +2 -1 xorp/xrl/targets/Makefile.am 1.67 +1 -0 xorp/xrl/targets/Makefile.in 1.5 +3 -1 xorp/xrl/targets/mfea.tgt 1.19 +19 -1 xorp/xrl/targets/mfea.xrls 1.24 +63 -1 xorp/xrl/targets/mfea_base.cc 1.25 +33 -1 xorp/xrl/targets/mfea_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:55 2005 Subject: No subject Wed Feb 16 04:27:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Feb 2005 20:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1G4S1vO065957 for ; Tue, 15 Feb 2005 20:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1G4S1uD008080 for ; Tue, 15 Feb 2005 20:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1G4S13q015897; Tue, 15 Feb 2005 20:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1G4RT3q015886 for ; Tue, 15 Feb 2005 20:27:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1G4RTuD008072 for ; Tue, 15 Feb 2005 20:27:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1G4RThk018524 for ; Tue, 15 Feb 2005 20:27:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1G4RTnl018523 for xorp-cvs@icir.org; Wed, 16 Feb 2005 04:27:29 GMT (envelope-from pavlin) Date: Wed, 16 Feb 2005 04:27:29 GMT From: Pavlin Radoslavov Message-Id: <200502160427.j1G4RTnl018523@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-16 04:27:29 UTC XORP CVS repository Modified files: etc/templates interfaces.tp Log message: Fix a typo in a xorpsh help string. Revision Changes Path 1.14 +2 -2 xorp/etc/templates/interfaces.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 17 00:54:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Feb 2005 16:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1H0t1f5024965 for ; Wed, 16 Feb 2005 16:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0t1oJ025045 for ; Wed, 16 Feb 2005 16:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0t13q024026; Wed, 16 Feb 2005 16:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0sL3q024010 for ; Wed, 16 Feb 2005 16:54:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0sKoJ025037 for ; Wed, 16 Feb 2005 16:54:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1H0sKmd032624 for ; Wed, 16 Feb 2005 16:54:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1H0sKkc032623 for xorp-cvs@icir.org; Thu, 17 Feb 2005 00:54:20 GMT (envelope-from pavlin) Date: Thu, 17 Feb 2005 00:54:20 GMT From: Pavlin Radoslavov Message-Id: <200502170054.j1H0sKkc032623@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-17 00:54:20 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.cc fib2mrib xrl_fib2mrib_node.cc Log message: Minor nits (to improve the code consistency). Revision Changes Path 1.22 +3 -3 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.23 +3 -3 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 17 00:55:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Feb 2005 16:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1H0u1xo025189 for ; Wed, 16 Feb 2005 16:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0u1oJ025077 for ; Wed, 16 Feb 2005 16:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0u03q024061; Wed, 16 Feb 2005 16:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0tI3q024041 for ; Wed, 16 Feb 2005 16:55:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0tIoJ025067 for ; Wed, 16 Feb 2005 16:55:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1H0tIgO032703 for ; Wed, 16 Feb 2005 16:55:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1H0tIsp032702 for xorp-cvs@icir.org; Thu, 17 Feb 2005 00:55:18 GMT (envelope-from pavlin) Date: Thu, 17 Feb 2005 00:55:18 GMT From: Pavlin Radoslavov Message-Id: <200502170055.j1H0tIsp032702@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-17 00:55:18 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc Log message: Minor editorial nits. Revision Changes Path 1.35 +73 -73 xorp/fea/xrl_mfea_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 17 00:58:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Feb 2005 16:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1H0x1mk025836 for ; Wed, 16 Feb 2005 16:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0x1oJ025128 for ; Wed, 16 Feb 2005 16:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0x13q024177; Wed, 16 Feb 2005 16:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0wN3q024160 for ; Wed, 16 Feb 2005 16:58:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0wNoJ025111 for ; Wed, 16 Feb 2005 16:58:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1H0wNtM032753 for ; Wed, 16 Feb 2005 16:58:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1H0wN6F032752 for xorp-cvs@icir.org; Thu, 17 Feb 2005 00:58:23 GMT (envelope-from pavlin) Date: Thu, 17 Feb 2005 00:58:23 GMT From: Pavlin Radoslavov Message-Id: <200502170058.j1H0wN6F032752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-17 00:58:23 UTC XORP CVS repository Modified files: xrl/targets Makefile.am mld6igmp.tgt Log message: Add finder_event_observer.xif to the XRL interface supported by mld6igmp. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=43 Submitted by: bms Revision Changes Path 1.54 +2 -1 xorp/xrl/targets/Makefile.am 1.3 +3 -1 xorp/xrl/targets/mld6igmp.tgt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 17 00:59:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Feb 2005 17:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1H101X7026041 for ; Wed, 16 Feb 2005 17:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H101oJ025147 for ; Wed, 16 Feb 2005 17:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H1013q024214; Wed, 16 Feb 2005 17:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H0xe3q024202 for ; Wed, 16 Feb 2005 16:59:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H0xeoJ025132 for ; Wed, 16 Feb 2005 16:59:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1H0xelN032802 for ; Wed, 16 Feb 2005 16:59:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1H0xeBe032801 for xorp-cvs@icir.org; Thu, 17 Feb 2005 00:59:40 GMT (envelope-from pavlin) Date: Thu, 17 Feb 2005 00:59:40 GMT From: Pavlin Radoslavov Message-Id: <200502170059.j1H0xeBe032801@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-17 00:59:40 UTC XORP CVS repository Modified files: xrl/targets Makefile.in mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Log message: Add finder_event_observer.xif to the XRL interface supported by mld6igmp. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=43 Submitted by: bms Revision Changes Path 1.68 +1 -0 xorp/xrl/targets/Makefile.in 1.18 +19 -1 xorp/xrl/targets/mld6igmp.xrls 1.23 +63 -1 xorp/xrl/targets/mld6igmp_base.cc 1.24 +33 -1 xorp/xrl/targets/mld6igmp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 17 01:03:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Feb 2005 17:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1H141Bj026910 for ; Wed, 16 Feb 2005 17:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H141oJ025221 for ; Wed, 16 Feb 2005 17:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H1413q024419; Wed, 16 Feb 2005 17:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1H13b3q024409 for ; Wed, 16 Feb 2005 17:03:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1H13boJ025216 for ; Wed, 16 Feb 2005 17:03:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1H13bJa033034 for ; Wed, 16 Feb 2005 17:03:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1H13bCN033033 for xorp-cvs@icir.org; Thu, 17 Feb 2005 01:03:37 GMT (envelope-from pavlin) Date: Thu, 17 Feb 2005 01:03:37 GMT From: Pavlin Radoslavov Message-Id: <200502170103.j1H13bCN033033@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-17 01:03:37 UTC XORP CVS repository Modified files: mld6igmp Makefile.am Makefile.in mld6igmp_node.cc mld6igmp_node.hh test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh pim test_pim.cc Log message: * Apply the patch from Bruce Simpson (Bugzilla entry 43, Comment #3, Attachment id=7) so the MLD/IGMP can register/deregister interest in the MFEA. * Refactor and improve the above patch. * Track the finder state and exit if the finder is disconnected. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=43 Revision Changes Path 1.28 +2 -2 xorp/mld6igmp/Makefile.am 1.42 +5 -3 xorp/mld6igmp/Makefile.in 1.35 +32 -5 xorp/mld6igmp/mld6igmp_node.cc 1.16 +2 -1 xorp/mld6igmp/mld6igmp_node.hh 1.42 +13 -15 xorp/mld6igmp/test_mld6igmp.cc 1.8 +11 -13 xorp/mld6igmp/xorp_igmp.cc 1.9 +11 -13 xorp/mld6igmp/xorp_mld.cc 1.32 +241 -50 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.25 +70 -16 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.49 +11 -15 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Fri Feb 18 00:40:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Feb 2005 16:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1I0f1EV010704 for ; Thu, 17 Feb 2005 16:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1I0f0oJ042572 for ; Thu, 17 Feb 2005 16:41:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1I0f03q007975; Thu, 17 Feb 2005 16:41:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1I0e13q007925 for ; Thu, 17 Feb 2005 16:40:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1I0e1oJ042551 for ; Thu, 17 Feb 2005 16:40:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1I0e1kr047199 for ; Thu, 17 Feb 2005 16:40:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1I0e1ff047198 for xorp-cvs@icir.org; Fri, 18 Feb 2005 00:40:01 GMT (envelope-from pavlin) Date: Fri, 18 Feb 2005 00:40:01 GMT From: Pavlin Radoslavov Message-Id: <200502180040.j1I0e1ff047198@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli xorp/fea xorp/fib2mrib xorp/mld6igmp xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-18 00:40:01 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc xrl_cli_node.hh fea xrl_mfea_node.cc xrl_mfea_node.hh fib2mrib xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh static_routes xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: * Add a new method finder_connect_event() that overwrites the XrlRouter virtual method with the same name. * Use the above method to set the new "_is_finder_alive" flag to true. * Always test the "_is_finder_alive" flag in methods that suppose to send XRLs, and return immediately if the flag is false. Revision Changes Path 1.20 +24 -2 xorp/cli/xrl_cli_node.cc 1.15 +10 -1 xorp/cli/xrl_cli_node.hh 1.36 +61 -3 xorp/fea/xrl_mfea_node.cc 1.20 +10 -1 xorp/fea/xrl_mfea_node.hh 1.23 +47 -1 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.14 +10 -1 xorp/fib2mrib/xrl_fib2mrib_node.hh 1.33 +51 -2 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.26 +10 -1 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.24 +41 -1 xorp/static_routes/xrl_static_routes_node.cc 1.15 +10 -1 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Sat Feb 19 02:51:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Feb 2005 18:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1J2q1qg016987 for ; Fri, 18 Feb 2005 18:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2q1oJ061743 for ; Fri, 18 Feb 2005 18:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2q13q026581; Fri, 18 Feb 2005 18:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2pt3q026575 for ; Fri, 18 Feb 2005 18:51:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2ptoJ061741 for ; Fri, 18 Feb 2005 18:51:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1J2ptxS064559 for ; Fri, 18 Feb 2005 18:51:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1J2pt0L064558 for xorp-cvs@icir.org; Sat, 19 Feb 2005 02:51:55 GMT (envelope-from pavlin) Date: Sat, 19 Feb 2005 02:51:55 GMT From: Pavlin Radoslavov Message-Id: <200502190251.j1J2pt0L064558@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-19 02:51:55 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in pim.tgt Log message: Add finder_event_observer.xif to the XRL interface supported by pim. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=44 Revision Changes Path 1.55 +2 -1 xorp/xrl/targets/Makefile.am 1.69 +1 -0 xorp/xrl/targets/Makefile.in 1.5 +3 -1 xorp/xrl/targets/pim.tgt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Sat Feb 19 02:52:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Feb 2005 18:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1J2r3r6017198 for ; Fri, 18 Feb 2005 18:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2r3oJ061759 for ; Fri, 18 Feb 2005 18:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2r23q026617; Fri, 18 Feb 2005 18:53:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2qZ3q026598 for ; Fri, 18 Feb 2005 18:52:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2qZoJ061750 for ; Fri, 18 Feb 2005 18:52:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1J2qZTq064606 for ; Fri, 18 Feb 2005 18:52:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1J2qZsN064605 for xorp-cvs@icir.org; Sat, 19 Feb 2005 02:52:35 GMT (envelope-from pavlin) Date: Sat, 19 Feb 2005 02:52:35 GMT From: Pavlin Radoslavov Message-Id: <200502190252.j1J2qZsN064605@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-19 02:52:35 UTC XORP CVS repository Modified files: xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: Add finder_event_observer.xif to the XRL interface supported by pim. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=44 Revision Changes Path 1.40 +19 -1 xorp/xrl/targets/pim.xrls 1.43 +63 -1 xorp/xrl/targets/pim_base.cc 1.46 +33 -1 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Sat Feb 19 02:55:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Feb 2005 18:56:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1J2u25S017801 for ; Fri, 18 Feb 2005 18:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2u2oJ061789 for ; Fri, 18 Feb 2005 18:56:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2u23q026673; Fri, 18 Feb 2005 18:56:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1J2tG3q026655 for ; Fri, 18 Feb 2005 18:55:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1J2tGoJ061787 for ; Fri, 18 Feb 2005 18:55:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1J2tGYn064690 for ; Fri, 18 Feb 2005 18:55:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1J2tGXC064689 for xorp-cvs@icir.org; Sat, 19 Feb 2005 02:55:16 GMT (envelope-from pavlin) Date: Sat, 19 Feb 2005 02:55:16 GMT From: Pavlin Radoslavov Message-Id: <200502190255.j1J2tGXC064689@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-19 02:55:16 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in pim_node.cc pim_node.hh test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xrl_pim_node.cc xrl_pim_node.hh Log message: * Add a mechanism to register interest in the MFEA, RIB, and MLD/IGMP * Track the finder state and exit if the finder is disconnected. * Add a mechanism to re-register interest in the MLD/IGMP, if MLD/IGMP goes away and comes back. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=44 Revision Changes Path 1.34 +2 -1 xorp/pim/Makefile.am 1.48 +1 -0 xorp/pim/Makefile.in 1.57 +32 -5 xorp/pim/pim_node.cc 1.40 +5 -2 xorp/pim/pim_node.hh 1.50 +11 -15 xorp/pim/test_pim.cc 1.8 +9 -12 xorp/pim/xorp_pimsm4.cc 1.9 +9 -12 xorp/pim/xorp_pimsm6.cc 1.62 +550 -107 xorp/pim/xrl_pim_node.cc 1.47 +113 -25 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Wed Feb 23 17:37:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 09:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1NHc1SP099231 for ; Wed, 23 Feb 2005 09:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1NHc1Ni029026 for ; Wed, 23 Feb 2005 09:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1NHc1v4019664; Wed, 23 Feb 2005 09:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1NHbdv4019643 for ; Wed, 23 Feb 2005 09:37:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1NHbcNi029020 for ; Wed, 23 Feb 2005 09:37:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1NHbcUu017744 for ; Wed, 23 Feb 2005 09:37:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1NHbc4d017743 for xorp-cvs@icir.org; Wed, 23 Feb 2005 17:37:38 GMT (envelope-from pavlin) Date: Wed, 23 Feb 2005 17:37:38 GMT From: Pavlin Radoslavov Message-Id: <200502231737.j1NHbc4d017743@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli xorp/fea xorp/fib2mrib xorp/mld6igmp xorp/pim xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-23 17:37:38 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc xrl_cli_node.hh fea xrl_mfea_node.cc xrl_mfea_node.hh fib2mrib xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh pim xrl_pim_node.cc xrl_pim_node.hh static_routes xrl_static_routes_node.cc xrl_static_routes_node.hh Log message: * Check each Xrl return status for all possible errors, and take the appropriate action for each error type. * Minor tweaks: add a local reference to the eventloop, etc. Revision Changes Path 1.21 +2 -1 xorp/cli/xrl_cli_node.cc 1.16 +5 -4 xorp/cli/xrl_cli_node.hh 1.37 +675 -121 xorp/fea/xrl_mfea_node.cc 1.21 +3 -2 xorp/fea/xrl_mfea_node.hh 1.24 +832 -272 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.15 +2 -1 xorp/fib2mrib/xrl_fib2mrib_node.hh 1.34 +560 -157 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.27 +2 -1 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.63 +902 -272 xorp/pim/xrl_pim_node.cc 1.48 +2 -1 xorp/pim/xrl_pim_node.hh 1.25 +504 -164 xorp/static_routes/xrl_static_routes_node.cc 1.16 +2 -1 xorp/static_routes/xrl_static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:04:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O052LH075879 for ; Wed, 23 Feb 2005 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0512Z033238 for ; Wed, 23 Feb 2005 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O051v4002398; Wed, 23 Feb 2005 16:05:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O04mv4002370 for ; Wed, 23 Feb 2005 16:04:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O04m2Z033230 for ; Wed, 23 Feb 2005 16:04:48 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O04m4m021600 for ; Wed, 23 Feb 2005 16:04:48 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O04m8H021599 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:04:48 GMT (envelope-from atanu) Date: Thu, 24 Feb 2005 00:04:48 GMT From: Atanu Ghosh Message-Id: <200502240004.j1O04m8H021599@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src www/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-24 00:04:48 UTC XORP CVS repository Modified files: . contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirror_operation.html mirrors.html news.html papers.html people.html porting.html snmp.html status.html xorp_vision.html html_src index.html scripts XorpOrgGenerator.py Added files: . roadmap.html html_src roadmap.html Log message: Add XORP roadmap. Revision Changes Path 1.24 +2 -1 www/contributing.html 1.22 +2 -1 www/cvs.html 1.13 +2 -1 www/design_docs.html 1.33 +2 -1 www/downloads.html 1.11 +2 -1 www/empty.html 1.18 +2 -1 www/faq.html 1.30 +2 -1 www/getting_started.html 1.13 +2 -0 www/html_src/index.html 1.1 +29 -0 www/html_src/roadmap.html (new) 1.63 +4 -1 www/index.html 1.20 +2 -1 www/license.html 1.24 +2 -1 www/livecd.html 1.15 +2 -1 www/mailing_lists.html 1.3 +2 -1 www/mirror_operation.html 1.18 +2 -1 www/mirrors.html 1.37 +2 -1 www/news.html 1.9 +4 -3 www/papers.html 1.23 +2 -1 www/people.html 1.9 +4 -3 www/porting.html 1.1 +100 -0 www/roadmap.html (new) 1.10 +3 -2 www/scripts/XorpOrgGenerator.py 1.6 +4 -3 www/snmp.html 1.13 +4 -3 www/status.html 1.7 +4 -3 www/xorp_vision.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:13:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0E15N077705 for ; Wed, 23 Feb 2005 16:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0E12Z033338 for ; Wed, 23 Feb 2005 16:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0E1v4002770; Wed, 23 Feb 2005 16:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0DVv4002750 for ; Wed, 23 Feb 2005 16:13:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0DV2Z033329 for ; Wed, 23 Feb 2005 16:13:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0DUmE021924 for ; Wed, 23 Feb 2005 16:13:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0DUYr021923 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:13:30 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:13:30 GMT From: Pavlin Radoslavov Message-Id: <200502240013.j1O0DUYr021923@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:13:30 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc Log message: * Fix a comment * Bug fix: add missing code in the processing of COMMAND_FAILED XRL error inside method send_rib_route_change_cb() Revision Changes Path 1.25 +4 -2 xorp/fib2mrib/xrl_fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:13:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:14:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0E23t077728 for ; Wed, 23 Feb 2005 16:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0E22Z033340 for ; Wed, 23 Feb 2005 16:14:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0E2v4002781; Wed, 23 Feb 2005 16:14:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0Dpv4002762 for ; Wed, 23 Feb 2005 16:13:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0Dp2Z033336 for ; Wed, 23 Feb 2005 16:13:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0Dpnu021967 for ; Wed, 23 Feb 2005 16:13:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0Dpnc021966 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:13:51 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:13:51 GMT From: Pavlin Radoslavov Message-Id: <200502240013.j1O0Dpnc021966@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:13:51 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.cc Log message: * Fix a comment * Bug fix: add missing code in the processing of COMMAND_FAILED XRL error inside method send_rib_route_change_cb() Revision Changes Path 1.26 +4 -2 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:21:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:22:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0M2Vr079299 for ; Wed, 23 Feb 2005 16:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0M22Z033448 for ; Wed, 23 Feb 2005 16:22:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0M1v4003080; Wed, 23 Feb 2005 16:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0LHv4003059 for ; Wed, 23 Feb 2005 16:21:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0LH2Z033431 for ; Wed, 23 Feb 2005 16:21:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0LHFw022067 for ; Wed, 23 Feb 2005 16:21:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0LG7d022066 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:21:17 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:21:17 GMT From: Pavlin Radoslavov Message-Id: <200502240021.j1O0LG7d022066@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:21:16 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc Log message: * Remove an old comment. * Bug fix: move the de-registration with the MFEA from Mld6igmpNode::stop() to Mld6igmpNode::final_stop(). Otherwise, the module may prematurely de-register with the MFEA, and it won't be able to send-out protocol messages during the graceful shutdown. Revision Changes Path 1.36 +6 -7 xorp/mld6igmp/mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:29:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0U1tk080882 for ; Wed, 23 Feb 2005 16:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0U12Z033525 for ; Wed, 23 Feb 2005 16:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0U1v4003347; Wed, 23 Feb 2005 16:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0Tgv4003334 for ; Wed, 23 Feb 2005 16:29:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0Tg2Z033516 for ; Wed, 23 Feb 2005 16:29:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0TgvD022136 for ; Wed, 23 Feb 2005 16:29:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0TgPN022135 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:29:42 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:29:42 GMT From: Pavlin Radoslavov Message-Id: <200502240029.j1O0TgPN022135@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:29:42 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc Log message: * Change the action for processing COMMAND_FAILED XRL error within method :mld6igmp_client_send_add_delete_membership_cb() from XLOG_FATAL() to print an error and continue with the processing. This is to avoid the following race condition: If the MFEA is shutdown before MLD/IGMP and PIM, then we may have both MLD/IGMP and PIM shutting down at the same time. During that shutdown period, if MLD/IGMP sends delete_membership XRL to PIM, PIM may return COMMAND_FAILED if it is in process of deregistering with MLD/IGMP. * Add a check to XrlMld6igmpNode::proto_send() whether the MFEA is alive, and return immediately if it is dead. This upfront check is an optimization so we can avoid an unnecessary XRL, and we can print a better error message. Revision Changes Path 1.35 +14 -5 xorp/mld6igmp/xrl_mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:31:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0W18w081329 for ; Wed, 23 Feb 2005 16:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0W12Z033554 for ; Wed, 23 Feb 2005 16:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0W0v4003418; Wed, 23 Feb 2005 16:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0VFv4003391 for ; Wed, 23 Feb 2005 16:31:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0VF2Z033548 for ; Wed, 23 Feb 2005 16:31:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0VFQh022215 for ; Wed, 23 Feb 2005 16:31:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0VFEe022214 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:31:15 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:31:15 GMT From: Pavlin Radoslavov Message-Id: <200502240031.j1O0VFEe022214@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:31:15 UTC XORP CVS repository Modified files: pim pim_node.cc Log message: * Remove an old comment. * Bug fix: move the de-registration with the MFEA and the RIB from PimNode::stop() to PimNode::final_stop(). Otherwise, the module may prematurely de-register with the MFEA, and it won't be able to send-out protocol messages during the graceful shutdown. Revision Changes Path 1.58 +11 -12 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:34:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:35:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0Z2Pr081960 for ; Wed, 23 Feb 2005 16:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0Z22Z033584 for ; Wed, 23 Feb 2005 16:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0Z2v4003551; Wed, 23 Feb 2005 16:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0YHv4003525 for ; Wed, 23 Feb 2005 16:34:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0YH2Z033575 for ; Wed, 23 Feb 2005 16:34:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0YHPC022287 for ; Wed, 23 Feb 2005 16:34:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0YHxW022286 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:34:17 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:34:17 GMT From: Pavlin Radoslavov Message-Id: <200502240034.j1O0YHxW022286@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:34:17 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc Log message: * Update a comment * Add a check to XrlPimNode::proto_send() whether the MFEA is alive, and return immediately if it is dead. This upfront check is an optimization so we can avoid an unnecessary XRL, and we can print a better error message. Revision Changes Path 1.64 +10 -3 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:56 2005 Subject: No subject Thu Feb 24 00:47:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0m19u084541 for ; Wed, 23 Feb 2005 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0m12Z033711 for ; Wed, 23 Feb 2005 16:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0m1v4003974; Wed, 23 Feb 2005 16:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0lAv4003892 for ; Wed, 23 Feb 2005 16:47:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0l92Z033705 for ; Wed, 23 Feb 2005 16:47:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0l996022435 for ; Wed, 23 Feb 2005 16:47:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0l9ZP022434 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:47:09 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:47:09 GMT From: Pavlin Radoslavov Message-Id: <200502240047.j1O0l9ZP022434@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:47:09 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc Log message: Remove commented-out code. Revision Changes Path 1.22 +1 -4 xorp/cli/xrl_cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 00:50:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 16:51:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O0p2iN085156 for ; Wed, 23 Feb 2005 16:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0p22Z033752 for ; Wed, 23 Feb 2005 16:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0p1v4004042; Wed, 23 Feb 2005 16:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O0oHv4004022 for ; Wed, 23 Feb 2005 16:50:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O0oH2Z033748 for ; Wed, 23 Feb 2005 16:50:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O0oHwA022632 for ; Wed, 23 Feb 2005 16:50:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O0oHSb022631 for xorp-cvs@icir.org; Thu, 24 Feb 2005 00:50:17 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 00:50:17 GMT From: Pavlin Radoslavov Message-Id: <200502240050.j1O0oHSb022631@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/fib2mrib xorp/mld6igmp xorp/pim xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 00:50:17 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc fib2mrib xrl_fib2mrib_node.cc mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc static_routes xrl_static_routes_node.cc Log message: If the finder disappears, then call the appropriate shutdown method to start a graceful shutdown instead of forcefully set the state to SERVICE_FAILED. This fixes Bugzilla entry 109 Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=109 Revision Changes Path 1.38 +2 -3 xorp/fea/xrl_mfea_node.cc 1.26 +2 -3 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.36 +2 -3 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.65 +2 -3 xorp/pim/xrl_pim_node.cc 1.27 +2 -3 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 02:19:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 18:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O2K1jt049285 for ; Wed, 23 Feb 2005 18:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2K12Z034979 for ; Wed, 23 Feb 2005 18:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2K1v4006308; Wed, 23 Feb 2005 18:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2JBv4006291 for ; Wed, 23 Feb 2005 18:19:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2JB2Z034958 for ; Wed, 23 Feb 2005 18:19:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O2JA4J023386 for ; Wed, 23 Feb 2005 18:19:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O2JARj023385 for xorp-cvs@icir.org; Thu, 24 Feb 2005 02:19:10 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 02:19:10 GMT From: Pavlin Radoslavov Message-Id: <200502240219.j1O2JARj023385@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 02:19:10 UTC XORP CVS repository Modified files: libproto proto_node.hh Log message: Make the following methods public: incr_startup_requests_n() decr_startup_requests_n() incr_shutdown_requests_n() decr_shutdown_requests_n() Revision Changes Path 1.27 +19 -3 xorp/libproto/proto_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 02:41:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 18:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O2g1DM001750 for ; Wed, 23 Feb 2005 18:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2g12Z035332 for ; Wed, 23 Feb 2005 18:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2g1v4006722; Wed, 23 Feb 2005 18:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2fDv4006699 for ; Wed, 23 Feb 2005 18:41:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2fD2Z035318 for ; Wed, 23 Feb 2005 18:41:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O2fC8P023691 for ; Wed, 23 Feb 2005 18:41:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O2fCGF023690 for xorp-cvs@icir.org; Thu, 24 Feb 2005 02:41:12 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 02:41:12 GMT From: Pavlin Radoslavov Message-Id: <200502240241.j1O2fCGF023690@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 02:41:12 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: * Refactor the vif shutdown process by using PimNode::incr_shutdown_requests_n() and PimNode::decr_shutdown_requests_n() and get rid of the old PimNode::has_pending_down_units() mechanism. This fixes a coredump problem if we send a shutdown XRL when all processes were started by hand. * If stop_protocol_kernel_vif() fails, continue with the processing inside PimVif::final_stop(), and return an error at the end. Revision Changes Path 1.40 +15 -12 xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 02:43:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 18:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O2i143008398 for ; Wed, 23 Feb 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2i12Z035347 for ; Wed, 23 Feb 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2i0v4006768; Wed, 23 Feb 2005 18:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2hjv4006761 for ; Wed, 23 Feb 2005 18:43:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2hi2Z035343 for ; Wed, 23 Feb 2005 18:43:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O2hi7m023754 for ; Wed, 23 Feb 2005 18:43:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O2hiAV023753 for xorp-cvs@icir.org; Thu, 24 Feb 2005 02:43:44 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 02:43:44 GMT From: Pavlin Radoslavov Message-Id: <200502240243.j1O2hiAV023753@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 02:43:44 UTC XORP CVS repository Modified files: fea mfea_vif.cc Log message: * Get rid of the old has_pending_down_units() mechanism inside the vif stop() method, because it is not needed. * If delete_multicast_vif() fails, continue with the processing inside MfeaVif::stop(), and return an error at the end. Revision Changes Path 1.9 +8 -15 xorp/fea/mfea_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 02:44:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 18:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O2j1RN010230 for ; Wed, 23 Feb 2005 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2j12Z035364 for ; Wed, 23 Feb 2005 18:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2j1v4006796; Wed, 23 Feb 2005 18:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2i5v4006779 for ; Wed, 23 Feb 2005 18:44:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2i52Z035349 for ; Wed, 23 Feb 2005 18:44:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O2i5Iq023794 for ; Wed, 23 Feb 2005 18:44:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O2i5JI023793 for xorp-cvs@icir.org; Thu, 24 Feb 2005 02:44:05 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 02:44:05 GMT From: Pavlin Radoslavov Message-Id: <200502240244.j1O2i5JI023793@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 02:44:05 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_vif.cc Log message: * Get rid of the old has_pending_down_units() mechanism inside the vif stop() method, because it is not needed. * If stop_protocol_kernel_vif() fails, continue with the processing inside MfeaVif::stop(), and return an error at the end. Revision Changes Path 1.31 +4 -14 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 02:47:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 18:48:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O2m2mC019180 for ; Wed, 23 Feb 2005 18:48:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2m12Z035417 for ; Wed, 23 Feb 2005 18:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2m1v4006908; Wed, 23 Feb 2005 18:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O2lgv4006895 for ; Wed, 23 Feb 2005 18:47:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O2lf2Z035413 for ; Wed, 23 Feb 2005 18:47:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O2lfcp023910 for ; Wed, 23 Feb 2005 18:47:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O2lfrm023909 for xorp-cvs@icir.org; Thu, 24 Feb 2005 02:47:41 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 02:47:41 GMT From: Pavlin Radoslavov Message-Id: <200502240247.j1O2lfrm023909@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 02:47:41 UTC XORP CVS repository Modified files: fea mfea_node.cc mfea_node.hh mld6igmp mld6igmp_node.cc mld6igmp_node.hh pim pim_node.cc pim_node.hh Log message: Get rid of the has_pending_down_units() method, because it is not needed anymore. Revision Changes Path 1.45 +1 -42 xorp/fea/mfea_node.cc 1.26 +1 -12 xorp/fea/mfea_node.hh 1.37 +1 -42 xorp/mld6igmp/mld6igmp_node.cc 1.17 +1 -12 xorp/mld6igmp/mld6igmp_node.hh 1.59 +1 -42 xorp/pim/pim_node.cc 1.41 +1 -12 xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 05:15:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Feb 2005 21:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1O5G1hA051573 for ; Wed, 23 Feb 2005 21:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O5G12Z037106 for ; Wed, 23 Feb 2005 21:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O5G1v4009890; Wed, 23 Feb 2005 21:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1O5FMv4009881 for ; Wed, 23 Feb 2005 21:15:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1O5FM2Z037096 for ; Wed, 23 Feb 2005 21:15:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1O5FMmJ024882 for ; Wed, 23 Feb 2005 21:15:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1O5FMmY024881 for xorp-cvs@icir.org; Thu, 24 Feb 2005 05:15:22 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 05:15:22 GMT From: Pavlin Radoslavov Message-Id: <200502240515.j1O5FMmY024881@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 05:15:22 UTC XORP CVS repository Modified files: fea fea.cc Log message: Fix the FEA target name when given as an argument to the IPv6 MFEA. Bug found by: Atanu Revision Changes Path 1.47 +2 -2 xorp/fea/fea.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 18:12:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 10:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OID14d007104 for ; Thu, 24 Feb 2005 10:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OID12Z046323 for ; Thu, 24 Feb 2005 10:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OID1v4029544; Thu, 24 Feb 2005 10:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OIC1v4029498 for ; Thu, 24 Feb 2005 10:12:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OIC12Z046310 for ; Thu, 24 Feb 2005 10:12:01 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OIC1x4033025 for ; Thu, 24 Feb 2005 10:12:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OIC1Ow033024 for xorp-cvs@icir.org; Thu, 24 Feb 2005 18:12:01 GMT (envelope-from atanu) Date: Thu, 24 Feb 2005 18:12:01 GMT From: Atanu Ghosh Message-Id: <200502241812.j1OIC1Ow033024@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-24 18:12:01 UTC XORP CVS repository Modified files: . roadmap.html html_src roadmap.html Log message: Add a completion date for the windows port. Revision Changes Path 1.2 +5 -0 www/html_src/roadmap.html 1.2 +8 -3 www/roadmap.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 18:32:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 10:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OIX1cc011129 for ; Thu, 24 Feb 2005 10:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OIX12Z046559 for ; Thu, 24 Feb 2005 10:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OIX0v4000222; Thu, 24 Feb 2005 10:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OIWPv4000205 for ; Thu, 24 Feb 2005 10:32:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OIWP2Z046553 for ; Thu, 24 Feb 2005 10:32:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OIWPMb033295 for ; Thu, 24 Feb 2005 10:32:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OIWPLb033294 for xorp-cvs@icir.org; Thu, 24 Feb 2005 18:32:25 GMT (envelope-from atanu) Date: Thu, 24 Feb 2005 18:32:25 GMT From: Atanu Ghosh Message-Id: <200502241832.j1OIWPLb033294@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-24 18:32:25 UTC XORP CVS repository Modified files: . news.html html_src news.html Log message: Add the lightreading article to news. Revision Changes Path 1.9 +10 -0 www/html_src/news.html 1.38 +13 -3 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 18:39:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 10:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OIe1Ok012532 for ; Thu, 24 Feb 2005 10:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OIe12Z046647 for ; Thu, 24 Feb 2005 10:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OIe1v4000551; Thu, 24 Feb 2005 10:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OId3v4000529 for ; Thu, 24 Feb 2005 10:39:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OId22Z046633 for ; Thu, 24 Feb 2005 10:39:02 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OId2iP033405 for ; Thu, 24 Feb 2005 10:39:02 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OId2bh033404 for xorp-cvs@icir.org; Thu, 24 Feb 2005 18:39:02 GMT (envelope-from atanu) Date: Thu, 24 Feb 2005 18:39:02 GMT From: Atanu Ghosh Message-Id: <200502241839.j1OId2bh033404@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-24 18:39:02 UTC XORP CVS repository Modified files: . contributing.html html_src contributing.html Log message: Click is now re-integrated with XORP remove from list of wanted code contributions. Revision Changes Path 1.25 +4 -11 www/contributing.html 1.6 +1 -8 www/html_src/contributing.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 20:39:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 12:40:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OKe07N036594 for ; Thu, 24 Feb 2005 12:40:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OKe02Z048071 for ; Thu, 24 Feb 2005 12:40:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OKe0v4004682; Thu, 24 Feb 2005 12:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OKdtv4004676 for ; Thu, 24 Feb 2005 12:39:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OKdt2Z048062 for ; Thu, 24 Feb 2005 12:39:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OKdt5M034821 for ; Thu, 24 Feb 2005 12:39:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OKdtxR034820 for xorp-cvs@icir.org; Thu, 24 Feb 2005 20:39:55 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 20:39:55 GMT From: Pavlin Radoslavov Message-Id: <200502242039.j1OKdtxR034820@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 20:39:55 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc Log message: A bug fix: if an operational command is not associated with any module (i.e., if the module name is an empty string), then add the command to the operational command tree. This fix the problem of executing commands like "ping". Bug found by: Bruce Simpson Revision Changes Path 1.45 +9 -4 xorp/rtrmgr/op_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 20:40:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 12:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OKf1YH036846 for ; Thu, 24 Feb 2005 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OKf12Z048102 for ; Thu, 24 Feb 2005 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OKf1v4004724; Thu, 24 Feb 2005 12:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OKeBv4004705 for ; Thu, 24 Feb 2005 12:40:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OKeA2Z048092 for ; Thu, 24 Feb 2005 12:40:10 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OKeAUk034900 for ; Thu, 24 Feb 2005 12:40:10 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OKeAqV034899 for xorp-cvs@icir.org; Thu, 24 Feb 2005 20:40:10 GMT (envelope-from atanu) Date: Thu, 24 Feb 2005 20:40:10 GMT From: Atanu Ghosh Message-Id: <200502242040.j1OKeAqV034899@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-24 20:40:10 UTC XORP CVS repository Modified files: . roadmap.html html_src roadmap.html Log message: Task -> Milestone Submitted by: Adam Revision Changes Path 1.3 +1 -1 www/html_src/roadmap.html 1.3 +2 -2 www/roadmap.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Thu Feb 24 21:06:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 13:07:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1OL70JV042138 for ; Thu, 24 Feb 2005 13:07:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OL702Z048339 for ; Thu, 24 Feb 2005 13:07:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OL70v4005576; Thu, 24 Feb 2005 13:07:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1OL6lv4005569 for ; Thu, 24 Feb 2005 13:06:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1OL6l2Z048337 for ; Thu, 24 Feb 2005 13:06:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1OL6lct035202 for ; Thu, 24 Feb 2005 13:06:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1OL6lv5035201 for xorp-cvs@icir.org; Thu, 24 Feb 2005 21:06:47 GMT (envelope-from pavlin) Date: Thu, 24 Feb 2005 21:06:47 GMT From: Pavlin Radoslavov Message-Id: <200502242106.j1OL6lv5035201@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-24 21:06:47 UTC XORP CVS repository Modified files: etc/templates misc.cmds Log message: Redirect the traceroute's stderr to stdout, because traceroute's initial banner output "traceroute to ..." is printed to stderr. Otherwise, we cannot run traceroute inside xorpsh, because a command is considered failed if it has any output on stderr. Approved by: Atanu Revision Changes Path 1.3 +8 -3 xorp/etc/templates/misc.cmds _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 00:39:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 16:41:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1P0f2bI032568 for ; Thu, 24 Feb 2005 16:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P0f12Z050724 for ; Thu, 24 Feb 2005 16:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P0f1v4012040; Thu, 24 Feb 2005 16:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P0dev4012000 for ; Thu, 24 Feb 2005 16:39:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P0de2Z050696 for ; Thu, 24 Feb 2005 16:39:40 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1P0deZv037672 for ; Thu, 24 Feb 2005 16:39:40 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1P0deaI037671 for xorp-cvs@icir.org; Fri, 25 Feb 2005 00:39:40 GMT (envelope-from atanu) Date: Fri, 25 Feb 2005 00:39:40 GMT From: Atanu Ghosh Message-Id: <200502250039.j1P0deaI037671@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-02-25 00:39:39 UTC XORP CVS repository Modified files: . roadmap.html html_src roadmap.html Log message: Add some more items to the roadmap. Revision Changes Path 1.4 +32 -2 www/html_src/roadmap.html 1.4 +33 -3 www/roadmap.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 03:43:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 19:46:46 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1P3kkD7012917 for ; Thu, 24 Feb 2005 19:46:46 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P3i12Z052749 for ; Thu, 24 Feb 2005 19:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P3i1v4017079; Thu, 24 Feb 2005 19:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P3hWv4017067 for ; Thu, 24 Feb 2005 19:43:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P3hW2Z052743 for ; Thu, 24 Feb 2005 19:43:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1P3hWIw040215 for ; Thu, 24 Feb 2005 19:43:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1P3hWQQ040214 for xorp-cvs@icir.org; Fri, 25 Feb 2005 03:43:32 GMT (envelope-from pavlin) Date: Fri, 25 Feb 2005 03:43:32 GMT From: Pavlin Radoslavov Message-Id: <200502250343.j1P3hWQQ040214@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-25 03:43:32 UTC XORP CVS repository Modified files: rib rib.cc Log message: Bug fix: when adding a directly-connected route to the other side of a p2p link, the next-hop address should be the IP address of the other side. Revision Changes Path 1.48 +5 -3 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 04:38:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 20:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1P4d0tV023217 for ; Thu, 24 Feb 2005 20:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P4d02Z053308 for ; Thu, 24 Feb 2005 20:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P4d0v4018438; Thu, 24 Feb 2005 20:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P4civ4018430 for ; Thu, 24 Feb 2005 20:38:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P4ch2Z053303 for ; Thu, 24 Feb 2005 20:38:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1P4chXv040837 for ; Thu, 24 Feb 2005 20:38:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1P4ch6F040836 for xorp-cvs@icir.org; Fri, 25 Feb 2005 04:38:43 GMT (envelope-from pavlin) Date: Fri, 25 Feb 2005 04:38:43 GMT From: Pavlin Radoslavov Message-Id: <200502250438.j1P4ch6F040836@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-25 04:38:43 UTC XORP CVS repository Modified files: fea xorp_fea_click_config_generator Log message: If there is an error, print the message to the stderr Revision Changes Path 1.10 +5 -3 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 05:14:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 21:15:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1P5F2mR030301 for ; Thu, 24 Feb 2005 21:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P5F12Z053678 for ; Thu, 24 Feb 2005 21:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P5F1v4019286; Thu, 24 Feb 2005 21:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P5ERv4019262 for ; Thu, 24 Feb 2005 21:14:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P5ER2Z053669 for ; Thu, 24 Feb 2005 21:14:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1P5ERul041425 for ; Thu, 24 Feb 2005 21:14:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1P5ERMU041424 for xorp-cvs@icir.org; Fri, 25 Feb 2005 05:14:27 GMT (envelope-from pavlin) Date: Fri, 25 Feb 2005 05:14:27 GMT From: Pavlin Radoslavov Message-Id: <200502250514.j1P5ERMU041424@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-25 05:14:27 UTC XORP CVS repository Modified files: rib rib.cc Log message: Modify RIB::find_vif() so it will consider the address on the other side of a p2p link when searching for a vif. Revision Changes Path 1.49 +3 -1 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 05:27:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Feb 2005 21:28:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1P5S2ZP032848 for ; Thu, 24 Feb 2005 21:28:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P5S12Z053806 for ; Thu, 24 Feb 2005 21:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P5S1v4019626; Thu, 24 Feb 2005 21:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1P5RBv4019579 for ; Thu, 24 Feb 2005 21:27:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1P5RB2Z053802 for ; Thu, 24 Feb 2005 21:27:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1P5RBT6041639 for ; Thu, 24 Feb 2005 21:27:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1P5RB7i041638 for xorp-cvs@icir.org; Fri, 25 Feb 2005 05:27:11 GMT (envelope-from pavlin) Date: Fri, 25 Feb 2005 05:27:11 GMT From: Pavlin Radoslavov Message-Id: <200502250527.j1P5RB7i041638@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-25 05:27:11 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc ifconfig_set_click.cc Log message: * Modify the NexthopPortMapper setup such that all local IP addresses are mapped to the port designed for local delivery. * When adding routes to Click, if we are adding a directly-connected route, then check for the corner case of adding a /32 or /128 "connected" route that eventually points to either (a) the other side of a p2p link OR (b) a connected route for a /32 or /128 configured interface For such routes, we lookup furst the NexthopPortMapper by using the nexthop IP address, and then the nexthop interface, otherwise the search is the other way around. By doing so we are really interested in catching case (b) above so we can map the "connected" routes for the /32 or /128 configured interfaces to the local delivery port of the Click lookup element. This fixes a bug when a /32 configured interface overwrites the local delivery entries (initialized by the xorp_fea_click_config_generator script) by a bogus routing entry that points to the corresponding interface port rather than the local delivery port. Bug found by: jmorillo@ac.upc.edu Revision Changes Path 1.20 +39 -8 xorp/fea/fticonfig_entry_set_click.cc 1.18 +21 -6 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:57 2005 Subject: No subject Fri Feb 25 18:46:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Feb 2005 10:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1PIl100092650 for ; Fri, 25 Feb 2005 10:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1PIl12Z063800 for ; Fri, 25 Feb 2005 10:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1PIl0v4010960; Fri, 25 Feb 2005 10:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1PIkCv4010938 for ; Fri, 25 Feb 2005 10:46:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1PIkC2Z063794 for ; Fri, 25 Feb 2005 10:46:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1PIkChu061163 for ; Fri, 25 Feb 2005 10:46:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1PIkCQU061162 for xorp-cvs@icir.org; Fri, 25 Feb 2005 18:46:12 GMT (envelope-from pavlin) Date: Fri, 25 Feb 2005 18:46:12 GMT From: Pavlin Radoslavov Message-Id: <200502251846.j1PIkCQU061162@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-25 18:46:12 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc Log message: Add extra info to an XLOG_ERROR() message. Revision Changes Path 1.22 +3 -2 xorp/fea/mfea_mrouter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 20:09:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 12:10:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RKA3Df075555 for ; Sun, 27 Feb 2005 12:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKA32Z095989 for ; Sun, 27 Feb 2005 12:10:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKA1v4018811; Sun, 27 Feb 2005 12:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RK9Pv4018793 for ; Sun, 27 Feb 2005 12:09:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RK9P2Z095984 for ; Sun, 27 Feb 2005 12:09:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RK9Pv7085812 for ; Sun, 27 Feb 2005 12:09:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RK9P3o085811 for xorp-cvs@icir.org; Sun, 27 Feb 2005 20:09:25 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 20:09:25 GMT From: Pavlin Radoslavov Message-Id: <200502272009.j1RK9P3o085811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 20:09:25 UTC XORP CVS repository Modified files: pim pim_mrt.cc pim_mrt.hh Log message: * Add new method PimMrt::clear() * Call the above method within the PimMrt destructor Revision Changes Path 1.7 +15 -2 xorp/pim/pim_mrt.cc 1.12 +2 -1 xorp/pim/pim_mrt.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 20:13:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 12:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RKE1aJ076337 for ; Sun, 27 Feb 2005 12:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKE02Z096029 for ; Sun, 27 Feb 2005 12:14:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKE0v4018930; Sun, 27 Feb 2005 12:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKDKv4018898 for ; Sun, 27 Feb 2005 12:13:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKDK2Z096023 for ; Sun, 27 Feb 2005 12:13:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RKDJq2085894 for ; Sun, 27 Feb 2005 12:13:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RKDJug085893 for xorp-cvs@icir.org; Sun, 27 Feb 2005 20:13:19 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 20:13:19 GMT From: Pavlin Radoslavov Message-Id: <200502272013.j1RKDJug085893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 20:13:19 UTC XORP CVS repository Modified files: pim pim_node.cc Log message: Explicitly clear the PimMrt table within the PimNode destructor, because PimMrt may utilize some lists in the PimNode class (e.g., _processing_pim_nbr_list) that may be deleted prematurely at the end of the PimNode destructor (depending on the declaration ordering). This fixes the following warning message during graceful shutdown via the rtrmgr: xorp_pimsm4 in free(): warning: page is already free Revision Changes Path 1.60 +9 -1 xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 20:46:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 12:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RKl11B082770 for ; Sun, 27 Feb 2005 12:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKl12Z096296 for ; Sun, 27 Feb 2005 12:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKl1v4019710; Sun, 27 Feb 2005 12:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKkuv4019702 for ; Sun, 27 Feb 2005 12:46:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKku2Z096293 for ; Sun, 27 Feb 2005 12:46:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RKkt07086307 for ; Sun, 27 Feb 2005 12:46:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RKktlT086306 for xorp-cvs@icir.org; Sun, 27 Feb 2005 20:46:55 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 20:46:55 GMT From: Pavlin Radoslavov Message-Id: <200502272046.j1RKktlT086306@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 20:46:55 UTC XORP CVS repository Modified files: cli cli_client.cc cli_command.cc cli_command_pipe.cc cli_node.cc cli_node_internal_commands.cc cli_node_net.cc cli_private.hh xrl_cli_node.cc Log message: * Move the #include "libxorp/*> from cli_private.hh to each *.cc file. * Keep the #include "cli_private.hh" only where it is needed in the *.cc files. Revision Changes Path 1.26 +8 -4 xorp/cli/cli_client.cc 1.12 +6 -2 xorp/cli/cli_command.cc 1.5 +6 -2 xorp/cli/cli_command_pipe.cc 1.21 +8 -2 xorp/cli/cli_node.cc 1.10 +6 -2 xorp/cli/cli_node_internal_commands.cc 1.32 +6 -2 xorp/cli/cli_node_net.cc 1.5 +1 -7 xorp/cli/cli_private.hh 1.23 +6 -2 xorp/cli/xrl_cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 20:49:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 12:50:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RKo2cC083364 for ; Sun, 27 Feb 2005 12:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKo22Z096328 for ; Sun, 27 Feb 2005 12:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKo1v4019785; Sun, 27 Feb 2005 12:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKn7v4019765 for ; Sun, 27 Feb 2005 12:49:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKn72Z096313 for ; Sun, 27 Feb 2005 12:49:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RKn7JC086384 for ; Sun, 27 Feb 2005 12:49:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RKn7Xv086383 for xorp-cvs@icir.org; Sun, 27 Feb 2005 20:49:07 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 20:49:07 GMT From: Pavlin Radoslavov Message-Id: <200502272049.j1RKn7Xv086383@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 20:49:07 UTC XORP CVS repository Modified files: mld6igmp Makefile.am Makefile.in igmp_proto.cc mld6_proto.cc mld6igmp_config.cc mld6igmp_member_query.cc mld6igmp_node.cc mld6igmp_node_cli.cc mld6igmp_proto.cc mld6igmp_vif.cc Removed files: mld6igmp mld6igmp_private.hh Log message: * Move the #include "libxorp/*" from mld6igmp_private.hh to each *.cc file. * Remove the "mld6igmp_private.hh" file, because it is not needed anymore. Revision Changes Path 1.29 +1 -2 xorp/mld6igmp/Makefile.am 1.43 +1 -1 xorp/mld6igmp/Makefile.in 1.28 +7 -2 xorp/mld6igmp/igmp_proto.cc 1.31 +8 -2 xorp/mld6igmp/mld6_proto.cc 1.4 +6 -2 xorp/mld6igmp/mld6igmp_config.cc 1.10 +6 -2 xorp/mld6igmp/mld6igmp_member_query.cc 1.38 +6 -2 xorp/mld6igmp/mld6igmp_node.cc 1.16 +6 -2 xorp/mld6igmp/mld6igmp_node_cli.cc 1.4 +0 -48 xorp/mld6igmp/mld6igmp_private.hh (dead) 1.12 +6 -2 xorp/mld6igmp/mld6igmp_proto.cc 1.32 +7 -2 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 20:49:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 12:50:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RKo44b083379 for ; Sun, 27 Feb 2005 12:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKo32Z096330 for ; Sun, 27 Feb 2005 12:50:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKo3v4019801; Sun, 27 Feb 2005 12:50:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RKnpv4019776 for ; Sun, 27 Feb 2005 12:49:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RKnp2Z096323 for ; Sun, 27 Feb 2005 12:49:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RKnp3r086501 for ; Sun, 27 Feb 2005 12:49:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RKnpsZ086500 for xorp-cvs@icir.org; Sun, 27 Feb 2005 20:49:51 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 20:49:51 GMT From: Pavlin Radoslavov Message-Id: <200502272049.j1RKnpsZ086500@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 20:49:51 UTC XORP CVS repository Modified files: pim Makefile.am Makefile.in pim_bsr.cc pim_config.cc pim_mfc.cc pim_mre.cc pim_mre_assert.cc pim_mre_data.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_track_state.cc pim_mrib_table.cc pim_mrt.cc pim_mrt_mfc.cc pim_mrt_task.cc pim_nbr.cc pim_node.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_graft_ack.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_register.cc pim_proto_register_stop.cc pim_rp.cc pim_scope_zone_table.cc pim_vif.cc Removed files: pim pim_private.hh Log message: * Move the #include "libxorp/*" from pim_private.hh to each *.cc file. * Remove the "pim_private.hh" file, because it is not needed anymore. Revision Changes Path 1.35 +1 -2 xorp/pim/Makefile.am 1.49 +1 -1 xorp/pim/Makefile.in 1.32 +7 -2 xorp/pim/pim_bsr.cc 1.26 +6 -2 xorp/pim/pim_config.cc 1.23 +6 -2 xorp/pim/pim_mfc.cc 1.30 +6 -2 xorp/pim/pim_mre.cc 1.29 +6 -2 xorp/pim/pim_mre_assert.cc 1.14 +6 -2 xorp/pim/pim_mre_data.cc 1.31 +6 -2 xorp/pim/pim_mre_join_prune.cc 1.17 +6 -2 xorp/pim/pim_mre_register.cc 1.31 +6 -2 xorp/pim/pim_mre_rpf.cc 1.13 +6 -2 xorp/pim/pim_mre_task.cc 1.31 +5 -2 xorp/pim/pim_mre_track_state.cc 1.9 +5 -3 xorp/pim/pim_mrib_table.cc 1.8 +6 -2 xorp/pim/pim_mrt.cc 1.21 +6 -2 xorp/pim/pim_mrt_mfc.cc 1.17 +6 -2 xorp/pim/pim_mrt_task.cc 1.13 +6 -2 xorp/pim/pim_nbr.cc 1.61 +7 -2 xorp/pim/pim_node.cc 1.31 +6 -2 xorp/pim/pim_node_cli.cc 1.4 +0 -49 xorp/pim/pim_private.hh (dead) 1.21 +6 -2 xorp/pim/pim_proto_assert.cc 1.17 +6 -2 xorp/pim/pim_proto_bootstrap.cc 1.16 +6 -2 xorp/pim/pim_proto_cand_rp_adv.cc 1.8 +6 -2 xorp/pim/pim_proto_graft.cc 1.4 +6 -2 xorp/pim/pim_proto_graft_ack.cc 1.17 +6 -2 xorp/pim/pim_proto_hello.cc 1.10 +6 -2 xorp/pim/pim_proto_join_prune.cc 1.19 +6 -2 xorp/pim/pim_proto_join_prune_message.cc 1.18 +6 -2 xorp/pim/pim_proto_register.cc 1.11 +6 -2 xorp/pim/pim_proto_register_stop.cc 1.8 +7 -3 xorp/pim/pim_rp.cc 1.10 +6 -2 xorp/pim/pim_scope_zone_table.cc 1.41 +7 -2 xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Sun Feb 27 21:32:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 27 Feb 2005 13:33:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1RLX0lN091757 for ; Sun, 27 Feb 2005 13:33:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RLX02Z096685 for ; Sun, 27 Feb 2005 13:33:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RLX0v4020771; Sun, 27 Feb 2005 13:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1RLWuv4020764 for ; Sun, 27 Feb 2005 13:32:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1RLWu2Z096683 for ; Sun, 27 Feb 2005 13:32:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1RLWu4I087179 for ; Sun, 27 Feb 2005 13:32:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1RLWuh2087178 for xorp-cvs@icir.org; Sun, 27 Feb 2005 21:32:56 GMT (envelope-from pavlin) Date: Sun, 27 Feb 2005 21:32:56 GMT From: Pavlin Radoslavov Message-Id: <200502272132.j1RLWuh2087178@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/fea xorp/libproto xorp/libxipc xorp/mld6igmp xorp/mrt xorp/pim xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-27 21:32:56 UTC XORP CVS repository Modified files: bgp test_packet.cc update_test.cc bgp/harness test_trie.cc fea mfea_mrouter.cc mfea_node.cc mfea_node_cli.cc mfea_proto_comm.cc netlink_socket.cc rawsock4.cc routing_socket.cc test_rawsock4.cc xrl_mfea_node.cc xrl_rawsock4.cc xrl_rawsock6.cc libproto proto_node.hh libxipc test_xrl_receiver.cc test_xrl_sender.cc mld6igmp mld6igmp_node.cc mld6igmp_node_cli.cc mrt test_mrib.cc pim pim_mre_track_state.cc pim_node.cc pim_node_cli.cc pim_proto_assert.cc pim_proto_register_stop.cc pim_vif.cc rip test_auth.cc Log message: Replace all (uint32_t) and *_cast casting with XORP_UINT_CAST everwhere they are used with printf-like arguments. Revision Changes Path 1.16 +3 -3 xorp/bgp/harness/test_trie.cc 1.8 +9 -9 xorp/bgp/test_packet.cc 1.11 +3 -3 xorp/bgp/update_test.cc 1.23 +4 -3 xorp/fea/mfea_mrouter.cc 1.46 +2 -2 xorp/fea/mfea_node.cc 1.12 +19 -15 xorp/fea/mfea_node_cli.cc 1.21 +12 -11 xorp/fea/mfea_proto_comm.cc 1.28 +4 -4 xorp/fea/netlink_socket.cc 1.9 +2 -2 xorp/fea/rawsock4.cc 1.20 +2 -2 xorp/fea/routing_socket.cc 1.8 +4 -4 xorp/fea/test_rawsock4.cc 1.39 +5 -3 xorp/fea/xrl_mfea_node.cc 1.11 +4 -3 xorp/fea/xrl_rawsock4.cc 1.2 +4 -4 xorp/fea/xrl_rawsock6.cc 1.28 +3 -3 xorp/libproto/proto_node.hh 1.7 +2 -2 xorp/libxipc/test_xrl_receiver.cc 1.11 +4 -4 xorp/libxipc/test_xrl_sender.cc 1.39 +2 -2 xorp/mld6igmp/mld6igmp_node.cc 1.17 +2 -2 xorp/mld6igmp/mld6igmp_node_cli.cc 1.6 +2 -2 xorp/mrt/test_mrib.cc 1.32 +2 -2 xorp/pim/pim_mre_track_state.cc 1.62 +2 -2 xorp/pim/pim_node.cc 1.32 +3 -3 xorp/pim/pim_node_cli.cc 1.22 +3 -2 xorp/pim/pim_proto_assert.cc 1.12 +3 -2 xorp/pim/pim_proto_register_stop.cc 1.42 +2 -2 xorp/pim/pim_vif.cc 1.13 +2 -2 xorp/rip/test_auth.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 08:13:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 00:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1S8E1Up017649 for ; Mon, 28 Feb 2005 00:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8E02Z003053 for ; Mon, 28 Feb 2005 00:14:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8E0v4003699; Mon, 28 Feb 2005 00:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8Dkv4003690 for ; Mon, 28 Feb 2005 00:13:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8Dk2Z003051 for ; Mon, 28 Feb 2005 00:13:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1S8DkK4093142 for ; Mon, 28 Feb 2005 00:13:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1S8DkD0093141 for xorp-cvs@icir.org; Mon, 28 Feb 2005 08:13:46 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 08:13:46 GMT From: Pavlin Radoslavov Message-Id: <200502280813.j1S8DkD0093141@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 08:13:46 UTC XORP CVS repository Modified files: fea ifconfig.cc ifconfig.hh ifconfig_set.cc ifconfig_set.hh ifconfig_set_dummy.cc iftree.cc iftree.hh Log message: * Add a new flag "discard_emulated" to IfTree, that is used to indicate if a discard interface has to be emulated by the underlying system. * Change slightly the IfConfig::push_config() and IfConfigSet::push_config() semantics, so now the pushed IfTree may be modified on return. Further, we save a copy of the pushed config inside IfConfig::push_config() only on success. * Set the "discard_emulated" flag by testing the underlying drivers capabilities inside IfConfig::push_config() when the IfTree configuration is pushed. * Modify IfTree::align_width() such that if an interface from the local tree is marked as "soft" or "discard_emulated", and is not in the other tree, the interface is not marked as deleted in the local tree. The above modifications fix a problem when the emulated discard interfaces disappear from the FEA configuration when we try to syncronize the FEA's interface tree with that observed within the running system. Bug found by: Bruce Simpson Revision Changes Path 1.43 +15 -11 xorp/fea/ifconfig.cc 1.41 +7 -5 xorp/fea/ifconfig.hh 1.23 +8 -4 xorp/fea/ifconfig_set.cc 1.33 +9 -3 xorp/fea/ifconfig_set.hh 1.18 +2 -2 xorp/fea/ifconfig_set_dummy.cc 1.25 +13 -4 xorp/fea/iftree.cc 1.27 +12 -1 xorp/fea/iftree.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 08:45:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 00:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1S8k1SW025329 for ; Mon, 28 Feb 2005 00:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8k12Z003406 for ; Mon, 28 Feb 2005 00:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8k1v4004414; Mon, 28 Feb 2005 00:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8j0v4004388 for ; Mon, 28 Feb 2005 00:45:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8j02Z003383 for ; Mon, 28 Feb 2005 00:45:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1S8j0qO093461 for ; Mon, 28 Feb 2005 00:45:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1S8j0dk093454 for xorp-cvs@icir.org; Mon, 28 Feb 2005 08:45:00 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 08:45:00 GMT From: Pavlin Radoslavov Message-Id: <200502280845.j1S8j0dk093454@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 08:45:00 UTC XORP CVS repository Modified files: fea ifconfig_set.cc Log message: Skip the ifindex check inside IfConfigSet::push_config() if the interface has no mapping to an existing interface in the system. Obtained from: Bruce Simpson Revision Changes Path 1.24 +15 -1 xorp/fea/ifconfig_set.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 08:54:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 00:55:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1S8t29E027528 for ; Mon, 28 Feb 2005 00:55:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8t12Z003494 for ; Mon, 28 Feb 2005 00:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8t1v4004631; Mon, 28 Feb 2005 00:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1S8s0v4004606 for ; Mon, 28 Feb 2005 00:54:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1S8s02Z003486 for ; Mon, 28 Feb 2005 00:54:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1S8s0BO093576 for ; Mon, 28 Feb 2005 00:54:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1S8s0Tw093575 for xorp-cvs@icir.org; Mon, 28 Feb 2005 08:54:00 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 08:54:00 GMT From: Pavlin Radoslavov Message-Id: <200502280854.j1S8s0Tw093575@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 08:54:00 UTC XORP CVS repository Modified files: rtrmgr master_conf_tree.cc Log message: Add a comment why during the MasterConfigTree::commit_changes_pass1() stage we don't shutdown any modules. Revision Changes Path 1.46 +7 -3 xorp/rtrmgr/master_conf_tree.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 19:53:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 11:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1SJs1xS062536 for ; Mon, 28 Feb 2005 11:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SJs12Z012539 for ; Mon, 28 Feb 2005 11:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SJs1v4023665; Mon, 28 Feb 2005 11:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SJrAv4023640 for ; Mon, 28 Feb 2005 11:53:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SJrA2Z012533 for ; Mon, 28 Feb 2005 11:53:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1SJrA7Z001521 for ; Mon, 28 Feb 2005 11:53:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1SJrA9e001520 for xorp-cvs@icir.org; Mon, 28 Feb 2005 19:53:10 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 19:53:10 GMT From: Pavlin Radoslavov Message-Id: <200502281953.j1SJrA9e001520@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib xorp/pim xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 19:53:09 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc pim xrl_pim_node.cc static_routes xrl_static_routes_node.cc Log message: Fix XLOG_ERROR messages. Revision Changes Path 1.27 +5 -5 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.66 +2 -2 xorp/pim/xrl_pim_node.cc 1.28 +3 -3 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 19:55:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 11:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1SJu1Z5062958 for ; Mon, 28 Feb 2005 11:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SJu12Z012574 for ; Mon, 28 Feb 2005 11:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SJu1v4023746; Mon, 28 Feb 2005 11:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SJtLv4023715 for ; Mon, 28 Feb 2005 11:55:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SJtL2Z012568 for ; Mon, 28 Feb 2005 11:55:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1SJtL4D001607 for ; Mon, 28 Feb 2005 11:55:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1SJtL1q001606 for xorp-cvs@icir.org; Mon, 28 Feb 2005 19:55:21 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 19:55:21 GMT From: Pavlin Radoslavov Message-Id: <200502281955.j1SJtL1q001606@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 19:55:21 UTC XORP CVS repository Modified files: rib rib_manager.cc rib_manager.hh Log message: If a "target_death" event is received, then deregister interest in the dead target. Revision Changes Path 1.47 +27 -1 xorp/rib/rib_manager.cc 1.31 +17 -1 xorp/rib/rib_manager.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 20:02:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 12:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1SK31w6064362 for ; Mon, 28 Feb 2005 12:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SK302Z012683 for ; Mon, 28 Feb 2005 12:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SK30v4023947; Mon, 28 Feb 2005 12:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SK2cv4023935 for ; Mon, 28 Feb 2005 12:02:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SK2c2Z012672 for ; Mon, 28 Feb 2005 12:02:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1SK2cxW001722 for ; Mon, 28 Feb 2005 12:02:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1SK2crZ001721 for xorp-cvs@icir.org; Mon, 28 Feb 2005 20:02:38 GMT (envelope-from pavlin) Date: Mon, 28 Feb 2005 20:02:38 GMT From: Pavlin Radoslavov Message-Id: <200502282002.j1SK2crZ001721@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-02-28 20:02:38 UTC XORP CVS repository Modified files: rib rib.cc Log message: If an OriginTable is re-added, then re-register interest in the new target instance, and store the entry in the _routing_protocol_instances map. This fixes the bug of re-adding/re-deleting an OriginTable in RIB. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=115 Revision Changes Path 1.50 +18 -3 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 20:31:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 12:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1SKV2sG091149 for ; Mon, 28 Feb 2005 12:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SKV12Z012985 for ; Mon, 28 Feb 2005 12:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SKV1v4024894; Mon, 28 Feb 2005 12:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SKUTv4024876 for ; Mon, 28 Feb 2005 12:30:29 -0800 (PST) Received: from arginine.spc.org ([83.167.185.2]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SKUT2Z012979; Mon, 28 Feb 2005 12:30:29 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 349556541D; Mon, 28 Feb 2005 20:28:11 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 11680-03; Mon, 28 Feb 2005 20:28:10 +0000 (GMT) Received: from empiric.dek.spc.org (unknown [213.210.24.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 0B11965419; Mon, 28 Feb 2005 20:28:10 +0000 (GMT) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id A635767AB; Mon, 28 Feb 2005 20:31:35 +0000 (GMT) Date: Mon, 28 Feb 2005 20:31:35 +0000 From: Bruce M Simpson To: Pavlin Radoslavov Cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/rib Message-ID: <20050228203135.GD41817@empiric.icir.org> References: <200502282002.j1SK2crZ001721@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200502282002.j1SK2crZ001721@xorpc.icir.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , On Mon, Feb 28, 2005 at 08:02:38PM +0000, Pavlin Radoslavov wrote: > Log message: > If an OriginTable is re-added, then re-register interest in the > new target instance, and store the entry in the > _routing_protocol_instances map. > > This fixes the bug of re-adding/re-deleting an OriginTable in RIB. > > Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=115 And there was much rejoicing... :-) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Mon Feb 28 23:12:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 15:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j1SND1Xa065624 for ; Mon, 28 Feb 2005 15:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SND12Z014636 for ; Mon, 28 Feb 2005 15:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SND1v4000161; Mon, 28 Feb 2005 15:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j1SNC4v4000131 for ; Mon, 28 Feb 2005 15:12:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j1SNC42Z014624 for ; Mon, 28 Feb 2005 15:12:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j1SNC4SO003370 for ; Mon, 28 Feb 2005 15:12:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j1SNC4QK003369 for xorp-cvs@icir.org; Mon, 28 Feb 2005 23:12:04 GMT (envelope-from atanu) Date: Mon, 28 Feb 2005 23:12:04 GMT From: Atanu Ghosh Message-Id: <200502282312.j1SNC4QK003369@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-02-28 23:12:03 UTC XORP CVS repository Modified files: bgp/harness test_routing2.sh Log message: Now that it is possible to add and remove tables from the RIB, test6 now succeeds. The test has therefore been moved to the set that succeed. Revision Changes Path 1.13 +3 -3 xorp/bgp/harness/test_routing2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Tue Mar 1 02:43:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 18:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j212i1OE029385 for ; Mon, 28 Feb 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j212i1la016762 for ; Mon, 28 Feb 2005 18:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j212i1v4006345; Mon, 28 Feb 2005 18:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j212hkv4006332 for ; Mon, 28 Feb 2005 18:43:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j212hkla016758 for ; Mon, 28 Feb 2005 18:43:46 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j212hkNa005005 for ; Mon, 28 Feb 2005 18:43:46 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j212hkA2005004 for xorp-cvs@icir.org; Tue, 1 Mar 2005 02:43:46 GMT (envelope-from atanu) Date: Tue, 1 Mar 2005 02:43:46 GMT From: Atanu Ghosh Message-Id: <200503010243.j212hkA2005004@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-01 02:43:45 UTC XORP CVS repository Modified files: bgp route_table_decision.cc route_table_decision.hh Log message: Delete dead code. Revision Changes Path 1.31 +1 -292 xorp/bgp/route_table_decision.cc 1.17 +1 -4 xorp/bgp/route_table_decision.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Tue Mar 1 02:49:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Feb 2005 18:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j212o1c4032750 for ; Mon, 28 Feb 2005 18:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j212o1la016801 for ; Mon, 28 Feb 2005 18:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j212o1v4006501; Mon, 28 Feb 2005 18:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j212nqv4006495 for ; Mon, 28 Feb 2005 18:49:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j212npla016796 for ; Mon, 28 Feb 2005 18:49:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j212nppu005099 for ; Mon, 28 Feb 2005 18:49:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j212nplQ005098 for xorp-cvs@icir.org; Tue, 1 Mar 2005 02:49:51 GMT (envelope-from pavlin) Date: Tue, 1 Mar 2005 02:49:51 GMT From: Pavlin Radoslavov Message-Id: <200503010249.j212nplQ005098@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-01 02:49:51 UTC XORP CVS repository Modified files: fea ifconfig_set_ioctl.cc Log message: Bug fix: if the underlying system supports ioctl(SIOCAIFADDR), then use that ioctl() only to set the address, netmask, etc and return before calling any other ioctls. Revision Changes Path 1.34 +6 -4 xorp/fea/ifconfig_set_ioctl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Tue Mar 1 22:47:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Mar 2005 14:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j21Mm1DA010482 for ; Tue, 1 Mar 2005 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j21Mm1la030719 for ; Tue, 1 Mar 2005 14:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j21Mm0v4013957; Tue, 1 Mar 2005 14:48:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j21MlPv4013942 for ; Tue, 1 Mar 2005 14:47:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j21MlPla030717 for ; Tue, 1 Mar 2005 14:47:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j21MlP4h063474 for ; Tue, 1 Mar 2005 14:47:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j21MlPae063473 for xorp-cvs@icir.org; Tue, 1 Mar 2005 22:47:25 GMT (envelope-from atanu) Date: Tue, 1 Mar 2005 22:47:25 GMT From: Atanu Ghosh Message-Id: <200503012247.j21MlPae063473@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-01 22:47:25 UTC XORP CVS repository Modified files: bgp route_table_decision.cc route_table_ribout.cc bgp/harness test_routing2.sh Log message: Fix two problems related to next hop resolutions changing and add a regression test that used to trigger the problem. When the decision process finds possible routes it checks the resolvability of the route by querying the next hop resolver. Routes themselves carry resolvability information. It is possible that a route may become resolvable but is still marked as unresolved. In the decision process update the resolvability state of all candidate routes. In the RIB-OUT it is now legal to get an add followed by a delete. The happens when a route with the same nexthop has been introduced on two peers. The RIB-IN sends a delete followed by an add. If this is the better route then the other peer will send an add then a delete. RIB-IN RIB-OUT Peer A -> delete add Peer A -> add delete Revision Changes Path 1.14 +88 -2 xorp/bgp/harness/test_routing2.sh 1.32 +3 -1 xorp/bgp/route_table_decision.cc 1.21 +12 -5 xorp/bgp/route_table_ribout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:58 2005 Subject: No subject Wed Mar 2 01:29:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Mar 2005 17:30:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j221U2k9063904 for ; Tue, 1 Mar 2005 17:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j221U2la033168 for ; Tue, 1 Mar 2005 17:30:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j221U1v4019196; Tue, 1 Mar 2005 17:30:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j221Tqv4019187 for ; Tue, 1 Mar 2005 17:29:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j221Tqla033152 for ; Tue, 1 Mar 2005 17:29:52 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j221TpNU065180 for ; Tue, 1 Mar 2005 17:29:51 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j221TpUb065179 for xorp-cvs@icir.org; Wed, 2 Mar 2005 01:29:51 GMT (envelope-from atanu) Date: Wed, 2 Mar 2005 01:29:51 GMT From: Atanu Ghosh Message-Id: <200503020129.j221TpUb065179@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-02 01:29:51 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: If a route is being delete then the route no longer has to be resolvable. Revision Changes Path 1.43 +3 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Wed Mar 2 01:31:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 01 Mar 2005 17:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j221W1mf066335 for ; Tue, 1 Mar 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j221W1la033304 for ; Tue, 1 Mar 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j221W0v4019274; Tue, 1 Mar 2005 17:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j221Viv4019265 for ; Tue, 1 Mar 2005 17:31:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j221Vhla033288 for ; Tue, 1 Mar 2005 17:31:43 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j221Vhue065284 for ; Tue, 1 Mar 2005 17:31:43 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j221Vh5M065283 for xorp-cvs@icir.org; Wed, 2 Mar 2005 01:31:43 GMT (envelope-from atanu) Date: Wed, 2 Mar 2005 01:31:43 GMT From: Atanu Ghosh Message-Id: <200503020131.j221Vh5M065283@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-02 01:31:43 UTC XORP CVS repository Modified files: bgp route_table_ribout.cc Log message: Another case that is possible when two peers offer a route with the same nexthop. Revision Changes Path 1.22 +4 -5 xorp/bgp/route_table_ribout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Wed Mar 2 22:39:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 14:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j22Me27I055884 for ; Wed, 2 Mar 2005 14:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j22Me2la051797 for ; Wed, 2 Mar 2005 14:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j22Me2v4026561; Wed, 2 Mar 2005 14:40:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j22MdTv4026532 for ; Wed, 2 Mar 2005 14:39:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j22MdTla051790 for ; Wed, 2 Mar 2005 14:39:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j22MdT4h079039 for ; Wed, 2 Mar 2005 14:39:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j22MdTMa079038 for xorp-cvs@icir.org; Wed, 2 Mar 2005 22:39:29 GMT (envelope-from pavlin) Date: Wed, 2 Mar 2005 22:39:29 GMT From: Pavlin Radoslavov Message-Id: <200503022239.j22MdTMa079038@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli/libtecla Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-02 22:39:28 UTC XORP CVS repository Modified files: cli/libtecla config.guess config.sub Log message: Update the files with the version from xorp/config/config.guess and xorp/config/config.sub respectively. This fixes a ./configure problem on amd64-unknown-openbsd3.6 platform. Revision Changes Path 1.2 +625 -420 xorp/cli/libtecla/config.guess 1.2 +365 -144 xorp/cli/libtecla/config.sub _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:29:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237U1aJ069827 for ; Wed, 2 Mar 2005 23:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237U1la056724 for ; Wed, 2 Mar 2005 23:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237U0v4009639; Wed, 2 Mar 2005 23:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237TPv4009606 for ; Wed, 2 Mar 2005 23:29:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237TPla056717 for ; Wed, 2 Mar 2005 23:29:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237TPtu082870 for ; Wed, 2 Mar 2005 23:29:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237TPkt082869 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:29:25 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:29:25 GMT From: Pavlin Radoslavov Message-Id: <200503030729.j237TPkt082869@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:29:25 UTC XORP CVS repository Modified files: bgp attribute_manager.cc notification_packet.cc peer.cc peer_handler.cc peer_handler_debug.cc plumbing.cc rib_ipc_handler.cc route_table_decision.cc route_table_deletion.cc route_table_dump.cc route_table_fanout.cc route_table_filter.cc route_table_ribout.cc subnet_route.cc test_plumbing.cc bgp/harness test_peer.cc Log message: Compilation fixes for OpenBSD-current on amd64: replace %x with %p when printing a pointer value. Revision Changes Path 1.8 +7 -7 xorp/bgp/attribute_manager.cc 1.30 +2 -2 xorp/bgp/harness/test_peer.cc 1.19 +4 -4 xorp/bgp/notification_packet.cc 1.87 +4 -4 xorp/bgp/peer.cc 1.37 +3 -3 xorp/bgp/peer_handler.cc 1.8 +3 -3 xorp/bgp/peer_handler_debug.cc 1.61 +11 -11 xorp/bgp/plumbing.cc 1.62 +3 -3 xorp/bgp/rib_ipc_handler.cc 1.33 +3 -3 xorp/bgp/route_table_decision.cc 1.19 +7 -7 xorp/bgp/route_table_deletion.cc 1.32 +5 -5 xorp/bgp/route_table_dump.cc 1.44 +13 -13 xorp/bgp/route_table_fanout.cc 1.24 +3 -3 xorp/bgp/route_table_filter.cc 1.23 +5 -5 xorp/bgp/route_table_ribout.cc 1.15 +5 -5 xorp/bgp/subnet_route.cc 1.12 +3 -5 xorp/bgp/test_plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:31:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237W1T5070251 for ; Wed, 2 Mar 2005 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237W1la056755 for ; Wed, 2 Mar 2005 23:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237W1v4009704; Wed, 2 Mar 2005 23:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237Vbv4009689 for ; Wed, 2 Mar 2005 23:31:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237Vbla056751 for ; Wed, 2 Mar 2005 23:31:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237VbN3082997 for ; Wed, 2 Mar 2005 23:31:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237VbZ9082996 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:31:37 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:31:37 GMT From: Pavlin Radoslavov Message-Id: <200503030731.j237VbZ9082996@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:31:37 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc mfea_proto_comm.cc rawsock4.cc rawsock6.cc routing_socket.cc Log message: Use XORP_INT_CAST() as appropriate to fix compilation problems on OpenBSD-current + amd64. Revision Changes Path 1.24 +4 -3 xorp/fea/mfea_mrouter.cc 1.22 +10 -6 xorp/fea/mfea_proto_comm.cc 1.10 +3 -2 xorp/fea/rawsock4.cc 1.9 +2 -2 xorp/fea/rawsock6.cc 1.21 +2 -2 xorp/fea/routing_socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:32:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237X1Ib070454 for ; Wed, 2 Mar 2005 23:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237X1la056763 for ; Wed, 2 Mar 2005 23:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237X1v4009727; Wed, 2 Mar 2005 23:33:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237Wvv4009721 for ; Wed, 2 Mar 2005 23:32:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237Wvla056760 for ; Wed, 2 Mar 2005 23:32:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237Wv6I083059 for ; Wed, 2 Mar 2005 23:32:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237Wv6W083058 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:32:57 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:32:57 GMT From: Pavlin Radoslavov Message-Id: <200503030732.j237Wv6W083058@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:32:57 UTC XORP CVS repository Modified files: libxipc xrl_pf_sudp.cc Log message: Use XORP_INT_CAST() as appropriate to fix compilation problems on OpenBSD-current + amd64. Revision Changes Path 1.36 +6 -4 xorp/libxipc/xrl_pf_sudp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:34:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:35:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237Z0uH070866 for ; Wed, 2 Mar 2005 23:35:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237Z0la056778 for ; Wed, 2 Mar 2005 23:35:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237Z0v4009922; Wed, 2 Mar 2005 23:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237Y8v4009903 for ; Wed, 2 Mar 2005 23:34:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237Y7la056769 for ; Wed, 2 Mar 2005 23:34:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237Y78F083115 for ; Wed, 2 Mar 2005 23:34:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237Y7GS083114 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:34:07 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:34:07 GMT From: Pavlin Radoslavov Message-Id: <200503030734.j237Y7GS083114@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:34:07 UTC XORP CVS repository Modified files: libxipc finder_xrl_target.cc Log message: Use (unsigned long) casting instead of uint32_t casting of the arguments inside srandom(). This replacement is needed to fix a compilation problem on OpenBSD-current + amd64. Revision Changes Path 1.21 +2 -2 xorp/libxipc/finder_xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:36:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237b1OF071258 for ; Wed, 2 Mar 2005 23:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237b1la056808 for ; Wed, 2 Mar 2005 23:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237b1v4009989; Wed, 2 Mar 2005 23:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237aDv4009964 for ; Wed, 2 Mar 2005 23:36:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237aDla056806 for ; Wed, 2 Mar 2005 23:36:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237aDHJ083191 for ; Wed, 2 Mar 2005 23:36:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237aCZF083190 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:36:12 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:36:12 GMT From: Pavlin Radoslavov Message-Id: <200503030736.j237aCZF083190@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:36:12 UTC XORP CVS repository Modified files: libxipc xrl_atom.cc Log message: Declare a variable of type uint32_t instead of size_t, because there is static_assert() that the size of the variable is 4 bytes. This fixes a compilation problem on OpenBSD-current + amd64. Revision Changes Path 1.17 +2 -2 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:37:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237c1FL071469 for ; Wed, 2 Mar 2005 23:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237c0la056820 for ; Wed, 2 Mar 2005 23:38:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237c0v4010024; Wed, 2 Mar 2005 23:38:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237bjv4010012 for ; Wed, 2 Mar 2005 23:37:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237bjla056818 for ; Wed, 2 Mar 2005 23:37:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237bjME083254 for ; Wed, 2 Mar 2005 23:37:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237bjw6083253 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:37:45 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:37:45 GMT From: Pavlin Radoslavov Message-Id: <200503030737.j237bjw6083253@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/common Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:37:45 UTC XORP CVS repository Modified files: policy/common policy_utils.cc Log message: Change the type of variables used as indexes into a string from "unsigned" to "string::size_type". This fixes a compilation problem on OpenBSD-current + amd64. Revision Changes Path 1.2 +4 -4 xorp/policy/common/policy_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:42:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:43:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237h1Ua072474 for ; Wed, 2 Mar 2005 23:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237h1la056883 for ; Wed, 2 Mar 2005 23:43:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237h1v4010235; Wed, 2 Mar 2005 23:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237giv4010198 for ; Wed, 2 Mar 2005 23:42:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237ghla056878 for ; Wed, 2 Mar 2005 23:42:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237ghEv083377 for ; Wed, 2 Mar 2005 23:42:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237gh3V083376 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:42:43 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:42:43 GMT From: Pavlin Radoslavov Message-Id: <200503030742.j237gh3V083376@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:42:43 UTC XORP CVS repository Modified files: rib rt_tab_extint.cc Log message: Compilation fixes for OpenBSD-current on amd64: replace %x with %p when printing a pointer value. Revision Changes Path 1.22 +9 -9 xorp/rib/rt_tab_extint.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:43:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237i1fC072700 for ; Wed, 2 Mar 2005 23:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237i1la056900 for ; Wed, 2 Mar 2005 23:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237i0v4010274; Wed, 2 Mar 2005 23:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237hSv4010264 for ; Wed, 2 Mar 2005 23:43:28 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237hRla056894 for ; Wed, 2 Mar 2005 23:43:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237hRO5083457 for ; Wed, 2 Mar 2005 23:43:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237hRKr083456 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:43:27 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:43:27 GMT From: Pavlin Radoslavov Message-Id: <200503030743.j237hRKr083456@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:43:27 UTC XORP CVS repository Modified files: xrl/targets Makefile.am Makefile.in Log message: Reorder few items in alphabetical order. Revision Changes Path 1.56 +12 -12 xorp/xrl/targets/Makefile.am 1.70 +8 -8 xorp/xrl/targets/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:44:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237j1k5072909 for ; Wed, 2 Mar 2005 23:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237j1la056911 for ; Wed, 2 Mar 2005 23:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237j1v4010311; Wed, 2 Mar 2005 23:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237iIv4010287 for ; Wed, 2 Mar 2005 23:44:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237iIla056904 for ; Wed, 2 Mar 2005 23:44:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237iIL0083516 for ; Wed, 2 Mar 2005 23:44:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237iI3S083515 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:44:18 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:44:18 GMT From: Pavlin Radoslavov Message-Id: <200503030744.j237iI3S083515@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:44:18 UTC XORP CVS repository Modified files: libxorp asyncio.cc Log message: Use XORP_INT_CAST() as appropriate to fix compilation problems on OpenBSD-current + amd64. Revision Changes Path 1.14 +3 -2 xorp/libxorp/asyncio.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:45:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:46:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237k0hK073151 for ; Wed, 2 Mar 2005 23:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237k0la056939 for ; Wed, 2 Mar 2005 23:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237k0v4010349; Wed, 2 Mar 2005 23:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237j5v4010325 for ; Wed, 2 Mar 2005 23:45:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237j5la056913 for ; Wed, 2 Mar 2005 23:45:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237j5w6083607 for ; Wed, 2 Mar 2005 23:45:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237j5fl083606 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:45:05 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:45:05 GMT From: Pavlin Radoslavov Message-Id: <200503030745.j237j5fl083606@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:45:04 UTC XORP CVS repository Modified files: libxorp buffered_asyncio.cc Log message: Use XORP_INT_CAST() as appropriate to fix compilation problems on OpenBSD-current + amd64. Revision Changes Path 1.3 +2 -2 xorp/libxorp/buffered_asyncio.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:46:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237l1Pe073346 for ; Wed, 2 Mar 2005 23:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237l0la056950 for ; Wed, 2 Mar 2005 23:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237l0v4010379; Wed, 2 Mar 2005 23:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237kwv4010373 for ; Wed, 2 Mar 2005 23:46:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237kwla056948 for ; Wed, 2 Mar 2005 23:46:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237kwCJ083675 for ; Wed, 2 Mar 2005 23:46:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237kw4R083674 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:46:58 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:46:58 GMT From: Pavlin Radoslavov Message-Id: <200503030746.j237kw4R083674@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:46:58 UTC XORP CVS repository Modified files: libxorp test_ipvx.cc Log message: Bug fix: remove bogus "*" in front of a C-string argument to IPvX constructor. Revision Changes Path 1.14 +3 -3 xorp/libxorp/test_ipvx.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:48:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:49:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237n0iQ073738 for ; Wed, 2 Mar 2005 23:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237n0la056960 for ; Wed, 2 Mar 2005 23:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237n0v4010452; Wed, 2 Mar 2005 23:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237m1v4010418 for ; Wed, 2 Mar 2005 23:48:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237m1la056956 for ; Wed, 2 Mar 2005 23:48:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237m0if083736 for ; Wed, 2 Mar 2005 23:48:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237m0RC083735 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:48:00 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:48:00 GMT From: Pavlin Radoslavov Message-Id: <200503030748.j237m0RC083735@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:48:00 UTC XORP CVS repository Modified files: libxorp test_ref_trie.cc test_trie.cc Log message: Compilation fixes for OpenBSD-current on amd64: replace %x with %p when printing a pointer value. Revision Changes Path 1.9 +18 -19 xorp/libxorp/test_ref_trie.cc 1.7 +17 -17 xorp/libxorp/test_trie.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 07:49:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 02 Mar 2005 23:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j237o10h073952 for ; Wed, 2 Mar 2005 23:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237o1la056971 for ; Wed, 2 Mar 2005 23:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237o0v4010501; Wed, 2 Mar 2005 23:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j237ndv4010492 for ; Wed, 2 Mar 2005 23:49:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j237ndla056966 for ; Wed, 2 Mar 2005 23:49:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j237ncpP083800 for ; Wed, 2 Mar 2005 23:49:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j237nc1c083799 for xorp-cvs@icir.org; Thu, 3 Mar 2005 07:49:38 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 07:49:38 GMT From: Pavlin Radoslavov Message-Id: <200503030749.j237nc1c083799@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 07:49:38 UTC XORP CVS repository Modified files: libxorp heap.hh Log message: Use intermediate "ssize_t" casting instead of "int" casting inside the OFFSET_OF() macro. This fixes a compilation error on OpenBSD-current + amd64. Revision Changes Path 1.6 +2 -2 xorp/libxorp/heap.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Thu Mar 3 18:50:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 10:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j23Ip1gM011711 for ; Thu, 3 Mar 2005 10:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j23Ip0la066434 for ; Thu, 3 Mar 2005 10:51:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j23Ip0v4029809; Thu, 3 Mar 2005 10:51:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j23IoWv4029787 for ; Thu, 3 Mar 2005 10:50:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j23IoWla066432 for ; Thu, 3 Mar 2005 10:50:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j23IoWn3091506 for ; Thu, 3 Mar 2005 10:50:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j23IoWBM091505 for xorp-cvs@icir.org; Thu, 3 Mar 2005 18:50:32 GMT (envelope-from pavlin) Date: Thu, 3 Mar 2005 18:50:32 GMT From: Pavlin Radoslavov Message-Id: <200503031850.j23IoWBM091505@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-03 18:50:31 UTC XORP CVS repository Modified files: rib rib.cc Log message: Refactor the mechanism for checking whether the nexthop is directly connected. The refactoring fixes a bug when we are adding a "connected" route and there are already routing entries in the RIB (e.g., if a new IP address is added to a network interface). Previously, we would lookup the nexthop address in the final table, and then we would use the corresponding vif to check whether the nexthop address is directly connected to that vif. However, this doesn't work if we are adding a "connected" route (which may use the local IP address as the next-hop router), and there is already, say, 0/0 routing entry. The lookup will return the vif toward the default router, but then the next-hop address of the "connected" route won't match as being directly-connected to that vif. Revision Changes Path 1.51 +49 -55 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Fri Mar 4 00:48:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 16:49:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j240n2j7055660 for ; Thu, 3 Mar 2005 16:49:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240n1la070128 for ; Thu, 3 Mar 2005 16:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240n1v4010701; Thu, 3 Mar 2005 16:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240mDv4010677 for ; Thu, 3 Mar 2005 16:48:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240mCla070126 for ; Thu, 3 Mar 2005 16:48:12 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j240mC0C094665 for ; Thu, 3 Mar 2005 16:48:12 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j240mCu1094664 for xorp-cvs@icir.org; Fri, 4 Mar 2005 00:48:12 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 00:48:12 GMT From: Atanu Ghosh Message-Id: <200503040048.j240mCu1094664@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-03-04 00:48:12 UTC XORP CVS repository Modified files: html_src faq.html Log message: How does XORP compare with Zebra/Quagga? Revision Changes Path 1.5 +42 -0 www/html_src/faq.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Fri Mar 4 00:49:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 16:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j240o1Z5057045 for ; Thu, 3 Mar 2005 16:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240o1la070139 for ; Thu, 3 Mar 2005 16:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240o0v4010735; Thu, 3 Mar 2005 16:50:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240nxv4010729 for ; Thu, 3 Mar 2005 16:49:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240nxla070134 for ; Thu, 3 Mar 2005 16:49:59 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j240nwOB094727 for ; Thu, 3 Mar 2005 16:49:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j240nwgD094726 for xorp-cvs@icir.org; Fri, 4 Mar 2005 00:49:58 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 00:49:58 GMT From: Atanu Ghosh Message-Id: <200503040049.j240nwgD094726@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-03-04 00:49:58 UTC XORP CVS repository Modified files: . faq.html Log message: How does XORP compare with Zebra/Quagga? Revision Changes Path 1.19 +45 -3 www/faq.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:15:59 2005 Subject: No subject Fri Mar 4 00:56:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 16:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j240v19f070246 for ; Thu, 3 Mar 2005 16:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240v1la070217 for ; Thu, 3 Mar 2005 16:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240v1v4010989; Thu, 3 Mar 2005 16:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240uRv4010952 for ; Thu, 3 Mar 2005 16:56:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240uRla070213 for ; Thu, 3 Mar 2005 16:56:27 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j240uRuP094856 for ; Thu, 3 Mar 2005 16:56:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j240uRW0094855 for xorp-cvs@icir.org; Fri, 4 Mar 2005 00:56:27 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 00:56:27 GMT From: Atanu Ghosh Message-Id: <200503040056.j240uRW0094855@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-03-04 00:56:27 UTC XORP CVS repository Modified files: html_src index.html Log message: A 1.1 release this month. Revision Changes Path 1.14 +2 -1 www/html_src/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 00:56:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 16:57:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j240v2xZ070361 for ; Thu, 3 Mar 2005 16:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240v2la070219 for ; Thu, 3 Mar 2005 16:57:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240v2v4011000; Thu, 3 Mar 2005 16:57:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j240uov4010976 for ; Thu, 3 Mar 2005 16:56:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j240unla070215 for ; Thu, 3 Mar 2005 16:56:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j240unEV094904 for ; Thu, 3 Mar 2005 16:56:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j240unGa094903 for xorp-cvs@icir.org; Fri, 4 Mar 2005 00:56:49 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 00:56:49 GMT From: Atanu Ghosh Message-Id: <200503040056.j240unGa094903@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-03-04 00:56:49 UTC XORP CVS repository Modified files: . index.html Log message: A 1.1 release this month. Revision Changes Path 1.64 +5 -4 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 03:18:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 19:19:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j243J0eN051711 for ; Thu, 3 Mar 2005 19:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243J0la071681 for ; Thu, 3 Mar 2005 19:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243J0v4015215; Thu, 3 Mar 2005 19:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243IRv4015199 for ; Thu, 3 Mar 2005 19:18:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243IRla071677 for ; Thu, 3 Mar 2005 19:18:27 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j243IRA0096260 for ; Thu, 3 Mar 2005 19:18:27 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j243IRj3096259 for xorp-cvs@icir.org; Fri, 4 Mar 2005 03:18:27 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 03:18:27 GMT From: Atanu Ghosh Message-Id: <200503040318.j243IRj3096259@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-04 03:18:26 UTC XORP CVS repository Modified files: rib rib.cc Log message: If a protocol does introduce a metric larger than 0xffff lets get its name. Revision Changes Path 1.52 +4 -3 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 03:51:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 19:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j243q1ud059011 for ; Thu, 3 Mar 2005 19:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243q1la072000 for ; Thu, 3 Mar 2005 19:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243q1v4016056; Thu, 3 Mar 2005 19:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243pKv4016042 for ; Thu, 3 Mar 2005 19:51:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243pKla071998 for ; Thu, 3 Mar 2005 19:51:20 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j243pKU1096562 for ; Thu, 3 Mar 2005 19:51:20 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j243pK2O096561 for xorp-cvs@icir.org; Fri, 4 Mar 2005 03:51:20 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 03:51:20 GMT From: Atanu Ghosh Message-Id: <200503040351.j243pK2O096561@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-04 03:51:20 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: Put back the assert that checks that a route was resolvable. Revision Changes Path 1.45 +2 -3 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 03:55:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 19:56:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j243u0Mu059832 for ; Thu, 3 Mar 2005 19:56:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243u0la072040 for ; Thu, 3 Mar 2005 19:56:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243u0v4016160; Thu, 3 Mar 2005 19:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243tGv4016139 for ; Thu, 3 Mar 2005 19:55:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243tGla072032 for ; Thu, 3 Mar 2005 19:55:16 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j243tGe1096654 for ; Thu, 3 Mar 2005 19:55:16 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j243tG07096653 for xorp-cvs@icir.org; Fri, 4 Mar 2005 03:55:16 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 03:55:16 GMT From: Atanu Ghosh Message-Id: <200503040355.j243tG07096653@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-04 03:55:16 UTC XORP CVS repository Modified files: bgp route_table_decision.cc Log message: 1) A comment trying to explain how to make changes in decision. 2) Use the stored state in a route to decide if it is resolvable or not. No longer change the state of routes not on this peering. In fact don't change the resolvable state of any routes rely on the next hop table to make changes. 2) assert -> XLOG_ASSERT Revision Changes Path 1.34 +20 -11 xorp/bgp/route_table_decision.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 03:57:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 19:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j243w1ao060265 for ; Thu, 3 Mar 2005 19:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243w1la072052 for ; Thu, 3 Mar 2005 19:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243w0v4016241; Thu, 3 Mar 2005 19:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243v4v4016213 for ; Thu, 3 Mar 2005 19:57:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243v4la072050 for ; Thu, 3 Mar 2005 19:57:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j243v4DA096726 for ; Thu, 3 Mar 2005 19:57:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j243v4TO096725 for xorp-cvs@icir.org; Fri, 4 Mar 2005 03:57:04 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 03:57:04 GMT From: Atanu Ghosh Message-Id: <200503040357.j243v4TO096725@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-04 03:57:04 UTC XORP CVS repository Modified files: bgp test_decision.cc test_decision.reference Log message: Now that decision is relying on the next hop table to change the resolvable state of a route, we need to include it in the regression test. This change has slightly changes the reference output, the result is obviously still the same. Revision Changes Path 1.29 +25 -7 xorp/bgp/test_decision.cc 1.10 +2 -18 xorp/bgp/test_decision.reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 03:59:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 20:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j24401B6060686 for ; Thu, 3 Mar 2005 20:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j24401la072071 for ; Thu, 3 Mar 2005 20:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j24401v4016314; Thu, 3 Mar 2005 20:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j243x4v4016270 for ; Thu, 3 Mar 2005 19:59:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j243x4la072060 for ; Thu, 3 Mar 2005 19:59:04 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j243x4jg096781 for ; Thu, 3 Mar 2005 19:59:04 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j243x4tR096780 for xorp-cvs@icir.org; Fri, 4 Mar 2005 03:59:04 GMT (envelope-from atanu) Date: Fri, 4 Mar 2005 03:59:04 GMT From: Atanu Ghosh Message-Id: <200503040359.j243x4tR096780@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-04 03:59:04 UTC XORP CVS repository Modified files: bgp/harness test_routing2.sh Log message: Some more tests (test9 and test10) to test the next hop resolver. Revision Changes Path 1.15 +95 -2 xorp/bgp/harness/test_routing2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 04:13:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 20:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j244E12O063542 for ; Thu, 3 Mar 2005 20:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j244E1la072190 for ; Thu, 3 Mar 2005 20:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j244E1v4016675; Thu, 3 Mar 2005 20:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j244E0v4016669 for ; Thu, 3 Mar 2005 20:14:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j244Dxla072188 for ; Thu, 3 Mar 2005 20:13:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j244DxZF096972 for ; Thu, 3 Mar 2005 20:13:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j244DxZc096971 for xorp-cvs@icir.org; Fri, 4 Mar 2005 04:13:59 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 04:13:59 GMT From: Pavlin Radoslavov Message-Id: <200503040413.j244DxZc096971@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 04:13:59 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc routing_socket_utils.cc Log message: Change the default metric and admin distance of the routes read from the kernel to be 0xffff instead of (uint32_t)~0 Revision Changes Path 1.21 +4 -4 xorp/fea/netlink_socket_utils.cc 1.24 +3 -3 xorp/fea/routing_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 07:55:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 03 Mar 2005 23:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j247u1fj007228 for ; Thu, 3 Mar 2005 23:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j247u1la074201 for ; Thu, 3 Mar 2005 23:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j247u1v4021974; Thu, 3 Mar 2005 23:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j247trv4021966 for ; Thu, 3 Mar 2005 23:55:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j247trla074199 for ; Thu, 3 Mar 2005 23:55:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j247trgb098799 for ; Thu, 3 Mar 2005 23:55:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j247trwf098798 for xorp-cvs@icir.org; Fri, 4 Mar 2005 07:55:53 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 07:55:53 GMT From: Pavlin Radoslavov Message-Id: <200503040755.j247trwf098798@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 07:55:53 UTC XORP CVS repository Modified files: rip packets.hh Log message: Fix a typo. Revision Changes Path 1.17 +3 -3 xorp/rip/packets.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 08:36:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 00:37:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j248b0h1015298 for ; Fri, 4 Mar 2005 00:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248b0la074594 for ; Fri, 4 Mar 2005 00:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248b0v4022990; Fri, 4 Mar 2005 00:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248aav4022984 for ; Fri, 4 Mar 2005 00:36:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248aala074591 for ; Fri, 4 Mar 2005 00:36:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j248aZ3W099162 for ; Fri, 4 Mar 2005 00:36:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j248aZH9099161 for xorp-cvs@icir.org; Fri, 4 Mar 2005 08:36:35 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 08:36:35 GMT From: Pavlin Radoslavov Message-Id: <200503040836.j248aZH9099161@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 08:36:35 UTC XORP CVS repository Modified files: rib parser.cc parser.hh Log message: * Change the type of admin_distance, metric, and prefix_len from "int" to "uint32_t" * Rename "Int" token type to "Uint32" Revision Changes Path 1.13 +6 -6 xorp/rib/parser.cc 1.15 +33 -33 xorp/rib/parser.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 08:38:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 00:39:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j248d06k015697 for ; Fri, 4 Mar 2005 00:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248d0la074604 for ; Fri, 4 Mar 2005 00:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248d0v4023037; Fri, 4 Mar 2005 00:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248chv4023030 for ; Fri, 4 Mar 2005 00:38:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248chla074602 for ; Fri, 4 Mar 2005 00:38:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j248chKS099236 for ; Fri, 4 Mar 2005 00:38:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j248ch0m099235 for xorp-cvs@icir.org; Fri, 4 Mar 2005 08:38:43 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 08:38:43 GMT From: Pavlin Radoslavov Message-Id: <200503040838.j248ch0m099235@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 08:38:43 UTC XORP CVS repository Modified files: rib rib.cc Log message: * Change the admin_distance type from int to uint32_t * If the metric is > 0xffff, then print a warning for any type of protocol (previously it was only for IGP). Revision Changes Path 1.53 +9 -12 xorp/rib/rib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 08:40:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 00:41:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j248f05T016112 for ; Fri, 4 Mar 2005 00:41:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248f0la074636 for ; Fri, 4 Mar 2005 00:41:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248f0v4023101; Fri, 4 Mar 2005 00:41:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248eAv4023085 for ; Fri, 4 Mar 2005 00:40:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248eAla074634 for ; Fri, 4 Mar 2005 00:40:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j248eADZ099317 for ; Fri, 4 Mar 2005 00:40:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j248eAZX099316 for xorp-cvs@icir.org; Fri, 4 Mar 2005 08:40:10 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 08:40:10 GMT From: Pavlin Radoslavov Message-Id: <200503040840.j248eAZX099316@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 08:40:10 UTC XORP CVS repository Modified files: rib route.hh Log message: Change the return value type of metric() to be uint16_t (previously it was uint32_t) to match the _metric field type. Revision Changes Path 1.17 +2 -2 xorp/rib/route.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 08:43:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 00:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j248i1Pb016842 for ; Fri, 4 Mar 2005 00:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248i1la074651 for ; Fri, 4 Mar 2005 00:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248i1v4023156; Fri, 4 Mar 2005 00:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j248hdv4023148 for ; Fri, 4 Mar 2005 00:43:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j248hdla074649 for ; Fri, 4 Mar 2005 00:43:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j248hdaP099453 for ; Fri, 4 Mar 2005 00:43:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j248hdOB099452 for xorp-cvs@icir.org; Fri, 4 Mar 2005 08:43:39 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 08:43:39 GMT From: Pavlin Radoslavov Message-Id: <200503040843.j248hdOB099452@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 08:43:39 UTC XORP CVS repository Modified files: rib parser_direct_cmds.hh parser_xrl_cmds.hh rib.hh rt_tab_extint.cc rt_tab_origin.cc rt_tab_origin.hh test_register_xrls.cc Log message: Change the type of _admin_distance to be uint32_t (previously sometimes it was int). Approved by: Mark, Atanu Revision Changes Path 1.17 +7 -7 xorp/rib/parser_direct_cmds.hh 1.13 +2 -2 xorp/rib/parser_xrl_cmds.hh 1.31 +4 -4 xorp/rib/rib.hh 1.23 +5 -5 xorp/rib/rt_tab_extint.cc 1.19 +8 -8 xorp/rib/rt_tab_origin.cc 1.16 +4 -4 xorp/rib/rt_tab_origin.hh 1.34 +4 -3 xorp/rib/test_register_xrls.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Fri Mar 4 18:51:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 10:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j24Iq24c047211 for ; Fri, 4 Mar 2005 10:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j24Iq1la082725 for ; Fri, 4 Mar 2005 10:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j24Iq1Mp012135; Fri, 4 Mar 2005 10:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j24IpvMp012126 for ; Fri, 4 Mar 2005 10:51:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j24Ipvla082723 for ; Fri, 4 Mar 2005 10:51:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j24IpvFJ007597 for ; Fri, 4 Mar 2005 10:51:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j24Ipvr7007596 for xorp-cvs@icir.org; Fri, 4 Mar 2005 18:51:57 GMT (envelope-from pavlin) Date: Fri, 4 Mar 2005 18:51:57 GMT From: Pavlin Radoslavov Message-Id: <200503041851.j24Ipvr7007596@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/utils Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-04 18:51:56 UTC XORP CVS repository Modified files: utils runit.cc Log message: * Explicitly check the return value of sigfillset() and sigemptyset() to pacify the g++ 3.4.3 compiler on OpenBSD-current (as of Jan 19, 2005). Apparently, the C-macro based implementation of sigfillset() and sigemptyset() triggers a compiler warning if we try to ignore the return value. While there, check the return value of sigaddset() as well. * Few editorial nits according to the XORP C++ coding style: "if(" -> "if (", etc. Revision Changes Path 1.10 +45 -36 xorp/utils/runit.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Sat Mar 5 01:29:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251U1cq035245 for ; Fri, 4 Mar 2005 17:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251U0la088070 for ; Fri, 4 Mar 2005 17:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251U0Mp027891; Fri, 4 Mar 2005 17:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251TNMp027873 for ; Fri, 4 Mar 2005 17:29:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251TNla088065 for ; Fri, 4 Mar 2005 17:29:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251TNur012337 for ; Fri, 4 Mar 2005 17:29:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251TNqS012336 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:29:23 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:29:23 GMT From: Pavlin Radoslavov Message-Id: <200503050129.j251TNqS012336@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:29:23 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: * Refactor the list of the #include files * Cleanup the debug_msg() messages Revision Changes Path 1.49 +106 -21 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:00 2005 Subject: No subject Sat Mar 5 01:31:08 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251W13q035738 for ; Fri, 4 Mar 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251W1la088109 for ; Fri, 4 Mar 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251W0Mp027945; Fri, 4 Mar 2005 17:32:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251V8Mp027924 for ; Fri, 4 Mar 2005 17:31:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251V8la088101 for ; Fri, 4 Mar 2005 17:31:08 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251V8p1012416 for ; Fri, 4 Mar 2005 17:31:08 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251V8S7012415 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:31:08 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:31:08 GMT From: Pavlin Radoslavov Message-Id: <200503050131.j251V8S7012415@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:31:08 UTC XORP CVS repository Modified files: rib redist_xrl.cc Log message: * Refactor the list of #include files * If an XRL fails, then include the XRL error message in the printed error string. Revision Changes Path 1.19 +25 -18 xorp/rib/redist_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:31:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251W220035753 for ; Fri, 4 Mar 2005 17:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251W1la088111 for ; Fri, 4 Mar 2005 17:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251W1Mp027957; Fri, 4 Mar 2005 17:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251VmMp027935 for ; Fri, 4 Mar 2005 17:31:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251Vmla088107 for ; Fri, 4 Mar 2005 17:31:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251Vm3E012522 for ; Fri, 4 Mar 2005 17:31:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251Vm8A012521 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:31:48 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:31:48 GMT From: Pavlin Radoslavov Message-Id: <200503050131.j251Vm8A012521@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:31:48 UTC XORP CVS repository Modified files: rib add_route.cc dummy_register_server.cc main_routemap.cc parser.cc profile_vars.cc protocol.cc register_server.cc rib.cc rib_varrw.cc routemap.cc rt_tab_base.cc rt_tab_deletion.cc rt_tab_expect.cc rt_tab_extint.cc rt_tab_log.cc rt_tab_merged.cc rt_tab_origin.cc rt_tab_pol_conn.cc rt_tab_pol_redist.cc rt_tab_pol_redist.hh rt_tab_redist.cc rt_tab_register.cc test_deletion.cc test_redist.cc test_register.cc test_rib_direct.cc Log message: Refactor the list of #include files Revision Changes Path 1.4 +3 -2 xorp/rib/add_route.cc 1.11 +5 -1 xorp/rib/dummy_register_server.cc 1.6 +3 -1 xorp/rib/main_routemap.cc 1.14 +3 -2 xorp/rib/parser.cc 1.2 +4 -4 xorp/rib/profile_vars.cc 1.7 +6 -1 xorp/rib/protocol.cc 1.15 +2 -1 xorp/rib/register_server.cc 1.54 +2 -1 xorp/rib/rib.cc 1.5 +2 -1 xorp/rib/rib_varrw.cc 1.9 +5 -1 xorp/rib/routemap.cc 1.9 +5 -1 xorp/rib/rt_tab_base.cc 1.8 +3 -1 xorp/rib/rt_tab_deletion.cc 1.11 +3 -1 xorp/rib/rt_tab_expect.cc 1.24 +3 -1 xorp/rib/rt_tab_extint.cc 1.8 +3 -1 xorp/rib/rt_tab_log.cc 1.17 +4 -1 xorp/rib/rt_tab_merged.cc 1.20 +3 -1 xorp/rib/rt_tab_origin.cc 1.4 +6 -2 xorp/rib/rt_tab_pol_conn.cc 1.4 +6 -2 xorp/rib/rt_tab_pol_redist.cc 1.3 +1 -3 xorp/rib/rt_tab_pol_redist.hh 1.20 +3 -2 xorp/rib/rt_tab_redist.cc 1.25 +5 -1 xorp/rib/rt_tab_register.cc 1.8 +2 -2 xorp/rib/test_deletion.cc 1.7 +6 -2 xorp/rib/test_redist.cc 1.19 +2 -2 xorp/rib/test_register.cc 1.18 +3 -2 xorp/rib/test_rib_direct.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:39:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251e12Z037734 for ; Fri, 4 Mar 2005 17:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251e1la088202 for ; Fri, 4 Mar 2005 17:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251e1Mp028140; Fri, 4 Mar 2005 17:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251dJMp028117 for ; Fri, 4 Mar 2005 17:39:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251dJla088195 for ; Fri, 4 Mar 2005 17:39:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251dJkb012624 for ; Fri, 4 Mar 2005 17:39:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251dJx9012623 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:39:19 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:39:19 GMT From: Pavlin Radoslavov Message-Id: <200503050139.j251dJx9012623@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:39:19 UTC XORP CVS repository Modified files: fea xrl_target.cc Log message: * Refactor the list of #include files * Add few new debug_msg(), and cleanup some of the existing ones. Revision Changes Path 1.70 +49 -10 xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:41:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:42:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251g2kJ038246 for ; Fri, 4 Mar 2005 17:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251g2la088244 for ; Fri, 4 Mar 2005 17:42:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251g2Mp028223; Fri, 4 Mar 2005 17:42:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251fWMp028192 for ; Fri, 4 Mar 2005 17:41:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251fWla088234 for ; Fri, 4 Mar 2005 17:41:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251fWZ3012907 for ; Fri, 4 Mar 2005 17:41:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251fW9H012906 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:41:32 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:41:32 GMT From: Pavlin Radoslavov Message-Id: <200503050141.j251fW9H012906@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:41:32 UTC XORP CVS repository Modified files: fea addr_table.cc click_socket.cc demo_fea_ifmgr_client.cc fea.cc fti_transaction.cc fticonfig.cc fticonfig_entry_get.cc fticonfig_entry_get_click.cc fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.cc fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_parse_nlm.cc fticonfig_entry_parse_rtm.cc fticonfig_entry_set.cc fticonfig_entry_set_click.cc fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get_click.cc fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_parse_nlm.cc fticonfig_table_parse_rtm.cc fticonfig_table_set.cc fticonfig_table_set_click.cc fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig_addr_table.cc ifconfig_get.cc ifconfig_get_click.cc ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set.cc ifconfig_set_click.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc ifmanager_transaction.cc iftree.cc libfeaclient_bridge.cc mfea_config.cc mfea_dataflow.cc mfea_mrouter.cc mfea_node.cc mfea_node_cli.cc mfea_proto_comm.cc mfea_vif.cc netlink_socket.cc netlink_socket_utils.cc nexthop_port_mapper.cc pa_backend_dummy.cc pa_backend_ipfw2.cc pa_entry.cc pa_table.cc pa_transaction.cc profile_vars.cc rawsock4.cc rawsock6.cc routing_socket.cc routing_socket_utils.cc test_fea.cc test_fti.cc test_ifconfig_rtsock.cc test_ifmanager.cc test_ifmanager_transaction.cc test_mfea.cc test_rawsock4.cc test_xrl_sockets4_udp.cc xrl_fti.cc xrl_ifmanager.cc xrl_ifupdate.cc xrl_packet_acl.cc xrl_rawsock4.cc xrl_rawsock6.cc xrl_socket_cmds.cc xrl_socket_server.cc Log message: Refactor the list of #include files Revision Changes Path 1.3 +5 -2 xorp/fea/addr_table.cc 1.20 +2 -2 xorp/fea/click_socket.cc 1.9 +4 -1 xorp/fea/demo_fea_ifmgr_client.cc 1.48 +3 -2 xorp/fea/fea.cc 1.8 +3 -2 xorp/fea/fti_transaction.cc 1.40 +2 -2 xorp/fea/fticonfig.cc 1.7 +2 -2 xorp/fea/fticonfig_entry_get.cc 1.8 +2 -2 xorp/fea/fticonfig_entry_get_click.cc 1.11 +2 -2 xorp/fea/fticonfig_entry_get_dummy.cc 1.27 +2 -2 xorp/fea/fticonfig_entry_get_netlink.cc 1.27 +2 -2 xorp/fea/fticonfig_entry_get_rtsock.cc 1.6 +2 -2 xorp/fea/fticonfig_entry_observer.cc 1.8 +2 -2 xorp/fea/fticonfig_entry_observer_dummy.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_observer_netlink.cc 1.8 +2 -2 xorp/fea/fticonfig_entry_observer_rtsock.cc 1.12 +2 -2 xorp/fea/fticonfig_entry_parse_nlm.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_parse_rtm.cc 1.8 +2 -2 xorp/fea/fticonfig_entry_set.cc 1.21 +2 -2 xorp/fea/fticonfig_entry_set_click.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_set_dummy.cc 1.21 +2 -2 xorp/fea/fticonfig_entry_set_netlink.cc 1.26 +2 -2 xorp/fea/fticonfig_entry_set_rtsock.cc 1.7 +2 -2 xorp/fea/fticonfig_table_get.cc 1.9 +2 -2 xorp/fea/fticonfig_table_get_click.cc 1.9 +2 -2 xorp/fea/fticonfig_table_get_dummy.cc 1.25 +2 -2 xorp/fea/fticonfig_table_get_netlink.cc 1.17 +2 -2 xorp/fea/fticonfig_table_get_sysctl.cc 1.10 +2 -2 xorp/fea/fticonfig_table_observer.cc 1.8 +2 -2 xorp/fea/fticonfig_table_observer_dummy.cc 1.10 +2 -2 xorp/fea/fticonfig_table_observer_netlink.cc 1.13 +2 -2 xorp/fea/fticonfig_table_observer_rtsock.cc 1.13 +2 -2 xorp/fea/fticonfig_table_parse_nlm.cc 1.12 +2 -2 xorp/fea/fticonfig_table_parse_rtm.cc 1.8 +2 -2 xorp/fea/fticonfig_table_set.cc 1.7 +2 -2 xorp/fea/fticonfig_table_set_click.cc 1.8 +2 -2 xorp/fea/fticonfig_table_set_dummy.cc 1.7 +2 -2 xorp/fea/fticonfig_table_set_netlink.cc 1.10 +2 -2 xorp/fea/fticonfig_table_set_rtsock.cc 1.44 +2 -2 xorp/fea/ifconfig.cc 1.6 +5 -2 xorp/fea/ifconfig_addr_table.cc 1.8 +2 -2 xorp/fea/ifconfig_get.cc 1.7 +2 -2 xorp/fea/ifconfig_get_click.cc 1.9 +2 -2 xorp/fea/ifconfig_get_dummy.cc 1.10 +2 -2 xorp/fea/ifconfig_get_getifaddrs.cc 1.12 +2 -2 xorp/fea/ifconfig_get_ioctl.cc 1.14 +2 -2 xorp/fea/ifconfig_get_netlink.cc 1.20 +3 -5 xorp/fea/ifconfig_get_proc_linux.cc 1.10 +2 -2 xorp/fea/ifconfig_get_sysctl.cc 1.6 +3 -3 xorp/fea/ifconfig_observer.cc 1.8 +2 -1 xorp/fea/ifconfig_observer_dummy.cc 1.11 +2 -1 xorp/fea/ifconfig_observer_netlink.cc 1.10 +2 -1 xorp/fea/ifconfig_observer_rtsock.cc 1.22 +2 -3 xorp/fea/ifconfig_parse_ifaddrs.cc 1.22 +2 -3 xorp/fea/ifconfig_parse_ifreq.cc 1.16 +2 -3 xorp/fea/ifconfig_parse_nlm.cc 1.22 +2 -3 xorp/fea/ifconfig_parse_rtm.cc 1.25 +2 -2 xorp/fea/ifconfig_set.cc 1.19 +2 -2 xorp/fea/ifconfig_set_click.cc 1.19 +2 -2 xorp/fea/ifconfig_set_dummy.cc 1.35 +2 -2 xorp/fea/ifconfig_set_ioctl.cc 1.20 +2 -2 xorp/fea/ifconfig_set_netlink.cc 1.4 +7 -1 xorp/fea/ifmanager_transaction.cc 1.26 +8 -3 xorp/fea/iftree.cc 1.13 +3 -5 xorp/fea/libfeaclient_bridge.cc 1.10 +2 -3 xorp/fea/mfea_config.cc 1.4 +2 -3 xorp/fea/mfea_dataflow.cc 1.25 +7 -10 xorp/fea/mfea_mrouter.cc 1.47 +1 -3 xorp/fea/mfea_node.cc 1.13 +2 -2 xorp/fea/mfea_node_cli.cc 1.23 +7 -10 xorp/fea/mfea_proto_comm.cc 1.10 +1 -3 xorp/fea/mfea_vif.cc 1.29 +4 -4 xorp/fea/netlink_socket.cc 1.22 +2 -3 xorp/fea/netlink_socket_utils.cc 1.8 +2 -1 xorp/fea/nexthop_port_mapper.cc 1.3 +3 -2 xorp/fea/pa_backend_dummy.cc 1.4 +3 -2 xorp/fea/pa_backend_ipfw2.cc 1.2 +7 -2 xorp/fea/pa_entry.cc 1.2 +8 -1 xorp/fea/pa_table.cc 1.4 +3 -2 xorp/fea/pa_transaction.cc 1.2 +5 -2 xorp/fea/profile_vars.cc 1.11 +4 -2 xorp/fea/rawsock4.cc 1.10 +4 -2 xorp/fea/rawsock6.cc 1.22 +4 -4 xorp/fea/routing_socket.cc 1.25 +2 -3 xorp/fea/routing_socket_utils.cc 1.12 +6 -4 xorp/fea/test_fea.cc 1.8 +4 -2 xorp/fea/test_fti.cc 1.6 +2 -2 xorp/fea/test_ifconfig_rtsock.cc 1.6 +4 -4 xorp/fea/test_ifmanager.cc 1.4 +5 -4 xorp/fea/test_ifmanager_transaction.cc 1.21 +1 -3 xorp/fea/test_mfea.cc 1.9 +2 -2 xorp/fea/test_rawsock4.cc 1.9 +7 -3 xorp/fea/test_xrl_sockets4_udp.cc 1.16 +14 -1 xorp/fea/xrl_fti.cc 1.15 +6 -1 xorp/fea/xrl_ifmanager.cc 1.9 +6 -3 xorp/fea/xrl_ifupdate.cc 1.2 +5 -5 xorp/fea/xrl_packet_acl.cc 1.12 +5 -3 xorp/fea/xrl_rawsock4.cc 1.3 +5 -3 xorp/fea/xrl_rawsock6.cc 1.4 +7 -4 xorp/fea/xrl_socket_cmds.cc 1.20 +6 -5 xorp/fea/xrl_socket_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:46:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251l1OQ039445 for ; Fri, 4 Mar 2005 17:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251l1la088295 for ; Fri, 4 Mar 2005 17:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251l1Mp028381; Fri, 4 Mar 2005 17:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251kxMp028375 for ; Fri, 4 Mar 2005 17:46:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251kxla088293 for ; Fri, 4 Mar 2005 17:46:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251kw2U013031 for ; Fri, 4 Mar 2005 17:46:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251kwnP013030 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:46:58 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:46:58 GMT From: Pavlin Radoslavov Message-Id: <200503050146.j251kwnP013030@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:46:58 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc Log message: Add few debug_msg() Revision Changes Path 1.28 +65 -1 xorp/fib2mrib/xrl_fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:58:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 17:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j251x1wP042301 for ; Fri, 4 Mar 2005 17:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251x1la088421 for ; Fri, 4 Mar 2005 17:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251x1Mp028682; Fri, 4 Mar 2005 17:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251wqMp028673 for ; Fri, 4 Mar 2005 17:58:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251wqla088419 for ; Fri, 4 Mar 2005 17:58:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251wq6P013186 for ; Fri, 4 Mar 2005 17:58:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251wqF5013185 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:58:52 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:58:52 GMT From: Pavlin Radoslavov Message-Id: <200503050158.j251wqF5013185@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:58:51 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc fib2mrib_node.hh Log message: * Add a new method Fib2mribNode::update_route() This method is needed as a work-around of FEA-related problems with the routes the FEA sends to interested parties such as FIB2MRIB. A route is updated with interface-related information or next-hop address. * Refactor method Fib2mribNode::updates_made() which is called whenever the network interface information changes. The previous implementation didn't seem to add/withdraw properly the affected routes if an interface address is added/deleted. * Call the new Fib2mribNode::update_route() method whenever we receive add/replace/delete route from the FEA. Also, call this method for all affected internally stored routes if the network interface information is changed. * If add_route() is received from the FEA, but there is already such route, then update route as if replace_route() has been received. Ideally, if we receive add_route() from the FEA, we should have received delete_route() before. However, on FreeBSD-4.10 (at least), if a route points to the local address of an interface, and if we delete that address, the kernel automatically removes all affected routes without reporting the routing information change to the process(es) listening on routing sockets. Therefore, to deal with such (mis)behavior of the FEA, we just replace the previously received route with the new one. * Add few new methods to Fib2mribRoute: set_nexthop(), set_ifname(), set_vifname() * Few editorial nits Revision Changes Path 1.20 +219 -65 xorp/fib2mrib/fib2mrib_node.cc 1.14 +50 -4 xorp/fib2mrib/fib2mrib_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 01:59:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 18:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j25201uA042564 for ; Fri, 4 Mar 2005 18:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j25201la088443 for ; Fri, 4 Mar 2005 18:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j25201Mp028711; Fri, 4 Mar 2005 18:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j251xWMp028701 for ; Fri, 4 Mar 2005 17:59:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j251xWla088431 for ; Fri, 4 Mar 2005 17:59:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j251xWxB013244 for ; Fri, 4 Mar 2005 17:59:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j251xWif013243 for xorp-cvs@icir.org; Sat, 5 Mar 2005 01:59:32 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 01:59:32 GMT From: Pavlin Radoslavov Message-Id: <200503050159.j251xWif013243@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 01:59:32 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_varrw.cc xorp_fib2mrib.cc Log message: Refactor the list of #include files Revision Changes Path 1.2 +7 -1 xorp/fib2mrib/fib2mrib_varrw.cc 1.8 +1 -3 xorp/fib2mrib/xorp_fib2mrib.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 02:01:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 18:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j25221UZ043074 for ; Fri, 4 Mar 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j25221la088476 for ; Fri, 4 Mar 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j25221Mp028770; Fri, 4 Mar 2005 18:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2521CMp028753 for ; Fri, 4 Mar 2005 18:01:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2521Cla088466 for ; Fri, 4 Mar 2005 18:01:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2521C2Z013320 for ; Fri, 4 Mar 2005 18:01:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2521Cco013319 for xorp-cvs@icir.org; Sat, 5 Mar 2005 02:01:12 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 02:01:12 GMT From: Pavlin Radoslavov Message-Id: <200503050201.j2521Cco013319@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 02:01:12 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_varrw.cc Log message: Remove duplicated #include file. Revision Changes Path 1.3 +1 -2 xorp/fib2mrib/fib2mrib_varrw.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 02:08:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 18:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j25291uM044523 for ; Fri, 4 Mar 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j25290la088552 for ; Fri, 4 Mar 2005 18:09:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j25290Mp028936; Fri, 4 Mar 2005 18:09:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2528RMp028921 for ; Fri, 4 Mar 2005 18:08:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2528Rla088544 for ; Fri, 4 Mar 2005 18:08:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2528RZF013460 for ; Fri, 4 Mar 2005 18:08:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2528Rj3013459 for xorp-cvs@icir.org; Sat, 5 Mar 2005 02:08:27 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 02:08:27 GMT From: Pavlin Radoslavov Message-Id: <200503050208.j2528Rj3013459@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 02:08:27 UTC XORP CVS repository Modified files: static_routes static_routes_node.cc static_routes_node.hh Log message: * Add a new method StaticRoutesNode::update_route() Currently, this method is no-op and is added only for consistency with the fib2mrib code base which shares very similar design with static_routes. * Refactor method StaticRoutesNode::updates_made() which is called whenever the network interface information changes. * Call the new StaticRoutesNode::update_route() method whenever we receive add/replace/delete route from the user configuration. Also, call this method for all affected internally stored routes if the network interface information is changed. * Add few new methods to StaticRoute: set_nexthop(), set_ifname(), set_vifname() * Few editorial nits Revision Changes Path 1.24 +98 -55 xorp/static_routes/static_routes_node.cc 1.18 +36 -4 xorp/static_routes/static_routes_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 02:08:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 18:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j252916m044538 for ; Fri, 4 Mar 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j25291la088554 for ; Fri, 4 Mar 2005 18:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j25291Mp028947; Fri, 4 Mar 2005 18:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2528iMp028927 for ; Fri, 4 Mar 2005 18:08:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2528hla088547 for ; Fri, 4 Mar 2005 18:08:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2528hXq013513 for ; Fri, 4 Mar 2005 18:08:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2528hg1013512 for xorp-cvs@icir.org; Sat, 5 Mar 2005 02:08:43 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 02:08:43 GMT From: Pavlin Radoslavov Message-Id: <200503050208.j2528hg1013512@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 02:08:43 UTC XORP CVS repository Modified files: static_routes static_routes_varrw.cc xorp_static_routes.cc Log message: Refactor the list of #include files Revision Changes Path 1.4 +6 -1 xorp/static_routes/static_routes_varrw.cc 1.10 +1 -3 xorp/static_routes/xorp_static_routes.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:01 2005 Subject: No subject Sat Mar 5 05:35:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 04 Mar 2005 21:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j255a1Kd084739 for ; Fri, 4 Mar 2005 21:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j255a1la090219 for ; Fri, 4 Mar 2005 21:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j255a1Mp003291; Fri, 4 Mar 2005 21:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j255ZnMp003285 for ; Fri, 4 Mar 2005 21:35:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j255Znla090217 for ; Fri, 4 Mar 2005 21:35:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j255ZnKM065204 for ; Fri, 4 Mar 2005 21:35:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j255ZmpY065203 for xorp-cvs@icir.org; Sat, 5 Mar 2005 05:35:48 GMT (envelope-from pavlin) Date: Sat, 5 Mar 2005 05:35:48 GMT From: Pavlin Radoslavov Message-Id: <200503050535.j255ZmpY065203@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-05 05:35:48 UTC XORP CVS repository Modified files: fea xrl_fti.cc Log message: Remove debug code that was committed by mistake with the previous commit. Bug found by: Atanu Revision Changes Path 1.17 +1 -7 xorp/fea/xrl_fti.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Mon Mar 7 21:48:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Mar 2005 13:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j27Ln160086191 for ; Mon, 7 Mar 2005 13:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j27Ln1la032566 for ; Mon, 7 Mar 2005 13:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j27Ln1Mp008515; Mon, 7 Mar 2005 13:49:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j27LmDMp008478 for ; Mon, 7 Mar 2005 13:48:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j27LmDla032564 for ; Mon, 7 Mar 2005 13:48:13 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j27LmDpU006617 for ; Mon, 7 Mar 2005 13:48:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j27LmDLm006616 for xorp-cvs@icir.org; Mon, 7 Mar 2005 21:48:13 GMT (envelope-from atanu) Date: Mon, 7 Mar 2005 21:48:13 GMT From: Atanu Ghosh Message-Id: <200503072148.j27LmDLm006616@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-07 21:48:13 UTC XORP CVS repository Modified files: bgp route_table_ribin.cc route_table_ribin.hh bgp/harness test_peering2.sh Log message: If a peering went down while nexthop resolutions were changing, then BGP used to keep sending "replace" routes downstream. Now when a peering goes down all state related to nexthops is removed. There is a new regression test (test13) that demonstrated the problem. Revision Changes Path 1.37 +50 -10 xorp/bgp/harness/test_peering2.sh 1.35 +19 -1 xorp/bgp/route_table_ribin.cc 1.20 +2 -1 xorp/bgp/route_table_ribin.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 03:02:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Mar 2005 19:03:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j28330pI048367 for ; Mon, 7 Mar 2005 19:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28330la035709 for ; Mon, 7 Mar 2005 19:03:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28330Mp017734; Mon, 7 Mar 2005 19:03:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2832BMp017720 for ; Mon, 7 Mar 2005 19:02:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2832Bla035704 for ; Mon, 7 Mar 2005 19:02:11 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2832BA6009062 for ; Mon, 7 Mar 2005 19:02:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2832Be3009061 for xorp-cvs@icir.org; Tue, 8 Mar 2005 03:02:11 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 03:02:11 GMT From: Atanu Ghosh Message-Id: <200503080302.j2832Be3009061@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 03:02:11 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: Before queuing a de-register interest to the RIB make sure its not already on the queue. In an invalid pops up from the RIB, if all else fails see if it matches any re-registers in the request queue. Revision Changes Path 1.35 +69 -35 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 03:17:08 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Mar 2005 19:18:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j283I04M051336 for ; Mon, 7 Mar 2005 19:18:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j283I0la035850 for ; Mon, 7 Mar 2005 19:18:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j283I0Mp018072; Mon, 7 Mar 2005 19:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j283H8Mp018050 for ; Mon, 7 Mar 2005 19:17:08 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j283H8la035843 for ; Mon, 7 Mar 2005 19:17:08 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j283H8kU009228 for ; Mon, 7 Mar 2005 19:17:08 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j283H852009227 for xorp-cvs@icir.org; Tue, 8 Mar 2005 03:17:08 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 03:17:08 GMT From: Atanu Ghosh Message-Id: <200503080317.j283H852009227@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 03:17:08 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: The first entry in the transaction queue is the one in progress so never remove it. Revision Changes Path 1.36 +7 -2 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 05:21:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 07 Mar 2005 21:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j285M1C3075593 for ; Mon, 7 Mar 2005 21:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j285M0la036982 for ; Mon, 7 Mar 2005 21:22:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j285M0Mp020748; Mon, 7 Mar 2005 21:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j285LiMp020738 for ; Mon, 7 Mar 2005 21:21:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j285Lila036980 for ; Mon, 7 Mar 2005 21:21:44 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j285Li96010209 for ; Mon, 7 Mar 2005 21:21:44 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j285LiCY010208 for xorp-cvs@icir.org; Tue, 8 Mar 2005 05:21:44 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 05:21:44 GMT From: Atanu Ghosh Message-Id: <200503080521.j285LiCY010208@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 05:21:44 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: If the first entry in the queue is a delete and it matches the invalid then assign the invalid variables. Revision Changes Path 1.37 +9 -2 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 10:36:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Mar 2005 02:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j28Ab1su037963 for ; Tue, 8 Mar 2005 02:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28Ab1la040085 for ; Tue, 8 Mar 2005 02:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28Ab0Mp029166; Tue, 8 Mar 2005 02:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28AaEMp029121 for ; Tue, 8 Mar 2005 02:36:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28AaDla040082 for ; Tue, 8 Mar 2005 02:36:13 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j28AaDO9012831 for ; Tue, 8 Mar 2005 02:36:13 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j28AaDfG012830 for xorp-cvs@icir.org; Tue, 8 Mar 2005 10:36:13 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 10:36:13 GMT From: Atanu Ghosh Message-Id: <200503081036.j28AaDfG012830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 10:36:13 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: Free the memory associated with a request queue entry. Revision Changes Path 1.38 +8 -6 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 10:49:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Mar 2005 02:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j28Ao1Z7040594 for ; Tue, 8 Mar 2005 02:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28Ao1la040202 for ; Tue, 8 Mar 2005 02:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28Ao1Mp029552; Tue, 8 Mar 2005 02:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28AnaMp029526 for ; Tue, 8 Mar 2005 02:49:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28Anala040196 for ; Tue, 8 Mar 2005 02:49:36 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j28Anans013018 for ; Tue, 8 Mar 2005 02:49:36 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j28AnaE2013017 for xorp-cvs@icir.org; Tue, 8 Mar 2005 10:49:36 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 10:49:36 GMT From: Atanu Ghosh Message-Id: <200503081049.j28AnaE2013017@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 10:49:36 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc Log message: Move XLOG_INFO so all the referenced variables are still valid. Revision Changes Path 1.39 +4 -4 xorp/bgp/next_hop_resolver.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Tue Mar 8 21:07:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Mar 2005 13:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j28L81Kg043085 for ; Tue, 8 Mar 2005 13:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28L81la048176 for ; Tue, 8 Mar 2005 13:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28L81Mp019768; Tue, 8 Mar 2005 13:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j28L7nMp019740 for ; Tue, 8 Mar 2005 13:07:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j28L7nla048174 for ; Tue, 8 Mar 2005 13:07:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j28L7n1i019710 for ; Tue, 8 Mar 2005 13:07:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j28L7nAT019709 for xorp-cvs@icir.org; Tue, 8 Mar 2005 21:07:49 GMT (envelope-from atanu) Date: Tue, 8 Mar 2005 21:07:49 GMT From: Atanu Ghosh Message-Id: <200503082107.j28L7nAT019709@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-08 21:07:49 UTC XORP CVS repository Modified files: bgp subnet_route.hh Log message: assert -> XLOG_ASSERT Revision Changes Path 1.16 +4 -4 xorp/bgp/subnet_route.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Wed Mar 9 02:48:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 08 Mar 2005 18:49:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j292n3QU055169 for ; Tue, 8 Mar 2005 18:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j292n3la051455 for ; Tue, 8 Mar 2005 18:49:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j292n0Mp000248; Tue, 8 Mar 2005 18:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j292m1Mp000233 for ; Tue, 8 Mar 2005 18:48:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j292m1la051446 for ; Tue, 8 Mar 2005 18:48:01 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j292m14h022803 for ; Tue, 8 Mar 2005 18:48:01 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j292m1SR022802 for xorp-cvs@icir.org; Wed, 9 Mar 2005 02:48:01 GMT (envelope-from atanu) Date: Wed, 9 Mar 2005 02:48:01 GMT From: Atanu Ghosh Message-Id: <200503090248.j292m1SR022802@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/docs/test_harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-09 02:48:01 UTC XORP CVS repository Modified files: bgp open_packet.cc route_table_filter.cc bgp/harness peer.cc test_peering1.sh docs/test_harness test_harness.tex Log message: The nexthops associated with routes that we originate were not being honoured. The nexthop rewrite filter now won't change the nexthop if we originated the route. Augment the regression tests test28 and test28_ipv6 to verify that the originated nexthop survives. The test harness now supports building open packets with the AFI and SAFI configured. Required for the IPv6 test. Also upgraded the manual with the new AFI and SAFI options. Bug found by: John C. Lin Revision Changes Path 1.58 +20 -1 xorp/bgp/harness/peer.cc 1.30 +26 -1 xorp/bgp/harness/test_peering1.sh 1.20 +15 -3 xorp/bgp/open_packet.cc 1.25 +5 -1 xorp/bgp/route_table_filter.cc 1.24 +4 -2 xorp/docs/test_harness/test_harness.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Wed Mar 9 19:51:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 11:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j29Jq1k2093308 for ; Wed, 9 Mar 2005 11:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29Jq1On063413 for ; Wed, 9 Mar 2005 11:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29Jq0Mp029275; Wed, 9 Mar 2005 11:52:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29JpiMp029254 for ; Wed, 9 Mar 2005 11:51:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29JphOn063409 for ; Wed, 9 Mar 2005 11:51:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j29JphKR033136 for ; Wed, 9 Mar 2005 11:51:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j29Jph7K033135 for xorp-cvs@icir.org; Wed, 9 Mar 2005 19:51:43 GMT (envelope-from pavlin) Date: Wed, 9 Mar 2005 19:51:43 GMT From: Pavlin Radoslavov Message-Id: <200503091951.j29Jph7K033135@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-09 19:51:43 UTC XORP CVS repository Modified files: . cvs.html html_src cvs.html Log message: * Add info to ignore a warning message that may appear after the "cvs login" command if the user doesn't have a .cvspass file in his home directory. * Update the anon-CVS example for checking-out the code. Revision Changes Path 1.23 +32 -17 www/cvs.html 1.2 +29 -14 www/html_src/cvs.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Wed Mar 9 22:50:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 14:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j29Mp0Rk037490 for ; Wed, 9 Mar 2005 14:51:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29Mp0On065202 for ; Wed, 9 Mar 2005 14:51:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29Mp0Mp005647; Wed, 9 Mar 2005 14:51:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29MogMp005620 for ; Wed, 9 Mar 2005 14:50:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29MofOn065196 for ; Wed, 9 Mar 2005 14:50:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j29Mofpg035249 for ; Wed, 9 Mar 2005 14:50:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j29MofMm035248 for xorp-cvs@icir.org; Wed, 9 Mar 2005 22:50:41 GMT (envelope-from pavlin) Date: Wed, 9 Mar 2005 22:50:41 GMT From: Pavlin Radoslavov Message-Id: <200503092250.j29MofMm035248@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr xorp/docs/user_manual xorp/etc/templates xorp/fea xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-09 22:50:41 UTC XORP CVS repository Modified files: docs/rtrmgr config_guide.tex rtrmgr.tex xorpsh_userguide.tex docs/user_manual bgp.tex cli_intro.tex config_overview.tex forwarding.tex igmp.tex interfaces.tex pimsm.tex rip.tex staticroutes.tex etc/templates bgp.tp fea.tp fib2mrib.tp igmp.tp interfaces.tp mfea4.tp mfea6.tp mld.tp ospf.tp pimsm4.tp pimsm6.tp rip.tp ripng.tp static_routes.tp fea ifconfig_set_click.cc xorp_fea_click_config_generator rtrmgr config.boot.sample Log message: Changes in the XORP configuration syntax: * All "enabled: true/false" XORP configuration flags are now renamed to "disable: false/true". Furthermore, they are defined as "toggle" in the rtrmgr templates, and have default value of "false". The reason for this renaming is for better consistency with the configuration of other router vendors. * Change the syntax for configuring the IPv4/IPv6 forwarding (for consistency with the above renaming): OLD: fea { enable-unicast-forwarding4: true enable-unicast-forwarding6: true } NEW: fea { unicast-forwarding4 { disable: false } unicast-forwarding6 { disable: false } } * Mark the old syntax as %deprecated in the rtrmgr templates, so the appropriate error message is printed on startup if someone tries to use configuration file with the old syntax. * Update the documentation to reflect the above configuration syntax changes, and add footnotes about the old syntax. Approved by: Mark Handley, Atanu Ghosh Revision Changes Path 1.6 +69 -49 xorp/docs/rtrmgr/config_guide.tex 1.26 +3 -3 xorp/docs/rtrmgr/rtrmgr.tex 1.14 +30 -30 xorp/docs/rtrmgr/xorpsh_userguide.tex 1.8 +5 -4 xorp/docs/user_manual/bgp.tex 1.3 +29 -29 xorp/docs/user_manual/cli_intro.tex 1.4 +64 -47 xorp/docs/user_manual/config_overview.tex 1.4 +59 -35 xorp/docs/user_manual/forwarding.tex 1.8 +24 -17 xorp/docs/user_manual/igmp.tex 1.5 +22 -15 xorp/docs/user_manual/interfaces.tex 1.9 +45 -34 xorp/docs/user_manual/pimsm.tex 1.6 +9 -6 xorp/docs/user_manual/rip.tex 1.6 +6 -4 xorp/docs/user_manual/staticroutes.tex 1.38 +12 -2 xorp/etc/templates/bgp.tp 1.31 +61 -9 xorp/etc/templates/fea.tp 1.7 +12 -3 xorp/etc/templates/fib2mrib.tp 1.9 +31 -5 xorp/etc/templates/igmp.tp 1.15 +36 -5 xorp/etc/templates/interfaces.tp 1.9 +31 -5 xorp/etc/templates/mfea4.tp 1.9 +31 -5 xorp/etc/templates/mfea6.tp 1.9 +31 -5 xorp/etc/templates/mld.tp 1.16 +3 -2 xorp/etc/templates/ospf.tp 1.14 +51 -9 xorp/etc/templates/pimsm4.tp 1.14 +51 -9 xorp/etc/templates/pimsm6.tp 1.19 +9 -2 xorp/etc/templates/rip.tp 1.20 +9 -2 xorp/etc/templates/ripng.tp 1.16 +12 -3 xorp/etc/templates/static_routes.tp 1.20 +15 -15 xorp/fea/ifconfig_set_click.cc 1.11 +45 -29 xorp/fea/xorp_fea_click_config_generator 1.23 +51 -45 xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Wed Mar 9 22:59:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 15:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j29N01iT039823 for ; Wed, 9 Mar 2005 15:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29N01On065272 for ; Wed, 9 Mar 2005 15:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29N01Mp005879; Wed, 9 Mar 2005 15:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j29MxDMp005860 for ; Wed, 9 Mar 2005 14:59:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j29MxCOn065258 for ; Wed, 9 Mar 2005 14:59:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j29MxCun035418 for ; Wed, 9 Mar 2005 14:59:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j29MxCqu035417 for xorp-cvs@icir.org; Wed, 9 Mar 2005 22:59:12 GMT (envelope-from pavlin) Date: Wed, 9 Mar 2005 22:59:12 GMT From: Pavlin Radoslavov Message-Id: <200503092259.j29MxCqu035417@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-09 22:59:12 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Changes in the XORP configuration syntax: * All "enabled: true/false" XORP configuration flags are now renamed to "disable: false/true". Furthermore, they are defined as "toggle" in the rtrmgr templates, and have default value of "false". The reason for this renaming is for better consistency with the configuration of other router vendors. * Change the syntax for configuring the IPv4/IPv6 forwarding (for consistency with the above renaming): OLD: fea { enable-unicast-forwarding4: true enable-unicast-forwarding6: true } NEW: fea { unicast-forwarding4 { disable: false } unicast-forwarding6 { disable: false } } * Mark the old syntax as %deprecated in the rtrmgr templates, so the appropriate error message is printed on startup if someone tries to use configuration file with the old syntax. * Update the documentation to reflect the above configuration syntax changes, and add footnotes about the old syntax. Approved by: Mark Handley, Atanu Ghosh Revision Changes Path 1.31 +79 -47 www/getting_started.html 1.7 +76 -44 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Thu Mar 10 01:08:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 17:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2A191d7071617 for ; Wed, 9 Mar 2005 17:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A191On066640 for ; Wed, 9 Mar 2005 17:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A191Mp010219; Wed, 9 Mar 2005 17:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A18GMp010185 for ; Wed, 9 Mar 2005 17:08:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A18FOn066625 for ; Wed, 9 Mar 2005 17:08:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2A18F1r036469 for ; Wed, 9 Mar 2005 17:08:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2A18FPw036468 for xorp-cvs@icir.org; Thu, 10 Mar 2005 01:08:15 GMT (envelope-from pavlin) Date: Thu, 10 Mar 2005 01:08:15 GMT From: Pavlin Radoslavov Message-Id: <200503100108.j2A18FPw036468@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-10 01:08:15 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add release notes for the changes in the XORP configuration syntax. Revision Changes Path 1.61 +21 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Thu Mar 10 01:13:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 17:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2A1E1XL072864 for ; Wed, 9 Mar 2005 17:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1E0On066709 for ; Wed, 9 Mar 2005 17:14:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1E0Mp010428; Wed, 9 Mar 2005 17:14:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1DjMp010421 for ; Wed, 9 Mar 2005 17:13:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1DjOn066707 for ; Wed, 9 Mar 2005 17:13:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2A1Dile036655 for ; Wed, 9 Mar 2005 17:13:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2A1DipS036654 for xorp-cvs@icir.org; Thu, 10 Mar 2005 01:13:44 GMT (envelope-from pavlin) Date: Thu, 10 Mar 2005 01:13:44 GMT From: Pavlin Radoslavov Message-Id: <200503100113.j2A1DipS036654@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/fib2mrib xorp/mld6igmp xorp/pim xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-10 01:13:44 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc fib2mrib xrl_fib2mrib_node.cc mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc static_routes xrl_static_routes_node.cc Log message: Instead of calling XLOG_FATAL() and core-dumping when SEND_FAILED XRL return error is received, now SEND_FAILED is handled same as NO_FINDER failure (i.e., fatal for the communication) so we handle this gracefully. Otherwise, say, a coredump in one process was triggering coredumps in other processes as well rather than a graceful shutdown. Bug found by: Atanu Ghosh Revision Changes Path 1.40 +14 -14 xorp/fea/xrl_mfea_node.cc 1.29 +16 -16 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.37 +11 -11 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.67 +17 -17 xorp/pim/xrl_pim_node.cc 1.29 +10 -10 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Thu Mar 10 01:45:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 17:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2A1k1ZP080783 for ; Wed, 9 Mar 2005 17:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1k1On067137 for ; Wed, 9 Mar 2005 17:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1k1Mp011886; Wed, 9 Mar 2005 17:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1jrMp011877 for ; Wed, 9 Mar 2005 17:45:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1jrOn067133 for ; Wed, 9 Mar 2005 17:45:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2A1jr6I048926 for ; Wed, 9 Mar 2005 17:45:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2A1jrXe048925 for xorp-cvs@icir.org; Thu, 10 Mar 2005 01:45:53 GMT (envelope-from pavlin) Date: Thu, 10 Mar 2005 01:45:53 GMT From: Pavlin Radoslavov Message-Id: <200503100145.j2A1jrXe048925@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-10 01:45:53 UTC XORP CVS repository Modified files: fea test_config_interface.sh Log message: Remove subtest_get_broadcast6 as part of the test_create_address6() test, because subtest_get_broadcast6 doesn't exist (in IPv6 there are no broadcast addresses). Revision Changes Path 1.16 +1 -2 xorp/fea/test_config_interface.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Thu Mar 10 01:58:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 17:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2A1x1GR083990 for ; Wed, 9 Mar 2005 17:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1x1On067299 for ; Wed, 9 Mar 2005 17:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1x0Mp012546; Wed, 9 Mar 2005 17:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A1wwMp012540 for ; Wed, 9 Mar 2005 17:58:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A1wwOn067296 for ; Wed, 9 Mar 2005 17:58:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2A1wwT2049049 for ; Wed, 9 Mar 2005 17:58:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2A1wwQF049048 for xorp-cvs@icir.org; Thu, 10 Mar 2005 01:58:58 GMT (envelope-from atanu) Date: Thu, 10 Mar 2005 01:58:58 GMT From: Atanu Ghosh Message-Id: <200503100158.j2A1wwQF049048@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-10 01:58:58 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Increase the time that we wait for the BGP TCP input queue to be emptied from 10 seconds to 30 seconds. Revision Changes Path 1.38 +4 -2 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Thu Mar 10 04:10:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 09 Mar 2005 20:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2A4B1Mq017111 for ; Wed, 9 Mar 2005 20:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A4B1On068681 for ; Wed, 9 Mar 2005 20:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A4B1Mp016362; Wed, 9 Mar 2005 20:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2A4AhMp016353 for ; Wed, 9 Mar 2005 20:10:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2A4AhOn068677 for ; Wed, 9 Mar 2005 20:10:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2A4AhWH050143 for ; Wed, 9 Mar 2005 20:10:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2A4Ahn9050142 for xorp-cvs@icir.org; Thu, 10 Mar 2005 04:10:43 GMT (envelope-from pavlin) Date: Thu, 10 Mar 2005 04:10:43 GMT From: Pavlin Radoslavov Message-Id: <200503100410.j2A4Ahn9050142@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-10 04:10:42 UTC XORP CVS repository Modified files: etc/templates interfaces.tp Log message: Change the "discard" interface flag type from "bool" to "toggle". Revision Changes Path 1.16 +2 -2 xorp/etc/templates/interfaces.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:02 2005 Subject: No subject Fri Mar 11 01:56:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Mar 2005 17:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2B1v1lE098004 for ; Thu, 10 Mar 2005 17:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B1v0On083735 for ; Thu, 10 Mar 2005 17:57:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B1v0Mp027920; Thu, 10 Mar 2005 17:57:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B1uwMp027914 for ; Thu, 10 Mar 2005 17:56:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B1uwOn083733 for ; Thu, 10 Mar 2005 17:56:58 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2B1uw3E063046 for ; Thu, 10 Mar 2005 17:56:58 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2B1uwMu063045 for xorp-cvs@icir.org; Fri, 11 Mar 2005 01:56:58 GMT (envelope-from atanu) Date: Fri, 11 Mar 2005 01:56:58 GMT From: Atanu Ghosh Message-Id: <200503110156.j2B1uwMu063045@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-11 01:56:58 UTC XORP CVS repository Modified files: bgp route_table_cache.hh Log message: Fixed typo in comment. Revision Changes Path 1.18 +2 -2 xorp/bgp/route_table_cache.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 02:01:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Mar 2005 18:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2B221RP099050 for ; Thu, 10 Mar 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B221On083795 for ; Thu, 10 Mar 2005 18:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B221Mp028075; Thu, 10 Mar 2005 18:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B217Mp028030 for ; Thu, 10 Mar 2005 18:01:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B217On083791 for ; Thu, 10 Mar 2005 18:01:07 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2B217DH063126 for ; Thu, 10 Mar 2005 18:01:07 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2B217Eu063125 for xorp-cvs@icir.org; Fri, 11 Mar 2005 02:01:07 GMT (envelope-from atanu) Date: Fri, 11 Mar 2005 02:01:07 GMT From: Atanu Ghosh Message-Id: <200503110201.j2B217Eu063125@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-11 02:01:07 UTC XORP CVS repository Modified files: bgp peer.cc peer.hh Log message: A number of the FSM related methods have an argument "error", renamed to "restart" (a clearer definition). Delete some commented out code. Revision Changes Path 1.88 +9 -9 xorp/bgp/peer.cc 1.19 +5 -11 xorp/bgp/peer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 06:57:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 10 Mar 2005 22:58:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2B6w2rO027950 for ; Thu, 10 Mar 2005 22:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B6w2On086658 for ; Thu, 10 Mar 2005 22:58:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B6w1Mp004445; Thu, 10 Mar 2005 22:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2B6vfMp004439 for ; Thu, 10 Mar 2005 22:57:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2B6vfOn086654 for ; Thu, 10 Mar 2005 22:57:41 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2B6vftk065694 for ; Thu, 10 Mar 2005 22:57:41 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2B6vf9H065693 for xorp-cvs@icir.org; Fri, 11 Mar 2005 06:57:41 GMT (envelope-from atanu) Date: Fri, 11 Mar 2005 06:57:41 GMT From: Atanu Ghosh Message-Id: <200503110657.j2B6vf9H065693@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-11 06:57:41 UTC XORP CVS repository Modified files: bgp peer.cc peer.hh Log message: Add a restart flag to event_stop, this will allow us to bounce a peering. If the user modifies a parameter on a peering we now have the option of bouncing the peering so the change takes effect immediately. Revision Changes Path 1.89 +6 -6 xorp/bgp/peer.cc 1.20 +2 -2 xorp/bgp/peer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 19:51:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 11:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2BJq1I5093444 for ; Fri, 11 Mar 2005 11:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BJq1On096402 for ; Fri, 11 Mar 2005 11:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BJq1Mp026650; Fri, 11 Mar 2005 11:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BJpnMp026641 for ; Fri, 11 Mar 2005 11:51:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BJpnOn096397 for ; Fri, 11 Mar 2005 11:51:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2BJpn9b074340 for ; Fri, 11 Mar 2005 11:51:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2BJpn9t074339 for xorp-cvs@icir.org; Fri, 11 Mar 2005 19:51:49 GMT (envelope-from pavlin) Date: Fri, 11 Mar 2005 19:51:49 GMT From: Pavlin Radoslavov Message-Id: <200503111951.j2BJpn9t074339@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-11 19:51:49 UTC XORP CVS repository Modified files: libfeaclient ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh Log message: * Add a new constructor for IfMgrXrlMirror() that accepts the finder identifier as a hostname string instead of an IPv4 address. * Rename the existing IPv4 "finder_host" to "finder_addr" (for consistency). Revision Changes Path 1.15 +30 -5 xorp/libfeaclient/ifmgr_xrl_mirror.cc 1.10 +19 -4 xorp/libfeaclient/ifmgr_xrl_mirror.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 20:18:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 12:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2BKJ122098734 for ; Fri, 11 Mar 2005 12:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BKJ1On096664 for ; Fri, 11 Mar 2005 12:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BKJ0Mp027598; Fri, 11 Mar 2005 12:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BKIVMp027584 for ; Fri, 11 Mar 2005 12:18:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BKIVOn096659 for ; Fri, 11 Mar 2005 12:18:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2BKIUFu074611 for ; Fri, 11 Mar 2005 12:18:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2BKIU4v074610 for xorp-cvs@icir.org; Fri, 11 Mar 2005 20:18:30 GMT (envelope-from pavlin) Date: Fri, 11 Mar 2005 20:18:30 GMT From: Pavlin Radoslavov Message-Id: <200503112018.j2BKIU4v074610@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea/tools Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-11 20:18:30 UTC XORP CVS repository Modified files: fea/tools show_interfaces.cc show_interfaces.hh Log message: * Refactor the implementaition to get rid of the XrlRouter that is specific to the InterfaceMonitor class, because that XrlRouter is not needed. This fixes the following error message inside the rtrmgr whenever the "show_interfaces" command is running: [ 2005/03/11 11:48:06 ERROR xorp_rtrmgr:30953 LIBXORP +272 /home/possum/u0/pavlin/xorp/libxorp/asyncio.cc complete_transfer ] Write error 32 - Broken pipe The reason for this error appears to be that if a process has more than one XrlRouter instances, during process exit the destroying of the first XrlRouter instance will trigger an attempt by the XRL finder to communicate with the second XrlRouter instance (and all other XrlRouter instances as well). However, given that the process has already died, this will result in the above "Broken pipe" writing error. [See Bugzilla entry 118] * Bug fix: during shutdown, wait until the InterfaceMonitor status is SERVICE_SHUTDOWN or SERVICE_FAILED * Minor editorial nits Revision Changes Path 1.11 +18 -28 xorp/fea/tools/show_interfaces.cc 1.4 +9 -6 xorp/fea/tools/show_interfaces.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 22:17:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 14:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2BMI1xN022290 for ; Fri, 11 Mar 2005 14:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BMI1On097733 for ; Fri, 11 Mar 2005 14:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BMI1Mp001390; Fri, 11 Mar 2005 14:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BMHGMp001365 for ; Fri, 11 Mar 2005 14:17:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BMHGOn097722 for ; Fri, 11 Mar 2005 14:17:16 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2BMHG4L075599 for ; Fri, 11 Mar 2005 14:17:16 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2BMHGPA075598 for xorp-cvs@icir.org; Fri, 11 Mar 2005 22:17:16 GMT (envelope-from pavlin) Date: Fri, 11 Mar 2005 22:17:16 GMT From: Pavlin Radoslavov Message-Id: <200503112217.j2BMHGPA075598@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-11 22:17:16 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc Log message: Print the XLOG_ERROR() message right after the error. Revision Changes Path 1.26 +3 -3 xorp/fea/mfea_mrouter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Fri Mar 11 23:19:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 15:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2BNK1A0036439 for ; Fri, 11 Mar 2005 15:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BNK0On098331 for ; Fri, 11 Mar 2005 15:20:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BNK0Mp003207; Fri, 11 Mar 2005 15:20:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2BNJ2Mp003174 for ; Fri, 11 Mar 2005 15:19:02 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2BNJ2On098319 for ; Fri, 11 Mar 2005 15:19:02 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2BNJ2YI076189 for ; Fri, 11 Mar 2005 15:19:02 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2BNJ25C076188 for xorp-cvs@icir.org; Fri, 11 Mar 2005 23:19:02 GMT (envelope-from pavlin) Date: Fri, 11 Mar 2005 23:19:02 GMT From: Pavlin Radoslavov Message-Id: <200503112319.j2BNJ25C076188@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-11 23:19:02 UTC XORP CVS repository Modified files: etc/templates Makefile.am Makefile.in bgp.tp Added files: etc/templates plumbing.tp protocols.tp Log message: * Add new template files plumbing.tp and protocols.tp that currently are used only for holders for the configuration-mode help messages for "plumbing" and "protocols" sections. * Remove the configuration-mode help message for section "protocols", from bgp.tp, because now that help message is in file protocols.tp Revision Changes Path 1.13 +3 -1 xorp/etc/templates/Makefile.am 1.20 +1 -1 xorp/etc/templates/Makefile.in 1.39 +1 -4 xorp/etc/templates/bgp.tp 1.1 +5 -0 xorp/etc/templates/plumbing.tp (new) 1.1 +6 -0 xorp/etc/templates/protocols.tp (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Sat Mar 12 01:51:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 17:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C1q13d074696 for ; Fri, 11 Mar 2005 17:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2C1q1On002532 for ; Fri, 11 Mar 2005 17:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C1q1Mp007961; Fri, 11 Mar 2005 17:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C1ppMp007954 for ; Fri, 11 Mar 2005 17:51:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id j2C1ppOn002530 for ; Fri, 11 Mar 2005 17:51:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C1ppl7078824 for ; Fri, 11 Mar 2005 17:51:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C1ppZw078823 for xorp-cvs@icir.org; Sat, 12 Mar 2005 01:51:51 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 01:51:51 GMT From: Pavlin Radoslavov Message-Id: <200503120151.j2C1ppZw078823@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 01:51:51 UTC XORP CVS repository Modified files: libxipc header.cc Log message: Bug fix: replace ~0U with string::npos as the valie to compare against whether a find() operation on a string has failed. This fixes a run-time error on OpenBSD amd64 architecture. Revision Changes Path 1.7 +3 -3 xorp/libxipc/header.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Sat Mar 12 04:25:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 20:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C4Q19Y016260 for ; Fri, 11 Mar 2005 20:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4Q1rQ002071 for ; Fri, 11 Mar 2005 20:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4Q1Mp011460; Fri, 11 Mar 2005 20:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4P7Mp011449 for ; Fri, 11 Mar 2005 20:25:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4P7iH002064 for ; Fri, 11 Mar 2005 20:25:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C4P75Y083983 for ; Fri, 11 Mar 2005 20:25:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C4P7Nr083982 for xorp-cvs@icir.org; Sat, 12 Mar 2005 04:25:07 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 04:25:07 GMT From: Pavlin Radoslavov Message-Id: <200503120425.j2C4P7Nr083982@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 04:25:07 UTC XORP CVS repository Modified files: libxipc xrl_atom.cc Log message: Bug fix: declare a variable of type uint32_t instead of size_t. When unpacking an XrlList argument inside XrlAtom::unpack_list(), the local variable named "nelem" that contains the number of elements inside an XRL must be defined as uint32_t instead of size_t, because later the code uses sizeof(nelem) to calculate the number of consumed bytes. On 64-bit machine, size_t is different from uint32_t, hence the number of consumed bytes is incorrect. Bug found on OpenBSD + amd64. Revision Changes Path 1.18 +2 -2 xorp/libxipc/xrl_atom.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Sat Mar 12 04:33:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 20:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C4Y2Wk018511 for ; Fri, 11 Mar 2005 20:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4Y1jj002127 for ; Fri, 11 Mar 2005 20:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4Y1Mp011693; Fri, 11 Mar 2005 20:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4XZMp011668 for ; Fri, 11 Mar 2005 20:33:35 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4XZs3002125 for ; Fri, 11 Mar 2005 20:33:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C4XZcK084080 for ; Fri, 11 Mar 2005 20:33:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C4XZ0v084079 for xorp-cvs@icir.org; Sat, 12 Mar 2005 04:33:35 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 04:33:35 GMT From: Pavlin Radoslavov Message-Id: <200503120433.j2C4XZ0v084079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 04:33:35 UTC XORP CVS repository Modified files: libxorp c_format.cc Log message: Simplify and fix the implementation of do_c_format() in case the string to print is larger than 4KB. Previously, the code used a gcc-ism by defining a C-array with variable size, and eventually called vsnprintf() more than once with the same va_list arguments. Calling vsnprintf() more than once with the same va_list argument may not be safe (at least on OpenBSD+amd64). The newer implementation fixes both problems and removes c_format_va() because it is not needed anymore. Revision Changes Path 1.5 +16 -22 xorp/libxorp/c_format.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Sat Mar 12 04:58:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 20:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C4x2Xt079365 for ; Fri, 11 Mar 2005 20:59:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4x1Gc003686 for ; Fri, 11 Mar 2005 20:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4x1Mp012233; Fri, 11 Mar 2005 20:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C4waMp012220 for ; Fri, 11 Mar 2005 20:58:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C4wZ4L003683 for ; Fri, 11 Mar 2005 20:58:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C4wZCA085683 for ; Fri, 11 Mar 2005 20:58:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C4wZmD085682 for xorp-cvs@icir.org; Sat, 12 Mar 2005 04:58:35 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 04:58:35 GMT From: Pavlin Radoslavov Message-Id: <200503120458.j2C4wZmD085682@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 04:58:35 UTC XORP CVS repository Modified files: libxorp mac.cc Log message: Get rid of declarations of C arrays with non-const size, because this is gcc-ism, and replace them with vector. Revision Changes Path 1.10 +15 -13 xorp/libxorp/mac.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:03 2005 Subject: No subject Sat Mar 12 05:04:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 21:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C5518a092071 for ; Fri, 11 Mar 2005 21:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C550sx003737 for ; Fri, 11 Mar 2005 21:05:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C550Mp012386; Fri, 11 Mar 2005 21:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C54gMp012374 for ; Fri, 11 Mar 2005 21:04:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C54gQP003731 for ; Fri, 11 Mar 2005 21:04:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C54ghP085778 for ; Fri, 11 Mar 2005 21:04:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C54gP5085777 for xorp-cvs@icir.org; Sat, 12 Mar 2005 05:04:42 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 05:04:42 GMT From: Pavlin Radoslavov Message-Id: <200503120504.j2C54gP5085777@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 05:04:42 UTC XORP CVS repository Modified files: cli cli_node_internal_commands.cc Log message: Get rid of a declaration of a C array with non-const size, because this is gcc-ism, and replace it with vector. Revision Changes Path 1.11 +3 -3 xorp/cli/cli_node_internal_commands.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Sat Mar 12 05:27:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 11 Mar 2005 21:28:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C5S14h099276 for ; Fri, 11 Mar 2005 21:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C5S1gG005308 for ; Fri, 11 Mar 2005 21:28:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C5S1Mp012913; Fri, 11 Mar 2005 21:28:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C5RlMp012907 for ; Fri, 11 Mar 2005 21:27:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C5RlEx005304 for ; Fri, 11 Mar 2005 21:27:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C5RkdI087496 for ; Fri, 11 Mar 2005 21:27:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C5Rk3U087495 for xorp-cvs@icir.org; Sat, 12 Mar 2005 05:27:46 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 05:27:46 GMT From: Pavlin Radoslavov Message-Id: <200503120527.j2C5Rk3U087495@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 05:27:46 UTC XORP CVS repository Modified files: rtrmgr TODO Log message: Add a TODO entry. Revision Changes Path 1.29 +5 -1 xorp/rtrmgr/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Sat Mar 12 08:57:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Mar 2005 00:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C8w1xA046802 for ; Sat, 12 Mar 2005 00:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C8w1KQ007120 for ; Sat, 12 Mar 2005 00:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C8w0Mp017978; Sat, 12 Mar 2005 00:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C8vlMp017968 for ; Sat, 12 Mar 2005 00:57:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C8vlq5007116 for ; Sat, 12 Mar 2005 00:57:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C8vkrT088955 for ; Sat, 12 Mar 2005 00:57:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C8vkCl088954 for xorp-cvs@icir.org; Sat, 12 Mar 2005 08:57:46 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 08:57:46 GMT From: Pavlin Radoslavov Message-Id: <200503120857.j2C8vkCl088954@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 08:57:46 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add build notes for OpenBSD-3.6-current (as of February 2005) on i386 and amd64. Revision Changes Path 1.20 +31 -6 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Sat Mar 12 09:39:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Mar 2005 01:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2C9e1uw055227 for ; Sat, 12 Mar 2005 01:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C9e0og007548 for ; Sat, 12 Mar 2005 01:40:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C9e0Mp019148; Sat, 12 Mar 2005 01:40:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2C9dsMp019142 for ; Sat, 12 Mar 2005 01:39:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2C9dsJk007541 for ; Sat, 12 Mar 2005 01:39:54 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2C9dsee089306 for ; Sat, 12 Mar 2005 01:39:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2C9dsIX089305 for xorp-cvs@icir.org; Sat, 12 Mar 2005 09:39:54 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 09:39:54 GMT From: Pavlin Radoslavov Message-Id: <200503120939.j2C9dsIX089305@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-12 09:39:54 UTC XORP CVS repository Modified files: . cvs.html html_src cvs.html Log message: Add a bullet for the "data" module in the CVS repository. Revision Changes Path 1.24 +10 -3 www/cvs.html 1.3 +9 -2 www/html_src/cvs.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Sat Mar 12 21:46:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Mar 2005 13:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2CLl1gI009772 for ; Sat, 12 Mar 2005 13:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2CLl1Do016290 for ; Sat, 12 Mar 2005 13:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2CLl1Mp007380; Sat, 12 Mar 2005 13:47:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2CLkaMp007353 for ; Sat, 12 Mar 2005 13:46:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2CLkZge016286 for ; Sat, 12 Mar 2005 13:46:35 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2CLkZac096541 for ; Sat, 12 Mar 2005 13:46:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2CLkZha096540 for xorp-cvs@icir.org; Sat, 12 Mar 2005 21:46:35 GMT (envelope-from pavlin) Date: Sat, 12 Mar 2005 21:46:35 GMT From: Pavlin Radoslavov Message-Id: <200503122146.j2CLkZha096540@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-12 21:46:35 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add a note about OpenBSD-3.6-current Revision Changes Path 1.21 +2 -1 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Sun Mar 13 02:13:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 12 Mar 2005 18:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2D2E1e9063002 for ; Sat, 12 Mar 2005 18:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2D2E1i7018490 for ; Sat, 12 Mar 2005 18:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2D2E1Mp013155; Sat, 12 Mar 2005 18:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2D2D4Mp013136 for ; Sat, 12 Mar 2005 18:13:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2D2D3Hl018486 for ; Sat, 12 Mar 2005 18:13:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2D2D3id098239 for ; Sat, 12 Mar 2005 18:13:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2D2D3dQ098238 for xorp-cvs@icir.org; Sun, 13 Mar 2005 02:13:03 GMT (envelope-from pavlin) Date: Sun, 13 Mar 2005 02:13:03 GMT From: Pavlin Radoslavov Message-Id: <200503130213.j2D2D3dQ098238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-13 02:13:03 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.79 +7 -1 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Mon Mar 14 18:59:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 11:00:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ04GF057651 for ; Mon, 14 Mar 2005 11:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ04ET045847 for ; Mon, 14 Mar 2005 11:00:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EJ03Mp015191; Mon, 14 Mar 2005 11:00:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EIxBMp015153 for ; Mon, 14 Mar 2005 10:59:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EIxBXd045831 for ; Mon, 14 Mar 2005 10:59:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2EIxBH1021030 for ; Mon, 14 Mar 2005 10:59:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2EIxBPN021029 for xorp-cvs@icir.org; Mon, 14 Mar 2005 18:59:11 GMT (envelope-from pavlin) Date: Mon, 14 Mar 2005 18:59:11 GMT From: Pavlin Radoslavov Message-Id: <200503141859.j2EIxBPN021029@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-14 18:59:11 UTC XORP CVS repository Modified files: pim pim_bsr.cc pim_bsr.hh Log message: Add a new method PimBsr::clear() and call it from within the PimBsr destructor. Revision Changes Path 1.33 +10 -1 xorp/pim/pim_bsr.cc 1.11 +5 -1 xorp/pim/pim_bsr.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Mon Mar 14 18:59:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 11:00:11 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ0BMn057690 for ; Mon, 14 Mar 2005 11:00:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ0Bq6045866 for ; Mon, 14 Mar 2005 11:00:11 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EJ0AMp015216; Mon, 14 Mar 2005 11:00:10 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EIxoMp015173 for ; Mon, 14 Mar 2005 10:59:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EIxnZ0045835 for ; Mon, 14 Mar 2005 10:59:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2EIxntG021088 for ; Mon, 14 Mar 2005 10:59:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2EIxnEb021087 for xorp-cvs@icir.org; Mon, 14 Mar 2005 18:59:49 GMT (envelope-from pavlin) Date: Mon, 14 Mar 2005 18:59:49 GMT From: Pavlin Radoslavov Message-Id: <200503141859.j2EIxnEb021087@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-14 18:59:49 UTC XORP CVS repository Modified files: pim pim_rp.cc pim_rp.hh Log message: Add a new method RpTable::clear() and call it from within the RpTable destructor. Revision Changes Path 1.9 +10 -1 xorp/pim/pim_rp.cc 1.6 +3 -2 xorp/pim/pim_rp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Mon Mar 14 19:08:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 11:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ91TX059472 for ; Mon, 14 Mar 2005 11:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ91ZO045963 for ; Mon, 14 Mar 2005 11:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EJ91Mp015549; Mon, 14 Mar 2005 11:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EJ8pMp015542 for ; Mon, 14 Mar 2005 11:08:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ8oQl045957 for ; Mon, 14 Mar 2005 11:08:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2EJ8o1m021379 for ; Mon, 14 Mar 2005 11:08:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2EJ8oXZ021378 for xorp-cvs@icir.org; Mon, 14 Mar 2005 19:08:50 GMT (envelope-from pavlin) Date: Mon, 14 Mar 2005 19:08:50 GMT From: Pavlin Radoslavov Message-Id: <200503141908.j2EJ8oXZ021378@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-14 19:08:50 UTC XORP CVS repository Modified files: pim pim_node.cc pim_node.hh Log message: * Reorder the PimBsr and RpTable declaration inside the PimNode class. * Explicitly clear the PimBsr and RpTable within the PimNode destructor to avoid cross-referencing of lists that may be deleted prematurely at the end of the PimNode destructor. This fixes the following warning message when PIM-SM is deleted from the rtrmgr configuration by using the rtrmgr, and when there are RPs received from the BSR: "xorp_pimsm4 in free(): warning: page is already free" Revision Changes Path 1.63 +10 -2 xorp/pim/pim_node.cc 1.42 +2 -2 xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Mon Mar 14 22:39:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 14:40:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2EMe1jU010214 for ; Mon, 14 Mar 2005 14:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EMe1Ee048290 for ; Mon, 14 Mar 2005 14:40:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EMe1Mp023880; Mon, 14 Mar 2005 14:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2EMdaMp023873 for ; Mon, 14 Mar 2005 14:39:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2EMda4J048280 for ; Mon, 14 Mar 2005 14:39:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2EMda5Y023377 for ; Mon, 14 Mar 2005 14:39:36 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2EMdarb023376 for xorp-cvs@icir.org; Mon, 14 Mar 2005 22:39:36 GMT (envelope-from pavlin) Date: Mon, 14 Mar 2005 22:39:36 GMT From: Pavlin Radoslavov Message-Id: <200503142239.j2EMdarb023376@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-14 22:39:35 UTC XORP CVS repository Modified files: cli cli_node.cc cli_node.hh xrl_cli_node.cc Log message: Implement the mechanism for deleting CLI commands from the CliNode. Revision Changes Path 1.22 +42 -6 xorp/cli/cli_node.cc 1.15 +19 -3 xorp/cli/cli_node.hh 1.24 +12 -4 xorp/cli/xrl_cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:09:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:09:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0924K032014 for ; Mon, 14 Mar 2005 16:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F092f2049267 for ; Mon, 14 Mar 2005 16:09:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F092Mp027712; Mon, 14 Mar 2005 16:09:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F090Mp027708 for ; Mon, 14 Mar 2005 16:09:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0906T049265 for ; Mon, 14 Mar 2005 16:09:00 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F090l9024313 for ; Mon, 14 Mar 2005 16:09:00 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F090Us024312 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:09:00 GMT (envelope-from atanu) Date: Tue, 15 Mar 2005 00:09:00 GMT From: Atanu Ghosh Message-Id: <200503150009.j2F090Us024312@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-15 00:09:00 UTC XORP CVS repository Modified files: bgp TODO Log message: * The shutdown code waits for DeleteALLnodes to complete. * After the 1.1-RC increase the window of XRLs from BGP to the RIB to more that 1. * BGP should create its TCP connections through the FEA. Revision Changes Path 1.12 +19 -6 xorp/bgp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:30:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:31:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0V2qH038212 for ; Mon, 14 Mar 2005 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0V2wH049494 for ; Mon, 14 Mar 2005 16:31:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0V1Mp028597; Mon, 14 Mar 2005 16:31:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0UKMp028557 for ; Mon, 14 Mar 2005 16:30:20 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0UKod049487 for ; Mon, 14 Mar 2005 16:30:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0UK0a024647 for ; Mon, 14 Mar 2005 16:30:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0UKWX024646 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:30:20 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:30:20 GMT From: Pavlin Radoslavov Message-Id: <200503150030.j2F0UKWX024646@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:30:20 UTC XORP CVS repository Modified files: pim pim_node.cc pim_node.hh pim_vif.cc Log message: Add a new method PimNode::vif_shutdown_completed() that is called every time a vif has completed it shutdown. Inside this new method we de-register with the RIB and the MFEA. Previously there was a bug that the RIB and MFEA de-registration was never executed. Revision Changes Path 1.64 +36 -11 xorp/pim/pim_node.cc 1.43 +9 -2 xorp/pim/pim_node.hh 1.43 +6 -1 xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:32:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:33:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0X3fm038725 for ; Mon, 14 Mar 2005 16:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0X3IB049520 for ; Mon, 14 Mar 2005 16:33:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0X2Mp028674; Mon, 14 Mar 2005 16:33:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0WeMp028654 for ; Mon, 14 Mar 2005 16:32:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0WeVJ049514 for ; Mon, 14 Mar 2005 16:32:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0WdVY024734 for ; Mon, 14 Mar 2005 16:32:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0Wdgt024733 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:32:39 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:32:39 GMT From: Pavlin Radoslavov Message-Id: <200503150032.j2F0Wdgt024733@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:32:39 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc Log message: Add a new method Mld6igmpNode::vif_shutdown_completed() that is called every time a vif has completed it shutdown. Inside this new method we de-register with the MFEA. Previously there was a bug that the MFEA de-registration wasn't executed at the right time. Revision Changes Path 1.40 +31 -6 xorp/mld6igmp/mld6igmp_node.cc 1.18 +9 -2 xorp/mld6igmp/mld6igmp_node.hh 1.33 +6 -1 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:33:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Y1WY038982 for ; Mon, 14 Mar 2005 16:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Y1L0049535 for ; Mon, 14 Mar 2005 16:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0Y0Mp028742; Mon, 14 Mar 2005 16:34:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0XOMp028704 for ; Mon, 14 Mar 2005 16:33:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0XOrE049527 for ; Mon, 14 Mar 2005 16:33:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0XOqo024789 for ; Mon, 14 Mar 2005 16:33:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0XOdj024788 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:33:24 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:33:24 GMT From: Pavlin Radoslavov Message-Id: <200503150033.j2F0XOdj024788@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:33:24 UTC XORP CVS repository Modified files: fea mfea_node.cc mfea_node.hh mfea_vif.cc Log message: Add a new method MfeaNode::vif_shutdown_completed() that is called every time a vif has completed it shutdown. Inside this new method we de-register with the FEA. Previously there was a bug that the FEA de-registration wasn't executed at the right time. Revision Changes Path 1.48 +31 -6 xorp/fea/mfea_node.cc 1.27 +9 -2 xorp/fea/mfea_node.hh 1.11 +6 -1 xorp/fea/mfea_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:34:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z19N039235 for ; Mon, 14 Mar 2005 16:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z1pZ049555 for ; Mon, 14 Mar 2005 16:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0Z1Mp028818; Mon, 14 Mar 2005 16:35:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0YFMp028763 for ; Mon, 14 Mar 2005 16:34:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0YFKQ049539 for ; Mon, 14 Mar 2005 16:34:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0YFnZ024854 for ; Mon, 14 Mar 2005 16:34:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0YFGe024853 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:34:15 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:34:15 GMT From: Pavlin Radoslavov Message-Id: <200503150034.j2F0YFGe024853@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:34:15 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc Log message: Fix the XrlPimNode::shutdown() implementation and call it as appropriate. Revision Changes Path 1.68 +11 -7 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:34:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:35:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z3mv039270 for ; Mon, 14 Mar 2005 16:35:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z2oM049557 for ; Mon, 14 Mar 2005 16:35:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0Z2Mp028833; Mon, 14 Mar 2005 16:35:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0YeMp028800 for ; Mon, 14 Mar 2005 16:34:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0YexV049543 for ; Mon, 14 Mar 2005 16:34:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0YdT4024909 for ; Mon, 14 Mar 2005 16:34:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0Yd49024908 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:34:39 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:34:39 GMT From: Pavlin Radoslavov Message-Id: <200503150034.j2F0Yd49024908@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:34:39 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc Log message: Fix the XrlMld6igmpNode::shutdown() implementation and call it as appropriate. Revision Changes Path 1.38 +11 -7 xorp/mld6igmp/xrl_mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:35:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0a1YG039550 for ; Mon, 14 Mar 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0a1MM049584 for ; Mon, 14 Mar 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0a1Mp028868; Mon, 14 Mar 2005 16:36:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0Z1Mp028819 for ; Mon, 14 Mar 2005 16:35:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z1DY049551 for ; Mon, 14 Mar 2005 16:35:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Z1aI024975 for ; Mon, 14 Mar 2005 16:35:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0Z1Vj024974 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:35:01 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:35:01 GMT From: Pavlin Radoslavov Message-Id: <200503150035.j2F0Z1Vj024974@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:35:01 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc Log message: Fix the XrlMfeaNode::shutdown() implementation and call it as appropriate. Revision Changes Path 1.41 +11 -7 xorp/fea/xrl_mfea_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:35:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:36:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0a2NG039565 for ; Mon, 14 Mar 2005 16:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0a2rv049586 for ; Mon, 14 Mar 2005 16:36:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0a2Mp028880; Mon, 14 Mar 2005 16:36:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0ZmMp028854 for ; Mon, 14 Mar 2005 16:35:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0Zm0k049581 for ; Mon, 14 Mar 2005 16:35:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0ZmDo025043 for ; Mon, 14 Mar 2005 16:35:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0Zmdu025042 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:35:48 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:35:48 GMT From: Pavlin Radoslavov Message-Id: <200503150035.j2F0Zmdu025042@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:35:48 UTC XORP CVS repository Modified files: static_routes xrl_static_routes_node.cc Log message: Call the XrlStaticRoutesNode shutdown() method as appropriate. Revision Changes Path 1.30 +6 -3 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:36:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0b19S039823 for ; Mon, 14 Mar 2005 16:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0b1f9049599 for ; Mon, 14 Mar 2005 16:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0b1Mp028925; Mon, 14 Mar 2005 16:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0aAMp028893 for ; Mon, 14 Mar 2005 16:36:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0aAGH049593 for ; Mon, 14 Mar 2005 16:36:10 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0aACD025097 for ; Mon, 14 Mar 2005 16:36:10 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0aA65025096 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:36:10 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:36:10 GMT From: Pavlin Radoslavov Message-Id: <200503150036.j2F0aA65025096@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:36:10 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc Log message: Call the XrlFib2mribNode shutdown() method as appropriate. Revision Changes Path 1.30 +6 -3 xorp/fib2mrib/xrl_fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:04 2005 Subject: No subject Tue Mar 15 00:52:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 16:53:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F0r2bd044739 for ; Mon, 14 Mar 2005 16:53:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0r1fj049747 for ; Mon, 14 Mar 2005 16:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0r1Mp029481; Mon, 14 Mar 2005 16:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F0qNMp029460 for ; Mon, 14 Mar 2005 16:52:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F0qNnK049742 for ; Mon, 14 Mar 2005 16:52:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F0qNAC025309 for ; Mon, 14 Mar 2005 16:52:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F0qNfE025308 for xorp-cvs@icir.org; Tue, 15 Mar 2005 00:52:23 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 00:52:23 GMT From: Pavlin Radoslavov Message-Id: <200503150052.j2F0qNfE025308@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 00:52:23 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc Log message: Check the return value when we call send_add_cli_command() and send_delete_cli_command() XRLs and print an error message if there is an error. Revision Changes Path 1.42 +21 -5 xorp/fea/xrl_mfea_node.cc 1.39 +21 -5 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.69 +21 -5 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Tue Mar 15 01:16:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 17:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F1H1Xn053033 for ; Mon, 14 Mar 2005 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F1H1mf050039 for ; Mon, 14 Mar 2005 17:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F1H1Mp000241; Mon, 14 Mar 2005 17:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F1GmMp000228 for ; Mon, 14 Mar 2005 17:16:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F1Gmb2050035 for ; Mon, 14 Mar 2005 17:16:48 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F1GmLi025631 for ; Mon, 14 Mar 2005 17:16:48 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F1GmTF025630 for xorp-cvs@icir.org; Tue, 15 Mar 2005 01:16:48 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 01:16:48 GMT From: Pavlin Radoslavov Message-Id: <200503150116.j2F1GmTF025630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 01:16:48 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc mfea_proto_comm.hh Log message: Impmenent a new method ProtoComm::add_proto_socket_selector() and move the code that assigns a method to read from the protocol socket to that new method. Revision Changes Path 1.24 +25 -5 xorp/fea/mfea_proto_comm.cc 1.7 +8 -1 xorp/fea/mfea_proto_comm.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Tue Mar 15 01:17:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 17:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F1I1EQ053362 for ; Mon, 14 Mar 2005 17:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F1I1PB050050 for ; Mon, 14 Mar 2005 17:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F1I1Mp000279; Mon, 14 Mar 2005 17:18:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F1HpMp000270 for ; Mon, 14 Mar 2005 17:17:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F1HpiZ050048 for ; Mon, 14 Mar 2005 17:17:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F1HpY4025690 for ; Mon, 14 Mar 2005 17:17:51 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F1HpM5025689 for xorp-cvs@icir.org; Tue, 15 Mar 2005 01:17:51 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 01:17:51 GMT From: Pavlin Radoslavov Message-Id: <200503150117.j2F1HpM5025689@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 01:17:51 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc Log message: Bug fix: If there is already an IGMP or ICMPV6 socket and we are closing the mrouter socket, then transfer the selector to the protocol socket. Revision Changes Path 1.27 +5 -2 xorp/fea/mfea_mrouter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Tue Mar 15 07:37:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 14 Mar 2005 23:38:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2F7c1UE074753 for ; Mon, 14 Mar 2005 23:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F7c1tK054050 for ; Mon, 14 Mar 2005 23:38:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F7c1Mp010362; Mon, 14 Mar 2005 23:38:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2F7b9Mp010346 for ; Mon, 14 Mar 2005 23:37:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2F7b99R054044 for ; Mon, 14 Mar 2005 23:37:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2F7b9kJ028653 for ; Mon, 14 Mar 2005 23:37:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2F7b9dO028652 for xorp-cvs@icir.org; Tue, 15 Mar 2005 07:37:09 GMT (envelope-from pavlin) Date: Tue, 15 Mar 2005 07:37:09 GMT From: Pavlin Radoslavov Message-Id: <200503150737.j2F7b9dO028652@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-15 07:37:09 UTC XORP CVS repository Modified files: libcomm comm_user.c Log message: Fix a kdoc comment. Revision Changes Path 1.11 +3 -3 xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 01:36:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 17:37:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G1b1Ct015670 for ; Tue, 15 Mar 2005 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G1b11s067983 for ; Tue, 15 Mar 2005 17:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G1b1Mp015931; Tue, 15 Mar 2005 17:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G1awMp015925 for ; Tue, 15 Mar 2005 17:36:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G1awn1067981 for ; Tue, 15 Mar 2005 17:36:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G1aw5b082352 for ; Tue, 15 Mar 2005 17:36:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G1awTb082351 for xorp-cvs@icir.org; Wed, 16 Mar 2005 01:36:58 GMT (envelope-from pavlin) Date: Wed, 16 Mar 2005 01:36:58 GMT From: Pavlin Radoslavov Message-Id: <200503160136.j2G1awTb082351@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-16 01:36:58 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_click.cc xorp_fea_click_config_generator Log message: * Add support for IPv6 Click configuration (a patch from Marko Zec). For now the IPv6 path generation is disabled by default, because: - There are few incomplete IPv6-related pieces. - Currently the lastest Click release (1.4.3) does not support an IPv6 lookup element that has "add" and "delete" handlers to add/delete routing entries. [Note that the lastest implementation of the LookupIP6Route() in the CVS tree supports those two handlers]. * Now the pre-defined Click lookup element names are _xorp_rt4 and _xorp_rt6 for IPv4 and IPv6 respectively. Previously, the pre-defined name was _xorp_rt and was used only for IPv4 purpose. Submitted by: Marko Zec Revision Changes Path 1.22 +13 -7 xorp/fea/fticonfig_entry_set_click.cc 1.12 +233 -63 xorp/fea/xorp_fea_click_config_generator _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 01:59:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 18:00:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G202l2022442 for ; Tue, 15 Mar 2005 18:00:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G201Ws068236 for ; Tue, 15 Mar 2005 18:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G201Mp016509; Tue, 15 Mar 2005 18:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G1xIMp016495 for ; Tue, 15 Mar 2005 17:59:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G1xI2P068216 for ; Tue, 15 Mar 2005 17:59:18 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G1xHiF082636 for ; Tue, 15 Mar 2005 17:59:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G1xHK9082635 for xorp-cvs@icir.org; Wed, 16 Mar 2005 01:59:17 GMT (envelope-from atanu) Date: Wed, 16 Mar 2005 01:59:17 GMT From: Atanu Ghosh Message-Id: <200503160159.j2G1xHK9082635@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-16 01:59:17 UTC XORP CVS repository Modified files: libxorp test_trie.cc trie.hh Log message: The method find_subtree() could return subtrees above the current key. Check that any candidate is contained by the key. There is also a regression test to demonstrate the problem. Hopefully this will fix the problem with the next hop registration in the RIB. Bug found by: Pavlin Revision Changes Path 1.8 +52 -1 xorp/libxorp/test_trie.cc 1.21 +3 -2 xorp/libxorp/trie.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 02:03:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 18:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G241qk023459 for ; Tue, 15 Mar 2005 18:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G241BZ068282 for ; Tue, 15 Mar 2005 18:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G241Mp016623; Tue, 15 Mar 2005 18:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G237Mp016593 for ; Tue, 15 Mar 2005 18:03:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G2372K068276 for ; Tue, 15 Mar 2005 18:03:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G236gd082880 for ; Tue, 15 Mar 2005 18:03:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G2364F082879 for xorp-cvs@icir.org; Wed, 16 Mar 2005 02:03:06 GMT (envelope-from pavlin) Date: Wed, 16 Mar 2005 02:03:06 GMT From: Pavlin Radoslavov Message-Id: <200503160203.j2G2364F082879@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp xorp/mibs xorp/mibs/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-16 02:03:06 UTC XORP CVS repository Modified files: docs/snmp Makefile.am mibs Makefile.am mibs/tests Makefile.am test_bgpmib.sh.in Log message: Replace the "Header" CVS tag with "XORP" (as everywhere else in the code). Bug found by: Bruce Simpson Revision Changes Path 1.3 +1 -1 xorp/docs/snmp/Makefile.am 1.29 +1 -1 xorp/mibs/Makefile.am 1.3 +1 -1 xorp/mibs/tests/Makefile.am 1.33 +1 -1 xorp/mibs/tests/test_bgpmib.sh.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 02:07:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 18:08:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G282q7024495 for ; Tue, 15 Mar 2005 18:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G282Ws068344 for ; Tue, 15 Mar 2005 18:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G282Mp016767; Tue, 15 Mar 2005 18:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G27bMp016750 for ; Tue, 15 Mar 2005 18:07:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G27bQ7068332 for ; Tue, 15 Mar 2005 18:07:37 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G27blH082953 for ; Tue, 15 Mar 2005 18:07:37 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G27b7e082952 for xorp-cvs@icir.org; Wed, 16 Mar 2005 02:07:37 GMT (envelope-from atanu) Date: Wed, 16 Mar 2005 02:07:37 GMT From: Atanu Ghosh Message-Id: <200503160207.j2G27b7e082952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-16 02:07:37 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Rather than use to arbitary delay to determine when BGP has dropped its peerings, use "print_peers" to discover when the peerings have been dropped. Add another test (test14) to verify that a route introduced on an I-BGP peering is sent out on an E-BGP peering, if the next hop resolves. Revision Changes Path 1.39 +77 -6 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 02:21:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 18:22:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G2M0Kn027930 for ; Tue, 15 Mar 2005 18:22:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G2M0Dd068481 for ; Tue, 15 Mar 2005 18:22:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G2M0Mp017127; Tue, 15 Mar 2005 18:22:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G2L4Mp017097 for ; Tue, 15 Mar 2005 18:21:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G2L4L4068471 for ; Tue, 15 Mar 2005 18:21:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G2L4Gl083150 for ; Tue, 15 Mar 2005 18:21:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G2L4Je083149 for xorp-cvs@icir.org; Wed, 16 Mar 2005 02:21:04 GMT (envelope-from pavlin) Date: Wed, 16 Mar 2005 02:21:04 GMT From: Pavlin Radoslavov Message-Id: <200503160221.j2G2L4Je083149@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-16 02:21:04 UTC XORP CVS repository Modified files: docs/rib rib.tex Log message: Fix a typo. OLD: "prefix_len <= real_prefix_len" NEW: "prefix_len >= real_prefix_len" Revision Changes Path 1.14 +2 -2 xorp/docs/rib/rib.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 03:36:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 15 Mar 2005 19:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2G3b1ia050506 for ; Tue, 15 Mar 2005 19:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G3b1pM069141 for ; Tue, 15 Mar 2005 19:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G3b1Mp018949; Tue, 15 Mar 2005 19:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2G3aPMp018910 for ; Tue, 15 Mar 2005 19:36:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2G3aPbX069135 for ; Tue, 15 Mar 2005 19:36:25 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2G3aPPq083793 for ; Tue, 15 Mar 2005 19:36:25 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2G3aPoZ083792 for xorp-cvs@icir.org; Wed, 16 Mar 2005 03:36:25 GMT (envelope-from atanu) Date: Wed, 16 Mar 2005 03:36:25 GMT From: Atanu Ghosh Message-Id: <200503160336.j2G3aPoZ083792@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-16 03:36:25 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Also return a real_prefix_length even if the next hop does not resolve, otherwise the sanity checking code in BGP get surprised. Revision Changes Path 1.50 +3 -3 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 20:42:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 12:43:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2GKh2Wf030909 for ; Wed, 16 Mar 2005 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2GKh28D081793 for ; Wed, 16 Mar 2005 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2GKh1Mp019510; Wed, 16 Mar 2005 12:43:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2GKgwMp019501 for ; Wed, 16 Mar 2005 12:42:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2GKgwiQ081791 for ; Wed, 16 Mar 2005 12:42:58 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2GKgwjj094911 for ; Wed, 16 Mar 2005 12:42:58 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2GKgwjk094910 for xorp-cvs@icir.org; Wed, 16 Mar 2005 20:42:58 GMT (envelope-from bms) Date: Wed, 16 Mar 2005 20:42:58 GMT From: Bruce Simpson Message-Id: <200503162042.j2GKgwjk094910@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libfeaclient Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-03-16 20:42:58 UTC XORP CVS repository Modified files: libfeaclient test_remote_copy.cc Log message: Nuke a redundant #ident string. Revision Changes Path 1.10 +1 -3 xorp/libfeaclient/test_remote_copy.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Wed Mar 16 21:54:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 13:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2GLt1ai048476 for ; Wed, 16 Mar 2005 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2GLt1i0082810 for ; Wed, 16 Mar 2005 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2GLt1Mp022061; Wed, 16 Mar 2005 13:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2GLstMp022052 for ; Wed, 16 Mar 2005 13:54:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2GLsttb082799 for ; Wed, 16 Mar 2005 13:54:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2GLssIA095751 for ; Wed, 16 Mar 2005 13:54:54 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2GLssnx095750 for xorp-cvs@icir.org; Wed, 16 Mar 2005 21:54:54 GMT (envelope-from pavlin) Date: Wed, 16 Mar 2005 21:54:54 GMT From: Pavlin Radoslavov Message-Id: <200503162154.j2GLssnx095750@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-16 21:54:54 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc Log message: Move the incr_startup_requests_n() and incr_shutdown_requests_n() calls to the place where an XRL event is scheduled, rather than the place that the XRL is sent. Revision Changes Path 1.40 +17 -25 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.70 +17 -25 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 01:43:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 17:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2H1i0Cs011119 for ; Wed, 16 Mar 2005 17:44:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H1i0il085236 for ; Wed, 16 Mar 2005 17:44:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H1i0Mp028647; Wed, 16 Mar 2005 17:44:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H1hLMp028619 for ; Wed, 16 Mar 2005 17:43:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H1hLnK085233 for ; Wed, 16 Mar 2005 17:43:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2H1hLCq097818 for ; Wed, 16 Mar 2005 17:43:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2H1hLd2097817 for xorp-cvs@icir.org; Thu, 17 Mar 2005 01:43:21 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 01:43:21 GMT From: Pavlin Radoslavov Message-Id: <200503170143.j2H1hLd2097817@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 01:43:21 UTC XORP CVS repository Modified files: rtrmgr main_rtrmgr.cc Log message: * Add command-line options -a and -n to specify an address or a subnet to accept finder connections from. * Change the previously existing command-line option -n to -N That option was used to disable executing of XRLs. Approved by: Atanu Revision Changes Path 1.58 +32 -4 xorp/rtrmgr/main_rtrmgr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 02:29:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 18:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2H2U12s022857 for ; Wed, 16 Mar 2005 18:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H2U1R5085686 for ; Wed, 16 Mar 2005 18:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H2U0Mp029648; Wed, 16 Mar 2005 18:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H2TBMp029616 for ; Wed, 16 Mar 2005 18:29:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H2TB8s085676 for ; Wed, 16 Mar 2005 18:29:11 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2H2TBeN098210 for ; Wed, 16 Mar 2005 18:29:11 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2H2TBrj098209 for xorp-cvs@icir.org; Thu, 17 Mar 2005 02:29:11 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 02:29:11 GMT From: Pavlin Radoslavov Message-Id: <200503170229.j2H2TBrj098209@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 02:29:11 UTC XORP CVS repository Modified files: libxipc finder_tcp.cc finder_tcp.hh Log message: Remove the FINDER_TCP_BUFFER_BYTES upper limit of the input TCP buffer size, because it is not needed. Revision Changes Path 1.21 +2 -2 xorp/libxipc/finder_tcp.cc 1.13 +1 -4 xorp/libxipc/finder_tcp.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 03:54:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 19:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2H3t1jc065581 for ; Wed, 16 Mar 2005 19:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H3t1Db086405 for ; Wed, 16 Mar 2005 19:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H3t1Mp001490; Wed, 16 Mar 2005 19:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H3srMp001482 for ; Wed, 16 Mar 2005 19:54:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H3sqqV086397 for ; Wed, 16 Mar 2005 19:54:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2H3sqQS098805 for ; Wed, 16 Mar 2005 19:54:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2H3sqO3098804 for xorp-cvs@icir.org; Thu, 17 Mar 2005 03:54:52 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 03:54:52 GMT From: Pavlin Radoslavov Message-Id: <200503170354.j2H3sqO3098804@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 03:54:52 UTC XORP CVS repository Modified files: libxipc xrl_router.cc Log message: Try to get the "XORP_FINDER_CLIENT_ADDRESS" value from the environment, and then use it to set the local preferred IP address for XRL communications. Requested by: Atanu Revision Changes Path 1.44 +17 -1 xorp/libxipc/xrl_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 04:18:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 16 Mar 2005 20:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2H4J1UG069356 for ; Wed, 16 Mar 2005 20:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H4J1OR086631 for ; Wed, 16 Mar 2005 20:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H4J1Mp001968; Wed, 16 Mar 2005 20:19:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2H4IOMp001953 for ; Wed, 16 Mar 2005 20:18:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2H4IOaW086627 for ; Wed, 16 Mar 2005 20:18:24 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2H4IN5M099014 for ; Wed, 16 Mar 2005 20:18:23 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2H4INut099013 for xorp-cvs@icir.org; Thu, 17 Mar 2005 04:18:23 GMT (envelope-from atanu) Date: Thu, 17 Mar 2005 04:18:23 GMT From: Atanu Ghosh Message-Id: <200503170418.j2H4INut099013@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-17 04:18:23 UTC XORP CVS repository Modified files: libxipc sockutil.cc Log message: Comment out the XLOG_INFO message when we change the preferred address for XRL communications. Revision Changes Path 1.12 +3 -3 xorp/libxipc/sockutil.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 18:50:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 10:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2HIp1xd014982 for ; Thu, 17 Mar 2005 10:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HIp1bQ097611 for ; Thu, 17 Mar 2005 10:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HIp1Mp027037; Thu, 17 Mar 2005 10:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HIo0Mp027012 for ; Thu, 17 Mar 2005 10:50:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HIo0FM097584 for ; Thu, 17 Mar 2005 10:50:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2HIo06T008825 for ; Thu, 17 Mar 2005 10:50:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2HIo0fc008824 for xorp-cvs@icir.org; Thu, 17 Mar 2005 18:50:00 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 18:50:00 GMT From: Pavlin Radoslavov Message-Id: <200503171850.j2HIo0fc008824@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 18:50:00 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc xrl_pim_node.hh Log message: Refactor the mechanism for sending-out XRLs during startup and shutdown, so now there is a single queue of outstanding tasks to preserve the ordering. Currently, this queue includes only the tasks whose ordering is important during startup and shutdown. This fixes the last outstanding issues with Bugzilla entry #71 Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=71 Revision Changes Path 1.71 +216 -119 xorp/pim/xrl_pim_node.cc 1.49 +80 -4 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 19:40:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 11:41:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2HJf2oj025121 for ; Thu, 17 Mar 2005 11:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJf2gJ098155 for ; Thu, 17 Mar 2005 11:41:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJf1Mp029122; Thu, 17 Mar 2005 11:41:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJewMp029108 for ; Thu, 17 Mar 2005 11:40:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJew6C098151 for ; Thu, 17 Mar 2005 11:40:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2HJewxl009369 for ; Thu, 17 Mar 2005 11:40:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2HJewTP009368 for xorp-cvs@icir.org; Thu, 17 Mar 2005 19:40:58 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 19:40:58 GMT From: Pavlin Radoslavov Message-Id: <200503171940.j2HJewTP009368@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 19:40:58 UTC XORP CVS repository Modified files: libxipc sockutil.hh Log message: Fix the kdoc comment for if_get_preferred() so now it is in sync with the implementation. Revision Changes Path 1.8 +4 -3 xorp/libxipc/sockutil.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:05 2005 Subject: No subject Thu Mar 17 19:44:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 11:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2HJj1vM025899 for ; Thu, 17 Mar 2005 11:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJj1iY098186 for ; Thu, 17 Mar 2005 11:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJj1Mp029275; Thu, 17 Mar 2005 11:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJirMp029269 for ; Thu, 17 Mar 2005 11:44:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJir0d098181 for ; Thu, 17 Mar 2005 11:44:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2HJirCg009431 for ; Thu, 17 Mar 2005 11:44:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2HJir1W009430 for xorp-cvs@icir.org; Thu, 17 Mar 2005 19:44:53 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 19:44:53 GMT From: Pavlin Radoslavov Message-Id: <200503171944.j2HJir1W009430@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 19:44:53 UTC XORP CVS repository Modified files: pim TODO xrl_pim_node.cc xrl_pim_node.hh Log message: Unite the implementation of send_mfea_add_protocol() and send_mfea_delete_protocol(). Also, unite the implementation of their corresponding callbacks: mfea_client_send_add_protocol_cb() and mfea_client_send_delete_protocol_cb() Revision Changes Path 1.80 +11 -1 xorp/pim/TODO 1.72 +92 -174 xorp/pim/xrl_pim_node.cc 1.50 +4 -11 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Thu Mar 17 19:45:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 11:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2HJk17W026148 for ; Thu, 17 Mar 2005 11:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJk1bL098218 for ; Thu, 17 Mar 2005 11:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJk0Mp029317; Thu, 17 Mar 2005 11:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HJjlMp029303 for ; Thu, 17 Mar 2005 11:45:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HJjlmh098216 for ; Thu, 17 Mar 2005 11:45:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2HJjk1W009520 for ; Thu, 17 Mar 2005 11:45:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2HJjka1009519 for xorp-cvs@icir.org; Thu, 17 Mar 2005 19:45:46 GMT (envelope-from pavlin) Date: Thu, 17 Mar 2005 19:45:46 GMT From: Pavlin Radoslavov Message-Id: <200503171945.j2HJjka1009519@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-17 19:45:46 UTC XORP CVS repository Modified files: pim TODO Log message: Take-out the previous commit that went-in by accident. Revision Changes Path 1.81 +1 -11 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Thu Mar 17 23:24:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 15:25:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2HNP3Vn080218 for ; Thu, 17 Mar 2005 15:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HNP3Pq000689 for ; Thu, 17 Mar 2005 15:25:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HNP2Mp007013; Thu, 17 Mar 2005 15:25:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2HNO4Mp006943 for ; Thu, 17 Mar 2005 15:24:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2HNO4WT000678 for ; Thu, 17 Mar 2005 15:24:04 -0800 (PST) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2HNO4eg011472 for ; Thu, 17 Mar 2005 15:24:04 -0800 (PST) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2HNO4Uk011471 for xorp-cvs@icir.org; Thu, 17 Mar 2005 23:24:04 GMT (envelope-from bms) Date: Thu, 17 Mar 2005 23:24:04 GMT From: Bruce Simpson Message-Id: <200503172324.j2HNO4Uk011471@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-03-17 23:24:04 UTC XORP CVS repository Modified files: . bootstrap Log message: When cleaning up after a bootstrap run, run ${AUTOCONF} through basename(1), because it may specify a fully qualified path to an autoconf script. This fixes an issue whereby the autom4te cache may not be removed after a bootstrap run, which makes preparing Perforce change-lists a pain in the neck using find(1). Revision Changes Path 1.23 +2 -2 xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 00:04:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 16:05:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I052DL000667 for ; Thu, 17 Mar 2005 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I052WV001063 for ; Thu, 17 Mar 2005 16:05:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I052Mp008317; Thu, 17 Mar 2005 16:05:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I04dMp008286 for ; Thu, 17 Mar 2005 16:04:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I04dnF001056 for ; Thu, 17 Mar 2005 16:04:39 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I04dPT011812 for ; Thu, 17 Mar 2005 16:04:39 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I04dBk011811 for xorp-cvs@icir.org; Fri, 18 Mar 2005 00:04:39 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 00:04:39 GMT From: Pavlin Radoslavov Message-Id: <200503180004.j2I04dBk011811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 00:04:39 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc xrl_pim_node.hh Log message: Refactor the queueing mechanism for sending XRLs so now all XRLs to the MFEA are on a single queue: startup and shutdown events, add/delete MFC entries, etc. Revision Changes Path 1.73 +288 -260 xorp/pim/xrl_pim_node.cc 1.51 +147 -164 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 00:14:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 16:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I0F1T4008220 for ; Thu, 17 Mar 2005 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I0F1YW001154 for ; Thu, 17 Mar 2005 16:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I0F1Mp008683; Thu, 17 Mar 2005 16:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I0E5Mp008649 for ; Thu, 17 Mar 2005 16:14:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I0E5WS001138 for ; Thu, 17 Mar 2005 16:14:05 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I0E5uk011924 for ; Thu, 17 Mar 2005 16:14:05 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I0E5qK011923 for xorp-cvs@icir.org; Fri, 18 Mar 2005 00:14:05 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 00:14:05 GMT From: Pavlin Radoslavov Message-Id: <200503180014.j2I0E5qK011923@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 00:14:05 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc Log message: Add XLOG_ASSERT() checks, and remove obsolete checks about the size of the _xrl_tasks_queue size. Revision Changes Path 1.74 +13 -19 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 01:16:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 17:17:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I1H0BO025791 for ; Thu, 17 Mar 2005 17:17:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1H0Wl001747 for ; Thu, 17 Mar 2005 17:17:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1H0Mp010644; Thu, 17 Mar 2005 17:17:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1GvMp010638 for ; Thu, 17 Mar 2005 17:16:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1Gva3001745 for ; Thu, 17 Mar 2005 17:16:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I1Gvd5012477 for ; Thu, 17 Mar 2005 17:16:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I1Gv4A012476 for xorp-cvs@icir.org; Fri, 18 Mar 2005 01:16:57 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 01:16:57 GMT From: Pavlin Radoslavov Message-Id: <200503180116.j2I1Gv4A012476@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 01:16:57 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc xrl_pim_node.hh Log message: Editorial cleanup. Revision Changes Path 1.75 +64 -76 xorp/pim/xrl_pim_node.cc 1.52 +1 -2 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 01:18:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 17:19:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I1J3UX026300 for ; Thu, 17 Mar 2005 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1J3OF001764 for ; Thu, 17 Mar 2005 17:19:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1J2Mp010691; Thu, 17 Mar 2005 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1IDMp010675 for ; Thu, 17 Mar 2005 17:18:14 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1IDn2001757 for ; Thu, 17 Mar 2005 17:18:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I1IDaQ012538 for ; Thu, 17 Mar 2005 17:18:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I1IDNX012537 for xorp-cvs@icir.org; Fri, 18 Mar 2005 01:18:13 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 01:18:13 GMT From: Pavlin Radoslavov Message-Id: <200503180118.j2I1IDNX012537@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 01:18:13 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: Refactor the queueing mechanism for sending XRLs so now all XRLs to the MFEA are on a single queue: startup and shutdown events, etc. Revision Changes Path 1.41 +255 -262 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.28 +93 -23 xorp/mld6igmp/xrl_mld6igmp_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 01:44:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 17:45:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I1j26v033957 for ; Thu, 17 Mar 2005 17:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1j23Q002030 for ; Thu, 17 Mar 2005 17:45:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1j2Mp011508; Thu, 17 Mar 2005 17:45:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1i7Mp011453 for ; Thu, 17 Mar 2005 17:44:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1i661002009 for ; Thu, 17 Mar 2005 17:44:06 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I1i6BP012786 for ; Thu, 17 Mar 2005 17:44:06 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I1i6FP012785 for xorp-cvs@icir.org; Fri, 18 Mar 2005 01:44:06 GMT (envelope-from atanu) Date: Fri, 18 Mar 2005 01:44:06 GMT From: Atanu Ghosh Message-Id: <200503180144.j2I1i6FP012785@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-18 01:44:06 UTC XORP CVS repository Modified files: libxipc call_xrl.cc Log message: If the response from the XRL didn't return anything don't print a newline. Revision Changes Path 1.30 +5 -3 xorp/libxipc/call_xrl.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 01:44:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 17:45:07 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I1j6C1033999 for ; Thu, 17 Mar 2005 17:45:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1j636002049 for ; Thu, 17 Mar 2005 17:45:06 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1j6Mp011531; Thu, 17 Mar 2005 17:45:06 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I1inMp011474 for ; Thu, 17 Mar 2005 17:44:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I1inWq002019 for ; Thu, 17 Mar 2005 17:44:49 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I1inoe012834 for ; Thu, 17 Mar 2005 17:44:49 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I1inRO012833 for xorp-cvs@icir.org; Fri, 18 Mar 2005 01:44:49 GMT (envelope-from atanu) Date: Fri, 18 Mar 2005 01:44:49 GMT From: Atanu Ghosh Message-Id: <200503180144.j2I1inRO012833@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-18 01:44:49 UTC XORP CVS repository Modified files: bgp/harness xrl_shell_funcs.sh Log message: Now that call_xrl is not printing newlines, add an extra newline. Revision Changes Path 1.9 +2 -2 xorp/bgp/harness/xrl_shell_funcs.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 03:36:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 19:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I3b1ck066141 for ; Thu, 17 Mar 2005 19:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I3b1Ma003282 for ; Thu, 17 Mar 2005 19:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I3b1Mp015079; Thu, 17 Mar 2005 19:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I3aOMp015066 for ; Thu, 17 Mar 2005 19:36:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I3aOXH003276 for ; Thu, 17 Mar 2005 19:36:24 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I3aO1P013761 for ; Thu, 17 Mar 2005 19:36:24 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I3aOVG013760 for xorp-cvs@icir.org; Fri, 18 Mar 2005 03:36:24 GMT (envelope-from atanu) Date: Fri, 18 Mar 2005 03:36:24 GMT From: Atanu Ghosh Message-Id: <200503180336.j2I3aOVG013760@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-18 03:36:24 UTC XORP CVS repository Modified files: bgp peer.cc Log message: Don't print warning message if we don't see the local preference attribute on an I-BGP peering. Don't print a warning message if we do see the local preference attribute on an E-BGP peering. One of the regression tests sends a few thousand update packets without the local preference attribute on an I-BGP peering. Revision Changes Path 1.90 +3 -2 xorp/bgp/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 03:46:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 19:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I3l1JV068734 for ; Thu, 17 Mar 2005 19:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I3l0gk003366 for ; Thu, 17 Mar 2005 19:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I3l0Mp015301; Thu, 17 Mar 2005 19:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I3kAMp015283 for ; Thu, 17 Mar 2005 19:46:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I3kAES003363 for ; Thu, 17 Mar 2005 19:46:10 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I3k9Lc013919 for ; Thu, 17 Mar 2005 19:46:09 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I3k9Fn013918 for xorp-cvs@icir.org; Fri, 18 Mar 2005 03:46:09 GMT (envelope-from atanu) Date: Fri, 18 Mar 2005 03:46:09 GMT From: Atanu Ghosh Message-Id: <200503180346.j2I3k9Fn013918@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-18 03:46:09 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Added files: bgp/harness lookup.py Log message: Two new test test15 and test16. These tests verify that all the routes that are injected on a peering actually appear at the other peer. Also verifies that routes that arrive were actually sent. Revision Changes Path 1.1 +95 -0 xorp/bgp/harness/lookup.py (new) 1.40 +156 -5 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:06 2005 Subject: No subject Fri Mar 18 05:21:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 17 Mar 2005 21:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I5M17h027809 for ; Thu, 17 Mar 2005 21:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I5M1wI004157 for ; Thu, 17 Mar 2005 21:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I5M1Mp017543; Thu, 17 Mar 2005 21:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I5LGMp017514 for ; Thu, 17 Mar 2005 21:21:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I5LFsv004150 for ; Thu, 17 Mar 2005 21:21:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I5LFGK047698 for ; Thu, 17 Mar 2005 21:21:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I5LFjZ047697 for xorp-cvs@icir.org; Fri, 18 Mar 2005 05:21:15 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 05:21:15 GMT From: Pavlin Radoslavov Message-Id: <200503180521.j2I5LFjZ047697@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 05:21:15 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.hh pim xrl_pim_node.hh Log message: Change some of the private methods to public to fix a gcc-2.9x compilation problem. Bug found by: Atanu Revision Changes Path 1.29 +10 -6 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.53 +12 -7 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Fri Mar 18 08:15:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Mar 2005 00:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2I8G1QS001903 for ; Fri, 18 Mar 2005 00:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I8G1vE005888 for ; Fri, 18 Mar 2005 00:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I8G1Mp021785; Fri, 18 Mar 2005 00:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2I8F5Mp021766 for ; Fri, 18 Mar 2005 00:15:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2I8F5TC005866 for ; Fri, 18 Mar 2005 00:15:05 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2I8F5M8049178 for ; Fri, 18 Mar 2005 00:15:05 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2I8F5ij049177 for xorp-cvs@icir.org; Fri, 18 Mar 2005 08:15:05 GMT (envelope-from mjh) Date: Fri, 18 Mar 2005 08:15:05 GMT From: Mark Handley Message-Id: <200503180815.j2I8F5ij049177@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-18 08:15:05 UTC XORP CVS repository Modified files: bgp peer_route_pair.hh route_queue.hh route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_policy.cc route_table_policy.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh test_dump.cc test_dump.reference test_fanout.cc test_fanout.reference test_ribout.reference Log message: Rewrite of BGP output branch flow control. The old code pushed changes from fanout to ribout, unless told not to. This meant no one place was responsible for clocking data through - sometimes it was pushed and sometimes it was effectively pulled. The new code always queues in fanout. Then changes are pulled from the ribout using get_next_message(). If the ribout was idle, then there's a new wakeup() call that fanout sends downstream to wake the ribout up. This all makes it much clearer who is in control, so the code (especially in DumpTable) is much easier to understand. All tinderbox checks appear to pass, but not yet tested in the wild. Revision Changes Path 1.9 +12 -9 xorp/bgp/peer_route_pair.hh 1.11 +6 -1 xorp/bgp/route_queue.hh 1.8 +9 -1 xorp/bgp/route_table_base.cc 1.11 +2 -2 xorp/bgp/route_table_base.hh 1.30 +2 -12 xorp/bgp/route_table_cache.cc 1.19 +1 -2 xorp/bgp/route_table_cache.hh 1.11 +10 -1 xorp/bgp/route_table_debug.cc 1.9 +6 -1 xorp/bgp/route_table_debug.hh 1.18 +1 -6 xorp/bgp/route_table_decision.hh 1.33 +29 -102 xorp/bgp/route_table_dump.cc 1.16 +3 -3 xorp/bgp/route_table_dump.hh 1.46 +54 -75 xorp/bgp/route_table_fanout.cc 1.17 +2 -2 xorp/bgp/route_table_fanout.hh 1.26 +1 -11 xorp/bgp/route_table_filter.cc 1.13 +1 -2 xorp/bgp/route_table_filter.hh 1.4 +1 -13 xorp/bgp/route_table_policy.cc 1.4 +1 -2 xorp/bgp/route_table_policy.hh 1.36 +2 -2 xorp/bgp/route_table_ribin.cc 1.21 +1 -6 xorp/bgp/route_table_ribin.hh 1.24 +38 -30 xorp/bgp/route_table_ribout.cc 1.11 +7 -9 xorp/bgp/route_table_ribout.hh 1.43 +22 -2 xorp/bgp/test_dump.cc 1.13 +131 -118 xorp/bgp/test_dump.reference 1.23 +20 -12 xorp/bgp/test_fanout.cc 1.5 +9 -16 xorp/bgp/test_fanout.reference 1.4 +0 -2 xorp/bgp/test_ribout.reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Fri Mar 18 18:41:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Mar 2005 10:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2IIg1Fi031018 for ; Fri, 18 Mar 2005 10:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2IIg14m014318 for ; Fri, 18 Mar 2005 10:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2IIg0Mp009555; Fri, 18 Mar 2005 10:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2IIfMMp009538 for ; Fri, 18 Mar 2005 10:41:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2IIfLf2014312 for ; Fri, 18 Mar 2005 10:41:21 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2IIfL4U057245 for ; Fri, 18 Mar 2005 10:41:21 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2IIfLKK057244 for xorp-cvs@icir.org; Fri, 18 Mar 2005 18:41:21 GMT (envelope-from atanu) Date: Fri, 18 Mar 2005 18:41:21 GMT From: Atanu Ghosh Message-Id: <200503181841.j2IIfLKK057244@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-18 18:41:21 UTC XORP CVS repository Modified files: bgp/harness lookup.py test_peering2.sh Log message: Correct the processing of AS sets and sequences. Account for an NLRI being present multiple times either in the form of repeat NLRIs or withdraws. The regression tests test15 and test16 now pass so add them to the list of working tests. Revision Changes Path 1.2 +24 -6 xorp/bgp/harness/lookup.py 1.41 +4 -3 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Fri Mar 18 21:58:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Mar 2005 13:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2ILx1BG071988 for ; Fri, 18 Mar 2005 13:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2ILx1hK016434 for ; Fri, 18 Mar 2005 13:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2ILx1Mp016237; Fri, 18 Mar 2005 13:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2ILwaMp016218 for ; Fri, 18 Mar 2005 13:58:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2ILwakk016432 for ; Fri, 18 Mar 2005 13:58:36 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2ILwZIC067458 for ; Fri, 18 Mar 2005 13:58:35 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2ILwZqg067457 for xorp-cvs@icir.org; Fri, 18 Mar 2005 21:58:35 GMT (envelope-from pavlin) Date: Fri, 18 Mar 2005 21:58:35 GMT From: Pavlin Radoslavov Message-Id: <200503182158.j2ILwZqg067457@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-18 21:58:35 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc Log message: Bug fix: always reset the value of _proto_socket to -1 when we call close_proto_socket(). Revision Changes Path 1.25 +2 -1 xorp/fea/mfea_proto_comm.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 00:31:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 18 Mar 2005 16:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2J0W21M002694 for ; Fri, 18 Mar 2005 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2J0W1KH018018 for ; Fri, 18 Mar 2005 16:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2J0W1Mp020989; Fri, 18 Mar 2005 16:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2J0ViMp020976 for ; Fri, 18 Mar 2005 16:31:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2J0VhfH018016 for ; Fri, 18 Mar 2005 16:31:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2J0VhWZ068554 for ; Fri, 18 Mar 2005 16:31:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2J0VheX068553 for xorp-cvs@icir.org; Sat, 19 Mar 2005 00:31:43 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 00:31:43 GMT From: Pavlin Radoslavov Message-Id: <200503190031.j2J0VheX068553@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 00:31:43 UTC XORP CVS repository Modified files: fea mfea_node.cc Log message: If we delete a protocol registered within the MFEA, then explicitly stop the protocol on all vifs so there is no leftover state. Revision Changes Path 1.49 +13 -1 xorp/fea/mfea_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 16:01:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 08:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JG21NG092047 for ; Sat, 19 Mar 2005 08:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JG21fT026782 for ; Sat, 19 Mar 2005 08:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JG21BU013920; Sat, 19 Mar 2005 08:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JG1gBU013909 for ; Sat, 19 Mar 2005 08:01:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JG1gI3026778 for ; Sat, 19 Mar 2005 08:01:42 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JG1gUZ075637 for ; Sat, 19 Mar 2005 08:01:42 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JG1gUo075636 for xorp-cvs@icir.org; Sat, 19 Mar 2005 16:01:42 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 16:01:42 GMT From: Mark Handley Message-Id: <200503191601.j2JG1gUo075636@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 16:01:42 UTC XORP CVS repository Modified files: bgp test_dump.cc Log message: remove spurious debugging Revision Changes Path 1.44 +1 -7 xorp/bgp/test_dump.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 16:55:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 08:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JGu1WE004137 for ; Sat, 19 Mar 2005 08:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGu1oh028575 for ; Sat, 19 Mar 2005 08:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGu0BU014947; Sat, 19 Mar 2005 08:56:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGtlBU014937 for ; Sat, 19 Mar 2005 08:55:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGtlZu028565 for ; Sat, 19 Mar 2005 08:55:47 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JGtlY9077437 for ; Sat, 19 Mar 2005 08:55:47 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JGtl2a077436 for xorp-cvs@icir.org; Sat, 19 Mar 2005 16:55:47 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 16:55:47 GMT From: Mark Handley Message-Id: <200503191655.j2JGtl2a077436@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 16:55:46 UTC XORP CVS repository Modified files: bgp test_decision.cc Log message: remove an unimportant memory leak in the test Revision Changes Path 1.30 +4 -1 xorp/bgp/test_decision.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 16:57:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 08:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JGw16k004554 for ; Sat, 19 Mar 2005 08:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGw1jg028592 for ; Sat, 19 Mar 2005 08:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGw1BU015023; Sat, 19 Mar 2005 08:58:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGvGBU015005 for ; Sat, 19 Mar 2005 08:57:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGvGCY028585 for ; Sat, 19 Mar 2005 08:57:16 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JGvGcY077480 for ; Sat, 19 Mar 2005 08:57:16 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JGvG4k077479 for xorp-cvs@icir.org; Sat, 19 Mar 2005 16:57:16 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 16:57:16 GMT From: Mark Handley Message-Id: <200503191657.j2JGvG4k077479@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 16:57:16 UTC XORP CVS repository Modified files: bgp test_cache.cc test_cache.reference Log message: Increase the coverage of one of the tests to check there's no memory leak. There doesn't appear to be any leak (I thought there was from reading the code), but this is a better test anyway. Revision Changes Path 1.22 +13 -3 xorp/bgp/test_cache.cc 1.4 +7 -0 xorp/bgp/test_cache.reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 16:58:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 08:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JGx1IK004731 for ; Sat, 19 Mar 2005 08:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGx1XO028601 for ; Sat, 19 Mar 2005 08:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGx0BU015060; Sat, 19 Mar 2005 08:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JGwaBU015042 for ; Sat, 19 Mar 2005 08:58:36 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JGwa1e028599 for ; Sat, 19 Mar 2005 08:58:36 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JGwase077527 for ; Sat, 19 Mar 2005 08:58:36 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JGwa5G077526 for xorp-cvs@icir.org; Sat, 19 Mar 2005 16:58:36 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 16:58:36 GMT From: Mark Handley Message-Id: <200503191658.j2JGwa5G077526@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 16:58:36 UTC XORP CVS repository Modified files: bgp route_table_decision.cc route_table_decision.hh Log message: Add a destructor to clean up spurious data structures. No real problem cured here, but good to fix anyway. Revision Changes Path 1.35 +15 -1 xorp/bgp/route_table_decision.cc 1.19 +2 -1 xorp/bgp/route_table_decision.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 17:17:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 09:18:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JHI1QC008710 for ; Sat, 19 Mar 2005 09:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JHI1FK028776 for ; Sat, 19 Mar 2005 09:18:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JHI0BU015599; Sat, 19 Mar 2005 09:18:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JHHHBU015571 for ; Sat, 19 Mar 2005 09:17:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JHHHdE028773 for ; Sat, 19 Mar 2005 09:17:17 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JHHHk2077696 for ; Sat, 19 Mar 2005 09:17:17 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JHHHio077695 for xorp-cvs@icir.org; Sat, 19 Mar 2005 17:17:17 GMT (envelope-from atanu) Date: Sat, 19 Mar 2005 17:17:17 GMT From: Atanu Ghosh Message-Id: <200503191717.j2JHHHio077695@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-19 17:17:17 UTC XORP CVS repository Modified files: bgp/harness peer.cc Log message: Correct a comment. Revision Changes Path 1.59 +2 -2 xorp/bgp/harness/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 20:40:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 12:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JKf1An048817 for ; Sat, 19 Mar 2005 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JKf19w030619 for ; Sat, 19 Mar 2005 12:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JKf0BU020223; Sat, 19 Mar 2005 12:41:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JKeYBU020212 for ; Sat, 19 Mar 2005 12:40:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JKeYwS030615 for ; Sat, 19 Mar 2005 12:40:34 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JKeY12079622 for ; Sat, 19 Mar 2005 12:40:34 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JKeYHa079621 for xorp-cvs@icir.org; Sat, 19 Mar 2005 20:40:34 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 20:40:34 GMT From: Mark Handley Message-Id: <200503192040.j2JKeYHa079621@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 20:40:34 UTC XORP CVS repository Modified files: bgp route_table_decision.cc Log message: Remove incorrect erase. Credit to Pavlin for spotting this. Revision Changes Path 1.36 +1 -2 xorp/bgp/route_table_decision.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:07 2005 Subject: No subject Sat Mar 19 20:49:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 12:50:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JKo1TZ050577 for ; Sat, 19 Mar 2005 12:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JKo1WB030693 for ; Sat, 19 Mar 2005 12:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JKo1BU020439; Sat, 19 Mar 2005 12:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JKnvBU020432 for ; Sat, 19 Mar 2005 12:49:57 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JKnvcx030685 for ; Sat, 19 Mar 2005 12:49:57 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JKnvfd079751 for ; Sat, 19 Mar 2005 12:49:57 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JKnv9j079750 for xorp-cvs@icir.org; Sat, 19 Mar 2005 20:49:57 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 20:49:57 GMT From: Mark Handley Message-Id: <200503192049.j2JKnv9j079750@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 20:49:57 UTC XORP CVS repository Modified files: bgp plumbing.cc Log message: Add some more TIMESPENT checks to try and localize a problem seen by Atanu. Revision Changes Path 1.62 +10 -1 xorp/bgp/plumbing.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:01:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JN20gj076686 for ; Sat, 19 Mar 2005 15:02:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JN20EP031853 for ; Sat, 19 Mar 2005 15:02:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JN20BU023594; Sat, 19 Mar 2005 15:02:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JN1XBU023578 for ; Sat, 19 Mar 2005 15:01:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JN1X1a031851 for ; Sat, 19 Mar 2005 15:01:33 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JN1Xkh080998 for ; Sat, 19 Mar 2005 15:01:33 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JN1XaE080997 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:01:33 GMT (envelope-from mjh) Date: Sat, 19 Mar 2005 23:01:33 GMT From: Mark Handley Message-Id: <200503192301.j2JN1XaE080997@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-19 23:01:33 UTC XORP CVS repository Modified files: bgp peer_route_pair.hh route_table_fanout.cc Log message: Add code to sanity-check that a peering is still reading routes. If a route has been queued to send downstream to a peer, and the peer hasn't read from the fanout queue for 20 minutes, abort BGP. 20 minutes should be long enough that the TCP connection should have timed out if the problem was external, so if this is hit, it should be a BGP bug. Revision Changes Path 1.10 +36 -1 xorp/bgp/peer_route_pair.hh 1.47 +4 -1 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:16:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNH1UQ079647 for ; Sat, 19 Mar 2005 15:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNH117031983 for ; Sat, 19 Mar 2005 15:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNH1BU023907; Sat, 19 Mar 2005 15:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNGnBU023894 for ; Sat, 19 Mar 2005 15:16:49 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNGnXw031977 for ; Sat, 19 Mar 2005 15:16:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNGnbY081208 for ; Sat, 19 Mar 2005 15:16:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNGn4A081207 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:16:49 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:16:49 GMT From: Pavlin Radoslavov Message-Id: <200503192316.j2JNGn4A081207@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:16:48 UTC XORP CVS repository Modified files: cli cli_node.cc Log message: * Change the CliNode::start() semantics, so now If CliNode is not enabled, then CliNode::start() returns success. This is needed, so we can always use the start command during initialization even if the entity is disabled. * Call ProtoNode::pending_stop() before calling ProtoNode::stop() during shutdown. Revision Changes Path 1.23 +7 -1 xorp/cli/cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:19:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:20:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNK0uS080231 for ; Sat, 19 Mar 2005 15:20:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNK0El032005 for ; Sat, 19 Mar 2005 15:20:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNK0BU023995; Sat, 19 Mar 2005 15:20:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNJ1BU023971 for ; Sat, 19 Mar 2005 15:19:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNJ1gL031996 for ; Sat, 19 Mar 2005 15:19:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNJ1wd081279 for ; Sat, 19 Mar 2005 15:19:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNJ1v4081278 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:19:01 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:19:01 GMT From: Pavlin Radoslavov Message-Id: <200503192319.j2JNJ1v4081278@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:19:01 UTC XORP CVS repository Modified files: libproto proto_state.cc proto_state.hh Log message: * Add a new method ProtoState::reset() that resets the service to SERVICE_ERADY * Call reset() inside ProtoState::start() so we can restart an entity if it was shutdown previously. Revision Changes Path 1.10 +12 -1 xorp/libproto/proto_state.cc 1.5 +8 -1 xorp/libproto/proto_state.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:24:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNP1GE081239 for ; Sat, 19 Mar 2005 15:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNP1Kr032055 for ; Sat, 19 Mar 2005 15:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNP1BU024118; Sat, 19 Mar 2005 15:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNOrBU024112 for ; Sat, 19 Mar 2005 15:24:53 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNOrSq032050 for ; Sat, 19 Mar 2005 15:24:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNOrOS081386 for ; Sat, 19 Mar 2005 15:24:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNOrAe081385 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:24:53 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:24:53 GMT From: Pavlin Radoslavov Message-Id: <200503192324.j2JNOrAe081385@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:24:53 UTC XORP CVS repository Modified files: fea xrl_mfea_node.hh Log message: Reorder some of the methods declarations. Revision Changes Path 1.22 +46 -47 xorp/fea/xrl_mfea_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:25:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNQ1Dt081480 for ; Sat, 19 Mar 2005 15:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNQ1fp032084 for ; Sat, 19 Mar 2005 15:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNQ1BU024156; Sat, 19 Mar 2005 15:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNPkBU024142 for ; Sat, 19 Mar 2005 15:25:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNPkiH032082 for ; Sat, 19 Mar 2005 15:25:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNPkPk081459 for ; Sat, 19 Mar 2005 15:25:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNPkZU081458 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:25:46 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:25:46 GMT From: Pavlin Radoslavov Message-Id: <200503192325.j2JNPkZU081458@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:25:46 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc Log message: Editorial nits: change few comments, rename variables. Revision Changes Path 1.43 +7 -7 xorp/fea/xrl_mfea_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:26:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNR1AQ081681 for ; Sat, 19 Mar 2005 15:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNR0WP032090 for ; Sat, 19 Mar 2005 15:27:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNR0BU024188; Sat, 19 Mar 2005 15:27:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNQgBU024180 for ; Sat, 19 Mar 2005 15:26:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNQgoB032088 for ; Sat, 19 Mar 2005 15:26:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNQgbQ081502 for ; Sat, 19 Mar 2005 15:26:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNQgbZ081501 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:26:42 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:26:42 GMT From: Pavlin Radoslavov Message-Id: <200503192326.j2JNQgbZ081501@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:26:42 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc Log message: Reorder some of the operations inside MfeaMrouter::start() Revision Changes Path 1.28 +4 -4 xorp/fea/mfea_mrouter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:27:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:28:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNS0P6081890 for ; Sat, 19 Mar 2005 15:28:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNS03D032105 for ; Sat, 19 Mar 2005 15:28:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNS0BU024238; Sat, 19 Mar 2005 15:28:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNRDBU024221 for ; Sat, 19 Mar 2005 15:27:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNRDVr032094 for ; Sat, 19 Mar 2005 15:27:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNRDK9081545 for ; Sat, 19 Mar 2005 15:27:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNRDnv081544 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:27:13 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:27:13 GMT From: Pavlin Radoslavov Message-Id: <200503192327.j2JNRDnv081544@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:27:13 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc Log message: Reorder some of the operations inside ProtoComm::start() Revision Changes Path 1.26 +4 -4 xorp/fea/mfea_proto_comm.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:30:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNV1md082491 for ; Sat, 19 Mar 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNV1is032143 for ; Sat, 19 Mar 2005 15:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNV0BU024307; Sat, 19 Mar 2005 15:31:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNUDBU024290 for ; Sat, 19 Mar 2005 15:30:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNUCJ8032136 for ; Sat, 19 Mar 2005 15:30:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNUCxd081681 for ; Sat, 19 Mar 2005 15:30:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNUCru081680 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:30:12 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:30:12 GMT From: Pavlin Radoslavov Message-Id: <200503192330.j2JNUCru081680@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:30:12 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_click.cc fticonfig_entry_set_click.cc fticonfig_table_get_click.cc fticonfig_table_set_click.cc ifconfig_get_click.cc ifconfig_set_click.cc Log message: If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. Revision Changes Path 1.9 +4 -6 xorp/fea/fticonfig_entry_get_click.cc 1.23 +4 -6 xorp/fea/fticonfig_entry_set_click.cc 1.10 +4 -6 xorp/fea/fticonfig_table_get_click.cc 1.8 +4 -6 xorp/fea/fticonfig_table_set_click.cc 1.8 +4 -6 xorp/fea/ifconfig_get_click.cc 1.21 +4 -6 xorp/fea/ifconfig_set_click.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:31:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNW1JB082701 for ; Sat, 19 Mar 2005 15:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNW1hb032152 for ; Sat, 19 Mar 2005 15:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNW1BU024339; Sat, 19 Mar 2005 15:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNVoBU024333 for ; Sat, 19 Mar 2005 15:31:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNVo42032149 for ; Sat, 19 Mar 2005 15:31:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNVoPb081789 for ; Sat, 19 Mar 2005 15:31:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNVoOg081788 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:31:50 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:31:50 GMT From: Pavlin Radoslavov Message-Id: <200503192331.j2JNVoOg081788@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:31:50 UTC XORP CVS repository Modified files: fea mfea_node_cli.cc Log message: If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. Revision Changes Path 1.14 +4 -1 xorp/fea/mfea_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:33:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:34:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNY18k083097 for ; Sat, 19 Mar 2005 15:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNY13A032171 for ; Sat, 19 Mar 2005 15:34:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNY1BU024395; Sat, 19 Mar 2005 15:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNXFBU024371 for ; Sat, 19 Mar 2005 15:33:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNXFir032165 for ; Sat, 19 Mar 2005 15:33:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNXFrs081849 for ; Sat, 19 Mar 2005 15:33:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNXFvq081848 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:33:15 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:33:15 GMT From: Pavlin Radoslavov Message-Id: <200503192333.j2JNXFvq081848@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:33:15 UTC XORP CVS repository Modified files: fea mfea_vif.cc Log message: * If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. * Call pending_stop() during shutdown of a MfeaVif * Use XLOG_INFO() when we enable or disable a MfeaVif Revision Changes Path 1.12 +13 -1 xorp/fea/mfea_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:41:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNg10v084725 for ; Sat, 19 Mar 2005 15:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNg1g6032280 for ; Sat, 19 Mar 2005 15:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNg1BU024542; Sat, 19 Mar 2005 15:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNf1BU024527 for ; Sat, 19 Mar 2005 15:41:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNf1UD032269 for ; Sat, 19 Mar 2005 15:41:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNf1qA081979 for ; Sat, 19 Mar 2005 15:41:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNf1Rc081978 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:41:01 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:41:01 GMT From: Pavlin Radoslavov Message-Id: <200503192341.j2JNf1Rc081978@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:41:01 UTC XORP CVS repository Modified files: fea mfea_node.cc mfea_node.hh Log message: * Change the return value of start_all_vifs() and stop_all_vifs() so on success the return value is XORP_OK instead of the number of started/stopped vifs. * Remove old kdoc comments * Reorder some of the operations inside MfeaNode::stop() * Remove XLOG_INFO messages when enabling or disabling a vif. Those messages have been moved to the MfeaVif methods that implement the enabling/disabling of a vif. * Remove XLOG_INFO messags when starting or stopping a vif, because they are redundant. * Change the implementation of enable_all_vifs() and disable_all_vifs() so now they use the MfeaVif::enable() and MfeaVif::disable() methods. Revision Changes Path 1.50 +28 -47 xorp/fea/mfea_node.cc 1.28 +3 -5 xorp/fea/mfea_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:43:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNi1qe085131 for ; Sat, 19 Mar 2005 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNi1UB032291 for ; Sat, 19 Mar 2005 15:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNi1BU024604; Sat, 19 Mar 2005 15:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNhPBU024575 for ; Sat, 19 Mar 2005 15:43:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNhPsm032286 for ; Sat, 19 Mar 2005 15:43:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNhP5M082045 for ; Sat, 19 Mar 2005 15:43:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNhP0T082044 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:43:25 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:43:25 GMT From: Pavlin Radoslavov Message-Id: <200503192343.j2JNhP0T082044@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:43:25 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh Log message: * Implement a new class SendProtocolMessage and use it for queueing all protocol messages when sending them to the MFEA. * Fix some comments Revision Changes Path 1.42 +118 -62 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.30 +65 -9 xorp/mld6igmp/xrl_mld6igmp_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:44:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNj1QW085340 for ; Sat, 19 Mar 2005 15:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNj1Bi032304 for ; Sat, 19 Mar 2005 15:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNj1BU024642; Sat, 19 Mar 2005 15:45:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNiIBU024625 for ; Sat, 19 Mar 2005 15:44:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNiI6p032295 for ; Sat, 19 Mar 2005 15:44:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNiI1L082096 for ; Sat, 19 Mar 2005 15:44:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNiIQx082095 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:44:18 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:44:18 GMT From: Pavlin Radoslavov Message-Id: <200503192344.j2JNiIQx082095@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:44:18 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node_cli.cc Log message: If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. Revision Changes Path 1.18 +4 -1 xorp/mld6igmp/mld6igmp_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:45:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNk068085595 for ; Sat, 19 Mar 2005 15:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNk0V3032333 for ; Sat, 19 Mar 2005 15:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNk0BU024679; Sat, 19 Mar 2005 15:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNj3BU024657 for ; Sat, 19 Mar 2005 15:45:03 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNj3cF032308 for ; Sat, 19 Mar 2005 15:45:03 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNj37B082154 for ; Sat, 19 Mar 2005 15:45:03 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNj37D082153 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:45:03 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:45:03 GMT From: Pavlin Radoslavov Message-Id: <200503192345.j2JNj37D082153@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:45:03 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_vif.cc Log message: * If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. * Call pending_stop() during shutdown of a MfeaVif * Use XLOG_INFO() when we enable or disable a MfeaVif Revision Changes Path 1.34 +13 -1 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:50:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNp1Tb086575 for ; Sat, 19 Mar 2005 15:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNp1w7032384 for ; Sat, 19 Mar 2005 15:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNp1BU024769; Sat, 19 Mar 2005 15:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNoJBU024749 for ; Sat, 19 Mar 2005 15:50:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNoJXL032380 for ; Sat, 19 Mar 2005 15:50:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNoI6T082270 for ; Sat, 19 Mar 2005 15:50:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNoIPE082269 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:50:18 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:50:18 GMT From: Pavlin Radoslavov Message-Id: <200503192350.j2JNoIPE082269@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:50:18 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc mld6igmp_node.hh Log message: * Change the return value of start_all_vifs() and stop_all_vifs() so on success the return value is XORP_OK instead of the number of started/stopped vifs. * Remove old kdoc comments * Reorder some of the operations inside Mld6igmpNode::stop() * Remove XLOG_INFO messages when enabling or disabling a vif. Those messages have been moved to the Mld6igmpVif methods that implement the enabling/disabling of a vif. * Remove XLOG_INFO messags when starting or stopping a vif, because they are redundant. * Change the implementation of enable_all_vifs() and disable_all_vifs() so now they use the MfeaVif::enable() and MfeaVif::disable() methods. * Bug fix inside vif_shutdown_completed() method: we will attempt to de-register with the MFEA only if the status of Mld6igmpNode is SERVICE_SHUTTING_DOWN. Otherwise, the operation of shutdown of only a single interface (if the last one) will trigger the de-registration with the MFEA, which may not be the desired action. Revision Changes Path 1.41 +31 -47 xorp/mld6igmp/mld6igmp_node.cc 1.19 +3 -5 xorp/mld6igmp/mld6igmp_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:51:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNq189086784 for ; Sat, 19 Mar 2005 15:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNq1SI032390 for ; Sat, 19 Mar 2005 15:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNq1BU024809; Sat, 19 Mar 2005 15:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNpsBU024803 for ; Sat, 19 Mar 2005 15:51:54 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNprf4032388 for ; Sat, 19 Mar 2005 15:51:53 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNprxB082339 for ; Sat, 19 Mar 2005 15:51:53 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNprUM082338 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:51:53 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:51:53 GMT From: Pavlin Radoslavov Message-Id: <200503192351.j2JNprUM082338@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:51:53 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc xrl_pim_node.hh Log message: * Implement a new class SendProtocolMessage and use it for queueing all protocol messages when sending them to the MFEA. * Fix some comments Revision Changes Path 1.76 +143 -89 xorp/pim/xrl_pim_node.cc 1.54 +65 -11 xorp/pim/xrl_pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:52:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:53:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNr1wB086977 for ; Sat, 19 Mar 2005 15:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNr1NF032406 for ; Sat, 19 Mar 2005 15:53:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNr0BU024831; Sat, 19 Mar 2005 15:53:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNqeBU024824 for ; Sat, 19 Mar 2005 15:52:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNqe0C032404 for ; Sat, 19 Mar 2005 15:52:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNqeqv082392 for ; Sat, 19 Mar 2005 15:52:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNqeXG082391 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:52:40 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:52:40 GMT From: Pavlin Radoslavov Message-Id: <200503192352.j2JNqeXG082391@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:52:40 UTC XORP CVS repository Modified files: pim pim_bsr.cc pim_node_cli.cc Log message: If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. Revision Changes Path 1.34 +4 -1 xorp/pim/pim_bsr.cc 1.33 +4 -1 xorp/pim/pim_node_cli.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:08 2005 Subject: No subject Sat Mar 19 23:53:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNs103087170 for ; Sat, 19 Mar 2005 15:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNs1HT032413 for ; Sat, 19 Mar 2005 15:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNs1BU024863; Sat, 19 Mar 2005 15:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNr6BU024842 for ; Sat, 19 Mar 2005 15:53:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNr6bE032408 for ; Sat, 19 Mar 2005 15:53:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNr6Gn082443 for ; Sat, 19 Mar 2005 15:53:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNr6TQ082442 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:53:06 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:53:06 GMT From: Pavlin Radoslavov Message-Id: <200503192353.j2JNr6TQ082442@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:53:06 UTC XORP CVS repository Modified files: pim pim_rp.cc Log message: If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. Revision Changes Path 1.10 +4 -1 xorp/pim/pim_rp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sat Mar 19 23:55:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNu1se087602 for ; Sat, 19 Mar 2005 15:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNu1a4032446 for ; Sat, 19 Mar 2005 15:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNu1BU024914; Sat, 19 Mar 2005 15:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNt4BU024893 for ; Sat, 19 Mar 2005 15:55:04 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNt4Pj032423 for ; Sat, 19 Mar 2005 15:55:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNt4td082507 for ; Sat, 19 Mar 2005 15:55:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNt4GY082506 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:55:04 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:55:04 GMT From: Pavlin Radoslavov Message-Id: <200503192355.j2JNt4GY082506@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:55:04 UTC XORP CVS repository Modified files: pim pim_vif.cc pim_vif.hh Log message: * If an entity is not enabled, then the "start" operation on that entity will return success. This change in semantics is needed so we can always call "start" during initialization even if the entity is disabled. * Call pending_stop() during shutdown of a PimVif * Use XLOG_INFO() when we enable or disable a PimVif * Cleanup some of the operations inside PimVif::stop() Revision Changes Path 1.44 +17 -21 xorp/pim/pim_vif.cc 1.30 +1 -4 xorp/pim/pim_vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sat Mar 19 23:58:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 15:59:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2JNx13P088168 for ; Sat, 19 Mar 2005 15:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNx19e032457 for ; Sat, 19 Mar 2005 15:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNx1BU024974; Sat, 19 Mar 2005 15:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2JNwTBU024960 for ; Sat, 19 Mar 2005 15:58:29 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2JNwTv9032454 for ; Sat, 19 Mar 2005 15:58:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2JNwTga082590 for ; Sat, 19 Mar 2005 15:58:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2JNwTsT082589 for xorp-cvs@icir.org; Sat, 19 Mar 2005 23:58:29 GMT (envelope-from pavlin) Date: Sat, 19 Mar 2005 23:58:29 GMT From: Pavlin Radoslavov Message-Id: <200503192358.j2JNwTsT082589@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-19 23:58:29 UTC XORP CVS repository Modified files: pim pim_node.cc pim_node.hh Log message: * Change the return value of start_all_vifs() and stop_all_vifs() so on success the return value is XORP_OK instead of the number of started/stopped vifs. * Remove old kdoc comments * Reorder some of the operations inside PimNode::stop() * Remove XLOG_INFO messages when enabling or disabling a vif. Those messages have been moved to the PimVif methods that implement the enabling/disabling of a vif. * Remove XLOG_INFO messags when starting or stopping a vif, because they are redundant. * Change the implementation of enable_all_vifs() and disable_all_vifs() so now they use the Pimif::enable() and PimVif::disable() methods. * Bug fix inside vif_shutdown_completed() method: we will attempt to de-register with the MFEA and RIB only if the status of PimNode is SERVICE_SHUTTING_DOWN. Otherwise, the operation of shutdown of only a single interface (if the last one) will trigger the de-registration with the MFEA and RIB, which may not be the desired action. Revision Changes Path 1.65 +42 -58 xorp/pim/pim_node.cc 1.44 +3 -8 xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 00:02:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 16:03:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K0310N089002 for ; Sat, 19 Mar 2005 16:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K0319Q032511 for ; Sat, 19 Mar 2005 16:03:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K031BU025055; Sat, 19 Mar 2005 16:03:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K02eBU025040 for ; Sat, 19 Mar 2005 16:02:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K02eVC032509 for ; Sat, 19 Mar 2005 16:02:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K02e0m082718 for ; Sat, 19 Mar 2005 16:02:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K02eYA082717 for xorp-cvs@icir.org; Sun, 20 Mar 2005 00:02:40 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 00:02:40 GMT From: Pavlin Radoslavov Message-Id: <200503200002.j2K02eYA082717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 00:02:40 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: Add %update methods everywhere where are %activate methods. This allows to change some of the configuration via xorpsh (e.g., the intefaces can be disabled, and then enabled again). Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=84 Revision Changes Path 1.15 +9 -1 xorp/etc/templates/pimsm4.tp 1.15 +9 -1 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 00:04:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 16:05:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K051PU089394 for ; Sat, 19 Mar 2005 16:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K050Cp032531 for ; Sat, 19 Mar 2005 16:05:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K050BU025097; Sat, 19 Mar 2005 16:05:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K04eBU025089 for ; Sat, 19 Mar 2005 16:04:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K04e4x032521 for ; Sat, 19 Mar 2005 16:04:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K04et0082774 for ; Sat, 19 Mar 2005 16:04:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K04ekT082773 for xorp-cvs@icir.org; Sun, 20 Mar 2005 00:04:40 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 00:04:40 GMT From: Pavlin Radoslavov Message-Id: <200503200004.j2K04ekT082773@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 00:04:40 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp Log message: Add %update methods everywhere where are %activate methods. This allows to change some of the configuration via xorpsh (e.g., the intefaces can be disabled, and then enabled again). Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=83 Revision Changes Path 1.10 +2 -1 xorp/etc/templates/igmp.tp 1.10 +2 -1 xorp/etc/templates/mld.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 00:07:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 16:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K081fh090018 for ; Sat, 19 Mar 2005 16:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K081Cx032560 for ; Sat, 19 Mar 2005 16:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K081BU025183; Sat, 19 Mar 2005 16:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K07UBU025177 for ; Sat, 19 Mar 2005 16:07:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K07Uq1032558 for ; Sat, 19 Mar 2005 16:07:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K07Ujo082848 for ; Sat, 19 Mar 2005 16:07:30 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K07UpF082847 for xorp-cvs@icir.org; Sun, 20 Mar 2005 00:07:30 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 00:07:30 GMT From: Pavlin Radoslavov Message-Id: <200503200007.j2K07UpF082847@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 00:07:29 UTC XORP CVS repository Modified files: etc/templates mfea4.tp mfea6.tp Log message: * Add %update methods everywhere where are %activate methods. This allows to change some of the configuration via xorpsh (e.g., the intefaces can be disabled, and then enabled again). * Comment-out the top-level %activate and %update methods, because it seems they are not needed. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=82 Revision Changes Path 1.10 +6 -1 xorp/etc/templates/mfea4.tp 1.10 +6 -1 xorp/etc/templates/mfea6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 00:21:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 16:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K0M1Lh092768 for ; Sat, 19 Mar 2005 16:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K0M1D7032693 for ; Sat, 19 Mar 2005 16:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K0M0BU025456; Sat, 19 Mar 2005 16:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K0LDBU025433 for ; Sat, 19 Mar 2005 16:21:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K0LCBc032688 for ; Sat, 19 Mar 2005 16:21:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K0LCdn083131 for ; Sat, 19 Mar 2005 16:21:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K0LC4f083130 for xorp-cvs@icir.org; Sun, 20 Mar 2005 00:21:12 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 00:21:12 GMT From: Pavlin Radoslavov Message-Id: <200503200021.j2K0LC4f083130@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli xorp/fea xorp/libproto xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 00:21:12 UTC XORP CVS repository Modified files: cli cli_node.hh fea mfea_node.cc mfea_node.hh mfea_proto_comm.cc mfea_proto_comm.hh libproto proto_node.hh mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_node.cc mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh pim pim_node.cc pim_node.hh pim_vif.cc pim_vif.hh Log message: Rename variable "router_alert_bool" to "is_router_alert" Revision Changes Path 1.16 +3 -3 xorp/cli/cli_node.hh 1.51 +7 -7 xorp/fea/mfea_node.cc 1.29 +5 -5 xorp/fea/mfea_node.hh 1.27 +15 -15 xorp/fea/mfea_proto_comm.cc 1.8 +3 -3 xorp/fea/mfea_proto_comm.hh 1.29 +5 -5 xorp/libproto/proto_node.hh 1.29 +5 -5 xorp/mld6igmp/igmp_proto.cc 1.32 +5 -5 xorp/mld6igmp/mld6_proto.cc 1.42 +8 -8 xorp/mld6igmp/mld6igmp_node.cc 1.20 +5 -5 xorp/mld6igmp/mld6igmp_node.hh 1.35 +5 -5 xorp/mld6igmp/mld6igmp_vif.cc 1.17 +5 -5 xorp/mld6igmp/mld6igmp_vif.hh 1.66 +8 -8 xorp/pim/pim_node.cc 1.45 +5 -5 xorp/pim/pim_node.hh 1.45 +11 -11 xorp/pim/pim_vif.cc 1.31 +4 -4 xorp/pim/pim_vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 02:26:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 18:27:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K2R1GC017500 for ; Sat, 19 Mar 2005 18:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K2R1EP033732 for ; Sat, 19 Mar 2005 18:27:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K2R1BU028081; Sat, 19 Mar 2005 18:27:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K2QhBU028070 for ; Sat, 19 Mar 2005 18:26:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K2Qhew033730 for ; Sat, 19 Mar 2005 18:26:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K2QhEn083998 for ; Sat, 19 Mar 2005 18:26:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K2QhLb083997 for xorp-cvs@icir.org; Sun, 20 Mar 2005 02:26:43 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 02:26:43 GMT From: Pavlin Radoslavov Message-Id: <200503200226.j2K2QhLb083997@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 02:26:43 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: Fix the text in the example for the %update template command. Revision Changes Path 1.27 +2 -2 xorp/docs/rtrmgr/rtrmgr.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 02:59:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 19 Mar 2005 19:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K3011t023951 for ; Sat, 19 Mar 2005 19:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K300Es033983 for ; Sat, 19 Mar 2005 19:00:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K300BU028827; Sat, 19 Mar 2005 19:00:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K2xRBU028807 for ; Sat, 19 Mar 2005 18:59:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K2xRnd033979 for ; Sat, 19 Mar 2005 18:59:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K2xQZf084238 for ; Sat, 19 Mar 2005 18:59:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K2xQe7084237 for xorp-cvs@icir.org; Sun, 20 Mar 2005 02:59:26 GMT (envelope-from pavlin) Date: Sun, 20 Mar 2005 02:59:26 GMT From: Pavlin Radoslavov Message-Id: <200503200259.j2K2xQe7084237@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-20 02:59:26 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: Remove nested %update command for static-rps/rp/group-prefix, because it prevents executing the required %update command at the static-rps level. Instead, use %set command for each leaf node of static-rps/rp/group-prefix (namely, rp-priority and hash-mask-len). Thus, if the value of rp-priority or hash-mask-len is changed, then the corresponding %set command will be executed, followed by the %update command at the static-rps level. The downside is that if both rp-priority and hash-mask-len are changed, then the add_config_static_rp[4,6] XRL will be executed twice (which is harmless), and then followed by the %update XRL. Revision Changes Path 1.16 +5 -4 xorp/etc/templates/pimsm4.tp 1.16 +5 -4 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 09:45:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 01:46:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2K9k0aS004345 for ; Sun, 20 Mar 2005 01:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K9k06P037412 for ; Sun, 20 Mar 2005 01:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K9k0BU007510; Sun, 20 Mar 2005 01:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2K9jIBU007497 for ; Sun, 20 Mar 2005 01:45:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2K9jIDG037407 for ; Sun, 20 Mar 2005 01:45:18 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2K9jIaC087162 for ; Sun, 20 Mar 2005 01:45:18 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2K9jIdT087161 for xorp-cvs@icir.org; Sun, 20 Mar 2005 09:45:18 GMT (envelope-from mjh) Date: Sun, 20 Mar 2005 09:45:18 GMT From: Mark Handley Message-Id: <200503200945.j2K9jIdT087161@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-20 09:45:18 UTC XORP CVS repository Modified files: bgp peer_route_pair.hh route_table_debug.cc Log message: Remove spurious debugging statement. Properly initialise the sanity checking code. Credit: Pavlin Revision Changes Path 1.11 +8 -3 xorp/bgp/peer_route_pair.hh 1.12 +1 -2 xorp/bgp/route_table_debug.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 21:24:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 13:25:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KLP1NX046963 for ; Sun, 20 Mar 2005 13:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KLP1a3045138 for ; Sun, 20 Mar 2005 13:25:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KLP1BU024706; Sun, 20 Mar 2005 13:25:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KLOcBU024696 for ; Sun, 20 Mar 2005 13:24:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KLOcAf045126 for ; Sun, 20 Mar 2005 13:24:38 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KLOcxB094419 for ; Sun, 20 Mar 2005 13:24:38 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KLOcBR094418 for xorp-cvs@icir.org; Sun, 20 Mar 2005 21:24:38 GMT (envelope-from atanu) Date: Sun, 20 Mar 2005 21:24:38 GMT From: Atanu Ghosh Message-Id: <200503202124.j2KLOcBR094418@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-20 21:24:38 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Add test17 this test runs test15 thrice and shows some problems. Also added some extra debugging. Revision Changes Path 1.42 +147 -2 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 22:07:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 14:08:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KM82Fi055469 for ; Sun, 20 Mar 2005 14:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KM828J045529 for ; Sun, 20 Mar 2005 14:08:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KM82BU025632; Sun, 20 Mar 2005 14:08:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KM7cBU025624 for ; Sun, 20 Mar 2005 14:07:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KM7cYl045527 for ; Sun, 20 Mar 2005 14:07:38 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KM7cMr094911 for ; Sun, 20 Mar 2005 14:07:38 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KM7cjW094910 for xorp-cvs@icir.org; Sun, 20 Mar 2005 22:07:38 GMT (envelope-from mjh) Date: Sun, 20 Mar 2005 22:07:38 GMT From: Mark Handley Message-Id: <200503202207.j2KM7cjW094910@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-20 22:07:38 UTC XORP CVS repository Modified files: bgp test_fanout.cc test_fanout.reference Log message: Add three new fanout table tests - previously we didn't have any tests that involved skipping the queue. Revision Changes Path 1.24 +199 -1 xorp/bgp/test_fanout.cc 1.6 +162 -0 xorp/bgp/test_fanout.reference _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 22:08:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 14:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KM91Lh055672 for ; Sun, 20 Mar 2005 14:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KM914i045543 for ; Sun, 20 Mar 2005 14:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KM91BU025685; Sun, 20 Mar 2005 14:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KM8OBU025654 for ; Sun, 20 Mar 2005 14:08:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KM8ON0045535 for ; Sun, 20 Mar 2005 14:08:24 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KM8O6m094963 for ; Sun, 20 Mar 2005 14:08:24 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KM8OSE094962 for xorp-cvs@icir.org; Sun, 20 Mar 2005 22:08:24 GMT (envelope-from mjh) Date: Sun, 20 Mar 2005 22:08:24 GMT From: Mark Handley Message-Id: <200503202208.j2KM8OSE094962@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-20 22:08:24 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: Fix crash encountered while skipping queue when peering goes down. Revealed by new fanout isolation test. Revision Changes Path 1.48 +2 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 23:14:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 15:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KNF1U5068624 for ; Sun, 20 Mar 2005 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNF1Lu046111 for ; Sun, 20 Mar 2005 15:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNF0BU027073; Sun, 20 Mar 2005 15:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNEWBU027063 for ; Sun, 20 Mar 2005 15:14:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNEWIj046106 for ; Sun, 20 Mar 2005 15:14:32 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KNEWj3095539 for ; Sun, 20 Mar 2005 15:14:32 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KNEW3O095538 for xorp-cvs@icir.org; Sun, 20 Mar 2005 23:14:32 GMT (envelope-from mjh) Date: Sun, 20 Mar 2005 23:14:32 GMT From: Mark Handley Message-Id: <200503202314.j2KNEW3O095538@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-20 23:14:32 UTC XORP CVS repository Modified files: bgp plumbing.cc route_table_ribout.cc route_table_ribout.hh test_ribout.cc Log message: Fix criticial bug in BGP RibOut. If a peering went down when flow control to that peer had beed enabled (because we were sending routes faster than it could read them) then we'd not *ever* remove flow control. Thus we'd never send another route to that peer, even after it came back up. The fix is to keep track of whether the peer is down in RibOut. The plumbing now informs ribout explicitly that the peering came back up. test_peering2.sh/test17 now works. Revision Changes Path 1.63 +9 -3 xorp/bgp/plumbing.cc 1.25 +18 -2 xorp/bgp/route_table_ribout.cc 1.12 +3 -1 xorp/bgp/route_table_ribout.hh 1.21 +2 -1 xorp/bgp/test_ribout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 23:29:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 15:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KNU1tH071724 for ; Sun, 20 Mar 2005 15:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNU0ca046230 for ; Sun, 20 Mar 2005 15:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNU0BU027340; Sun, 20 Mar 2005 15:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNTkBU027333 for ; Sun, 20 Mar 2005 15:29:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNTjf5046225 for ; Sun, 20 Mar 2005 15:29:45 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KNTjUQ095721 for ; Sun, 20 Mar 2005 15:29:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KNTju0095720 for xorp-cvs@icir.org; Sun, 20 Mar 2005 23:29:45 GMT (envelope-from atanu) Date: Sun, 20 Mar 2005 23:29:45 GMT From: Atanu Ghosh Message-Id: <200503202329.j2KNTju0095720@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-20 23:29:45 UTC XORP CVS repository Modified files: bgp/harness test_peering2.sh Log message: Add test17 to the list of working tests as it now works. Revision Changes Path 1.43 +3 -3 xorp/bgp/harness/test_peering2.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Sun Mar 20 23:56:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 20 Mar 2005 15:57:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2KNv1uV077173 for ; Sun, 20 Mar 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNv1uL046461 for ; Sun, 20 Mar 2005 15:57:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNv1BU027996; Sun, 20 Mar 2005 15:57:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2KNuVBU027967 for ; Sun, 20 Mar 2005 15:56:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2KNuV16046459 for ; Sun, 20 Mar 2005 15:56:31 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2KNuVgs095980 for ; Sun, 20 Mar 2005 15:56:31 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2KNuVaQ095979 for xorp-cvs@icir.org; Sun, 20 Mar 2005 23:56:31 GMT (envelope-from mjh) Date: Sun, 20 Mar 2005 23:56:31 GMT From: Mark Handley Message-Id: <200503202356.j2KNuVaQ095979@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-20 23:56:31 UTC XORP CVS repository Modified files: bgp plumbing.cc route_table_fanout.cc route_table_ribout.cc route_table_ribout.hh test_ribout.cc Log message: Back out previous commit, and try a different solution. Previous solution worked, but wasn't very general, as it only informed the RibOut that that peering came up, and required special code in the plumbing to do this. Instead we get FanoutTable to send peering_came_up() downstream when a new downstream neighbour gets added, which means that all the tables on the new branch discover they're live again. Revision Changes Path 1.64 +7 -17 xorp/bgp/plumbing.cc 1.49 +2 -1 xorp/bgp/route_table_fanout.cc 1.26 +10 -4 xorp/bgp/route_table_ribout.cc 1.13 +3 -2 xorp/bgp/route_table_ribout.hh 1.22 +2 -2 xorp/bgp/test_ribout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Mon Mar 21 20:42:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Mar 2005 12:43:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2LKh2ov032414 for ; Mon, 21 Mar 2005 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LKh2kd060984 for ; Mon, 21 Mar 2005 12:43:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LKh1BU000342; Mon, 21 Mar 2005 12:43:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LKgABU000291 for ; Mon, 21 Mar 2005 12:42:10 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LKg9ap060967 for ; Mon, 21 Mar 2005 12:42:09 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2LKg9Tv009255 for ; Mon, 21 Mar 2005 12:42:09 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2LKg93k009254 for xorp-cvs@icir.org; Mon, 21 Mar 2005 20:42:09 GMT (envelope-from mjh) Date: Mon, 21 Mar 2005 20:42:09 GMT From: Mark Handley Message-Id: <200503212042.j2LKg93k009254@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-21 20:42:09 UTC XORP CVS repository Modified files: bgp route_table_dump.cc Log message: fix audit message Revision Changes Path 1.34 +3 -3 xorp/bgp/route_table_dump.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Mon Mar 21 23:21:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Mar 2005 15:22:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2LNM1c2064160 for ; Mon, 21 Mar 2005 15:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LNM1Ht062855 for ; Mon, 21 Mar 2005 15:22:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LNM1BU006778; Mon, 21 Mar 2005 15:22:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LNLCBU006760 for ; Mon, 21 Mar 2005 15:21:12 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LNLCwD062851 for ; Mon, 21 Mar 2005 15:21:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2LNLC4w010702 for ; Mon, 21 Mar 2005 15:21:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2LNLC3h010701 for xorp-cvs@icir.org; Mon, 21 Mar 2005 23:21:12 GMT (envelope-from pavlin) Date: Mon, 21 Mar 2005 23:21:12 GMT From: Pavlin Radoslavov Message-Id: <200503212321.j2LNLC3h010701@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/config xorp/fea xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-21 23:21:12 UTC XORP CVS repository Modified files: . config.h.in configure config acipv6.m4 fea mfea_proto_comm.cc mfea_proto_comm.hh rawsock6.cc mibs configure Log message: Replace HAVE_RFC2292BIS with HAVE_RFC3542 to reflect the fact that there is a new RFC with the new advanced IPv6 API. Requested by: Bruce Simpson Revision Changes Path 1.42 +2 -2 xorp/config.h.in 1.17 +5 -5 xorp/config/acipv6.m4 1.141 +3 -3 xorp/configure 1.28 +14 -14 xorp/fea/mfea_proto_comm.cc 1.9 +2 -2 xorp/fea/mfea_proto_comm.hh 1.11 +2 -2 xorp/fea/rawsock6.cc 1.7 +3 -3 xorp/mibs/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Mon Mar 21 23:51:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Mar 2005 15:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2LNq1jJ070312 for ; Mon, 21 Mar 2005 15:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LNq1XG063416 for ; Mon, 21 Mar 2005 15:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LNq1BU007919; Mon, 21 Mar 2005 15:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2LNptBU007908 for ; Mon, 21 Mar 2005 15:51:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2LNpt60063414 for ; Mon, 21 Mar 2005 15:51:55 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2LNptXm011257 for ; Mon, 21 Mar 2005 15:51:55 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2LNptvH011256 for xorp-cvs@icir.org; Mon, 21 Mar 2005 23:51:55 GMT (envelope-from mjh) Date: Mon, 21 Mar 2005 23:51:55 GMT From: Mark Handley Message-Id: <200503212351.j2LNptvH011256@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-03-21 23:51:55 UTC XORP CVS repository Modified files: bgp dump_iterators.cc dump_iterators.hh route_table_ribin.cc Log message: Probable fix for a crash when deleting routes and dumping routes to a peer simultaneously. I don't have a good way to test this one, but I think it should fix the crash seen by Atanu on xorp8. The printf is left in deliberately in case the change causes any unforeseen problems. Revision Changes Path 1.26 +17 -1 xorp/bgp/dump_iterators.cc 1.14 +6 -1 xorp/bgp/dump_iterators.hh 1.37 +8 -2 xorp/bgp/route_table_ribin.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:09 2005 Subject: No subject Tue Mar 22 04:29:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Mar 2005 20:30:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2M4U0qG025592 for ; Mon, 21 Mar 2005 20:30:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M4U0QO066321 for ; Mon, 21 Mar 2005 20:30:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M4U0BU016017; Mon, 21 Mar 2005 20:30:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M4TwBU016010 for ; Mon, 21 Mar 2005 20:29:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M4TwR9066315 for ; Mon, 21 Mar 2005 20:29:58 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2M4Twx5013413 for ; Mon, 21 Mar 2005 20:29:58 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2M4TwPP013412 for xorp-cvs@icir.org; Tue, 22 Mar 2005 04:29:58 GMT (envelope-from pavlin) Date: Tue, 22 Mar 2005 04:29:58 GMT From: Pavlin Radoslavov Message-Id: <200503220429.j2M4TwPP013412@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-22 04:29:58 UTC XORP CVS repository Modified files: pim pim_proto.h Log message: Conditionally define the following constants that may be missing from : PIM_MINLEN PIM_REG_MINLEN PIM6_REG_MINLEN Revision Changes Path 1.11 +14 -1 xorp/pim/pim_proto.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Tue Mar 22 04:34:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 21 Mar 2005 20:35:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2M4Z1Bx026596 for ; Mon, 21 Mar 2005 20:35:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M4Z0gQ066382 for ; Mon, 21 Mar 2005 20:35:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M4Z0BU016194; Mon, 21 Mar 2005 20:35:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M4YhBU016180 for ; Mon, 21 Mar 2005 20:34:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M4YhYI066372 for ; Mon, 21 Mar 2005 20:34:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2M4YhOd013483 for ; Mon, 21 Mar 2005 20:34:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2M4Yh1J013482 for xorp-cvs@icir.org; Tue, 22 Mar 2005 04:34:43 GMT (envelope-from pavlin) Date: Tue, 22 Mar 2005 04:34:43 GMT From: Pavlin Radoslavov Message-Id: <200503220434.j2M4Yh1J013482@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-22 04:34:43 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: If there is a checksum error for a PIM Register packet, and if the PIM Register packet was truncated by the kernel (e.g., in some *BSD systems), then ignore the checksum error. The problem comes from the fact that currently the *BSD kernel (for IPv4 and IPv6) truncates the PIM Register messages to contain only the outer IP header, the PIM + PIM Register header, and the inner IP header. In the future the *BSD kernels should be modified to stop truncating the PIM Register messages, because the gain in reduced processing overhead is questionable. In the time being we need to deal with such packets. Revision Changes Path 1.46 +38 -10 xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Tue Mar 22 08:15:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Mar 2005 00:16:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2M8G1jt070052 for ; Tue, 22 Mar 2005 00:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M8G1ns068703 for ; Tue, 22 Mar 2005 00:16:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M8G1BU021413; Tue, 22 Mar 2005 00:16:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2M8FIBU021388 for ; Tue, 22 Mar 2005 00:15:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2M8FIDA068697 for ; Tue, 22 Mar 2005 00:15:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2M8FIPr015412 for ; Tue, 22 Mar 2005 00:15:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2M8FI1i015411 for xorp-cvs@icir.org; Tue, 22 Mar 2005 08:15:18 GMT (envelope-from pavlin) Date: Tue, 22 Mar 2005 08:15:18 GMT From: Pavlin Radoslavov Message-Id: <200503220815.j2M8FI1i015411@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-22 08:15:18 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: Add %delete methods for each interface and vif. Revision Changes Path 1.17 +3 -1 xorp/etc/templates/pimsm4.tp 1.17 +3 -1 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 04:41:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 22 Mar 2005 20:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2N4g1xW076405 for ; Tue, 22 Mar 2005 20:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N4g1Rw084215 for ; Tue, 22 Mar 2005 20:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N4g1BU000428; Tue, 22 Mar 2005 20:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N4fxBU000419 for ; Tue, 22 Mar 2005 20:41:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N4fxBW084213 for ; Tue, 22 Mar 2005 20:41:59 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2N4fx0G027968 for ; Tue, 22 Mar 2005 20:41:59 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2N4fx6d027967 for xorp-cvs@icir.org; Wed, 23 Mar 2005 04:41:59 GMT (envelope-from atanu) Date: Wed, 23 Mar 2005 04:41:59 GMT From: Atanu Ghosh Message-Id: <200503230441.j2N4fx6d027967@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-23 04:41:59 UTC XORP CVS repository Modified files: bgp next_hop_resolver.cc profile_vars.cc profile_vars.hh Log message: Add trace points for nexthop resolution interactions between BGP and the RIB. Revision Changes Path 1.40 +27 -4 xorp/bgp/next_hop_resolver.cc 1.9 +2 -1 xorp/bgp/profile_vars.cc 1.6 +2 -1 xorp/bgp/profile_vars.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 09:44:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 01:45:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2N9j1H8055662 for ; Wed, 23 Mar 2005 01:45:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9j0AI087283 for ; Wed, 23 Mar 2005 01:45:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9j0bX008054; Wed, 23 Mar 2005 01:45:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9iObX008036 for ; Wed, 23 Mar 2005 01:44:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9iOrr087274 for ; Wed, 23 Mar 2005 01:44:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2N9iOx4030813 for ; Wed, 23 Mar 2005 01:44:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2N9iOHY030812 for xorp-cvs@icir.org; Wed, 23 Mar 2005 09:44:24 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 09:44:24 GMT From: Pavlin Radoslavov Message-Id: <200503230944.j2N9iOHY030812@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 09:44:24 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.hh pim_rp.cc pim_rp.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: Add a new XRL to delete all configured static RPs, and implement the mechanism that actually does the job. Revision Changes Path 1.27 +28 -1 xorp/pim/pim_config.cc 1.46 +2 -1 xorp/pim/pim_node.hh 1.11 +39 -1 xorp/pim/pim_rp.cc 1.7 +2 -1 xorp/pim/pim_rp.hh 1.77 +12 -1 xorp/pim/xrl_pim_node.cc 1.55 +3 -1 xorp/pim/xrl_pim_node.hh 1.24 +14 -1 xorp/pim/xrl_pim_shell_funcs.sh 1.17 +2 -1 xorp/xrl/interfaces/pim.xif 1.28 +31 -1 xorp/xrl/interfaces/pim_xif.cc 1.26 +14 -1 xorp/xrl/interfaces/pim_xif.hh 1.41 +3 -1 xorp/xrl/targets/pim.xrls 1.44 +30 -1 xorp/xrl/targets/pim_base.cc 1.47 +5 -1 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 09:45:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 01:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2N9k1xT055929 for ; Wed, 23 Mar 2005 01:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9k0i1087318 for ; Wed, 23 Mar 2005 01:46:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9k0bX008094; Wed, 23 Mar 2005 01:46:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9jIbX008071 for ; Wed, 23 Mar 2005 01:45:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9jHj3087308 for ; Wed, 23 Mar 2005 01:45:17 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2N9jHh2030889 for ; Wed, 23 Mar 2005 01:45:17 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2N9jHcx030888 for xorp-cvs@icir.org; Wed, 23 Mar 2005 09:45:17 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 09:45:17 GMT From: Pavlin Radoslavov Message-Id: <200503230945.j2N9jHcx030888@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 09:45:17 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: Add the %delete methods with the XRLs that are to be called when the static-rps section is deleted via xorpsh. Revision Changes Path 1.18 +3 -1 xorp/etc/templates/pimsm4.tp 1.18 +3 -1 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 09:47:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 01:48:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2N9m1fp056776 for ; Wed, 23 Mar 2005 01:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9m1Xs087336 for ; Wed, 23 Mar 2005 01:48:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9m1bX008138; Wed, 23 Mar 2005 01:48:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2N9lqbX008132 for ; Wed, 23 Mar 2005 01:47:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2N9lqbD087332 for ; Wed, 23 Mar 2005 01:47:52 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2N9lqLf030953 for ; Wed, 23 Mar 2005 01:47:52 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2N9lqZa030952 for xorp-cvs@icir.org; Wed, 23 Mar 2005 09:47:52 GMT (envelope-from atanu) Date: Wed, 23 Mar 2005 09:47:52 GMT From: Atanu Ghosh Message-Id: <200503230947.j2N9lqZa030952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-23 09:47:52 UTC XORP CVS repository Modified files: bgp main.cc Log message: Make trace messages very verbose. Revision Changes Path 1.40 +2 -1 xorp/bgp/main.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 10:50:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 02:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NAp2sn069945 for ; Wed, 23 Mar 2005 02:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NAp2dh088307 for ; Wed, 23 Mar 2005 02:51:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NAp2bX009552; Wed, 23 Mar 2005 02:51:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NAo1bX009516 for ; Wed, 23 Mar 2005 02:50:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NAo1Z4088280 for ; Wed, 23 Mar 2005 02:50:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NAo1UL031818 for ; Wed, 23 Mar 2005 02:50:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NAo1VR031817 for xorp-cvs@icir.org; Wed, 23 Mar 2005 10:50:01 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 10:50:01 GMT From: Pavlin Radoslavov Message-Id: <200503231050.j2NAo1VR031817@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 10:50:01 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.hh pim_rp.cc pim_rp.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: Add a new XRL to delete all configured group prefixes for a given static RP, and implement the mechanism that actually does the job. Revision Changes Path 1.28 +31 -1 xorp/pim/pim_config.cc 1.47 +3 -1 xorp/pim/pim_node.hh 1.12 +43 -1 xorp/pim/pim_rp.cc 1.8 +3 -1 xorp/pim/pim_rp.hh 1.78 +33 -1 xorp/pim/xrl_pim_node.cc 1.56 +9 -1 xorp/pim/xrl_pim_node.hh 1.25 +15 -1 xorp/pim/xrl_pim_shell_funcs.sh 1.18 +3 -1 xorp/xrl/interfaces/pim.xif 1.29 +65 -1 xorp/xrl/interfaces/pim_xif.cc 1.27 +29 -1 xorp/xrl/interfaces/pim_xif.hh 1.42 +5 -1 xorp/xrl/targets/pim.xrls 1.45 +61 -1 xorp/xrl/targets/pim_base.cc 1.48 +13 -1 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 10:53:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 02:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NAs0Fi070518 for ; Wed, 23 Mar 2005 02:54:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NAs0dT088335 for ; Wed, 23 Mar 2005 02:54:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NAs0bX009616; Wed, 23 Mar 2005 02:54:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NArDbX009599 for ; Wed, 23 Mar 2005 02:53:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NArCPN088327 for ; Wed, 23 Mar 2005 02:53:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NArCkG031902 for ; Wed, 23 Mar 2005 02:53:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NArCxj031901 for xorp-cvs@icir.org; Wed, 23 Mar 2005 10:53:12 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 10:53:12 GMT From: Pavlin Radoslavov Message-Id: <200503231053.j2NArCxj031901@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 10:53:12 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: * Add the %delete methods with the XRLs that are to be called when the static-rps/rp section is deleted via xorpsh * Add the %delete methods for static-rps/rp/group-prefix/rp-priority and for static-rps/rp/group-prefix/has-mask-len Basically, in both cases the %delete methods restore the default values. * Add a missing second %delete method to static-rps/rp/group-prefix Revision Changes Path 1.19 +8 -1 xorp/etc/templates/pimsm4.tp 1.19 +9 -1 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 19:58:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 11:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NJx0jZ081505 for ; Wed, 23 Mar 2005 11:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NJx0eH095744 for ; Wed, 23 Mar 2005 11:59:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NJx0bX027737; Wed, 23 Mar 2005 11:59:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NJwjbX027726 for ; Wed, 23 Mar 2005 11:58:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NJwjlk095738 for ; Wed, 23 Mar 2005 11:58:45 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NJwj7U038103 for ; Wed, 23 Mar 2005 11:58:45 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NJwjRk038102 for xorp-cvs@icir.org; Wed, 23 Mar 2005 19:58:45 GMT (envelope-from atanu) Date: Wed, 23 Mar 2005 19:58:45 GMT From: Atanu Ghosh Message-Id: <200503231958.j2NJwjRk038102@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-03-23 19:58:45 UTC XORP CVS repository Added files: bgp/harness harness.py Log message: Script to use the harness code to log or inject BGP session data Revision Changes Path 1.1 +181 -0 xorp/bgp/harness/harness.py (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 21:39:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 13:40:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NLe2Rg009469 for ; Wed, 23 Mar 2005 13:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLe2is096952 for ; Wed, 23 Mar 2005 13:40:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLe1bX001329; Wed, 23 Mar 2005 13:40:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLdxbX001322 for ; Wed, 23 Mar 2005 13:40:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLdxED096945 for ; Wed, 23 Mar 2005 13:39:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NLdxsT039137 for ; Wed, 23 Mar 2005 13:39:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NLdxUs039136 for xorp-cvs@icir.org; Wed, 23 Mar 2005 21:39:59 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 21:39:59 GMT From: Pavlin Radoslavov Message-Id: <200503232139.j2NLdxUs039136@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib xorp/static_routes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 21:39:59 UTC XORP CVS repository Modified files: fib2mrib xrl_fib2mrib_node.cc static_routes xrl_static_routes_node.cc Log message: Declare variable error_msg in the beginning of the method (for consistency with the rest of the code). Revision Changes Path 1.31 +4 -2 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.31 +4 -2 xorp/static_routes/xrl_static_routes_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 21:41:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 13:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NLg1ed009868 for ; Wed, 23 Mar 2005 13:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLg1cq096980 for ; Wed, 23 Mar 2005 13:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLg0bX001414; Wed, 23 Mar 2005 13:42:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLfQbX001377 for ; Wed, 23 Mar 2005 13:41:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLfQxa096978 for ; Wed, 23 Mar 2005 13:41:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NLfQro039208 for ; Wed, 23 Mar 2005 13:41:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NLfQdU039207 for xorp-cvs@icir.org; Wed, 23 Mar 2005 21:41:26 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 21:41:26 GMT From: Pavlin Radoslavov Message-Id: <200503232141.j2NLfQdU039207@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 21:41:26 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc Log message: * Rename variable "msg" to "error_msg" and move its declaration at the beginning of each method (for consistency with the rest of code). * Add few comments Revision Changes Path 1.25 +72 -22 xorp/cli/xrl_cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 21:43:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 13:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NLi10u010452 for ; Wed, 23 Mar 2005 13:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLi1Sg096996 for ; Wed, 23 Mar 2005 13:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLi1bX001490; Wed, 23 Mar 2005 13:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NLhYbX001465 for ; Wed, 23 Mar 2005 13:43:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NLhXp8096993 for ; Wed, 23 Mar 2005 13:43:33 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NLhXge039301 for ; Wed, 23 Mar 2005 13:43:33 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NLhXDK039300 for xorp-cvs@icir.org; Wed, 23 Mar 2005 21:43:33 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 21:43:33 GMT From: Pavlin Radoslavov Message-Id: <200503232143.j2NLhXDK039300@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 21:43:33 UTC XORP CVS repository Modified files: fea xrl_mfea_node.cc mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc Log message: * Move the declaration of variable error_msg to the beginning of each method (for consistency with the rest of the code). * Add missing address family checks. Revision Changes Path 1.44 +192 -142 xorp/fea/xrl_mfea_node.cc 1.43 +120 -60 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.79 +796 -241 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Wed Mar 23 22:00:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 14:01:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2NM10dP016172 for ; Wed, 23 Mar 2005 14:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NM10m1097208 for ; Wed, 23 Mar 2005 14:01:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NM10bX002182; Wed, 23 Mar 2005 14:01:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2NM0RbX002164 for ; Wed, 23 Mar 2005 14:00:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2NM0Rl6097203 for ; Wed, 23 Mar 2005 14:00:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2NM0Rxo039505 for ; Wed, 23 Mar 2005 14:00:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2NM0RXT039504 for xorp-cvs@icir.org; Wed, 23 Mar 2005 22:00:27 GMT (envelope-from pavlin) Date: Wed, 23 Mar 2005 22:00:27 GMT From: Pavlin Radoslavov Message-Id: <200503232200.j2NM0RXT039504@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-23 22:00:27 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: Bug fix: initialize properly the _module_name and _verbose flag in the Startup constructor. Revision Changes Path 1.46 +3 -2 xorp/rtrmgr/task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Thu Mar 24 00:35:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 16:36:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O0a1m1058232 for ; Wed, 23 Mar 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0a1ii098791 for ; Wed, 23 Mar 2005 16:36:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0a0dU008056; Wed, 23 Mar 2005 16:36:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0ZLdU008026 for ; Wed, 23 Mar 2005 16:35:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0ZLFf098782 for ; Wed, 23 Mar 2005 16:35:21 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O0ZLlW041046 for ; Wed, 23 Mar 2005 16:35:21 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O0ZLlf041045 for xorp-cvs@icir.org; Thu, 24 Mar 2005 00:35:21 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 00:35:21 GMT From: Pavlin Radoslavov Message-Id: <200503240035.j2O0ZLlf041045@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 00:35:21 UTC XORP CVS repository Modified files: cli cli_node.cc cli_node.hh Log message: * Add CliNode::enable() and CliNode::disable() methods * Add XLOG_INFO() messages. Revision Changes Path 1.24 +34 -2 xorp/cli/cli_node.cc 1.17 +16 -1 xorp/cli/cli_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Thu Mar 24 00:36:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 16:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O0b0Ai058441 for ; Wed, 23 Mar 2005 16:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0b0GS098799 for ; Wed, 23 Mar 2005 16:37:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0b0dU008094; Wed, 23 Mar 2005 16:37:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0atdU008086 for ; Wed, 23 Mar 2005 16:36:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0atWs098796 for ; Wed, 23 Mar 2005 16:36:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O0at5b041110 for ; Wed, 23 Mar 2005 16:36:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O0atYs041109 for xorp-cvs@icir.org; Thu, 24 Mar 2005 00:36:55 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 00:36:55 GMT From: Pavlin Radoslavov Message-Id: <200503240036.j2O0atYs041109@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 00:36:55 UTC XORP CVS repository Modified files: fea mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_vif.cc Log message: * Add MfeaNode::enable() and MfeaNode::disable() methods * Add new XLOG_INFO() messages, and cleanup existing ones Revision Changes Path 1.52 +35 -3 xorp/fea/mfea_node.cc 1.30 +16 -1 xorp/fea/mfea_node.hh 1.15 +35 -3 xorp/fea/mfea_node_cli.cc 1.4 +16 -1 xorp/fea/mfea_node_cli.hh 1.13 +9 -4 xorp/fea/mfea_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Thu Mar 24 00:38:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 16:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O0d1SS058812 for ; Wed, 23 Mar 2005 16:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0d1b7098819 for ; Wed, 23 Mar 2005 16:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0d0dU008169; Wed, 23 Mar 2005 16:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0cudU008162 for ; Wed, 23 Mar 2005 16:38:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0ctm8098817 for ; Wed, 23 Mar 2005 16:38:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O0ctfv041175 for ; Wed, 23 Mar 2005 16:38:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O0ctT5041174 for xorp-cvs@icir.org; Thu, 24 Mar 2005 00:38:55 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 00:38:55 GMT From: Pavlin Radoslavov Message-Id: <200503240038.j2O0ctT5041174@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 00:38:55 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_node.cc mld6igmp_node.hh mld6igmp_node_cli.cc mld6igmp_node_cli.hh mld6igmp_vif.cc Log message: * Add new methods: Mld6igmpNode::enable(), Mld6igmpNode::disable(), Mld6igmpNodeCli::enable(), and Mld6igmpNodeCli::disable() * Add new XLOG_INFO() messages, and cleanup existing ones Revision Changes Path 1.43 +37 -5 xorp/mld6igmp/mld6igmp_node.cc 1.21 +16 -1 xorp/mld6igmp/mld6igmp_node.hh 1.19 +35 -3 xorp/mld6igmp/mld6igmp_node_cli.cc 1.6 +16 -1 xorp/mld6igmp/mld6igmp_node_cli.hh 1.36 +9 -7 xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Thu Mar 24 00:40:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 16:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O0f1C5059250 for ; Wed, 23 Mar 2005 16:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0f18v098864 for ; Wed, 23 Mar 2005 16:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0f0dU008235; Wed, 23 Mar 2005 16:41:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O0e1dU008208 for ; Wed, 23 Mar 2005 16:40:01 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O0e1MM098840 for ; Wed, 23 Mar 2005 16:40:01 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O0e1dv041253 for ; Wed, 23 Mar 2005 16:40:01 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O0e1M6041252 for xorp-cvs@icir.org; Thu, 24 Mar 2005 00:40:01 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 00:40:01 GMT From: Pavlin Radoslavov Message-Id: <200503240040.j2O0e1M6041252@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 00:40:01 UTC XORP CVS repository Modified files: pim pim_bsr.cc pim_bsr.hh pim_node.cc pim_node.hh pim_node_cli.cc pim_node_cli.hh pim_vif.cc Log message: * Add new methods: PimNode::enable(), PimNode::disable(), PimNodeCli::enable(), PimNodeCli::disable(), PimBsr::enable(), PimBsr::disable() * Add new XLOG_INFO() messages, and cleanup existing ones Revision Changes Path 1.35 +34 -2 xorp/pim/pim_bsr.cc 1.12 +29 -1 xorp/pim/pim_bsr.hh 1.67 +40 -7 xorp/pim/pim_node.cc 1.48 +16 -1 xorp/pim/pim_node.hh 1.34 +34 -2 xorp/pim/pim_node_cli.cc 1.8 +28 -2 xorp/pim/pim_node_cli.hh 1.47 +10 -11 xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:10 2005 Subject: No subject Thu Mar 24 01:18:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 17:19:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O1J1iu071380 for ; Wed, 23 Mar 2005 17:19:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O1J0gP099252 for ; Wed, 23 Mar 2005 17:19:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O1J0dU009486; Wed, 23 Mar 2005 17:19:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O1IOdU009450 for ; Wed, 23 Mar 2005 17:18:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O1IOPE099244 for ; Wed, 23 Mar 2005 17:18:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O1IOSr041623 for ; Wed, 23 Mar 2005 17:18:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O1IOa0041622 for xorp-cvs@icir.org; Thu, 24 Mar 2005 01:18:24 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 01:18:24 GMT From: Pavlin Radoslavov Message-Id: <200503240118.j2O1IOa0041622@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 01:18:24 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp Log message: * Add %delete method for "bootstrap" * Fix a bug in the XRL %delete specification for the traceoptions/flag/all/disable flag. Revision Changes Path 1.20 +3 -2 xorp/etc/templates/pimsm4.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 01:18:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 17:19:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O1J2Pk071395 for ; Wed, 23 Mar 2005 17:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O1J25j099254 for ; Wed, 23 Mar 2005 17:19:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O1J2dU009497; Wed, 23 Mar 2005 17:19:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O1IVdU009462 for ; Wed, 23 Mar 2005 17:18:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O1IVXk099246 for ; Wed, 23 Mar 2005 17:18:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O1IV10041666 for ; Wed, 23 Mar 2005 17:18:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O1IVpE041665 for xorp-cvs@icir.org; Thu, 24 Mar 2005 01:18:31 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 01:18:31 GMT From: Pavlin Radoslavov Message-Id: <200503240118.j2O1IVpE041665@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 01:18:31 UTC XORP CVS repository Modified files: etc/templates pimsm6.tp Log message: Add %delete method for "bootstrap" Revision Changes Path 1.20 +2 -1 xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:10:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:11:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2B1ms089831 for ; Wed, 23 Mar 2005 18:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2B1d3099786 for ; Wed, 23 Mar 2005 18:11:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2B0dU010986; Wed, 23 Mar 2005 18:11:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2AOdU010960 for ; Wed, 23 Mar 2005 18:10:24 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2AOQS099776 for ; Wed, 23 Mar 2005 18:10:24 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2AOj5042137 for ; Wed, 23 Mar 2005 18:10:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2AOF7042136 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:10:24 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:10:24 GMT From: Pavlin Radoslavov Message-Id: <200503240210.j2O2AOF7042136@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:10:24 UTC XORP CVS repository Modified files: cli TODO Log message: Remove a TODO entry that is already DONE. Revision Changes Path 1.8 +1 -3 xorp/cli/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:19:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2K1wM091582 for ; Wed, 23 Mar 2005 18:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2K1lw099852 for ; Wed, 23 Mar 2005 18:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2K1dU011209; Wed, 23 Mar 2005 18:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2JQdU011195 for ; Wed, 23 Mar 2005 18:19:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2JQ8k099841 for ; Wed, 23 Mar 2005 18:19:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2JQTE042237 for ; Wed, 23 Mar 2005 18:19:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2JQiq042236 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:19:26 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:19:26 GMT From: Pavlin Radoslavov Message-Id: <200503240219.j2O2JQiq042236@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:19:26 UTC XORP CVS repository Modified files: fea TODO Log message: * Remove FEA-specific TODO entry that is done * Update a TODO entry, because it is partially done Revision Changes Path 1.29 +2 -5 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:49:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:50:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2o27C006752 for ; Wed, 23 Mar 2005 18:50:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2o1KE000243 for ; Wed, 23 Mar 2005 18:50:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2o1dU011949; Wed, 23 Mar 2005 18:50:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2nRdU011921 for ; Wed, 23 Mar 2005 18:49:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2nR1a000233 for ; Wed, 23 Mar 2005 18:49:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2nRp1042510 for ; Wed, 23 Mar 2005 18:49:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2nRwg042509 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:49:27 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:49:27 GMT From: Pavlin Radoslavov Message-Id: <200503240249.j2O2nRwg042509@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:49:27 UTC XORP CVS repository Modified files: cli cli_node_net.cc Log message: Replace an odd assert() with XLOG_FATAL() Revision Changes Path 1.33 +2 -2 xorp/cli/cli_node_net.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:50:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:51:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2p3HK007032 for ; Wed, 23 Mar 2005 18:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2p3r1000264 for ; Wed, 23 Mar 2005 18:51:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2p2dU012015; Wed, 23 Mar 2005 18:51:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2ogdU011975 for ; Wed, 23 Mar 2005 18:50:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2ognW000262 for ; Wed, 23 Mar 2005 18:50:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2ogj5042588 for ; Wed, 23 Mar 2005 18:50:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2ogPZ042587 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:50:42 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:50:42 GMT From: Pavlin Radoslavov Message-Id: <200503240250.j2O2ogPZ042587@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:50:42 UTC XORP CVS repository Modified files: fea rawsock4.cc test_fea.cc test_ifmanager_transaction.cc test_rawsock4.cc xrl_rawsock4.cc xrl_rawsock6.cc Log message: Replace assert() with XLOG_ASSERT() Revision Changes Path 1.12 +2 -2 xorp/fea/rawsock4.cc 1.13 +6 -6 xorp/fea/test_fea.cc 1.5 +2 -2 xorp/fea/test_ifmanager_transaction.cc 1.10 +3 -3 xorp/fea/test_rawsock4.cc 1.13 +3 -3 xorp/fea/xrl_rawsock4.cc 1.4 +6 -6 xorp/fea/xrl_rawsock6.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:51:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:52:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2q27f007233 for ; Wed, 23 Mar 2005 18:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2q2Hv000277 for ; Wed, 23 Mar 2005 18:52:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2q1dU012058; Wed, 23 Mar 2005 18:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2pUdU012039 for ; Wed, 23 Mar 2005 18:51:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2pT2b000270 for ; Wed, 23 Mar 2005 18:51:29 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2pTD8042631 for ; Wed, 23 Mar 2005 18:51:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2pTwJ042630 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:51:29 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:51:29 GMT From: Pavlin Radoslavov Message-Id: <200503240251.j2O2pTwJ042630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:51:29 UTC XORP CVS repository Modified files: mrt mrib_table.cc Log message: * Replace assert() with XLOG_ASSERT() * Remove redundant assert(false) Revision Changes Path 1.10 +5 -7 xorp/mrt/mrib_table.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 02:51:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 18:52:04 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O2q4UV007256 for ; Wed, 23 Mar 2005 18:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2q47n000279 for ; Wed, 23 Mar 2005 18:52:04 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2q3dU012069; Wed, 23 Mar 2005 18:52:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O2pndU012050 for ; Wed, 23 Mar 2005 18:51:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O2pnHg000274 for ; Wed, 23 Mar 2005 18:51:49 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O2pnNI042676 for ; Wed, 23 Mar 2005 18:51:49 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O2pnTc042675 for xorp-cvs@icir.org; Thu, 24 Mar 2005 02:51:49 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 02:51:49 GMT From: Pavlin Radoslavov Message-Id: <200503240251.j2O2pnTc042675@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 02:51:49 UTC XORP CVS repository Modified files: rip auth.cc test_request.cc Log message: Replace assert() with XLOG_ASSERT() Revision Changes Path 1.12 +3 -3 xorp/rip/auth.cc 1.15 +3 -3 xorp/rip/test_request.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 03:07:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 19:08:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O381gE010845 for ; Wed, 23 Mar 2005 19:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O381QJ000441 for ; Wed, 23 Mar 2005 19:08:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O381dU012441; Wed, 23 Mar 2005 19:08:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O376dU012409 for ; Wed, 23 Mar 2005 19:07:06 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O376WI000427 for ; Wed, 23 Mar 2005 19:07:06 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O376r3042822 for ; Wed, 23 Mar 2005 19:07:06 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O376HV042821 for xorp-cvs@icir.org; Thu, 24 Mar 2005 03:07:06 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 03:07:06 GMT From: Pavlin Radoslavov Message-Id: <200503240307.j2O376HV042821@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 03:07:06 UTC XORP CVS repository Modified files: fea TODO Log message: Remove TODO entries that are already done or not applicable anymore. Revision Changes Path 1.30 +1 -14 xorp/fea/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 03:31:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 19:32:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O3W2Fe018382 for ; Wed, 23 Mar 2005 19:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O3W23u000671 for ; Wed, 23 Mar 2005 19:32:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O3W1dU013155; Wed, 23 Mar 2005 19:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O3VedU013143 for ; Wed, 23 Mar 2005 19:31:40 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O3VewR000668 for ; Wed, 23 Mar 2005 19:31:40 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O3VeVp043195 for ; Wed, 23 Mar 2005 19:31:40 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O3Venp043194 for xorp-cvs@icir.org; Thu, 24 Mar 2005 03:31:40 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 03:31:40 GMT From: Pavlin Radoslavov Message-Id: <200503240331.j2O3Venp043194@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 03:31:40 UTC XORP CVS repository Modified files: libxipc header.hh xrl_pf_sudp.cc Log message: Change the type of some variables from size_t to uint32_t to avoid casting of "size_t&" arguments to (uint32_t&), because amd64 + OpenBSD doesn't like such casting. This fixes an occasional coredump of test_xrl_router on such system. Revision Changes Path 1.6 +3 -3 xorp/libxipc/header.hh 1.37 +17 -15 xorp/libxipc/xrl_pf_sudp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 03:41:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 19:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O3g192022733 for ; Wed, 23 Mar 2005 19:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O3g1nF000778 for ; Wed, 23 Mar 2005 19:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O3g1dU013457; Wed, 23 Mar 2005 19:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O3fvdU013448 for ; Wed, 23 Mar 2005 19:41:58 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O3fvI9000776 for ; Wed, 23 Mar 2005 19:41:57 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O3fvK8043311 for ; Wed, 23 Mar 2005 19:41:57 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O3fv8i043310 for xorp-cvs@icir.org; Thu, 24 Mar 2005 03:41:57 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 03:41:57 GMT From: Pavlin Radoslavov Message-Id: <200503240341.j2O3fv8i043310@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 03:41:57 UTC XORP CVS repository Modified files: mld6igmp TODO Log message: Remove TODO entries that are already done or not applicable anymore. Revision Changes Path 1.16 +1 -10 xorp/mld6igmp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 06:12:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 23 Mar 2005 22:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2O6D1h8062533 for ; Wed, 23 Mar 2005 22:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O6D1VI002290 for ; Wed, 23 Mar 2005 22:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O6D1dU017271; Wed, 23 Mar 2005 22:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2O6CNdU017255 for ; Wed, 23 Mar 2005 22:12:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2O6CNr9002283 for ; Wed, 23 Mar 2005 22:12:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2O6CNUN044675 for ; Wed, 23 Mar 2005 22:12:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2O6CNPb044674 for xorp-cvs@icir.org; Thu, 24 Mar 2005 06:12:23 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 06:12:23 GMT From: Pavlin Radoslavov Message-Id: <200503240612.j2O6CNPb044674@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-03-24 06:12:23 UTC XORP CVS repository Modified files: LiveCD README Log message: Fix a typo. Revision Changes Path 1.2 +1 -1 other/LiveCD/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 10:14:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 02:15:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2OAF2ui011129 for ; Thu, 24 Mar 2005 02:15:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OAF1dU005028 for ; Thu, 24 Mar 2005 02:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OAF1dU023297; Thu, 24 Mar 2005 02:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OAEIdU023281 for ; Thu, 24 Mar 2005 02:14:18 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OAEIqh005015 for ; Thu, 24 Mar 2005 02:14:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2OAEIv2046855 for ; Thu, 24 Mar 2005 02:14:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2OAEITd046854 for xorp-cvs@icir.org; Thu, 24 Mar 2005 10:14:18 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 10:14:18 GMT From: Pavlin Radoslavov Message-Id: <200503241014.j2OAEITd046854@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 10:14:18 UTC XORP CVS repository Modified files: libxorp test_run_command.cc Log message: Change the bogus flags from "--no-such-flags" to "-no-such-flags -more-bogus-flags". Apparently, command "/bin/sleep --no-such-flags" on NetBSD-1.6.1 doesn't return an error. Revision Changes Path 1.3 +3 -3 xorp/libxorp/test_run_command.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 20:16:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 12:17:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2OKH1cF032292 for ; Thu, 24 Mar 2005 12:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OKH17s012600 for ; Thu, 24 Mar 2005 12:17:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OKH1dU012434; Thu, 24 Mar 2005 12:17:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OKGRdU012408 for ; Thu, 24 Mar 2005 12:16:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OKGQLQ012594 for ; Thu, 24 Mar 2005 12:16:26 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2OKGQhW053116 for ; Thu, 24 Mar 2005 12:16:26 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2OKGQlK053115 for xorp-cvs@icir.org; Thu, 24 Mar 2005 20:16:26 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 20:16:26 GMT From: Pavlin Radoslavov Message-Id: <200503242016.j2OKGQlK053115@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 20:16:26 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update build notes for NetBSD-1.6.1 and OpenBSD-current Revision Changes Path 1.22 +3 -3 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 20:19:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 12:20:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2OKK1Tl032903 for ; Thu, 24 Mar 2005 12:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OKK1Ya012636 for ; Thu, 24 Mar 2005 12:20:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OKK1dU012580; Thu, 24 Mar 2005 12:20:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OKJVdU012551 for ; Thu, 24 Mar 2005 12:19:31 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OKJVWX012623 for ; Thu, 24 Mar 2005 12:19:31 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2OKJU1w053205 for ; Thu, 24 Mar 2005 12:19:31 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2OKJU4W053204 for xorp-cvs@icir.org; Thu, 24 Mar 2005 20:19:30 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 20:19:30 GMT From: Pavlin Radoslavov Message-Id: <200503242019.j2OKJU4W053204@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 20:19:30 UTC XORP CVS repository Modified files: . ERRATA Log message: Update ERRATA to reflect that some of the issues have been solved. Revision Changes Path 1.18 +7 -47 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Thu Mar 24 21:54:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 13:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2OLt17g051689 for ; Thu, 24 Mar 2005 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OLt12G013731 for ; Thu, 24 Mar 2005 13:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OLt0dU015595; Thu, 24 Mar 2005 13:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2OLsRdU015575 for ; Thu, 24 Mar 2005 13:54:27 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2OLsRuB013720 for ; Thu, 24 Mar 2005 13:54:27 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2OLsREw053941 for ; Thu, 24 Mar 2005 13:54:27 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2OLsR0m053940 for xorp-cvs@icir.org; Thu, 24 Mar 2005 21:54:27 GMT (envelope-from pavlin) Date: Thu, 24 Mar 2005 21:54:27 GMT From: Pavlin Radoslavov Message-Id: <200503242154.j2OLsR0m053940@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-24 21:54:27 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add a note that "python" is required for running the regression tests. Revision Changes Path 1.23 +4 -4 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Fri Mar 25 01:48:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 17:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P1n1sn005438 for ; Thu, 24 Mar 2005 17:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P1n1kK016532 for ; Thu, 24 Mar 2005 17:49:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P1n0dU023536; Thu, 24 Mar 2005 17:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P1mfdU023523 for ; Thu, 24 Mar 2005 17:48:41 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P1mfh3016530 for ; Thu, 24 Mar 2005 17:48:41 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P1mfdS055676 for ; Thu, 24 Mar 2005 17:48:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P1mfpg055675 for xorp-cvs@icir.org; Fri, 25 Mar 2005 01:48:41 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 01:48:41 GMT From: Pavlin Radoslavov Message-Id: <200503250148.j2P1mfpg055675@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 01:48:41 UTC XORP CVS repository Log message: Directory /usr/local/share/doc/apache/cvs/xorp/docs/policy added to the repository _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Fri Mar 25 01:50:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 17:51:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P1p1KJ005950 for ; Thu, 24 Mar 2005 17:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P1p1it016566 for ; Thu, 24 Mar 2005 17:51:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P1p1dU023610; Thu, 24 Mar 2005 17:51:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P1ogdU023600 for ; Thu, 24 Mar 2005 17:50:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P1ogHd016564 for ; Thu, 24 Mar 2005 17:50:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P1of19055743 for ; Thu, 24 Mar 2005 17:50:41 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P1ofCg055742 for xorp-cvs@icir.org; Fri, 25 Mar 2005 01:50:41 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 01:50:41 GMT From: Pavlin Radoslavov Message-Id: <200503250150.j2P1ofCg055742@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 01:50:41 UTC XORP CVS repository Added files: docs/policy design.tex implementation.tex requirements.tex Log message: Check-in the policy documents from Andrea Bittau. Currently, the documents are not in the XORP style. Obtained from: Andrea Bittau Revision Changes Path 1.1 +587 -0 xorp/docs/policy/design.tex (new) 1.1 +978 -0 xorp/docs/policy/implementation.tex (new) 1.1 +522 -0 xorp/docs/policy/requirements.tex (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:11 2005 Subject: No subject Fri Mar 25 02:12:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 18:13:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P2D1X9011270 for ; Thu, 24 Mar 2005 18:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P2D1kI016783 for ; Thu, 24 Mar 2005 18:13:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P2D0dU024131; Thu, 24 Mar 2005 18:13:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P2CtdU024123 for ; Thu, 24 Mar 2005 18:12:55 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P2CtKR016779 for ; Thu, 24 Mar 2005 18:12:55 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P2CtD7055945 for ; Thu, 24 Mar 2005 18:12:55 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P2Ct8o055944 for xorp-cvs@icir.org; Fri, 25 Mar 2005 02:12:55 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 02:12:55 GMT From: Pavlin Radoslavov Message-Id: <200503250212.j2P2Ct8o055944@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 02:12:55 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Update release notes for 1.1 release candidate. Obtained from: Atanu Revision Changes Path 1.62 +142 -15 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:12 2005 Subject: No subject Fri Mar 25 02:55:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 18:56:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P2u1G9021636 for ; Thu, 24 Mar 2005 18:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P2u15t017178 for ; Thu, 24 Mar 2005 18:56:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P2u1dU025118; Thu, 24 Mar 2005 18:56:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P2tGdU025100 for ; Thu, 24 Mar 2005 18:55:16 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P2tF6j017174 for ; Thu, 24 Mar 2005 18:55:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P2tFT1059469 for ; Thu, 24 Mar 2005 18:55:15 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P2tF1e059468 for xorp-cvs@icir.org; Fri, 25 Mar 2005 02:55:15 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 02:55:15 GMT From: Pavlin Radoslavov Message-Id: <200503250255.j2P2tF1e059468@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/bgp xorp/bgp/harness xorp/bgp/tools xorp/cli xorp/cli/libtecla xorp/cli/tools xorp/contrib/ospfd/xorp xorp/devnotes xorp/docs/papers/hotnets_2002_talk xorp/fea xorp/fea/tools xorp/fib2mrib xorp/libcomm xorp/libfeaclient ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 02:55:15 UTC XORP CVS repository Modified files: . LICENSE bgp aspath.cc aspath.hh aspath_test.cc attribute_manager.cc attribute_manager.hh bgp.cc bgp.hh bgp_module.h bgp_trie.cc bgp_trie.hh bgp_varrw.cc bgp_varrw.hh dummy_main.cc dummy_next_hop_resolver.cc dummy_next_hop_resolver.hh dump_iterators.cc dump_iterators.hh exceptions.hh internal_message.cc internal_message.hh iptuple.cc iptuple.hh local_data.cc local_data.hh main.cc next_hop_resolver.cc next_hop_resolver.hh notification_packet.cc open_packet.cc packet.cc packet.hh parameter.cc parameter.hh path_attribute.cc path_attribute.hh peer.cc peer.hh peer_data.cc peer_data.hh peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh peer_list.cc peer_list.hh peer_route_pair.hh plumbing.cc plumbing.hh process_watch.cc process_watch.hh profile_vars.cc profile_vars.hh rib_ipc_handler.cc rib_ipc_handler.hh route_queue.cc route_queue.hh route_table_base.cc route_table_base.hh route_table_cache.cc route_table_cache.hh route_table_debug.cc route_table_debug.hh route_table_decision.cc route_table_decision.hh route_table_deletion.cc route_table_deletion.hh route_table_dump.cc route_table_dump.hh route_table_fanout.cc route_table_fanout.hh route_table_filter.cc route_table_filter.hh route_table_nhlookup.cc route_table_nhlookup.hh route_table_policy.cc route_table_policy.hh route_table_policy_im.cc route_table_policy_im.hh route_table_policy_sm.cc route_table_policy_sm.hh route_table_reader.cc route_table_reader.hh route_table_ribin.cc route_table_ribin.hh route_table_ribout.cc route_table_ribout.hh socket.cc socket.hh subnet_route.cc subnet_route.hh test_cache.cc test_decision.cc test_deletion.cc test_dump.cc test_fanout.cc test_filter.cc test_main.cc test_next_hop_resolver.cc test_next_hop_resolver.hh test_nhlookup.cc test_packet.cc test_packet.hh test_packet_coding.cc test_peer_data.cc test_plumbing.cc test_plumbing.hh test_ribin.cc test_ribout.cc test_subnet_route.cc timer_const.hh update_attrib.cc update_attrib.hh update_packet.cc update_test.cc xrl_target.cc xrl_target.hh bgp/harness bgppp.cc bgppp.hh command.cc command.hh coord.cc coord.hh peer.cc peer.hh real_trie.hh test_peer.cc test_peer.hh test_trie.cc trie.cc trie.hh trie_payload.hh bgp/tools bgptools_module.h print_peer.cc print_peer.hh print_peers.cc print_routes.cc print_routes.hh print_routes_main.cc xorpsh_print_peers.cc xorpsh_print_routes.cc cli cli_client.cc cli_client.hh cli_command.cc cli_command.hh cli_command_pipe.cc cli_command_pipe.hh cli_module.h cli_node.cc cli_node.hh cli_node_internal_commands.cc cli_node_net.cc cli_private.hh test_cli.cc xrl_cli_node.cc xrl_cli_node.hh cli/libtecla nettest_libtecla.c cli/tools send_cli_processor_xrl.cc contrib/ospfd/xorp ospf_config.C ospf_config.h ospf_module.h xrl_target.C xrl_target.h devnotes template.c template.cc template.h template.hh docs/papers/hotnets_2002_talk elements.mp elemfig.sty samp04_iprouter.mp fea addr_table.cc addr_table.hh click_socket.cc click_socket.hh demo_fea_ifmgr_client.cc fea.cc fea_module.h fte.hh fti_transaction.cc fti_transaction.hh fticonfig.cc fticonfig.hh fticonfig_entry_get.cc fticonfig_entry_get.hh fticonfig_entry_get_click.cc fticonfig_entry_get_dummy.cc fticonfig_entry_get_netlink.cc fticonfig_entry_get_rtsock.cc fticonfig_entry_observer.cc fticonfig_entry_observer.hh fticonfig_entry_observer_dummy.cc fticonfig_entry_observer_netlink.cc fticonfig_entry_observer_rtsock.cc fticonfig_entry_parse_nlm.cc fticonfig_entry_parse_rtm.cc fticonfig_entry_set.cc fticonfig_entry_set.hh fticonfig_entry_set_click.cc fticonfig_entry_set_dummy.cc fticonfig_entry_set_netlink.cc fticonfig_entry_set_rtsock.cc fticonfig_table_get.cc fticonfig_table_get.hh fticonfig_table_get_click.cc fticonfig_table_get_dummy.cc fticonfig_table_get_netlink.cc fticonfig_table_get_sysctl.cc fticonfig_table_observer.cc fticonfig_table_observer.hh fticonfig_table_observer_dummy.cc fticonfig_table_observer_netlink.cc fticonfig_table_observer_rtsock.cc fticonfig_table_parse_nlm.cc fticonfig_table_parse_rtm.cc fticonfig_table_set.cc fticonfig_table_set.hh fticonfig_table_set_click.cc fticonfig_table_set_dummy.cc fticonfig_table_set_netlink.cc fticonfig_table_set_rtsock.cc ifconfig.cc ifconfig.hh ifconfig_addr_table.cc ifconfig_addr_table.hh ifconfig_get.cc ifconfig_get.hh ifconfig_get_click.cc ifconfig_get_dummy.cc ifconfig_get_getifaddrs.cc ifconfig_get_ioctl.cc ifconfig_get_netlink.cc ifconfig_get_proc_linux.cc ifconfig_get_sysctl.cc ifconfig_observer.cc ifconfig_observer.hh ifconfig_observer_dummy.cc ifconfig_observer_netlink.cc ifconfig_observer_rtsock.cc ifconfig_parse_ifaddrs.cc ifconfig_parse_ifreq.cc ifconfig_parse_nlm.cc ifconfig_parse_rtm.cc ifconfig_set.cc ifconfig_set.hh ifconfig_set_click.cc ifconfig_set_dummy.cc ifconfig_set_ioctl.cc ifconfig_set_netlink.cc ifmanager.hh ifmanager_transaction.cc ifmanager_transaction.hh iftree.cc iftree.hh kernel_utils.hh libfeaclient_bridge.cc libfeaclient_bridge.hh mfea_config.cc mfea_dataflow.cc mfea_dataflow.hh mfea_kernel_messages.hh mfea_module.h mfea_mrouter.cc mfea_mrouter.hh mfea_node.cc mfea_node.hh mfea_node_cli.cc mfea_node_cli.hh mfea_osdep.hh mfea_proto_comm.cc mfea_proto_comm.hh mfea_vif.cc mfea_vif.hh netlink_socket.cc netlink_socket.hh netlink_socket_utils.cc netlink_socket_utils.hh nexthop_port_mapper.cc nexthop_port_mapper.hh pa_backend.hh pa_backend_dummy.cc pa_backend_dummy.hh pa_backend_ipfw2.cc pa_backend_ipfw2.hh pa_entry.cc pa_entry.hh pa_table.cc pa_table.hh pa_transaction.cc pa_transaction.hh profile_vars.cc profile_vars.hh rawsock4.cc rawsock4.hh rawsock6.cc rawsock6.hh routing_socket.cc routing_socket.hh routing_socket_utils.cc routing_socket_utils.hh test_fea.cc test_fti.cc test_ifconfig_rtsock.cc test_ifmanager.cc test_ifmanager_transaction.cc test_mfea.cc test_rawsock4.cc test_xrl_sockets4_udp.cc xrl_fti.cc xrl_fti.hh xrl_ifmanager.cc xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh xrl_mfea_node.cc xrl_mfea_node.hh xrl_packet_acl.cc xrl_packet_acl.hh xrl_rawsock4.cc xrl_rawsock4.hh xrl_rawsock6.cc xrl_rawsock6.hh xrl_socket_cmds.cc xrl_socket_cmds.hh xrl_socket_server.cc xrl_socket_server.hh xrl_target.cc xrl_target.hh fea/tools show_interfaces.cc show_interfaces.hh fib2mrib fib2mrib_module.h fib2mrib_node.cc fib2mrib_node.hh fib2mrib_varrw.cc fib2mrib_varrw.hh xorp_fib2mrib.cc xrl_fib2mrib_node.cc xrl_fib2mrib_node.hh libcomm comm_module.h test_comm.c libfeaclient ifmgr_atoms.cc ifmgr_atoms.hh ifmgr_cmd_base.hh ifmgr_cmd_queue.cc ifmgr_cmd_queue.hh ifmgr_cmds.cc ifmgr_cmds.hh ifmgr_xrl_mirror.cc ifmgr_xrl_mirror.hh ifmgr_xrl_replicator.cc ifmgr_xrl_replicator.hh libfeaclient_module.h overview.hh test_local_copy.cc test_remote_copy.cc libproto libproto_module.h proto_node.hh proto_node_cli.cc proto_node_cli.hh proto_register.cc proto_register.hh proto_state.cc proto_state.hh proto_unit.cc proto_unit.hh spt.cc spt.hh test_spt.cc libxipc call_xrl.cc finder.cc finder.hh finder_client.cc finder_client.hh finder_client_observer.cc finder_client_observer.hh finder_client_xrl_target.cc finder_client_xrl_target.hh finder_constants.hh finder_main.cc finder_messenger.cc finder_messenger.hh finder_module.h finder_msgs.cc finder_msgs.hh finder_server.cc finder_server.hh finder_tcp.cc finder_tcp.hh finder_tcp_messenger.cc finder_tcp_messenger.hh finder_xrl_queue.cc finder_xrl_queue.hh finder_xrl_target.cc finder_xrl_target.hh header.cc header.hh hmac.cc hmac.hh ipc_module.h permits.cc permits.hh sockutil.cc sockutil.hh test_finder.cc test_finder_events.cc test_finder_messenger.cc test_finder_msgs.cc test_finder_tcp.cc test_finder_to.cc test_header.cc test_inproc.cc test_lemming.cc test_stcp.cc test_stcppf.cc test_sudp.cc test_xrl.cc test_xrl_args.cc test_xrl_atom.cc test_xrl_error.cc test_xrl_parser.cc test_xrl_receiver.cc test_xrl_router.cc test_xrl_sender.cc xrl.cc xrl.hh xrl_args.cc xrl_args.hh xrl_atom.cc xrl_atom.hh xrl_atom_encoding.cc xrl_atom_encoding.hh xrl_atom_list.cc xrl_atom_list.hh xrl_cmd_map.cc xrl_cmd_map.hh xrl_dispatcher.cc xrl_dispatcher.hh xrl_error.cc xrl_error.hh xrl_module.h xrl_parser.cc xrl_parser.hh xrl_parser_input.cc xrl_parser_input.hh xrl_pf.cc xrl_pf.hh xrl_pf_factory.cc xrl_pf_factory.hh xrl_pf_inproc.cc xrl_pf_inproc.hh xrl_pf_kill.cc xrl_pf_kill.hh xrl_pf_stcp.cc xrl_pf_stcp.hh xrl_pf_stcp_ph.cc xrl_pf_stcp_ph.hh xrl_pf_sudp.cc xrl_pf_sudp.hh xrl_router.cc xrl_router.hh xrl_sender.hh xrl_std_router.cc xrl_std_router.hh xrl_tokens.cc xrl_tokens.hh xuid.cc xuid.hh libxorp asnum.hh asyncio.cc asyncio.hh buffer.hh buffered_asyncio.cc buffered_asyncio.hh c_format.cc c_format.hh callback-gen.py callback.cc callback.hh callback_debug.hh callback_nodebug.hh clock.cc clock.hh config_param.hh debug.c debug.h ether_compat.c ether_compat.h eventloop.cc eventloop.hh exceptions.cc exceptions.hh heap.cc heap.hh ipnet.hh ipv4.cc ipv4.hh ipv4net.hh ipv6.cc ipv6.hh ipv6net.hh ipvx.cc ipvx.hh ipvxnet.hh libxorp_module.h mac.cc mac.hh minitraits.hh nexthop.cc nexthop.hh old_trie.hh popen.cc popen.hh profile.cc profile.hh ref_ptr.cc ref_ptr.hh ref_trie.hh run_command.cc run_command.hh safe_callback_obj.cc safe_callback_obj.hh selector.cc selector.hh service.cc service.hh status_codes.h test_asyncio.cc test_callback.cc test_config_param.cc test_heap.cc test_ipnet.cc test_ipv4.cc test_ipv4net.cc test_ipv6.cc test_ipv6net.cc test_ipvx.cc test_ipvxnet.cc test_mac.cc test_main.hh test_observers.cc test_profile.cc test_ref_ptr.cc test_ref_trie.cc test_run_command.cc test_service.cc test_test_main.cc test_time_slice.cc test_timer.cc test_timeval.cc test_trie.cc test_types.cc test_vif.cc time_slice.cc time_slice.hh timer.cc timer.hh timespent.hh timeval.hh token.cc token.hh tokenize.hh transaction.cc transaction.hh trie.hh utility.c utility.h utils.hh vif.cc vif.hh xlog.c xlog.h xorp.h mibs bgp4_mib_1657.cc bgp4_mib_1657.hh bgp4_mib_1657_bgp4pathattrtable.cc bgp4_mib_1657_bgp4pathattrtable.hh bgp4_mib_1657_bgpidentifier.cc bgp4_mib_1657_bgpidentifier.hh bgp4_mib_1657_bgplocalas.cc bgp4_mib_1657_bgplocalas.hh bgp4_mib_1657_bgppeertable.cc bgp4_mib_1657_bgppeertable.hh bgp4_mib_1657_bgpversion.cc bgp4_mib_1657_bgpversion.hh bgp4_mib_module.h bgp4_mib_xrl_target.cc bgp4_mib_xrl_target.hh fixconfigs.h ospf_mib_1850.cc ospf_mib_1850.hh test_xorpevents.cc xorp_if_mib_module.cc xorp_if_mib_module.hh xorp_if_mib_xrl_target.cc xorp_if_mib_xrl_target.hh xorp_if_module.h xorp_netsnmp_module.h xorpevents.cc xorpevents.hh mld6igmp igmp_proto.cc igmp_proto.h mld6_proto.cc mld6_proto.h mld6igmp_config.cc mld6igmp_member_query.cc mld6igmp_member_query.hh mld6igmp_module.h mld6igmp_node.cc mld6igmp_node.hh mld6igmp_node_cli.cc mld6igmp_node_cli.hh mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh test_mld6igmp.cc xorp_igmp.cc xorp_mld.cc xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh mrt buffer.c buffer.h inet_cksum.c inet_cksum.h max_vifs.h mifset.cc mifset.hh mrib_table.cc mrib_table.hh mrt.hh mrt_module.h multicast_defs.h netstream_access.h test_mrib.cc test_mrt.cc mrt/include ip_mroute.h pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_mfc.cc pim_mfc.hh pim_module.h pim_mre.cc pim_mre.hh pim_mre_assert.cc pim_mre_data.cc pim_mre_join_prune.cc pim_mre_register.cc pim_mre_rpf.cc pim_mre_task.cc pim_mre_task.hh pim_mre_track_state.cc pim_mre_track_state.hh pim_mrib_table.cc pim_mrib_table.hh pim_mrt.cc pim_mrt.hh pim_mrt_mfc.cc pim_mrt_task.cc pim_nbr.cc pim_nbr.hh pim_node.cc pim_node.hh pim_node_cli.cc pim_node_cli.hh pim_proto.h pim_proto_assert.cc pim_proto_assert.hh pim_proto_bootstrap.cc pim_proto_cand_rp_adv.cc pim_proto_graft.cc pim_proto_graft_ack.cc pim_proto_hello.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh pim_proto_register.cc pim_proto_register_stop.cc pim_rp.cc pim_rp.hh pim_scope_zone_table.cc pim_scope_zone_table.hh pim_vif.cc pim_vif.hh test_pim.cc xorp_pimsm4.cc xorp_pimsm6.cc xrl_pim_node.cc xrl_pim_node.hh policy code.cc code.hh code_generator.cc code_generator.hh code_list.cc code_list.hh configuration.cc configuration.hh dependancy.hh export_code_generator.cc export_code_generator.hh filter_manager.cc filter_manager.hh filter_manager_base.hh node.hh node_base.hh parser.cc parser.hh policy_list.cc policy_list.hh policy_map.cc policy_map.hh policy_module.h policy_parser.hh policy_statement.cc policy_statement.hh policy_target.cc policy_target.hh process_watch.cc process_watch.hh process_watch_base.hh pw_notifier.hh semantic_varrw.cc semantic_varrw.hh set_map.cc set_map.hh source_match_code_generator.cc source_match_code_generator.hh term.cc term.hh var_map.cc var_map.hh visitor.hh visitor_semantic.cc visitor_semantic.hh visitor_setdep.cc visitor_setdep.hh xorp_policy.cc xrl_target.cc xrl_target.hh policy/backend instr_visitor.hh instruction.hh instruction_base.hh iv_exec.cc iv_exec.hh policy_backend_parser.hh policy_filter.cc policy_filter.hh policy_filters.cc policy_filters.hh policy_instr.hh policy_redist_map.cc policy_redist_map.hh policytags.cc policytags.hh set_manager.cc set_manager.hh single_varrw.cc single_varrw.hh term_instr.hh policy/common dispatcher.cc dispatcher.hh elem_null.hh elem_set.cc elem_set.hh element.cc element.hh element_base.hh element_factory.cc element_factory.hh filter.cc filter.hh operator.hh operator_base.hh policy_exception.hh policy_utils.cc policy_utils.hh register_elements.cc register_elements.hh register_operations.cc register_operations.hh varrw.hh policy/test compilepolicy.cc execpolicy.cc file_varrw.cc file_varrw.hh filter_manager_fake.cc filter_manager_fake.hh process_watch_fake.cc process_watch_fake.hh rib add_route.cc dummy_register_server.cc dummy_register_server.hh main_rib.cc main_routemap.cc parser.cc parser.hh parser_direct_cmds.hh parser_xrl_cmds.hh profile_vars.cc profile_vars.hh protocol.cc protocol.hh redist_policy.hh redist_xrl.cc redist_xrl.hh register_server.cc register_server.hh rib.cc rib.hh rib_manager.cc rib_manager.hh rib_module.h rib_varrw.cc rib_varrw.hh route.hh routemap.cc routemap.hh rt_tab_base.cc rt_tab_base.hh rt_tab_deletion.cc rt_tab_deletion.hh rt_tab_expect.cc rt_tab_expect.hh rt_tab_extint.cc rt_tab_extint.hh rt_tab_log.cc rt_tab_log.hh rt_tab_merged.cc rt_tab_merged.hh rt_tab_origin.cc rt_tab_origin.hh rt_tab_pol_conn.cc rt_tab_pol_conn.hh rt_tab_pol_redist.cc rt_tab_pol_redist.hh rt_tab_redist.cc rt_tab_redist.hh rt_tab_register.cc rt_tab_register.hh test_deletion.cc test_redist.cc test_register.cc test_register_xrls.cc test_rib_direct.cc test_rib_xrls.cc vifmanager.cc vifmanager.hh xrl_target.cc xrl_target.hh rib/tools show_routes.cc rip auth.cc auth.hh constants.hh output.hh output_table.cc output_table.hh output_updates.cc output_updates.hh packet_assembly.hh packet_queue.cc packet_queue.hh packets.hh peer.cc peer.hh port.cc port.hh port_io.hh port_manager.hh port_vars.hh redist.cc redist.hh rib_notifier_base.cc rib_notifier_base.hh rip_module.h rip_varrw.cc rip_varrw.hh route_db.cc route_db.hh route_entry.cc route_entry.hh system.hh test_auth.cc test_outputs.cc test_packets.cc test_request.cc test_route_walk.cc test_timers.cc test_update_queue.cc test_utils.hh update_queue.cc update_queue.hh xorp_rip_main.cc xrl_config.cc xrl_config.hh xrl_port_io.cc xrl_port_io.hh xrl_port_manager.cc xrl_port_manager.hh xrl_process_spy.cc xrl_process_spy.hh xrl_redist_manager.cc xrl_redist_manager.hh xrl_rib_notifier.cc xrl_rib_notifier.hh xrl_target_common.hh xrl_target_rip.cc xrl_target_rip.hh xrl_target_ripng.cc xrl_target_ripng.hh rip/tools common.cc common.hh rip_announcer.cc ripng_announcer.cc show_peer_stats.cc show_stats.cc rtrmgr cli.cc cli.hh command_tree.cc command_tree.hh conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh generic_module_manager.cc generic_module_manager.hh main_rtrmgr.cc main_rtrmgr.hh master_conf_tree.cc master_conf_tree.hh master_conf_tree_node.cc master_conf_tree_node.hh master_template_tree.cc master_template_tree.hh master_template_tree_node.cc master_template_tree_node.hh module_command.cc module_command.hh module_manager.cc module_manager.hh op_commands.cc op_commands.hh path_segment.hh profiler.cc randomness.cc randomness.hh rtrmgr_error.hh rtrmgr_module.h slave_conf_tree.cc slave_conf_tree.hh slave_conf_tree_node.cc slave_conf_tree_node.hh slave_module_manager.cc slave_module_manager.hh task.cc task.hh template_base_command.cc template_base_command.hh template_commands.cc template_commands.hh template_tree.cc template_tree.hh template_tree_node.cc template_tree_node.hh test_module_manager.cc test_module_manager.hh test_sample_config.cc test_sample_config.hh test_templates.cc unexpanded_xrl.cc unexpanded_xrl.hh userdb.cc userdb.hh util.cc util.hh xorp_client.cc xorp_client.hh xorpsh_main.cc xorpsh_main.hh xrl_rtrmgr_interface.cc xrl_rtrmgr_interface.hh xrl_xorpsh_interface.cc xrl_xorpsh_interface.hh xrldb.cc xrldb.hh static_routes static_routes_module.h static_routes_node.cc static_routes_node.hh static_routes_varrw.cc static_routes_varrw.hh xorp_static_routes.cc xrl_static_routes_node.cc xrl_static_routes_node.hh utils runit.cc xrl/interfaces bgp_mib_traps_xif.cc bgp_mib_traps_xif.hh bgp_xif.cc bgp_xif.hh cli_manager_xif.cc cli_manager_xif.hh cli_processor_xif.cc cli_processor_xif.hh common_xif.cc common_xif.hh coord_xif.cc coord_xif.hh datain_xif.cc datain_xif.hh fea_click_xif.cc fea_click_xif.hh fea_fib_client_xif.cc fea_fib_client_xif.hh fea_fib_xif.cc fea_fib_xif.hh fea_ifmgr_client_xif.cc fea_ifmgr_client_xif.hh fea_ifmgr_mirror_xif.cc fea_ifmgr_mirror_xif.hh fea_ifmgr_replicator_xif.cc fea_ifmgr_replicator_xif.hh fea_ifmgr_xif.cc fea_ifmgr_xif.hh fea_rawpkt4_client_xif.cc fea_rawpkt4_client_xif.hh fea_rawpkt4_xif.cc fea_rawpkt4_xif.hh fea_rawpkt6_client_xif.cc fea_rawpkt6_client_xif.hh fea_rawpkt6_xif.cc fea_rawpkt6_xif.hh fib2mrib_xif.cc fib2mrib_xif.hh finder_client_xif.cc finder_client_xif.hh finder_event_notifier_xif.cc finder_event_notifier_xif.hh finder_event_observer_xif.cc finder_event_observer_xif.hh finder_xif.cc finder_xif.hh fti_xif.cc fti_xif.hh mfea_client_xif.cc mfea_client_xif.hh mfea_xif.cc mfea_xif.hh mld6igmp_client_xif.cc mld6igmp_client_xif.hh mld6igmp_xif.cc mld6igmp_xif.hh ospf_xif.cc ospf_xif.hh ospfv2_xif.cc ospfv2_xif.hh ospfv3_xif.cc ospfv3_xif.hh packet_acl_xif.cc packet_acl_xif.hh pim_xif.cc pim_xif.hh policy_backend_xif.cc policy_backend_xif.hh policy_redist4_xif.cc policy_redist4_xif.hh policy_redist6_xif.cc policy_redist6_xif.hh policy_xif.cc policy_xif.hh profile_client_xif.cc profile_client_xif.hh profile_xif.cc profile_xif.hh redist4_xif.cc redist4_xif.hh redist6_xif.cc redist6_xif.hh redist_transaction4_xif.cc redist_transaction4_xif.hh redist_transaction6_xif.cc redist_transaction6_xif.hh rib_client_xif.cc rib_client_xif.hh rib_xif.cc rib_xif.hh rip_xif.cc rip_xif.hh ripng_xif.cc ripng_xif.hh rtrmgr_client_xif.cc rtrmgr_client_xif.hh rtrmgr_xif.cc rtrmgr_xif.hh socket4_locator_xif.cc socket4_locator_xif.hh socket4_user_xif.cc socket4_user_xif.hh socket4_xif.cc socket4_xif.hh socket6_locator_xif.cc socket6_locator_xif.hh socket6_user_xif.cc socket6_user_xif.hh socket6_xif.cc socket6_xif.hh static_routes_xif.cc static_routes_xif.hh test_peer_xif.cc test_peer_xif.hh test_xif.cc test_xif.hh test_xrls_xif.cc test_xrls_xif.hh xorp_if_mib_xif.cc xorp_if_mib_xif.hh xrl/scripts/Xif util.py xrl/targets bgp.xrls bgp4_mib.xrls bgp4_mib_base.cc bgp4_mib_base.hh bgp_base.cc bgp_base.hh cli.xrls cli_base.cc cli_base.hh coord.xrls coord_base.cc coord_base.hh demo_fea_ifmgr_client.xrls demo_fea_ifmgr_client_base.cc demo_fea_ifmgr_client_base.hh fea.xrls fea_base.cc fea_base.hh fea_ifmgr_mirror.xrls fea_ifmgr_mirror_base.cc fea_ifmgr_mirror_base.hh fib2mrib.xrls fib2mrib_base.cc fib2mrib_base.hh finder.xrls finder_base.cc finder_base.hh finder_client.xrls finder_client_base.cc finder_client_base.hh mfea.xrls mfea_base.cc mfea_base.hh mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh ospf.xrls ospf_base.cc ospf_base.hh ospfv2.xrls ospfv2_base.cc ospfv2_base.hh ospfv3.xrls ospfv3_base.cc ospfv3_base.hh packet_acl.xrls packet_acl_base.cc packet_acl_base.hh pim.xrls pim_base.cc pim_base.hh policy.xrls policy_base.cc policy_base.hh profiler.xrls profiler_base.cc profiler_base.hh rib.xrls rib_base.cc rib_base.hh ribclient.xrls ribclient_base.cc ribclient_base.hh rip.xrls rip_base.cc rip_base.hh ripng.xrls ripng_base.cc ripng_base.hh rtrmgr.xrls rtrmgr_base.cc rtrmgr_base.hh show_routes.xrls show_routes_base.cc show_routes_base.hh socket_server.xrls socket_server_base.cc socket_server_base.hh static_routes.xrls static_routes_base.cc static_routes_base.hh test.xrls test_base.cc test_base.hh test_fea_ifmgr_mirror.xrls test_fea_ifmgr_mirror_base.cc test_fea_ifmgr_mirror_base.hh test_finder_events.xrls test_finder_events_base.cc test_finder_events_base.hh test_peer.xrls test_peer_base.cc test_peer_base.hh test_socket4.xrls test_socket4_base.cc test_socket4_base.hh test_socket6.xrls test_socket6_base.cc test_socket6_base.hh test_xrls.xrls test_xrls_base.cc test_xrls_base.hh xorp_if_mib.xrls xorp_if_mib_base.cc xorp_if_mib_base.hh xorpsh.xrls xorpsh_base.cc xorpsh_base.hh xrl/tests test_generated.cc test_tgt.cc test_tgt.hh test_xifs.cc test_xifs.hh Log message: Update copyright date. Revision Changes Path 1.5 +2 -2 xorp/LICENSE 1.24 +2 -2 xorp/bgp/aspath.cc 1.18 +2 -2 xorp/bgp/aspath.hh 1.11 +2 -2 xorp/bgp/aspath_test.cc 1.9 +2 -2 xorp/bgp/attribute_manager.cc 1.6 +2 -2 xorp/bgp/attribute_manager.hh 1.50 +2 -2 xorp/bgp/bgp.cc 1.40 +2 -2 xorp/bgp/bgp.hh 1.4 +2 -2 xorp/bgp/bgp_module.h 1.16 +2 -2 xorp/bgp/bgp_trie.cc 1.14 +2 -2 xorp/bgp/bgp_trie.hh 1.7 +2 -2 xorp/bgp/bgp_varrw.cc 1.6 +2 -2 xorp/bgp/bgp_varrw.hh 1.10 +2 -2 xorp/bgp/dummy_main.cc 1.11 +2 -2 xorp/bgp/dummy_next_hop_resolver.cc 1.9 +2 -2 xorp/bgp/dummy_next_hop_resolver.hh 1.27 +2 -2 xorp/bgp/dump_iterators.cc 1.15 +2 -2 xorp/bgp/dump_iterators.hh 1.6 +2 -2 xorp/bgp/exceptions.hh 1.6 +2 -2 xorp/bgp/harness/bgppp.cc 1.4 +2 -2 xorp/bgp/harness/bgppp.hh 1.20 +2 -2 xorp/bgp/harness/command.cc 1.13 +2 -2 xorp/bgp/harness/command.hh 1.22 +2 -2 xorp/bgp/harness/coord.cc 1.9 +2 -2 xorp/bgp/harness/coord.hh 1.60 +2 -2 xorp/bgp/harness/peer.cc 1.16 +2 -2 xorp/bgp/harness/peer.hh 1.8 +2 -2 xorp/bgp/harness/real_trie.hh 1.31 +2 -2 xorp/bgp/harness/test_peer.cc 1.12 +2 -2 xorp/bgp/harness/test_peer.hh 1.17 +2 -2 xorp/bgp/harness/test_trie.cc 1.15 +2 -2 xorp/bgp/harness/trie.cc 1.13 +2 -2 xorp/bgp/harness/trie.hh 1.6 +2 -2 xorp/bgp/harness/trie_payload.hh 1.8 +2 -2 xorp/bgp/internal_message.cc 1.8 +2 -2 xorp/bgp/internal_message.hh 1.9 +2 -2 xorp/bgp/iptuple.cc 1.7 +2 -2 xorp/bgp/iptuple.hh 1.9 +2 -2 xorp/bgp/local_data.cc 1.8 +2 -2 xorp/bgp/local_data.hh 1.41 +2 -2 xorp/bgp/main.cc 1.41 +2 -2 xorp/bgp/next_hop_resolver.cc 1.27 +2 -2 xorp/bgp/next_hop_resolver.hh 1.20 +2 -2 xorp/bgp/notification_packet.cc 1.21 +2 -2 xorp/bgp/open_packet.cc 1.12 +2 -2 xorp/bgp/packet.cc 1.31 +2 -2 xorp/bgp/packet.hh 1.26 +2 -2 xorp/bgp/parameter.cc 1.18 +2 -2 xorp/bgp/parameter.hh 1.55 +2 -2 xorp/bgp/path_attribute.cc 1.32 +2 -2 xorp/bgp/path_attribute.hh 1.91 +2 -2 xorp/bgp/peer.cc 1.21 +2 -2 xorp/bgp/peer.hh 1.20 +2 -2 xorp/bgp/peer_data.cc 1.15 +2 -2 xorp/bgp/peer_data.hh 1.38 +2 -2 xorp/bgp/peer_handler.cc 1.16 +2 -2 xorp/bgp/peer_handler.hh 1.9 +2 -2 xorp/bgp/peer_handler_debug.cc 1.5 +2 -2 xorp/bgp/peer_handler_debug.hh 1.17 +2 -2 xorp/bgp/peer_list.cc 1.7 +2 -2 xorp/bgp/peer_list.hh 1.12 +2 -2 xorp/bgp/peer_route_pair.hh 1.65 +2 -2 xorp/bgp/plumbing.cc 1.30 +2 -2 xorp/bgp/plumbing.hh 1.14 +2 -2 xorp/bgp/process_watch.cc 1.11 +2 -2 xorp/bgp/process_watch.hh 1.10 +2 -2 xorp/bgp/profile_vars.cc 1.7 +2 -2 xorp/bgp/profile_vars.hh 1.63 +2 -2 xorp/bgp/rib_ipc_handler.cc 1.35 +2 -2 xorp/bgp/rib_ipc_handler.hh 1.8 +2 -2 xorp/bgp/route_queue.cc 1.12 +2 -2 xorp/bgp/route_queue.hh 1.9 +2 -2 xorp/bgp/route_table_base.cc 1.12 +2 -2 xorp/bgp/route_table_base.hh 1.31 +2 -2 xorp/bgp/route_table_cache.cc 1.20 +2 -2 xorp/bgp/route_table_cache.hh 1.13 +2 -2 xorp/bgp/route_table_debug.cc 1.10 +2 -2 xorp/bgp/route_table_debug.hh 1.37 +2 -2 xorp/bgp/route_table_decision.cc 1.20 +2 -2 xorp/bgp/route_table_decision.hh 1.20 +2 -2 xorp/bgp/route_table_deletion.cc 1.17 +2 -2 xorp/bgp/route_table_deletion.hh 1.35 +2 -2 xorp/bgp/route_table_dump.cc 1.17 +2 -2 xorp/bgp/route_table_dump.hh 1.50 +2 -2 xorp/bgp/route_table_fanout.cc 1.18 +2 -2 xorp/bgp/route_table_fanout.hh 1.27 +2 -2 xorp/bgp/route_table_filter.cc 1.14 +2 -2 xorp/bgp/route_table_filter.hh 1.16 +2 -2 xorp/bgp/route_table_nhlookup.cc 1.13 +2 -2 xorp/bgp/route_table_nhlookup.hh 1.5 +2 -2 xorp/bgp/route_table_policy.cc 1.5 +2 -2 xorp/bgp/route_table_policy.hh 1.4 +2 -2 xorp/bgp/route_table_policy_im.cc 1.3 +2 -2 xorp/bgp/route_table_policy_im.hh 1.3 +2 -2 xorp/bgp/route_table_policy_sm.cc 1.3 +2 -2 xorp/bgp/route_table_policy_sm.hh 1.7 +2 -2 xorp/bgp/route_table_reader.cc 1.6 +2 -2 xorp/bgp/route_table_reader.hh 1.38 +2 -2 xorp/bgp/route_table_ribin.cc 1.22 +2 -2 xorp/bgp/route_table_ribin.hh 1.27 +2 -2 xorp/bgp/route_table_ribout.cc 1.14 +2 -2 xorp/bgp/route_table_ribout.hh 1.23 +2 -2 xorp/bgp/socket.cc 1.10 +2 -2 xorp/bgp/socket.hh 1.16 +2 -2 xorp/bgp/subnet_route.cc 1.17 +2 -2 xorp/bgp/subnet_route.hh 1.23 +2 -2 xorp/bgp/test_cache.cc 1.31 +2 -2 xorp/bgp/test_decision.cc 1.22 +2 -2 xorp/bgp/test_deletion.cc 1.45 +2 -2 xorp/bgp/test_dump.cc 1.25 +2 -2 xorp/bgp/test_fanout.cc 1.28 +2 -2 xorp/bgp/test_filter.cc 1.13 +2 -2 xorp/bgp/test_main.cc 1.22 +2 -2 xorp/bgp/test_next_hop_resolver.cc 1.4 +2 -2 xorp/bgp/test_next_hop_resolver.hh 1.25 +2 -2 xorp/bgp/test_nhlookup.cc 1.9 +2 -2 xorp/bgp/test_packet.cc 1.5 +2 -2 xorp/bgp/test_packet.hh 1.12 +2 -2 xorp/bgp/test_packet_coding.cc 1.8 +2 -2 xorp/bgp/test_peer_data.cc 1.13 +2 -2 xorp/bgp/test_plumbing.cc 1.7 +2 -2 xorp/bgp/test_plumbing.hh 1.27 +2 -2 xorp/bgp/test_ribin.cc 1.23 +2 -2 xorp/bgp/test_ribout.cc 1.4 +2 -2 xorp/bgp/test_subnet_route.cc 1.4 +2 -2 xorp/bgp/timer_const.hh 1.4 +2 -2 xorp/bgp/tools/bgptools_module.h 1.17 +2 -2 xorp/bgp/tools/print_peer.cc 1.10 +2 -2 xorp/bgp/tools/print_peer.hh 1.4 +2 -2 xorp/bgp/tools/print_peers.cc 1.15 +2 -2 xorp/bgp/tools/print_routes.cc 1.13 +2 -2 xorp/bgp/tools/print_routes.hh 1.6 +2 -2 xorp/bgp/tools/print_routes_main.cc 1.4 +2 -2 xorp/bgp/tools/xorpsh_print_peers.cc 1.9 +2 -2 xorp/bgp/tools/xorpsh_print_routes.cc 1.10 +2 -2 xorp/bgp/update_attrib.cc 1.10 +2 -2 xorp/bgp/update_attrib.hh 1.34 +2 -2 xorp/bgp/update_packet.cc 1.12 +2 -2 xorp/bgp/update_test.cc 1.37 +2 -2 xorp/bgp/xrl_target.cc 1.29 +2 -2 xorp/bgp/xrl_target.hh 1.27 +2 -2 xorp/cli/cli_client.cc 1.14 +2 -2 xorp/cli/cli_client.hh 1.13 +2 -2 xorp/cli/cli_command.cc 1.12 +2 -2 xorp/cli/cli_command.hh 1.6 +2 -2 xorp/cli/cli_command_pipe.cc 1.6 +2 -2 xorp/cli/cli_command_pipe.hh 1.4 +2 -2 xorp/cli/cli_module.h 1.25 +2 -2 xorp/cli/cli_node.cc 1.18 +2 -2 xorp/cli/cli_node.hh 1.12 +2 -2 xorp/cli/cli_node_internal_commands.cc 1.34 +2 -2 xorp/cli/cli_node_net.cc 1.6 +2 -2 xorp/cli/cli_private.hh 1.5 +2 -2 xorp/cli/libtecla/nettest_libtecla.c 1.36 +2 -2 xorp/cli/test_cli.cc 1.6 +2 -2 xorp/cli/tools/send_cli_processor_xrl.cc 1.26 +2 -2 xorp/cli/xrl_cli_node.cc 1.17 +2 -2 xorp/cli/xrl_cli_node.hh 1.4 +2 -2 xorp/contrib/ospfd/xorp/ospf_config.C 1.5 +2 -2 xorp/contrib/ospfd/xorp/ospf_config.h 1.5 +2 -2 xorp/contrib/ospfd/xorp/ospf_module.h 1.9 +2 -2 xorp/contrib/ospfd/xorp/xrl_target.C 1.9 +2 -2 xorp/contrib/ospfd/xorp/xrl_target.h 1.5 +2 -2 xorp/devnotes/template.c 1.5 +2 -2 xorp/devnotes/template.cc 1.5 +2 -2 xorp/devnotes/template.h 1.5 +2 -2 xorp/devnotes/template.hh 1.3 +1 -1 xorp/docs/papers/hotnets_2002_talk/elements.mp 1.3 +1 -1 xorp/docs/papers/hotnets_2002_talk/elemfig.sty 1.3 +1 -1 xorp/docs/papers/hotnets_2002_talk/samp04_iprouter.mp 1.4 +2 -2 xorp/fea/addr_table.cc 1.4 +2 -2 xorp/fea/addr_table.hh 1.21 +2 -2 xorp/fea/click_socket.cc 1.17 +2 -2 xorp/fea/click_socket.hh 1.10 +2 -2 xorp/fea/demo_fea_ifmgr_client.cc 1.49 +2 -2 xorp/fea/fea.cc 1.4 +2 -2 xorp/fea/fea_module.h 1.16 +2 -2 xorp/fea/fte.hh 1.9 +2 -2 xorp/fea/fti_transaction.cc 1.11 +2 -2 xorp/fea/fti_transaction.hh 1.41 +2 -2 xorp/fea/fticonfig.cc 1.33 +2 -2 xorp/fea/fticonfig.hh 1.8 +2 -2 xorp/fea/fticonfig_entry_get.cc 1.22 +2 -2 xorp/fea/fticonfig_entry_get.hh 1.10 +2 -2 xorp/fea/fticonfig_entry_get_click.cc 1.12 +2 -2 xorp/fea/fticonfig_entry_get_dummy.cc 1.28 +2 -2 xorp/fea/fticonfig_entry_get_netlink.cc 1.28 +2 -2 xorp/fea/fticonfig_entry_get_rtsock.cc 1.7 +2 -2 xorp/fea/fticonfig_entry_observer.cc 1.13 +2 -2 xorp/fea/fticonfig_entry_observer.hh 1.9 +2 -2 xorp/fea/fticonfig_entry_observer_dummy.cc 1.10 +2 -2 xorp/fea/fticonfig_entry_observer_netlink.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_observer_rtsock.cc 1.13 +2 -2 xorp/fea/fticonfig_entry_parse_nlm.cc 1.10 +2 -2 xorp/fea/fticonfig_entry_parse_rtm.cc 1.9 +2 -2 xorp/fea/fticonfig_entry_set.cc 1.19 +2 -2 xorp/fea/fticonfig_entry_set.hh 1.24 +2 -2 xorp/fea/fticonfig_entry_set_click.cc 1.10 +2 -2 xorp/fea/fticonfig_entry_set_dummy.cc 1.22 +2 -2 xorp/fea/fticonfig_entry_set_netlink.cc 1.27 +2 -2 xorp/fea/fticonfig_entry_set_rtsock.cc 1.8 +2 -2 xorp/fea/fticonfig_table_get.cc 1.19 +2 -2 xorp/fea/fticonfig_table_get.hh 1.11 +2 -2 xorp/fea/fticonfig_table_get_click.cc 1.10 +2 -2 xorp/fea/fticonfig_table_get_dummy.cc 1.26 +2 -2 xorp/fea/fticonfig_table_get_netlink.cc 1.18 +2 -2 xorp/fea/fticonfig_table_get_sysctl.cc 1.11 +2 -2 xorp/fea/fticonfig_table_observer.cc 1.14 +2 -2 xorp/fea/fticonfig_table_observer.hh 1.9 +2 -2 xorp/fea/fticonfig_table_observer_dummy.cc 1.11 +2 -2 xorp/fea/fticonfig_table_observer_netlink.cc 1.14 +2 -2 xorp/fea/fticonfig_table_observer_rtsock.cc 1.14 +2 -2 xorp/fea/fticonfig_table_parse_nlm.cc 1.13 +2 -2 xorp/fea/fticonfig_table_parse_rtm.cc 1.9 +2 -2 xorp/fea/fticonfig_table_set.cc 1.15 +2 -2 xorp/fea/fticonfig_table_set.hh 1.9 +2 -2 xorp/fea/fticonfig_table_set_click.cc 1.9 +2 -2 xorp/fea/fticonfig_table_set_dummy.cc 1.8 +2 -2 xorp/fea/fticonfig_table_set_netlink.cc 1.11 +2 -2 xorp/fea/fticonfig_table_set_rtsock.cc 1.45 +2 -2 xorp/fea/ifconfig.cc 1.42 +2 -2 xorp/fea/ifconfig.hh 1.7 +2 -2 xorp/fea/ifconfig_addr_table.cc 1.6 +2 -2 xorp/fea/ifconfig_addr_table.hh 1.9 +2 -2 xorp/fea/ifconfig_get.cc 1.20 +2 -2 xorp/fea/ifconfig_get.hh 1.9 +2 -2 xorp/fea/ifconfig_get_click.cc 1.10 +2 -2 xorp/fea/ifconfig_get_dummy.cc 1.11 +2 -2 xorp/fea/ifconfig_get_getifaddrs.cc 1.13 +2 -2 xorp/fea/ifconfig_get_ioctl.cc 1.15 +2 -2 xorp/fea/ifconfig_get_netlink.cc 1.21 +2 -2 xorp/fea/ifconfig_get_proc_linux.cc 1.11 +2 -2 xorp/fea/ifconfig_get_sysctl.cc 1.7 +2 -2 xorp/fea/ifconfig_observer.cc 1.13 +2 -2 xorp/fea/ifconfig_observer.hh 1.9 +2 -2 xorp/fea/ifconfig_observer_dummy.cc 1.12 +2 -2 xorp/fea/ifconfig_observer_netlink.cc 1.11 +2 -2 xorp/fea/ifconfig_observer_rtsock.cc 1.23 +2 -2 xorp/fea/ifconfig_parse_ifaddrs.cc 1.23 +2 -2 xorp/fea/ifconfig_parse_ifreq.cc 1.17 +2 -2 xorp/fea/ifconfig_parse_nlm.cc 1.23 +2 -2 xorp/fea/ifconfig_parse_rtm.cc 1.26 +2 -2 xorp/fea/ifconfig_set.cc 1.34 +2 -2 xorp/fea/ifconfig_set.hh 1.22 +2 -2 xorp/fea/ifconfig_set_click.cc 1.20 +2 -2 xorp/fea/ifconfig_set_dummy.cc 1.36 +2 -2 xorp/fea/ifconfig_set_ioctl.cc 1.21 +2 -2 xorp/fea/ifconfig_set_netlink.cc 1.6 +2 -2 xorp/fea/ifmanager.hh 1.5 +2 -2 xorp/fea/ifmanager_transaction.cc 1.10 +2 -2 xorp/fea/ifmanager_transaction.hh 1.27 +2 -2 xorp/fea/iftree.cc 1.28 +2 -2 xorp/fea/iftree.hh 1.3 +2 -2 xorp/fea/kernel_utils.hh 1.14 +2 -2 xorp/fea/libfeaclient_bridge.cc 1.6 +2 -2 xorp/fea/libfeaclient_bridge.hh 1.11 +2 -2 xorp/fea/mfea_config.cc 1.5 +2 -2 xorp/fea/mfea_dataflow.cc 1.5 +2 -2 xorp/fea/mfea_dataflow.hh 1.4 +2 -2 xorp/fea/mfea_kernel_messages.hh 1.3 +2 -2 xorp/fea/mfea_module.h 1.29 +2 -2 xorp/fea/mfea_mrouter.cc 1.10 +2 -2 xorp/fea/mfea_mrouter.hh 1.53 +2 -2 xorp/fea/mfea_node.cc 1.31 +2 -2 xorp/fea/mfea_node.hh 1.16 +2 -2 xorp/fea/mfea_node_cli.cc 1.5 +2 -2 xorp/fea/mfea_node_cli.hh 1.6 +2 -2 xorp/fea/mfea_osdep.hh 1.29 +2 -2 xorp/fea/mfea_proto_comm.cc 1.10 +2 -2 xorp/fea/mfea_proto_comm.hh 1.14 +2 -2 xorp/fea/mfea_vif.cc 1.7 +2 -2 xorp/fea/mfea_vif.hh 1.30 +2 -2 xorp/fea/netlink_socket.cc 1.15 +2 -2 xorp/fea/netlink_socket.hh 1.23 +2 -2 xorp/fea/netlink_socket_utils.cc 1.13 +2 -2 xorp/fea/netlink_socket_utils.hh 1.9 +2 -2 xorp/fea/nexthop_port_mapper.cc 1.8 +2 -2 xorp/fea/nexthop_port_mapper.hh 1.3 +2 -2 xorp/fea/pa_backend.hh 1.4 +2 -2 xorp/fea/pa_backend_dummy.cc 1.3 +2 -2 xorp/fea/pa_backend_dummy.hh 1.5 +2 -2 xorp/fea/pa_backend_ipfw2.cc 1.2 +2 -2 xorp/fea/pa_backend_ipfw2.hh 1.3 +2 -2 xorp/fea/pa_entry.cc 1.2 +2 -2 xorp/fea/pa_entry.hh 1.3 +2 -2 xorp/fea/pa_table.cc 1.2 +2 -2 xorp/fea/pa_table.hh 1.5 +2 -2 xorp/fea/pa_transaction.cc 1.2 +2 -2 xorp/fea/pa_transaction.hh 1.3 +2 -2 xorp/fea/profile_vars.cc 1.3 +2 -2 xorp/fea/profile_vars.hh 1.13 +2 -2 xorp/fea/rawsock4.cc 1.6 +2 -2 xorp/fea/rawsock4.hh 1.12 +2 -2 xorp/fea/rawsock6.cc 1.7 +2 -2 xorp/fea/rawsock6.hh 1.23 +2 -2 xorp/fea/routing_socket.cc 1.12 +2 -2 xorp/fea/routing_socket.hh 1.26 +2 -2 xorp/fea/routing_socket_utils.cc 1.7 +2 -2 xorp/fea/routing_socket_utils.hh 1.14 +2 -2 xorp/fea/test_fea.cc 1.9 +2 -2 xorp/fea/test_fti.cc 1.7 +2 -2 xorp/fea/test_ifconfig_rtsock.cc 1.7 +2 -2 xorp/fea/test_ifmanager.cc 1.6 +2 -2 xorp/fea/test_ifmanager_transaction.cc 1.22 +2 -2 xorp/fea/test_mfea.cc 1.11 +2 -2 xorp/fea/test_rawsock4.cc 1.10 +2 -2 xorp/fea/test_xrl_sockets4_udp.cc 1.12 +2 -2 xorp/fea/tools/show_interfaces.cc 1.5 +2 -2 xorp/fea/tools/show_interfaces.hh 1.18 +2 -2 xorp/fea/xrl_fti.cc 1.13 +2 -2 xorp/fea/xrl_fti.hh 1.16 +2 -2 xorp/fea/xrl_ifmanager.cc 1.10 +2 -2 xorp/fea/xrl_ifmanager.hh 1.10 +2 -2 xorp/fea/xrl_ifupdate.cc 1.12 +2 -2 xorp/fea/xrl_ifupdate.hh 1.45 +2 -2 xorp/fea/xrl_mfea_node.cc 1.23 +2 -2 xorp/fea/xrl_mfea_node.hh 1.3 +2 -2 xorp/fea/xrl_packet_acl.cc 1.2 +2 -2 xorp/fea/xrl_packet_acl.hh 1.14 +2 -2 xorp/fea/xrl_rawsock4.cc 1.8 +2 -2 xorp/fea/xrl_rawsock4.hh 1.5 +2 -2 xorp/fea/xrl_rawsock6.cc 1.2 +2 -2 xorp/fea/xrl_rawsock6.hh 1.5 +2 -2 xorp/fea/xrl_socket_cmds.cc 1.6 +2 -2 xorp/fea/xrl_socket_cmds.hh 1.21 +2 -2 xorp/fea/xrl_socket_server.cc 1.9 +2 -2 xorp/fea/xrl_socket_server.hh 1.71 +2 -2 xorp/fea/xrl_target.cc 1.51 +2 -2 xorp/fea/xrl_target.hh 1.3 +2 -2 xorp/fib2mrib/fib2mrib_module.h 1.21 +2 -2 xorp/fib2mrib/fib2mrib_node.cc 1.15 +2 -2 xorp/fib2mrib/fib2mrib_node.hh 1.4 +2 -2 xorp/fib2mrib/fib2mrib_varrw.cc 1.2 +2 -2 xorp/fib2mrib/fib2mrib_varrw.hh 1.9 +2 -2 xorp/fib2mrib/xorp_fib2mrib.cc 1.32 +2 -2 xorp/fib2mrib/xrl_fib2mrib_node.cc 1.16 +2 -2 xorp/fib2mrib/xrl_fib2mrib_node.hh 1.4 +2 -2 xorp/libcomm/comm_module.h 1.8 +2 -2 xorp/libcomm/test_comm.c 1.9 +2 -2 xorp/libfeaclient/ifmgr_atoms.cc 1.16 +2 -2 xorp/libfeaclient/ifmgr_atoms.hh 1.3 +2 -2 xorp/libfeaclient/ifmgr_cmd_base.hh 1.10 +2 -2 xorp/libfeaclient/ifmgr_cmd_queue.cc 1.9 +2 -2 xorp/libfeaclient/ifmgr_cmd_queue.hh 1.13 +2 -2 xorp/libfeaclient/ifmgr_cmds.cc 1.10 +2 -2 xorp/libfeaclient/ifmgr_cmds.hh 1.16 +2 -2 xorp/libfeaclient/ifmgr_xrl_mirror.cc 1.11 +2 -2 xorp/libfeaclient/ifmgr_xrl_mirror.hh 1.9 +2 -2 xorp/libfeaclient/ifmgr_xrl_replicator.cc 1.8 +2 -2 xorp/libfeaclient/ifmgr_xrl_replicator.hh 1.4 +2 -2 xorp/libfeaclient/libfeaclient_module.h 1.3 +2 -2 xorp/libfeaclient/overview.hh 1.6 +2 -2 xorp/libfeaclient/test_local_copy.cc 1.11 +2 -2 xorp/libfeaclient/test_remote_copy.cc 1.4 +2 -2 xorp/libproto/libproto_module.h 1.30 +2 -2 xorp/libproto/proto_node.hh 1.6 +2 -2 xorp/libproto/proto_node_cli.cc 1.6 +2 -2 xorp/libproto/proto_node_cli.hh 1.7 +2 -2 xorp/libproto/proto_register.cc 1.6 +2 -2 xorp/libproto/proto_register.hh 1.11 +2 -2 xorp/libproto/proto_state.cc 1.6 +2 -2 xorp/libproto/proto_state.hh 1.11 +2 -2 xorp/libproto/proto_unit.cc 1.9 +2 -2 xorp/libproto/proto_unit.hh 1.4 +2 -2 xorp/libproto/spt.cc 1.3 +2 -2 xorp/libproto/spt.hh 1.3 +2 -2 xorp/libproto/test_spt.cc 1.31 +2 -2 xorp/libxipc/call_xrl.cc 1.20 +2 -2 xorp/libxipc/finder.cc 1.17 +2 -2 xorp/libxipc/finder.hh 1.30 +2 -2 xorp/libxipc/finder_client.cc 1.18 +2 -2 xorp/libxipc/finder_client.hh 1.5 +2 -2 xorp/libxipc/finder_client_observer.cc 1.3 +2 -2 xorp/libxipc/finder_client_observer.hh 1.8 +2 -2 xorp/libxipc/finder_client_xrl_target.cc 1.10 +2 -2 xorp/libxipc/finder_client_xrl_target.hh 1.6 +2 -2 xorp/libxipc/finder_constants.hh 1.15 +2 -2 xorp/libxipc/finder_main.cc 1.11 +2 -2 xorp/libxipc/finder_messenger.cc 1.11 +2 -2 xorp/libxipc/finder_messenger.hh 1.8 +2 -2 xorp/libxipc/finder_module.h 1.7 +2 -2 xorp/libxipc/finder_msgs.cc 1.6 +2 -2 xorp/libxipc/finder_msgs.hh 1.11 +2 -2 xorp/libxipc/finder_server.cc 1.14 +2 -2 xorp/libxipc/finder_server.hh 1.22 +2 -2 xorp/libxipc/finder_tcp.cc 1.14 +2 -2 xorp/libxipc/finder_tcp.hh 1.22 +2 -2 xorp/libxipc/finder_tcp_messenger.cc 1.13 +2 -2 xorp/libxipc/finder_tcp_messenger.hh 1.7 +2 -2 xorp/libxipc/finder_xrl_queue.cc 1.11 +2 -2 xorp/libxipc/finder_xrl_queue.hh 1.22 +2 -2 xorp/libxipc/finder_xrl_target.cc 1.15 +2 -2 xorp/libxipc/finder_xrl_target.hh 1.8 +2 -2 xorp/libxipc/header.cc 1.7 +2 -2 xorp/libxipc/header.hh 1.5 +2 -2 xorp/libxipc/hmac.cc 1.6 +2 -2 xorp/libxipc/hmac.hh 1.4 +2 -2 xorp/libxipc/ipc_module.h 1.4 +2 -2 xorp/libxipc/permits.cc 1.4 +2 -2 xorp/libxipc/permits.hh 1.13 +2 -2 xorp/libxipc/sockutil.cc 1.9 +2 -2 xorp/libxipc/sockutil.hh 1.17 +2 -2 xorp/libxipc/test_finder.cc 1.16 +2 -2 xorp/libxipc/test_finder_events.cc 1.11 +2 -2 xorp/libxipc/test_finder_messenger.cc 1.6 +2 -2 xorp/libxipc/test_finder_msgs.cc 1.15 +2 -2 xorp/libxipc/test_finder_tcp.cc 1.9 +1 -1 xorp/libxipc/test_finder_to.cc 1.6 +2 -2 xorp/libxipc/test_header.cc 1.15 +2 -2 xorp/libxipc/test_inproc.cc 1.13 +2 -2 xorp/libxipc/test_lemming.cc 1.16 +2 -2 xorp/libxipc/test_stcp.cc 1.6 +2 -2 xorp/libxipc/test_stcppf.cc 1.14 +2 -2 xorp/libxipc/test_sudp.cc 1.11 +2 -2 xorp/libxipc/test_xrl.cc 1.9 +2 -2 xorp/libxipc/test_xrl_args.cc 1.9 +2 -2 xorp/libxipc/test_xrl_atom.cc 1.6 +2 -2 xorp/libxipc/test_xrl_error.cc 1.6 +2 -2 xorp/libxipc/test_xrl_parser.cc 1.8 +2 -2 xorp/libxipc/test_xrl_receiver.cc 1.15 +2 -2 xorp/libxipc/test_xrl_router.cc 1.12 +2 -2 xorp/libxipc/test_xrl_sender.cc 1.11 +2 -2 xorp/libxipc/xrl.cc 1.12 +2 -2 xorp/libxipc/xrl.hh 1.10 +2 -2 xorp/libxipc/xrl_args.cc 1.11 +2 -2 xorp/libxipc/xrl_args.hh 1.19 +2 -2 xorp/libxipc/xrl_atom.cc 1.8 +2 -2 xorp/libxipc/xrl_atom.hh 1.9 +2 -2 xorp/libxipc/xrl_atom_encoding.cc 1.9 +2 -2 xorp/libxipc/xrl_atom_encoding.hh 1.7 +2 -2 xorp/libxipc/xrl_atom_list.cc 1.7 +2 -2 xorp/libxipc/xrl_atom_list.hh 1.11 +2 -2 xorp/libxipc/xrl_cmd_map.cc 1.15 +2 -2 xorp/libxipc/xrl_cmd_map.hh 1.7 +2 -2 xorp/libxipc/xrl_dispatcher.cc 1.5 +2 -2 xorp/libxipc/xrl_dispatcher.hh 1.8 +2 -2 xorp/libxipc/xrl_error.cc 1.12 +2 -2 xorp/libxipc/xrl_error.hh 1.4 +2 -2 xorp/libxipc/xrl_module.h 1.10 +2 -2 xorp/libxipc/xrl_parser.cc 1.6 +2 -2 xorp/libxipc/xrl_parser.hh 1.8 +2 -2 xorp/libxipc/xrl_parser_input.cc 1.6 +2 -2 xorp/libxipc/xrl_parser_input.hh 1.3 +2 -2 xorp/libxipc/xrl_pf.cc 1.25 +2 -2 xorp/libxipc/xrl_pf.hh 1.12 +2 -2 xorp/libxipc/xrl_pf_factory.cc 1.10 +2 -2 xorp/libxipc/xrl_pf_factory.hh 1.23 +2 -2 xorp/libxipc/xrl_pf_inproc.cc 1.16 +2 -2 xorp/libxipc/xrl_pf_inproc.hh 1.4 +2 -2 xorp/libxipc/xrl_pf_kill.cc 1.4 +2 -2 xorp/libxipc/xrl_pf_kill.hh 1.40 +2 -2 xorp/libxipc/xrl_pf_stcp.cc 1.22 +2 -2 xorp/libxipc/xrl_pf_stcp.hh 1.8 +2 -2 xorp/libxipc/xrl_pf_stcp_ph.cc 1.8 +2 -2 xorp/libxipc/xrl_pf_stcp_ph.hh 1.38 +2 -2 xorp/libxipc/xrl_pf_sudp.cc 1.18 +2 -2 xorp/libxipc/xrl_pf_sudp.hh 1.45 +2 -2 xorp/libxipc/xrl_router.cc 1.32 +2 -2 xorp/libxipc/xrl_router.hh 1.5 +2 -2 xorp/libxipc/xrl_sender.hh 1.9 +2 -2 xorp/libxipc/xrl_std_router.cc 1.14 +2 -2 xorp/libxipc/xrl_std_router.hh 1.5 +2 -2 xorp/libxipc/xrl_tokens.cc 1.7 +2 -2 xorp/libxipc/xrl_tokens.hh 1.7 +2 -2 xorp/libxipc/xuid.cc 1.5 +2 -2 xorp/libxipc/xuid.hh 1.10 +2 -2 xorp/libxorp/asnum.hh 1.15 +2 -2 xorp/libxorp/asyncio.cc 1.11 +2 -2 xorp/libxorp/asyncio.hh 1.5 +2 -2 xorp/libxorp/buffer.hh 1.4 +2 -2 xorp/libxorp/buffered_asyncio.cc 1.2 +2 -2 xorp/libxorp/buffered_asyncio.hh 1.6 +2 -2 xorp/libxorp/c_format.cc 1.6 +2 -2 xorp/libxorp/c_format.hh 1.14 +1 -1 xorp/libxorp/callback-gen.py 1.4 +2 -2 xorp/libxorp/callback.cc 1.16 +2 -2 xorp/libxorp/callback.hh 1.9 +1 -1 xorp/libxorp/callback_debug.hh 1.7 +1 -1 xorp/libxorp/callback_nodebug.hh 1.2 +2 -2 xorp/libxorp/clock.cc 1.2 +2 -2 xorp/libxorp/clock.hh 1.8 +2 -2 xorp/libxorp/config_param.hh 1.6 +2 -2 xorp/libxorp/debug.c 1.7 +2 -2 xorp/libxorp/debug.h 1.4 +2 -2 xorp/libxorp/ether_compat.c 1.9 +2 -2 xorp/libxorp/ether_compat.h 1.9 +2 -2 xorp/libxorp/eventloop.cc 1.13 +2 -2 xorp/libxorp/eventloop.hh 1.5 +2 -2 xorp/libxorp/exceptions.cc 1.6 +2 -2 xorp/libxorp/exceptions.hh 1.11 +2 -2 xorp/libxorp/heap.cc 1.7 +2 -2 xorp/libxorp/heap.hh 1.13 +2 -2 xorp/libxorp/ipnet.hh 1.17 +2 -2 xorp/libxorp/ipv4.cc 1.22 +2 -2 xorp/libxorp/ipv4.hh 1.4 +2 -2 xorp/libxorp/ipv4net.hh 1.17 +2 -2 xorp/libxorp/ipv6.cc 1.21 +2 -2 xorp/libxorp/ipv6.hh 1.4 +2 -2 xorp/libxorp/ipv6net.hh 1.16 +2 -2 xorp/libxorp/ipvx.cc 1.18 +2 -2 xorp/libxorp/ipvx.hh 1.12 +2 -2 xorp/libxorp/ipvxnet.hh 1.4 +2 -2 xorp/libxorp/libxorp_module.h 1.11 +2 -2 xorp/libxorp/mac.cc 1.7 +2 -2 xorp/libxorp/mac.hh 1.5 +2 -2 xorp/libxorp/minitraits.hh 1.6 +2 -2 xorp/libxorp/nexthop.cc 1.4 +2 -2 xorp/libxorp/nexthop.hh 1.5 +2 -2 xorp/libxorp/old_trie.hh 1.2 +2 -2 xorp/libxorp/popen.cc 1.2 +2 -2 xorp/libxorp/popen.hh 1.5 +2 -2 xorp/libxorp/profile.cc 1.4 +2 -2 xorp/libxorp/profile.hh 1.9 +2 -2 xorp/libxorp/ref_ptr.cc 1.17 +2 -2 xorp/libxorp/ref_ptr.hh 1.22 +2 -2 xorp/libxorp/ref_trie.hh 1.4 +2 -2 xorp/libxorp/run_command.cc 1.3 +2 -2 xorp/libxorp/run_command.hh 1.5 +2 -2 xorp/libxorp/safe_callback_obj.cc 1.5 +2 -2 xorp/libxorp/safe_callback_obj.hh 1.24 +2 -2 xorp/libxorp/selector.cc 1.13 +2 -2 xorp/libxorp/selector.hh 1.5 +2 -2 xorp/libxorp/service.cc 1.7 +2 -2 xorp/libxorp/service.hh 1.9 +2 -2 xorp/libxorp/status_codes.h 1.7 +2 -2 xorp/libxorp/test_asyncio.cc 1.7 +2 -2 xorp/libxorp/test_callback.cc 1.5 +2 -2 xorp/libxorp/test_config_param.cc 1.2 +2 -2 xorp/libxorp/test_heap.cc 1.9 +2 -2 xorp/libxorp/test_ipnet.cc 1.15 +2 -2 xorp/libxorp/test_ipv4.cc 1.8 +2 -2 xorp/libxorp/test_ipv4net.cc 1.15 +2 -2 xorp/libxorp/test_ipv6.cc 1.8 +2 -2 xorp/libxorp/test_ipv6net.cc 1.15 +2 -2 xorp/libxorp/test_ipvx.cc 1.7 +2 -2 xorp/libxorp/test_ipvxnet.cc 1.5 +2 -2 xorp/libxorp/test_mac.cc 1.10 +2 -2 xorp/libxorp/test_main.hh 1.4 +2 -2 xorp/libxorp/test_observers.cc 1.2 +2 -2 xorp/libxorp/test_profile.cc 1.5 +2 -2 xorp/libxorp/test_ref_ptr.cc 1.10 +2 -2 xorp/libxorp/test_ref_trie.cc 1.4 +2 -2 xorp/libxorp/test_run_command.cc 1.7 +2 -2 xorp/libxorp/test_service.cc 1.8 +2 -2 xorp/libxorp/test_test_main.cc 1.5 +2 -2 xorp/libxorp/test_time_slice.cc 1.10 +2 -2 xorp/libxorp/test_timer.cc 1.3 +2 -2 xorp/libxorp/test_timeval.cc 1.9 +2 -2 xorp/libxorp/test_trie.cc 1.4 +2 -2 xorp/libxorp/test_types.cc 1.9 +2 -2 xorp/libxorp/test_vif.cc 1.7 +2 -2 xorp/libxorp/time_slice.cc 1.6 +2 -2 xorp/libxorp/time_slice.hh 1.21 +2 -2 xorp/libxorp/timer.cc 1.21 +2 -2 xorp/libxorp/timer.hh 1.8 +2 -2 xorp/libxorp/timespent.hh 1.20 +2 -2 xorp/libxorp/timeval.hh 1.5 +2 -2 xorp/libxorp/token.cc 1.5 +2 -2 xorp/libxorp/token.hh 1.2 +2 -2 xorp/libxorp/tokenize.hh 1.6 +2 -2 xorp/libxorp/transaction.cc 1.6 +2 -2 xorp/libxorp/transaction.hh 1.22 +2 -2 xorp/libxorp/trie.hh 1.4 +2 -2 xorp/libxorp/utility.c 1.10 +2 -2 xorp/libxorp/utility.h 1.4 +2 -2 xorp/libxorp/utils.hh 1.16 +2 -2 xorp/libxorp/vif.cc 1.11 +2 -2 xorp/libxorp/vif.hh 1.8 +2 -2 xorp/libxorp/xlog.c 1.11 +2 -2 xorp/libxorp/xlog.h 1.9 +2 -2 xorp/libxorp/xorp.h 1.17 +2 -2 xorp/mibs/bgp4_mib_1657.cc 1.12 +2 -2 xorp/mibs/bgp4_mib_1657.hh 1.16 +2 -2 xorp/mibs/bgp4_mib_1657_bgp4pathattrtable.cc 1.10 +2 -2 xorp/mibs/bgp4_mib_1657_bgp4pathattrtable.hh 1.6 +2 -2 xorp/mibs/bgp4_mib_1657_bgpidentifier.cc 1.4 +1 -1 xorp/mibs/bgp4_mib_1657_bgpidentifier.hh 1.5 +2 -2 xorp/mibs/bgp4_mib_1657_bgplocalas.cc 1.4 +2 -2 xorp/mibs/bgp4_mib_1657_bgplocalas.hh 1.16 +2 -2 xorp/mibs/bgp4_mib_1657_bgppeertable.cc 1.5 +1 -1 xorp/mibs/bgp4_mib_1657_bgppeertable.hh 1.13 +2 -2 xorp/mibs/bgp4_mib_1657_bgpversion.cc 1.5 +2 -2 xorp/mibs/bgp4_mib_1657_bgpversion.hh 1.4 +2 -2 xorp/mibs/bgp4_mib_module.h 1.7 +2 -2 xorp/mibs/bgp4_mib_xrl_target.cc 1.7 +2 -2 xorp/mibs/bgp4_mib_xrl_target.hh 1.5 +2 -2 xorp/mibs/fixconfigs.h 1.5 +2 -2 xorp/mibs/ospf_mib_1850.cc 1.4 +2 -2 xorp/mibs/ospf_mib_1850.hh 1.14 +2 -2 xorp/mibs/test_xorpevents.cc 1.10 +2 -2 xorp/mibs/xorp_if_mib_module.cc 1.6 +2 -2 xorp/mibs/xorp_if_mib_module.hh 1.7 +2 -2 xorp/mibs/xorp_if_mib_xrl_target.cc 1.5 +2 -2 xorp/mibs/xorp_if_mib_xrl_target.hh 1.4 +2 -2 xorp/mibs/xorp_if_module.h 1.3 +2 -2 xorp/mibs/xorp_netsnmp_module.h 1.14 +2 -2 xorp/mibs/xorpevents.cc 1.13 +2 -2 xorp/mibs/xorpevents.hh 1.30 +2 -2 xorp/mld6igmp/igmp_proto.cc 1.6 +2 -2 xorp/mld6igmp/igmp_proto.h 1.33 +2 -2 xorp/mld6igmp/mld6_proto.cc 1.8 +2 -2 xorp/mld6igmp/mld6_proto.h 1.5 +2 -2 xorp/mld6igmp/mld6igmp_config.cc 1.11 +2 -2 xorp/mld6igmp/mld6igmp_member_query.cc 1.6 +2 -2 xorp/mld6igmp/mld6igmp_member_query.hh 1.4 +2 -2 xorp/mld6igmp/mld6igmp_module.h 1.44 +2 -2 xorp/mld6igmp/mld6igmp_node.cc 1.22 +2 -2 xorp/mld6igmp/mld6igmp_node.hh 1.20 +2 -2 xorp/mld6igmp/mld6igmp_node_cli.cc 1.7 +2 -2 xorp/mld6igmp/mld6igmp_node_cli.hh 1.13 +2 -2 xorp/mld6igmp/mld6igmp_proto.cc 1.37 +2 -2 xorp/mld6igmp/mld6igmp_vif.cc 1.18 +2 -2 xorp/mld6igmp/mld6igmp_vif.hh 1.43 +2 -2 xorp/mld6igmp/test_mld6igmp.cc 1.9 +2 -2 xorp/mld6igmp/xorp_igmp.cc 1.10 +2 -2 xorp/mld6igmp/xorp_mld.cc 1.44 +2 -2 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.31 +2 -2 xorp/mld6igmp/xrl_mld6igmp_node.hh 1.4 +2 -2 xorp/mrt/buffer.c 1.5 +2 -2 xorp/mrt/buffer.h 1.9 +2 -2 xorp/mrt/include/ip_mroute.h 1.5 +2 -2 xorp/mrt/inet_cksum.c 1.4 +2 -2 xorp/mrt/inet_cksum.h 1.7 +2 -2 xorp/mrt/max_vifs.h 1.6 +2 -2 xorp/mrt/mifset.cc 1.6 +2 -2 xorp/mrt/mifset.hh 1.11 +2 -2 xorp/mrt/mrib_table.cc 1.9 +2 -2 xorp/mrt/mrib_table.hh 1.9 +2 -2 xorp/mrt/mrt.hh 1.4 +2 -2 xorp/mrt/mrt_module.h 1.5 +2 -2 xorp/mrt/multicast_defs.h 1.4 +2 -2 xorp/mrt/netstream_access.h 1.7 +2 -2 xorp/mrt/test_mrib.cc 1.6 +2 -2 xorp/mrt/test_mrt.cc 1.36 +2 -2 xorp/pim/pim_bsr.cc 1.13 +2 -2 xorp/pim/pim_bsr.hh 1.29 +2 -2 xorp/pim/pim_config.cc 1.24 +2 -2 xorp/pim/pim_mfc.cc 1.8 +2 -2 xorp/pim/pim_mfc.hh 1.4 +2 -2 xorp/pim/pim_module.h 1.31 +2 -2 xorp/pim/pim_mre.cc 1.40 +2 -2 xorp/pim/pim_mre.hh 1.30 +2 -2 xorp/pim/pim_mre_assert.cc 1.15 +2 -2 xorp/pim/pim_mre_data.cc 1.32 +2 -2 xorp/pim/pim_mre_join_prune.cc 1.18 +2 -2 xorp/pim/pim_mre_register.cc 1.32 +2 -2 xorp/pim/pim_mre_rpf.cc 1.14 +2 -2 xorp/pim/pim_mre_task.cc 1.8 +2 -2 xorp/pim/pim_mre_task.hh 1.33 +2 -2 xorp/pim/pim_mre_track_state.cc 1.20 +2 -2 xorp/pim/pim_mre_track_state.hh 1.10 +2 -2 xorp/pim/pim_mrib_table.cc 1.9 +2 -2 xorp/pim/pim_mrib_table.hh 1.9 +2 -2 xorp/pim/pim_mrt.cc 1.13 +2 -2 xorp/pim/pim_mrt.hh 1.22 +2 -2 xorp/pim/pim_mrt_mfc.cc 1.18 +2 -2 xorp/pim/pim_mrt_task.cc 1.14 +2 -2 xorp/pim/pim_nbr.cc 1.11 +2 -2 xorp/pim/pim_nbr.hh 1.68 +2 -2 xorp/pim/pim_node.cc 1.49 +2 -2 xorp/pim/pim_node.hh 1.35 +2 -2 xorp/pim/pim_node_cli.cc 1.9 +2 -2 xorp/pim/pim_node_cli.hh 1.12 +2 -2 xorp/pim/pim_proto.h 1.23 +2 -2 xorp/pim/pim_proto_assert.cc 1.6 +2 -2 xorp/pim/pim_proto_assert.hh 1.18 +2 -2 xorp/pim/pim_proto_bootstrap.cc 1.17 +2 -2 xorp/pim/pim_proto_cand_rp_adv.cc 1.9 +2 -2 xorp/pim/pim_proto_graft.cc 1.5 +2 -2 xorp/pim/pim_proto_graft_ack.cc 1.18 +2 -2 xorp/pim/pim_proto_hello.cc 1.11 +2 -2 xorp/pim/pim_proto_join_prune.cc 1.20 +2 -2 xorp/pim/pim_proto_join_prune_message.cc 1.7 +2 -2 xorp/pim/pim_proto_join_prune_message.hh 1.19 +2 -2 xorp/pim/pim_proto_register.cc 1.13 +2 -2 xorp/pim/pim_proto_register_stop.cc 1.13 +2 -2 xorp/pim/pim_rp.cc 1.9 +2 -2 xorp/pim/pim_rp.hh 1.11 +2 -2 xorp/pim/pim_scope_zone_table.cc 1.9 +2 -2 xorp/pim/pim_scope_zone_table.hh 1.48 +2 -2 xorp/pim/pim_vif.cc 1.32 +2 -2 xorp/pim/pim_vif.hh 1.51 +2 -2 xorp/pim/test_pim.cc 1.9 +2 -2 xorp/pim/xorp_pimsm4.cc 1.10 +2 -2 xorp/pim/xorp_pimsm6.cc 1.80 +2 -2 xorp/pim/xrl_pim_node.cc 1.57 +2 -2 xorp/pim/xrl_pim_node.hh 1.2 +2 -2 xorp/policy/backend/instr_visitor.hh 1.2 +2 -2 xorp/policy/backend/instruction.hh 1.2 +2 -2 xorp/policy/backend/instruction_base.hh 1.2 +2 -2 xorp/policy/backend/iv_exec.cc 1.2 +2 -2 xorp/policy/backend/iv_exec.hh 1.2 +2 -2 xorp/policy/backend/policy_backend_parser.hh 1.2 +2 -2 xorp/policy/backend/policy_filter.cc 1.2 +2 -2 xorp/policy/backend/policy_filter.hh 1.2 +2 -2 xorp/policy/backend/policy_filters.cc 1.2 +2 -2 xorp/policy/backend/policy_filters.hh 1.2 +2 -2 xorp/policy/backend/policy_instr.hh 1.2 +2 -2 xorp/policy/backend/policy_redist_map.cc 1.2 +2 -2 xorp/policy/backend/policy_redist_map.hh 1.2 +2 -2 xorp/policy/backend/policytags.cc 1.2 +2 -2 xorp/policy/backend/policytags.hh 1.2 +2 -2 xorp/policy/backend/set_manager.cc 1.2 +2 -2 xorp/policy/backend/set_manager.hh 1.4 +2 -2 xorp/policy/backend/single_varrw.cc 1.3 +2 -2 xorp/policy/backend/single_varrw.hh 1.2 +2 -2 xorp/policy/backend/term_instr.hh 1.2 +2 -2 xorp/policy/code.cc 1.2 +2 -2 xorp/policy/code.hh 1.2 +2 -2 xorp/policy/code_generator.cc 1.2 +2 -2 xorp/policy/code_generator.hh 1.2 +2 -2 xorp/policy/code_list.cc 1.2 +2 -2 xorp/policy/code_list.hh 1.2 +2 -2 xorp/policy/common/dispatcher.cc 1.2 +2 -2 xorp/policy/common/dispatcher.hh 1.2 +2 -2 xorp/policy/common/elem_null.hh 1.2 +2 -2 xorp/policy/common/elem_set.cc 1.2 +2 -2 xorp/policy/common/elem_set.hh 1.2 +2 -2 xorp/policy/common/element.cc 1.2 +2 -2 xorp/policy/common/element.hh 1.2 +2 -2 xorp/policy/common/element_base.hh 1.2 +2 -2 xorp/policy/common/element_factory.cc 1.2 +2 -2 xorp/policy/common/element_factory.hh 1.2 +2 -2 xorp/policy/common/filter.cc 1.2 +2 -2 xorp/policy/common/filter.hh 1.2 +2 -2 xorp/policy/common/operator.hh 1.2 +2 -2 xorp/policy/common/operator_base.hh 1.2 +2 -2 xorp/policy/common/policy_exception.hh 1.3 +2 -2 xorp/policy/common/policy_utils.cc 1.2 +2 -2 xorp/policy/common/policy_utils.hh 1.2 +2 -2 xorp/policy/common/register_elements.cc 1.2 +2 -2 xorp/policy/common/register_elements.hh 1.2 +2 -2 xorp/policy/common/register_operations.cc 1.2 +2 -2 xorp/policy/common/register_operations.hh 1.2 +2 -2 xorp/policy/common/varrw.hh 1.2 +2 -2 xorp/policy/configuration.cc 1.2 +2 -2 xorp/policy/configuration.hh 1.2 +2 -2 xorp/policy/dependancy.hh 1.2 +2 -2 xorp/policy/export_code_generator.cc 1.2 +2 -2 xorp/policy/export_code_generator.hh 1.2 +2 -2 xorp/policy/filter_manager.cc 1.2 +2 -2 xorp/policy/filter_manager.hh 1.2 +2 -2 xorp/policy/filter_manager_base.hh 1.2 +2 -2 xorp/policy/node.hh 1.2 +2 -2 xorp/policy/node_base.hh 1.2 +2 -2 xorp/policy/parser.cc 1.2 +2 -2 xorp/policy/parser.hh 1.2 +2 -2 xorp/policy/policy_list.cc 1.2 +2 -2 xorp/policy/policy_list.hh 1.2 +2 -2 xorp/policy/policy_map.cc 1.2 +2 -2 xorp/policy/policy_map.hh 1.4 +2 -2 xorp/policy/policy_module.h 1.2 +2 -2 xorp/policy/policy_parser.hh 1.2 +2 -2 xorp/policy/policy_statement.cc 1.2 +2 -2 xorp/policy/policy_statement.hh 1.2 +2 -2 xorp/policy/policy_target.cc 1.2 +2 -2 xorp/policy/policy_target.hh 1.2 +2 -2 xorp/policy/process_watch.cc 1.2 +2 -2 xorp/policy/process_watch.hh 1.2 +2 -2 xorp/policy/process_watch_base.hh 1.2 +2 -2 xorp/policy/pw_notifier.hh 1.2 +2 -2 xorp/policy/semantic_varrw.cc 1.2 +2 -2 xorp/policy/semantic_varrw.hh 1.2 +2 -2 xorp/policy/set_map.cc 1.2 +2 -2 xorp/policy/set_map.hh 1.2 +2 -2 xorp/policy/source_match_code_generator.cc 1.2 +2 -2 xorp/policy/source_match_code_generator.hh 1.5 +2 -2 xorp/policy/term.cc 1.5 +2 -2 xorp/policy/term.hh 1.3 +2 -2 xorp/policy/test/compilepolicy.cc 1.2 +2 -2 xorp/policy/test/execpolicy.cc 1.3 +2 -2 xorp/policy/test/file_varrw.cc 1.2 +2 -2 xorp/policy/test/file_varrw.hh 1.2 +2 -2 xorp/policy/test/filter_manager_fake.cc 1.2 +2 -2 xorp/policy/test/filter_manager_fake.hh 1.2 +2 -2 xorp/policy/test/process_watch_fake.cc 1.2 +2 -2 xorp/policy/test/process_watch_fake.hh 1.2 +2 -2 xorp/policy/var_map.cc 1.2 +2 -2 xorp/policy/var_map.hh 1.2 +2 -2 xorp/policy/visitor.hh 1.2 +2 -2 xorp/policy/visitor_semantic.cc 1.2 +2 -2 xorp/policy/visitor_semantic.hh 1.2 +2 -2 xorp/policy/visitor_setdep.cc 1.2 +2 -2 xorp/policy/visitor_setdep.hh 1.3 +2 -2 xorp/policy/xorp_policy.cc 1.2 +2 -2 xorp/policy/xrl_target.cc 1.2 +2 -2 xorp/policy/xrl_target.hh 1.5 +2 -2 xorp/rib/add_route.cc 1.12 +2 -2 xorp/rib/dummy_register_server.cc 1.9 +2 -2 xorp/rib/dummy_register_server.hh 1.25 +2 -2 xorp/rib/main_rib.cc 1.7 +2 -2 xorp/rib/main_routemap.cc 1.15 +2 -2 xorp/rib/parser.cc 1.16 +2 -2 xorp/rib/parser.hh 1.18 +2 -2 xorp/rib/parser_direct_cmds.hh 1.14 +2 -2 xorp/rib/parser_xrl_cmds.hh 1.3 +2 -2 xorp/rib/profile_vars.cc 1.2 +2 -2 xorp/rib/profile_vars.hh 1.8 +2 -2 xorp/rib/protocol.cc 1.7 +2 -2 xorp/rib/protocol.hh 1.2 +2 -2 xorp/rib/redist_policy.hh 1.20 +2 -2 xorp/rib/redist_xrl.cc 1.8 +2 -2 xorp/rib/redist_xrl.hh 1.16 +2 -2 xorp/rib/register_server.cc 1.11 +2 -2 xorp/rib/register_server.hh 1.55 +2 -2 xorp/rib/rib.cc 1.32 +2 -2 xorp/rib/rib.hh 1.48 +2 -2 xorp/rib/rib_manager.cc 1.32 +2 -2 xorp/rib/rib_manager.hh 1.3 +2 -2 xorp/rib/rib_module.h 1.6 +2 -2 xorp/rib/rib_varrw.cc 1.5 +2 -2 xorp/rib/rib_varrw.hh 1.18 +2 -2 xorp/rib/route.hh 1.10 +2 -2 xorp/rib/routemap.cc 1.7 +2 -2 xorp/rib/routemap.hh 1.10 +2 -2 xorp/rib/rt_tab_base.cc 1.19 +2 -2 xorp/rib/rt_tab_base.hh 1.9 +2 -2 xorp/rib/rt_tab_deletion.cc 1.9 +2 -2 xorp/rib/rt_tab_deletion.hh 1.12 +2 -2 xorp/rib/rt_tab_expect.cc 1.7 +2 -2 xorp/rib/rt_tab_expect.hh 1.25 +2 -2 xorp/rib/rt_tab_extint.cc 1.12 +2 -2 xorp/rib/rt_tab_extint.hh 1.9 +2 -2 xorp/rib/rt_tab_log.cc 1.5 +2 -2 xorp/rib/rt_tab_log.hh 1.18 +2 -2 xorp/rib/rt_tab_merged.cc 1.10 +2 -2 xorp/rib/rt_tab_merged.hh 1.21 +2 -2 xorp/rib/rt_tab_origin.cc 1.17 +2 -2 xorp/rib/rt_tab_origin.hh 1.5 +2 -2 xorp/rib/rt_tab_pol_conn.cc 1.4 +2 -2 xorp/rib/rt_tab_pol_conn.hh 1.5 +2 -2 xorp/rib/rt_tab_pol_redist.cc 1.4 +2 -2 xorp/rib/rt_tab_pol_redist.hh 1.21 +2 -2 xorp/rib/rt_tab_redist.cc 1.13 +2 -2 xorp/rib/rt_tab_redist.hh 1.26 +2 -2 xorp/rib/rt_tab_register.cc 1.14 +2 -2 xorp/rib/rt_tab_register.hh 1.9 +2 -2 xorp/rib/test_deletion.cc 1.8 +2 -2 xorp/rib/test_redist.cc 1.20 +2 -2 xorp/rib/test_register.cc 1.35 +2 -2 xorp/rib/test_register_xrls.cc 1.19 +2 -2 xorp/rib/test_rib_direct.cc 1.40 +2 -2 xorp/rib/test_rib_xrls.cc 1.11 +2 -2 xorp/rib/tools/show_routes.cc 1.37 +2 -2 xorp/rib/vifmanager.cc 1.17 +2 -2 xorp/rib/vifmanager.hh 1.51 +2 -2 xorp/rib/xrl_target.cc 1.30 +2 -2 xorp/rib/xrl_target.hh 1.13 +2 -2 xorp/rip/auth.cc 1.6 +2 -2 xorp/rip/auth.hh 1.15 +2 -2 xorp/rip/constants.hh 1.8 +2 -2 xorp/rip/output.hh 1.13 +2 -2 xorp/rip/output_table.cc 1.5 +2 -2 xorp/rip/output_table.hh 1.13 +2 -2 xorp/rip/output_updates.cc 1.5 +2 -2 xorp/rip/output_updates.hh 1.7 +2 -2 xorp/rip/packet_assembly.hh 1.6 +2 -2 xorp/rip/packet_queue.cc 1.5 +2 -2 xorp/rip/packet_queue.hh 1.18 +2 -2 xorp/rip/packets.hh 1.4 +2 -2 xorp/rip/peer.cc 1.7 +2 -2 xorp/rip/peer.hh 1.40 +2 -2 xorp/rip/port.cc 1.23 +2 -2 xorp/rip/port.hh 1.9 +2 -2 xorp/rip/port_io.hh 1.7 +2 -2 xorp/rip/port_manager.hh 1.8 +2 -2 xorp/rip/port_vars.hh 1.8 +2 -2 xorp/rip/redist.cc 1.6 +2 -2 xorp/rip/redist.hh 1.6 +2 -2 xorp/rip/rib_notifier_base.cc 1.3 +2 -2 xorp/rip/rib_notifier_base.hh 1.3 +2 -2 xorp/rip/rip_module.h 1.5 +2 -2 xorp/rip/rip_varrw.cc 1.5 +2 -2 xorp/rip/rip_varrw.hh 1.21 +2 -2 xorp/rip/route_db.cc 1.19 +2 -2 xorp/rip/route_db.hh 1.11 +2 -2 xorp/rip/route_entry.cc 1.9 +2 -2 xorp/rip/route_entry.hh 1.9 +2 -2 xorp/rip/system.hh 1.14 +2 -2 xorp/rip/test_auth.cc 1.18 +2 -2 xorp/rip/test_outputs.cc 1.9 +2 -2 xorp/rip/test_packets.cc 1.16 +2 -2 xorp/rip/test_request.cc 1.11 +2 -2 xorp/rip/test_route_walk.cc 1.13 +2 -2 xorp/rip/test_timers.cc 1.13 +2 -2 xorp/rip/test_update_queue.cc 1.5 +2 -2 xorp/rip/test_utils.hh 1.5 +2 -2 xorp/rip/tools/common.cc 1.3 +2 -2 xorp/rip/tools/common.hh 1.5 +2 -2 xorp/rip/tools/rip_announcer.cc 1.5 +2 -2 xorp/rip/tools/ripng_announcer.cc 1.8 +2 -2 xorp/rip/tools/show_peer_stats.cc 1.9 +2 -2 xorp/rip/tools/show_stats.cc 1.14 +2 -2 xorp/rip/update_queue.cc 1.11 +2 -2 xorp/rip/update_queue.hh 1.11 +2 -2 xorp/rip/xorp_rip_main.cc 1.3 +2 -2 xorp/rip/xrl_config.cc 1.3 +2 -2 xorp/rip/xrl_config.hh 1.17 +2 -2 xorp/rip/xrl_port_io.cc 1.7 +2 -2 xorp/rip/xrl_port_io.hh 1.19 +2 -2 xorp/rip/xrl_port_manager.cc 1.11 +2 -2 xorp/rip/xrl_port_manager.hh 1.8 +2 -2 xorp/rip/xrl_process_spy.cc 1.6 +2 -2 xorp/rip/xrl_process_spy.hh 1.10 +2 -2 xorp/rip/xrl_redist_manager.cc 1.4 +2 -2 xorp/rip/xrl_redist_manager.hh 1.12 +2 -2 xorp/rip/xrl_rib_notifier.cc 1.5 +2 -2 xorp/rip/xrl_rib_notifier.hh 1.19 +2 -2 xorp/rip/xrl_target_common.hh 1.21 +1 -1 xorp/rip/xrl_target_rip.cc 1.16 +2 -2 xorp/rip/xrl_target_rip.hh 1.21 +1 -1 xorp/rip/xrl_target_ripng.cc 1.17 +2 -2 xorp/rip/xrl_target_ripng.hh 1.64 +2 -2 xorp/rtrmgr/cli.cc 1.27 +2 -2 xorp/rtrmgr/cli.hh 1.11 +2 -2 xorp/rtrmgr/command_tree.cc 1.11 +2 -2 xorp/rtrmgr/command_tree.hh 1.26 +2 -2 xorp/rtrmgr/conf_tree.cc 1.18 +2 -2 xorp/rtrmgr/conf_tree.hh 1.62 +2 -2 xorp/rtrmgr/conf_tree_node.cc 1.31 +2 -2 xorp/rtrmgr/conf_tree_node.hh 1.5 +2 -2 xorp/rtrmgr/generic_module_manager.cc 1.7 +2 -2 xorp/rtrmgr/generic_module_manager.hh 1.59 +2 -2 xorp/rtrmgr/main_rtrmgr.cc 1.11 +2 -2 xorp/rtrmgr/main_rtrmgr.hh 1.47 +2 -2 xorp/rtrmgr/master_conf_tree.cc 1.26 +2 -2 xorp/rtrmgr/master_conf_tree.hh 1.10 +2 -2 xorp/rtrmgr/master_conf_tree_node.cc 1.9 +2 -2 xorp/rtrmgr/master_conf_tree_node.hh 1.2 +2 -2 xorp/rtrmgr/master_template_tree.cc 1.2 +2 -2 xorp/rtrmgr/master_template_tree.hh 1.2 +2 -2 xorp/rtrmgr/master_template_tree_node.cc 1.3 +2 -2 xorp/rtrmgr/master_template_tree_node.hh 1.31 +2 -2 xorp/rtrmgr/module_command.cc 1.21 +2 -2 xorp/rtrmgr/module_command.hh 1.42 +2 -2 xorp/rtrmgr/module_manager.cc 1.31 +2 -2 xorp/rtrmgr/module_manager.hh 1.46 +2 -2 xorp/rtrmgr/op_commands.cc 1.24 +2 -2 xorp/rtrmgr/op_commands.hh 1.5 +2 -2 xorp/rtrmgr/path_segment.hh 1.3 +2 -2 xorp/rtrmgr/profiler.cc 1.15 +2 -2 xorp/rtrmgr/randomness.cc 1.7 +2 -2 xorp/rtrmgr/randomness.hh 1.4 +2 -2 xorp/rtrmgr/rtrmgr_error.hh 1.4 +2 -2 xorp/rtrmgr/rtrmgr_module.h 1.26 +2 -2 xorp/rtrmgr/slave_conf_tree.cc 1.16 +2 -2 xorp/rtrmgr/slave_conf_tree.hh 1.19 +2 -2 xorp/rtrmgr/slave_conf_tree_node.cc 1.10 +2 -2 xorp/rtrmgr/slave_conf_tree_node.hh 1.20 +2 -2 xorp/rtrmgr/slave_module_manager.cc 1.19 +2 -2 xorp/rtrmgr/slave_module_manager.hh 1.47 +2 -2 xorp/rtrmgr/task.cc 1.30 +2 -2 xorp/rtrmgr/task.hh 1.3 +2 -2 xorp/rtrmgr/template_base_command.cc 1.2 +2 -2 xorp/rtrmgr/template_base_command.hh 1.50 +2 -2 xorp/rtrmgr/template_commands.cc 1.24 +2 -2 xorp/rtrmgr/template_commands.hh 1.26 +2 -2 xorp/rtrmgr/template_tree.cc 1.17 +2 -2 xorp/rtrmgr/template_tree.hh 1.35 +2 -2 xorp/rtrmgr/template_tree_node.cc 1.23 +2 -2 xorp/rtrmgr/template_tree_node.hh 1.15 +2 -2 xorp/rtrmgr/test_module_manager.cc 1.2 +2 -2 xorp/rtrmgr/test_module_manager.hh 1.21 +2 -2 xorp/rtrmgr/test_sample_config.cc 1.2 +2 -2 xorp/rtrmgr/test_sample_config.hh 1.14 +2 -2 xorp/rtrmgr/test_templates.cc 1.12 +2 -2 xorp/rtrmgr/unexpanded_xrl.cc 1.10 +2 -2 xorp/rtrmgr/unexpanded_xrl.hh 1.12 +2 -2 xorp/rtrmgr/userdb.cc 1.8 +2 -2 xorp/rtrmgr/userdb.hh 1.11 +2 -2 xorp/rtrmgr/util.cc 1.6 +2 -2 xorp/rtrmgr/util.hh 1.22 +2 -2 xorp/rtrmgr/xorp_client.cc 1.17 +2 -2 xorp/rtrmgr/xorp_client.hh 1.39 +2 -2 xorp/rtrmgr/xorpsh_main.cc 1.20 +2 -2 xorp/rtrmgr/xorpsh_main.hh 1.34 +2 -2 xorp/rtrmgr/xrl_rtrmgr_interface.cc 1.20 +2 -2 xorp/rtrmgr/xrl_rtrmgr_interface.hh 1.20 +2 -2 xorp/rtrmgr/xrl_xorpsh_interface.cc 1.11 +2 -2 xorp/rtrmgr/xrl_xorpsh_interface.hh 1.12 +2 -2 xorp/rtrmgr/xrldb.cc 1.9 +2 -2 xorp/rtrmgr/xrldb.hh 1.3 +2 -2 xorp/static_routes/static_routes_module.h 1.25 +2 -2 xorp/static_routes/static_routes_node.cc 1.19 +2 -2 xorp/static_routes/static_routes_node.hh 1.5 +2 -2 xorp/static_routes/static_routes_varrw.cc 1.4 +2 -2 xorp/static_routes/static_routes_varrw.hh 1.11 +2 -2 xorp/static_routes/xorp_static_routes.cc 1.32 +2 -2 xorp/static_routes/xrl_static_routes_node.cc 1.17 +2 -2 xorp/static_routes/xrl_static_routes_node.hh 1.11 +2 -2 xorp/utils/runit.cc 1.9 +2 -2 xorp/xrl/interfaces/bgp_mib_traps_xif.cc 1.7 +2 -2 xorp/xrl/interfaces/bgp_mib_traps_xif.hh 1.34 +2 -2 xorp/xrl/interfaces/bgp_xif.cc 1.33 +2 -2 xorp/xrl/interfaces/bgp_xif.hh 1.16 +2 -2 xorp/xrl/interfaces/cli_manager_xif.cc 1.14 +2 -2 xorp/xrl/interfaces/cli_manager_xif.hh 1.13 +2 -2 xorp/xrl/interfaces/cli_processor_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/cli_processor_xif.hh 1.15 +2 -2 xorp/xrl/interfaces/common_xif.cc 1.13 +2 -2 xorp/xrl/interfaces/common_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/coord_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/coord_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/datain_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/datain_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/fea_click_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/fea_click_xif.hh 1.8 +2 -2 xorp/xrl/interfaces/fea_fib_client_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/fea_fib_client_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/fea_fib_xif.cc 1.4 +2 -2 xorp/xrl/interfaces/fea_fib_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/fea_ifmgr_client_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/fea_ifmgr_client_xif.hh 1.11 +2 -2 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.cc 1.9 +2 -2 xorp/xrl/interfaces/fea_ifmgr_mirror_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/fea_ifmgr_replicator_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/fea_ifmgr_replicator_xif.hh 1.25 +2 -2 xorp/xrl/interfaces/fea_ifmgr_xif.cc 1.22 +2 -2 xorp/xrl/interfaces/fea_ifmgr_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_client_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_client_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/fea_rawpkt4_xif.hh 1.5 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_client_xif.hh 1.5 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/fea_rawpkt6_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/fib2mrib_xif.cc 1.4 +2 -2 xorp/xrl/interfaces/fib2mrib_xif.hh 1.15 +2 -2 xorp/xrl/interfaces/finder_client_xif.cc 1.13 +2 -2 xorp/xrl/interfaces/finder_client_xif.hh 1.11 +2 -2 xorp/xrl/interfaces/finder_event_notifier_xif.cc 1.9 +2 -2 xorp/xrl/interfaces/finder_event_notifier_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/finder_event_observer_xif.cc 1.9 +2 -2 xorp/xrl/interfaces/finder_event_observer_xif.hh 1.19 +2 -2 xorp/xrl/interfaces/finder_xif.cc 1.17 +2 -2 xorp/xrl/interfaces/finder_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/fti_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/fti_xif.hh 1.18 +2 -2 xorp/xrl/interfaces/mfea_client_xif.cc 1.16 +2 -2 xorp/xrl/interfaces/mfea_client_xif.hh 1.19 +2 -2 xorp/xrl/interfaces/mfea_xif.cc 1.17 +2 -2 xorp/xrl/interfaces/mfea_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/mld6igmp_client_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/mld6igmp_client_xif.hh 1.17 +2 -2 xorp/xrl/interfaces/mld6igmp_xif.cc 1.15 +2 -2 xorp/xrl/interfaces/mld6igmp_xif.hh 1.13 +2 -2 xorp/xrl/interfaces/ospf_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/ospf_xif.hh 1.2 +2 -2 xorp/xrl/interfaces/ospfv2_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/ospfv2_xif.hh 1.2 +2 -2 xorp/xrl/interfaces/ospfv3_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/ospfv3_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/packet_acl_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/packet_acl_xif.hh 1.30 +2 -2 xorp/xrl/interfaces/pim_xif.cc 1.28 +2 -2 xorp/xrl/interfaces/pim_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/policy_backend_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/policy_backend_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/policy_redist4_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/policy_redist4_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/policy_redist6_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/policy_redist6_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/policy_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/policy_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/profile_client_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/profile_client_xif.hh 1.4 +2 -2 xorp/xrl/interfaces/profile_xif.cc 1.2 +2 -2 xorp/xrl/interfaces/profile_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/redist4_xif.cc 1.8 +2 -2 xorp/xrl/interfaces/redist4_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/redist6_xif.cc 1.8 +2 -2 xorp/xrl/interfaces/redist6_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/redist_transaction4_xif.cc 1.9 +2 -2 xorp/xrl/interfaces/redist_transaction4_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/redist_transaction6_xif.cc 1.9 +2 -2 xorp/xrl/interfaces/redist_transaction6_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/rib_client_xif.cc 1.13 +2 -2 xorp/xrl/interfaces/rib_client_xif.hh 1.29 +2 -2 xorp/xrl/interfaces/rib_xif.cc 1.28 +2 -2 xorp/xrl/interfaces/rib_xif.hh 1.9 +2 -2 xorp/xrl/interfaces/rip_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/rip_xif.hh 1.9 +2 -2 xorp/xrl/interfaces/ripng_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/ripng_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/rtrmgr_client_xif.cc 1.12 +2 -2 xorp/xrl/interfaces/rtrmgr_client_xif.hh 1.14 +2 -2 xorp/xrl/interfaces/rtrmgr_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/rtrmgr_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/socket4_locator_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/socket4_locator_xif.hh 1.8 +2 -2 xorp/xrl/interfaces/socket4_user_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/socket4_user_xif.hh 1.10 +2 -2 xorp/xrl/interfaces/socket4_xif.cc 1.7 +2 -2 xorp/xrl/interfaces/socket4_xif.hh 1.6 +2 -2 xorp/xrl/interfaces/socket6_locator_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/socket6_locator_xif.hh 1.6 +2 -2 xorp/xrl/interfaces/socket6_user_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/socket6_user_xif.hh 1.8 +2 -2 xorp/xrl/interfaces/socket6_xif.cc 1.5 +2 -2 xorp/xrl/interfaces/socket6_xif.hh 1.7 +2 -2 xorp/xrl/interfaces/static_routes_xif.cc 1.4 +2 -2 xorp/xrl/interfaces/static_routes_xif.hh 1.15 +2 -2 xorp/xrl/interfaces/test_peer_xif.cc 1.13 +2 -2 xorp/xrl/interfaces/test_peer_xif.hh 1.13 +2 -2 xorp/xrl/interfaces/test_xif.cc 1.11 +2 -2 xorp/xrl/interfaces/test_xif.hh 1.5 +2 -2 xorp/xrl/interfaces/test_xrls_xif.cc 1.3 +2 -2 xorp/xrl/interfaces/test_xrls_xif.hh 1.8 +2 -2 xorp/xrl/interfaces/xorp_if_mib_xif.cc 1.6 +2 -2 xorp/xrl/interfaces/xorp_if_mib_xif.hh 1.8 +1 -1 xorp/xrl/scripts/Xif/util.py 1.37 +2 -2 xorp/xrl/targets/bgp.xrls 1.7 +2 -2 xorp/xrl/targets/bgp4_mib.xrls 1.14 +2 -2 xorp/xrl/targets/bgp4_mib_base.cc 1.11 +2 -2 xorp/xrl/targets/bgp4_mib_base.hh 1.39 +2 -2 xorp/xrl/targets/bgp_base.cc 1.46 +2 -2 xorp/xrl/targets/bgp_base.hh 1.12 +2 -2 xorp/xrl/targets/cli.xrls 1.18 +2 -2 xorp/xrl/targets/cli_base.cc 1.18 +2 -2 xorp/xrl/targets/cli_base.hh 1.12 +2 -2 xorp/xrl/targets/coord.xrls 1.17 +2 -2 xorp/xrl/targets/coord_base.cc 1.17 +2 -2 xorp/xrl/targets/coord_base.hh 1.8 +2 -2 xorp/xrl/targets/demo_fea_ifmgr_client.xrls 1.15 +2 -2 xorp/xrl/targets/demo_fea_ifmgr_client_base.cc 1.15 +2 -2 xorp/xrl/targets/demo_fea_ifmgr_client_base.hh 1.49 +2 -2 xorp/xrl/targets/fea.xrls 1.53 +2 -2 xorp/xrl/targets/fea_base.cc 1.55 +2 -2 xorp/xrl/targets/fea_base.hh 1.9 +2 -2 xorp/xrl/targets/fea_ifmgr_mirror.xrls 1.13 +2 -2 xorp/xrl/targets/fea_ifmgr_mirror_base.cc 1.10 +2 -2 xorp/xrl/targets/fea_ifmgr_mirror_base.hh 1.8 +2 -2 xorp/xrl/targets/fib2mrib.xrls 1.9 +2 -2 xorp/xrl/targets/fib2mrib_base.cc 1.9 +2 -2 xorp/xrl/targets/fib2mrib_base.hh 1.17 +2 -2 xorp/xrl/targets/finder.xrls 1.23 +2 -2 xorp/xrl/targets/finder_base.cc 1.22 +2 -2 xorp/xrl/targets/finder_base.hh 1.10 +2 -2 xorp/xrl/targets/finder_client.xrls 1.17 +2 -2 xorp/xrl/targets/finder_client_base.cc 1.17 +2 -2 xorp/xrl/targets/finder_client_base.hh 1.20 +2 -2 xorp/xrl/targets/mfea.xrls 1.25 +2 -2 xorp/xrl/targets/mfea_base.cc 1.26 +2 -2 xorp/xrl/targets/mfea_base.hh 1.19 +2 -2 xorp/xrl/targets/mld6igmp.xrls 1.24 +2 -2 xorp/xrl/targets/mld6igmp_base.cc 1.25 +2 -2 xorp/xrl/targets/mld6igmp_base.hh 1.9 +2 -2 xorp/xrl/targets/ospf.xrls 1.15 +2 -2 xorp/xrl/targets/ospf_base.cc 1.15 +2 -2 xorp/xrl/targets/ospf_base.hh 1.2 +2 -2 xorp/xrl/targets/ospfv2.xrls 1.2 +2 -2 xorp/xrl/targets/ospfv2_base.cc 1.2 +2 -2 xorp/xrl/targets/ospfv2_base.hh 1.2 +2 -2 xorp/xrl/targets/ospfv3.xrls 1.2 +2 -2 xorp/xrl/targets/ospfv3_base.cc 1.2 +2 -2 xorp/xrl/targets/ospfv3_base.hh 1.2 +2 -2 xorp/xrl/targets/packet_acl.xrls 1.4 +2 -2 xorp/xrl/targets/packet_acl_base.cc 1.2 +2 -2 xorp/xrl/targets/packet_acl_base.hh 1.43 +2 -2 xorp/xrl/targets/pim.xrls 1.46 +2 -2 xorp/xrl/targets/pim_base.cc 1.49 +2 -2 xorp/xrl/targets/pim_base.hh 1.4 +2 -2 xorp/xrl/targets/policy.xrls 1.4 +2 -2 xorp/xrl/targets/policy_base.cc 1.4 +2 -2 xorp/xrl/targets/policy_base.hh 1.3 +2 -2 xorp/xrl/targets/profiler.xrls 1.4 +2 -2 xorp/xrl/targets/profiler_base.cc 1.3 +2 -2 xorp/xrl/targets/profiler_base.hh 1.31 +2 -2 xorp/xrl/targets/rib.xrls 1.34 +2 -2 xorp/xrl/targets/rib_base.cc 1.37 +2 -2 xorp/xrl/targets/rib_base.hh 1.9 +2 -2 xorp/xrl/targets/ribclient.xrls 1.14 +2 -2 xorp/xrl/targets/ribclient_base.cc 1.15 +2 -2 xorp/xrl/targets/ribclient_base.hh 1.19 +2 -2 xorp/xrl/targets/rip.xrls 1.19 +2 -2 xorp/xrl/targets/rip_base.cc 1.20 +2 -2 xorp/xrl/targets/rip_base.hh 1.21 +2 -2 xorp/xrl/targets/ripng.xrls 1.21 +2 -2 xorp/xrl/targets/ripng_base.cc 1.22 +2 -2 xorp/xrl/targets/ripng_base.hh 1.11 +2 -2 xorp/xrl/targets/rtrmgr.xrls 1.17 +2 -2 xorp/xrl/targets/rtrmgr_base.cc 1.17 +2 -2 xorp/xrl/targets/rtrmgr_base.hh 1.6 +2 -2 xorp/xrl/targets/show_routes.xrls 1.6 +2 -2 xorp/xrl/targets/show_routes_base.cc 1.6 +2 -2 xorp/xrl/targets/show_routes_base.hh 1.7 +2 -2 xorp/xrl/targets/socket_server.xrls 1.9 +2 -2 xorp/xrl/targets/socket_server_base.cc 1.8 +2 -2 xorp/xrl/targets/socket_server_base.hh 1.8 +2 -2 xorp/xrl/targets/static_routes.xrls 1.9 +2 -2 xorp/xrl/targets/static_routes_base.cc 1.9 +2 -2 xorp/xrl/targets/static_routes_base.hh 1.9 +2 -2 xorp/xrl/targets/test.xrls 1.15 +2 -2 xorp/xrl/targets/test_base.cc 1.15 +2 -2 xorp/xrl/targets/test_base.hh 1.4 +2 -2 xorp/xrl/targets/test_fea_ifmgr_mirror.xrls 1.8 +2 -2 xorp/xrl/targets/test_fea_ifmgr_mirror_base.cc 1.5 +2 -2 xorp/xrl/targets/test_fea_ifmgr_mirror_base.hh 1.6 +2 -2 xorp/xrl/targets/test_finder_events.xrls 1.12 +2 -2 xorp/xrl/targets/test_finder_events_base.cc 1.10 +2 -2 xorp/xrl/targets/test_finder_events_base.hh 1.11 +2 -2 xorp/xrl/targets/test_peer.xrls 1.17 +2 -2 xorp/xrl/targets/test_peer_base.cc 1.17 +2 -2 xorp/xrl/targets/test_peer_base.hh 1.3 +2 -2 xorp/xrl/targets/test_socket4.xrls 1.6 +2 -2 xorp/xrl/targets/test_socket4_base.cc 1.4 +2 -2 xorp/xrl/targets/test_socket4_base.hh 1.3 +2 -2 xorp/xrl/targets/test_socket6.xrls 1.6 +2 -2 xorp/xrl/targets/test_socket6_base.cc 1.4 +2 -2 xorp/xrl/targets/test_socket6_base.hh 1.3 +2 -2 xorp/xrl/targets/test_xrls.xrls 1.5 +2 -2 xorp/xrl/targets/test_xrls_base.cc 1.3 +2 -2 xorp/xrl/targets/test_xrls_base.hh 1.6 +2 -2 xorp/xrl/targets/xorp_if_mib.xrls 1.11 +2 -2 xorp/xrl/targets/xorp_if_mib_base.cc 1.8 +2 -2 xorp/xrl/targets/xorp_if_mib_base.hh 1.9 +2 -2 xorp/xrl/targets/xorpsh.xrls 1.16 +2 -2 xorp/xrl/targets/xorpsh_base.cc 1.16 +2 -2 xorp/xrl/targets/xorpsh_base.hh 1.14 +2 -2 xorp/xrl/tests/test_generated.cc 1.6 +2 -2 xorp/xrl/tests/test_tgt.cc 1.7 +2 -2 xorp/xrl/tests/test_tgt.hh 1.4 +2 -2 xorp/xrl/tests/test_xifs.cc 1.5 +2 -2 xorp/xrl/tests/test_xifs.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:23:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 19:24:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P3O1ds028430 for ; Thu, 24 Mar 2005 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3O1hq017444 for ; Thu, 24 Mar 2005 19:24:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3O1dU025752; Thu, 24 Mar 2005 19:24:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3NWdU025738 for ; Thu, 24 Mar 2005 19:23:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3NWt7017433 for ; Thu, 24 Mar 2005 19:23:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3NWX8059687 for ; Thu, 24 Mar 2005 19:23:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3NW7s059686 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:23:32 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:23:32 GMT From: Pavlin Radoslavov Message-Id: <200503250323.j2P3NW7s059686@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 03:23:32 UTC XORP CVS repository Modified files: . ERRATA Log message: Update ERRATA entries. Obtained from: Atanu Revision Changes Path 1.19 +16 -16 xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:25:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 19:26:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P3Q0Nk028942 for ; Thu, 24 Mar 2005 19:26:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3Q0aI017494 for ; Thu, 24 Mar 2005 19:26:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3Q0dU025820; Thu, 24 Mar 2005 19:26:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3PNdU025800 for ; Thu, 24 Mar 2005 19:25:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3PNCR017485 for ; Thu, 24 Mar 2005 19:25:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3PNEu059750 for ; Thu, 24 Mar 2005 19:25:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3PNkg059749 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:25:23 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:25:23 GMT From: Pavlin Radoslavov Message-Id: <200503250325.j2P3PNkg059749@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 03:25:23 UTC XORP CVS repository Modified files: . README Log message: Update the BGP draft version. Obtained from: Atanu Revision Changes Path 1.29 +2 -2 xorp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:28:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 19:29:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P3T2G0029732 for ; Thu, 24 Mar 2005 19:29:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3T1W8017516 for ; Thu, 24 Mar 2005 19:29:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3T1dU025893; Thu, 24 Mar 2005 19:29:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3SjdU025884 for ; Thu, 24 Mar 2005 19:28:45 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3Sj1h017510 for ; Thu, 24 Mar 2005 19:28:45 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3SjbY059851 for ; Thu, 24 Mar 2005 19:28:45 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3SjQ5059850 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:28:45 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:28:45 GMT From: Pavlin Radoslavov Message-Id: <200503250328.j2P3SjQ5059850@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 03:28:44 UTC XORP CVS repository Modified files: . license.html html_src license.html Log message: Update copyright date. Revision Changes Path 1.3 +1 -1 www/html_src/license.html 1.21 +3 -3 www/license.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:52:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 19:53:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P3r3U0035622 for ; Thu, 24 Mar 2005 19:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3r3M1017789 for ; Thu, 24 Mar 2005 19:53:03 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3r3dU026520; Thu, 24 Mar 2005 19:53:03 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3qYdU026471 for ; Thu, 24 Mar 2005 19:52:34 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3qY1t017784 for ; Thu, 24 Mar 2005 19:52:34 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3qYdM060123 for ; Thu, 24 Mar 2005 19:52:34 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3qYAL060122 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:52:34 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:52:34 GMT From: Pavlin Radoslavov Message-Id: <200503250352.j2P3qYAL060122@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 03:52:34 UTC XORP CVS repository Modified files: . README Log message: Update README in preparation for the 1.1 release candidate: * Updat the list of FreeBSD supported platforms * Move "libfeaclient" upfront * Remove "Click forwarding path" from the list of TODO tasks, because it is already done. * Add Bruce and Marko to the list of core team. Revision Changes Path 1.30 +7 -8 xorp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:53:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 19:54:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P3s1u4035853 for ; Thu, 24 Mar 2005 19:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3s1Ej017797 for ; Thu, 24 Mar 2005 19:54:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3s1dU026564; Thu, 24 Mar 2005 19:54:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3rMdU026551 for ; Thu, 24 Mar 2005 19:53:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3rMRW017793 for ; Thu, 24 Mar 2005 19:53:22 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3rMtt060173 for ; Thu, 24 Mar 2005 19:53:22 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3rMaG060172 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:53:22 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:53:22 GMT From: Pavlin Radoslavov Message-Id: <200503250353.j2P3rMaG060172@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 03:53:22 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update BUILD_NOTES for the following platforms: * FreeBSD * Linux * MacOS X Revision Changes Path 1.24 +11 -5 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 03:59:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:00:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P401xr037347 for ; Thu, 24 Mar 2005 20:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P401Ux017863 for ; Thu, 24 Mar 2005 20:00:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P401dU026733; Thu, 24 Mar 2005 20:00:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P3xpdU026724 for ; Thu, 24 Mar 2005 19:59:51 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P3xpZX017850 for ; Thu, 24 Mar 2005 19:59:51 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P3xocM060322 for ; Thu, 24 Mar 2005 19:59:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P3xo77060321 for xorp-cvs@icir.org; Fri, 25 Mar 2005 03:59:50 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 03:59:50 GMT From: Pavlin Radoslavov Message-Id: <200503250359.j2P3xo77060321@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 03:59:50 UTC XORP CVS repository Modified files: . README Log message: Update the list of sponsors. Revision Changes Path 1.31 +2 -1 xorp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:03:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:04:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P441ZA038326 for ; Thu, 24 Mar 2005 20:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P441PY017915 for ; Thu, 24 Mar 2005 20:04:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P440dU026829; Thu, 24 Mar 2005 20:04:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P43NdU026815 for ; Thu, 24 Mar 2005 20:03:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P43N6N017903 for ; Thu, 24 Mar 2005 20:03:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P43N4m060459 for ; Thu, 24 Mar 2005 20:03:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P43Np3060458 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:03:23 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:03:23 GMT From: Pavlin Radoslavov Message-Id: <200503250403.j2P43Np3060458@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 04:03:23 UTC XORP CVS repository Modified files: . README VERSION configure configure.in Log message: Prepare XORP for release: set the version number to 1.1-RC Revision Changes Path 1.32 +2 -2 xorp/README 1.8 +1 -1 xorp/VERSION 1.142 +1 -1 xorp/configure 1.132 +2 -2 xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:13:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:14:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4E1U5067884 for ; Thu, 24 Mar 2005 20:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4E1DD018027 for ; Thu, 24 Mar 2005 20:14:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4E1dU027105; Thu, 24 Mar 2005 20:14:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4DJdU027081 for ; Thu, 24 Mar 2005 20:13:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4DIBw018025 for ; Thu, 24 Mar 2005 20:13:18 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4DI0K060669 for ; Thu, 24 Mar 2005 20:13:18 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4DIqf060668 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:13:18 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:13:18 GMT From: Pavlin Radoslavov Message-Id: <200503250413.j2P4DIqf060668@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:13:18 UTC XORP CVS repository Modified files: html_src status.html . status.html Log message: * Update the date and the version to March 2005 (Release 1.1-RC) * Update the FEA and MFEA status * Update the BGP status. Revision Changes Path 1.6 +7 -6 www/html_src/status.html 1.14 +10 -9 www/status.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:29:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4U12q016528 for ; Thu, 24 Mar 2005 20:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4U1nn018223 for ; Thu, 24 Mar 2005 20:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4U1dU027498; Thu, 24 Mar 2005 20:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4TbdU027479 for ; Thu, 24 Mar 2005 20:29:37 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4TbX8018214 for ; Thu, 24 Mar 2005 20:29:37 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4Tb8Y060848 for ; Thu, 24 Mar 2005 20:29:37 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4Tb1o060847 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:29:37 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:29:37 GMT From: Pavlin Radoslavov Message-Id: <200503250429.j2P4Tb1o060847@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:29:37 UTC XORP CVS repository Modified files: html_src downloads.html . downloads.html Log message: * Update the current status * Add an entry for 1.1-RC Revision Changes Path 1.34 +26 -15 www/downloads.html 1.7 +23 -12 www/html_src/downloads.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:31:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:32:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4W1As021320 for ; Thu, 24 Mar 2005 20:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4W1IK018254 for ; Thu, 24 Mar 2005 20:32:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4W1dU027576; Thu, 24 Mar 2005 20:32:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4VDdU027555 for ; Thu, 24 Mar 2005 20:31:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4VDHV018246 for ; Thu, 24 Mar 2005 20:31:13 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4VDrH060920 for ; Thu, 24 Mar 2005 20:31:13 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4VDAV060919 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:31:13 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:31:13 GMT From: Pavlin Radoslavov Message-Id: <200503250431.j2P4VDAV060919@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 04:31:13 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: Update step 1100. Revision Changes Path 1.30 +2 -1 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:38:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4d12j035776 for ; Thu, 24 Mar 2005 20:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4d0Jd018317 for ; Thu, 24 Mar 2005 20:39:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4d0dU027763; Thu, 24 Mar 2005 20:39:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4cNdU027740 for ; Thu, 24 Mar 2005 20:38:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4cNdT018313 for ; Thu, 24 Mar 2005 20:38:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4cNBw061054 for ; Thu, 24 Mar 2005 20:38:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4cMip061053 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:38:22 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:38:22 GMT From: Pavlin Radoslavov Message-Id: <200503250438.j2P4cMip061053@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:38:22 UTC XORP CVS repository Modified files: html_src getting_started.html . getting_started.html Log message: * Update the status * Update the rtrmgr flag for not executing the XRLs. Previously it was -n, but recently it has changed to -N Revision Changes Path 1.32 +5 -5 www/getting_started.html 1.8 +4 -4 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:43:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:44:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4i18v046474 for ; Thu, 24 Mar 2005 20:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4i1hB018381 for ; Thu, 24 Mar 2005 20:44:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4i1dU027937; Thu, 24 Mar 2005 20:44:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4hBdU027897 for ; Thu, 24 Mar 2005 20:43:11 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4hBsv018372 for ; Thu, 24 Mar 2005 20:43:11 -0800 (PST) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4hBJc061157 for ; Thu, 24 Mar 2005 20:43:11 -0800 (PST) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4hBid061156 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:43:11 GMT (envelope-from atanu) Date: Fri, 25 Mar 2005 04:43:11 GMT From: Atanu Ghosh Message-Id: <200503250443.j2P4hBid061156@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-03-25 04:43:11 UTC XORP CVS repository Modified files: . status.html html_src status.html Log message: Updated BGP status. Revision Changes Path 1.7 +5 -7 www/html_src/status.html 1.15 +6 -8 www/status.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:46:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:47:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4l1v4054848 for ; Thu, 24 Mar 2005 20:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4l19F018423 for ; Thu, 24 Mar 2005 20:47:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4l0dU028010; Thu, 24 Mar 2005 20:47:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4k5dU027985 for ; Thu, 24 Mar 2005 20:46:05 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4k4ta018418 for ; Thu, 24 Mar 2005 20:46:04 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4k4To061303 for ; Thu, 24 Mar 2005 20:46:04 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4k4KW061302 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:46:04 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:46:04 GMT From: Pavlin Radoslavov Message-Id: <200503250446.j2P4k4KW061302@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:46:04 UTC XORP CVS repository Modified files: html_src index.html . index.html Log message: * Set the lastest release version to 1.1-RC * Remove the sentence about the 1.0 status. * Update the expected date for the 1.1 release. Revision Changes Path 1.15 +2 -5 www/html_src/index.html 1.65 +3 -6 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:51:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:52:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4q1XP066809 for ; Thu, 24 Mar 2005 20:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4q1QJ018485 for ; Thu, 24 Mar 2005 20:52:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4q1dU028128; Thu, 24 Mar 2005 20:52:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4pJdU028105 for ; Thu, 24 Mar 2005 20:51:19 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4pJu7018478 for ; Thu, 24 Mar 2005 20:51:19 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4pJv6061419 for ; Thu, 24 Mar 2005 20:51:19 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4pJDD061418 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:51:19 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:51:19 GMT From: Pavlin Radoslavov Message-Id: <200503250451.j2P4pJDD061418@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:51:19 UTC XORP CVS repository Modified files: . livecd.html html_src livecd.html Log message: Add a line with the XORP version used on the LiveCD. This is useful in case the LiveCD doesn't match the lastest XORP release (e.g., when we have release candidate rolling out). Revision Changes Path 1.5 +4 -1 www/html_src/livecd.html 1.25 +7 -4 www/livecd.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:51:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:52:05 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4q5Be067358 for ; Thu, 24 Mar 2005 20:52:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4q5rq018488 for ; Thu, 24 Mar 2005 20:52:05 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4q5dU028139; Thu, 24 Mar 2005 20:52:05 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4pcdU028118 for ; Thu, 24 Mar 2005 20:51:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4pcph018482 for ; Thu, 24 Mar 2005 20:51:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4pcGk061462 for ; Thu, 24 Mar 2005 20:51:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4pcQV061461 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:51:38 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:51:38 GMT From: Pavlin Radoslavov Message-Id: <200503250451.j2P4pcQV061461@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 04:51:38 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: Update step 1100 Revision Changes Path 1.31 +2 -1 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:54:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4t1MU074792 for ; Thu, 24 Mar 2005 20:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4t1wn018517 for ; Thu, 24 Mar 2005 20:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4t1dU028209; Thu, 24 Mar 2005 20:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4sXdU028194 for ; Thu, 24 Mar 2005 20:54:33 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4sWbX018511 for ; Thu, 24 Mar 2005 20:54:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4sW7J061539 for ; Thu, 24 Mar 2005 20:54:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4sWbD061538 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:54:32 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:54:32 GMT From: Pavlin Radoslavov Message-Id: <200503250454.j2P4sWbD061538@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:54:32 UTC XORP CVS repository Modified files: html_src news.html . news.html Log message: Add a news item for 1.1 Release Candidate Revision Changes Path 1.10 +9 -0 www/html_src/news.html 1.39 +10 -1 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 04:57:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 20:58:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P4w16O082038 for ; Thu, 24 Mar 2005 20:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4w0Fw018563 for ; Thu, 24 Mar 2005 20:58:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4w0dU028304; Thu, 24 Mar 2005 20:58:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P4vudU028297 for ; Thu, 24 Mar 2005 20:57:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P4vulk018561 for ; Thu, 24 Mar 2005 20:57:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P4vut9061631 for ; Thu, 24 Mar 2005 20:57:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P4vurB061630 for xorp-cvs@icir.org; Fri, 25 Mar 2005 04:57:56 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 04:57:56 GMT From: Pavlin Radoslavov Message-Id: <200503250457.j2P4vurB061630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 04:57:56 UTC XORP CVS repository Modified files: html_src roadmap.html . roadmap.html Log message: Update the 1.1 release date. Revision Changes Path 1.5 +1 -1 www/html_src/roadmap.html 1.5 +2 -2 www/roadmap.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:13 2005 Subject: No subject Fri Mar 25 05:08:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 21:09:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P591gG005457 for ; Thu, 24 Mar 2005 21:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5918K018690 for ; Thu, 24 Mar 2005 21:09:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P591dU028525; Thu, 24 Mar 2005 21:09:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P58xdU028519 for ; Thu, 24 Mar 2005 21:08:59 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P58xAP018687 for ; Thu, 24 Mar 2005 21:08:59 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P58xSv061960 for ; Thu, 24 Mar 2005 21:08:59 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P58x5p061959 for xorp-cvs@icir.org; Fri, 25 Mar 2005 05:08:59 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 05:08:59 GMT From: Pavlin Radoslavov Message-Id: <200503250508.j2P58x5p061959@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 05:08:59 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Update the BGP example for configuring AFI/SAFI combinations, because the syntax has changed. Revision Changes Path 1.33 +7 -5 www/getting_started.html 1.9 +6 -4 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 05:25:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 21:26:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P5Q1sW039312 for ; Thu, 24 Mar 2005 21:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5Q1oi018909 for ; Thu, 24 Mar 2005 21:26:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5Q1dU028990; Thu, 24 Mar 2005 21:26:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5PodU028979 for ; Thu, 24 Mar 2005 21:25:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5Pob7018906 for ; Thu, 24 Mar 2005 21:25:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P5PowO062229 for ; Thu, 24 Mar 2005 21:25:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P5PoCQ062228 for xorp-cvs@icir.org; Fri, 25 Mar 2005 05:25:50 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 05:25:50 GMT From: Pavlin Radoslavov Message-Id: <200503250525.j2P5PoCQ062228@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 05:25:50 UTC XORP CVS repository Modified files: docs/rtrmgr config_guide.tex docs/user_manual bgp.tex config_overview.tex Log message: Update the documentation with the new BGP configuration syntax for configuring AFI/SAFI combinations. Revision Changes Path 1.7 +7 -5 xorp/docs/rtrmgr/config_guide.tex 1.9 +20 -8 xorp/docs/user_manual/bgp.tex 1.5 +6 -4 xorp/docs/user_manual/config_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 05:28:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 21:29:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P5T0bS040044 for ; Thu, 24 Mar 2005 21:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5T0On018950 for ; Thu, 24 Mar 2005 21:29:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5T0dU029085; Thu, 24 Mar 2005 21:29:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5ScdU029071 for ; Thu, 24 Mar 2005 21:28:38 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5ScsB018947 for ; Thu, 24 Mar 2005 21:28:38 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P5ScBm062280 for ; Thu, 24 Mar 2005 21:28:38 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P5Sc66062279 for xorp-cvs@icir.org; Fri, 25 Mar 2005 05:28:38 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 05:28:38 GMT From: Pavlin Radoslavov Message-Id: <200503250528.j2P5Sc66062279@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 05:28:37 UTC XORP CVS repository Modified files: libxorp profile.hh Log message: Typo: @parameter -> @param Revision Changes Path 1.5 +3 -3 xorp/libxorp/profile.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 05:41:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 21:42:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P5g18D043205 for ; Thu, 24 Mar 2005 21:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5g1pK019095 for ; Thu, 24 Mar 2005 21:42:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5g1dU029468; Thu, 24 Mar 2005 21:42:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P5fudU029461 for ; Thu, 24 Mar 2005 21:41:56 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P5fut2019091 for ; Thu, 24 Mar 2005 21:41:56 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P5fulW062447 for ; Thu, 24 Mar 2005 21:41:56 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P5fuho062446 for xorp-cvs@icir.org; Fri, 25 Mar 2005 05:41:56 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 05:41:56 GMT From: Pavlin Radoslavov Message-Id: <200503250541.j2P5fuho062446@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 05:41:56 UTC XORP CVS repository Modified files: fea fticonfig.hh ifconfig.hh ifconfig_set.hh nexthop_port_mapper.hh Log message: Fix kdoc typos: @see -> @ref Revision Changes Path 1.34 +7 -7 xorp/fea/fticonfig.hh 1.43 +5 -5 xorp/fea/ifconfig.hh 1.35 +4 -4 xorp/fea/ifconfig_set.hh 1.9 +4 -4 xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 06:09:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 22:10:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P6A1vY050013 for ; Thu, 24 Mar 2005 22:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P6A1rM019444 for ; Thu, 24 Mar 2005 22:10:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P6A1dU000092; Thu, 24 Mar 2005 22:10:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P69DdU000076 for ; Thu, 24 Mar 2005 22:09:13 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P69C3q019430 for ; Thu, 24 Mar 2005 22:09:12 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P69Cpa062909 for ; Thu, 24 Mar 2005 22:09:12 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P69C31062908 for xorp-cvs@icir.org; Fri, 25 Mar 2005 06:09:12 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 06:09:12 GMT From: Pavlin Radoslavov Message-Id: <200503250609.j2P69C31062908@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 06:09:12 UTC XORP CVS repository Modified files: docs/user_manual Makefile.am Makefile.in multicast_topology.tex static_routes.tex unicast_routing.tex user_manual.tex xorp_toc.sty Removed files: docs/user_manual mcasttopology.tex multicastrouting.tex staticroutes.tex unicastrouting.tex xorp-toc.sty Log message: Apply file and label renaming (for consistency with the XORP style): * Rename (within the XORP CVS repository) the following files: - mcasttopology.tex -> multicast_topology.tex - multicastrouting.tex -> multicast_routing.tex - staticroutes.tex -> static_routes.tex - unicastrouting.tex -> unicast_routing.tex - xorp-toc.sty -> xorp_toc.sty * Use section label static_routes instead of staticroutes * Change package name from xorp-toc to xorp_toc Revision Changes Path 1.4 +6 -5 xorp/docs/user_manual/Makefile.am 1.9 +5 -4 xorp/docs/user_manual/Makefile.in 1.2 +0 -23 xorp/docs/user_manual/mcasttopology.tex (dead) 1.2 +1 -1 xorp/docs/user_manual/multicast_topology.tex 1.4 +0 -125 xorp/docs/user_manual/multicastrouting.tex (dead) 1.7 +1 -1 xorp/docs/user_manual/static_routes.tex 1.7 +0 -233 xorp/docs/user_manual/staticroutes.tex (dead) 1.4 +1 -1 xorp/docs/user_manual/unicast_routing.tex 1.4 +0 -141 xorp/docs/user_manual/unicastrouting.tex (dead) 1.7 +6 -8 xorp/docs/user_manual/user_manual.tex 1.2 +0 -633 xorp/docs/user_manual/xorp-toc.sty (dead) 1.2 +10 -10 xorp/docs/user_manual/xorp_toc.sty _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 06:40:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 24 Mar 2005 22:41:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2P6f1QE056594 for ; Thu, 24 Mar 2005 22:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P6f14X019794 for ; Thu, 24 Mar 2005 22:41:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P6f1dU000787; Thu, 24 Mar 2005 22:41:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2P6eFdU000774 for ; Thu, 24 Mar 2005 22:40:15 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2P6eFvp019788 for ; Thu, 24 Mar 2005 22:40:15 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2P6eE5d063718 for ; Thu, 24 Mar 2005 22:40:14 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2P6eElS063717 for xorp-cvs@icir.org; Fri, 25 Mar 2005 06:40:14 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 06:40:14 GMT From: Pavlin Radoslavov Message-Id: <200503250640.j2P6eElS063717@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-25 06:40:14 UTC XORP CVS repository Modified files: . downloads.html html_src downloads.html Log message: Add the MD5 checksum for the xorp-1.1-RC.tar.gz tarball. Revision Changes Path 1.35 +2 -2 www/downloads.html 1.8 +1 -1 www/html_src/downloads.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 19:01:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Mar 2005 11:02:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ21At006166 for ; Fri, 25 Mar 2005 11:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ21cl029252 for ; Fri, 25 Mar 2005 11:02:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2PJ21dU020227; Fri, 25 Mar 2005 11:02:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2PJ1WdU020215 for ; Fri, 25 Mar 2005 11:01:32 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ1W8Q029250 for ; Fri, 25 Mar 2005 11:01:32 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ1Whl071347 for ; Fri, 25 Mar 2005 11:01:32 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2PJ1Wi0071346 for xorp-cvs@icir.org; Fri, 25 Mar 2005 19:01:32 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 19:01:32 GMT From: Pavlin Radoslavov Message-Id: <200503251901.j2PJ1Wi0071346@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 19:01:32 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: Update step 750 that xorp/mibs/configure.in also needs to be edited. Revision Changes Path 1.32 +4 -2 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Mar 25 19:05:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 25 Mar 2005 11:06:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ61lo006980 for ; Fri, 25 Mar 2005 11:06:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ606M029294 for ; Fri, 25 Mar 2005 11:06:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2PJ60dU020306; Fri, 25 Mar 2005 11:06:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2PJ5idU020294 for ; Fri, 25 Mar 2005 11:05:44 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ5iu3029292 for ; Fri, 25 Mar 2005 11:05:44 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2PJ5i8e071440 for ; Fri, 25 Mar 2005 11:05:44 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2PJ5iOb071439 for xorp-cvs@icir.org; Fri, 25 Mar 2005 19:05:44 GMT (envelope-from pavlin) Date: Fri, 25 Mar 2005 19:05:44 GMT From: Pavlin Radoslavov Message-Id: <200503251905.j2PJ5iOb071439@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-25 19:05:44 UTC XORP CVS repository Modified files: mibs configure configure.in Log message: Update the version in AM_INIT_AUTOMAKE to 1.1-RC to match the version in the top-level configure.in This fixes a compilation problem in the mibs directory because of the version mismatch. Revision Changes Path 1.8 +1 -1 xorp/mibs/configure 1.4 +2 -2 xorp/mibs/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Mon Mar 28 20:33:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Mar 2005 12:34:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2SKY2rq089648 for ; Mon, 28 Mar 2005 12:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2SKY2Ms075540 for ; Mon, 28 Mar 2005 12:34:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2SKY1dU003914; Mon, 28 Mar 2005 12:34:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2SKXodU003884 for ; Mon, 28 Mar 2005 12:33:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2SKXoEp075538 for ; Mon, 28 Mar 2005 12:33:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2SKXoE1093174 for ; Mon, 28 Mar 2005 12:33:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2SKXo8Q093173 for xorp-cvs@icir.org; Mon, 28 Mar 2005 20:33:50 GMT (envelope-from pavlin) Date: Mon, 28 Mar 2005 20:33:50 GMT From: Pavlin Radoslavov Message-Id: <200503282033.j2SKXo8Q093173@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-28 20:33:50 UTC XORP CVS repository Modified files: libproto .cvsignore Log message: Add test_spt to the list of files ignored by CVS Revision Changes Path 1.2 +1 -0 xorp/libproto/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Mon Mar 28 20:38:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 28 Mar 2005 12:39:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2SKd1cX090719 for ; Mon, 28 Mar 2005 12:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2SKd1kt075601 for ; Mon, 28 Mar 2005 12:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2SKd1dU004135; Mon, 28 Mar 2005 12:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2SKcUdU004118 for ; Mon, 28 Mar 2005 12:38:30 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2SKcUMq075596 for ; Mon, 28 Mar 2005 12:38:30 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2SKcTwU093286 for ; Mon, 28 Mar 2005 12:38:29 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2SKcTql093285 for xorp-cvs@icir.org; Mon, 28 Mar 2005 20:38:29 GMT (envelope-from pavlin) Date: Mon, 28 Mar 2005 20:38:29 GMT From: Pavlin Radoslavov Message-Id: <200503282038.j2SKcTql093285@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-28 20:38:29 UTC XORP CVS repository Modified files: libproto Makefile.am Makefile.in Log message: Add file "spt_graph1" to the EXTRA_DIST set. Revision Changes Path 1.11 +3 -1 xorp/libproto/Makefile.am 1.25 +3 -0 xorp/libproto/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Tue Mar 29 19:58:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Mar 2005 11:59:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2TJx1x0093016 for ; Tue, 29 Mar 2005 11:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TJx1da091768 for ; Tue, 29 Mar 2005 11:59:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TJx1dU016493; Tue, 29 Mar 2005 11:59:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TJwodU016483 for ; Tue, 29 Mar 2005 11:58:50 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TJwopZ091766 for ; Tue, 29 Mar 2005 11:58:50 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2TJwo8g022845 for ; Tue, 29 Mar 2005 11:58:50 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2TJwonv022844 for xorp-cvs@icir.org; Tue, 29 Mar 2005 19:58:50 GMT (envelope-from pavlin) Date: Tue, 29 Mar 2005 19:58:50 GMT From: Pavlin Radoslavov Message-Id: <200503291958.j2TJwonv022844@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-29 19:58:50 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: Add the "-d -P" flags to the "cvs update" command. Revision Changes Path 1.33 +3 -3 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Tue Mar 29 20:14:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Mar 2005 12:15:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2TKF1Mw097019 for ; Tue, 29 Mar 2005 12:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TKF1VC091956 for ; Tue, 29 Mar 2005 12:15:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TKF1dU017044; Tue, 29 Mar 2005 12:15:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TKE0dU017020 for ; Tue, 29 Mar 2005 12:14:00 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TKE0Hk091943 for ; Tue, 29 Mar 2005 12:14:00 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2TKE0Ga023057 for ; Tue, 29 Mar 2005 12:14:00 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2TKE0AB023056 for xorp-cvs@icir.org; Tue, 29 Mar 2005 20:14:00 GMT (envelope-from pavlin) Date: Tue, 29 Mar 2005 20:14:00 GMT From: Pavlin Radoslavov Message-Id: <200503292014.j2TKE0AB023056@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-29 20:14:00 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: Bug fix: add code to do the right thing if we try to add an interface-specific route. Previously that code was missing, so the interface-specific routes were going into a semi-blackhole. Tested on FreeBSD-4.9, NetBSD-1.6.1-current, OpenBSD-3.6-current and MacOS X 10.3. [This is routing sockets specific code so it doesn't apply to Linux] Note that in general on {Free,Net,Open}BSD we can add a route that has the next-hop interface AND the next-hop router set at the same time, and the new code supports that. On MacOS X the kernel allows us to do this only if there is already a forwarding entry for the next-hop router address. Revision Changes Path 1.28 +116 -20 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Tue Mar 29 23:10:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Mar 2005 15:11:03 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2TNB2ln040972 for ; Tue, 29 Mar 2005 15:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TNB2sv094020 for ; Tue, 29 Mar 2005 15:11:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TNB2dU023444; Tue, 29 Mar 2005 15:11:02 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2TNAKdU023394 for ; Tue, 29 Mar 2005 15:10:21 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2TNAKcZ094009 for ; Tue, 29 Mar 2005 15:10:20 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2TNAKbw024956 for ; Tue, 29 Mar 2005 15:10:20 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2TNAKdY024955 for xorp-cvs@icir.org; Tue, 29 Mar 2005 23:10:20 GMT (envelope-from pavlin) Date: Tue, 29 Mar 2005 23:10:20 GMT From: Pavlin Radoslavov Message-Id: <200503292310.j2TNAKdY024955@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-29 23:10:20 UTC XORP CVS repository Modified files: libcomm comm_sock.c libxipc sockutil.cc Log message: Bug fix: if desired_bufsize becomes <=0, then break the loop and return an error. Previously, we could end-up running in an infinite loop if the system is low on memory and we fail to allocate any buffer space on a socket. Bug found by: "edrt" Revision Changes Path 1.12 +5 -1 xorp/libcomm/comm_sock.c 1.14 +5 -1 xorp/libxipc/sockutil.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Wed Mar 30 06:45:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 29 Mar 2005 22:46:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2U6k1M7053523 for ; Tue, 29 Mar 2005 22:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2U6k1qf098728 for ; Tue, 29 Mar 2005 22:46:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2U6k1dU009252; Tue, 29 Mar 2005 22:46:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2U6jhdU009245 for ; Tue, 29 Mar 2005 22:45:43 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2U6jhVt098725 for ; Tue, 29 Mar 2005 22:45:43 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2U6jh7e028195 for ; Tue, 29 Mar 2005 22:45:43 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2U6jhaa028194 for xorp-cvs@icir.org; Wed, 30 Mar 2005 06:45:43 GMT (envelope-from pavlin) Date: Wed, 30 Mar 2005 06:45:43 GMT From: Pavlin Radoslavov Message-Id: <200503300645.j2U6jhaa028194@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-30 06:45:43 UTC XORP CVS repository Modified files: rib xrl_target.cc Log message: Add missing profile logging for add_interface_route[4,6] and replace_interface_route[4,6] XRLs. Bug found by: Atanu Revision Changes Path 1.52 +65 -7 xorp/rib/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Thu Mar 31 19:32:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Mar 2005 11:33:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2VJX10h019171 for ; Thu, 31 Mar 2005 11:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJX1BO025589 for ; Thu, 31 Mar 2005 11:33:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJX0dU019287; Thu, 31 Mar 2005 11:33:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJWqdU019276 for ; Thu, 31 Mar 2005 11:32:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJWqX8025587 for ; Thu, 31 Mar 2005 11:32:52 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2VJWqnD063020 for ; Thu, 31 Mar 2005 11:32:52 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2VJWpuN063019 for xorp-cvs@icir.org; Thu, 31 Mar 2005 19:32:52 GMT (envelope-from pavlin) Date: Thu, 31 Mar 2005 19:32:52 GMT From: Pavlin Radoslavov Message-Id: <200503311932.j2VJWpuN063019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-31 19:32:51 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: * Bug fix: If we try to add an interface-specific route, then use sockaddr_dl with the interface name as the RTA_GATEWAY information in case of all OS-es, not only MacOS X. Previously, the interface information for such routes was set properly, but "netstat -rn" displayed 0.0.0.0 or :: instead of, say, "link#4" as the Gateway information, which didn't seem right. * Bug fix: The size of all sockaddr* structures used by the routing sockets should be rounded-up to the next sizeof(long) boundary. This isn't an issue with sockaddr_in and sockaddr_in6, because their size is multiple of sizeof(long), but is not the case of sockaddr_dl on FreeBSD. Now the code appropriately rounds-up the size of all sockaddr* used by the routing sockets to the next sizeof(long) boundary. [Note: this bug was revealed by the previous bug fix after the introduction of sockaddr_dl for storing the RTA_GATEWAY information] * Some additional cleanup: e.g., return an error instead of XLOG_ASSERT if the interface name of the route to add is unknown, etc. The new fix is tested on {Free,Net,Open}BSD and MacOS X 10.3 Revision Changes Path 1.29 +133 -85 xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Thu Mar 31 19:36:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Mar 2005 11:37:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2VJb1AH020210 for ; Thu, 31 Mar 2005 11:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJb1I3025640 for ; Thu, 31 Mar 2005 11:37:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJb1dU019460; Thu, 31 Mar 2005 11:37:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJaldU019452 for ; Thu, 31 Mar 2005 11:36:47 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJalT1025634 for ; Thu, 31 Mar 2005 11:36:47 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2VJalev063093 for ; Thu, 31 Mar 2005 11:36:47 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2VJalcf063092 for xorp-cvs@icir.org; Thu, 31 Mar 2005 19:36:47 GMT (envelope-from pavlin) Date: Thu, 31 Mar 2005 19:36:47 GMT From: Pavlin Radoslavov Message-Id: <200503311936.j2VJalcf063092@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-31 19:36:47 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: * Add a new entry for FEA/MFEA * Replace "Release 1.1-RC" with "Release 1.1", and obfiscate the release date. Revision Changes Path 1.63 +4 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Thu Mar 31 19:42:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Mar 2005 11:43:00 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2VJh0cn021412 for ; Thu, 31 Mar 2005 11:43:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJh0jd025706 for ; Thu, 31 Mar 2005 11:43:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJh0dU019641; Thu, 31 Mar 2005 11:43:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJgNdU019626 for ; Thu, 31 Mar 2005 11:42:23 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJgNO6025698 for ; Thu, 31 Mar 2005 11:42:23 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2VJgNhC063188 for ; Thu, 31 Mar 2005 11:42:23 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2VJgNL2063187 for xorp-cvs@icir.org; Thu, 31 Mar 2005 19:42:23 GMT (envelope-from pavlin) Date: Thu, 31 Mar 2005 19:42:23 GMT From: Pavlin Radoslavov Message-Id: <200503311942.j2VJgNL2063187@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-03-31 19:42:23 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update the status for MacOS X: unicast routing works, multicast doesn't. Revision Changes Path 1.25 +5 -2 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Thu Mar 31 19:54:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Mar 2005 11:55:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j2VJt1X4023805 for ; Thu, 31 Mar 2005 11:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJt14r025862 for ; Thu, 31 Mar 2005 11:55:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJt1dU020003; Thu, 31 Mar 2005 11:55:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j2VJsgdU019991 for ; Thu, 31 Mar 2005 11:54:42 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j2VJsgfK025854 for ; Thu, 31 Mar 2005 11:54:42 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j2VJsgcc063398 for ; Thu, 31 Mar 2005 11:54:42 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j2VJsgxi063397 for xorp-cvs@icir.org; Thu, 31 Mar 2005 19:54:42 GMT (envelope-from pavlin) Date: Thu, 31 Mar 2005 19:54:42 GMT From: Pavlin Radoslavov Message-Id: <200503311954.j2VJsgxi063397@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-03-31 19:54:42 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: * Update the status for MacOS X, and mention NetBSD and OpenBSD * Clarify that "gmake" is not installed by default on all BSD-derived systems. Revision Changes Path 1.34 +7 -4 www/getting_started.html 1.10 +6 -3 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Apr 1 01:30:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 31 Mar 2005 17:31:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j311V1G4096600 for ; Thu, 31 Mar 2005 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j311V1Ir029535 for ; Thu, 31 Mar 2005 17:31:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j311V1nl002186; Thu, 31 Mar 2005 17:31:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j311Uknl002173 for ; Thu, 31 Mar 2005 17:30:46 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j311UkBu029533 for ; Thu, 31 Mar 2005 17:30:46 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j311Uk37065971 for ; Thu, 31 Mar 2005 17:30:46 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j311Ukod065970 for xorp-cvs@icir.org; Fri, 1 Apr 2005 01:30:46 GMT (envelope-from pavlin) Date: Fri, 1 Apr 2005 01:30:46 GMT From: Pavlin Radoslavov Message-Id: <200504010130.j311Ukod065970@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-01 01:30:46 UTC XORP CVS repository Modified files: fea test_ifconfig_rtsock.cc test_rawsock4.cc Log message: Fix a typo. Revision Changes Path 1.8 +2 -2 xorp/fea/test_ifconfig_rtsock.cc 1.12 +2 -2 xorp/fea/test_rawsock4.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:14 2005 Subject: No subject Fri Apr 1 09:38:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Apr 2005 01:39:02 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j319d2kp093639 for ; Fri, 1 Apr 2005 01:39:02 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j319d1wU034029 for ; Fri, 1 Apr 2005 01:39:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j319d1nl014217; Fri, 1 Apr 2005 01:39:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j319c9nl014192 for ; Fri, 1 Apr 2005 01:38:09 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j319c91U034022 for ; Fri, 1 Apr 2005 01:38:09 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j319c9Op069675 for ; Fri, 1 Apr 2005 01:38:09 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j319c9SS069674 for xorp-cvs@icir.org; Fri, 1 Apr 2005 09:38:09 GMT (envelope-from pavlin) Date: Fri, 1 Apr 2005 09:38:09 GMT From: Pavlin Radoslavov Message-Id: <200504010938.j319c9SS069674@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-01 09:38:09 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update the build notes for NetBSD-2.0-current, and deprecate NetBSD-1.6.1 Revision Changes Path 1.26 +10 -3 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Fri Apr 1 19:42:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 01 Apr 2005 11:43:08 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j31Jh8K7018519 for ; Fri, 1 Apr 2005 11:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j31Jh8Xj042243 for ; Fri, 1 Apr 2005 11:43:08 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j31Jh7nl007235; Fri, 1 Apr 2005 11:43:07 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j31JgPnl007160 for ; Fri, 1 Apr 2005 11:42:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j31JgPZt042230 for ; Fri, 1 Apr 2005 11:42:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j31JgOTB076400 for ; Fri, 1 Apr 2005 11:42:24 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j31JgOHC076399 for xorp-cvs@icir.org; Fri, 1 Apr 2005 19:42:24 GMT (envelope-from pavlin) Date: Fri, 1 Apr 2005 19:42:24 GMT From: Pavlin Radoslavov Message-Id: <200504011942.j31JgOHC076399@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-01 19:42:24 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Update the status for OpenBSD: now the internal tests succeed. Revision Changes Path 1.27 +2 -2 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Sat Apr 2 11:48:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Apr 2005 03:49:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j32Bn0Gs036237 for ; Sat, 2 Apr 2005 03:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32Bn0xF051967 for ; Sat, 2 Apr 2005 03:49:00 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32Bn0Ug003269; Sat, 2 Apr 2005 03:49:00 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32BmPUg003253 for ; Sat, 2 Apr 2005 03:48:25 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32BmPAd051959 for ; Sat, 2 Apr 2005 03:48:25 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j32BmPvF080936 for ; Sat, 2 Apr 2005 03:48:25 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j32BmP7C080935 for xorp-cvs@icir.org; Sat, 2 Apr 2005 11:48:25 GMT (envelope-from pavlin) Date: Sat, 2 Apr 2005 11:48:25 GMT From: Pavlin Radoslavov Message-Id: <200504021148.j32BmP7C080935@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fib2mrib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-02 11:48:25 UTC XORP CVS repository Modified files: fib2mrib fib2mrib_node.cc Log message: Bug fix: if we call replace_route() from within add_route(), first mark a copy of the route as "replaced". Otherwise, we will send the wrong XRL to the RIB, and the update may be rejected. Bug found by: Achmad Husni Thamrin Revision Changes Path 1.22 +3 -2 xorp/fib2mrib/fib2mrib_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Sat Apr 2 12:06:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Apr 2005 04:07:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j32C71od037301 for ; Sat, 2 Apr 2005 04:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32C71qw052162 for ; Sat, 2 Apr 2005 04:07:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32C71Ug003768; Sat, 2 Apr 2005 04:07:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32C67Ug003737 for ; Sat, 2 Apr 2005 04:06:07 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32C679W052158 for ; Sat, 2 Apr 2005 04:06:07 -0800 (PST) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j32C674Z081161 for ; Sat, 2 Apr 2005 04:06:07 -0800 (PST) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j32C67ik081160 for xorp-cvs@icir.org; Sat, 2 Apr 2005 12:06:07 GMT (envelope-from pavlin) Date: Sat, 2 Apr 2005 12:06:07 GMT From: Pavlin Radoslavov Message-Id: <200504021206.j32C67ik081160@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-02 12:06:07 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Update the fib2mrib release notes. Revision Changes Path 1.64 +2 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Sat Apr 2 16:29:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 02 Apr 2005 08:30:01 -0800 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j32GU1t8053116 for ; Sat, 2 Apr 2005 08:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32GU1IX055753 for ; Sat, 2 Apr 2005 08:30:01 -0800 (PST) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32GU1Ug010905; Sat, 2 Apr 2005 08:30:01 -0800 (PST) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j32GTqUg010897 for ; Sat, 2 Apr 2005 08:29:52 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j32GTqqv055745 for ; Sat, 2 Apr 2005 08:29:52 -0800 (PST) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j32GTq3Y084413 for ; Sat, 2 Apr 2005 08:29:52 -0800 (PST) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j32GTqiO084412 for xorp-cvs@icir.org; Sat, 2 Apr 2005 16:29:52 GMT (envelope-from mjh) Date: Sat, 2 Apr 2005 16:29:52 GMT From: Mark Handley Message-Id: <200504021629.j32GTqiO084412@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-04-02 16:29:52 UTC XORP CVS repository Modified files: bgp peer_route_pair.hh Log message: Add additional sanity checks to the peer liveness sanity check. Switch to using the TimeVal class and system_gettimeofday, as per Pavlin's suggestion. Approved by: Pavlin + Atanu Revision Changes Path 1.13 +17 -11 xorp/bgp/peer_route_pair.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Mon Apr 4 11:27:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 04 Apr 2005 04:28:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j34BS2q4099456 for ; Mon, 4 Apr 2005 04:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j34BS2LZ081295 for ; Mon, 4 Apr 2005 04:28:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j34BS1Vk009356; Mon, 4 Apr 2005 04:28:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j34BRLVk009348 for ; Mon, 4 Apr 2005 04:27:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j34BRLYK081288 for ; Mon, 4 Apr 2005 04:27:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j34BRL6X006094 for ; Mon, 4 Apr 2005 04:27:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j34BRL5K006093 for xorp-cvs@icir.org; Mon, 4 Apr 2005 11:27:21 GMT (envelope-from mjh) Date: Mon, 4 Apr 2005 11:27:21 GMT From: Mark Handley Message-Id: <200504041127.j34BRL5K006093@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-04-04 11:27:21 UTC XORP CVS repository Modified files: bgp route_table_dump.cc route_table_dump.hh Log message: Delay unplumbing a dump table until we're not processing a routing message. This should fix a bug that has caused tinderbox failures which running with STL debugging. Reviewed by: Pavlin, Bruce Revision Changes Path 1.36 +22 -7 xorp/bgp/route_table_dump.cc 1.18 +2 -1 xorp/bgp/route_table_dump.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 07:59:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 01:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35801aA073307 for ; Tue, 5 Apr 2005 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35801Qv096990 for ; Tue, 5 Apr 2005 01:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35801Vk021309; Tue, 5 Apr 2005 01:00:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j357xNVk021288 for ; Tue, 5 Apr 2005 00:59:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j357xNT4096963 for ; Tue, 5 Apr 2005 00:59:23 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j357xN08018688 for ; Tue, 5 Apr 2005 00:59:23 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j357xNrX018687 for xorp-cvs@icir.org; Tue, 5 Apr 2005 07:59:23 GMT (envelope-from mjh) Date: Tue, 5 Apr 2005 07:59:23 GMT From: Mark Handley Message-Id: <200504050759.j357xNrX018687@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD other/LiveCD/files Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: mjh@xorpc.icir.org 2005-04-05 07:59:23 UTC XORP CVS repository Modified files: LiveCD config LiveCD/files xorp-makeconfig.sh Log message: Switch to standard XORP copyright. Revision Changes Path 1.5 +2 -2 other/LiveCD/config 1.8 +21 -22 other/LiveCD/files/xorp-makeconfig.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 08:05:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 01:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35861tJ073701 for ; Tue, 5 Apr 2005 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35861oX097083 for ; Tue, 5 Apr 2005 01:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35861Vk021522; Tue, 5 Apr 2005 01:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3585gVk021510 for ; Tue, 5 Apr 2005 01:05:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3585fjF097077 for ; Tue, 5 Apr 2005 01:05:41 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3585fY4018814 for ; Tue, 5 Apr 2005 01:05:41 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3585fcI018813 for xorp-cvs@icir.org; Tue, 5 Apr 2005 08:05:41 GMT (envelope-from mjh) Date: Tue, 5 Apr 2005 08:05:41 GMT From: Mark Handley Message-Id: <200504050805.j3585fcI018813@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD other/LiveCD/files Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: mjh@xorpc.icir.org 2005-04-05 08:05:41 UTC XORP CVS repository Modified files: LiveCD livecd.sh LiveCD/files rc.live Log message: Re-assign copyright to ICSI. Revision Changes Path 1.3 +22 -9 other/LiveCD/files/rc.live 1.10 +8 -9 other/LiveCD/livecd.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 19:07:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 12:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35J81U9035780 for ; Tue, 5 Apr 2005 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35J81Zl005867 for ; Tue, 5 Apr 2005 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35J81Vk013308; Tue, 5 Apr 2005 12:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35J7hVk013293 for ; Tue, 5 Apr 2005 12:07:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35J7h1g005860 for ; Tue, 5 Apr 2005 12:07:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35J7hPu027155 for ; Tue, 5 Apr 2005 12:07:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35J7hEM027154 for xorp-cvs@icir.org; Tue, 5 Apr 2005 19:07:43 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 19:07:43 GMT From: Pavlin Radoslavov Message-Id: <200504051907.j35J7hEM027154@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 19:07:43 UTC XORP CVS repository Modified files: docs/design_arch design_arch.tex Log message: Prepare the document for Release-1.1 Revision Changes Path 1.12 +22 -17 xorp/docs/design_arch/design_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 20:31:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 13:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35KW1w3056258 for ; Tue, 5 Apr 2005 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35KW1Dj006908 for ; Tue, 5 Apr 2005 13:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35KW1Vk016161; Tue, 5 Apr 2005 13:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35KVxVk016152 for ; Tue, 5 Apr 2005 13:31:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35KVxGg006906 for ; Tue, 5 Apr 2005 13:31:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35KVxtk028051 for ; Tue, 5 Apr 2005 13:31:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35KVx8m028050 for xorp-cvs@icir.org; Tue, 5 Apr 2005 20:31:59 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 20:31:59 GMT From: Pavlin Radoslavov Message-Id: <200504052031.j35KVx8m028050@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 20:31:59 UTC XORP CVS repository Modified files: docs/design_arch error_handling.tex Log message: Update the version and the date. Revision Changes Path 1.31 +3 -3 xorp/docs/design_arch/error_handling.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 20:41:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 13:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35Kg1Pb058725 for ; Tue, 5 Apr 2005 13:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35Kg1wD006979 for ; Tue, 5 Apr 2005 13:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35Kg1Vk016471; Tue, 5 Apr 2005 13:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35KfxVk016465 for ; Tue, 5 Apr 2005 13:41:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35Kfxlu006977 for ; Tue, 5 Apr 2005 13:41:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35Kfx0x028251 for ; Tue, 5 Apr 2005 13:41:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35KfxFZ028250 for xorp-cvs@icir.org; Tue, 5 Apr 2005 20:41:59 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 20:41:59 GMT From: Pavlin Radoslavov Message-Id: <200504052041.j35KfxFZ028250@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea/figs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 20:41:59 UTC XORP CVS repository Modified files: docs/fea/figs xrl_ifs.eps xrl_ifs.fig Log message: Update the file names for the raw packets XRL interface. Revision Changes Path 1.5 +86 -86 xorp/docs/fea/figs/xrl_ifs.eps 1.3 +22 -26 xorp/docs/fea/figs/xrl_ifs.fig _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 22:21:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 15:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35MM1KT082749 for ; Tue, 5 Apr 2005 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35MM1tO007963 for ; Tue, 5 Apr 2005 15:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35MM1Vk019377; Tue, 5 Apr 2005 15:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35MLgVk019364 for ; Tue, 5 Apr 2005 15:21:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35MLglD007957 for ; Tue, 5 Apr 2005 15:21:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35MLfxM029108 for ; Tue, 5 Apr 2005 15:21:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35MLflO029107 for xorp-cvs@icir.org; Tue, 5 Apr 2005 22:21:41 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 22:21:41 GMT From: Pavlin Radoslavov Message-Id: <200504052221.j35MLflO029107@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 22:21:41 UTC XORP CVS repository Modified files: docs/fea fea.tex Log message: Prepare the document for the next 1.1 release: * Update the raw sockets status * Update the Click support status * Update the document version and the date Revision Changes Path 1.12 +20 -15 xorp/docs/fea/fea.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 22:26:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 15:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35MR1BS083937 for ; Tue, 5 Apr 2005 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35MR1Ik008016 for ; Tue, 5 Apr 2005 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35MR1Vk019524; Tue, 5 Apr 2005 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35MQnVk019514 for ; Tue, 5 Apr 2005 15:26:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35MQmsu008013 for ; Tue, 5 Apr 2005 15:26:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35MQmxX029206 for ; Tue, 5 Apr 2005 15:26:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35MQmBu029205 for xorp-cvs@icir.org; Tue, 5 Apr 2005 22:26:48 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 22:26:48 GMT From: Pavlin Radoslavov Message-Id: <200504052226.j35MQmBu029205@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 22:26:48 UTC XORP CVS repository Modified files: docs/libxipc libxipc_overview.tex xrl_interfaces.tex Log message: Prepare the document for a release: update the version to 1.1 and the date. Revision Changes Path 1.11 +2 -2 xorp/docs/libxipc/libxipc_overview.tex 1.13 +2 -2 xorp/docs/libxipc/xrl_interfaces.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Tue Apr 5 23:31:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 16:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j35NW1Y2099562 for ; Tue, 5 Apr 2005 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35NW1GO008678 for ; Tue, 5 Apr 2005 16:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35NW1Vk021330; Tue, 5 Apr 2005 16:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j35NVUVk021305 for ; Tue, 5 Apr 2005 16:31:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j35NVUSN008673 for ; Tue, 5 Apr 2005 16:31:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j35NVUs7029715 for ; Tue, 5 Apr 2005 16:31:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j35NVUUa029714 for xorp-cvs@icir.org; Tue, 5 Apr 2005 23:31:30 GMT (envelope-from pavlin) Date: Tue, 5 Apr 2005 23:31:30 GMT From: Pavlin Radoslavov Message-Id: <200504052331.j35NVUUa029714@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-05 23:31:29 UTC XORP CVS repository Modified files: docs/libxorp libxorp_overview.tex Log message: Updated to match XORP version 1.0 release code: added information for buffered_asyncio.hh, clock.hh, popen.hh, profile.hh and run_command.hh. Revision Changes Path 1.16 +85 -12 xorp/docs/libxorp/libxorp_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 00:04:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 05 Apr 2005 17:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36051hv007396 for ; Tue, 5 Apr 2005 17:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36051pe008989 for ; Tue, 5 Apr 2005 17:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36051Vk022455; Tue, 5 Apr 2005 17:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3604bVk022442 for ; Tue, 5 Apr 2005 17:04:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3604bDV008977 for ; Tue, 5 Apr 2005 17:04:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3604bDO029959 for ; Tue, 5 Apr 2005 17:04:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3604bgo029958 for xorp-cvs@icir.org; Wed, 6 Apr 2005 00:04:37 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 00:04:37 GMT From: Pavlin Radoslavov Message-Id: <200504060004.j3604bgo029958@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mfea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 00:04:37 UTC XORP CVS repository Modified files: docs/mfea mfea_arch.tex Log message: Document updated to match the source code in Release-1.1. Revision Changes Path 1.15 +22 -20 xorp/docs/mfea/mfea_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 16:54:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 09:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36Gt2Hw025346 for ; Wed, 6 Apr 2005 09:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Gt2SZ021794 for ; Wed, 6 Apr 2005 09:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Gt1Vk021916; Wed, 6 Apr 2005 09:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Gs1Vk021879 for ; Wed, 6 Apr 2005 09:54:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Gs1Lf021780 for ; Wed, 6 Apr 2005 09:54:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36Gs1o4039291 for ; Wed, 6 Apr 2005 09:54:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36Gs1Qi039290 for xorp-cvs@icir.org; Wed, 6 Apr 2005 16:54:01 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 16:54:01 GMT From: Pavlin Radoslavov Message-Id: <200504061654.j36Gs1Qi039290@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 16:54:01 UTC XORP CVS repository Modified files: docs/mld6igmp mld6igmp_arch.tex Log message: Bump-up the version to 1.1 and the date. Revision Changes Path 1.11 +14 -12 xorp/docs/mld6igmp/mld6igmp_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 21:02:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:03:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36L33ep076822 for ; Wed, 6 Apr 2005 14:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36L33UJ024285 for ; Wed, 6 Apr 2005 14:03:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36L32Vk001150; Wed, 6 Apr 2005 14:03:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36L2bVk001128 for ; Wed, 6 Apr 2005 14:02:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36L2aAd024283 for ; Wed, 6 Apr 2005 14:02:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36L2aUY041088 for ; Wed, 6 Apr 2005 14:02:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36L2al7041087 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:02:36 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:02:36 GMT From: Pavlin Radoslavov Message-Id: <200504062102.j36L2al7041087@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/multicast Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:02:36 UTC XORP CVS repository Modified files: docs/multicast multicast_arch.tex Log message: Update the document for release 1.1 Revision Changes Path 1.12 +21 -17 xorp/docs/multicast/multicast_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 21:09:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36LA1fS078227 for ; Wed, 6 Apr 2005 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LA1sL024341 for ; Wed, 6 Apr 2005 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LA1Vk001398; Wed, 6 Apr 2005 14:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36L9oVk001387 for ; Wed, 6 Apr 2005 14:09:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36L9oiB024334 for ; Wed, 6 Apr 2005 14:09:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36L9oNe041173 for ; Wed, 6 Apr 2005 14:09:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36L9o9g041172 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:09:50 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:09:50 GMT From: Pavlin Radoslavov Message-Id: <200504062109.j36L9o9g041172@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:09:50 UTC XORP CVS repository Modified files: docs/pim pim_arch.tex Log message: Prepare the document for release 1.1 Revision Changes Path 1.13 +21 -19 xorp/docs/pim/pim_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 21:18:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:19:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36LJ5AK080023 for ; Wed, 6 Apr 2005 14:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LJ5SA024436 for ; Wed, 6 Apr 2005 14:19:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LJ5Vk001827; Wed, 6 Apr 2005 14:19:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LIQVk001774 for ; Wed, 6 Apr 2005 14:18:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LIQHN024426 for ; Wed, 6 Apr 2005 14:18:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36LIQcm041314 for ; Wed, 6 Apr 2005 14:18:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36LIQT8041313 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:18:26 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:18:26 GMT From: Pavlin Radoslavov Message-Id: <200504062118.j36LIQT8041313@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:18:26 UTC XORP CVS repository Modified files: docs/libxorp libxorp_overview.tex Log message: * Add missing modification entry for release 1.1 * Reverse-back to the original ordering of the modification history: older entries first. Revision Changes Path 1.17 +11 -9 xorp/docs/libxorp/libxorp_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 21:22:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36LN2wl080797 for ; Wed, 6 Apr 2005 14:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LN2UD024484 for ; Wed, 6 Apr 2005 14:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LN1Vk001973; Wed, 6 Apr 2005 14:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LMKVk001951 for ; Wed, 6 Apr 2005 14:22:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LMKN1024476 for ; Wed, 6 Apr 2005 14:22:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36LMKEk041411 for ; Wed, 6 Apr 2005 14:22:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36LMKUd041406 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:22:20 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:22:20 GMT From: Pavlin Radoslavov Message-Id: <200504062122.j36LMKUd041406@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/pim_testsuite Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:22:20 UTC XORP CVS repository Modified files: docs/pim_testsuite pim_testsuite.tex Log message: Prepare the document for release 1.1 Revision Changes Path 1.35 +7 -5 xorp/docs/pim_testsuite/pim_testsuite.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:15 2005 Subject: No subject Wed Apr 6 21:23:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36LO2UB081006 for ; Wed, 6 Apr 2005 14:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LO20d024496 for ; Wed, 6 Apr 2005 14:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LO1Vk002005; Wed, 6 Apr 2005 14:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LN4Vk001984 for ; Wed, 6 Apr 2005 14:23:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LN43l024486 for ; Wed, 6 Apr 2005 14:23:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36LN40x041548 for ; Wed, 6 Apr 2005 14:23:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36LN4cI041547 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:23:04 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:23:04 GMT From: Pavlin Radoslavov Message-Id: <200504062123.j36LN4cI041547@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/design_arch xorp/docs/mfea xorp/docs/mld6igmp xorp/docs/multicast xorp/docs/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:23:04 UTC XORP CVS repository Modified files: docs/design_arch design_arch.tex docs/mfea mfea_arch.tex docs/mld6igmp mld6igmp_arch.tex docs/multicast multicast_arch.tex docs/pim pim_arch.tex Log message: Reverse-back to the original ordering of the modification history: older entries first. Revision Changes Path 1.13 +11 -11 xorp/docs/design_arch/design_arch.tex 1.16 +13 -13 xorp/docs/mfea/mfea_arch.tex 1.12 +8 -8 xorp/docs/mld6igmp/mld6igmp_arch.tex 1.13 +15 -15 xorp/docs/multicast/multicast_arch.tex 1.14 +12 -12 xorp/docs/pim/pim_arch.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Wed Apr 6 21:40:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36Lf1gA084503 for ; Wed, 6 Apr 2005 14:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Lf0HD024745 for ; Wed, 6 Apr 2005 14:41:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Lf0Vk002671; Wed, 6 Apr 2005 14:41:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LejVk002655 for ; Wed, 6 Apr 2005 14:40:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36LejwC024742 for ; Wed, 6 Apr 2005 14:40:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36LejrP041704 for ; Wed, 6 Apr 2005 14:40:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36Lejlg041703 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:40:45 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:40:45 GMT From: Pavlin Radoslavov Message-Id: <200504062140.j36Lejlg041703@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:40:44 UTC XORP CVS repository Modified files: docs/rib rib.tex Log message: * Update the specification for for the add_route, replace_route, and delete_route XRLs. * Add the specification for the add_interface_route and replace_interface_route XRLs. * Prepare the document date and version for release 1.1. Revision Changes Path 1.15 +52 -15 xorp/docs/rib/rib.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Wed Apr 6 21:44:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36Lj1sv085302 for ; Wed, 6 Apr 2005 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Lj17D024818 for ; Wed, 6 Apr 2005 14:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Lj1Vk002838; Wed, 6 Apr 2005 14:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Li4Vk002802 for ; Wed, 6 Apr 2005 14:44:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Li45g024792 for ; Wed, 6 Apr 2005 14:44:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36Li4Jp041762 for ; Wed, 6 Apr 2005 14:44:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36Li3q3041761 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:44:03 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:44:03 GMT From: Pavlin Radoslavov Message-Id: <200504062144.j36Li3q3041761@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/snmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:44:03 UTC XORP CVS repository Modified files: docs/snmp snmp_overview.tex Log message: Prepare the document for release 1.1 Revision Changes Path 1.19 +10 -4 xorp/docs/snmp/snmp_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Wed Apr 6 21:51:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 14:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36Lq1N8086781 for ; Wed, 6 Apr 2005 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Lq1ii024997 for ; Wed, 6 Apr 2005 14:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Lq1SO003156; Wed, 6 Apr 2005 14:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36LpnSO003147 for ; Wed, 6 Apr 2005 14:51:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Lpn1p024995 for ; Wed, 6 Apr 2005 14:51:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36LpnWv041861 for ; Wed, 6 Apr 2005 14:51:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36Lpn3C041860 for xorp-cvs@icir.org; Wed, 6 Apr 2005 21:51:49 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 21:51:49 GMT From: Pavlin Radoslavov Message-Id: <200504062151.j36Lpn3C041860@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 21:51:49 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: Prepare the document for release 1.1: * Add minor clarifications for the %module command used in the operational mode templates. * Update the version and the date. Revision Changes Path 1.28 +8 -6 xorp/docs/rtrmgr/rtrmgr.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Wed Apr 6 22:34:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 15:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36MZ1pt097126 for ; Wed, 6 Apr 2005 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36MZ1Dm025433 for ; Wed, 6 Apr 2005 15:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36MZ1SO004804; Wed, 6 Apr 2005 15:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36MYNSO004776 for ; Wed, 6 Apr 2005 15:34:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36MYMxE025426 for ; Wed, 6 Apr 2005 15:34:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36MYMir042623 for ; Wed, 6 Apr 2005 15:34:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36MYMKD042622 for xorp-cvs@icir.org; Wed, 6 Apr 2005 22:34:22 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 22:34:22 GMT From: Pavlin Radoslavov Message-Id: <200504062234.j36MYMKD042622@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea xorp/docs/libxipc xorp/docs/libxorp xorp/docs/mfea xorp/docs/mld6igmp xorp/docs/multicast xorp/docs/pim xorp/docs/pim_testsuite xorp/docs/rib xorp/docs/rtrmgr ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 22:34:22 UTC XORP CVS repository Modified files: docs/bgp bgp.tex docs/design_arch design_arch.tex error_handling.tex docs/fea fea.tex docs/libxipc libxipc_overview.tex xrl_interfaces.tex docs/libxorp libxorp_overview.tex docs/mfea mfea_arch.tex docs/mld6igmp mld6igmp_arch.tex docs/multicast multicast_arch.tex docs/pim pim_arch.tex docs/pim_testsuite pim_testsuite.tex docs/rib rib.tex docs/rtrmgr config_guide.tex rtrmgr.tex xorpsh_userguide.tex docs/snmp snmp_overview.tex docs/test_harness test_harness.tex docs/user_manual user_manual.tex docs/xorpdev_101 xorpdev_101.tex Log message: Add http://www.xorp.org/ to the front page. Approved by: Atanu Revision Changes Path 1.11 +1 -0 xorp/docs/bgp/bgp.tex 1.14 +2 -1 xorp/docs/design_arch/design_arch.tex 1.32 +2 -1 xorp/docs/design_arch/error_handling.tex 1.13 +2 -1 xorp/docs/fea/fea.tex 1.12 +1 -0 xorp/docs/libxipc/libxipc_overview.tex 1.14 +1 -0 xorp/docs/libxipc/xrl_interfaces.tex 1.18 +2 -1 xorp/docs/libxorp/libxorp_overview.tex 1.17 +2 -1 xorp/docs/mfea/mfea_arch.tex 1.13 +2 -1 xorp/docs/mld6igmp/mld6igmp_arch.tex 1.14 +2 -1 xorp/docs/multicast/multicast_arch.tex 1.15 +2 -1 xorp/docs/pim/pim_arch.tex 1.36 +2 -1 xorp/docs/pim_testsuite/pim_testsuite.tex 1.16 +2 -1 xorp/docs/rib/rib.tex 1.8 +2 -1 xorp/docs/rtrmgr/config_guide.tex 1.29 +2 -1 xorp/docs/rtrmgr/rtrmgr.tex 1.15 +2 -1 xorp/docs/rtrmgr/xorpsh_userguide.tex 1.20 +2 -1 xorp/docs/snmp/snmp_overview.tex 1.25 +1 -0 xorp/docs/test_harness/test_harness.tex 1.8 +2 -2 xorp/docs/user_manual/user_manual.tex 1.6 +2 -2 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Wed Apr 6 23:42:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 16:43:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j36Nh5rU014014 for ; Wed, 6 Apr 2005 16:43:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Nh5oE026086 for ; Wed, 6 Apr 2005 16:43:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Nh4SO007407; Wed, 6 Apr 2005 16:43:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j36Ng7SO007364 for ; Wed, 6 Apr 2005 16:42:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j36Ng6XR026068 for ; Wed, 6 Apr 2005 16:42:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j36Ng6aw043115 for ; Wed, 6 Apr 2005 16:42:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j36Ng6si043114 for xorp-cvs@icir.org; Wed, 6 Apr 2005 23:42:06 GMT (envelope-from pavlin) Date: Wed, 6 Apr 2005 23:42:06 GMT From: Pavlin Radoslavov Message-Id: <200504062342.j36Ng6si043114@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev_101 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-06 23:42:06 UTC XORP CVS repository Modified files: docs/xorpdev_101 xorpdev_101.tex Log message: Document updated to match version 1.1 Revision Changes Path 1.7 +213 -144 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 00:31:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 17:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j370W1El026070 for ; Wed, 6 Apr 2005 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370W1OP026546 for ; Wed, 6 Apr 2005 17:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370W1SO009072; Wed, 6 Apr 2005 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370VnSO009062 for ; Wed, 6 Apr 2005 17:31:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370Vm6P026544 for ; Wed, 6 Apr 2005 17:31:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j370VmTP043596 for ; Wed, 6 Apr 2005 17:31:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j370Vmue043595 for xorp-cvs@icir.org; Thu, 7 Apr 2005 00:31:48 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 00:31:48 GMT From: Pavlin Radoslavov Message-Id: <200504070031.j370Vmue043595@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 00:31:48 UTC XORP CVS repository Modified files: docs/rtrmgr .cvsignore Makefile.am Makefile.in Removed files: docs/rtrmgr config_guide.tex xorpsh_userguide.tex Log message: Remove the configuration guide and the xorpsh user guide, because the text has been moved already to the XORP user manual (in the docs/user_manual directory). Revision Changes Path 1.4 +0 -4 xorp/docs/rtrmgr/.cvsignore 1.4 +2 -7 xorp/docs/rtrmgr/Makefile.am 1.21 +1 -6 xorp/docs/rtrmgr/Makefile.in 1.9 +0 -778 xorp/docs/rtrmgr/config_guide.tex (dead) 1.16 +0 -736 xorp/docs/rtrmgr/xorpsh_userguide.tex (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 00:51:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 17:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j370q10M031125 for ; Wed, 6 Apr 2005 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370q1CU026752 for ; Wed, 6 Apr 2005 17:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370q1SO009672; Wed, 6 Apr 2005 17:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370pMSO009632 for ; Wed, 6 Apr 2005 17:51:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370pLHM026748 for ; Wed, 6 Apr 2005 17:51:21 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j370pLBE043798 for ; Wed, 6 Apr 2005 17:51:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j370pLJP043797 for xorp-cvs@icir.org; Thu, 7 Apr 2005 00:51:21 GMT (envelope-from atanu) Date: Thu, 7 Apr 2005 00:51:21 GMT From: Atanu Ghosh Message-Id: <200504070051.j370pLJP043797@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/test_harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-07 00:51:21 UTC XORP CVS repository Modified files: docs/test_harness test_harness.tex Log message: Bump release number and date. Revision Changes Path 1.26 +2 -2 xorp/docs/test_harness/test_harness.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 00:55:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 17:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j370u1Wi032126 for ; Wed, 6 Apr 2005 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370u1DT026800 for ; Wed, 6 Apr 2005 17:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370u0SO009889; Wed, 6 Apr 2005 17:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j370taSO009866 for ; Wed, 6 Apr 2005 17:55:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j370tZfl026798 for ; Wed, 6 Apr 2005 17:55:35 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j370tZSm043885 for ; Wed, 6 Apr 2005 17:55:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j370tZAC043884 for xorp-cvs@icir.org; Thu, 7 Apr 2005 00:55:35 GMT (envelope-from atanu) Date: Thu, 7 Apr 2005 00:55:35 GMT From: Atanu Ghosh Message-Id: <200504070055.j370tZAC043884@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-07 00:55:35 UTC XORP CVS repository Modified files: docs/bgp bgp.tex Log message: Bump release number and date. Revision Changes Path 1.12 +2 -2 xorp/docs/bgp/bgp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 01:22:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 18:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j371N09P048882 for ; Wed, 6 Apr 2005 18:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j371N0n8027055 for ; Wed, 6 Apr 2005 18:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j371N0SO010561; Wed, 6 Apr 2005 18:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j371MSSO010544 for ; Wed, 6 Apr 2005 18:22:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j371MSr2027049 for ; Wed, 6 Apr 2005 18:22:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j371MSZD044220 for ; Wed, 6 Apr 2005 18:22:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j371MSDE044219 for xorp-cvs@icir.org; Thu, 7 Apr 2005 01:22:28 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 01:22:28 GMT From: Pavlin Radoslavov Message-Id: <200504070122.j371MSDE044219@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 01:22:28 UTC XORP CVS repository Modified files: docs/bgp bgp.tex Log message: Update the date inside the document text. Revision Changes Path 1.13 +1 -1 xorp/docs/bgp/bgp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 02:05:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 19:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3726165059281 for ; Wed, 6 Apr 2005 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37261cq027485 for ; Wed, 6 Apr 2005 19:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37261SO011660; Wed, 6 Apr 2005 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3725QSO011645 for ; Wed, 6 Apr 2005 19:05:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3725Psg027482 for ; Wed, 6 Apr 2005 19:05:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3725PHf044557 for ; Wed, 6 Apr 2005 19:05:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3725Pgv044556 for xorp-cvs@icir.org; Thu, 7 Apr 2005 02:05:25 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 02:05:25 GMT From: Pavlin Radoslavov Message-Id: <200504070205.j3725Pgv044556@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 02:05:25 UTC XORP CVS repository Modified files: docs/user_manual rip.tex Log message: * Add a header with the CVS XORP ID. * Add a note that the current "export" mechanism is temporary, and will be replaced by the more generic policy mechanism in the next release. Revision Changes Path 1.7 +9 -0 xorp/docs/user_manual/rip.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 02:13:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 19:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j372E1uO061220 for ; Wed, 6 Apr 2005 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j372E1br027548 for ; Wed, 6 Apr 2005 19:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j372E1SO011781; Wed, 6 Apr 2005 19:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j372DYSO011774 for ; Wed, 6 Apr 2005 19:13:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j372DYOb027544 for ; Wed, 6 Apr 2005 19:13:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j372DYrI044714 for ; Wed, 6 Apr 2005 19:13:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j372DYgq044713 for xorp-cvs@icir.org; Thu, 7 Apr 2005 02:13:34 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 02:13:34 GMT From: Pavlin Radoslavov Message-Id: <200504070213.j372DYgq044713@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-07 02:13:34 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Add a comment that the current mechanism for originating routes in RIB is temporary, and will be replaced with the more generic policy mechanism in the next release. Revision Changes Path 1.35 +9 -1 www/getting_started.html 1.11 +8 -0 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:04:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j37351wV049603 for ; Wed, 6 Apr 2005 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37351li028045 for ; Wed, 6 Apr 2005 20:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37351SO013012; Wed, 6 Apr 2005 20:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3734GSO012993 for ; Wed, 6 Apr 2005 20:04:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3734GBc028034 for ; Wed, 6 Apr 2005 20:04:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3734Gob045089 for ; Wed, 6 Apr 2005 20:04:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3734FlJ045088 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:04:15 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:04:15 GMT From: Pavlin Radoslavov Message-Id: <200504070304.j3734FlJ045088@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:04:15 UTC XORP CVS repository Modified files: docs/user_manual cli_intro.tex Log message: * Add a header with the CVS XORP ID. * Update the formatting of the examples. * Minor other edits and updates. Revision Changes Path 1.4 +16 -23 xorp/docs/user_manual/cli_intro.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:05:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j37361Ao049891 for ; Wed, 6 Apr 2005 20:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37361PR028071 for ; Wed, 6 Apr 2005 20:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37361SO013042; Wed, 6 Apr 2005 20:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3735XSO013026 for ; Wed, 6 Apr 2005 20:05:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3735XRm028069 for ; Wed, 6 Apr 2005 20:05:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3735XRD045192 for ; Wed, 6 Apr 2005 20:05:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3735XpM045191 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:05:33 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:05:33 GMT From: Pavlin Radoslavov Message-Id: <200504070305.j3735XpM045191@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:05:33 UTC XORP CVS repository Modified files: docs/user_manual glossary.tex Log message: * Add a header with the CVS XORP ID. * Minor editorial nits. Revision Changes Path 1.3 +71 -37 xorp/docs/user_manual/glossary.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:06:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j37371Sk050093 for ; Wed, 6 Apr 2005 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37371RU028087 for ; Wed, 6 Apr 2005 20:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37371SO013081; Wed, 6 Apr 2005 20:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3736mSO013068 for ; Wed, 6 Apr 2005 20:06:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3736mQ9028084 for ; Wed, 6 Apr 2005 20:06:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3736lOP045235 for ; Wed, 6 Apr 2005 20:06:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3736lV7045234 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:06:47 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:06:47 GMT From: Pavlin Radoslavov Message-Id: <200504070306.j3736lV7045234@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:06:47 UTC XORP CVS repository Modified files: docs/user_manual unicast_routing.tex Log message: * Add a header with the CVS XORP ID. * Comment-out the text that describes the route redistribution, and add a note that the route redistribution will be supported in the next release when we have the generic routing policy ready. Revision Changes Path 1.5 +24 -15 xorp/docs/user_manual/unicast_routing.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:07:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j37381cP050292 for ; Wed, 6 Apr 2005 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37380w4028099 for ; Wed, 6 Apr 2005 20:08:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37380SO013114; Wed, 6 Apr 2005 20:08:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3737XSO013100 for ; Wed, 6 Apr 2005 20:07:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3737XCq028093 for ; Wed, 6 Apr 2005 20:07:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3737XLs045302 for ; Wed, 6 Apr 2005 20:07:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3737Xqp045301 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:07:33 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:07:33 GMT From: Pavlin Radoslavov Message-Id: <200504070307.j3737Xqp045301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:07:32 UTC XORP CVS repository Modified files: docs/user_manual user_manual.tex Log message: * Update the version to 1.1 and the date. * Nits. Revision Changes Path 1.9 +9 -7 xorp/docs/user_manual/user_manual.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:09:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373A1tF050690 for ; Wed, 6 Apr 2005 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373A1CX028117 for ; Wed, 6 Apr 2005 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373A0SO013162; Wed, 6 Apr 2005 20:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3739DSO013141 for ; Wed, 6 Apr 2005 20:09:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3739DEM028110 for ; Wed, 6 Apr 2005 20:09:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3739DJL045392 for ; Wed, 6 Apr 2005 20:09:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3739DEL045391 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:09:13 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:09:13 GMT From: Pavlin Radoslavov Message-Id: <200504070309.j3739DEL045391@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:09:12 UTC XORP CVS repository Modified files: docs/user_manual bgp.tex config_overview.tex diagnostics.tex forwarding.tex igmp.tex interfaces.tex multicast_routing.tex multicast_topology.tex pimsm.tex preface.tex snmp.tex static_routes.tex users.tex Log message: Add a header with the CVS XORP ID. Revision Changes Path 1.10 +4 -0 xorp/docs/user_manual/bgp.tex 1.6 +4 -0 xorp/docs/user_manual/config_overview.tex 1.2 +5 -1 xorp/docs/user_manual/diagnostics.tex 1.5 +4 -0 xorp/docs/user_manual/forwarding.tex 1.9 +4 -0 xorp/docs/user_manual/igmp.tex 1.6 +4 -0 xorp/docs/user_manual/interfaces.tex 1.4 +4 -0 xorp/docs/user_manual/multicast_routing.tex 1.3 +4 -0 xorp/docs/user_manual/multicast_topology.tex 1.10 +4 -0 xorp/docs/user_manual/pimsm.tex 1.3 +9 -5 xorp/docs/user_manual/preface.tex 1.2 +4 -0 xorp/docs/user_manual/snmp.tex 1.8 +4 -0 xorp/docs/user_manual/static_routes.tex 1.2 +4 -0 xorp/docs/user_manual/users.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:28:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373T13Z054403 for ; Wed, 6 Apr 2005 20:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373T0Wb028325 for ; Wed, 6 Apr 2005 20:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373T0SO013653; Wed, 6 Apr 2005 20:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373S6SO013623 for ; Wed, 6 Apr 2005 20:28:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373S6Kl028313 for ; Wed, 6 Apr 2005 20:28:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j373S6S5045534 for ; Wed, 6 Apr 2005 20:28:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j373S6SU045533 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:28:06 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:28:06 GMT From: Pavlin Radoslavov Message-Id: <200504070328.j373S6SU045533@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:28:06 UTC XORP CVS repository Modified files: docs/user_manual config_overview.tex Log message: * Remove in the static routes section the reference how to redistribute the static routes through RIP, because this is RIP-specific configuration. * Add a comment that the current RIB "export" mechanism will be replaced with the policy mechanism in the next release. * Minor editorial nits, formatting, etc. Revision Changes Path 1.7 +30 -18 xorp/docs/user_manual/config_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:30:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373V0IF054836 for ; Wed, 6 Apr 2005 20:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373V0Yf028360 for ; Wed, 6 Apr 2005 20:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373V0SO013708; Wed, 6 Apr 2005 20:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373UiSO013701 for ; Wed, 6 Apr 2005 20:30:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373UiWn028358 for ; Wed, 6 Apr 2005 20:30:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j373UiQO045625 for ; Wed, 6 Apr 2005 20:30:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j373UidM045624 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:30:44 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:30:44 GMT From: Pavlin Radoslavov Message-Id: <200504070330.j373UidM045624@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-07 03:30:44 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: * Remove in the static routes section the reference how to redistribute the static routes through RIP, because this is RIP-specific configuration. * Move the comment about the current RIP "export" mechanism from the static routes section to the RIP section. Revision Changes Path 1.36 +9 -12 www/getting_started.html 1.12 +8 -11 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:16 2005 Subject: No subject Thu Apr 7 03:43:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373i1Ta057407 for ; Wed, 6 Apr 2005 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373i1NN028469 for ; Wed, 6 Apr 2005 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373i1SO014044; Wed, 6 Apr 2005 20:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373haSO014032 for ; Wed, 6 Apr 2005 20:43:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373haq6028463 for ; Wed, 6 Apr 2005 20:43:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j373hajk045739 for ; Wed, 6 Apr 2005 20:43:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j373ha0q045738 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:43:36 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:43:36 GMT From: Pavlin Radoslavov Message-Id: <200504070343.j373ha0q045738@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:43:36 UTC XORP CVS repository Modified files: docs/user_manual interfaces.tex Log message: Minor nits. Revision Changes Path 1.7 +11 -9 xorp/docs/user_manual/interfaces.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 03:51:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373q1x1058987 for ; Wed, 6 Apr 2005 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373q1Ka028570 for ; Wed, 6 Apr 2005 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373q1SO014245; Wed, 6 Apr 2005 20:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373pNSO014228 for ; Wed, 6 Apr 2005 20:51:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373pNaW028564 for ; Wed, 6 Apr 2005 20:51:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j373pNjh045827 for ; Wed, 6 Apr 2005 20:51:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j373pNGf045826 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:51:23 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:51:23 GMT From: Pavlin Radoslavov Message-Id: <200504070351.j373pNGf045826@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:51:23 UTC XORP CVS repository Modified files: docs/user_manual forwarding.tex Log message: A nit. Revision Changes Path 1.6 +2 -2 xorp/docs/user_manual/forwarding.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 03:57:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 20:58:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j373w0nA060236 for ; Wed, 6 Apr 2005 20:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373w0YD028643 for ; Wed, 6 Apr 2005 20:58:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373w0SO014393; Wed, 6 Apr 2005 20:58:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j373vGSO014367 for ; Wed, 6 Apr 2005 20:57:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j373vGm5028635 for ; Wed, 6 Apr 2005 20:57:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j373vG29045908 for ; Wed, 6 Apr 2005 20:57:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j373vGsX045907 for xorp-cvs@icir.org; Thu, 7 Apr 2005 03:57:16 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 03:57:16 GMT From: Pavlin Radoslavov Message-Id: <200504070357.j373vGsX045907@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 03:57:16 UTC XORP CVS repository Modified files: docs/user_manual unicast_routing.tex Log message: Minor nits. Revision Changes Path 1.6 +7 -7 xorp/docs/user_manual/unicast_routing.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 04:09:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 21:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j374A18T062636 for ; Wed, 6 Apr 2005 21:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j374A1NQ028828 for ; Wed, 6 Apr 2005 21:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j374A1SO014794; Wed, 6 Apr 2005 21:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3749TSO014776 for ; Wed, 6 Apr 2005 21:09:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3749Tog028820 for ; Wed, 6 Apr 2005 21:09:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3749Tvt046080 for ; Wed, 6 Apr 2005 21:09:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3749ThL046079 for xorp-cvs@icir.org; Thu, 7 Apr 2005 04:09:29 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 04:09:29 GMT From: Pavlin Radoslavov Message-Id: <200504070409.j3749ThL046079@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-07 04:09:29 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Change the "nexthop" keyword in static routes config to "next-hop" to reflect the most recent configuration syntax. Revision Changes Path 1.37 +5 -5 www/getting_started.html 1.13 +4 -4 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 04:49:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 21:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j374o1ua070624 for ; Wed, 6 Apr 2005 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j374o1pr029259 for ; Wed, 6 Apr 2005 21:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j374o1SO015799; Wed, 6 Apr 2005 21:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j374nQSO015787 for ; Wed, 6 Apr 2005 21:49:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j374nQqu029247 for ; Wed, 6 Apr 2005 21:49:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j374nQEN046466 for ; Wed, 6 Apr 2005 21:49:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j374nQJ6046465 for xorp-cvs@icir.org; Thu, 7 Apr 2005 04:49:26 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 04:49:26 GMT From: Pavlin Radoslavov Message-Id: <200504070449.j374nQJ6046465@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 04:49:26 UTC XORP CVS repository Modified files: docs/user_manual static_routes.tex Log message: * Add information for the interface-specific static routes configuration * Replace the configuration keyword "nexthop" with "next-hop", and add a note about the change. * Mention the operational commands for showing the MRIB static routes. * Editorial nits Revision Changes Path 1.9 +96 -36 xorp/docs/user_manual/static_routes.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 05:17:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 22:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j375I1Lu076197 for ; Wed, 6 Apr 2005 22:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375I1qi029586 for ; Wed, 6 Apr 2005 22:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375I0SO016474; Wed, 6 Apr 2005 22:18:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375HnSO016467 for ; Wed, 6 Apr 2005 22:17:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375HmeU029583 for ; Wed, 6 Apr 2005 22:17:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j375Hms7046728 for ; Wed, 6 Apr 2005 22:17:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j375Hmv8046727 for xorp-cvs@icir.org; Thu, 7 Apr 2005 05:17:48 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 05:17:48 GMT From: Pavlin Radoslavov Message-Id: <200504070517.j375Hmv8046727@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 05:17:48 UTC XORP CVS repository Modified files: docs/user_manual rip.tex Log message: Add info for running more operational commands. Revision Changes Path 1.8 +7 -1 xorp/docs/user_manual/rip.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 05:30:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 22:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j375V1Tb078900 for ; Wed, 6 Apr 2005 22:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375V1wu029780 for ; Wed, 6 Apr 2005 22:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375V1SO016788; Wed, 6 Apr 2005 22:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375V0SO016782 for ; Wed, 6 Apr 2005 22:31:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375V03i029778 for ; Wed, 6 Apr 2005 22:31:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j375V0Oj046907 for ; Wed, 6 Apr 2005 22:31:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j375UxTB046906 for xorp-cvs@icir.org; Thu, 7 Apr 2005 05:30:59 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 05:30:59 GMT From: Pavlin Radoslavov Message-Id: <200504070530.j375UxTB046906@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 05:30:59 UTC XORP CVS repository Modified files: docs/user_manual multicast_routing.tex Log message: Minor nits. Revision Changes Path 1.5 +3 -3 xorp/docs/user_manual/multicast_routing.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 05:43:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 22:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j375i1VD081523 for ; Wed, 6 Apr 2005 22:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375i1Bd029924 for ; Wed, 6 Apr 2005 22:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375i1SO017090; Wed, 6 Apr 2005 22:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j375hoSO017080 for ; Wed, 6 Apr 2005 22:43:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j375hoB9029922 for ; Wed, 6 Apr 2005 22:43:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j375hnFh054058 for ; Wed, 6 Apr 2005 22:43:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j375hnSG054057 for xorp-cvs@icir.org; Thu, 7 Apr 2005 05:43:49 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 05:43:49 GMT From: Pavlin Radoslavov Message-Id: <200504070543.j375hnSG054057@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 05:43:49 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: * Fix a typo: XORP supports MLDv1, not MLDv2 * A nit. Revision Changes Path 1.10 +3 -3 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 06:27:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 06 Apr 2005 23:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j376S1S5090240 for ; Wed, 6 Apr 2005 23:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j376S1DK030419 for ; Wed, 6 Apr 2005 23:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j376S1SO018159; Wed, 6 Apr 2005 23:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j376RYSO018140 for ; Wed, 6 Apr 2005 23:27:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j376RYXP030415 for ; Wed, 6 Apr 2005 23:27:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j376RYfP054434 for ; Wed, 6 Apr 2005 23:27:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j376RY7x054433 for xorp-cvs@icir.org; Thu, 7 Apr 2005 06:27:34 GMT (envelope-from pavlin) Date: Thu, 7 Apr 2005 06:27:34 GMT From: Pavlin Radoslavov Message-Id: <200504070627.j376RY7x054433@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-07 06:27:34 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: * Add missing value ranges for some of the configuration variables * Add the default values for some of the configuration variables * Misc nits Revision Changes Path 1.11 +43 -33 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Thu Apr 7 15:23:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Apr 2005 08:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j37FO1tB098510 for ; Thu, 7 Apr 2005 08:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37FO1Er038203 for ; Thu, 7 Apr 2005 08:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37FO1SO004091; Thu, 7 Apr 2005 08:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j37FNlSO004078 for ; Thu, 7 Apr 2005 08:23:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j37FNkQA038199 for ; Thu, 7 Apr 2005 08:23:46 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j37FNkFr028289 for ; Thu, 7 Apr 2005 08:23:46 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j37FNk3u028288 for xorp-cvs@icir.org; Thu, 7 Apr 2005 15:23:46 GMT (envelope-from atanu) Date: Thu, 7 Apr 2005 15:23:46 GMT From: Atanu Ghosh Message-Id: <200504071523.j37FNk3u028288@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-07 15:23:46 UTC XORP CVS repository Modified files: bgp dump_iterators.cc Log message: If the iterator moves we print the last dumped net and the new net, previously we incorrectly printed last dumped net twice. Revision Changes Path 1.28 +2 -2 xorp/bgp/dump_iterators.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 04:03:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Apr 2005 21:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j38441SP072996 for ; Thu, 7 Apr 2005 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j38441k4046196 for ; Thu, 7 Apr 2005 21:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j38441SO000115; Thu, 7 Apr 2005 21:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3843RSO000098 for ; Thu, 7 Apr 2005 21:03:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3843Rd6046194 for ; Thu, 7 Apr 2005 21:03:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3843RnF035828 for ; Thu, 7 Apr 2005 21:03:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3843RhI035827 for xorp-cvs@icir.org; Fri, 8 Apr 2005 04:03:27 GMT (envelope-from pavlin) Date: Fri, 8 Apr 2005 04:03:27 GMT From: Pavlin Radoslavov Message-Id: <200504080403.j3843RhI035827@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-08 04:03:27 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Fix a typo. Revision Changes Path 1.11 +2 -2 xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 04:10:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 07 Apr 2005 21:11:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j384B0LK074785 for ; Thu, 7 Apr 2005 21:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j384B0WA046290 for ; Thu, 7 Apr 2005 21:11:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j384B0SO000340; Thu, 7 Apr 2005 21:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j384AOSO000323 for ; Thu, 7 Apr 2005 21:10:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j384AObF046286 for ; Thu, 7 Apr 2005 21:10:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j384AOjk035948 for ; Thu, 7 Apr 2005 21:10:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j384AOIZ035947 for xorp-cvs@icir.org; Fri, 8 Apr 2005 04:10:24 GMT (envelope-from pavlin) Date: Fri, 8 Apr 2005 04:10:24 GMT From: Pavlin Radoslavov Message-Id: <200504080410.j384AOIZ035947@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-08 04:10:24 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: * Add text with description of the PIM-SM operational commands * Spell-check previous text. Revision Changes Path 1.12 +601 -6 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 08:55:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 01:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j388u1D8035754 for ; Fri, 8 Apr 2005 01:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j388u10k050815 for ; Fri, 8 Apr 2005 01:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j388u1SO007518; Fri, 8 Apr 2005 01:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j388tGSO007504 for ; Fri, 8 Apr 2005 01:55:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j388tGOQ050805 for ; Fri, 8 Apr 2005 01:55:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j388tGCt040217 for ; Fri, 8 Apr 2005 01:55:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j388tGKD040216 for xorp-cvs@icir.org; Fri, 8 Apr 2005 08:55:16 GMT (envelope-from pavlin) Date: Fri, 8 Apr 2005 08:55:16 GMT From: Pavlin Radoslavov Message-Id: <200504080855.j388tGKD040216@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-08 08:55:16 UTC XORP CVS repository Modified files: cli README Log message: Update the date. Revision Changes Path 1.11 +2 -2 xorp/cli/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 08:56:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 01:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j388v1fM035991 for ; Fri, 8 Apr 2005 01:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j388v0CZ050829 for ; Fri, 8 Apr 2005 01:57:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j388v0SO007557; Fri, 8 Apr 2005 01:57:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j388uESO007536 for ; Fri, 8 Apr 2005 01:56:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j388uEmn050818 for ; Fri, 8 Apr 2005 01:56:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j388uEmd040269 for ; Fri, 8 Apr 2005 01:56:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j388uEkR040268 for xorp-cvs@icir.org; Fri, 8 Apr 2005 08:56:14 GMT (envelope-from pavlin) Date: Fri, 8 Apr 2005 08:56:14 GMT From: Pavlin Radoslavov Message-Id: <200504080856.j388uEkR040268@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-08 08:56:14 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add an entry that the old syntax "nexthop" in the static configuration section has changed to "next-hop". Revision Changes Path 1.65 +10 -1 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 09:10:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 02:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j389B1dq040071 for ; Fri, 8 Apr 2005 02:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j389B1gI051275 for ; Fri, 8 Apr 2005 02:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j389B1SO007996; Fri, 8 Apr 2005 02:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j389ApSO007986 for ; Fri, 8 Apr 2005 02:10:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j389Apsn051273 for ; Fri, 8 Apr 2005 02:10:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j389Ap4V040506 for ; Fri, 8 Apr 2005 02:10:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j389AplQ040505 for xorp-cvs@icir.org; Fri, 8 Apr 2005 09:10:51 GMT (envelope-from pavlin) Date: Fri, 8 Apr 2005 09:10:51 GMT From: Pavlin Radoslavov Message-Id: <200504080910.j389AplQ040505@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-08 09:10:51 UTC XORP CVS repository Modified files: mld6igmp xrl_mld6igmp_node.cc pim xrl_pim_node.cc Log message: If the MFEA fails to transmit a protocol message and returns COMMAND_FAILED XRL error, then just print an error and continue instead of calling XLOG_FATAL(). For example, the transmission by the MFEA may fail if there is no buffer space or if an unicast destination is not reachable. Furthermore, all protocol messages are soft-state (i.e., they are retransmitted periodically by the protocol), hence we don't retransmit them here if there was an error. This fixes a coredump problem if a neighbor router is very flaky, or if the router is running with high capacity and is very low on buffer space. Bug found by: Achmad Husni Thamrin Revision Changes Path 1.45 +14 -4 xorp/mld6igmp/xrl_mld6igmp_node.cc 1.81 +14 -4 xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Fri Apr 8 22:45:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 15:46:16 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j38MkGar009274 for ; Fri, 8 Apr 2005 15:46:16 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j38MkG3u061563 for ; Fri, 8 Apr 2005 15:46:16 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j38MkFSO004900; Fri, 8 Apr 2005 15:46:15 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j38MjxSO004883 for ; Fri, 8 Apr 2005 15:45:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j38MjxkZ061557 for ; Fri, 8 Apr 2005 15:45:59 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j38MjxwI049515 for ; Fri, 8 Apr 2005 15:45:59 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j38MjxpJ049514 for xorp-cvs@icir.org; Fri, 8 Apr 2005 22:45:59 GMT (envelope-from mjh) Date: Fri, 8 Apr 2005 22:45:59 GMT From: Mark Handley Message-Id: <200504082245.j38MjxpJ049514@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-04-08 22:45:59 UTC XORP CVS repository Modified files: bgp route_table_fanout.cc Log message: fix bug in sanity check code Revision Changes Path 1.51 +2 -2 xorp/bgp/route_table_fanout.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Sat Apr 9 00:31:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 17:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j390W2I8030262 for ; Fri, 8 Apr 2005 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j390W1vj062495 for ; Fri, 8 Apr 2005 17:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j390W1SO008299; Fri, 8 Apr 2005 17:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j390VfSO008289 for ; Fri, 8 Apr 2005 17:31:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j390Ve5C062491 for ; Fri, 8 Apr 2005 17:31:40 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j390VedI050343 for ; Fri, 8 Apr 2005 17:31:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j390VeHm050342 for xorp-cvs@icir.org; Sat, 9 Apr 2005 00:31:40 GMT (envelope-from atanu) Date: Sat, 9 Apr 2005 00:31:40 GMT From: Atanu Ghosh Message-Id: <200504090031.j390VeHm050342@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-09 00:31:40 UTC XORP CVS repository Modified files: bgp peer.hh Log message: Kill an unused declaration. Revision Changes Path 1.22 +1 -3 xorp/bgp/peer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Sat Apr 9 03:17:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 08 Apr 2005 20:18:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j393I1Uo063038 for ; Fri, 8 Apr 2005 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j393I16n064029 for ; Fri, 8 Apr 2005 20:18:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j393I1SO011841; Fri, 8 Apr 2005 20:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j393HCSO011830 for ; Fri, 8 Apr 2005 20:17:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j393HCKp064024 for ; Fri, 8 Apr 2005 20:17:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j393HCxp051453 for ; Fri, 8 Apr 2005 20:17:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j393HBxC051452 for xorp-cvs@icir.org; Sat, 9 Apr 2005 03:17:11 GMT (envelope-from pavlin) Date: Sat, 9 Apr 2005 03:17:11 GMT From: Pavlin Radoslavov Message-Id: <200504090317.j393HBxC051452@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-09 03:17:11 UTC XORP CVS repository Modified files: docs/user_manual multicast_topology.tex Log message: Add the text for the "Multicast Topology Discovery" chapter. Revision Changes Path 1.4 +181 -9 xorp/docs/user_manual/multicast_topology.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Sun Apr 10 06:23:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 09 Apr 2005 23:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3A6O1jE088587 for ; Sat, 9 Apr 2005 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3A6O1fd079199 for ; Sat, 9 Apr 2005 23:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3A6O1SO015624; Sat, 9 Apr 2005 23:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3A6NFSO015610 for ; Sat, 9 Apr 2005 23:23:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3A6NF5J079194 for ; Sat, 9 Apr 2005 23:23:15 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3A6NFaf064174 for ; Sat, 9 Apr 2005 23:23:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3A6NFgF064173 for xorp-cvs@icir.org; Sun, 10 Apr 2005 06:23:15 GMT (envelope-from atanu) Date: Sun, 10 Apr 2005 06:23:15 GMT From: Atanu Ghosh Message-Id: <200504100623.j3A6NFgF064173@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-10 06:23:15 UTC XORP CVS repository Modified files: bgp peer.cc Log message: Code to save all input packets to a file (for debugging). Conditionally compiled out. Revision Changes Path 1.92 +79 -1 xorp/bgp/peer.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:17 2005 Subject: No subject Mon Apr 11 05:57:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 10 Apr 2005 22:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3B5w1PW075956 for ; Sun, 10 Apr 2005 22:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3B5w1Bi092604 for ; Sun, 10 Apr 2005 22:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3B5w1SO017957; Sun, 10 Apr 2005 22:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3B5vDSO017936 for ; Sun, 10 Apr 2005 22:57:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3B5vDFo092602 for ; Sun, 10 Apr 2005 22:57:13 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3B5vDSv075788 for ; Sun, 10 Apr 2005 22:57:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3B5vD66075787 for xorp-cvs@icir.org; Mon, 11 Apr 2005 05:57:13 GMT (envelope-from atanu) Date: Mon, 11 Apr 2005 05:57:13 GMT From: Atanu Ghosh Message-Id: <200504110557.j3B5vD66075787@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-11 05:57:13 UTC XORP CVS repository Modified files: bgp route_table_ribin.cc Log message: When a nexthop changes a background task is started to re-inject the affected routes into the plumbing. If the peering goes down the timer for the background task is stopped and all associated state is removed. The iterator into the trie is set to "end". For some reason setting the iterator to end is causing a problem when the STL debugging is enabled. The timer is stopped and all other state has been removed so setting the iterator to "end" is not strictly necessary, so its temporarily commented out. Revision Changes Path 1.39 +2 -2 xorp/bgp/route_table_ribin.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 19:13:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 12:14:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BJE2q5043089 for ; Mon, 11 Apr 2005 12:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BJE2GK002619 for ; Mon, 11 Apr 2005 12:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BJE2SO012221; Mon, 11 Apr 2005 12:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BJDMSO012200 for ; Mon, 11 Apr 2005 12:13:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BJDMxN002608 for ; Mon, 11 Apr 2005 12:13:22 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BJDMCE084754 for ; Mon, 11 Apr 2005 12:13:22 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BJDMvs084753 for xorp-cvs@icir.org; Mon, 11 Apr 2005 19:13:22 GMT (envelope-from atanu) Date: Mon, 11 Apr 2005 19:13:22 GMT From: Atanu Ghosh Message-Id: <200504111913.j3BJDMvs084753@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-11 19:13:22 UTC XORP CVS repository Modified files: docs/user_manual bgp.tex Log message: next-hop6. Revision Changes Path 1.11 +4 -1 xorp/docs/user_manual/bgp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 21:20:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 14:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BLL1A9073863 for ; Mon, 11 Apr 2005 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BLL1Fe004078 for ; Mon, 11 Apr 2005 14:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BLL1SO017300; Mon, 11 Apr 2005 14:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BLKjSO017273 for ; Mon, 11 Apr 2005 14:20:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BLKjFY004071 for ; Mon, 11 Apr 2005 14:20:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BLKjVw087269 for ; Mon, 11 Apr 2005 14:20:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BLKifh087268 for xorp-cvs@icir.org; Mon, 11 Apr 2005 21:20:44 GMT (envelope-from pavlin) Date: Mon, 11 Apr 2005 21:20:44 GMT From: Pavlin Radoslavov Message-Id: <200504112120.j3BLKifh087268@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-11 21:20:44 UTC XORP CVS repository Modified files: docs/user_manual snmp.tex Log message: Write text for Chapter 13 (SNMP). Revision Changes Path 1.3 +191 -5 xorp/docs/user_manual/snmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 21:21:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 14:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BLM1OK074126 for ; Mon, 11 Apr 2005 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BLM196004084 for ; Mon, 11 Apr 2005 14:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BLM1SO017334; Mon, 11 Apr 2005 14:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BLLESO017313 for ; Mon, 11 Apr 2005 14:21:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BLLDFq004082 for ; Mon, 11 Apr 2005 14:21:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BLLDVW087328 for ; Mon, 11 Apr 2005 14:21:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BLLDcf087327 for xorp-cvs@icir.org; Mon, 11 Apr 2005 21:21:13 GMT (envelope-from pavlin) Date: Mon, 11 Apr 2005 21:21:13 GMT From: Pavlin Radoslavov Message-Id: <200504112121.j3BLLDcf087327@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-11 21:21:13 UTC XORP CVS repository Modified files: docs/user_manual bgp.tex forwarding.tex igmp.tex pimsm.tex rip.tex Log message: Add a missing ":". Revision Changes Path 1.12 +2 -2 xorp/docs/user_manual/bgp.tex 1.7 +2 -2 xorp/docs/user_manual/forwarding.tex 1.12 +2 -2 xorp/docs/user_manual/igmp.tex 1.13 +2 -2 xorp/docs/user_manual/pimsm.tex 1.9 +2 -2 xorp/docs/user_manual/rip.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 22:32:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 15:33:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BMX3H3091512 for ; Mon, 11 Apr 2005 15:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BMX3Ni004999 for ; Mon, 11 Apr 2005 15:33:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BMX3SO020222; Mon, 11 Apr 2005 15:33:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BMWjSO020190 for ; Mon, 11 Apr 2005 15:32:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BMWj3A004997 for ; Mon, 11 Apr 2005 15:32:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BMWipc088099 for ; Mon, 11 Apr 2005 15:32:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BMWirc088098 for xorp-cvs@icir.org; Mon, 11 Apr 2005 22:32:44 GMT (envelope-from pavlin) Date: Mon, 11 Apr 2005 22:32:44 GMT From: Pavlin Radoslavov Message-Id: <200504112232.j3BMWirc088098@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-11 22:32:44 UTC XORP CVS repository Modified files: docs/user_manual diagnostics.tex Log message: * Write text for Section 15.1 "Debugging and Diagnostic Commands" * Comment-out empty section "Logging in to Unix" that is suppose to be regarding LiveCD, because the LiveCD documentation will be added in a separate chapter. Revision Changes Path 1.3 +106 -4 xorp/docs/user_manual/diagnostics.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 23:28:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 16:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BNT1aa004384 for ; Mon, 11 Apr 2005 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BNT1cj005887 for ; Mon, 11 Apr 2005 16:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BNT1SO022235; Mon, 11 Apr 2005 16:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BNS3SO022169 for ; Mon, 11 Apr 2005 16:28:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BNS3cQ005885 for ; Mon, 11 Apr 2005 16:28:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BNS3qF088604 for ; Mon, 11 Apr 2005 16:28:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BNS3nH088603 for xorp-cvs@icir.org; Mon, 11 Apr 2005 23:28:03 GMT (envelope-from pavlin) Date: Mon, 11 Apr 2005 23:28:03 GMT From: Pavlin Radoslavov Message-Id: <200504112328.j3BNS3nH088603@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual xorp/docs/user_manual/figs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-11 23:28:03 UTC XORP CVS repository Modified files: docs/user_manual user_manual.tex Added files: docs/user_manual livecd.tex docs/user_manual/figs cd1.gif cd1.ps cd2.gif cd2.ps cd3.gif cd3.ps cd4.gif cd4.ps Log message: Add new Chapter 16 "XORP Live CD" which uses the text from the XORP Web site. Revision Changes Path 1.1 +12 -0 xorp/docs/user_manual/figs/cd1.gif (new) 1.1 +614 -0 xorp/docs/user_manual/figs/cd1.ps (new) 1.1 +15 -0 xorp/docs/user_manual/figs/cd2.gif (new) 1.1 +578 -0 xorp/docs/user_manual/figs/cd2.ps (new) 1.1 +13 -0 xorp/docs/user_manual/figs/cd3.gif (new) 1.1 +422 -0 xorp/docs/user_manual/figs/cd3.ps (new) 1.1 +24 -0 xorp/docs/user_manual/figs/cd4.gif (new) 1.1 +897 -0 xorp/docs/user_manual/figs/cd4.ps (new) 1.1 +218 -0 xorp/docs/user_manual/livecd.tex (new) 1.10 +2 -1 xorp/docs/user_manual/user_manual.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Mon Apr 11 23:29:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 16:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3BNU1ME004591 for ; Mon, 11 Apr 2005 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BNU1oQ005904 for ; Mon, 11 Apr 2005 16:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BNU0SO022277; Mon, 11 Apr 2005 16:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3BNTvSO022268 for ; Mon, 11 Apr 2005 16:29:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3BNTvB0005897 for ; Mon, 11 Apr 2005 16:29:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3BNTvnF088681 for ; Mon, 11 Apr 2005 16:29:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3BNTvXJ088680 for xorp-cvs@icir.org; Mon, 11 Apr 2005 23:29:57 GMT (envelope-from pavlin) Date: Mon, 11 Apr 2005 23:29:57 GMT From: Pavlin Radoslavov Message-Id: <200504112329.j3BNTvXJ088680@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-11 23:29:57 UTC XORP CVS repository Modified files: docs/user_manual Makefile.am Makefile.in Log message: * Add livecd.tex to the user_manual_LATEX list of files * Add figs/cd{1,2,3,4}.ps to the list of user_manual_FIGURES list of files. * Reformat the list of files. Revision Changes Path 1.5 +27 -11 xorp/docs/user_manual/Makefile.am 1.10 +2 -9 xorp/docs/user_manual/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 00:36:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 17:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C0b1vI017787 for ; Mon, 11 Apr 2005 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C0b1CF006541 for ; Mon, 11 Apr 2005 17:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C0b1SO026266; Mon, 11 Apr 2005 17:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C0aASO026246 for ; Mon, 11 Apr 2005 17:36:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C0aAK2006535 for ; Mon, 11 Apr 2005 17:36:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C0aAAa089210 for ; Mon, 11 Apr 2005 17:36:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C0aAXt089209 for xorp-cvs@icir.org; Tue, 12 Apr 2005 00:36:10 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 00:36:10 GMT From: Pavlin Radoslavov Message-Id: <200504120036.j3C0aAXt089209@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 00:36:10 UTC XORP CVS repository Modified files: docs/user_manual users.tex Log message: * Add text about user management * Comment-out the sections template. Revision Changes Path 1.3 +18 -5 xorp/docs/user_manual/users.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 00:37:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 17:38:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C0c0r2017996 for ; Mon, 11 Apr 2005 17:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C0c02N006549 for ; Mon, 11 Apr 2005 17:38:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C0c0SO026296; Mon, 11 Apr 2005 17:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C0bASO026278 for ; Mon, 11 Apr 2005 17:37:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C0bAvE006543 for ; Mon, 11 Apr 2005 17:37:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C0b9qw089289 for ; Mon, 11 Apr 2005 17:37:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C0b9EC089288 for xorp-cvs@icir.org; Tue, 12 Apr 2005 00:37:09 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 00:37:09 GMT From: Pavlin Radoslavov Message-Id: <200504120037.j3C0b9EC089288@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-12 00:37:09 UTC XORP CVS repository Modified files: . livecd.html html_src livecd.html Log message: Minor nits: * "A" -> "a" * "ethernet" -> "Ethernet" Revision Changes Path 1.6 +2 -2 www/html_src/livecd.html 1.26 +3 -3 www/livecd.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 01:16:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 18:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C1H1US025774 for ; Mon, 11 Apr 2005 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C1H17f006935 for ; Mon, 11 Apr 2005 18:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C1H1SO027465; Mon, 11 Apr 2005 18:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C1GfSO027450 for ; Mon, 11 Apr 2005 18:16:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C1GftC006932 for ; Mon, 11 Apr 2005 18:16:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C1GfTx089692 for ; Mon, 11 Apr 2005 18:16:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C1GfiK089691 for xorp-cvs@icir.org; Tue, 12 Apr 2005 01:16:41 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 01:16:41 GMT From: Pavlin Radoslavov Message-Id: <200504120116.j3C1GfiK089691@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 01:16:41 UTC XORP CVS repository Modified files: bgp README Log message: Update the date: "July 2004" -> "April 2005" Revision Changes Path 1.11 +2 -2 xorp/bgp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 01:24:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 11 Apr 2005 18:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C1P1qN027376 for ; Mon, 11 Apr 2005 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C1P17J007000 for ; Mon, 11 Apr 2005 18:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C1P1SO027660; Mon, 11 Apr 2005 18:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C1OcSO027627 for ; Mon, 11 Apr 2005 18:24:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C1Octk006995 for ; Mon, 11 Apr 2005 18:24:38 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C1OcAE089805 for ; Mon, 11 Apr 2005 18:24:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C1OclL089804 for xorp-cvs@icir.org; Tue, 12 Apr 2005 01:24:38 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 01:24:38 GMT From: Pavlin Radoslavov Message-Id: <200504120124.j3C1OclL089804@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-12 01:24:37 UTC XORP CVS repository Modified files: LiveCD README Log message: * Add the XORP CVS Header ID * Minor nits Revision Changes Path 1.3 +6 -2 other/LiveCD/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 07:32:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 00:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C7X1hO000649 for ; Tue, 12 Apr 2005 00:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7X1ME010282 for ; Tue, 12 Apr 2005 00:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7X1SO006790; Tue, 12 Apr 2005 00:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7WnSO006774 for ; Tue, 12 Apr 2005 00:32:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7WmLt010280 for ; Tue, 12 Apr 2005 00:32:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C7WmaF092855 for ; Tue, 12 Apr 2005 00:32:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C7WmSK092854 for xorp-cvs@icir.org; Tue, 12 Apr 2005 07:32:48 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 07:32:48 GMT From: Pavlin Radoslavov Message-Id: <200504120732.j3C7WmSK092854@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD/files Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-12 07:32:48 UTC XORP CVS repository Modified files: LiveCD/files xorp-makeconfig.sh Log message: Add the XORP CVS ID. Revision Changes Path 1.9 +5 -0 other/LiveCD/files/xorp-makeconfig.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 07:38:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 00:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C7d1ep001837 for ; Tue, 12 Apr 2005 00:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7d03H010326 for ; Tue, 12 Apr 2005 00:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7d0SO006947; Tue, 12 Apr 2005 00:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7cmSO006933 for ; Tue, 12 Apr 2005 00:38:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7clfm010323 for ; Tue, 12 Apr 2005 00:38:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C7clRw092959 for ; Tue, 12 Apr 2005 00:38:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C7clfs092958 for xorp-cvs@icir.org; Tue, 12 Apr 2005 07:38:47 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 07:38:47 GMT From: Pavlin Radoslavov Message-Id: <200504120738.j3C7clfs092958@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD other/LiveCD/files Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-12 07:38:47 UTC XORP CVS repository Modified files: LiveCD livecd.sh LiveCD/files rc.live Log message: * Pull-out the ICSI name from the original copyright message (from the LiveCD project in Brasil) and add the ICSI copyright message separately. Adding the ICSI name to the original copyright message and adjusting the text is probably not appropriate, because it may be considered as a modification of the copyright message itself. Now the two copyright messages are clearly separated, and there is an explicit message indicating where the software was derived from. * Add the XORP CVS ID Revision Changes Path 1.4 +44 -9 other/LiveCD/files/rc.live 1.11 +45 -11 other/LiveCD/livecd.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 07:49:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 00:50:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C7o1G1004056 for ; Tue, 12 Apr 2005 00:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7o1Pk010431 for ; Tue, 12 Apr 2005 00:50:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7o1SO007205; Tue, 12 Apr 2005 00:50:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C7n1SO007180 for ; Tue, 12 Apr 2005 00:49:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C7n0MS010422 for ; Tue, 12 Apr 2005 00:49:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C7n0hs093121 for ; Tue, 12 Apr 2005 00:49:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C7n0J1093120 for xorp-cvs@icir.org; Tue, 12 Apr 2005 07:49:00 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 07:49:00 GMT From: Pavlin Radoslavov Message-Id: <200504120749.j3C7n0J1093120@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 07:49:00 UTC XORP CVS repository Modified files: libxorp popen.cc Log message: Cleanup the copyright message, and add a copy of the original copyright message that comes with the FreeBSD's popen(3) implementation. Revision Changes Path 1.3 +50 -16 xorp/libxorp/popen.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 08:04:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 01:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C851Q1007090 for ; Tue, 12 Apr 2005 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C851DN010604 for ; Tue, 12 Apr 2005 01:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C851SO007613; Tue, 12 Apr 2005 01:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C84uSO007605 for ; Tue, 12 Apr 2005 01:04:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C84ucg010597 for ; Tue, 12 Apr 2005 01:04:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C84ufR093302 for ; Tue, 12 Apr 2005 01:04:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C84uhN093301 for xorp-cvs@icir.org; Tue, 12 Apr 2005 08:04:56 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 08:04:56 GMT From: Pavlin Radoslavov Message-Id: <200504120804.j3C84uhN093301@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 08:04:56 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: * Add release notes for MLD/IGMP and PIM-SM * Set the 1.1 release date Revision Changes Path 1.66 +8 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 08:05:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 01:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C862q4007316 for ; Tue, 12 Apr 2005 01:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C862YM010628 for ; Tue, 12 Apr 2005 01:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C861SO007642; Tue, 12 Apr 2005 01:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C85KSO007627 for ; Tue, 12 Apr 2005 01:05:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C85KhN010624 for ; Tue, 12 Apr 2005 01:05:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C85K9N093365 for ; Tue, 12 Apr 2005 01:05:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C85K1O093364 for xorp-cvs@icir.org; Tue, 12 Apr 2005 08:05:20 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 08:05:20 GMT From: Pavlin Radoslavov Message-Id: <200504120805.j3C85K1O093364@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 08:05:20 UTC XORP CVS repository Modified files: . README Log message: Release-1.1-RC -> Release-1.1 Revision Changes Path 1.33 +2 -2 xorp/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 08:28:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 01:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C8T2nO011889 for ; Tue, 12 Apr 2005 01:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C8T2ZL010843 for ; Tue, 12 Apr 2005 01:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C8T1SO008390; Tue, 12 Apr 2005 01:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C8S0SO008369 for ; Tue, 12 Apr 2005 01:28:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C8S0bL010834 for ; Tue, 12 Apr 2005 01:28:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C8S0Mu093921 for ; Tue, 12 Apr 2005 01:28:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C8S0VC093920 for xorp-cvs@icir.org; Tue, 12 Apr 2005 08:28:00 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 08:28:00 GMT From: Pavlin Radoslavov Message-Id: <200504120828.j3C8S0VC093920@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea xorp/docs/libxipc xorp/docs/libxorp xorp/docs/mfea xorp/docs/mld6igmp xorp/docs/multicast xorp/docs/pim xorp/docs/pim_testsuite xorp/docs/rib xorp/docs/rtrmgr ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 08:28:00 UTC XORP CVS repository Modified files: docs/bgp bgp.tex docs/design_arch design_arch.tex error_handling.tex docs/fea fea.tex docs/libxipc libxipc_overview.tex xrl_interfaces.tex docs/libxorp libxorp_overview.tex docs/mfea mfea_arch.tex docs/mld6igmp mld6igmp_arch.tex docs/multicast multicast_arch.tex docs/pim pim_arch.tex docs/pim_testsuite pim_testsuite.tex docs/rib rib.tex docs/rtrmgr rtrmgr.tex docs/snmp snmp_overview.tex docs/test_harness test_harness.tex docs/user_manual user_manual.tex docs/xorpdev_101 xorpdev_101.tex Log message: Update the release date. Revision Changes Path 1.14 +1 -1 xorp/docs/bgp/bgp.tex 1.15 +3 -3 xorp/docs/design_arch/design_arch.tex 1.33 +2 -2 xorp/docs/design_arch/error_handling.tex 1.14 +2 -2 xorp/docs/fea/fea.tex 1.13 +1 -1 xorp/docs/libxipc/libxipc_overview.tex 1.15 +1 -1 xorp/docs/libxipc/xrl_interfaces.tex 1.19 +3 -3 xorp/docs/libxorp/libxorp_overview.tex 1.18 +3 -3 xorp/docs/mfea/mfea_arch.tex 1.14 +3 -3 xorp/docs/mld6igmp/mld6igmp_arch.tex 1.15 +3 -3 xorp/docs/multicast/multicast_arch.tex 1.16 +3 -3 xorp/docs/pim/pim_arch.tex 1.37 +3 -3 xorp/docs/pim_testsuite/pim_testsuite.tex 1.17 +2 -2 xorp/docs/rib/rib.tex 1.30 +2 -2 xorp/docs/rtrmgr/rtrmgr.tex 1.21 +3 -3 xorp/docs/snmp/snmp_overview.tex 1.27 +1 -1 xorp/docs/test_harness/test_harness.tex 1.11 +2 -2 xorp/docs/user_manual/user_manual.tex 1.8 +2 -2 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 08:33:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 01:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3C8Y13v012881 for ; Tue, 12 Apr 2005 01:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C8Y1na010899 for ; Tue, 12 Apr 2005 01:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C8Y0SO008555; Tue, 12 Apr 2005 01:34:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3C8XSSO008526 for ; Tue, 12 Apr 2005 01:33:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3C8XSvn010895 for ; Tue, 12 Apr 2005 01:33:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3C8XSHu094134 for ; Tue, 12 Apr 2005 01:33:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3C8XSa2094133 for xorp-cvs@icir.org; Tue, 12 Apr 2005 08:33:28 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 08:33:28 GMT From: Pavlin Radoslavov Message-Id: <200504120833.j3C8XSa2094133@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 08:33:28 UTC XORP CVS repository Modified files: . VERSION configure configure.in mibs configure configure.in Log message: Prepare XORP for release: set the version number to 1.1 Revision Changes Path 1.9 +1 -1 xorp/VERSION 1.143 +1 -1 xorp/configure 1.133 +2 -2 xorp/configure.in 1.9 +1 -1 xorp/mibs/configure 1.5 +2 -2 xorp/mibs/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 21:50:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 14:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3CLp2wZ049408 for ; Tue, 12 Apr 2005 14:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CLp2rb020694 for ; Tue, 12 Apr 2005 14:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CLp1SO004908; Tue, 12 Apr 2005 14:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CLocSO004893 for ; Tue, 12 Apr 2005 14:50:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CLobTL020692 for ; Tue, 12 Apr 2005 14:50:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3CLob68002908 for ; Tue, 12 Apr 2005 14:50:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3CLobTt002907 for xorp-cvs@icir.org; Tue, 12 Apr 2005 21:50:37 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 21:50:37 GMT From: Pavlin Radoslavov Message-Id: <200504122150.j3CLobTt002907@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 21:50:37 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: Add a new subsection: "Configuring Multicast Routing on UNIX Systems" Revision Changes Path 1.14 +174 -1 xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:18 2005 Subject: No subject Tue Apr 12 22:01:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 15:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3CM21c7052120 for ; Tue, 12 Apr 2005 15:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CM21Zc020832 for ; Tue, 12 Apr 2005 15:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CM21SO005278; Tue, 12 Apr 2005 15:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CM1nSO005266 for ; Tue, 12 Apr 2005 15:01:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CM1mUR020830 for ; Tue, 12 Apr 2005 15:01:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3CM1m1f003047 for ; Tue, 12 Apr 2005 15:01:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3CM1m4V003046 for xorp-cvs@icir.org; Tue, 12 Apr 2005 22:01:48 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 22:01:48 GMT From: Pavlin Radoslavov Message-Id: <200504122201.j3CM1m4V003046@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 22:01:48 UTC XORP CVS repository Modified files: docs/user_manual unicast_routing.tex Log message: Add admin. distance for the XORP-specific FIB2MRIB routes. Revision Changes Path 1.7 +4 -3 xorp/docs/user_manual/unicast_routing.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Tue Apr 12 22:24:08 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 15:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3CMP3c1057694 for ; Tue, 12 Apr 2005 15:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CMP3dT021057 for ; Tue, 12 Apr 2005 15:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CMP2SO005930; Tue, 12 Apr 2005 15:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CMO8SO005887 for ; Tue, 12 Apr 2005 15:24:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CMO8IR021044 for ; Tue, 12 Apr 2005 15:24:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3CMO8GN003278 for ; Tue, 12 Apr 2005 15:24:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3CMO8iA003277 for xorp-cvs@icir.org; Tue, 12 Apr 2005 22:24:08 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 22:24:08 GMT From: Pavlin Radoslavov Message-Id: <200504122224.j3CMO8iA003277@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 22:24:08 UTC XORP CVS repository Modified files: docs/libxorp libxorp_overview.tex Log message: Move the XLOG example out of the list of bullets. Revision Changes Path 1.20 +4 -4 xorp/docs/libxorp/libxorp_overview.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Tue Apr 12 22:25:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 15:26:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3CMQ0xt057960 for ; Tue, 12 Apr 2005 15:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CMQ0w6021086 for ; Tue, 12 Apr 2005 15:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CMQ0SO005965; Tue, 12 Apr 2005 15:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CMPPSO005955 for ; Tue, 12 Apr 2005 15:25:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CMPPPh021080 for ; Tue, 12 Apr 2005 15:25:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3CMPPi6003357 for ; Tue, 12 Apr 2005 15:25:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3CMPPYo003356 for xorp-cvs@icir.org; Tue, 12 Apr 2005 22:25:25 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 22:25:25 GMT From: Pavlin Radoslavov Message-Id: <200504122225.j3CMPPYo003356@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev_101 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 22:25:25 UTC XORP CVS repository Modified files: docs/xorpdev_101 xorpdev_101.tex Log message: * Added a new section: "The XLOG Logging Facility" * Fix the modification date. Revision Changes Path 1.9 +208 -3 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Tue Apr 12 23:43:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3CNi1Fd076942 for ; Tue, 12 Apr 2005 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CNi1v7021906 for ; Tue, 12 Apr 2005 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CNi1SO008361; Tue, 12 Apr 2005 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3CNh2SO008322 for ; Tue, 12 Apr 2005 16:43:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3CNh2FR021902 for ; Tue, 12 Apr 2005 16:43:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3CNh2u5004013 for ; Tue, 12 Apr 2005 16:43:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3CNh2dH004012 for xorp-cvs@icir.org; Tue, 12 Apr 2005 23:43:02 GMT (envelope-from pavlin) Date: Tue, 12 Apr 2005 23:43:02 GMT From: Pavlin Radoslavov Message-Id: <200504122343.j3CNh2dH004012@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/xorpdev_101 Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-12 23:43:02 UTC XORP CVS repository Modified files: docs/xorpdev_101 xorpdev_101.tex Log message: * Various nits: expand the file names in the source code listings, etc. * Add a note that if a module won't be receiving XRLs, then we must call XrlStdRouter::finalize() after XrlStdRouter has been created. * Add extra info about the static_routes_module.h include file. * Add a new section "The rtrmgr Template Files". For now the section is empty, and contains only pointers to the "XORP Router Manager Process (rtrmgr)" document, and the xorp/etc/templates/static_routes.tp file. Revision Changes Path 1.10 +37 -10 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 02:59:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 20:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3D302uC002061 for ; Tue, 12 Apr 2005 20:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D302rJ023735 for ; Tue, 12 Apr 2005 20:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D302SO013623; Tue, 12 Apr 2005 20:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D2xISO013606 for ; Tue, 12 Apr 2005 19:59:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D2xITJ023720 for ; Tue, 12 Apr 2005 19:59:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3D2xIwu005672 for ; Tue, 12 Apr 2005 19:59:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3D2xI8a005671 for xorp-cvs@icir.org; Wed, 13 Apr 2005 02:59:18 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 02:59:18 GMT From: Pavlin Radoslavov Message-Id: <200504130259.j3D2xI8a005671@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-13 02:59:18 UTC XORP CVS repository Modified files: fea click_socket.hh Log message: Fix a kdoc typo: @see -> @ref Revision Changes Path 1.18 +2 -2 xorp/fea/click_socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 03:02:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 20:03:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3D332fY003835 for ; Tue, 12 Apr 2005 20:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D332Xd023777 for ; Tue, 12 Apr 2005 20:03:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D332SO013740; Tue, 12 Apr 2005 20:03:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D32NSO013715 for ; Tue, 12 Apr 2005 20:02:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D32Mt0023775 for ; Tue, 12 Apr 2005 20:02:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3D32MHw005751 for ; Tue, 12 Apr 2005 20:02:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3D32MoI005750 for xorp-cvs@icir.org; Wed, 13 Apr 2005 03:02:22 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 03:02:22 GMT From: Pavlin Radoslavov Message-Id: <200504130302.j3D32MoI005750@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-13 03:02:22 UTC XORP CVS repository Modified files: docs/kdoc gen-kdoc.sh Log message: Apply various fixes: * Fix a typo: "to to" -> "to" * Now (almost) all included files are set to *.h and *.hh * Don't exclude "fea/*click*hh" * Now all excludes of type "foo/*test*h" are changed to "foo/test_*.h foo/test_*.hh" * Add libpolicybackend to the fib2mrib xref libraries. Revision Changes Path 1.21 +21 -20 xorp/docs/kdoc/gen-kdoc.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 03:09:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 20:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3D3A1dX007459 for ; Tue, 12 Apr 2005 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D3A12V023833 for ; Tue, 12 Apr 2005 20:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D3A1SO013884; Tue, 12 Apr 2005 20:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D39RSO013859 for ; Tue, 12 Apr 2005 20:09:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D39Qgo023824 for ; Tue, 12 Apr 2005 20:09:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3D39Qgj005866 for ; Tue, 12 Apr 2005 20:09:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3D39Qr3005865 for xorp-cvs@icir.org; Wed, 13 Apr 2005 03:09:26 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 03:09:26 GMT From: Pavlin Radoslavov Message-Id: <200504130309.j3D39Qr3005865@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-13 03:09:26 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: * Update step 1100 by adding some more details about editing the Web pages. * Update step 2300 by using a better mechanism to get and refer to the current xorp/VERSION file. Revision Changes Path 1.34 +10 -6 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 04:53:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 21:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3D4s14f073683 for ; Tue, 12 Apr 2005 21:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D4s1tI024753 for ; Tue, 12 Apr 2005 21:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D4s1SO016311; Tue, 12 Apr 2005 21:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D4r1SO016292 for ; Tue, 12 Apr 2005 21:53:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D4r1Z2024747 for ; Tue, 12 Apr 2005 21:53:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3D4r1VZ006953 for ; Tue, 12 Apr 2005 21:53:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3D4r1jw006952 for xorp-cvs@icir.org; Wed, 13 Apr 2005 04:53:01 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 04:53:01 GMT From: Pavlin Radoslavov Message-Id: <200504130453.j3D4r1jw006952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-13 04:53:01 UTC XORP CVS repository Modified files: LiveCD livecd.sh Log message: Misc fixes and cleanup: * Bug fix in variable name: "done_g" -> "done_b" * Add a new step to compile and install Python * Fix some of the dialog messages * Increase the height of some of the dialog messages if they include a variable that may be a long filename. Otherwise, the filename may not be printed. * Select the kernel config patch file based on the OS version Revision Changes Path 1.12 +106 -55 other/LiveCD/livecd.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 04:53:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 12 Apr 2005 21:54:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3D4s3MR073698 for ; Tue, 12 Apr 2005 21:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D4s3YT024755 for ; Tue, 12 Apr 2005 21:54:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D4s2SO016322; Tue, 12 Apr 2005 21:54:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3D4rKSO016301 for ; Tue, 12 Apr 2005 21:53:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3D4rKa4024749 for ; Tue, 12 Apr 2005 21:53:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3D4rK5P007004 for ; Tue, 12 Apr 2005 21:53:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3D4rK4C007003 for xorp-cvs@icir.org; Wed, 13 Apr 2005 04:53:20 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 04:53:20 GMT From: Pavlin Radoslavov Message-Id: <200504130453.j3D4rK4C007003@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-13 04:53:20 UTC XORP CVS repository Modified files: LiveCD README Log message: "13 steps" -> "14 steps" Revision Changes Path 1.4 +2 -2 other/LiveCD/README _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 21:08:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 14:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3DL92qH027346 for ; Wed, 13 Apr 2005 14:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DL910a036851 for ; Wed, 13 Apr 2005 14:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DL91SO015339; Wed, 13 Apr 2005 14:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DL8MSO015299 for ; Wed, 13 Apr 2005 14:08:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DL8MAS036847 for ; Wed, 13 Apr 2005 14:08:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3DL8L7M017341 for ; Wed, 13 Apr 2005 14:08:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3DL8LCk017340 for xorp-cvs@icir.org; Wed, 13 Apr 2005 21:08:21 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 21:08:21 GMT From: Pavlin Radoslavov Message-Id: <200504132108.j3DL8LCk017340@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea xorp/docs/libxipc xorp/docs/libxorp xorp/docs/mfea xorp/docs/mld6igmp xorp/docs/multicast xorp/docs/pim xorp/docs/pim_testsuite xorp/docs/rib xorp/docs/rtrmgr ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-13 21:08:21 UTC XORP CVS repository Modified files: docs/bgp bgp.tex docs/design_arch design_arch.tex error_handling.tex docs/fea fea.tex docs/libxipc libxipc_overview.tex xrl_interfaces.tex docs/libxorp libxorp_overview.tex docs/mfea mfea_arch.tex docs/mld6igmp mld6igmp_arch.tex docs/multicast multicast_arch.tex docs/pim pim_arch.tex docs/pim_testsuite pim_testsuite.tex docs/rib rib.tex docs/rtrmgr rtrmgr.tex docs/snmp snmp_overview.tex docs/test_harness test_harness.tex docs/user_manual user_manual.tex docs/xorpdev_101 xorpdev_101.tex Log message: Update the date to April 13, 2005 (to reflect the 1.1 release date). Revision Changes Path 1.15 +1 -1 xorp/docs/bgp/bgp.tex 1.16 +3 -3 xorp/docs/design_arch/design_arch.tex 1.34 +2 -2 xorp/docs/design_arch/error_handling.tex 1.15 +2 -2 xorp/docs/fea/fea.tex 1.14 +1 -1 xorp/docs/libxipc/libxipc_overview.tex 1.16 +1 -1 xorp/docs/libxipc/xrl_interfaces.tex 1.21 +3 -3 xorp/docs/libxorp/libxorp_overview.tex 1.19 +3 -3 xorp/docs/mfea/mfea_arch.tex 1.15 +3 -3 xorp/docs/mld6igmp/mld6igmp_arch.tex 1.16 +3 -3 xorp/docs/multicast/multicast_arch.tex 1.17 +3 -3 xorp/docs/pim/pim_arch.tex 1.38 +3 -3 xorp/docs/pim_testsuite/pim_testsuite.tex 1.18 +2 -2 xorp/docs/rib/rib.tex 1.31 +2 -2 xorp/docs/rtrmgr/rtrmgr.tex 1.22 +4 -4 xorp/docs/snmp/snmp_overview.tex 1.28 +1 -1 xorp/docs/test_harness/test_harness.tex 1.12 +2 -2 xorp/docs/user_manual/user_manual.tex 1.11 +3 -3 xorp/docs/xorpdev_101/xorpdev_101.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 21:09:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 14:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3DLA1rB027682 for ; Wed, 13 Apr 2005 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DLA1Xs036864 for ; Wed, 13 Apr 2005 14:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DLA1SO015376; Wed, 13 Apr 2005 14:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DL9uSO015369 for ; Wed, 13 Apr 2005 14:09:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DL9tHL036856 for ; Wed, 13 Apr 2005 14:09:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3DL9t3U017384 for ; Wed, 13 Apr 2005 14:09:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3DL9tK8017383 for xorp-cvs@icir.org; Wed, 13 Apr 2005 21:09:55 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 21:09:55 GMT From: Pavlin Radoslavov Message-Id: <200504132109.j3DL9tK8017383@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-13 21:09:55 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Update the 1.1 release date to 2005/04/13 Revision Changes Path 1.67 +2 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Wed Apr 13 22:05:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 15:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3DM61Bc045710 for ; Wed, 13 Apr 2005 15:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DM61UM037517 for ; Wed, 13 Apr 2005 15:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DM60SO017157; Wed, 13 Apr 2005 15:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3DM5QSO017136 for ; Wed, 13 Apr 2005 15:05:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3DM5QBA037512 for ; Wed, 13 Apr 2005 15:05:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3DM5Qlo080929 for ; Wed, 13 Apr 2005 15:05:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3DM5Qbh080928 for xorp-cvs@icir.org; Wed, 13 Apr 2005 22:05:26 GMT (envelope-from pavlin) Date: Wed, 13 Apr 2005 22:05:26 GMT From: Pavlin Radoslavov Message-Id: <200504132205.j3DM5Qbh080928@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/LiveCD Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-04-13 22:05:26 UTC XORP CVS repository Modified files: LiveCD livecd.sh Log message: Increase the height of one of the dialog messages in case the referred filename uses a very long path. Revision Changes Path 1.13 +2 -2 other/LiveCD/livecd.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:24:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4P1po038082 for ; Wed, 13 Apr 2005 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4P1Ne041306 for ; Wed, 13 Apr 2005 21:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4P1SO026597; Wed, 13 Apr 2005 21:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4O8SO026584 for ; Wed, 13 Apr 2005 21:24:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4O8nc041294 for ; Wed, 13 Apr 2005 21:24:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4O7HF004831 for ; Wed, 13 Apr 2005 21:24:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4O7qK004830 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:24:07 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:24:07 GMT From: Pavlin Radoslavov Message-Id: <200504140424.j3E4O7qK004830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-14 04:24:07 UTC XORP CVS repository Modified files: docs/user_manual snmp.tex Log message: Add a note that the SNMP support is broken for this release, but will be fixed after the release. Revision Changes Path 1.4 +5 -1 xorp/docs/user_manual/snmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:28:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:29:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4T0JB039105 for ; Wed, 13 Apr 2005 21:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4T013041341 for ; Wed, 13 Apr 2005 21:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4T0SO026703; Wed, 13 Apr 2005 21:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4SvSO026695 for ; Wed, 13 Apr 2005 21:28:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Svlc041339 for ; Wed, 13 Apr 2005 21:28:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Sv6X004959 for ; Wed, 13 Apr 2005 21:28:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4SvLT004958 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:28:57 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:28:57 GMT From: Pavlin Radoslavov Message-Id: <200504140428.j3E4SvLT004958@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:28:57 UTC XORP CVS repository Modified files: . design_docs.html html_src design_docs.html Log message: * Update the date and the version of all documents to refer to release 1.1 * Now the path name to all documents use "releases/" instead of "releases/current" to avoid any potential mismatch. * Add entries for the XORP User manual and the xorpdev_101 document. * Remove the "XORP Command Line Interface User Guide", and the "XORP Configuration Guide" entries, because they are replaced by the XORP User manual document. Revision Changes Path 1.14 +86 -86 www/design_docs.html 1.4 +83 -83 www/html_src/design_docs.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:33:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Y1Xi040354 for ; Wed, 13 Apr 2005 21:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Y146041392 for ; Wed, 13 Apr 2005 21:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4Y0SO026817; Wed, 13 Apr 2005 21:34:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4XNSO026795 for ; Wed, 13 Apr 2005 21:33:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4XMN0041388 for ; Wed, 13 Apr 2005 21:33:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4XMOj005088 for ; Wed, 13 Apr 2005 21:33:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4XMJD005087 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:33:22 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:33:22 GMT From: Pavlin Radoslavov Message-Id: <200504140433.j3E4XMJD005087@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:33:22 UTC XORP CVS repository Modified files: . downloads.html html_src downloads.html Log message: * Update the download page to refer to release 1.1 * Add MacOS X to the list of platforms XORP should run on * Add a new entry for release 1.1 * For all entries (old and most recent), add a pointer to the tarball with the documentation. * Remove the URL to the design docs overview page for all old releases, because the design docs page is not self-contained by each release (after release-0.5). Keeping a self-containing design docs overview page for all old releases is going to add just more complexity without much benefit. Revision Changes Path 1.36 +42 -23 www/downloads.html 1.9 +41 -22 www/html_src/downloads.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:34:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:35:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Z05l040607 for ; Wed, 13 Apr 2005 21:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Z0Hh041410 for ; Wed, 13 Apr 2005 21:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4Z0SO026859; Wed, 13 Apr 2005 21:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4YRSO026844 for ; Wed, 13 Apr 2005 21:34:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4YRv7041399 for ; Wed, 13 Apr 2005 21:34:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4YR0Z005172 for ; Wed, 13 Apr 2005 21:34:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4YR5R005171 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:34:27 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:34:27 GMT From: Pavlin Radoslavov Message-Id: <200504140434.j3E4YR5R005171@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:34:27 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Update the date for release 1.1 Revision Changes Path 1.38 +2 -2 www/getting_started.html 1.14 +1 -1 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:35:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4a1um040887 for ; Wed, 13 Apr 2005 21:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4a1pA041443 for ; Wed, 13 Apr 2005 21:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4a1SO026902; Wed, 13 Apr 2005 21:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4Z1SO026872 for ; Wed, 13 Apr 2005 21:35:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Z1Ee041412 for ; Wed, 13 Apr 2005 21:35:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4Z18T005252 for ; Wed, 13 Apr 2005 21:35:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4Z14k005251 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:35:01 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:35:01 GMT From: Pavlin Radoslavov Message-Id: <200504140435.j3E4Z14k005251@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:35:01 UTC XORP CVS repository Modified files: . index.html html_src index.html Log message: Update the page for release 1.1 Revision Changes Path 1.16 +2 -3 www/html_src/index.html 1.66 +3 -4 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:37:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4c1Si041417 for ; Wed, 13 Apr 2005 21:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4c1CK041456 for ; Wed, 13 Apr 2005 21:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4c0SO026957; Wed, 13 Apr 2005 21:38:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4b4SO026930 for ; Wed, 13 Apr 2005 21:37:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4b3MG041451 for ; Wed, 13 Apr 2005 21:37:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4b3oY005350 for ; Wed, 13 Apr 2005 21:37:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4b30c005349 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:37:03 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:37:03 GMT From: Pavlin Radoslavov Message-Id: <200504140437.j3E4b30c005349@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:37:03 UTC XORP CVS repository Modified files: . livecd.html html_src livecd.html Log message: * Update for release 1.1 * Now the URL to the ISO image is "releases/" instead of "releases/current". Thus, there is smaller chance the URL will point to the wrong ISO image. Revision Changes Path 1.7 +4 -4 www/html_src/livecd.html 1.27 +5 -5 www/livecd.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:19 2005 Subject: No subject Thu Apr 14 04:37:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4c2wb041432 for ; Wed, 13 Apr 2005 21:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4c1QX041458 for ; Wed, 13 Apr 2005 21:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4c1SO026968; Wed, 13 Apr 2005 21:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4bKSO026943 for ; Wed, 13 Apr 2005 21:37:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4bKrB041453 for ; Wed, 13 Apr 2005 21:37:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4bKOE005414 for ; Wed, 13 Apr 2005 21:37:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4bKjt005413 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:37:20 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:37:20 GMT From: Pavlin Radoslavov Message-Id: <200504140437.j3E4bKjt005413@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:37:20 UTC XORP CVS repository Modified files: . news.html html_src news.html Log message: Add a news item for release 1.1 Revision Changes Path 1.11 +9 -0 www/html_src/news.html 1.40 +10 -1 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 04:38:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4d1qh041687 for ; Wed, 13 Apr 2005 21:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4d13H041479 for ; Wed, 13 Apr 2005 21:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4d1SO026998; Wed, 13 Apr 2005 21:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4cDSO026981 for ; Wed, 13 Apr 2005 21:38:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4cCZP041464 for ; Wed, 13 Apr 2005 21:38:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4cCTe005486 for ; Wed, 13 Apr 2005 21:38:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4cCFV005485 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:38:12 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:38:12 GMT From: Pavlin Radoslavov Message-Id: <200504140438.j3E4cCFV005485@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:38:12 UTC XORP CVS repository Modified files: . snmp.html html_src snmp.html Log message: Fix the page to reflect the fact that now SNMP is disabled by default, and the command-line option to enable it is --with-snmp Revision Changes Path 1.3 +2 -2 www/html_src/snmp.html 1.7 +5 -5 www/snmp.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 04:39:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 21:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E4e13J041954 for ; Wed, 13 Apr 2005 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4e1he041505 for ; Wed, 13 Apr 2005 21:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4e1SO027035; Wed, 13 Apr 2005 21:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E4deSO027023 for ; Wed, 13 Apr 2005 21:39:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E4deLO041492 for ; Wed, 13 Apr 2005 21:39:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E4det6005552 for ; Wed, 13 Apr 2005 21:39:40 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E4deXf005551 for xorp-cvs@icir.org; Thu, 14 Apr 2005 04:39:40 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 04:39:40 GMT From: Pavlin Radoslavov Message-Id: <200504140439.j3E4deXf005551@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 04:39:40 UTC XORP CVS repository Modified files: . status.html html_src status.html Log message: * Update the date and the version for release 1.1 * Remove old text for the finder status, that is not needed anymore. * Add a note that currently the SNMP status is broken, but will be fixed immediately after the release. Revision Changes Path 1.8 +5 -5 www/html_src/status.html 1.16 +6 -6 www/status.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 05:08:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 22:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E591re049146 for ; Wed, 13 Apr 2005 22:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E591sf041834 for ; Wed, 13 Apr 2005 22:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E591SO027794; Wed, 13 Apr 2005 22:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E58oSO027783 for ; Wed, 13 Apr 2005 22:08:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E58o50041832 for ; Wed, 13 Apr 2005 22:08:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E58oSA006364 for ; Wed, 13 Apr 2005 22:08:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E58onb006363 for xorp-cvs@icir.org; Thu, 14 Apr 2005 05:08:50 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 05:08:50 GMT From: Pavlin Radoslavov Message-Id: <200504140508.j3E58onb006363@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 05:08:50 UTC XORP CVS repository Modified files: html_src downloads.html . downloads.html Log message: Update the MD5 checksup of the source code tarball. Revision Changes Path 1.37 +2 -2 www/downloads.html 1.10 +1 -1 www/html_src/downloads.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 05:09:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 13 Apr 2005 22:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E5A1FD049406 for ; Wed, 13 Apr 2005 22:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E5A18L041847 for ; Wed, 13 Apr 2005 22:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E5A0SO027827; Wed, 13 Apr 2005 22:10:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E59NSO027809 for ; Wed, 13 Apr 2005 22:09:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E59Neu041838 for ; Wed, 13 Apr 2005 22:09:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E59Mmw006441 for ; Wed, 13 Apr 2005 22:09:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E59Msn006440 for xorp-cvs@icir.org; Thu, 14 Apr 2005 05:09:22 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 05:09:22 GMT From: Pavlin Radoslavov Message-Id: <200504140509.j3E59Msn006440@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-14 05:09:22 UTC XORP CVS repository Modified files: . livecd.html html_src livecd.html Log message: Update the MD5 checksup of the LiveCD. Revision Changes Path 1.8 +1 -1 www/html_src/livecd.html 1.28 +2 -2 www/livecd.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 09:33:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 02:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E9Y1Ww003720 for ; Thu, 14 Apr 2005 02:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9Y1Ri044843 for ; Thu, 14 Apr 2005 02:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9Y1SO004020; Thu, 14 Apr 2005 02:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9XdSO003995 for ; Thu, 14 Apr 2005 02:33:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9Xdgg044835 for ; Thu, 14 Apr 2005 02:33:39 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E9Xdoc008530 for ; Thu, 14 Apr 2005 02:33:39 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E9XdmU008529 for xorp-cvs@icir.org; Thu, 14 Apr 2005 09:33:39 GMT (envelope-from atanu) Date: Thu, 14 Apr 2005 09:33:39 GMT From: Atanu Ghosh Message-Id: <200504140933.j3E9XdmU008529@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-14 09:33:38 UTC XORP CVS repository Modified files: etc/templates snmp.tp Log message: Correct the pathname to the script to start snmpd. Revision Changes Path 1.13 +2 -2 xorp/etc/templates/snmp.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 09:38:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 02:39:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E9d0e2004741 for ; Thu, 14 Apr 2005 02:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9d0L0044897 for ; Thu, 14 Apr 2005 02:39:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9d0SO004133; Thu, 14 Apr 2005 02:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9ccSO004124 for ; Thu, 14 Apr 2005 02:38:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9cbLq044892 for ; Thu, 14 Apr 2005 02:38:37 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E9cbXf008655 for ; Thu, 14 Apr 2005 02:38:37 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E9cb2W008654 for xorp-cvs@icir.org; Thu, 14 Apr 2005 09:38:37 GMT (envelope-from atanu) Date: Thu, 14 Apr 2005 09:38:37 GMT From: Atanu Ghosh Message-Id: <200504140938.j3E9cb2W008654@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-14 09:38:37 UTC XORP CVS repository Modified files: mibs Makefile.am Log message: Explicitly add -lstdc++ for libnetsnmpxorp. Obtained from: Bruce. Revision Changes Path 1.30 +3 -2 xorp/mibs/Makefile.am _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 09:42:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 02:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E9h1NU008516 for ; Thu, 14 Apr 2005 02:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9h1cJ044949 for ; Thu, 14 Apr 2005 02:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9h1SO004226; Thu, 14 Apr 2005 02:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9gxSO004220 for ; Thu, 14 Apr 2005 02:42:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9gxBf044946 for ; Thu, 14 Apr 2005 02:42:59 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E9gwVq008740 for ; Thu, 14 Apr 2005 02:42:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E9gwI1008739 for xorp-cvs@icir.org; Thu, 14 Apr 2005 09:42:58 GMT (envelope-from atanu) Date: Thu, 14 Apr 2005 09:42:58 GMT From: Atanu Ghosh Message-Id: <200504140942.j3E9gwI1008739@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-14 09:42:58 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.hh Log message: BGP sends route adds and deletes to the RIB via XRLs. Increase the window of outstanding XRLs from 1 to 100. Revision Changes Path 1.36 +2 -2 xorp/bgp/rib_ipc_handler.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 09:54:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 02:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3E9t1qK014890 for ; Thu, 14 Apr 2005 02:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9t1cC045058 for ; Thu, 14 Apr 2005 02:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9t0SO004449; Thu, 14 Apr 2005 02:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3E9sZSO004438 for ; Thu, 14 Apr 2005 02:54:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3E9sZvY045051 for ; Thu, 14 Apr 2005 02:54:35 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3E9sZ4S008863 for ; Thu, 14 Apr 2005 02:54:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3E9sZtw008862 for xorp-cvs@icir.org; Thu, 14 Apr 2005 09:54:35 GMT (envelope-from atanu) Date: Thu, 14 Apr 2005 09:54:35 GMT From: Atanu Ghosh Message-Id: <200504140954.j3E9sZtw008862@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-14 09:54:35 UTC XORP CVS repository Modified files: libxorp ref_trie.hh test_ref_trie.cc Log message: A problem in the assignment operator for PreOrderIterator and PostOrderIterator. If the entry that an iterator is pointing at in a trie has been deleted and then the iterator is assigned with an empty trie, the new trie point at zero was being updated instead of the old trie. Also added a regression test for this problem. Bug found by: MJH Revision Changes Path 1.23 +3 -3 xorp/libxorp/ref_trie.hh 1.11 +57 -1 xorp/libxorp/test_ref_trie.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 10:06:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 03:07:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EA708F024088 for ; Thu, 14 Apr 2005 03:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EA70NR045293 for ; Thu, 14 Apr 2005 03:07:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EA70SO004704; Thu, 14 Apr 2005 03:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EA6fSO004695 for ; Thu, 14 Apr 2005 03:06:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EA6feT045282 for ; Thu, 14 Apr 2005 03:06:41 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EA6fU8009151 for ; Thu, 14 Apr 2005 03:06:41 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EA6fpX009150 for xorp-cvs@icir.org; Thu, 14 Apr 2005 10:06:41 GMT (envelope-from atanu) Date: Thu, 14 Apr 2005 10:06:41 GMT From: Atanu Ghosh Message-Id: <200504141006.j3EA6fpX009150@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-14 10:06:41 UTC XORP CVS repository Modified files: libxorp ref_trie.hh Log message: Make the RefTrie destructor virtual, the RefTrie is the base class for the BgpTrie. The Deletion table deletes its BgpTrie by calling delete_self on the trie, which then calls delete on the base class RefTrie. Now that the destructor is virtual the BgpTrie destructor will be called even if the base class is deleted. Revision Changes Path 1.24 +2 -2 xorp/libxorp/ref_trie.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 10:42:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 03:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EAh1VN031566 for ; Thu, 14 Apr 2005 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAh1ZU045704 for ; Thu, 14 Apr 2005 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAh1SO005638; Thu, 14 Apr 2005 03:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAg6SO005618 for ; Thu, 14 Apr 2005 03:42:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAg6QG045700 for ; Thu, 14 Apr 2005 03:42:06 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EAg6A8009649 for ; Thu, 14 Apr 2005 03:42:06 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EAg6vP009648 for xorp-cvs@icir.org; Thu, 14 Apr 2005 10:42:06 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 10:42:06 GMT From: Mark Handley Message-Id: <200504141042.j3EAg6vP009648@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 10:42:05 UTC XORP CVS repository Modified files: . contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirror_operation.html mirrors.html news.html papers.html people.html porting.html roadmap.html snmp.html status.html xorp_vision.html scripts XorpOrgGenerator.py Log message: Fix bad links to now point to the user manual rather than the old obsolete documentation. Revision Changes Path 1.26 +2 -3 www/contributing.html 1.25 +2 -3 www/cvs.html 1.15 +2 -3 www/design_docs.html 1.38 +2 -3 www/downloads.html 1.12 +4 -5 www/empty.html 1.20 +2 -3 www/faq.html 1.39 +2 -3 www/getting_started.html 1.67 +2 -3 www/index.html 1.22 +4 -5 www/license.html 1.29 +2 -3 www/livecd.html 1.16 +4 -5 www/mailing_lists.html 1.4 +4 -5 www/mirror_operation.html 1.19 +4 -5 www/mirrors.html 1.41 +2 -3 www/news.html 1.10 +4 -5 www/papers.html 1.24 +4 -5 www/people.html 1.10 +4 -5 www/porting.html 1.6 +2 -3 www/roadmap.html 1.11 +3 -4 www/scripts/XorpOrgGenerator.py 1.8 +2 -3 www/snmp.html 1.17 +2 -3 www/status.html 1.8 +4 -5 www/xorp_vision.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 10:43:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 03:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EAi1q9031767 for ; Thu, 14 Apr 2005 03:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAi1dT045712 for ; Thu, 14 Apr 2005 03:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAi1SO005676; Thu, 14 Apr 2005 03:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAhHSO005652 for ; Thu, 14 Apr 2005 03:43:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAhHlQ045707 for ; Thu, 14 Apr 2005 03:43:17 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EAhHVa009753 for ; Thu, 14 Apr 2005 03:43:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EAhHo4009752 for xorp-cvs@icir.org; Thu, 14 Apr 2005 10:43:17 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 10:43:17 GMT From: Mark Handley Message-Id: <200504141043.j3EAhHo4009752@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 10:43:17 UTC XORP CVS repository Modified files: . contributing.html cvs.html design_docs.html downloads.html empty.html faq.html getting_started.html index.html license.html livecd.html mailing_lists.html mirror_operation.html mirrors.html news.html papers.html people.html porting.html roadmap.html snmp.html status.html xorp_vision.html scripts XorpOrgGenerator.py Log message: try again Revision Changes Path 1.27 +4 -4 www/contributing.html 1.26 +4 -4 www/cvs.html 1.16 +4 -4 www/design_docs.html 1.39 +4 -4 www/downloads.html 1.13 +4 -4 www/empty.html 1.21 +4 -4 www/faq.html 1.40 +4 -4 www/getting_started.html 1.68 +4 -4 www/index.html 1.23 +4 -4 www/license.html 1.30 +4 -4 www/livecd.html 1.17 +4 -4 www/mailing_lists.html 1.5 +4 -4 www/mirror_operation.html 1.20 +4 -4 www/mirrors.html 1.42 +4 -4 www/news.html 1.11 +4 -4 www/papers.html 1.25 +4 -4 www/people.html 1.11 +4 -4 www/porting.html 1.7 +4 -4 www/roadmap.html 1.12 +3 -3 www/scripts/XorpOrgGenerator.py 1.9 +4 -4 www/snmp.html 1.18 +4 -4 www/status.html 1.9 +4 -4 www/xorp_vision.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 10:50:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 03:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EAp1lg033184 for ; Thu, 14 Apr 2005 03:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAp1QH045842 for ; Thu, 14 Apr 2005 03:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAp1SO005820; Thu, 14 Apr 2005 03:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAo1SO005800 for ; Thu, 14 Apr 2005 03:50:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAo0Za045814 for ; Thu, 14 Apr 2005 03:50:00 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EAo0MX009898 for ; Thu, 14 Apr 2005 03:50:00 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EAo0Jo009897 for xorp-cvs@icir.org; Thu, 14 Apr 2005 10:50:00 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 10:50:00 GMT From: Mark Handley Message-Id: <200504141050.j3EAo0Jo009897@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 10:50:00 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Fix links from getting started to point at the user manual rather than the obsolete documentation. Revision Changes Path 1.41 +8 -9 www/getting_started.html 1.15 +5 -6 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 10:54:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 03:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EAt1r3033947 for ; Thu, 14 Apr 2005 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAt11b045882 for ; Thu, 14 Apr 2005 03:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAt1SO005939; Thu, 14 Apr 2005 03:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EAsKSO005923 for ; Thu, 14 Apr 2005 03:54:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EAsKkY045877 for ; Thu, 14 Apr 2005 03:54:20 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EAsKcX009989 for ; Thu, 14 Apr 2005 03:54:20 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EAsKC4009988 for xorp-cvs@icir.org; Thu, 14 Apr 2005 10:54:20 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 10:54:20 GMT From: Mark Handley Message-Id: <200504141054.j3EAsKC4009988@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 10:54:20 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Slight rewording Revision Changes Path 1.42 +4 -4 www/getting_started.html 1.16 +3 -3 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 11:21:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 04:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EBM24N039425 for ; Thu, 14 Apr 2005 04:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EBM2E6046198 for ; Thu, 14 Apr 2005 04:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EBM1SO006590; Thu, 14 Apr 2005 04:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EBL3SO006562 for ; Thu, 14 Apr 2005 04:21:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EBL3Ra046194 for ; Thu, 14 Apr 2005 04:21:03 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EBL3Ti010349 for ; Thu, 14 Apr 2005 04:21:03 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EBL3UB010348 for xorp-cvs@icir.org; Thu, 14 Apr 2005 11:21:03 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 11:21:03 GMT From: Mark Handley Message-Id: <200504141121.j3EBL3UB010348@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 11:21:03 UTC XORP CVS repository Modified files: . livecd.html html_src livecd.html Log message: Update the size of the live CD (it's now 132MB not 120MB) Revision Changes Path 1.9 +1 -1 www/html_src/livecd.html 1.31 +4 -4 www/livecd.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 13:25:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 06:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EDQ0a8063974 for ; Thu, 14 Apr 2005 06:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDQ0Dx047601 for ; Thu, 14 Apr 2005 06:26:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDQ0SO011167; Thu, 14 Apr 2005 06:26:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDPLSO011139 for ; Thu, 14 Apr 2005 06:25:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDPLFu047595 for ; Thu, 14 Apr 2005 06:25:21 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EDPLss011585 for ; Thu, 14 Apr 2005 06:25:21 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EDPLrB011584 for xorp-cvs@icir.org; Thu, 14 Apr 2005 13:25:21 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 13:25:21 GMT From: Mark Handley Message-Id: <200504141325.j3EDPLrB011584@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 13:25:21 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Fix link to Iasi web site. Revision Changes Path 1.15 +1 -1 www/html_src/mirrors.html 1.21 +4 -4 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 13:36:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 06:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EDb1b2066214 for ; Thu, 14 Apr 2005 06:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDb1kQ047743 for ; Thu, 14 Apr 2005 06:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDb0SO011489; Thu, 14 Apr 2005 06:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDanSO011473 for ; Thu, 14 Apr 2005 06:36:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDanF5047739 for ; Thu, 14 Apr 2005 06:36:49 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EDan7A011780 for ; Thu, 14 Apr 2005 06:36:49 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EDanHK011779 for xorp-cvs@icir.org; Thu, 14 Apr 2005 13:36:49 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 13:36:49 GMT From: Mark Handley Message-Id: <200504141336.j3EDanHK011779@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc/html_templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-04-14 13:36:49 UTC XORP CVS repository Modified files: docs/kdoc/html_templates index.html.top Log message: Fix bad link to CSS stylesheet Revision Changes Path 1.3 +1 -1 xorp/docs/kdoc/html_templates/index.html.top _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 13:43:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 06:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EDi1Yr067602 for ; Thu, 14 Apr 2005 06:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDi1X6047837 for ; Thu, 14 Apr 2005 06:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDi0SO011774; Thu, 14 Apr 2005 06:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDhdSO011762 for ; Thu, 14 Apr 2005 06:43:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDhdK0047832 for ; Thu, 14 Apr 2005 06:43:39 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EDhcTY011858 for ; Thu, 14 Apr 2005 06:43:38 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EDhc2Y011857 for xorp-cvs@icir.org; Thu, 14 Apr 2005 13:43:38 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 13:43:38 GMT From: Mark Handley Message-Id: <200504141343.j3EDhc2Y011857@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/papers Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 13:43:38 UTC XORP CVS repository Added files: papers xorp-nsdi.pdf Log message: Add NSDI paper. Revision Changes Path 1.1 +2741 -0 www/papers/xorp-nsdi.pdf (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 13:51:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 06:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EDq174069205 for ; Thu, 14 Apr 2005 06:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDq1V5047922 for ; Thu, 14 Apr 2005 06:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDq1SO012099; Thu, 14 Apr 2005 06:52:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDpESO012070 for ; Thu, 14 Apr 2005 06:51:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDpDF9047917 for ; Thu, 14 Apr 2005 06:51:13 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EDpDh1011967 for ; Thu, 14 Apr 2005 06:51:13 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EDpDix011966 for xorp-cvs@icir.org; Thu, 14 Apr 2005 13:51:13 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 13:51:13 GMT From: Mark Handley Message-Id: <200504141351.j3EDpDix011966@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 13:51:13 UTC XORP CVS repository Modified files: . papers.html html_src papers.html Log message: Update the list of XORP papers to include the NSDI paper. Revision Changes Path 1.2 +10 -0 www/html_src/papers.html 1.12 +13 -3 www/papers.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:20 2005 Subject: No subject Thu Apr 14 13:54:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 06:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EDt1DN069787 for ; Thu, 14 Apr 2005 06:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDt1eH047947 for ; Thu, 14 Apr 2005 06:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDt0SO012207; Thu, 14 Apr 2005 06:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EDsISO012184 for ; Thu, 14 Apr 2005 06:54:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EDsHA4047935 for ; Thu, 14 Apr 2005 06:54:17 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EDsHWj012037 for ; Thu, 14 Apr 2005 06:54:17 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EDsHn0012036 for xorp-cvs@icir.org; Thu, 14 Apr 2005 13:54:17 GMT (envelope-from mjh) Date: Thu, 14 Apr 2005 13:54:17 GMT From: Mark Handley Message-Id: <200504141354.j3EDsHn0012036@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-04-14 13:54:17 UTC XORP CVS repository Modified files: . papers.html html_src papers.html Log message: Fix typo Revision Changes Path 1.3 +2 -2 www/html_src/papers.html 1.13 +3 -3 www/papers.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Thu Apr 14 19:00:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 12:01:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3EJ1B8L032301 for ; Thu, 14 Apr 2005 12:01:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EJ1B9c052786 for ; Thu, 14 Apr 2005 12:01:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EJ1BSO023017; Thu, 14 Apr 2005 12:01:11 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3EJ0rSO022961 for ; Thu, 14 Apr 2005 12:00:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3EJ0qOe052780 for ; Thu, 14 Apr 2005 12:00:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3EJ0qE6016069 for ; Thu, 14 Apr 2005 12:00:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3EJ0qpa016068 for xorp-cvs@icir.org; Thu, 14 Apr 2005 19:00:52 GMT (envelope-from pavlin) Date: Thu, 14 Apr 2005 19:00:52 GMT From: Pavlin Radoslavov Message-Id: <200504141900.j3EJ0qpa016068@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-14 19:00:52 UTC XORP CVS repository Modified files: mibs Makefile.in Log message: Regenerate. Revision Changes Path 1.38 +1 -1 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:01:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F022qQ096906 for ; Thu, 14 Apr 2005 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F022OZ056033 for ; Thu, 14 Apr 2005 17:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F021SO003177; Thu, 14 Apr 2005 17:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F01qSO003166 for ; Thu, 14 Apr 2005 17:01:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F01p9X056030 for ; Thu, 14 Apr 2005 17:01:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F01pWb018552 for ; Thu, 14 Apr 2005 17:01:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F01poD018551 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:01:51 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 00:01:51 GMT From: Pavlin Radoslavov Message-Id: <200504150001.j3F01poD018551@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 00:01:51 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in Log message: Redefine the bin installation directory. Note: currently the bindir is not used inside the mibs directory, but it is better to add it just in case if it is needed in the future (and for consistency with the rest of the Makefile.am files). Revision Changes Path 1.31 +4 -1 xorp/mibs/Makefile.am 1.39 +4 -3 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:07:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:08:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F0853L098157 for ; Thu, 14 Apr 2005 17:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F085TX056104 for ; Thu, 14 Apr 2005 17:08:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F085SO003385; Thu, 14 Apr 2005 17:08:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F07xSO003373 for ; Thu, 14 Apr 2005 17:07:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F07xr8056100 for ; Thu, 14 Apr 2005 17:07:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F07xuT018682 for ; Thu, 14 Apr 2005 17:07:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F07xmA018681 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:07:59 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 00:07:59 GMT From: Pavlin Radoslavov Message-Id: <200504150007.j3F07xmA018681@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 00:07:59 UTC XORP CVS repository Modified files: . configure.in configure mibs configure configure.in Log message: Fix the handling of the --with-snmp configure flag. Previously, the AC_ARG_WITH(snmp) usage was incorrect. Revision Changes Path 1.144 +7 -5 xorp/configure 1.134 +9 -7 xorp/configure.in 1.10 +4 -5 xorp/mibs/configure 1.6 +6 -5 xorp/mibs/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:16:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:17:05 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F0H5x6099957 for ; Thu, 14 Apr 2005 17:17:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0H4Bl056198 for ; Thu, 14 Apr 2005 17:17:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0H4SO003614; Thu, 14 Apr 2005 17:17:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0GWSO003582 for ; Thu, 14 Apr 2005 17:16:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0GW09056196 for ; Thu, 14 Apr 2005 17:16:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F0GWVb018807 for ; Thu, 14 Apr 2005 17:16:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F0GWMK018806 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:16:32 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 00:16:32 GMT From: Pavlin Radoslavov Message-Id: <200504150016.j3F0GWMK018806@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 00:16:32 UTC XORP CVS repository Modified files: mibs configure configure.in Log message: Append "mibs" to the installation prefix, because we are using a separate configure.in to configure the mibs stuff, and we want to install everything relative to the xorp/mibs sub-directory. E.g., previously, the scripts inside the mibs/snmpdscripts were installed incorectly in the /usr/local/xorp/snmpdscripts directory. Now they are installed in the /usr/local/xorp/mibs/snmpdscripts directory. Bug found by: Atanu Revision Changes Path 1.11 +2 -0 xorp/mibs/configure 1.7 +8 -1 xorp/mibs/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:18:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F0J1Ix000515 for ; Thu, 14 Apr 2005 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0J1Fo056241 for ; Thu, 14 Apr 2005 17:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0J1SO003697; Thu, 14 Apr 2005 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0IMSO003669 for ; Thu, 14 Apr 2005 17:18:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0IM3S056235 for ; Thu, 14 Apr 2005 17:18:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F0IMlc018919 for ; Thu, 14 Apr 2005 17:18:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F0IMm3018918 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:18:22 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 00:18:22 GMT From: Pavlin Radoslavov Message-Id: <200504150018.j3F0IMm3018918@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 00:18:22 UTC XORP CVS repository Modified files: etc/templates snmp.tp Log message: Reverse-back the previous commit that changes the pathname to the scripts to start snmpd, because now the scripts are correctly installed in the mibs/snmpdscripts directory. Revision Changes Path 1.14 +2 -2 xorp/etc/templates/snmp.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:34:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F0Z11O003849 for ; Thu, 14 Apr 2005 17:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0Z0wq056390 for ; Thu, 14 Apr 2005 17:35:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0Z0SO004191; Thu, 14 Apr 2005 17:35:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0YhSO004182 for ; Thu, 14 Apr 2005 17:34:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0YgEK056385 for ; Thu, 14 Apr 2005 17:34:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F0Ygal019191 for ; Thu, 14 Apr 2005 17:34:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F0YgGi019190 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:34:42 GMT (envelope-from atanu) Date: Fri, 15 Apr 2005 00:34:42 GMT From: Atanu Ghosh Message-Id: <200504150034.j3F0YgGi019190@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-04-15 00:34:42 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Add DKUUG (The Danish UNIX User Group) as www8.xorp.org. Revision Changes Path 1.16 +7 -0 www/html_src/mirrors.html 1.22 +8 -1 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 00:42:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 17:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F0h1XF006627 for ; Thu, 14 Apr 2005 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0h1QU056478 for ; Thu, 14 Apr 2005 17:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0h1SO004384; Thu, 14 Apr 2005 17:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F0gSSO004375 for ; Thu, 14 Apr 2005 17:42:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F0gSVT056472 for ; Thu, 14 Apr 2005 17:42:28 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F0gSLT019394 for ; Thu, 14 Apr 2005 17:42:28 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F0gSGm019393 for xorp-cvs@icir.org; Fri, 15 Apr 2005 00:42:28 GMT (envelope-from atanu) Date: Fri, 15 Apr 2005 00:42:28 GMT From: Atanu Ghosh Message-Id: <200504150042.j3F0gSGm019393@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-15 00:42:28 UTC XORP CVS repository Modified files: libxorp test_ref_trie.cc Log message: Use the cooler constructor: IPv4Net n1(IPv4("1.2.1.0"), 24) -> IPv4Net n1("1.2.1.0/24") Requested by: Pavlin Revision Changes Path 1.12 +3 -3 xorp/libxorp/test_ref_trie.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 02:41:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 19:42:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F2g1Kw034213 for ; Thu, 14 Apr 2005 19:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F2g1Zs057781 for ; Thu, 14 Apr 2005 19:42:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F2g1SO007675; Thu, 14 Apr 2005 19:42:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F2faSO007657 for ; Thu, 14 Apr 2005 19:41:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F2farZ057771 for ; Thu, 14 Apr 2005 19:41:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F2fahR045114 for ; Thu, 14 Apr 2005 19:41:36 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F2fahE045113 for xorp-cvs@icir.org; Fri, 15 Apr 2005 02:41:36 GMT (envelope-from atanu) Date: Fri, 15 Apr 2005 02:41:36 GMT From: Atanu Ghosh Message-Id: <200504150241.j3F2fahE045113@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-15 02:41:36 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: Sending routes from BGP to the RIB is achieved using XRLs. BGP allows a window of XRLs to be inflight at any time. Yesterday the window was increased from 1 to 100. The XRL layer can refuse to accept an XRL for transmission if for example its internal buffers are full. If there are no route add/delete XRLs in flight and the XRL layer refuses to accept an XRL BGP considers this to be a fatal error. The assumption is if there are no XRLs in flight how can the XRL layer be refusing an XRL. This assertion was seen on xorp8 today, add some XLOG_WARNING messages to give a hint as to why the XRLs are being refused. Revision Changes Path 1.64 +13 -1 xorp/bgp/rib_ipc_handler.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 02:52:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 19:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F2r1a8036444 for ; Thu, 14 Apr 2005 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F2r1jw057921 for ; Thu, 14 Apr 2005 19:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F2r1SO007983; Thu, 14 Apr 2005 19:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F2qYSO007967 for ; Thu, 14 Apr 2005 19:52:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F2qXxC057919 for ; Thu, 14 Apr 2005 19:52:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F2qXX8045344 for ; Thu, 14 Apr 2005 19:52:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F2qXFu045343 for xorp-cvs@icir.org; Fri, 15 Apr 2005 02:52:33 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 02:52:33 GMT From: Pavlin Radoslavov Message-Id: <200504150252.j3F2qXFu045343@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 02:52:33 UTC XORP CVS repository Modified files: . index.html html_src index.html Log message: Add a pointer to the release notes for information about changes between releases. Requested by: Mark Handley Revision Changes Path 1.17 +3 -1 www/html_src/index.html 1.69 +6 -4 www/index.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 03:38:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 20:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F3d20X045747 for ; Thu, 14 Apr 2005 20:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3d1Xt058380 for ; Thu, 14 Apr 2005 20:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3d1SO009189; Thu, 14 Apr 2005 20:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3cjSO009170 for ; Thu, 14 Apr 2005 20:38:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3cjAb058376 for ; Thu, 14 Apr 2005 20:38:45 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F3ciNP045766 for ; Thu, 14 Apr 2005 20:38:44 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F3ci3S045765 for xorp-cvs@icir.org; Fri, 15 Apr 2005 03:38:44 GMT (envelope-from atanu) Date: Fri, 15 Apr 2005 03:38:44 GMT From: Atanu Ghosh Message-Id: <200504150338.j3F3ci3S045765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-15 03:38:44 UTC XORP CVS repository Modified files: bgp xrl_shell_funcs.sh bgp/harness xrl_shell_funcs.sh Log message: Replace "echo -n" with echo, call_xrl no longer generates an unnecessary newline, so we need to generate it ourselves. Revision Changes Path 1.10 +12 -12 xorp/bgp/harness/xrl_shell_funcs.sh 1.11 +15 -15 xorp/bgp/xrl_shell_funcs.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 03:39:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 20:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F3e1Yj045957 for ; Thu, 14 Apr 2005 20:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3e1No058394 for ; Thu, 14 Apr 2005 20:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3e0SO009218; Thu, 14 Apr 2005 20:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3diSO009209 for ; Thu, 14 Apr 2005 20:39:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3difS058388 for ; Thu, 14 Apr 2005 20:39:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F3div0045812 for ; Thu, 14 Apr 2005 20:39:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F3di8S045811 for xorp-cvs@icir.org; Fri, 15 Apr 2005 03:39:44 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 03:39:44 GMT From: Pavlin Radoslavov Message-Id: <200504150339.j3F3di8S045811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 03:39:44 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in Log message: Redefine the lib and pkglib installation directories so now the mibs libraries are installed in /usr/local/xorp/mibs directory. Previously, there were installed incorrectly in the /usr/local/xorp/mibs/lib/mibs/lib directory. Bug found by: Atanu Revision Changes Path 1.32 +5 -1 xorp/mibs/Makefile.am 1.40 +4 -2 xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 03:46:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 14 Apr 2005 20:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3F3l1Nr048996 for ; Thu, 14 Apr 2005 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3l1rG058468 for ; Thu, 14 Apr 2005 20:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3l0SO009364; Thu, 14 Apr 2005 20:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3F3k4SO009334 for ; Thu, 14 Apr 2005 20:46:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3F3k4MR058462 for ; Thu, 14 Apr 2005 20:46:04 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3F3k4YA045977 for ; Thu, 14 Apr 2005 20:46:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3F3k3uD045976 for xorp-cvs@icir.org; Fri, 15 Apr 2005 03:46:03 GMT (envelope-from atanu) Date: Fri, 15 Apr 2005 03:46:03 GMT From: Atanu Ghosh Message-Id: <200504150346.j3F3k3uD045976@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-04-15 03:46:03 UTC XORP CVS repository Modified files: policy term.cc Log message: Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=121 Submitted by: Marko Zec Revision Changes Path 1.6 +6 -6 xorp/policy/term.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 18:48:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 11:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FIn1FN036915 for ; Fri, 15 Apr 2005 11:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FIn1cF070458 for ; Fri, 15 Apr 2005 11:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FIn1SO007796; Fri, 15 Apr 2005 11:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FImYSO007775 for ; Fri, 15 Apr 2005 11:48:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FImYb9070454 for ; Fri, 15 Apr 2005 11:48:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FImY1U055434 for ; Fri, 15 Apr 2005 11:48:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FImY59055433 for xorp-cvs@icir.org; Fri, 15 Apr 2005 18:48:34 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 18:48:34 GMT From: Pavlin Radoslavov Message-Id: <200504151848.j3FImY59055433@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 18:48:34 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: * Add info how to start xorpsh in configurational mode * Add a note that on UNIX only an user who belongs to group "xorp" can run xorpsh in configurational mode. Requested by: Atanu Ghosh Revision Changes Path 1.43 +12 -1 www/getting_started.html 1.17 +11 -0 www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 19:25:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 12:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FJQ1Ur044294 for ; Fri, 15 Apr 2005 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FJQ1Tq070874 for ; Fri, 15 Apr 2005 12:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FJQ0SO009221; Fri, 15 Apr 2005 12:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FJPASO009193 for ; Fri, 15 Apr 2005 12:25:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FJPAi4070872 for ; Fri, 15 Apr 2005 12:25:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FJPAJF055774 for ; Fri, 15 Apr 2005 12:25:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FJPAWo055773 for xorp-cvs@icir.org; Fri, 15 Apr 2005 19:25:10 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 19:25:10 GMT From: Pavlin Radoslavov Message-Id: <200504151925.j3FJPAWo055773@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 19:25:09 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add a note that OpenBSD-3.6 and earlier don't have PIM kernel support Revision Changes Path 1.28 +4 -1 xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 20:32:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 13:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FKX1Ib058590 for ; Fri, 15 Apr 2005 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FKX0wG071867 for ; Fri, 15 Apr 2005 13:33:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FKX0SO011758; Fri, 15 Apr 2005 13:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FKWbSO011739 for ; Fri, 15 Apr 2005 13:32:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FKWbIO071859 for ; Fri, 15 Apr 2005 13:32:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FKWb6G056224 for ; Fri, 15 Apr 2005 13:32:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FKWbXY056223 for xorp-cvs@icir.org; Fri, 15 Apr 2005 20:32:37 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 20:32:37 GMT From: Pavlin Radoslavov Message-Id: <200504152032.j3FKWbXY056223@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 20:32:37 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: * Add a new task 0350 to send email to xorp-mirrors to tell all mirror admins to prepare for the forthcoming release. This email should be send 1 week in advance to give them enough time. * Fix the command to set the ReleaseVersion value. * Add a note that after the LiveCD ISO image is prepared, it must be explicitly compressed. * Modify the task for updating the livecd.html web page to mention the LiveCD size. * Add three new tasks after the release: 2955: notify the FreeBSD maintainer of net/xorp to update the entry [Note that currently there is no FreeBSD port entry for XORP] 2960: notify the NetBSD maintainer of net/xorp to update the entry 2965: notify the OpenBSD maintainer of net/xorp to update the entry Revision Changes Path 1.35 +42 -3 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 22:22:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMN1ij081149 for ; Fri, 15 Apr 2005 15:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMN1Zs073227 for ; Fri, 15 Apr 2005 15:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMN1SO015823; Fri, 15 Apr 2005 15:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMM3SO015799 for ; Fri, 15 Apr 2005 15:22:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMM3A4073216 for ; Fri, 15 Apr 2005 15:22:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMM3AK057095 for ; Fri, 15 Apr 2005 15:22:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMM3Y9057094 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:22:03 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:22:03 GMT From: Pavlin Radoslavov Message-Id: <200504152222.j3FMM3Y9057094@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:22:03 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Add a trailing '/' to one of the URLs to pacify a redirection warning by the Link Valet verification tool. Revision Changes Path 1.17 +1 -1 www/html_src/mirrors.html 1.23 +2 -2 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 22:22:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:23:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMN2sR081176 for ; Fri, 15 Apr 2005 15:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMN2N2073229 for ; Fri, 15 Apr 2005 15:23:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMN2SO015834; Fri, 15 Apr 2005 15:23:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMMsSO015808 for ; Fri, 15 Apr 2005 15:22:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMMsps073223 for ; Fri, 15 Apr 2005 15:22:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMMsqg057167 for ; Fri, 15 Apr 2005 15:22:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMMsAL057166 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:22:54 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:22:54 GMT From: Pavlin Radoslavov Message-Id: <200504152222.j3FMMsAL057166@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:22:54 UTC XORP CVS repository Modified files: html_src news.html . news.html Log message: Update some of the redirected links to pacify the Link Valet verification tool. Revision Changes Path 1.12 +2 -2 www/html_src/news.html 1.43 +5 -5 www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 22:23:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMO1TR081361 for ; Fri, 15 Apr 2005 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMO0Lt073243 for ; Fri, 15 Apr 2005 15:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMO0SO015883; Fri, 15 Apr 2005 15:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMNYSO015870 for ; Fri, 15 Apr 2005 15:23:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMNXvI073239 for ; Fri, 15 Apr 2005 15:23:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMNXaL057244 for ; Fri, 15 Apr 2005 15:23:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMNXx8057243 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:23:33 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:23:33 GMT From: Pavlin Radoslavov Message-Id: <200504152223.j3FMNXx8057243@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:23:33 UTC XORP CVS repository Modified files: html_src people.html . people.html Log message: Update the redirected URL to Luigi's web page to pacify the Link Valet verification tool. Revision Changes Path 1.4 +1 -1 www/html_src/people.html 1.26 +4 -4 www/people.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 22:24:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMP1kg081592 for ; Fri, 15 Apr 2005 15:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMP1sn073267 for ; Fri, 15 Apr 2005 15:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMP1SO015944; Fri, 15 Apr 2005 15:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMO3SO015895 for ; Fri, 15 Apr 2005 15:24:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMO2WO073245 for ; Fri, 15 Apr 2005 15:24:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMO2hR057316 for ; Fri, 15 Apr 2005 15:24:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMO2GM057315 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:24:02 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:24:02 GMT From: Pavlin Radoslavov Message-Id: <200504152224.j3FMO2GM057315@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:24:02 UTC XORP CVS repository Modified files: html_src snmp.html . snmp.html Log message: Update one of the redirected URLs to pacify the Link Valet verification tool. Revision Changes Path 1.4 +1 -1 www/html_src/snmp.html 1.10 +4 -4 www/snmp.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:21 2005 Subject: No subject Fri Apr 15 22:35:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:36:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMa3tx084035 for ; Fri, 15 Apr 2005 15:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMa376073359 for ; Fri, 15 Apr 2005 15:36:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMa3SO016369; Fri, 15 Apr 2005 15:36:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMZuSO016339 for ; Fri, 15 Apr 2005 15:35:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMZuLR073357 for ; Fri, 15 Apr 2005 15:35:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMZtCR057519 for ; Fri, 15 Apr 2005 15:35:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMZtS8057518 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:35:55 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:35:55 GMT From: Pavlin Radoslavov Message-Id: <200504152235.j3FMZtS8057518@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:35:55 UTC XORP CVS repository Modified files: html_src mirrors.html . mirrors.html Log message: Remove a bogus "" tag. Bug found by the WDG HTML Validator tool. Revision Changes Path 1.18 +1 -2 www/html_src/mirrors.html 1.24 +2 -3 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Fri Apr 15 22:38:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMd2PT084738 for ; Fri, 15 Apr 2005 15:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMd1US073411 for ; Fri, 15 Apr 2005 15:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMd1SO016463; Fri, 15 Apr 2005 15:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMcESO016431 for ; Fri, 15 Apr 2005 15:38:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMcEvF073407 for ; Fri, 15 Apr 2005 15:38:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMcEvm057643 for ; Fri, 15 Apr 2005 15:38:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMcEKC057642 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:38:14 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:38:14 GMT From: Pavlin Radoslavov Message-Id: <200504152238.j3FMcEKC057642@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-04-15 22:38:14 UTC XORP CVS repository Modified files: html_src xorp_vision.html . xorp_vision.html Log message: Fix a warning found by the WDG HTML Validator: the

tags must be outside the tags. Revision Changes Path 1.5 +4 -4 www/html_src/xorp_vision.html 1.10 +7 -7 www/xorp_vision.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Fri Apr 15 22:43:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 15:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FMi1ae085961 for ; Fri, 15 Apr 2005 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMi1ZJ073463 for ; Fri, 15 Apr 2005 15:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMi1SO016634; Fri, 15 Apr 2005 15:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FMhVSO016617 for ; Fri, 15 Apr 2005 15:43:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FMhVfX073457 for ; Fri, 15 Apr 2005 15:43:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FMhVuO057746 for ; Fri, 15 Apr 2005 15:43:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FMhV60057745 for xorp-cvs@icir.org; Fri, 15 Apr 2005 22:43:31 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 22:43:31 GMT From: Pavlin Radoslavov Message-Id: <200504152243.j3FMhV60057745@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 22:43:31 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: * Add task 2725 to verify all the links on the XORP web site by using the WDG Link Valet tool. * Add task 2750 to verify the HTML on the XORP web site by the WDG HTML Validator tool. Revision Changes Path 1.36 +19 -1 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Fri Apr 15 23:36:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 16:37:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3FNb2fZ008182 for ; Fri, 15 Apr 2005 16:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FNb2IT074005 for ; Fri, 15 Apr 2005 16:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FNb1SO018244; Fri, 15 Apr 2005 16:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3FNarSO018238 for ; Fri, 15 Apr 2005 16:36:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3FNarVi074002 for ; Fri, 15 Apr 2005 16:36:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3FNarEw058154 for ; Fri, 15 Apr 2005 16:36:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3FNarmi058153 for xorp-cvs@icir.org; Fri, 15 Apr 2005 23:36:53 GMT (envelope-from pavlin) Date: Fri, 15 Apr 2005 23:36:53 GMT From: Pavlin Radoslavov Message-Id: <200504152336.j3FNarmi058153@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/devnotes Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-15 23:36:53 UTC XORP CVS repository Modified files: devnotes release_process.txt Log message: * Add an URL to the NetBSD's URL for requesting changes to the net/xorp entry. * Fix typos Revision Changes Path 1.37 +8 -4 xorp/devnotes/release_process.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 00:03:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 17:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G041lH015804 for ; Fri, 15 Apr 2005 17:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G041hO074270 for ; Fri, 15 Apr 2005 17:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G041SO019219; Fri, 15 Apr 2005 17:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G03ESO019158 for ; Fri, 15 Apr 2005 17:03:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G03EQn074262 for ; Fri, 15 Apr 2005 17:03:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G03EeP058382 for ; Fri, 15 Apr 2005 17:03:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G03EDn058381 for xorp-cvs@icir.org; Sat, 16 Apr 2005 00:03:14 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 00:03:14 GMT From: Pavlin Radoslavov Message-Id: <200504160003.j3G03EDn058381@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/kdoc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 00:03:14 UTC XORP CVS repository Modified files: docs/kdoc gen-kdoc.sh Log message: Use file "libxorp/callback_nodebug.hh" instead of "libxorp/callback.hh" to generate the libxorp-callback KDOC documentation, because libxorp/callback.hh itself is just used to include the files with the real callback implementation. Bug found by: Atanu Ghosh Revision Changes Path 1.22 +2 -2 xorp/docs/kdoc/gen-kdoc.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 01:54:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 18:55:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G1t2nx037895 for ; Fri, 15 Apr 2005 18:55:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G1t1sB075313 for ; Fri, 15 Apr 2005 18:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G1t1SO022098; Fri, 15 Apr 2005 18:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G1sVSO022083 for ; Fri, 15 Apr 2005 18:54:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G1sU4H075304 for ; Fri, 15 Apr 2005 18:54:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G1sU38067536 for ; Fri, 15 Apr 2005 18:54:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G1sUm4067535 for xorp-cvs@icir.org; Sat, 16 Apr 2005 01:54:30 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 01:54:30 GMT From: Pavlin Radoslavov Message-Id: <200504160154.j3G1sUm4067535@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 01:54:30 UTC XORP CVS repository Modified files: pim DEVNOTES Log message: KeepAliveTimer(S,G) -> KeepaliveTimer(S,G) to reflect the new terminology in the -11 draft. Revision Changes Path 1.3 +2 -2 xorp/pim/DEVNOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:02:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G231XW039494 for ; Fri, 15 Apr 2005 19:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G2311T075403 for ; Fri, 15 Apr 2005 19:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G231SO022233; Fri, 15 Apr 2005 19:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G22RSO022214 for ; Fri, 15 Apr 2005 19:02:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G22ROF075401 for ; Fri, 15 Apr 2005 19:02:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G22RtG067665 for ; Fri, 15 Apr 2005 19:02:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G22Rt3067664 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:02:27 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:02:27 GMT From: Pavlin Radoslavov Message-Id: <200504160202.j3G22Rt3067664@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:02:27 UTC XORP CVS repository Modified files: pim TODO Log message: * Add PIM spec related TODO items. * SPT bit -> SPTbit (accordign to the -11 I-D terminology). Revision Changes Path 1.82 +18 -2 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:03:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:04:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G2430W039703 for ; Fri, 15 Apr 2005 19:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G243S1075415 for ; Fri, 15 Apr 2005 19:04:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G242SO022314; Fri, 15 Apr 2005 19:04:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G23oSO022305 for ; Fri, 15 Apr 2005 19:03:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G23nBW075411 for ; Fri, 15 Apr 2005 19:03:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G23nYW067801 for ; Fri, 15 Apr 2005 19:03:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G23nAc067800 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:03:49 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:03:49 GMT From: Pavlin Radoslavov Message-Id: <200504160203.j3G23nAc067800@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:03:49 UTC XORP CVS repository Modified files: pim pim_proto_hello.cc Log message: Gen ID -> GenID [to reflect the -11 I-D terminology] Revision Changes Path 1.19 +2 -2 xorp/pim/pim_proto_hello.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:04:26 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G251oE039910 for ; Fri, 15 Apr 2005 19:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G251FZ075432 for ; Fri, 15 Apr 2005 19:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G251SO022344; Fri, 15 Apr 2005 19:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G24QSO022331 for ; Fri, 15 Apr 2005 19:04:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G24QlZ075421 for ; Fri, 15 Apr 2005 19:04:26 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G24QQG067870 for ; Fri, 15 Apr 2005 19:04:26 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G24Q7p067869 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:04:26 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:04:26 GMT From: Pavlin Radoslavov Message-Id: <200504160204.j3G24Q7p067869@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:04:26 UTC XORP CVS repository Modified files: pim pim_mfc.cc Log message: SPT bit -> SPTbit [to reflect the -11 I-D terminology] Revision Changes Path 1.25 +5 -5 xorp/pim/pim_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:05:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:06:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G260dp040128 for ; Fri, 15 Apr 2005 19:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G2602r075457 for ; Fri, 15 Apr 2005 19:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G260SO022384; Fri, 15 Apr 2005 19:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G254SO022355 for ; Fri, 15 Apr 2005 19:05:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G25472075434 for ; Fri, 15 Apr 2005 19:05:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G254lX067941 for ; Fri, 15 Apr 2005 19:05:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G254sR067940 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:05:04 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:05:04 GMT From: Pavlin Radoslavov Message-Id: <200504160205.j3G254sR067940@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:05:04 UTC XORP CVS repository Modified files: pim pim_mre_register.cc Log message: JoinPending -> Join-Pending [to reflect the -11 I-D terminology] Revision Changes Path 1.19 +8 -8 xorp/pim/pim_mre_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:06:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G271EI040328 for ; Fri, 15 Apr 2005 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G2716h075483 for ; Fri, 15 Apr 2005 19:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G270SO022417; Fri, 15 Apr 2005 19:07:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G262SO022395 for ; Fri, 15 Apr 2005 19:06:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G262BY075459 for ; Fri, 15 Apr 2005 19:06:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G261Aq068022 for ; Fri, 15 Apr 2005 19:06:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G261EN068021 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:06:01 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:06:01 GMT From: Pavlin Radoslavov Message-Id: <200504160206.j3G261EN068021@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:06:01 UTC XORP CVS repository Modified files: pim pim_mre_rpf.cc Log message: Remove an explicit referencing to a section number in the PIM-SM I-D, because the section number may change by the time the I-D becomes an RFC. Revision Changes Path 1.33 +2 -2 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 02:15:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 15 Apr 2005 19:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3G2G1Ko042098 for ; Fri, 15 Apr 2005 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G2G1sg075559 for ; Fri, 15 Apr 2005 19:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G2G1SO022642; Fri, 15 Apr 2005 19:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3G2FlSO022624 for ; Fri, 15 Apr 2005 19:15:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3G2FlfE075557 for ; Fri, 15 Apr 2005 19:15:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3G2FlTH068196 for ; Fri, 15 Apr 2005 19:15:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3G2Fldk068195 for xorp-cvs@icir.org; Sat, 16 Apr 2005 02:15:47 GMT (envelope-from pavlin) Date: Sat, 16 Apr 2005 02:15:47 GMT From: Pavlin Radoslavov Message-Id: <200504160215.j3G2Fldk068195@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-16 02:15:47 UTC XORP CVS repository Modified files: pim pim_mre.cc pim_mre.hh Log message: * Fix the return type of PimMre::rp_addr_string() * Add new field PimMre::_pmbr_addr to store the PMBR address, and add the appropriate methods to get/set/etc its value. * Move upfront the initialization of PimMre field values inside the PimMre constructor. * Clear the PMBR value inside method PimMre::cancel_keepalive_timer() [to comply with the -11 I-D PIM-SM spec]. Revision Changes Path 1.32 +38 -22 xorp/pim/pim_mre.cc 1.41 +17 -5 xorp/pim/pim_mre.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 16:30:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 16 Apr 2005 09:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3GGV1bO014688 for ; Sat, 16 Apr 2005 09:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3GGV1eX084903 for ; Sat, 16 Apr 2005 09:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3GGV0SO012090; Sat, 16 Apr 2005 09:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3GGU5SO012072 for ; Sat, 16 Apr 2005 09:30:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3GGU5Bj084882 for ; Sat, 16 Apr 2005 09:30:05 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3GGU4cp084091 for ; Sat, 16 Apr 2005 09:30:04 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3GGU46C084090 for xorp-cvs@icir.org; Sat, 16 Apr 2005 16:30:04 GMT (envelope-from atanu) Date: Sat, 16 Apr 2005 16:30:04 GMT From: Atanu Ghosh Message-Id: <200504161630.j3GGU46C084090@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-04-16 16:30:04 UTC XORP CVS repository Modified files: html_src mirrors.html Log message: The mirror run by the Danish Unix User Group is updated daily. Revision Changes Path 1.19 +1 -1 www/html_src/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sat Apr 16 16:31:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 16 Apr 2005 09:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3GGW1ES014926 for ; Sat, 16 Apr 2005 09:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3GGW1bK084913 for ; Sat, 16 Apr 2005 09:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3GGW1SO012126; Sat, 16 Apr 2005 09:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3GGVFSO012106 for ; Sat, 16 Apr 2005 09:31:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3GGVFmQ084907 for ; Sat, 16 Apr 2005 09:31:15 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3GGVFR6084168 for ; Sat, 16 Apr 2005 09:31:15 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3GGVFfe084167 for xorp-cvs@icir.org; Sat, 16 Apr 2005 16:31:15 GMT (envelope-from atanu) Date: Sat, 16 Apr 2005 16:31:15 GMT From: Atanu Ghosh Message-Id: <200504161631.j3GGVFfe084167@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-04-16 16:31:15 UTC XORP CVS repository Modified files: . mirrors.html Log message: The mirror run by the Danish Unix User Group is updated daily. Revision Changes Path 1.25 +2 -2 www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Sun Apr 17 19:34:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 17 Apr 2005 12:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3HJZ2Uj041965 for ; Sun, 17 Apr 2005 12:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3HJZ2NU099975 for ; Sun, 17 Apr 2005 12:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3HJZ1SO017772; Sun, 17 Apr 2005 12:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3HJYXSO017751 for ; Sun, 17 Apr 2005 12:34:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3HJYXCE099968 for ; Sun, 17 Apr 2005 12:34:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3HJYXOi096770 for ; Sun, 17 Apr 2005 12:34:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3HJYXXw096769 for xorp-cvs@icir.org; Sun, 17 Apr 2005 19:34:33 GMT (envelope-from pavlin) Date: Sun, 17 Apr 2005 19:34:33 GMT From: Pavlin Radoslavov Message-Id: <200504171934.j3HJYXXw096769@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-17 19:34:33 UTC XORP CVS repository Modified files: bgp/harness soak.sh Log message: Bug fixes: * Add missing '!' as part of the magic "#!" combination in the first line of the file. OLD: #/usr/bin/env bash NEW: #!/usr/bin/env bash [Apparently, this file is not used by "gmake check", hence this problem hasn't been noticed before] * Conditionally set variable srcdir, and use it to refer to other shell scripts in the source directory. Bug found by: Christian Weisgerber Revision Changes Path 1.4 +7 -4 xorp/bgp/harness/soak.sh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Mon Apr 18 19:12:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 12:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3IJD1we029727 for ; Mon, 18 Apr 2005 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3IJD10C015970 for ; Mon, 18 Apr 2005 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3IJD1SO024254; Mon, 18 Apr 2005 12:13:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3IJCLSO024230 for ; Mon, 18 Apr 2005 12:12:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3IJCKKT015961 for ; Mon, 18 Apr 2005 12:12:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3IJCK78009293 for ; Mon, 18 Apr 2005 12:12:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3IJCKgj009292 for xorp-cvs@icir.org; Mon, 18 Apr 2005 19:12:20 GMT (envelope-from pavlin) Date: Mon, 18 Apr 2005 19:12:20 GMT From: Pavlin Radoslavov Message-Id: <200504181912.j3IJCKgj009292@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-18 19:12:20 UTC XORP CVS repository Modified files: cli xrl_cli_node.cc Log message: Bug fix: if there is an XRL error, don't attempt to access some of the XRL return arguments inside inside the XRL callback, because the pointers to the return arguments may be NULL. Revision Changes Path 1.27 +2 -4 xorp/cli/xrl_cli_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Mon Apr 18 23:26:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 16:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3INR1ID080463 for ; Mon, 18 Apr 2005 16:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3INR1Xl018577 for ; Mon, 18 Apr 2005 16:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3INR0SO002873; Mon, 18 Apr 2005 16:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3INQKSO002857 for ; Mon, 18 Apr 2005 16:26:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3INQJZR018575 for ; Mon, 18 Apr 2005 16:26:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3INQJ5P011158 for ; Mon, 18 Apr 2005 16:26:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3INQJtB011157 for xorp-cvs@icir.org; Mon, 18 Apr 2005 23:26:19 GMT (envelope-from pavlin) Date: Mon, 18 Apr 2005 23:26:19 GMT From: Pavlin Radoslavov Message-Id: <200504182326.j3INQJtB011157@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-18 23:26:19 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a placeholder for the release notes for the next 1.2 release. Revision Changes Path 1.68 +60 -1 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Tue Apr 19 01:01:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 18:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J121kN099306 for ; Mon, 18 Apr 2005 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J1214w019448 for ; Mon, 18 Apr 2005 18:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J121SO006276; Mon, 18 Apr 2005 18:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J111SO006252 for ; Mon, 18 Apr 2005 18:01:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J111BS019440 for ; Mon, 18 Apr 2005 18:01:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J111ku028239 for ; Mon, 18 Apr 2005 18:01:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J111nV028238 for xorp-cvs@icir.org; Tue, 19 Apr 2005 01:01:01 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 01:01:01 GMT From: Pavlin Radoslavov Message-Id: <200504190101.j3J111nV028238@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 01:01:01 UTC XORP CVS repository Modified files: pim pim_mre.cc pim_mre_track_state.cc Log message: Update the inherited_olist(S,G) implementation according to the lastest -11 I-D spec. OLD: inherited_olist(S,G) = inherited_olist(S,G,rpt) (+) immediate_olist(S,G) NEW: inherited_olist(S,G) = inherited_olist(S,G,rpt) (+) joins(S,G) (+) pim_include(S,G) (-) lost_assert(S,G) Also, update the dependency-tracking mechanism to reflect the above change. Note that this change does not modify the result dependency-tracking graph itself. Revision Changes Path 1.33 +22 -4 xorp/pim/pim_mre.cc 1.34 +4 -2 xorp/pim/pim_mre_track_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Tue Apr 19 01:52:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 18:53:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J1r2au009541 for ; Mon, 18 Apr 2005 18:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J1r27r019942 for ; Mon, 18 Apr 2005 18:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J1r1SO007772; Mon, 18 Apr 2005 18:53:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J1qqSO007763 for ; Mon, 18 Apr 2005 18:52:52 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J1qqF0019940 for ; Mon, 18 Apr 2005 18:52:52 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J1qqNU035222 for ; Mon, 18 Apr 2005 18:52:52 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J1qqKG035221 for xorp-cvs@icir.org; Tue, 19 Apr 2005 01:52:52 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 01:52:52 GMT From: Pavlin Radoslavov Message-Id: <200504190152.j3J1qqKG035221@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 01:52:52 UTC XORP CVS repository Modified files: pim pim_mre.cc pim_mre_track_state.cc pim/docs pim_track_state_name.txt pim_track_state_num.txt Log message: Update the pim_exclude(S,G) implementation according to the lastest -11 I-D spec. OLD: pim_exclude(S,G) = { all interfaces I such that: ( (I_am_DR( I ) AND lost_assert(S,G,I) == FALSE ) OR AssertWinner(S,G,I) == me ) AND local_receiver_exclude(S,G,I) } NEW: pim_exclude(S,G) = { all interfaces I such that: ( (I_am_DR( I ) AND lost_assert(*,G,I) == FALSE ) OR AssertWinner(*,G,I) == me ) AND local_receiver_exclude(S,G,I) } Also, update the dependency-tracking mechanism to reflect the above change. Note that this change modifies the result dependency-tracking graph itself. Revision Changes Path 1.23 +0 -3 xorp/pim/docs/pim_track_state_name.txt 1.22 +1 -1 xorp/pim/docs/pim_track_state_num.txt 1.34 +3 -3 xorp/pim/pim_mre.cc 1.35 +3 -3 xorp/pim/pim_mre_track_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:22 2005 Subject: No subject Tue Apr 19 02:07:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 19:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J28234012582 for ; Mon, 18 Apr 2005 19:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J281qO020071 for ; Mon, 18 Apr 2005 19:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J281SO008139; Mon, 18 Apr 2005 19:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J27hSO008125 for ; Mon, 18 Apr 2005 19:07:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J27hso020068 for ; Mon, 18 Apr 2005 19:07:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J27hZn035648 for ; Mon, 18 Apr 2005 19:07:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J27hlY035647 for xorp-cvs@icir.org; Tue, 19 Apr 2005 02:07:43 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 02:07:43 GMT From: Pavlin Radoslavov Message-Id: <200504190207.j3J27hlY035647@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 02:07:43 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.83 +20 -1 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 02:10:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 19:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J2B1hj013200 for ; Mon, 18 Apr 2005 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2B1R1020110 for ; Mon, 18 Apr 2005 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2B0SO008235; Mon, 18 Apr 2005 19:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2A6SO008208 for ; Mon, 18 Apr 2005 19:10:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2A5Qj020088 for ; Mon, 18 Apr 2005 19:10:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J2A5rA035735 for ; Mon, 18 Apr 2005 19:10:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J2A5ga035734 for xorp-cvs@icir.org; Tue, 19 Apr 2005 02:10:05 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 02:10:05 GMT From: Pavlin Radoslavov Message-Id: <200504190210.j3J2A5ga035734@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 02:10:05 UTC XORP CVS repository Modified files: pim pim_mre_rpf.cc Log message: Fix some of the comments when it comes to calculating the upstream neighbor for an entry for which we know the multicast group address (i.e., all entries except (*,*,RP)): OLD: NBR(RPF_interface(RP), MRIB.next_hop(RP)) NEW: NBR(RPF_interface(RP(G)), MRIB.next_hop(RP(G))) Revision Changes Path 1.34 +4 -4 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 02:29:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 19:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J2U1MQ016920 for ; Mon, 18 Apr 2005 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2U10L020294 for ; Mon, 18 Apr 2005 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2U0SO008688; Mon, 18 Apr 2005 19:30:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2TOSO008660 for ; Mon, 18 Apr 2005 19:29:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2TNeI020280 for ; Mon, 18 Apr 2005 19:29:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J2TNju035944 for ; Mon, 18 Apr 2005 19:29:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J2TNEZ035943 for xorp-cvs@icir.org; Tue, 19 Apr 2005 02:29:23 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 02:29:23 GMT From: Pavlin Radoslavov Message-Id: <200504190229.j3J2TNEZ035943@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 02:29:23 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.84 +5 -1 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 02:31:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 19:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J2W1DG017355 for ; Mon, 18 Apr 2005 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2W1uc020326 for ; Mon, 18 Apr 2005 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2W1SO008746; Mon, 18 Apr 2005 19:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2V3SO008720 for ; Mon, 18 Apr 2005 19:31:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2V3xe020321 for ; Mon, 18 Apr 2005 19:31:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J2V3Bw036026 for ; Mon, 18 Apr 2005 19:31:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J2V3ZF036025 for xorp-cvs@icir.org; Tue, 19 Apr 2005 02:31:03 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 02:31:03 GMT From: Pavlin Radoslavov Message-Id: <200504190231.j3J2V3ZF036025@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 02:31:03 UTC XORP CVS repository Modified files: pim TODO pim_mrt_mfc.cc Log message: "Keepalive timer" -> "Keepalive Timer" to reflect the terminology in the lastest -11 I-D spec. Revision Changes Path 1.85 +2 -2 xorp/pim/TODO 1.23 +3 -3 xorp/pim/pim_mrt_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 02:32:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 19:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J2X1Fd017546 for ; Mon, 18 Apr 2005 19:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2X1eY020334 for ; Mon, 18 Apr 2005 19:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2X1SO008785; Mon, 18 Apr 2005 19:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J2WiSO008777 for ; Mon, 18 Apr 2005 19:32:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J2WitB020332 for ; Mon, 18 Apr 2005 19:32:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J2WiHr036095 for ; Mon, 18 Apr 2005 19:32:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J2Wilh036094 for xorp-cvs@icir.org; Tue, 19 Apr 2005 02:32:44 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 02:32:44 GMT From: Pavlin Radoslavov Message-Id: <200504190232.j3J2Wilh036094@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 02:32:44 UTC XORP CVS repository Modified files: pim TODO pim_mre.cc Log message: "keepalive timer" -> "Keepalive Timer" to reflect the terminology in the lastest -11 I-D spec. Revision Changes Path 1.86 +2 -2 xorp/pim/TODO 1.35 +2 -2 xorp/pim/pim_mre.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 03:23:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 20:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J3O1Gp027706 for ; Mon, 18 Apr 2005 20:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J3O1mJ020801 for ; Mon, 18 Apr 2005 20:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J3O1SO010168; Mon, 18 Apr 2005 20:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J3NgSO010158 for ; Mon, 18 Apr 2005 20:23:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J3Ng8u020798 for ; Mon, 18 Apr 2005 20:23:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J3Ngc7036552 for ; Mon, 18 Apr 2005 20:23:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J3NgO9036551 for xorp-cvs@icir.org; Tue, 19 Apr 2005 03:23:42 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 03:23:42 GMT From: Pavlin Radoslavov Message-Id: <200504190323.j3J3NgO9036551@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 03:23:42 UTC XORP CVS repository Modified files: pim TODO Log message: * Add a spec-related TODO entry * Remove a TODO entry that is already done. Revision Changes Path 1.87 +3 -14 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Tue Apr 19 03:27:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 18 Apr 2005 20:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3J3S1U7028561 for ; Mon, 18 Apr 2005 20:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J3S1Hs020847 for ; Mon, 18 Apr 2005 20:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J3S1SO010259; Mon, 18 Apr 2005 20:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3J3RJSO010239 for ; Mon, 18 Apr 2005 20:27:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3J3RJg1020841 for ; Mon, 18 Apr 2005 20:27:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3J3RJfB039629 for ; Mon, 18 Apr 2005 20:27:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3J3RJHh039628 for xorp-cvs@icir.org; Tue, 19 Apr 2005 03:27:19 GMT (envelope-from pavlin) Date: Tue, 19 Apr 2005 03:27:19 GMT From: Pavlin Radoslavov Message-Id: <200504190327.j3J3RJHh039628@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-19 03:27:19 UTC XORP CVS repository Modified files: pim pim_mrt_mfc.cc Log message: Update the implementation of the following procedure inside PimMrt::receive_data() to match the lastest -11 I-D spec: "On receipt of data from S to G on interface iif:" Revision Changes Path 1.24 +25 -11 xorp/pim/pim_mrt_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 03:43:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Apr 2005 20:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K3i2n3007244 for ; Tue, 19 Apr 2005 20:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K3i1RK037844 for ; Tue, 19 Apr 2005 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K3i1SO025954; Tue, 19 Apr 2005 20:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K3hTSO025943 for ; Tue, 19 Apr 2005 20:43:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K3hTFY037840 for ; Tue, 19 Apr 2005 20:43:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K3hT6N090800 for ; Tue, 19 Apr 2005 20:43:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K3hTAo090799 for xorp-cvs@icir.org; Wed, 20 Apr 2005 03:43:29 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 03:43:29 GMT From: Pavlin Radoslavov Message-Id: <200504200343.j3K3hTAo090799@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 03:43:29 UTC XORP CVS repository Modified files: pim pim_mre_data.cc pim_mre_track_state.cc Log message: Update the implementation for Update_SPTbit(S,G,iif) according to the lastest -11 I-D spec. Also, update the dependency state machine to reflect the change. Note that this update does not change the result dependency state graph. Revision Changes Path 1.16 +3 -2 xorp/pim/pim_mre_data.cc 1.36 +2 -1 xorp/pim/pim_mre_track_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 03:51:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 19 Apr 2005 20:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K3q1ge008824 for ; Tue, 19 Apr 2005 20:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K3q08k037940 for ; Tue, 19 Apr 2005 20:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K3q0SO026125; Tue, 19 Apr 2005 20:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K3pNSO026106 for ; Tue, 19 Apr 2005 20:51:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K3pM7M037938 for ; Tue, 19 Apr 2005 20:51:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K3pMQv090972 for ; Tue, 19 Apr 2005 20:51:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K3pMxv090971 for xorp-cvs@icir.org; Wed, 20 Apr 2005 03:51:22 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 03:51:22 GMT From: Pavlin Radoslavov Message-Id: <200504200351.j3K3pMxv090971@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 03:51:22 UTC XORP CVS repository Modified files: pim TODO Log message: Remove a TODO entry that has been completed in the past. Revision Changes Path 1.88 +1 -6 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 07:23:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 00:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K7O2nI050624 for ; Wed, 20 Apr 2005 00:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K7O2rL039925 for ; Wed, 20 Apr 2005 00:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K7O1SO001223; Wed, 20 Apr 2005 00:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K7NGSO001205 for ; Wed, 20 Apr 2005 00:23:16 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K7NFgp039919 for ; Wed, 20 Apr 2005 00:23:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K7NFUC092776 for ; Wed, 20 Apr 2005 00:23:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K7NFSt092775 for xorp-cvs@icir.org; Wed, 20 Apr 2005 07:23:15 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 07:23:15 GMT From: Pavlin Radoslavov Message-Id: <200504200723.j3K7NFSt092775@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 07:23:15 UTC XORP CVS repository Modified files: pim TODO Log message: * Add a spec-related TODO entry * "state-machine" -> "state machine" (for consistency with the spec language). Revision Changes Path 1.89 +6 -2 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 07:24:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 00:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K7P1Q1050826 for ; Wed, 20 Apr 2005 00:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K7P1sj039935 for ; Wed, 20 Apr 2005 00:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K7P1SO001249; Wed, 20 Apr 2005 00:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K7O1SO001218 for ; Wed, 20 Apr 2005 00:24:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K7O0Qp039923 for ; Wed, 20 Apr 2005 00:24:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K7O05u092831 for ; Wed, 20 Apr 2005 00:24:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K7O0Wx092830 for xorp-cvs@icir.org; Wed, 20 Apr 2005 07:24:00 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 07:24:00 GMT From: Pavlin Radoslavov Message-Id: <200504200724.j3K7O0Wx092830@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 07:24:00 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre_register.cc Log message: "state-machine" -> "state machine" (for consistency with the language of the lastest -11 I-D spec). Revision Changes Path 1.42 +2 -2 xorp/pim/pim_mre.hh 1.20 +2 -2 xorp/pim/pim_mre_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:20:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9L1B8075539 for ; Wed, 20 Apr 2005 02:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9L1kF041490 for ; Wed, 20 Apr 2005 02:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9L0SO004019; Wed, 20 Apr 2005 02:21:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9KXSO004008 for ; Wed, 20 Apr 2005 02:20:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9KXUc041485 for ; Wed, 20 Apr 2005 02:20:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9KXAb000735 for ; Wed, 20 Apr 2005 02:20:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9KX79000734 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:20:33 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:20:33 GMT From: Pavlin Radoslavov Message-Id: <200504200920.j3K9KX79000734@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:20:33 UTC XORP CVS repository Modified files: mrt mrib_table.cc mrib_table.hh Log message: * Add a mechanism to conditionally place all removed Mrib entries on a list instead of automatically deleting them. By default, the removed Mrib entries are still deleted (the original behavior), but this can be changed at any time by calling a simple MribTable method. This mechanism is needed in case users of the MribTable need to keep referring to the deleted Mrib entries for a while. * Get rid of the "friend class MribTable" statement inside the MribLookup class, and add the appropriate MribLookup methods. * Minor cleanup Revision Changes Path 1.12 +94 -65 xorp/mrt/mrib_table.cc 1.10 +119 -13 xorp/mrt/mrib_table.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:34:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9Z10p078734 for ; Wed, 20 Apr 2005 02:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9Z1qv041648 for ; Wed, 20 Apr 2005 02:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9Z1SO004343; Wed, 20 Apr 2005 02:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9YmSO004334 for ; Wed, 20 Apr 2005 02:34:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9YmAh041643 for ; Wed, 20 Apr 2005 02:34:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9YmJ1000971 for ; Wed, 20 Apr 2005 02:34:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9YmUi000970 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:34:48 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:34:48 GMT From: Pavlin Radoslavov Message-Id: <200504200934.j3K9YmUi000970@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:34:48 UTC XORP CVS repository Modified files: pim pim_mre_task.cc pim_mre_task.hh pim_mre_track_state.cc pim_mre_track_state.hh pim_mrib_table.cc pim_mrt.hh pim_mrt_task.cc Log message: Bug fix: If MRIB entries are deleted inside PIM, some of the PimMre entries may still refer to the deleted MRIB entries. This may happen during the execution of the tasks that are suppose to update the pointers to the corresponding Mrib entries (e.g., PimMre::mrib_rp() and mrib_s()). The solution is that on startup we change the MribTable behavior to keep all removed Mrib entries on a list instead of just deleting them. At the end of each add/remove Mrib entries transaction, and after we have scheduled all tasks to take care of the PimMre updates because of the MRIB changes (i.e., the PimMrt::add_task_mrib_changed() tasks), we add a (new) task to delete all Mrib entries that were just removed from the MribTable. The assumption is that by the time all actions by the add_task_mrib_changed() task are executed, there are no more pointers to the removed Mrib entries, and then we can safely delete them. Bug found by: "edrt" Revision Changes Path 1.15 +15 -1 xorp/pim/pim_mre_task.cc 1.9 +7 -1 xorp/pim/pim_mre_task.hh 1.37 +2 -1 xorp/pim/pim_mre_track_state.cc 1.21 +7 -1 xorp/pim/pim_mre_track_state.hh 1.11 +19 -2 xorp/pim/pim_mrib_table.cc 1.14 +2 -1 xorp/pim/pim_mrt.hh 1.19 +31 -1 xorp/pim/pim_mrt_task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:37:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9c3bP079559 for ; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9c3oO041697 for ; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9c2SO004448; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9b7SO004397 for ; Wed, 20 Apr 2005 02:37:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9b6H0041690 for ; Wed, 20 Apr 2005 02:37:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9b6Xr001083 for ; Wed, 20 Apr 2005 02:37:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9b6Xv001082 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:37:06 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:37:06 GMT From: Pavlin Radoslavov Message-Id: <200504200937.j3K9b6Xv001082@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:37:06 UTC XORP CVS repository Modified files: pim/docs pim_track_state_name.txt pim_track_state_num.txt Log message: Update the state dependency graph to include the new INPUT_STATE_IN_REMOVE_MISC input state. However, this input state is special, because it has no output actions and is used only to remove various entries when the event-driven task itself is deleted. Revision Changes Path 1.24 +2 -0 xorp/pim/docs/pim_track_state_name.txt 1.23 +1 -0 xorp/pim/docs/pim_track_state_num.txt _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:37:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:38:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9c3BA079580 for ; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9c3SI041699 for ; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9c3SO004459; Wed, 20 Apr 2005 02:38:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9bhSO004416 for ; Wed, 20 Apr 2005 02:37:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9bhcA041693 for ; Wed, 20 Apr 2005 02:37:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9bhUX001135 for ; Wed, 20 Apr 2005 02:37:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9bhnr001134 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:37:43 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:37:43 GMT From: Pavlin Radoslavov Message-Id: <200504200937.j3K9bhnr001134@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:37:43 UTC XORP CVS repository Modified files: pim DEVNOTES Log message: Add a note about the new PimMrt::add_task_delete_mrib_entries() task. Revision Changes Path 1.4 +12 -1 xorp/pim/DEVNOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:44:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9j1GL081175 for ; Wed, 20 Apr 2005 02:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9j13W041779 for ; Wed, 20 Apr 2005 02:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9j0SO004603; Wed, 20 Apr 2005 02:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9imSO004594 for ; Wed, 20 Apr 2005 02:44:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9imfQ041772 for ; Wed, 20 Apr 2005 02:44:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9ilJM001335 for ; Wed, 20 Apr 2005 02:44:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9ilZP001334 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:44:47 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:44:47 GMT From: Pavlin Radoslavov Message-Id: <200504200944.j3K9ilZP001334@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:44:47 UTC XORP CVS repository Modified files: pim pim_config.cc pim_nbr.cc pim_nbr.hh pim_node.hh pim_proto.h pim_proto_hello.cc pim_vif.cc pim_vif.hh test_pim.cc xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: * Rename methods, variables and corresponding XRLs that are related to the Propagation Delay field of the LAN Prune Delay option from lan_delay and foo_lan_delay to propagation_delay and foo_propagation_delay. This change it to reflect the terminology in the lastest -11 I-D spec. * Rename LAN_DELAY_MSEC_DEFAULT to PIM_PROPAGATION_DELAY_MSEC_DEFAULT * Rename LAN_OVERRIDE_INTERVAL_MSEC_DEFAULT to PIM_OVERRIDE_INTERVAL_MSEC_DEFAULT. Revision Changes Path 1.30 +14 -12 xorp/pim/pim_config.cc 1.15 +2 -2 xorp/pim/pim_nbr.cc 1.12 +5 -5 xorp/pim/pim_nbr.hh 1.50 +9 -9 xorp/pim/pim_node.hh 1.13 +3 -3 xorp/pim/pim_proto.h 1.20 +12 -12 xorp/pim/pim_proto_hello.cc 1.49 +11 -9 xorp/pim/pim_vif.cc 1.33 +5 -5 xorp/pim/pim_vif.hh 1.52 +3 -3 xorp/pim/test_pim.cc 1.82 +16 -13 xorp/pim/xrl_pim_node.cc 1.58 +6 -6 xorp/pim/xrl_pim_node.hh 1.26 +16 -16 xorp/pim/xrl_pim_shell_funcs.sh 1.19 +6 -6 xorp/xrl/interfaces/pim.xif 1.31 +27 -27 xorp/xrl/interfaces/pim_xif.cc 1.29 +17 -17 xorp/xrl/interfaces/pim_xif.hh 1.44 +4 -4 xorp/xrl/targets/pim.xrls 1.47 +31 -31 xorp/xrl/targets/pim_base.cc 1.50 +9 -9 xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:50:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9p13d082398 for ; Wed, 20 Apr 2005 02:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9p1ko041870 for ; Wed, 20 Apr 2005 02:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9p1SO004770; Wed, 20 Apr 2005 02:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9oJSO004751 for ; Wed, 20 Apr 2005 02:50:19 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9oJD6041862 for ; Wed, 20 Apr 2005 02:50:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9oIud011333 for ; Wed, 20 Apr 2005 02:50:18 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9oICV011332 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:50:18 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:50:18 GMT From: Pavlin Radoslavov Message-Id: <200504200950.j3K9oICV011332@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:50:18 UTC XORP CVS repository Modified files: pim pim_proto_hello.cc Log message: "DR priority option" -> "DR_Priority option" to reflect the language in the lastest -11 I-D spec. Revision Changes Path 1.21 +3 -3 xorp/pim/pim_proto_hello.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 09:52:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 02:53:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3K9r2tp082803 for ; Wed, 20 Apr 2005 02:53:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9r14k041899 for ; Wed, 20 Apr 2005 02:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9r1SO004832; Wed, 20 Apr 2005 02:53:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3K9q6SO004802 for ; Wed, 20 Apr 2005 02:52:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3K9q6U2041878 for ; Wed, 20 Apr 2005 02:52:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3K9q6G6014168 for ; Wed, 20 Apr 2005 02:52:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3K9q6MJ014167 for xorp-cvs@icir.org; Wed, 20 Apr 2005 09:52:06 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 09:52:06 GMT From: Pavlin Radoslavov Message-Id: <200504200952.j3K9q6MJ014167@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 09:52:06 UTC XORP CVS repository Modified files: pim test_pim.cc Log message: Reverse the previous commit, because it was done by accident. Revision Changes Path 1.53 +3 -3 xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 19:31:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 12:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KJW1H6002789 for ; Wed, 20 Apr 2005 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJW1P5049857 for ; Wed, 20 Apr 2005 12:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJW0SO024040; Wed, 20 Apr 2005 12:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJVHSO024022 for ; Wed, 20 Apr 2005 12:31:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJVH9r049851 for ; Wed, 20 Apr 2005 12:31:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KJVH1a024436 for ; Wed, 20 Apr 2005 12:31:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KJVHmq024435 for xorp-cvs@icir.org; Wed, 20 Apr 2005 19:31:17 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 19:31:17 GMT From: Pavlin Radoslavov Message-Id: <200504201931.j3KJVHmq024435@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 19:31:16 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for PIM-SM Revision Changes Path 1.69 +2 -2 xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:23 2005 Subject: No subject Wed Apr 20 19:35:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 12:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KJa10L003601 for ; Wed, 20 Apr 2005 12:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJa1sw049912 for ; Wed, 20 Apr 2005 12:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJa1SO024270; Wed, 20 Apr 2005 12:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJZNSO024242 for ; Wed, 20 Apr 2005 12:35:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJZNfl049908 for ; Wed, 20 Apr 2005 12:35:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KJZNW1027079 for ; Wed, 20 Apr 2005 12:35:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KJZNqm027078 for xorp-cvs@icir.org; Wed, 20 Apr 2005 19:35:23 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 19:35:23 GMT From: Pavlin Radoslavov Message-Id: <200504201935.j3KJZNqm027078@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 19:35:23 UTC XORP CVS repository Modified files: pim pim_vif.cc pim_vif.hh Log message: * Rename PimVif::vif_propagation_delay() and vif_override_interval() to effective_propagation_delay() and effective_override_interval() respectively to match the terminology in the newest -11 I-D spec. * Update the implementation of the above two methods to match the newest specification. Revision Changes Path 1.50 +44 -40 xorp/pim/pim_vif.cc 1.34 +3 -3 xorp/pim/pim_vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Wed Apr 20 19:45:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 12:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KJk1GQ005532 for ; Wed, 20 Apr 2005 12:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJk1UD049993 for ; Wed, 20 Apr 2005 12:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJk1SO024579; Wed, 20 Apr 2005 12:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KJjHSO024540 for ; Wed, 20 Apr 2005 12:45:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KJjHsb049983 for ; Wed, 20 Apr 2005 12:45:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KJjHWl027203 for ; Wed, 20 Apr 2005 12:45:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KJjHhW027202 for xorp-cvs@icir.org; Wed, 20 Apr 2005 19:45:17 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 19:45:17 GMT From: Pavlin Radoslavov Message-Id: <200504201945.j3KJjHhW027202@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 19:45:17 UTC XORP CVS repository Modified files: pim pim_mre_register.cc Log message: "Register-Stop timer" -> "Register-Stop Timer" to reflect the terminology in the newest -11 I-D spec. Revision Changes Path 1.21 +5 -5 xorp/pim/pim_mre_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Wed Apr 20 20:07:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 13:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KK81BW009855 for ; Wed, 20 Apr 2005 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KK81E5050231 for ; Wed, 20 Apr 2005 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KK81SO025475; Wed, 20 Apr 2005 13:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KK7RSO025450 for ; Wed, 20 Apr 2005 13:07:27 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KK7RQj050227 for ; Wed, 20 Apr 2005 13:07:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KK7RqK027429 for ; Wed, 20 Apr 2005 13:07:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KK7Rpp027428 for xorp-cvs@icir.org; Wed, 20 Apr 2005 20:07:27 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 20:07:27 GMT From: Pavlin Radoslavov Message-Id: <200504202007.j3KK7Rpp027428@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 20:07:27 UTC XORP CVS repository Modified files: pim TODO Log message: Add few notes. Revision Changes Path 1.90 +4 -1 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Wed Apr 20 20:23:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 13:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KKO1G7013063 for ; Wed, 20 Apr 2005 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KKO1Lq050409 for ; Wed, 20 Apr 2005 13:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KKO1SO026153; Wed, 20 Apr 2005 13:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KKNnSO026140 for ; Wed, 20 Apr 2005 13:23:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KKNnAC050405 for ; Wed, 20 Apr 2005 13:23:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KKNnPB027644 for ; Wed, 20 Apr 2005 13:23:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KKNnWR027643 for xorp-cvs@icir.org; Wed, 20 Apr 2005 20:23:49 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 20:23:49 GMT From: Pavlin Radoslavov Message-Id: <200504202023.j3KKNnWR027643@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 20:23:49 UTC XORP CVS repository Modified files: pim TODO Log message: * Add a TODO entry * Update a TODO entry Revision Changes Path 1.91 +18 -11 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Wed Apr 20 22:47:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 20 Apr 2005 15:48:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3KMm3lU041407 for ; Wed, 20 Apr 2005 15:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KMm3BS051912 for ; Wed, 20 Apr 2005 15:48:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KMm3SO001329; Wed, 20 Apr 2005 15:48:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3KMlLSO001273 for ; Wed, 20 Apr 2005 15:47:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3KMlL6Z051902 for ; Wed, 20 Apr 2005 15:47:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3KMlL5N028877 for ; Wed, 20 Apr 2005 15:47:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3KMlLFX028876 for xorp-cvs@icir.org; Wed, 20 Apr 2005 22:47:21 GMT (envelope-from pavlin) Date: Wed, 20 Apr 2005 22:47:21 GMT From: Pavlin Radoslavov Message-Id: <200504202247.j3KMlLFX028876@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-20 22:47:21 UTC XORP CVS repository Modified files: pim pim_mre.cc Log message: * Update the comments with the sample pseudo code taken from the PIM spec to match the newest -11 I-D spec. * Apply minor cosmetic tweaks to the implementation itself to match better the pseudo code. Revision Changes Path 1.36 +20 -12 xorp/pim/pim_mre.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 09:15:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 02:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3L9G2b0068954 for ; Thu, 21 Apr 2005 02:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3L9G2wi058047 for ; Thu, 21 Apr 2005 02:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3L9G1SO018078; Thu, 21 Apr 2005 02:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3L9FHSO018067 for ; Thu, 21 Apr 2005 02:15:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3L9FHxB058041 for ; Thu, 21 Apr 2005 02:15:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3L9FGOP044103 for ; Thu, 21 Apr 2005 02:15:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3L9FGWX044102 for xorp-cvs@icir.org; Thu, 21 Apr 2005 09:15:16 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 09:15:16 GMT From: Pavlin Radoslavov Message-Id: <200504210915.j3L9FGWX044102@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 09:15:16 UTC XORP CVS repository Modified files: pim pim_proto_register.cc Log message: Update the handling of PIM Register packets according to the "packet_arrives_on_rp_tunnel()" pseudo-code from the newest -11 I-D spec. Revision Changes Path 1.20 +120 -78 xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 09:18:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 02:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3L9J2Dv069539 for ; Thu, 21 Apr 2005 02:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3L9J1xQ058071 for ; Thu, 21 Apr 2005 02:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3L9J1SO018157; Thu, 21 Apr 2005 02:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3L9IUSO018137 for ; Thu, 21 Apr 2005 02:18:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3L9IUiK058068 for ; Thu, 21 Apr 2005 02:18:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3L9IUtE044169 for ; Thu, 21 Apr 2005 02:18:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3L9IUbC044168 for xorp-cvs@icir.org; Thu, 21 Apr 2005 09:18:30 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 09:18:30 GMT From: Pavlin Radoslavov Message-Id: <200504210918.j3L9IUbC044168@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 09:18:30 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.92 +8 -1 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 11:07:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 04:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LB8286091488 for ; Thu, 21 Apr 2005 04:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LB8103059236 for ; Thu, 21 Apr 2005 04:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LB81SO020786; Thu, 21 Apr 2005 04:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LB7tSO020778 for ; Thu, 21 Apr 2005 04:07:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LB7s6N059234 for ; Thu, 21 Apr 2005 04:07:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LB7s3r051130 for ; Thu, 21 Apr 2005 04:07:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LB7s0G051129 for xorp-cvs@icir.org; Thu, 21 Apr 2005 11:07:54 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 11:07:54 GMT From: Pavlin Radoslavov Message-Id: <200504211107.j3LB7s0G051129@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 11:07:53 UTC XORP CVS repository Modified files: pim DEVNOTES Log message: Add a note about suppression of PruneEcho messages. Revision Changes Path 1.5 +14 -2 xorp/pim/DEVNOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 11:08:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 04:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LB925M091678 for ; Thu, 21 Apr 2005 04:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LB925A059248 for ; Thu, 21 Apr 2005 04:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LB91SO020820; Thu, 21 Apr 2005 04:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LB8ASO020800 for ; Thu, 21 Apr 2005 04:08:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LB89EJ059238 for ; Thu, 21 Apr 2005 04:08:09 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LB89OP051197 for ; Thu, 21 Apr 2005 04:08:09 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LB89g0051196 for xorp-cvs@icir.org; Thu, 21 Apr 2005 11:08:09 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 11:08:09 GMT From: Pavlin Radoslavov Message-Id: <200504211108.j3LB89g0051196@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 11:08:09 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.93 +11 -3 xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 19:16:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 12:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LJH1iW001719 for ; Thu, 21 Apr 2005 12:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LJH0MP065989 for ; Thu, 21 Apr 2005 12:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LJH0SO008727; Thu, 21 Apr 2005 12:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LJGCSO008700 for ; Thu, 21 Apr 2005 12:16:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LJGB6R065983 for ; Thu, 21 Apr 2005 12:16:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LJGB2Y056975 for ; Thu, 21 Apr 2005 12:16:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LJGBbB056974 for xorp-cvs@icir.org; Thu, 21 Apr 2005 19:16:11 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 19:16:11 GMT From: Pavlin Radoslavov Message-Id: <200504211916.j3LJGBbB056974@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 19:16:11 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: "Expiry timer" -> "Expiry Timer" (for consistency with the terminology in the main PIM-SM spec). Revision Changes Path 1.37 +3 -3 xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 23:04:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 16:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LN51HR057421 for ; Thu, 21 Apr 2005 16:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LN517d068399 for ; Thu, 21 Apr 2005 16:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LN51SO017201; Thu, 21 Apr 2005 16:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LN4XSO017172 for ; Thu, 21 Apr 2005 16:04:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LN4XV8068392 for ; Thu, 21 Apr 2005 16:04:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LN4Xw5058865 for ; Thu, 21 Apr 2005 16:04:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LN4X1r058864 for xorp-cvs@icir.org; Thu, 21 Apr 2005 23:04:33 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 23:04:33 GMT From: Pavlin Radoslavov Message-Id: <200504212304.j3LN4X1r058864@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 23:04:33 UTC XORP CVS repository Modified files: . TODO Log message: Add two new TODO items. Revision Changes Path 1.15 +7 -1 xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 23:19:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 16:20:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LNK1QI060526 for ; Thu, 21 Apr 2005 16:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LNK1QL068565 for ; Thu, 21 Apr 2005 16:20:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LNK1SO017844; Thu, 21 Apr 2005 16:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LNJfSO017824 for ; Thu, 21 Apr 2005 16:19:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LNJfZe068557 for ; Thu, 21 Apr 2005 16:19:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LNJffJ059102 for ; Thu, 21 Apr 2005 16:19:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LNJeqb059101 for xorp-cvs@icir.org; Thu, 21 Apr 2005 23:19:40 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 23:19:40 GMT From: Pavlin Radoslavov Message-Id: <200504212319.j3LNJeqb059101@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 23:19:40 UTC XORP CVS repository Modified files: pim TODO pim_mre_rpf.cc Log message: Minor grammatical nits in comments. Revision Changes Path 1.94 +2 -2 xorp/pim/TODO 1.35 +2 -2 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Thu Apr 21 23:43:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 16:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3LNi1Gl065391 for ; Thu, 21 Apr 2005 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LNi1oY068815 for ; Thu, 21 Apr 2005 16:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LNi1SO018813; Thu, 21 Apr 2005 16:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3LNhNSO018786 for ; Thu, 21 Apr 2005 16:43:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3LNhNun068810 for ; Thu, 21 Apr 2005 16:43:23 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3LNhNLk059400 for ; Thu, 21 Apr 2005 16:43:23 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3LNhNTu059399 for xorp-cvs@icir.org; Thu, 21 Apr 2005 23:43:23 GMT (envelope-from pavlin) Date: Thu, 21 Apr 2005 23:43:23 GMT From: Pavlin Radoslavov Message-Id: <200504212343.j3LNhNTu059399@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-21 23:43:23 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc Log message: Rename (for consistency with the newest -11 I-D terminology): * "JoinTimer" -> "Join Timer" * "Restart the JoinTimer" -> "Set Join Timer to t_periodic" Revision Changes Path 1.43 +2 -2 xorp/pim/pim_mre.hh 1.33 +7 -7 xorp/pim/pim_mre_join_prune.cc 1.36 +9 -9 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Fri Apr 22 00:58:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 17:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3M0x23M080190 for ; Thu, 21 Apr 2005 17:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3M0x1jL069579 for ; Thu, 21 Apr 2005 17:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3M0x1SO021381; Thu, 21 Apr 2005 17:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3M0wXSO021367 for ; Thu, 21 Apr 2005 17:58:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3M0wXLI069575 for ; Thu, 21 Apr 2005 17:58:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3M0wXCE060064 for ; Thu, 21 Apr 2005 17:58:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3M0wXVl060063 for xorp-cvs@icir.org; Fri, 22 Apr 2005 00:58:33 GMT (envelope-from pavlin) Date: Fri, 22 Apr 2005 00:58:33 GMT From: Pavlin Radoslavov Message-Id: <200504220058.j3M0wXVl060063@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-22 00:58:32 UTC XORP CVS repository Modified files: pim pim_mre_rpf.cc Log message: Fix the implementation of PimMre::recompute_rpfp_nbr_wc_not_assert_changed() and PimMre::recompute_rpfp_nbr_sg_not_assert_changed() to consider the following text (from the newest -11 I-D spec): "Note that this transition does not occur if an Assert is active and the upstream interface does not change." Revision Changes Path 1.37 +31 -3 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Fri Apr 22 01:23:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 21 Apr 2005 18:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3M1O1K8085708 for ; Thu, 21 Apr 2005 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3M1O13d069871 for ; Thu, 21 Apr 2005 18:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3M1O1SO022032; Thu, 21 Apr 2005 18:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3M1NuSO022026 for ; Thu, 21 Apr 2005 18:23:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3M1NuVr069868 for ; Thu, 21 Apr 2005 18:23:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3M1Nun1060478 for ; Thu, 21 Apr 2005 18:23:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3M1NuaD060477 for xorp-cvs@icir.org; Fri, 22 Apr 2005 01:23:56 GMT (envelope-from pavlin) Date: Fri, 22 Apr 2005 01:23:56 GMT From: Pavlin Radoslavov Message-Id: <200504220123.j3M1NuaD060477@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-22 01:23:56 UTC XORP CVS repository Modified files: pim TODO pim_mre.hh pim_mre_join_prune.cc pim_mre_rpf.cc Log message: Rename (for consistency with the newest -11 I-D terminology): * "OverrideTimer" -> "Override Timer" * "KeepaliveTimer" -> "Keepalive Timer" Revision Changes Path 1.95 +2 -2 xorp/pim/TODO 1.44 +3 -3 xorp/pim/pim_mre.hh 1.34 +4 -4 xorp/pim/pim_mre_join_prune.cc 1.38 +2 -2 xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Fri Apr 22 22:08:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Apr 2005 15:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3MM92g0043778 for ; Fri, 22 Apr 2005 15:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3MM922h085667 for ; Fri, 22 Apr 2005 15:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3MM91SO001149; Fri, 22 Apr 2005 15:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3MM84SO001117 for ; Fri, 22 Apr 2005 15:08:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3MM84Zu085665 for ; Fri, 22 Apr 2005 15:08:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3MM84tV072638 for ; Fri, 22 Apr 2005 15:08:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3MM84h3072637 for xorp-cvs@icir.org; Fri, 22 Apr 2005 22:08:04 GMT (envelope-from pavlin) Date: Fri, 22 Apr 2005 22:08:04 GMT From: Pavlin Radoslavov Message-Id: <200504222208.j3MM84h3072637@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-22 22:08:04 UTC XORP CVS repository Modified files: rtrmgr main_rtrmgr.cc Log message: Modify the "-N" help string: add a note that -N doesn't start the processes. Revision Changes Path 1.60 +2 -2 xorp/rtrmgr/main_rtrmgr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Sat Apr 23 00:32:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 22 Apr 2005 17:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3N0X13d074086 for ; Fri, 22 Apr 2005 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3N0X10p087078 for ; Fri, 22 Apr 2005 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3N0X1SO006349; Fri, 22 Apr 2005 17:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3N0W5SO006312 for ; Fri, 22 Apr 2005 17:32:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3N0W5Fa087069 for ; Fri, 22 Apr 2005 17:32:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3N0W5jn083421 for ; Fri, 22 Apr 2005 17:32:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3N0W5Kl083420 for xorp-cvs@icir.org; Sat, 23 Apr 2005 00:32:05 GMT (envelope-from pavlin) Date: Sat, 23 Apr 2005 00:32:05 GMT From: Pavlin Radoslavov Message-Id: <200504230032.j3N0W5Kl083420@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-23 00:32:05 UTC XORP CVS repository Modified files: . TODO Log message: Remove the following TODO entry, because it should be a guideline rather than a one-time TODO item: "Make the code as POSIX as possible." Revision Changes Path 1.16 +1 -3; commitid: 145be4269975d7ea6; xorp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Mon Apr 25 17:34:40 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 10:35:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3PHZ4w5021676 for ; Mon, 25 Apr 2005 10:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PHZ46G031388 for ; Mon, 25 Apr 2005 10:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PHZ1Gq016179; Mon, 25 Apr 2005 10:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PHYeGq016152 for ; Mon, 25 Apr 2005 10:34:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PHYeEw031378 for ; Mon, 25 Apr 2005 10:34:40 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3PHYehH020123 for ; Mon, 25 Apr 2005 10:34:40 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3PHYeoI020122 for xorp-cvs@icir.org; Mon, 25 Apr 2005 17:34:40 GMT (envelope-from atanu) Date: Mon, 25 Apr 2005 17:34:40 GMT From: Atanu Ghosh Message-Id: <200504251734.j3PHYeoI020122@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-04-25 17:34:40 UTC XORP CVS repository Modified files: html_src mirror_operation.html Log message: Request information about the site as well as frequecy of update as well as a request to joing the mailing list. Revision Changes Path 1.2 +6 -1; commitid: 4e7f426d2a2f7ea6; www/html_src/mirror_operation.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Mon Apr 25 17:38:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 10:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3PHd1gV022728 for ; Mon, 25 Apr 2005 10:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PHd1ti031473 for ; Mon, 25 Apr 2005 10:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PHd0Gq016399; Mon, 25 Apr 2005 10:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PHcVGq016383 for ; Mon, 25 Apr 2005 10:38:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PHcV10031466 for ; Mon, 25 Apr 2005 10:38:31 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3PHcUpC020230 for ; Mon, 25 Apr 2005 10:38:30 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3PHcU6f020229 for xorp-cvs@icir.org; Mon, 25 Apr 2005 17:38:30 GMT (envelope-from atanu) Date: Mon, 25 Apr 2005 17:38:30 GMT From: Atanu Ghosh Message-Id: <200504251738.j3PHcU6f020229@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-04-25 17:38:30 UTC XORP CVS repository Modified files: . mirror_operation.html Log message: Request information about the site as well as frequency of update as well as a request to join the mailing list. Revision Changes Path 1.6 +9 -4; commitid: 4eea426d2b167ea6; www/mirror_operation.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Mon Apr 25 23:42:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 16:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3PNh2cx009126 for ; Mon, 25 Apr 2005 16:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PNh2Aa035606 for ; Mon, 25 Apr 2005 16:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PNh1Gq000843; Mon, 25 Apr 2005 16:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PNgvGq000836 for ; Mon, 25 Apr 2005 16:42:57 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PNgvRo035604 for ; Mon, 25 Apr 2005 16:42:57 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3PNgvXD029512 for ; Mon, 25 Apr 2005 16:42:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3PNgvso029511 for xorp-cvs@icir.org; Mon, 25 Apr 2005 23:42:57 GMT (envelope-from pavlin) Date: Mon, 25 Apr 2005 23:42:57 GMT From: Pavlin Radoslavov Message-Id: <200504252342.j3PNgvso029511@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-25 23:42:57 UTC XORP CVS repository Modified files: pim pim_proto_assert.cc Log message: Rename (for consistency with the newest -11 I-D terminology): * "RPT bit" -> "RPTbit" Revision Changes Path 1.24 +2 -2; commitid: 732d426d80517ea6; xorp/pim/pim_proto_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:24 2005 Subject: No subject Mon Apr 25 23:48:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 16:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3PNn1uo010558 for ; Mon, 25 Apr 2005 16:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PNn1Ij035658 for ; Mon, 25 Apr 2005 16:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PNn1Gq001053; Mon, 25 Apr 2005 16:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3PNmmGq001043 for ; Mon, 25 Apr 2005 16:48:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3PNmmbX035656 for ; Mon, 25 Apr 2005 16:48:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3PNmmdf029630 for ; Mon, 25 Apr 2005 16:48:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3PNmmec029629 for xorp-cvs@icir.org; Mon, 25 Apr 2005 23:48:48 GMT (envelope-from pavlin) Date: Mon, 25 Apr 2005 23:48:48 GMT From: Pavlin Radoslavov Message-Id: <200504252348.j3PNmmec029629@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-25 23:48:47 UTC XORP CVS repository Modified files: pim pim_mre_assert.cc Log message: Update the implementation of the (S,G) Assert state machine to match the specification in the newest newest -11 I-D spec: * Check the RPTbit when in "I am Assert Loser" state to match the following event: OLD: "Receive acceptable assert from current winner" NEW: "Receive acceptable assert with RPTbit clear from current winner" * Update one of the A6 actions: OLD: "If I is RPF_interface(S) set SPTbit(S,G) to TRUE." NEW: "If (I is RPF_interface(S)) AND (UpstreamJPState(S,G) == true) set SPTbit(S,G) to TRUE." Revision Changes Path 1.31 +7 -4; commitid: 737a426d80b67ea6; xorp/pim/pim_mre_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 01:15:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 18:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1G2O0031755 for ; Mon, 25 Apr 2005 18:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1G1Wg036489 for ; Mon, 25 Apr 2005 18:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q1G1Gq003954; Mon, 25 Apr 2005 18:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q1FgGq003944 for ; Mon, 25 Apr 2005 18:15:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1FgBY036487 for ; Mon, 25 Apr 2005 18:15:42 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1Fgdo030389 for ; Mon, 25 Apr 2005 18:15:42 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3Q1Fg5J030388 for xorp-cvs@icir.org; Tue, 26 Apr 2005 01:15:42 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 01:15:42 GMT From: Pavlin Radoslavov Message-Id: <200504260115.j3Q1Fg5J030388@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 01:15:42 UTC XORP CVS repository Modified files: pim pim_mre_assert.cc Log message: Update the implementation of the (*,G) Assert state machine to match the specification in the newest newest -11 I-D spec: * Check the RPTbit when in "I am Assert Loser" state to match the following events as described in Figure 11: "Receive acceptable assert from current winner with RPTbit clear [A2]" "Receive preferred assert with RPTbit set [A2]" Note that the above text hasn't changed since the -05 I-D, but the original implementation didn't consider the RPTbit because the "with RPTbit set" was only in Figure 11, but not in the corresponding table or the text that describes the events. This mismatch is still in the -11 I-D spec. Revision Changes Path 1.32 +6 -4; commitid: 7644426d94d67ea6; xorp/pim/pim_mre_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 01:18:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 18:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1J1jC032535 for ; Mon, 25 Apr 2005 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1J1o8036515 for ; Mon, 25 Apr 2005 18:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q1J1Gq004050; Mon, 25 Apr 2005 18:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q1IsGq004044 for ; Mon, 25 Apr 2005 18:18:54 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1Is0j036513 for ; Mon, 25 Apr 2005 18:18:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3Q1Isfv030463 for ; Mon, 25 Apr 2005 18:18:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3Q1IsgO030462 for xorp-cvs@icir.org; Tue, 26 Apr 2005 01:18:54 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 01:18:54 GMT From: Pavlin Radoslavov Message-Id: <200504260118.j3Q1IsgO030462@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 01:18:54 UTC XORP CVS repository Modified files: pim pim_proto_assert.cc Log message: * Simplify some of the comments that describe when the (*,G) assert messages should be applied to the (*,G) assert state machine. * Fix the source address in the AssertCancel(*,G) messages according to the lastest -11 I-D spec: Previously, the source address was typically set to RP(G); now the source address is set to zero. Revision Changes Path 1.25 +11 -17; commitid: 76da426d96537ea6; xorp/pim/pim_proto_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 02:16:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 19:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2H1o5046455 for ; Mon, 25 Apr 2005 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2H1pM037137 for ; Mon, 25 Apr 2005 19:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2H1Gq005599; Mon, 25 Apr 2005 19:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2GpGq005589 for ; Mon, 25 Apr 2005 19:16:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2GpN1037135 for ; Mon, 25 Apr 2005 19:16:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2Gptg033756 for ; Mon, 25 Apr 2005 19:16:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3Q2GpVq033755 for xorp-cvs@icir.org; Tue, 26 Apr 2005 02:16:51 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 02:16:51 GMT From: Pavlin Radoslavov Message-Id: <200504260216.j3Q2GpVq033755@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 02:16:51 UTC XORP CVS repository Modified files: pim pim_proto_join_prune_message.cc Log message: Update the implementation according to the lastest -11 I-D spec: The receiver of a Join/Prune message is the target router only if the Upstream Neighbor Address is set to the primary IP address on the receiving interface. Previously, the implementation was testing whether the Upstream Neighbor Address is any of the addresses on that interface. Revision Changes Path 1.21 +2 -2; commitid: 83a1426da3a37ea6; xorp/pim/pim_proto_join_prune_message.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 02:30:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2V1ia049870 for ; Mon, 25 Apr 2005 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2V1lr037264 for ; Mon, 25 Apr 2005 19:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2V1Gq005918; Mon, 25 Apr 2005 19:31:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2UhGq005912 for ; Mon, 25 Apr 2005 19:30:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2UhGR037260 for ; Mon, 25 Apr 2005 19:30:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2UhJt033934 for ; Mon, 25 Apr 2005 19:30:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3Q2Uhl9033933 for xorp-cvs@icir.org; Tue, 26 Apr 2005 02:30:43 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 02:30:43 GMT From: Pavlin Radoslavov Message-Id: <200504260230.j3Q2Uhl9033933@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 02:30:43 UTC XORP CVS repository Modified files: pim TODO Log message: Add several TODO entries. Revision Changes Path 1.96 +48 -1; commitid: 8473426da7cd7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 02:33:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 25 Apr 2005 19:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2Y1Hm050588 for ; Mon, 25 Apr 2005 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2Y1HH037283 for ; Mon, 25 Apr 2005 19:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2Y1Gq006043; Mon, 25 Apr 2005 19:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3Q2XSGq006004 for ; Mon, 25 Apr 2005 19:33:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2XSdI037279 for ; Mon, 25 Apr 2005 19:33:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3Q2XSf4034017 for ; Mon, 25 Apr 2005 19:33:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3Q2XSmo034016 for xorp-cvs@icir.org; Tue, 26 Apr 2005 02:33:28 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 02:33:28 GMT From: Pavlin Radoslavov Message-Id: <200504260233.j3Q2XSmo034016@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 02:33:28 UTC XORP CVS repository Modified files: pim TODO Log message: Update the PMBR spec sections references to point to Section 11 (Appendix A). Revision Changes Path 1.97 +6 -5; commitid: 84c6426da85a7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 20:28:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 13:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QKT2Z4083674 for ; Tue, 26 Apr 2005 13:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QKT1sQ050531 for ; Tue, 26 Apr 2005 13:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QKT1Gq010277; Tue, 26 Apr 2005 13:29:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QKSrGq010267 for ; Tue, 26 Apr 2005 13:28:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QKSrlc050529 for ; Tue, 26 Apr 2005 13:28:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QKSrPK045662 for ; Tue, 26 Apr 2005 13:28:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QKSrtD045661 for xorp-cvs@icir.org; Tue, 26 Apr 2005 20:28:53 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 20:28:53 GMT From: Pavlin Radoslavov Message-Id: <200504262028.j3QKSrtD045661@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 20:28:53 UTC XORP CVS repository Modified files: pim pim_proto_join_prune_message.cc Log message: * Update the sanity check for conflicting Join/Prune entries to match the lastest -11 I-D spec: - The combination "Join(S,G,rpt)" x "Prune(S,G)" was changed from "yes" to "?". - The combination "Prune(S,G,rpt)" x "Prune(S,G)" was changed from "?" to "yes". Note that in the -11 I-D spec there is a mismatch (the rules are assymetric) which may or may not be fixed in the final RFC: - Row "Join(S,G,rpt)" vs column "Prune(S,G)" was changed from "yes" to "?", but row "Prune(S,G)" vs column "Join(S,G,rpt)" still remains "yes". - Row "Prune(S,G,rpt)" vs column "Prune(S,G)" was changed from "?" to "yes", but row "Prune(S,G)" vs row "Prune(S,G,rpt)" still remains "?". * Fix a comment that describes how we handle the "?" entries in the J/P rules table. * Fix several grammatical typos. Revision Changes Path 1.22 +12 -11; commitid: b1d9426ea29b7ea6; xorp/pim/pim_proto_join_prune_message.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 21:41:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 14:42:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QLg30q034050 for ; Tue, 26 Apr 2005 14:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QLg3oZ051434 for ; Tue, 26 Apr 2005 14:42:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QLg3Gq013102; Tue, 26 Apr 2005 14:42:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QLfjGq013084 for ; Tue, 26 Apr 2005 14:41:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QLfiAt051432 for ; Tue, 26 Apr 2005 14:41:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QLfis8046548 for ; Tue, 26 Apr 2005 14:41:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QLfiWb046547 for xorp-cvs@icir.org; Tue, 26 Apr 2005 21:41:44 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 21:41:44 GMT From: Pavlin Radoslavov Message-Id: <200504262141.j3QLfiWb046547@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 21:41:44 UTC XORP CVS repository Modified files: pim pim_config.cc Log message: Cleanup some of the error messages. Revision Changes Path 1.31 +28 -28; commitid: b5b4426eb5917ea6; xorp/pim/pim_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 22:23:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 15:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QMO2ew044325 for ; Tue, 26 Apr 2005 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMO2ek051863 for ; Tue, 26 Apr 2005 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMO2Gq014777; Tue, 26 Apr 2005 15:24:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMNYGq014733 for ; Tue, 26 Apr 2005 15:23:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMNYMU051859 for ; Tue, 26 Apr 2005 15:23:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QMNYAc046923 for ; Tue, 26 Apr 2005 15:23:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QMNYUf046922 for xorp-cvs@icir.org; Tue, 26 Apr 2005 22:23:34 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 22:23:34 GMT From: Pavlin Radoslavov Message-Id: <200504262223.j3QMNYUf046922@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 22:23:34 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Rename (for consistency with the newest -11 I-D terminology): * "J/P Override Interval" -> "J/P_Override_Interval" Revision Changes Path 1.51 +2 -2; commitid: b606426eb5b57ea6; xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 22:24:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 15:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QMP3Mo044609 for ; Tue, 26 Apr 2005 15:25:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMP2Lv051886 for ; Tue, 26 Apr 2005 15:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMP2Gq014838; Tue, 26 Apr 2005 15:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMOgGq014804 for ; Tue, 26 Apr 2005 15:24:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMOf7w051872 for ; Tue, 26 Apr 2005 15:24:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QMOf2W047016 for ; Tue, 26 Apr 2005 15:24:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QMOfWi047015 for xorp-cvs@icir.org; Tue, 26 Apr 2005 22:24:41 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 22:24:41 GMT From: Pavlin Radoslavov Message-Id: <200504262224.j3QMOfWi047015@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 22:24:41 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc Log message: Cleanup one of the XRL error messages. Revision Changes Path 1.83 +2 -2; commitid: b78d426ebf8c7ea6; xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 22:26:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 15:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QMR1jC045132 for ; Tue, 26 Apr 2005 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMR1IC051925 for ; Tue, 26 Apr 2005 15:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMR1Gq014913; Tue, 26 Apr 2005 15:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMQ5Gq014892 for ; Tue, 26 Apr 2005 15:26:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMQ587051919 for ; Tue, 26 Apr 2005 15:26:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QMQ5gJ047106 for ; Tue, 26 Apr 2005 15:26:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QMQ5Lu047105 for xorp-cvs@icir.org; Tue, 26 Apr 2005 22:26:05 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 22:26:05 GMT From: Pavlin Radoslavov Message-Id: <200504262226.j3QMQ5Lu047105@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 22:26:05 UTC XORP CVS repository Modified files: pim pim_nbr.hh pim_vif.hh Log message: Rename (for consistency with the newest -11 I-D terminology): * "Propagation Delay" -> "Propagation_Delay" * "Override Interval" -> "Override_Interval" Revision Changes Path 1.13 +3 -3; commitid: b7d0426ebfbe7ea6; xorp/pim/pim_nbr.hh 1.35 +2 -2; commitid: b7d0426ebfbe7ea6; xorp/pim/pim_vif.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Tue Apr 26 22:40:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 15:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3QMf1s7048586 for ; Tue, 26 Apr 2005 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMf1tJ052073 for ; Tue, 26 Apr 2005 15:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMf1Gq015401; Tue, 26 Apr 2005 15:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3QMeXGq015381 for ; Tue, 26 Apr 2005 15:40:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3QMeWco052069 for ; Tue, 26 Apr 2005 15:40:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3QMeWBx047338 for ; Tue, 26 Apr 2005 15:40:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3QMeWW5047337 for xorp-cvs@icir.org; Tue, 26 Apr 2005 22:40:32 GMT (envelope-from pavlin) Date: Tue, 26 Apr 2005 22:40:32 GMT From: Pavlin Radoslavov Message-Id: <200504262240.j3QMeWW5047337@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-26 22:40:32 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Fix the comment with the t_override specification according to the lastest -11 I-D spec: OLD: t_override = rand(0, Override_Interval(I)) NEW: t_override = rand(0, Effective_Override_Interval(I)) Revision Changes Path 1.52 +2 -2; commitid: b8be426ec3467ea6; xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:09:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:10:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2A60u034200 for ; Tue, 26 Apr 2005 19:10:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2A5rV054346 for ; Tue, 26 Apr 2005 19:10:05 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2A5Gq022934; Tue, 26 Apr 2005 19:10:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R29pGq022923 for ; Tue, 26 Apr 2005 19:09:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R29oQX054337 for ; Tue, 26 Apr 2005 19:09:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R29oEu061349 for ; Tue, 26 Apr 2005 19:09:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R29ouT061348 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:09:50 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:09:50 GMT From: Pavlin Radoslavov Message-Id: <200504270209.j3R29ouT061348@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:09:50 UTC XORP CVS repository Modified files: pim pim_mfc.cc pim_mre.cc pim_mre.hh pim_mrt_mfc.cc pim_proto_register.cc Log message: Update the mechanism for setting the KAT(S,G) according to the lastest -11 I-D spec In the RP the KAT(S,G) is set to max(Keepalive_Period, RP_Keepalive_Period) when a Register-Stop is sent: * Add a flag to the PimMre entry to indicate whether the KAT(S,G) was set to Keepalive_Period or max(Keepalive_Period, RP_Keepalive_Period). The latter value is used in the RP when a Register-Stop is sent. * Test the new flag whenever the KAT(S,G) needs to be (re)start, so the appropriate KAT time value is used. Revision Changes Path 1.26 +3 -3; commitid: ef44426ef2357ea6; xorp/pim/pim_mfc.cc 1.37 +2 -3; commitid: ef44426ef2357ea6; xorp/pim/pim_mre.cc 1.45 +20 -4; commitid: ef44426ef2357ea6; xorp/pim/pim_mre.hh 1.25 +13 -29; commitid: ef44426ef2357ea6; xorp/pim/pim_mrt_mfc.cc 1.21 +10 -8; commitid: ef44426ef2357ea6; xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:10:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2B23p034466 for ; Tue, 26 Apr 2005 19:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2B195054377 for ; Tue, 26 Apr 2005 19:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2B1Gq022977; Tue, 26 Apr 2005 19:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2A7Gq022937 for ; Tue, 26 Apr 2005 19:10:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2A6H2054365 for ; Tue, 26 Apr 2005 19:10:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2A6iB061416 for ; Tue, 26 Apr 2005 19:10:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2A6Si061415 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:10:06 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:10:06 GMT From: Pavlin Radoslavov Message-Id: <200504270210.j3R2A6Si061415@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:10:06 UTC XORP CVS repository Modified files: pim TODO Log message: Add TODO entries. Revision Changes Path 1.98 +44 -1; commitid: efcd426ef4797ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:17:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2I2CU036444 for ; Tue, 26 Apr 2005 19:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2I2aE054486 for ; Tue, 26 Apr 2005 19:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2I1Gq023205; Tue, 26 Apr 2005 19:18:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2HiGq023197 for ; Tue, 26 Apr 2005 19:17:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2Hit6054480 for ; Tue, 26 Apr 2005 19:17:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2HiGW061593 for ; Tue, 26 Apr 2005 19:17:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2HiOo061592 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:17:44 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:17:44 GMT From: Pavlin Radoslavov Message-Id: <200504270217.j3R2HiOo061592@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:17:44 UTC XORP CVS repository Added files: pim/docs draft-ietf-pim-sm-v2-new-11.ps draft-ietf-pim-sm-v2-new-11.txt Log message: Add the lastest PIM-SM spec: version -11 of the Internet Draft. Revision Changes Path 1.1 +19081 -0 xorp/pim/docs/draft-ietf-pim-sm-v2-new-11.ps (new) 1.1 +8399 -0 xorp/pim/docs/draft-ietf-pim-sm-v2-new-11.txt (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:19:53 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:20:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2K2RD036971 for ; Tue, 26 Apr 2005 19:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2K2dM054523 for ; Tue, 26 Apr 2005 19:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2K1Gq023283; Tue, 26 Apr 2005 19:20:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2JrGq023273 for ; Tue, 26 Apr 2005 19:19:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2Jrvs054512 for ; Tue, 26 Apr 2005 19:19:53 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2Jrdh061678 for ; Tue, 26 Apr 2005 19:19:53 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2JrB9061677 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:19:53 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:19:53 GMT From: Pavlin Radoslavov Message-Id: <200504270219.j3R2JrB9061677@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:19:53 UTC XORP CVS repository Removed files: pim/docs draft-ietf-pim-bidir-03.ps draft-ietf-pim-bidir-03.txt draft-ietf-pim-bidir-04.ps draft-ietf-pim-bidir-04.txt Log message: Remove old copies of the PIM-SM Bidir spec, because currently we don't implement Bidir-PIM and there is no point of keeping those old copies around. Revision Changes Path 1.2 +0 -5566 xorp/pim/docs/draft-ietf-pim-bidir-03.ps (dead) 1.2 +0 -2233 xorp/pim/docs/draft-ietf-pim-bidir-03.txt (dead) 1.2 +0 -5565 xorp/pim/docs/draft-ietf-pim-bidir-04.ps (dead) 1.2 +0 -2233 xorp/pim/docs/draft-ietf-pim-bidir-04.txt (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:21:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2M237037615 for ; Tue, 26 Apr 2005 19:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2M2j0054569 for ; Tue, 26 Apr 2005 19:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2M1Gq023358; Tue, 26 Apr 2005 19:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2LTGq023338 for ; Tue, 26 Apr 2005 19:21:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2LSRD054563 for ; Tue, 26 Apr 2005 19:21:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2LSbh061788 for ; Tue, 26 Apr 2005 19:21:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2LSpk061787 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:21:28 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:21:28 GMT From: Pavlin Radoslavov Message-Id: <200504270221.j3R2LSpk061787@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:21:28 UTC XORP CVS repository Removed files: pim/docs draft-ietf-pim-dm-new-v2-01.txt Log message: Remove an old copy of the PIM-DM spec, because currently we don't implement PIM-DM and there is no point of keeping this old copy around. Revision Changes Path 1.2 +0 -2841 xorp/pim/docs/draft-ietf-pim-dm-new-v2-01.txt (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:27:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2S1Cg039138 for ; Tue, 26 Apr 2005 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2S1ai054650 for ; Tue, 26 Apr 2005 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2S1Gq023520; Tue, 26 Apr 2005 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2R1Gq023496 for ; Tue, 26 Apr 2005 19:27:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2R1jS054648 for ; Tue, 26 Apr 2005 19:27:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2R132061894 for ; Tue, 26 Apr 2005 19:27:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2R1Xn061893 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:27:01 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:27:01 GMT From: Pavlin Radoslavov Message-Id: <200504270227.j3R2R1Xn061893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:27:01 UTC XORP CVS repository Removed files: pim/docs draft-ietf-pim-refresh-02.txt Log message: Remove the old "State Refresh in PIM-DM" I-D, because currently we don't implement PIM-DM and there is no point of keeping this old copy around. Furthermore, it appears that the lastest PIM-DM spec already include the state refresh mechanism introduced by the above I-D. Revision Changes Path 1.2 +0 -557 xorp/pim/docs/draft-ietf-pim-refresh-02.txt (dead) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:43:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2i1eq043085 for ; Tue, 26 Apr 2005 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2i122054830 for ; Tue, 26 Apr 2005 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2i1Gq024025; Tue, 26 Apr 2005 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2hTGq024012 for ; Tue, 26 Apr 2005 19:43:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2hTR7054827 for ; Tue, 26 Apr 2005 19:43:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2hTWq015195 for ; Tue, 26 Apr 2005 19:43:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2hTkk015194 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:43:29 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:43:29 GMT From: Pavlin Radoslavov Message-Id: <200504270243.j3R2hTkk015194@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:43:29 UTC XORP CVS repository Modified files: docs/tex xorp.bib Log message: The PIM-SM spec entry updated to the lastest -11 I-D document. Revision Changes Path 1.12 +3 -3; commitid: 3b40426efc417ea6; xorp/docs/tex/xorp.bib _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:25 2005 Subject: No subject Wed Apr 27 02:45:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2k2hH043641 for ; Tue, 26 Apr 2005 19:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2k1tn054884 for ; Tue, 26 Apr 2005 19:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2k1Gq024106; Tue, 26 Apr 2005 19:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2jdGq024095 for ; Tue, 26 Apr 2005 19:45:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2jdFa054879 for ; Tue, 26 Apr 2005 19:45:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2jdeW015306 for ; Tue, 26 Apr 2005 19:45:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2jdnH015305 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:45:39 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:45:39 GMT From: Pavlin Radoslavov Message-Id: <200504270245.j3R2jdnH015305@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:45:39 UTC XORP CVS repository Modified files: docs/user_manual pimsm.tex Log message: * Updated the reference to the PIM-SM core spec to the -11 I-D document. * Updated the reference to the PIM-SM Bootstrap spec to the -03 I-D document. Revision Changes Path 1.15 +3 -3; commitid: 3b91426efc9d7ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 02:47:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:48:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2m4Cr044140 for ; Tue, 26 Apr 2005 19:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2m4EH054915 for ; Tue, 26 Apr 2005 19:48:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2m3Gq024200; Tue, 26 Apr 2005 19:48:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2l6Gq024148 for ; Tue, 26 Apr 2005 19:47:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2l6Bm054908 for ; Tue, 26 Apr 2005 19:47:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2l6si015430 for ; Tue, 26 Apr 2005 19:47:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2l6Hs015429 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:47:06 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:47:06 GMT From: Pavlin Radoslavov Message-Id: <200504270247.j3R2l6Hs015429@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/pim xorp/docs/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:47:06 UTC XORP CVS repository Modified files: . README pim README pim_proto.h docs/pim pim_arch.tex Log message: Updated the reference to the PIM-SM core spec to the -11 I-D document. Revision Changes Path 1.34 +2 -2; commitid: 3bf6426efd047ea6; xorp/README 1.18 +2 -2; commitid: 3bf6426efd047ea6; xorp/docs/pim/pim_arch.tex 1.29 +3 -3; commitid: 3bf6426efd047ea6; xorp/pim/README 1.14 +2 -2; commitid: 3bf6426efd047ea6; xorp/pim/pim_proto.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 02:47:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:48:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2m6tl044163 for ; Tue, 26 Apr 2005 19:48:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2m62Z054917 for ; Tue, 26 Apr 2005 19:48:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2m5Gq024211; Tue, 26 Apr 2005 19:48:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2lQGq024160 for ; Tue, 26 Apr 2005 19:47:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2lPgJ054912 for ; Tue, 26 Apr 2005 19:47:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2lPO6015482 for ; Tue, 26 Apr 2005 19:47:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2lPGS015481 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:47:25 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:47:25 GMT From: Pavlin Radoslavov Message-Id: <200504270247.j3R2lPGS015481@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:47:25 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.99 +13 -1; commitid: 3c5f426efd397ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 02:48:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 26 Apr 2005 19:49:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R2n2N0044426 for ; Tue, 26 Apr 2005 19:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2n2CI054944 for ; Tue, 26 Apr 2005 19:49:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2n2Gq024283; Tue, 26 Apr 2005 19:49:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R2mdGq024249 for ; Tue, 26 Apr 2005 19:48:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R2mdxN054931 for ; Tue, 26 Apr 2005 19:48:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R2mcrP015552 for ; Tue, 26 Apr 2005 19:48:38 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R2mchl015551 for xorp-cvs@icir.org; Wed, 27 Apr 2005 02:48:38 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 02:48:38 GMT From: Pavlin Radoslavov Message-Id: <200504270248.j3R2mchl015551@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 02:48:38 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for PIM-SM: the implementation is updated to support the lastest -11 I-D spec. Revision Changes Path 1.70 +4 -1; commitid: 3ca0426efd647ea6; xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 07:57:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 00:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R7w14g016873 for ; Wed, 27 Apr 2005 00:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R7w1gg058499 for ; Wed, 27 Apr 2005 00:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R7w1Gq002765; Wed, 27 Apr 2005 00:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R7v7Gq002724 for ; Wed, 27 Apr 2005 00:57:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R7v7YN058481 for ; Wed, 27 Apr 2005 00:57:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R7v7Kv027692 for ; Wed, 27 Apr 2005 00:57:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R7v7vA027691 for xorp-cvs@icir.org; Wed, 27 Apr 2005 07:57:07 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 07:57:07 GMT From: Pavlin Radoslavov Message-Id: <200504270757.j3R7v7vA027691@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 07:57:07 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Nits: "sizeof(IPvX)" -> "sizeof(my_addr)" in case the type of my_addr changes. Revision Changes Path 1.38 +3 -3; commitid: 6c11426f45917ea6; xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 07:59:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 01:00:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R802hH017348 for ; Wed, 27 Apr 2005 01:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R802IN058531 for ; Wed, 27 Apr 2005 01:00:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R801Gq002843; Wed, 27 Apr 2005 01:00:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R7xEGq002820 for ; Wed, 27 Apr 2005 00:59:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R7xEvV058513 for ; Wed, 27 Apr 2005 00:59:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R7xEoi027766 for ; Wed, 27 Apr 2005 00:59:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R7xEYZ027765 for xorp-cvs@icir.org; Wed, 27 Apr 2005 07:59:14 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 07:59:14 GMT From: Pavlin Radoslavov Message-Id: <200504270759.j3R7xEYZ027765@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 07:59:14 UTC XORP CVS repository Modified files: pim pim_rp.cc Log message: Get rid of a gcc-ism for declaring arrays using a variable for the size. Revision Changes Path 1.14 +2 -2; commitid: 6c51426f45e97ea6; xorp/pim/pim_rp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 08:10:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 01:11:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R8B2dt019759 for ; Wed, 27 Apr 2005 01:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R8B2iO058710 for ; Wed, 27 Apr 2005 01:11:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R8B1Gq003171; Wed, 27 Apr 2005 01:11:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R8B0Gq003165 for ; Wed, 27 Apr 2005 01:11:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R8AxVE058707 for ; Wed, 27 Apr 2005 01:10:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R8AxFQ028028 for ; Wed, 27 Apr 2005 01:10:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R8Axtv028027 for xorp-cvs@icir.org; Wed, 27 Apr 2005 08:10:59 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 08:10:59 GMT From: Pavlin Radoslavov Message-Id: <200504270810.j3R8Axtv028027@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 08:10:59 UTC XORP CVS repository Modified files: pim TODO Log message: * Remove a duplicated TODO entry re. the processing of J/P messages with mixed family addresses. * Remove a TODO entry regarding processing of Hello messages with unrecognized Hello options, because the entry is done. Note that we don't have to print a warning if the option is not recognized, because the spec recommends that unrecognized options must be ignored. Revision Changes Path 1.100 +4 -18; commitid: 6d04426f48227ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 08:40:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 01:41:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3R8f17q025652 for ; Wed, 27 Apr 2005 01:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R8f1Lk059086 for ; Wed, 27 Apr 2005 01:41:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R8f1Gq004092; Wed, 27 Apr 2005 01:41:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3R8ewGq004086 for ; Wed, 27 Apr 2005 01:40:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3R8ewh3059084 for ; Wed, 27 Apr 2005 01:40:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3R8eweA028466 for ; Wed, 27 Apr 2005 01:40:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3R8ew3t028465 for xorp-cvs@icir.org; Wed, 27 Apr 2005 08:40:58 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 08:40:58 GMT From: Pavlin Radoslavov Message-Id: <200504270840.j3R8ew3t028465@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 08:40:58 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that are already done. Revision Changes Path 1.101 +1 -30; commitid: 6f17426f50127ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 21:58:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 14:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3RLx2HQ004542 for ; Wed, 27 Apr 2005 14:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RLx2uJ070491 for ; Wed, 27 Apr 2005 14:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RLx1Gq003690; Wed, 27 Apr 2005 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RLwkGq003681 for ; Wed, 27 Apr 2005 14:58:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RLwkNU070488 for ; Wed, 27 Apr 2005 14:58:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3RLwkng069821 for ; Wed, 27 Apr 2005 14:58:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3RLwkPc069820 for xorp-cvs@icir.org; Wed, 27 Apr 2005 21:58:46 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 21:58:46 GMT From: Pavlin Radoslavov Message-Id: <200504272158.j3RLwkPc069820@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 21:58:46 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.hh xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: Add the vif name as an argument to the send_test_jp_entry XRL that is used for testing purpose. Also, propagate the vif name to the backend implementation of this XRL. Revision Changes Path 1.32 +8 -5; commitid: 1105d42700a637ea6; xorp/pim/pim_config.cc 1.51 +3 -2; commitid: 1105d42700a637ea6; xorp/pim/pim_node.hh 1.84 +11 -7; commitid: 1105d42700a637ea6; xorp/pim/xrl_pim_node.cc 1.59 +3 -1; commitid: 1105d42700a637ea6; xorp/pim/xrl_pim_node.hh 1.27 +11 -9; commitid: 1105d42700a637ea6; xorp/pim/xrl_pim_shell_funcs.sh 1.20 +3 -3; commitid: 1105d42700a637ea6; xorp/xrl/interfaces/pim.xif 1.32 +5 -1; commitid: 1105d42700a637ea6; xorp/xrl/interfaces/pim_xif.cc 1.30 +3 -1; commitid: 1105d42700a637ea6; xorp/xrl/interfaces/pim_xif.hh 1.45 +3 -3; commitid: 1105d42700a637ea6; xorp/xrl/targets/pim.xrls 1.48 +7 -5; commitid: 1105d42700a637ea6; xorp/xrl/targets/pim_base.cc 1.51 +3 -1; commitid: 1105d42700a637ea6; xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 22:14:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 15:15:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3RMF4lr010238 for ; Wed, 27 Apr 2005 15:15:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RMF4aF070651 for ; Wed, 27 Apr 2005 15:15:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RMF3Gq004353; Wed, 27 Apr 2005 15:15:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RME7Gq004316 for ; Wed, 27 Apr 2005 15:14:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RME70Q070640 for ; Wed, 27 Apr 2005 15:14:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3RME7ts075578 for ; Wed, 27 Apr 2005 15:14:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3RME7em075577 for xorp-cvs@icir.org; Wed, 27 Apr 2005 22:14:07 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 22:14:07 GMT From: Pavlin Radoslavov Message-Id: <200504272214.j3RME7em075577@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 22:14:07 UTC XORP CVS repository Modified files: pim pim_node.cc pim_node.hh Log message: Rename PimNode::pim_nbr_find(const IPvX& nbr_addr) to PimNode::pim_nbr_find_global(), and add a note to the only place it is used that we should try to get rid of using this method. The reason we don't want to search for a neighbor across all network interfaces only by the neighbor's IP address is because in case of IPv6 the link-local addresses are unique only per subnet. In other words, there could be more than one neighbor routers with the same link-local address. To get rid of PimNode::pim_nbr_find_global(), we have to make sure that all valid MRIB entries have a valid next-hop vif index. Revision Changes Path 1.69 +18 -6; commitid: 126a942700c8b7ea6; xorp/pim/pim_node.cc 1.52 +2 -2; commitid: 126a942700c8b7ea6; xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 23:33:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 16:34:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3RNY2m3040408 for ; Wed, 27 Apr 2005 16:34:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RNY1Cc071469 for ; Wed, 27 Apr 2005 16:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RNY1Gq007222; Wed, 27 Apr 2005 16:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RNXlGq007190 for ; Wed, 27 Apr 2005 16:33:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RNXlxA071464 for ; Wed, 27 Apr 2005 16:33:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3RNXlUE081289 for ; Wed, 27 Apr 2005 16:33:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3RNXllf081288 for xorp-cvs@icir.org; Wed, 27 Apr 2005 23:33:47 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 23:33:47 GMT From: Pavlin Radoslavov Message-Id: <200504272333.j3RNXllf081288@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 23:33:47 UTC XORP CVS repository Modified files: pim TODO Log message: * Remove TODO entries that are already done * Rename PimNode::pim_nbr_find() to PimNode::pim_nbr_find_global() in a TODO entry, and add an extra comment. * Remove the TODO entry for the PimMre::recompute_is_prune_desired_sg_rpt_sg(), because we cannot just get rid of the temporary creation of the (S,G,rpt) PimMre entry. If we need to create that entry on-the-fly, the quite likely we need to keep it later. * Remove the TODO entry for optimizing the "Assert Timer Expires" event if there are no more PIM neighbors. Such optimization is not in the spec, and implementing it may create some unexpected troubles, because the Assert mechanism itself is quite complex. Revision Changes Path 1.102 +6 -42; commitid: 13ca742701b417ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Wed Apr 27 23:54:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 17:15:11 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S0FBvg048448 for ; Wed, 27 Apr 2005 17:15:11 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RNt1p3071710 for ; Wed, 27 Apr 2005 16:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RNt1Gq007835; Wed, 27 Apr 2005 16:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3RNsXGq007824 for ; Wed, 27 Apr 2005 16:54:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3RNsX6i071701 for ; Wed, 27 Apr 2005 16:54:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3RNsWlF081512 for ; Wed, 27 Apr 2005 16:54:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3RNsWm8081511 for xorp-cvs@icir.org; Wed, 27 Apr 2005 23:54:32 GMT (envelope-from pavlin) Date: Wed, 27 Apr 2005 23:54:32 GMT From: Pavlin Radoslavov Message-Id: <200504272354.j3RNsWm8081511@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-27 23:54:32 UTC XORP CVS repository Modified files: libxorp nexthop.cc Log message: Fix the constructor definition as a template: "Foo::Foo()" -> "Foo::Foo()" [Problem found with gcc-4.1 on FreeBSD-4.10] Revision Changes Path 1.7 +5 -5; commitid: 13e49427025c77ea6; xorp/libxorp/nexthop.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 00:27:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 17:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S0S126050933 for ; Wed, 27 Apr 2005 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S0S1oL072014 for ; Wed, 27 Apr 2005 17:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S0S1Gq008852; Wed, 27 Apr 2005 17:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S0R2Gq008834 for ; Wed, 27 Apr 2005 17:27:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S0R2JW072007 for ; Wed, 27 Apr 2005 17:27:02 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S0R2Gi081835 for ; Wed, 27 Apr 2005 17:27:02 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S0R2bf081834 for xorp-cvs@icir.org; Thu, 28 Apr 2005 00:27:02 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 00:27:02 GMT From: Pavlin Radoslavov Message-Id: <200504280027.j3S0R2bf081834@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 00:27:02 UTC XORP CVS repository Modified files: libxipc finder_client.hh finder_messenger.hh Log message: Add virtual destrictors for the following abstract base classes: - FinderClientXrlCommandInterface - FinderMessengerManager The reason for this addition is because gcc41 does not like it if a class with virtual methods doesn't provide virtual destructors, and because this is the right thing to do. Revision Changes Path 1.19 +2 -1; commitid: 13f6f42702d397ea6; xorp/libxipc/finder_client.hh 1.12 +6 -1; commitid: 13f6f42702d397ea6; xorp/libxipc/finder_messenger.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:24:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:25:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2P1eo074073 for ; Wed, 27 Apr 2005 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2P1XM073243 for ; Wed, 27 Apr 2005 19:25:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2P1Gq011937; Wed, 27 Apr 2005 19:25:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2OwGq011927 for ; Wed, 27 Apr 2005 19:24:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2OwCf073237 for ; Wed, 27 Apr 2005 19:24:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2Ovjo082802 for ; Wed, 27 Apr 2005 19:24:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2Ovhv082801 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:24:57 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:24:57 GMT From: Pavlin Radoslavov Message-Id: <200504280224.j3S2Ovhv082801@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:24:57 UTC XORP CVS repository Modified files: rtrmgr module_manager.cc Log message: Explicitly cast NULL to "const char *" as the last argument of execl() to pacify gcc-4.1. Revision Changes Path 1.43 +3 -2; commitid: 14358427049577ea6; xorp/rtrmgr/module_manager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:26:19 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2R1hF074513 for ; Wed, 27 Apr 2005 19:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2R1bx073278 for ; Wed, 27 Apr 2005 19:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2R1Gq011994; Wed, 27 Apr 2005 19:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2QKGq011973 for ; Wed, 27 Apr 2005 19:26:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2QJad073270 for ; Wed, 27 Apr 2005 19:26:19 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2QJQa082873 for ; Wed, 27 Apr 2005 19:26:19 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2QJ2D082872 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:26:19 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:26:19 GMT From: Pavlin Radoslavov Message-Id: <200504280226.j3S2QJ2D082872@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:26:19 UTC XORP CVS repository Modified files: rib register_server.cc Log message: Add missing "template <>" in front of template methods specialization. [Problem found by gcc-4.1 on Free-4.10] Revision Changes Path 1.17 +5 -1; commitid: 1439f427049967ea6; xorp/rib/register_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:27:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2S1Fq074720 for ; Wed, 27 Apr 2005 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2S12J073286 for ; Wed, 27 Apr 2005 19:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2S1Gq012026; Wed, 27 Apr 2005 19:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2RHGq012010 for ; Wed, 27 Apr 2005 19:27:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2RH4Z073282 for ; Wed, 27 Apr 2005 19:27:17 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2RGZ3082924 for ; Wed, 27 Apr 2005 19:27:16 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2RG5N082923 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:27:16 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:27:16 GMT From: Pavlin Radoslavov Message-Id: <200504280227.j3S2RG5N082923@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:27:16 UTC XORP CVS repository Modified files: rib rt_tab_deletion.cc Log message: Fix the constructor definition of a template: "Foo::Foo()" -> "Foo::Foo()" Revision Changes Path 1.10 +5 -5; commitid: 143d2427049d97ea6; xorp/rib/rt_tab_deletion.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:28:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:29:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2T0PI074907 for ; Wed, 27 Apr 2005 19:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2T0iC073295 for ; Wed, 27 Apr 2005 19:29:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2T0Gq012063; Wed, 27 Apr 2005 19:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2SmGq012055 for ; Wed, 27 Apr 2005 19:28:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2Smpr073293 for ; Wed, 27 Apr 2005 19:28:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2Slmk082977 for ; Wed, 27 Apr 2005 19:28:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2Sl1F082976 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:28:47 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:28:47 GMT From: Pavlin Radoslavov Message-Id: <200504280228.j3S2Sl1F082976@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:28:47 UTC XORP CVS repository Modified files: pim xrl_pim_node.cc Log message: Move UNUSED(foo) statements before the last "return" statement to pacify gcc-4.1. Revision Changes Path 1.85 +17 -17; commitid: 143fd42704a1a7ea6; xorp/pim/xrl_pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:29:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2U1jI075125 for ; Wed, 27 Apr 2005 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2U1wf073315 for ; Wed, 27 Apr 2005 19:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2U1Gq012098; Wed, 27 Apr 2005 19:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2T5Gq012074 for ; Wed, 27 Apr 2005 19:29:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2T5I0073299 for ; Wed, 27 Apr 2005 19:29:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2T4AG083020 for ; Wed, 27 Apr 2005 19:29:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2T4Uu083019 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:29:04 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:29:04 GMT From: Pavlin Radoslavov Message-Id: <200504280229.j3S2T4Uu083019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:29:04 UTC XORP CVS repository Modified files: libxipc finder_messenger.hh Log message: Modify a kdoc comment. Revision Changes Path 1.13 +2 -2; commitid: 1443242704a687ea6; xorp/libxipc/finder_messenger.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:30:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2V0tG075401 for ; Wed, 27 Apr 2005 19:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2V0lj073346 for ; Wed, 27 Apr 2005 19:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2V0Gq012123; Wed, 27 Apr 2005 19:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2ULGq012115 for ; Wed, 27 Apr 2005 19:30:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2ULmF073339 for ; Wed, 27 Apr 2005 19:30:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2ULpO083096 for ; Wed, 27 Apr 2005 19:30:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2ULVN083095 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:30:21 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:30:21 GMT From: Pavlin Radoslavov Message-Id: <200504280230.j3S2ULVN083095@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:30:21 UTC XORP CVS repository Modified files: fea nexthop_port_mapper.hh Log message: Add virtual destrictors for the following abstract base classes: - NexthopPortMapperObserver The reason for this addition is because gcc-4.1 does not like it if a class with virtual methods doesn't provide virtual destructors, and because this is the right thing to do. Revision Changes Path 1.10 +6 -1; commitid: 1445d42704a827ea6; xorp/fea/nexthop_port_mapper.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:26 2005 Subject: No subject Thu Apr 28 02:31:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2W174075588 for ; Wed, 27 Apr 2005 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2W1RR073355 for ; Wed, 27 Apr 2005 19:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2W0Gq012160; Wed, 27 Apr 2005 19:32:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2VOGq012148 for ; Wed, 27 Apr 2005 19:31:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2VOPJ073353 for ; Wed, 27 Apr 2005 19:31:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2VOcm083205 for ; Wed, 27 Apr 2005 19:31:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2VOQD083204 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:31:24 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:31:24 GMT From: Pavlin Radoslavov Message-Id: <200504280231.j3S2VOQD083204@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:31:24 UTC XORP CVS repository Modified files: fea xrl_socket_server.cc Log message: Fix the constructor definition of a template: "Foo::Foo()" -> "Foo::Foo()" Revision Changes Path 1.22 +5 -5; commitid: 144e642704ae77ea6; xorp/fea/xrl_socket_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 02:32:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2X13f075795 for ; Wed, 27 Apr 2005 19:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2X1W2073361 for ; Wed, 27 Apr 2005 19:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2X1Gq012208; Wed, 27 Apr 2005 19:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2W4Gq012171 for ; Wed, 27 Apr 2005 19:32:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2W4KG073359 for ; Wed, 27 Apr 2005 19:32:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2W43Z083256 for ; Wed, 27 Apr 2005 19:32:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2W4Pp083255 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:32:04 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:32:04 GMT From: Pavlin Radoslavov Message-Id: <200504280232.j3S2W4Pp083255@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:32:04 UTC XORP CVS repository Modified files: fea xrl_target.cc Log message: Move UNUSED(foo) statements before the last "return" statement to pacify gcc-4.1. Revision Changes Path 1.72 +14 -13; commitid: 1451e42704b1d7ea6; xorp/fea/xrl_target.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 02:35:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 19:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S2a17r076401 for ; Wed, 27 Apr 2005 19:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2a17L073404 for ; Wed, 27 Apr 2005 19:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2a1Gq012316; Wed, 27 Apr 2005 19:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S2ZmGq012309 for ; Wed, 27 Apr 2005 19:35:48 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S2Zmdr073402 for ; Wed, 27 Apr 2005 19:35:48 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S2ZmZi083390 for ; Wed, 27 Apr 2005 19:35:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S2Zm0F083389 for xorp-cvs@icir.org; Thu, 28 Apr 2005 02:35:48 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 02:35:48 GMT From: Pavlin Radoslavov Message-Id: <200504280235.j3S2Zm0F083389@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 02:35:48 UTC XORP CVS repository Modified files: bgp attribute_manager.cc bgp_trie.cc path_attribute.cc plumbing.cc route_table_filter.cc route_table_filter.hh Log message: Fix compilation errors for gcc-4.1 on FreeBSD-4.10 : * Fix the constructor definition for a template: "Foo::Foo()" -> "Foo::Foo()" * Add missing "template <>" in front of template methods specialization. * Add virtual destrictors for the following base classes: - BGPRouteFilter Revision Changes Path 1.10 +2 -2; commitid: 1457942704b5b7ea6; xorp/bgp/attribute_manager.cc 1.17 +4 -4; commitid: 1457942704b5b7ea6; xorp/bgp/bgp_trie.cc 1.56 +7 -7; commitid: 1457942704b5b7ea6; xorp/bgp/path_attribute.cc 1.66 +3 -1; commitid: 1457942704b5b7ea6; xorp/bgp/plumbing.cc 1.28 +12 -12; commitid: 1457942704b5b7ea6; xorp/bgp/route_table_filter.cc 1.15 +2 -1; commitid: 1457942704b5b7ea6; xorp/bgp/route_table_filter.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 03:00:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 20:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S311PS081408 for ; Wed, 27 Apr 2005 20:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S311dQ073667 for ; Wed, 27 Apr 2005 20:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S311Gq012913; Wed, 27 Apr 2005 20:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S30kGq012904 for ; Wed, 27 Apr 2005 20:00:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S30kgT073657 for ; Wed, 27 Apr 2005 20:00:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S30kO8083787 for ; Wed, 27 Apr 2005 20:00:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S30kdf083786 for xorp-cvs@icir.org; Thu, 28 Apr 2005 03:00:46 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 03:00:46 GMT From: Pavlin Radoslavov Message-Id: <200504280300.j3S30kdf083786@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 03:00:46 UTC XORP CVS repository Modified files: pim pim_mre_rpf.cc Log message: Fix a comment to match the lastest -11 I-D spec. Revision Changes Path 1.39 +7 -9; commitid: 1472b427051d07ea6; xorp/pim/pim_mre_rpf.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 03:07:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 27 Apr 2005 20:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3S381ee082837 for ; Wed, 27 Apr 2005 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S3810Z073732 for ; Wed, 27 Apr 2005 20:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S381Gq013078; Wed, 27 Apr 2005 20:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3S37wGq013070 for ; Wed, 27 Apr 2005 20:07:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3S37wug073730 for ; Wed, 27 Apr 2005 20:07:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3S37vvD084019 for ; Wed, 27 Apr 2005 20:07:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3S37v0U084018 for xorp-cvs@icir.org; Thu, 28 Apr 2005 03:07:57 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 03:07:57 GMT From: Pavlin Radoslavov Message-Id: <200504280307.j3S37v0U084018@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 03:07:57 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that are either obsolete or duplicate. Revision Changes Path 1.103 +2 -24; commitid: 14818427053807ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 10:16:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Apr 2005 03:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3SAH1Hm069433 for ; Thu, 28 Apr 2005 03:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3SAH1K0079085 for ; Thu, 28 Apr 2005 03:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3SAH1Gq024277; Thu, 28 Apr 2005 03:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3SAGLGq024258 for ; Thu, 28 Apr 2005 03:16:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3SAGLwU079071 for ; Thu, 28 Apr 2005 03:16:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3SAGLak088161 for ; Thu, 28 Apr 2005 03:16:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3SAGLEq088160 for xorp-cvs@icir.org; Thu, 28 Apr 2005 10:16:21 GMT (envelope-from pavlin) Date: Thu, 28 Apr 2005 10:16:21 GMT From: Pavlin Radoslavov Message-Id: <200504281016.j3SAGLEq088160@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-28 10:16:21 UTC XORP CVS repository Modified files: libxipc finder_messenger.hh Log message: Temporary comment-out the ~FinderMessengerManager() virtual destructor that was added by the previous commit. Apparently, adding the virtual destructor crashes the test_finder_messenger test program. This crash needs to be investigated and fixed so the virtual destructor can be uncommented again. Revision Changes Path 1.14 +4 -2; commitid: 158474270b7e97ea6; xorp/libxipc/finder_messenger.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Thu Apr 28 21:25:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 28 Apr 2005 14:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.8) with ESMTP id j3SLQ1AO043126 for ; Thu, 28 Apr 2005 14:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3SLQ1vn088801 for ; Thu, 28 Apr 2005 14:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3SLQ1Gq017459; Thu, 28 Apr 2005 14:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3SLPuGq017450 for ; Thu, 28 Apr 2005 14:25:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.8) with ESMTP id j3SLPuAR088799 for ; Thu, 28 Apr 2005 14:25:56 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id j3SLPuYV095789 for ; Thu, 28 Apr 2005 14:25:56 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3SLPu01095788 for xorp-cvs@icir.org; Thu, 28 Apr 2005 21:25:56 GMT (envelope-from bms) Date: Thu, 28 Apr 2005 21:25:56 GMT From: Bruce Simpson Message-Id: <200504282125.j3SLPu01095788@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-04-28 21:25:56 UTC XORP CVS repository Modified files: . bootstrap Log message: Add additional checks for the ac*.m4 files in the config sub- directory, when prompting the developer if bootstrap should run. This is in preparation for merging the split configure.in from xorp_win. Merge from: Perforce, xorp_win branch Revision Changes Path 1.24 +6 -5; commitid: 175ff4271549d7ea6; xorp/bootstrap _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 15:16:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 08:17:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TFH1P0010537 for ; Fri, 29 Apr 2005 08:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TFH1Ib003789 for ; Fri, 29 Apr 2005 08:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TFH0Gq020452; Fri, 29 Apr 2005 08:17:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TFGUGq020436 for ; Fri, 29 Apr 2005 08:16:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TFGUKu003780 for ; Fri, 29 Apr 2005 08:16:30 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TFGUWt009313 for ; Fri, 29 Apr 2005 08:16:30 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TFGUXk009312 for xorp-cvs@icir.org; Fri, 29 Apr 2005 15:16:30 GMT (envelope-from bms) Date: Fri, 29 Apr 2005 15:16:30 GMT From: Bruce Simpson Message-Id: <200504291516.j3TFGUXk009312@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-04-29 15:16:30 UTC XORP CVS repository Modified files: fea pa_transaction.cc Log message: Fix a really, really lame bug whereby the return value of strcmp() wasn't being checked correctly. MT1.1 candidate. Merge from: p4 xorp_win, xorp_ng Revision Changes Path 1.6 +5 -5; commitid: 244742724fa87ea6; xorp/fea/pa_transaction.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 20:13:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 13:14:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TKE17F071121 for ; Fri, 29 Apr 2005 13:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TKE1xK007696 for ; Fri, 29 Apr 2005 13:14:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TKE1Gq001186; Fri, 29 Apr 2005 13:14:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TKDLGq001171 for ; Fri, 29 Apr 2005 13:13:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TKDLXv007690 for ; Fri, 29 Apr 2005 13:13:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TKDL0H013922 for ; Fri, 29 Apr 2005 13:13:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TKDLbo013921 for xorp-cvs@icir.org; Fri, 29 Apr 2005 20:13:21 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 20:13:21 GMT From: Pavlin Radoslavov Message-Id: <200504292013.j3TKDLbo013921@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 20:13:21 UTC XORP CVS repository Modified files: fea pa_transaction.cc Log message: Move "== 0" added by the previous commit to the right place. Revision Changes Path 1.7 +5 -5; commitid: 360d427295017ea6; xorp/fea/pa_transaction.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 21:41:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 14:42:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TLg276088663 for ; Fri, 29 Apr 2005 14:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLg2Rf008779 for ; Fri, 29 Apr 2005 14:42:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLg1Gq004233; Fri, 29 Apr 2005 14:42:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLfbGq004207 for ; Fri, 29 Apr 2005 14:41:38 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLfbdd008773 for ; Fri, 29 Apr 2005 14:41:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TLfbYg015447 for ; Fri, 29 Apr 2005 14:41:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TLfbFx015446 for xorp-cvs@icir.org; Fri, 29 Apr 2005 21:41:37 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 21:41:37 GMT From: Pavlin Radoslavov Message-Id: <200504292141.j3TLfbFx015446@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/utils Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 21:41:37 UTC XORP CVS repository Modified files: utils .cvsignore Log message: Remove extra empty lines. Revision Changes Path 1.7 +0 -2; commitid: 3c3d4272aa087ea6; xorp/utils/.cvsignore _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 21:43:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 14:44:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TLi23F089059 for ; Fri, 29 Apr 2005 14:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLi2hn008789 for ; Fri, 29 Apr 2005 14:44:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLi2Gq004325; Fri, 29 Apr 2005 14:44:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLh5Gq004272 for ; Fri, 29 Apr 2005 14:43:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLh4mY008781 for ; Fri, 29 Apr 2005 14:43:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TLh4Rj015492 for ; Fri, 29 Apr 2005 14:43:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TLh4XD015491 for xorp-cvs@icir.org; Fri, 29 Apr 2005 21:43:04 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 21:43:04 GMT From: Pavlin Radoslavov Message-Id: <200504292143.j3TLh4XD015491@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/utils Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 21:43:04 UTC XORP CVS repository Added files: utils rcsid2ident.sh Log message: Add a new script. This script replaces the first instance of the static variable "yyrcsid" that contains the RCS/CVS ident string with #ident. This replacement is needed because some compilers (e.g., gcc-4.1) generate a warning about variable "yyrcsid" being unused. Obtained from: Atanu Revision Changes Path 1.1 +26 -0 xorp/utils/rcsid2ident.sh (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 21:44:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 14:45:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TLj0nh089271 for ; Fri, 29 Apr 2005 14:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLj0ou008802 for ; Fri, 29 Apr 2005 14:45:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLj0Gq004395; Fri, 29 Apr 2005 14:45:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLiBGq004346 for ; Fri, 29 Apr 2005 14:44:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLiB63008793 for ; Fri, 29 Apr 2005 14:44:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TLiARt015953 for ; Fri, 29 Apr 2005 14:44:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TLiA8T015952 for xorp-cvs@icir.org; Fri, 29 Apr 2005 21:44:10 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 21:44:10 GMT From: Pavlin Radoslavov Message-Id: <200504292144.j3TLiA8T015952@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/utils Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 21:44:10 UTC XORP CVS repository Modified files: utils Makefile.am Makefile.in Log message: Add several files/scripts to the EXTRA_DIST list. Revision Changes Path 1.12 +5 -1; commitid: 3e354272aa837ea6; xorp/utils/Makefile.am 1.27 +1 -1; commitid: 3e354272aa837ea6; xorp/utils/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 21:45:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 14:46:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TLk17V089518 for ; Fri, 29 Apr 2005 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLk1U1008836 for ; Fri, 29 Apr 2005 14:46:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLk1Gq004475; Fri, 29 Apr 2005 14:46:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLjXGq004454 for ; Fri, 29 Apr 2005 14:45:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLjXHg008832 for ; Fri, 29 Apr 2005 14:45:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TLjX6p016039 for ; Fri, 29 Apr 2005 14:45:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TLjXL9016038 for xorp-cvs@icir.org; Fri, 29 Apr 2005 21:45:33 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 21:45:33 GMT From: Pavlin Radoslavov Message-Id: <200504292145.j3TLjXL9016038@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 21:45:33 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in Log message: Execute utils/rcsid2ident.sh for each auto-generated yacc file. Revision Changes Path 1.50 +4 -1; commitid: 3e6a4272aad57ea6; xorp/rtrmgr/Makefile.am 1.61 +3 -0; commitid: 3e6a4272aad57ea6; xorp/rtrmgr/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Fri Apr 29 21:46:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 29 Apr 2005 14:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3TLl18A089706 for ; Fri, 29 Apr 2005 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLl1t4008848 for ; Fri, 29 Apr 2005 14:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLl1Gq004515; Fri, 29 Apr 2005 14:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3TLkWGq004500 for ; Fri, 29 Apr 2005 14:46:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3TLkWQi008841 for ; Fri, 29 Apr 2005 14:46:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3TLkWjX016086 for ; Fri, 29 Apr 2005 14:46:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3TLkWcd016085 for xorp-cvs@icir.org; Fri, 29 Apr 2005 21:46:32 GMT (envelope-from pavlin) Date: Fri, 29 Apr 2005 21:46:32 GMT From: Pavlin Radoslavov Message-Id: <200504292146.j3TLkWcd016085@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-29 21:46:32 UTC XORP CVS repository Modified files: rtrmgr y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Log message: Re-generate the yacc autogenerated files. Now the new files use #ident instead of a local variable "rcsid". Revision Changes Path 1.11 +1 -2; commitid: 3eb84272ab037ea6; xorp/rtrmgr/y.boot_tab.cc 1.11 +1 -2; commitid: 3eb84272ab037ea6; xorp/rtrmgr/y.opcmd_tab.cc 1.15 +1 -2; commitid: 3eb84272ab037ea6; xorp/rtrmgr/y.tplt_tab.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 19:38:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 12:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3UJd1xZ057358 for ; Sat, 30 Apr 2005 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3UJd1VV024063 for ; Sat, 30 Apr 2005 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3UJd0Gq006863; Sat, 30 Apr 2005 12:39:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3UJcXGq006854 for ; Sat, 30 Apr 2005 12:38:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3UJcXVV024059 for ; Sat, 30 Apr 2005 12:38:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3UJcXrS057139 for ; Sat, 30 Apr 2005 12:38:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3UJcXmj057138 for xorp-cvs@icir.org; Sat, 30 Apr 2005 19:38:33 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 19:38:33 GMT From: Pavlin Radoslavov Message-Id: <200504301938.j3UJcXmj057138@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 19:38:33 UTC XORP CVS repository Modified files: pim TODO Log message: * Remove TODO entries that are already done: - SPEC+IMPL: if we ignore (*,G) Join/Prune entry because of RP mismatch, then the (S,G) and (S,G,rpt) entries within same group shouldn't be ignored. * Remove TODO entries that don't need to be done: - "IMPL: whenever the iif changes, should we remove all matching PimMfc, and reset the SPTbit?" No, the appropriate PIM-SM state machines will take care of whatever needs to be done. - "IMPL: If (S,G,rpt) Prune (only) is received, but there is no (*,G) routing state, then (S,G,rpt) routing state is created (in RPTNotJoined state). Shall we avoid the temporary creation of such state?" No, this state is harmless and will timeout. * Reclassify the following TODO entry: - "IMPL+SPEC+TESTSUTE: if the MRIB.next_hop(RP) changes, should we send first the (*,*,RP) Join first, or the (*,*,RP) Prune first?" The spec and the implementation are fixed: the Join message is sent first. Now only the testsuite needs to be fixed to reflect that. Revision Changes Path 1.104 +4 -19; commitid: dee44273dcda7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 21:35:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 14:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3ULa1wK080225 for ; Sat, 30 Apr 2005 14:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULa10N025183 for ; Sat, 30 Apr 2005 14:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULa1Gq009398; Sat, 30 Apr 2005 14:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULZfGq009388 for ; Sat, 30 Apr 2005 14:35:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULZfrq025180 for ; Sat, 30 Apr 2005 14:35:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3ULZfCb063985 for ; Sat, 30 Apr 2005 14:35:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3ULZfi9063984 for xorp-cvs@icir.org; Sat, 30 Apr 2005 21:35:41 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 21:35:41 GMT From: Pavlin Radoslavov Message-Id: <200504302135.j3ULZfi9063984@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 21:35:40 UTC XORP CVS repository Modified files: pim xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: Rename XRL argument in the add_test_jp_entry[4,6] XRLs: new_group_bool -> is_new_group Revision Changes Path 1.86 +5 -5; commitid: f9a04273fa1c7ea6; xorp/pim/xrl_pim_node.cc 1.60 +3 -3; commitid: f9a04273fa1c7ea6; xorp/pim/xrl_pim_node.hh 1.28 +7 -7; commitid: f9a04273fa1c7ea6; xorp/pim/xrl_pim_shell_funcs.sh 1.21 +3 -3; commitid: f9a04273fa1c7ea6; xorp/xrl/interfaces/pim.xif 1.33 +5 -5; commitid: f9a04273fa1c7ea6; xorp/xrl/interfaces/pim_xif.cc 1.31 +3 -3; commitid: f9a04273fa1c7ea6; xorp/xrl/interfaces/pim_xif.hh 1.46 +3 -3; commitid: f9a04273fa1c7ea6; xorp/xrl/targets/pim.xrls 1.49 +3 -3; commitid: f9a04273fa1c7ea6; xorp/xrl/targets/pim_base.cc 1.52 +3 -3; commitid: f9a04273fa1c7ea6; xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 21:36:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 14:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3ULb1Of080404 for ; Sat, 30 Apr 2005 14:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULb0R9025196 for ; Sat, 30 Apr 2005 14:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULb0Gq009434; Sat, 30 Apr 2005 14:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULalGq009424 for ; Sat, 30 Apr 2005 14:36:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULalwa025193 for ; Sat, 30 Apr 2005 14:36:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3ULalNo064066 for ; Sat, 30 Apr 2005 14:36:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3ULalnt064065 for xorp-cvs@icir.org; Sat, 30 Apr 2005 21:36:47 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 21:36:47 GMT From: Pavlin Radoslavov Message-Id: <200504302136.j3ULalnt064065@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 21:36:47 UTC XORP CVS repository Modified files: pim pim_config.cc pim_mre.hh pim_mre_assert.cc pim_mre_join_prune.cc pim_mre_rpf.cc pim_mrt.cc pim_mrt.hh pim_nbr.cc pim_nbr.hh pim_node.hh pim_proto_cand_rp_adv.cc pim_proto_join_prune.cc pim_proto_join_prune_message.cc pim_proto_join_prune_message.hh Log message: Rename variables: join_wc_received_bool -> is_join_wc_received i_am_assert_winner_bool -> i_am_assert_winner is_create_bool -> is_creation_allowed new_group_bool -> is_new_group all_multicast_groups_bool -> is_all_multicast_groups ignore_group_bool -> is_group_ignored rp_entry_bool -> is_rp_entry jp_group_found_bool -> is_jp_group_found i_am_target_router_bool -> i_am_target_router Revision Changes Path 1.33 +3 -3; commitid: fa0d4273fa527ea6; xorp/pim/pim_config.cc 1.46 +4 -4; commitid: fa0d4273fa527ea6; xorp/pim/pim_mre.hh 1.33 +17 -17; commitid: fa0d4273fa527ea6; xorp/pim/pim_mre_assert.cc 1.35 +34 -34; commitid: fa0d4273fa527ea6; xorp/pim/pim_mre_join_prune.cc 1.40 +13 -13; commitid: fa0d4273fa527ea6; xorp/pim/pim_mre_rpf.cc 1.10 +4 -4; commitid: fa0d4273fa527ea6; xorp/pim/pim_mrt.cc 1.15 +2 -2; commitid: fa0d4273fa527ea6; xorp/pim/pim_mrt.hh 1.16 +3 -3; commitid: fa0d4273fa527ea6; xorp/pim/pim_nbr.cc 1.14 +2 -2; commitid: fa0d4273fa527ea6; xorp/pim/pim_nbr.hh 1.53 +2 -2; commitid: fa0d4273fa527ea6; xorp/pim/pim_node.hh 1.18 +6 -6; commitid: fa0d4273fa527ea6; xorp/pim/pim_proto_cand_rp_adv.cc 1.12 +15 -15; commitid: fa0d4273fa527ea6; xorp/pim/pim_proto_join_prune.cc 1.23 +45 -45; commitid: fa0d4273fa527ea6; xorp/pim/pim_proto_join_prune_message.cc 1.8 +2 -2; commitid: fa0d4273fa527ea6; xorp/pim/pim_proto_join_prune_message.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 21:57:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 14:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3ULw1dU084539 for ; Sat, 30 Apr 2005 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULw1xQ025354 for ; Sat, 30 Apr 2005 14:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULw1Gq009893; Sat, 30 Apr 2005 14:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULvRGq009875 for ; Sat, 30 Apr 2005 14:57:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULvR9t025351 for ; Sat, 30 Apr 2005 14:57:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3ULvRCD065214 for ; Sat, 30 Apr 2005 14:57:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3ULvRW8065213 for xorp-cvs@icir.org; Sat, 30 Apr 2005 21:57:27 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 21:57:27 GMT From: Pavlin Radoslavov Message-Id: <200504302157.j3ULvRW8065213@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 21:57:26 UTC XORP CVS repository Modified files: libxorp token.cc Log message: Rename: enclose_quotations_bool -> is_enclose_quotations escape_begin_bool -> is_escape_begin escape_end_bool -> is_escape_end Revision Changes Path 1.6 +12 -12; commitid: fdef4273ff357ea6; xorp/libxorp/token.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 21:58:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 14:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3ULx1K8084751 for ; Sat, 30 Apr 2005 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULx1qI025367 for ; Sat, 30 Apr 2005 14:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULx1Gq009928; Sat, 30 Apr 2005 14:59:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULwUGq009915 for ; Sat, 30 Apr 2005 14:58:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULwU7i025360 for ; Sat, 30 Apr 2005 14:58:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3ULwUBh067147 for ; Sat, 30 Apr 2005 14:58:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3ULwTlh067146 for xorp-cvs@icir.org; Sat, 30 Apr 2005 21:58:30 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 21:58:30 GMT From: Pavlin Radoslavov Message-Id: <200504302158.j3ULwTlh067146@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 21:58:29 UTC XORP CVS repository Modified files: cli cli_client.cc cli_client.hh cli_command.cc cli_command_pipe.cc cli_command_pipe.hh cli_node_net.cc Log message: Rename: eof_input_bool -> is_eof_input found_bool -> is_found process_func_arguments_bool -> is_process_func_arguments pipe_command_arguments_bool -> is_pipe_command_arguments block_bool -> is_blocked completed_command_bool -> is_command_completed child_completion_bool -> is_child_completion ret_bool -> ret_value no_space_at_end_bool -> is_no_space_at_end _flag_bool -> _bool_flag Revision Changes Path 1.28 +14 -14; commitid: 104234273ff7c7ea6; xorp/cli/cli_client.cc 1.15 +2 -2; commitid: 104234273ff7c7ea6; xorp/cli/cli_client.hh 1.14 +20 -20; commitid: 104234273ff7c7ea6; xorp/cli/cli_command.cc 1.7 +5 -5; commitid: 104234273ff7c7ea6; xorp/cli/cli_command_pipe.cc 1.7 +2 -2; commitid: 104234273ff7c7ea6; xorp/cli/cli_command_pipe.hh 1.35 +4 -4; commitid: 104234273ff7c7ea6; xorp/cli/cli_node_net.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:27 2005 Subject: No subject Sat Apr 30 21:59:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 15:00:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3UM014i084955 for ; Sat, 30 Apr 2005 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3UM00Ld025382 for ; Sat, 30 Apr 2005 15:00:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3UM00Gq009969; Sat, 30 Apr 2005 15:00:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3ULxwGq009961 for ; Sat, 30 Apr 2005 14:59:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3ULxwum025374 for ; Sat, 30 Apr 2005 14:59:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3ULxwKh072330 for ; Sat, 30 Apr 2005 14:59:58 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3ULxwpo072329 for xorp-cvs@icir.org; Sat, 30 Apr 2005 21:59:58 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 21:59:58 GMT From: Pavlin Radoslavov Message-Id: <200504302159.j3ULxwpo072329@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 21:59:57 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc mfea_proto_comm.hh Log message: Rename: enable_bool -> is_enabled Revision Changes Path 1.30 +13 -13; commitid: 113c74273ffd37ea6; xorp/fea/mfea_proto_comm.cc 1.11 +7 -7; commitid: 113c74273ffd37ea6; xorp/fea/mfea_proto_comm.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Sat Apr 30 22:11:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 30 Apr 2005 15:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j3UMC2gv087320 for ; Sat, 30 Apr 2005 15:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3UMC1Q9025511 for ; Sat, 30 Apr 2005 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3UMC1Gq010272; Sat, 30 Apr 2005 15:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j3UMBUGq010254 for ; Sat, 30 Apr 2005 15:11:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j3UMBUKC025506 for ; Sat, 30 Apr 2005 15:11:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j3UMBUXG097809 for ; Sat, 30 Apr 2005 15:11:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j3UMBUlg097808 for xorp-cvs@icir.org; Sat, 30 Apr 2005 22:11:30 GMT (envelope-from pavlin) Date: Sat, 30 Apr 2005 22:11:30 GMT From: Pavlin Radoslavov Message-Id: <200504302211.j3UMBUlg097808@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-04-30 22:11:29 UTC XORP CVS repository Modified files: pim TODO Log message: * Remove a TODO entry that is done. * No need to keep a copy of the kernel dataflow meters inside PIM or MFEA, hence remove the TODO entry. Revision Changes Path 1.105 +1 -7; commitid: 17dd4427402307ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Sun May 1 17:06:27 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 May 2005 10:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j41H71JC024508 for ; Sun, 1 May 2005 10:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j41H71Fs037389 for ; Sun, 1 May 2005 10:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j41H712L008647; Sun, 1 May 2005 10:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j41H6R2L008624 for ; Sun, 1 May 2005 10:06:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j41H6RrW037385 for ; Sun, 1 May 2005 10:06:27 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j41H6R8q007287 for ; Sun, 1 May 2005 10:06:27 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j41H6RFf007286 for xorp-cvs@icir.org; Sun, 1 May 2005 17:06:27 GMT (envelope-from pavlin) Date: Sun, 1 May 2005 17:06:27 GMT From: Pavlin Radoslavov Message-Id: <200505011706.j41H6RFf007286@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-01 17:06:27 UTC XORP CVS repository Modified files: . ERRATA Log message: Add an errata entry for PIM-SM and point-to-point links. Bug found by: James Courtier-Dutton Revision Changes Path 1.20 +10 -1; commitid: 1c5d42750c727ea6; xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Sun May 1 17:09:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 01 May 2005 10:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j41HA1j9025238 for ; Sun, 1 May 2005 10:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j41HA1gs037412 for ; Sun, 1 May 2005 10:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j41HA12L008726; Sun, 1 May 2005 10:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j41H9S2L008707 for ; Sun, 1 May 2005 10:09:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j41H9Sc4037407 for ; Sun, 1 May 2005 10:09:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j41H9S9S007349 for ; Sun, 1 May 2005 10:09:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j41H9Svt007348 for xorp-cvs@icir.org; Sun, 1 May 2005 17:09:28 GMT (envelope-from pavlin) Date: Sun, 1 May 2005 17:09:28 GMT From: Pavlin Radoslavov Message-Id: <200505011709.j41H9Svt007348@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-01 17:09:28 UTC XORP CVS repository Modified files: . ERRATA Log message: Minor rewording in the PIM-SM p2p entry. Revision Changes Path 1.21 +3 -2; commitid: 1c9b42750d3b7ea6; xorp/ERRATA _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Mon May 2 19:12:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 12:13:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j42JD1vQ044140 for ; Mon, 2 May 2005 12:13:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42JD0d3057217 for ; Mon, 2 May 2005 12:13:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42JD02L019880; Mon, 2 May 2005 12:13:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42JCW2L019856 for ; Mon, 2 May 2005 12:12:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42JCWtn057209 for ; Mon, 2 May 2005 12:12:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j42JCWWB022867 for ; Mon, 2 May 2005 12:12:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j42JCWp6022866 for xorp-cvs@icir.org; Mon, 2 May 2005 19:12:32 GMT (envelope-from pavlin) Date: Mon, 2 May 2005 19:12:32 GMT From: Pavlin Radoslavov Message-Id: <200505021912.j42JCWp6022866@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-02 19:12:32 UTC XORP CVS repository Modified files: pim TODO Log message: Reclasify two TODO entries that are already implemented and need to be done only in the testsuite. Revision Changes Path 1.106 +8 -36; commitid: 593842767b7c7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Mon May 2 20:01:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 13:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j42K21D5054196 for ; Mon, 2 May 2005 13:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42K21Jf057934 for ; Mon, 2 May 2005 13:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42K212L021726; Mon, 2 May 2005 13:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42K1e2L021711 for ; Mon, 2 May 2005 13:01:40 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42K1e1A057922 for ; Mon, 2 May 2005 13:01:40 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j42K1dlC029058 for ; Mon, 2 May 2005 13:01:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j42K1dVs029057 for xorp-cvs@icir.org; Mon, 2 May 2005 20:01:39 GMT (envelope-from pavlin) Date: Mon, 2 May 2005 20:01:39 GMT From: Pavlin Radoslavov Message-Id: <200505022001.j42K1dVs029057@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-02 20:01:39 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that are already done. Revision Changes Path 1.107 +1 -14; commitid: 7167427687187ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Mon May 2 20:04:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 13:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j42K51mb054784 for ; Mon, 2 May 2005 13:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42K51WJ057980 for ; Mon, 2 May 2005 13:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42K512L021817; Mon, 2 May 2005 13:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42K4U2L021795 for ; Mon, 2 May 2005 13:04:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42K4Uqp057969 for ; Mon, 2 May 2005 13:04:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j42K4UC0029125 for ; Mon, 2 May 2005 13:04:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j42K4UDw029124 for xorp-cvs@icir.org; Mon, 2 May 2005 20:04:30 GMT (envelope-from pavlin) Date: Mon, 2 May 2005 20:04:30 GMT From: Pavlin Radoslavov Message-Id: <200505022004.j42K4UDw029124@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-02 20:04:30 UTC XORP CVS repository Modified files: pim TODO Log message: Remove a TODO entry for optimizing the behavior when a large number of back-to-back WRONGVIF kernel signals are received. We don't need such optimization, because if the kernel operates properly then it will be sending the WRONGVIF signals with some interval between them (default to 3 seconds for *BSD). Revision Changes Path 1.108 +1 -9; commitid: 71a1427687377ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Mon May 2 20:18:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 13:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j42KJ1ar057613 for ; Mon, 2 May 2005 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42KJ1bE058178 for ; Mon, 2 May 2005 13:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42KJ12L022249; Mon, 2 May 2005 13:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42KIp2L022242 for ; Mon, 2 May 2005 13:18:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42KIpSK058176 for ; Mon, 2 May 2005 13:18:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j42KIp3l029330 for ; Mon, 2 May 2005 13:18:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j42KIp9X029329 for xorp-cvs@icir.org; Mon, 2 May 2005 20:18:51 GMT (envelope-from pavlin) Date: Mon, 2 May 2005 20:18:51 GMT From: Pavlin Radoslavov Message-Id: <200505022018.j42KIp9X029329@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-02 20:18:50 UTC XORP CVS repository Modified files: pim TODO Log message: * Reword a spec-related TODO entry * Add a spec-related TODO entry Revision Changes Path 1.109 +42 -11; commitid: 727242768b1b7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Mon May 2 21:04:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 14:05:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j42L51ac066768 for ; Mon, 2 May 2005 14:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42L51Ad058737 for ; Mon, 2 May 2005 14:05:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42L512L023678; Mon, 2 May 2005 14:05:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j42L4h2L023653 for ; Mon, 2 May 2005 14:04:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j42L4hAK058730 for ; Mon, 2 May 2005 14:04:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j42L4hnU030085 for ; Mon, 2 May 2005 14:04:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j42L4hqF030084 for xorp-cvs@icir.org; Mon, 2 May 2005 21:04:43 GMT (envelope-from pavlin) Date: Mon, 2 May 2005 21:04:43 GMT From: Pavlin Radoslavov Message-Id: <200505022104.j42L4hqF030084@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-02 21:04:43 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that are already done. Revision Changes Path 1.110 +1 -19; commitid: 7565427695e27ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Tue May 3 01:39:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 18:40:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j431e1U4029105 for ; Mon, 2 May 2005 18:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j431e07J061400 for ; Mon, 2 May 2005 18:40:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j431e02L002926; Mon, 2 May 2005 18:40:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j431df2L002914 for ; Mon, 2 May 2005 18:39:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j431df7F061395 for ; Mon, 2 May 2005 18:39:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j431dfGr037631 for ; Mon, 2 May 2005 18:39:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j431dfNb037630 for xorp-cvs@icir.org; Tue, 3 May 2005 01:39:41 GMT (envelope-from pavlin) Date: Tue, 3 May 2005 01:39:41 GMT From: Pavlin Radoslavov Message-Id: <200505030139.j431dfNb037630@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-03 01:39:41 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre_assert.cc Log message: * Add a new method PimMre::my_assert_metric_wc() to compute my_assert_metric(S,G,I) for (*,G) entries. * Use the above method and the existing PimMre::my_assert_metric_sg() method to obtain the local assert metric inside PimMre::assert_process() instead of hand-crafting the metric. Revision Changes Path 1.47 +3 -1; commitid: 92c04276d53a7ea6; xorp/pim/pim_mre.hh 1.34 +28 -11; commitid: 92c04276d53a7ea6; xorp/pim/pim_mre_assert.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Tue May 3 02:43:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 19:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j432i1Sj041637 for ; Mon, 2 May 2005 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j432i1p2062053 for ; Mon, 2 May 2005 19:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j432i12L004526; Mon, 2 May 2005 19:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j432hK2L004515 for ; Mon, 2 May 2005 19:43:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j432hKdX062049 for ; Mon, 2 May 2005 19:43:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j432hKp0038438 for ; Mon, 2 May 2005 19:43:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j432hKM4038437 for xorp-cvs@icir.org; Tue, 3 May 2005 02:43:20 GMT (envelope-from pavlin) Date: Tue, 3 May 2005 02:43:20 GMT From: Pavlin Radoslavov Message-Id: <200505030243.j432hKM4038437@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-03 02:43:20 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that don't apply anymore. Revision Changes Path 1.111 +1 -29; commitid: 95fa4276e4d57ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Tue May 3 02:47:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 19:48:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j432m05p042446 for ; Mon, 2 May 2005 19:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j432m0db062094 for ; Mon, 2 May 2005 19:48:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j432m02L004636; Mon, 2 May 2005 19:48:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j432l42L004593 for ; Mon, 2 May 2005 19:47:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j432l3EZ062087 for ; Mon, 2 May 2005 19:47:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j432l3Kh038520 for ; Mon, 2 May 2005 19:47:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j432l3mI038519 for xorp-cvs@icir.org; Tue, 3 May 2005 02:47:03 GMT (envelope-from pavlin) Date: Tue, 3 May 2005 02:47:03 GMT From: Pavlin Radoslavov Message-Id: <200505030247.j432l3mI038519@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-03 02:47:03 UTC XORP CVS repository Modified files: pim TODO Log message: Remove a TODO entry that is already done, and add a related new TODO entry. Revision Changes Path 1.112 +8 -13; commitid: 965d4276e60e7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Tue May 3 03:02:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 02 May 2005 20:03:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j43331Gg045410 for ; Mon, 2 May 2005 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j43331mP062254 for ; Mon, 2 May 2005 20:03:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j433312L005007; Mon, 2 May 2005 20:03:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4332E2L004987 for ; Mon, 2 May 2005 20:02:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4332EIZ062244 for ; Mon, 2 May 2005 20:02:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4332EOR038672 for ; Mon, 2 May 2005 20:02:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4332Ell038671 for xorp-cvs@icir.org; Tue, 3 May 2005 03:02:14 GMT (envelope-from pavlin) Date: Tue, 3 May 2005 03:02:14 GMT From: Pavlin Radoslavov Message-Id: <200505030302.j4332Ell038671@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-03 03:02:14 UTC XORP CVS repository Modified files: pim TODO Log message: Remove TODO entries that are already done. Revision Changes Path 1.113 +1 -13; commitid: 96f54276e9ab7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Wed May 4 01:53:01 2005 Fri Jul 9 11:44:41 2004 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 May 2005 18:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j441s1GF038193 for ; Tue, 3 May 2005 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j441s1EJ080226 for ; Tue, 3 May 2005 18:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j441s12L017332; Tue, 3 May 2005 18:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j441r22L017315 for ; Tue, 3 May 2005 18:53:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j441r1UZ080190 for ; Tue, 3 May 2005 18:53:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j441r1sU059897 for ; Tue, 3 May 2005 18:53:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j441r1uW059896 for xorp-cvs@icir.org; Wed, 4 May 2005 01:53:01 GMT (envelope-from pavlin) Date: Wed, 4 May 2005 01:53:01 GMT From: Pavlin Radoslavov Message-Id: <200505040153.j441r1uW059896@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-04 01:53:01 UTC XORP CVS repository Modified files: pim DEVNOTES pim_mre_assert.cc pim_proto_assert.cc pim_proto_assert.hh Log message: Fix an AssertCancel-related issue that is in the PIM-SM spec: According to the spec, if we receive AssertCancel on the RPF interface, then its metric will be compared against my_assert_metric(). However, given that CouldAssert for the RPF interface is false, my_assert_metric() will return infinite_assert_metric(), therefore AssertCancel will fail to perform its duty. This is fixed in the implementation by testing first if the received Assert message contains AssertCancel metric, and if yes, the local router is automatically declared the winner. Note: This fix is based on the following email to the PIM Working Group mailing list: Date: Fri, 9 Jul 2004 11:44:41 -0700 (PDT) From: Venugopal Hemige Subject: [pim] Hello HoldTime and Assert questions http://www1.ietf.org/mail-archive/web/pim/current/msg00206.html Revision Changes Path 1.6 +17 -1; commitid: e9d342782aae7ea6; xorp/pim/DEVNOTES 1.35 +23 -2; commitid: e9d342782aae7ea6; xorp/pim/pim_mre_assert.cc 1.26 +15 -1; commitid: e9d342782aae7ea6; xorp/pim/pim_proto_assert.cc 1.7 +2 -1; commitid: e9d342782aae7ea6; xorp/pim/pim_proto_assert.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Wed May 4 03:33:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 May 2005 20:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j443Y1Gc060112 for ; Tue, 3 May 2005 20:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j443Y1gR081555 for ; Tue, 3 May 2005 20:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j443Y12L020020; Tue, 3 May 2005 20:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j443Xt2L020000 for ; Tue, 3 May 2005 20:33:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j443XtN0081552 for ; Tue, 3 May 2005 20:33:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j443XtAK061131 for ; Tue, 3 May 2005 20:33:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j443Xth7061130 for xorp-cvs@icir.org; Wed, 4 May 2005 03:33:55 GMT (envelope-from pavlin) Date: Wed, 4 May 2005 03:33:55 GMT From: Pavlin Radoslavov Message-Id: <200505040333.j443Xth7061130@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-04 03:33:55 UTC XORP CVS repository Modified files: pim pim_mre_join_prune.cc Log message: Add comments about extra cleanup that is not in the spec. Revision Changes Path 1.36 +29 -1; commitid: eeb0427842897ea6; xorp/pim/pim_mre_join_prune.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Wed May 4 03:36:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 03 May 2005 20:37:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j443b0wD060715 for ; Tue, 3 May 2005 20:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j443b0Zt081605 for ; Tue, 3 May 2005 20:37:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j443b02L020172; Tue, 3 May 2005 20:37:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j443a02L020123 for ; Tue, 3 May 2005 20:36:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j443a0IP081600 for ; Tue, 3 May 2005 20:36:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j443a0PD061225 for ; Tue, 3 May 2005 20:36:00 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j443a0GT061224 for xorp-cvs@icir.org; Wed, 4 May 2005 03:36:00 GMT (envelope-from pavlin) Date: Wed, 4 May 2005 03:36:00 GMT From: Pavlin Radoslavov Message-Id: <200505040336.j443a0GT061224@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-04 03:36:00 UTC XORP CVS repository Modified files: pim pim_mre_join_prune.cc Log message: Bug fix: Assign properly the downstream Expiry Timer when (*,*,RP) Join message is received and the state machine transitions from Prune-Pending state to Join state. Revision Changes Path 1.37 +6 -5; commitid: eee9427842e47ea6; xorp/pim/pim_mre_join_prune.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Wed May 4 16:31:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 May 2005 09:32:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j44GW1Fb026447 for ; Wed, 4 May 2005 09:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j44GW1YS093367 for ; Wed, 4 May 2005 09:32:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j44GW12L012369; Wed, 4 May 2005 09:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j44GVX2L012351 for ; Wed, 4 May 2005 09:31:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j44GVXw9093364 for ; Wed, 4 May 2005 09:31:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j44GVXsr077460 for ; Wed, 4 May 2005 09:31:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j44GVXjk077459 for xorp-cvs@icir.org; Wed, 4 May 2005 16:31:33 GMT (envelope-from pavlin) Date: Wed, 4 May 2005 16:31:33 GMT From: Pavlin Radoslavov Message-Id: <200505041631.j44GVXjk077459@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-04 16:31:33 UTC XORP CVS repository Modified files: pim TODO Log message: Add spec-related TODO entries. Revision Changes Path 1.114 +224 -6; commitid: 12e674278f8d37ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Thu May 5 02:53:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 04 May 2005 19:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j452s2ai071344 for ; Wed, 4 May 2005 19:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j452s1sa001049 for ; Wed, 4 May 2005 19:54:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j452s12L003017; Wed, 4 May 2005 19:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j452rn2L003010 for ; Wed, 4 May 2005 19:53:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j452rnV3001041 for ; Wed, 4 May 2005 19:53:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j452rni1085820 for ; Wed, 4 May 2005 19:53:49 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j452rmFF085819 for xorp-cvs@icir.org; Thu, 5 May 2005 02:53:49 GMT (envelope-from pavlin) Date: Thu, 5 May 2005 02:53:49 GMT From: Pavlin Radoslavov Message-Id: <200505050253.j452rmFF085819@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/testbed/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: pavlin@xorpc.icir.org 2005-05-05 02:53:48 UTC XORP CVS repository Added files: testbed/config config11.xt Log message: Add a new testbed configuration file that merges the multicast topology from config8.xt and the xorp12-based star topology from config10.xt. Note that after merging xorp0 is not connected to xorp1 anymore (as they were in config8.xt), and that xorp1, xorp6, xorp7 use different interfaces to connect to xorp12 (compared to config10.xt). Revision Changes Path 1.1 +74 -0 other/testbed/config/config11.xt (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Thu May 5 19:38:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 12:39:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j45Jd16b077379 for ; Thu, 5 May 2005 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Jd1Er013973 for ; Thu, 5 May 2005 12:39:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Jd12L004165; Thu, 5 May 2005 12:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45JcX2L004142 for ; Thu, 5 May 2005 12:38:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45JcX53013970 for ; Thu, 5 May 2005 12:38:33 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j45JcXN1011034 for ; Thu, 5 May 2005 12:38:33 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j45JcXwB011033 for xorp-cvs@icir.org; Thu, 5 May 2005 19:38:33 GMT (envelope-from bms) Date: Thu, 5 May 2005 19:38:33 GMT From: Bruce Simpson Message-Id: <200505051938.j45JcXwB011033@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-05 19:38:32 UTC XORP CVS repository Modified files: . config.h.in acconfig.h configure.in config acipv6.m4 acxorp.m4 compiler_flags.m4 dmalloc.m4 Added files: config acfirewall.m4 acifconf.m4 acinet.m4 acipmrt.m4 acipv4.m4 aclinux.m4 acsocket.m4 ahxorp.m4 Log message: Bring in the new configure.in from the Windows branch. This adds Windows support and is a significant rewrite of the existing configure script for autoconf 2.53. Approved by: atanu Reviewed by: pavlin Revision Changes Path 1.14 +8 -0; commitid: 2acf427a75fd7ea6; xorp/acconfig.h 1.43 +261 -11; commitid: 2acf427a75fd7ea6; xorp/config.h.in 1.1 +133 -0 xorp/config/acfirewall.m4 (new) 1.1 +139 -0 xorp/config/acifconf.m4 (new) 1.1 +22 -0 xorp/config/acinet.m4 (new) 1.1 +78 -0 xorp/config/acipmrt.m4 (new) 1.1 +156 -0 xorp/config/acipv4.m4 (new) 1.18 +103 -93; commitid: 2acf427a75fd7ea6; xorp/config/acipv6.m4 1.1 +70 -0 xorp/config/aclinux.m4 (new) 1.1 +158 -0 xorp/config/acsocket.m4 (new) 1.6 +6 -1; commitid: 2acf427a75fd7ea6; xorp/config/acxorp.m4 1.1 +88 -0 xorp/config/ahxorp.m4 (new) 1.3 +9 -13; commitid: 2acf427a75fd7ea6; xorp/config/compiler_flags.m4 1.3 +8 -2; commitid: 2acf427a75fd7ea6; xorp/config/dmalloc.m4 1.135 +329 -823; commitid: 2acf427a75fd7ea6; xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:28 2005 Subject: No subject Thu May 5 19:46:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 12:47:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j45Jl1rQ078962 for ; Thu, 5 May 2005 12:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Jl1ZP014071 for ; Thu, 5 May 2005 12:47:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Jl12L004572; Thu, 5 May 2005 12:47:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45JkL2L004537 for ; Thu, 5 May 2005 12:46:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45JkKX6014067 for ; Thu, 5 May 2005 12:46:20 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j45JkKRP012869 for ; Thu, 5 May 2005 12:46:20 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j45JkK23012868 for xorp-cvs@icir.org; Thu, 5 May 2005 19:46:20 GMT (envelope-from bms) Date: Thu, 5 May 2005 19:46:20 GMT From: Bruce Simpson Message-Id: <200505051946.j45JkK23012868@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-05 19:46:20 UTC XORP CVS repository Modified files: . Makefile.in Log message: Regen Revision Changes Path 1.42 +1 -5; commitid: 322b427a78057ea6; xorp/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Thu May 5 19:49:08 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 12:50:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j45Jo60H079563 for ; Thu, 5 May 2005 12:50:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Jo6k6014105 for ; Thu, 5 May 2005 12:50:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Jo62L004719; Thu, 5 May 2005 12:50:06 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Jn92L004662 for ; Thu, 5 May 2005 12:49:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Jn8Es014083 for ; Thu, 5 May 2005 12:49:08 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j45Jn8UF013872 for ; Thu, 5 May 2005 12:49:08 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j45Jn8LE013871 for xorp-cvs@icir.org; Thu, 5 May 2005 19:49:08 GMT (envelope-from bms) Date: Thu, 5 May 2005 19:49:08 GMT From: Bruce Simpson Message-Id: <200505051949.j45Jn8LE013871@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-05 19:49:08 UTC XORP CVS repository Modified files: libcomm Makefile.in comm_api.h comm_private.h comm_sock.c comm_user.c test_comm.c Log message: Bring in the libcomm updates from the windows branch. Revision Changes Path 1.24 +1 -5; commitid: 360c427a78a87ea6; xorp/libcomm/Makefile.in 1.11 +84 -42; commitid: 360c427a78a87ea6; xorp/libcomm/comm_api.h 1.3 +12 -1; commitid: 360c427a78a87ea6; xorp/libcomm/comm_private.h 1.13 +278 -142; commitid: 360c427a78a87ea6; xorp/libcomm/comm_sock.c 1.12 +149 -83; commitid: 360c427a78a87ea6; xorp/libcomm/comm_user.c 1.9 +14 -1; commitid: 360c427a78a87ea6; xorp/libcomm/test_comm.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Thu May 5 19:53:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 12:54:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j45Js0wr080375 for ; Thu, 5 May 2005 12:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Js0WU014139 for ; Thu, 5 May 2005 12:54:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Js02L004904; Thu, 5 May 2005 12:54:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j45Jr22L004859 for ; Thu, 5 May 2005 12:53:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j45Jr2JD014129 for ; Thu, 5 May 2005 12:53:02 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j45Jr1wP015113 for ; Thu, 5 May 2005 12:53:01 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j45Jr1Nd015112 for xorp-cvs@icir.org; Thu, 5 May 2005 19:53:01 GMT (envelope-from bms) Date: Thu, 5 May 2005 19:53:01 GMT From: Bruce Simpson Message-Id: <200505051953.j45Jr1Nd015112@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/bgp xorp/bgp/harness xorp/bgp/tools xorp/cli xorp/cli/tools xorp/contrib xorp/docs xorp/docs/bgp xorp/docs/design_arch xorp/docs/fea xorp/docs/libxipc xorp/docs/libxorp xorp/docs/mfea xorp/docs/mld6igmp ... Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-05 19:53:01 UTC XORP CVS repository Modified files: . MakefileRootCheck.in configure bgp Makefile.in bgp/harness Makefile.in bgp/tools Makefile.in cli Makefile.in cli/tools Makefile.in contrib Makefile.in docs Makefile.in docs/bgp Makefile.in docs/design_arch Makefile.in docs/fea Makefile.in docs/libxipc Makefile.in docs/libxorp Makefile.in docs/mfea Makefile.in docs/mld6igmp Makefile.in docs/multicast Makefile.in docs/pim Makefile.in docs/pim_testsuite Makefile.in docs/rib Makefile.in docs/rtrmgr Makefile.in docs/slides Makefile.in docs/slides/status_2004_02 Makefile.in docs/snmp Makefile.in docs/test_harness Makefile.in docs/user_manual Makefile.in docs/xorpdev_101 Makefile.in etc Makefile.in etc/templates Makefile.in fea Makefile.in MakefileRootCheck.in fea/tools Makefile.in fib2mrib Makefile.in libfeaclient Makefile.in libproto Makefile.in libxipc Makefile.in libxorp Makefile.in mibs configure mld6igmp Makefile.in mrt Makefile.in pim Makefile.in policy Makefile.in policy/backend Makefile.in policy/common Makefile.in policy/test Makefile.in rib Makefile.in rib/tools Makefile.in rip Makefile.in rip/tools Makefile.in rtrmgr Makefile.in static_routes Makefile.in utils Makefile.in utils/flower_malloc Makefile.in xrl Makefile.in xrl/interfaces Makefile.in xrl/targets Makefile.in xrl/tests Makefile.in Log message: Regen. Revision Changes Path 1.6 +1 -5; commitid: 3674427a796f7ea6; xorp/MakefileRootCheck.in 1.50 +1 -5; commitid: 3674427a796f7ea6; xorp/bgp/Makefile.in 1.32 +1 -5; commitid: 3674427a796f7ea6; xorp/bgp/harness/Makefile.in 1.28 +1 -5; commitid: 3674427a796f7ea6; xorp/bgp/tools/Makefile.in 1.25 +1 -5; commitid: 3674427a796f7ea6; xorp/cli/Makefile.in 1.5 +1 -5; commitid: 3674427a796f7ea6; xorp/cli/tools/Makefile.in 1.145 +9291 -4606; commitid: 3674427a796f7ea6; xorp/configure 1.5 +1 -5; commitid: 3674427a796f7ea6; xorp/contrib/Makefile.in 1.23 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/bgp/Makefile.in 1.20 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/design_arch/Makefile.in 1.20 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/fea/Makefile.in 1.21 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/libxipc/Makefile.in 1.20 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/libxorp/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/mfea/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/mld6igmp/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/multicast/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/pim/Makefile.in 1.34 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/pim_testsuite/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/rib/Makefile.in 1.22 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/rtrmgr/Makefile.in 1.7 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/slides/Makefile.in 1.7 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/slides/status_2004_02/Makefile.in 1.20 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/snmp/Makefile.in 1.19 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/test_harness/Makefile.in 1.11 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/user_manual/Makefile.in 1.7 +1 -5; commitid: 3674427a796f7ea6; xorp/docs/xorpdev_101/Makefile.in 1.9 +1 -5; commitid: 3674427a796f7ea6; xorp/etc/Makefile.in 1.21 +1 -5; commitid: 3674427a796f7ea6; xorp/etc/templates/Makefile.in 1.73 +1 -5; commitid: 3674427a796f7ea6; xorp/fea/Makefile.in 1.8 +1 -5; commitid: 3674427a796f7ea6; xorp/fea/MakefileRootCheck.in 1.5 +1 -5; commitid: 3674427a796f7ea6; xorp/fea/tools/Makefile.in 1.12 +1 -5; commitid: 3674427a796f7ea6; xorp/fib2mrib/Makefile.in 1.15 +1 -5; commitid: 3674427a796f7ea6; xorp/libfeaclient/Makefile.in 1.26 +1 -5; commitid: 3674427a796f7ea6; xorp/libproto/Makefile.in 1.61 +1 -5; commitid: 3674427a796f7ea6; xorp/libxipc/Makefile.in 1.47 +1 -5; commitid: 3674427a796f7ea6; xorp/libxorp/Makefile.in 1.12 +709 -367; commitid: 3674427a796f7ea6; xorp/mibs/configure 1.44 +1 -5; commitid: 3674427a796f7ea6; xorp/mld6igmp/Makefile.in 1.23 +1 -5; commitid: 3674427a796f7ea6; xorp/mrt/Makefile.in 1.50 +1 -5; commitid: 3674427a796f7ea6; xorp/pim/Makefile.in 1.24 +1 -5; commitid: 3674427a796f7ea6; xorp/policy/Makefile.in 1.6 +1 -5; commitid: 3674427a796f7ea6; xorp/policy/backend/Makefile.in 1.6 +1 -5; commitid: 3674427a796f7ea6; xorp/policy/common/Makefile.in 1.6 +1 -5; commitid: 3674427a796f7ea6; xorp/policy/test/Makefile.in 1.52 +1 -5; commitid: 3674427a796f7ea6; xorp/rib/Makefile.in 1.5 +1 -5; commitid: 3674427a796f7ea6; xorp/rib/tools/Makefile.in 1.49 +1 -5; commitid: 3674427a796f7ea6; xorp/rip/Makefile.in 1.7 +1 -5; commitid: 3674427a796f7ea6; xorp/rip/tools/Makefile.in 1.62 +1 -5; commitid: 3674427a796f7ea6; xorp/rtrmgr/Makefile.in 1.13 +1 -5; commitid: 3674427a796f7ea6; xorp/static_routes/Makefile.in 1.28 +1 -5; commitid: 3674427a796f7ea6; xorp/utils/Makefile.in 1.8 +1 -5; commitid: 3674427a796f7ea6; xorp/utils/flower_malloc/Makefile.in 1.17 +1 -5; commitid: 3674427a796f7ea6; xorp/xrl/Makefile.in 1.46 +1 -5; commitid: 3674427a796f7ea6; xorp/xrl/interfaces/Makefile.in 1.71 +1 -5; commitid: 3674427a796f7ea6; xorp/xrl/targets/Makefile.in 1.23 +1 -5; commitid: 3674427a796f7ea6; xorp/xrl/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Fri May 6 02:15:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 19:16:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j462G2gs081966 for ; Thu, 5 May 2005 19:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j462G2iL018297 for ; Thu, 5 May 2005 19:16:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j462G12L018260; Thu, 5 May 2005 19:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j462FQ2L018241 for ; Thu, 5 May 2005 19:15:26 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j462FPEF018294 for ; Thu, 5 May 2005 19:15:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j462FPMG018569 for ; Thu, 5 May 2005 19:15:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j462FPt4018568 for xorp-cvs@icir.org; Fri, 6 May 2005 02:15:25 GMT (envelope-from pavlin) Date: Fri, 6 May 2005 02:15:25 GMT From: Pavlin Radoslavov Message-Id: <200505060215.j462FPt4018568@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-06 02:15:25 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: Move all "_comm_set_serrno()" calls to the beginning of the code fragments that handle the error case if a system call fails. Revision Changes Path 1.14 +5 -6; commitid: 485b427ad2c87ea6; xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Fri May 6 02:18:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 05 May 2005 19:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j462J2xD090078 for ; Thu, 5 May 2005 19:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j462J1KI018370 for ; Thu, 5 May 2005 19:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j462J12L018349; Thu, 5 May 2005 19:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j462If2L018339 for ; Thu, 5 May 2005 19:18:41 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j462IfOn018348 for ; Thu, 5 May 2005 19:18:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j462IfrU018628 for ; Thu, 5 May 2005 19:18:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j462IfsY018627 for xorp-cvs@icir.org; Fri, 6 May 2005 02:18:41 GMT (envelope-from pavlin) Date: Fri, 6 May 2005 02:18:41 GMT From: Pavlin Radoslavov Message-Id: <200505060218.j462IfsY018627@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-06 02:18:41 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: Add-back the bug fix that was applied in rev. 1.12 but was lost later. Revision Changes Path 1.15 +5 -1; commitid: 48aa427ad3df7ea6; xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Fri May 6 23:32:15 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 May 2005 16:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j46NX2Iu043700 for ; Fri, 6 May 2005 16:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j46NX2hF034496 for ; Fri, 6 May 2005 16:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j46NX12L027695; Fri, 6 May 2005 16:33:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j46NWF2L027678 for ; Fri, 6 May 2005 16:32:15 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j46NWFoW034493 for ; Fri, 6 May 2005 16:32:15 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j46NWFsc010798 for ; Fri, 6 May 2005 16:32:15 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j46NWFCV010797 for xorp-cvs@icir.org; Fri, 6 May 2005 23:32:15 GMT (envelope-from pavlin) Date: Fri, 6 May 2005 23:32:15 GMT From: Pavlin Radoslavov Message-Id: <200505062332.j46NWFCV010797@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-06 23:32:15 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c comm_user.c test_comm.c Log message: * Fix the return value of comm_sock_open from int to xsock_t * If a function returns xsock_t, then on error now it returns XORP_BAD_SOCKET instead of XORP_ERROR. * Add few missing checks for errors. * Add few missing comm_sock_close(). * If a function tries to do something with a socket it didn't create and there is an error, then don't close the socket. The caller should check the return value and decide whether to close it or not. * Bug fix inside comm_sock_accept(): if we cannot enable TCP_NODELAY on the accepted socket, then close that socket rather than the original socket. Approved by: Atanu, Bruce Revision Changes Path 1.12 +20 -22; commitid: 2a0e427bfe5b7ea6; xorp/libcomm/comm_api.h 1.16 +15 -25; commitid: 2a0e427bfe5b7ea6; xorp/libcomm/comm_sock.c 1.13 +135 -88; commitid: 2a0e427bfe5b7ea6; xorp/libcomm/comm_user.c 1.10 +19 -19; commitid: 2a0e427bfe5b7ea6; xorp/libcomm/test_comm.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Sat May 7 03:03:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 06 May 2005 20:04:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j47341AC040798 for ; Fri, 6 May 2005 20:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j473416G036472 for ; Fri, 6 May 2005 20:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j473402L003757; Fri, 6 May 2005 20:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4733k2L003746 for ; Fri, 6 May 2005 20:03:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4733j44036470 for ; Fri, 6 May 2005 20:03:45 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4733jeY053257 for ; Fri, 6 May 2005 20:03:45 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4733jL1053256 for xorp-cvs@icir.org; Sat, 7 May 2005 03:03:45 GMT (envelope-from pavlin) Date: Sat, 7 May 2005 03:03:45 GMT From: Pavlin Radoslavov Message-Id: <200505070303.j4733jL1053256@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-07 03:03:45 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc Log message: Add XLOG_TRACE() messages when we add/delete MFC or bandwidth monitor entries. Revision Changes Path 1.30 +54 -2; commitid: cfee427c2ff57ea6; xorp/fea/mfea_mrouter.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Sun May 8 19:27:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 08 May 2005 12:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j48JS1Aw094025 for ; Sun, 8 May 2005 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48JS1lf066623 for ; Sun, 8 May 2005 12:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48JS12L003470; Sun, 8 May 2005 12:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48JR42L003443 for ; Sun, 8 May 2005 12:27:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48JR47N066617 for ; Sun, 8 May 2005 12:27:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j48JR4ds088037 for ; Sun, 8 May 2005 12:27:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j48JR4vP088036 for xorp-cvs@icir.org; Sun, 8 May 2005 19:27:04 GMT (envelope-from pavlin) Date: Sun, 8 May 2005 19:27:04 GMT From: Pavlin Radoslavov Message-Id: <200505081927.j48JR4vP088036@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-08 19:27:04 UTC XORP CVS repository Modified files: fea fticonfig_entry_get_netlink.cc fticonfig_entry_set_netlink.cc ifconfig_set_netlink.cc netlink_socket.cc netlink_socket_utils.cc Log message: Add missing XORP_UINT_CAST() and XORP_INT_CAST(). Bug found by: "Gernot W. Schmied" Revision Changes Path 1.29 +4 -3; commitid: 157b7427e67ae7ea6; xorp/fea/fticonfig_entry_get_netlink.cc 1.23 +16 -11; commitid: 157b7427e67ae7ea6; xorp/fea/fticonfig_entry_set_netlink.cc 1.22 +19 -13; commitid: 157b7427e67ae7ea6; xorp/fea/ifconfig_set_netlink.cc 1.31 +16 -10; commitid: 157b7427e67ae7ea6; xorp/fea/netlink_socket.cc 1.24 +3 -3; commitid: 157b7427e67ae7ea6; xorp/fea/netlink_socket_utils.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Sun May 8 21:10:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 08 May 2005 14:11:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j48LB1pr016283 for ; Sun, 8 May 2005 14:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48LB1Db067605 for ; Sun, 8 May 2005 14:11:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48LB02L005601; Sun, 8 May 2005 14:11:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48LA52L005565 for ; Sun, 8 May 2005 14:10:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48LA5rx067579 for ; Sun, 8 May 2005 14:10:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j48LA5nI089063 for ; Sun, 8 May 2005 14:10:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j48LA5io089062 for xorp-cvs@icir.org; Sun, 8 May 2005 21:10:05 GMT (envelope-from pavlin) Date: Sun, 8 May 2005 21:10:05 GMT From: Pavlin Radoslavov Message-Id: <200505082110.j48LA5io089062@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-08 21:10:05 UTC XORP CVS repository Modified files: fea ifconfig_parse_nlm.cc Log message: Add missing XORP_UINT_CAST() and XORP_INT_CAST(). Bug found by: "Gernot W. Schmied" Revision Changes Path 1.18 +11 -11; commitid: 15bca427e801f7ea6; xorp/fea/ifconfig_parse_nlm.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Sun May 8 23:58:56 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 08 May 2005 16:59:32 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j48NxWx3057362 for ; Sun, 8 May 2005 16:59:32 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48NxWCP069157 for ; Sun, 8 May 2005 16:59:32 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48NxW2L009119; Sun, 8 May 2005 16:59:32 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j48Nwu2L009094 for ; Sun, 8 May 2005 16:58:56 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j48Nwu6R069149 for ; Sun, 8 May 2005 16:58:56 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j48NwuQX090408 for ; Sun, 8 May 2005 16:58:56 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j48NwuVb090407 for xorp-cvs@icir.org; Sun, 8 May 2005 23:58:56 GMT (envelope-from pavlin) Date: Sun, 8 May 2005 23:58:56 GMT From: Pavlin Radoslavov Message-Id: <200505082358.j48NwuVb090407@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-08 23:58:56 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc Log message: Add missing XORP_INT_CAST() Bug found by: "Gernot W. Schmied" Revision Changes Path 1.31 +2 -2; commitid: 1610e427ea7ab7ea6; xorp/fea/mfea_proto_comm.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Mon May 9 02:22:47 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sun, 08 May 2005 19:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j492N1PY089825 for ; Sun, 8 May 2005 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j492N1UX070517 for ; Sun, 8 May 2005 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j492N12L012671; Sun, 8 May 2005 19:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j492Ml2L012648 for ; Sun, 8 May 2005 19:22:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j492MlfQ070515 for ; Sun, 8 May 2005 19:22:47 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j492MlKv091474 for ; Sun, 8 May 2005 19:22:47 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j492MlXS091473 for xorp-cvs@icir.org; Mon, 9 May 2005 02:22:47 GMT (envelope-from pavlin) Date: Mon, 9 May 2005 02:22:47 GMT From: Pavlin Radoslavov Message-Id: <200505090222.j492MlXS091473@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-09 02:22:47 UTC XORP CVS repository Modified files: pim DEVNOTES Log message: Remove a note that is not valid anymore. Revision Changes Path 1.7 +1 -5; commitid: 16538427ec96e7ea6; xorp/pim/DEVNOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Mon May 9 08:50:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 May 2005 01:51:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j498p1XX068278 for ; Mon, 9 May 2005 01:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j498p1m3075311 for ; Mon, 9 May 2005 01:51:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j498p12L021376; Mon, 9 May 2005 01:51:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j498oP2L021358 for ; Mon, 9 May 2005 01:50:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j498oPgH075302 for ; Mon, 9 May 2005 01:50:25 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j498oP7h018030 for ; Mon, 9 May 2005 01:50:25 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j498oPB1018029 for xorp-cvs@icir.org; Mon, 9 May 2005 08:50:25 GMT (envelope-from atanu) Date: Mon, 9 May 2005 08:50:25 GMT From: Atanu Ghosh Message-Id: <200505090850.j498oPB1018029@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-09 08:50:25 UTC XORP CVS repository Modified files: libxipc finder_tcp_messenger.cc Log message: The connect() method which uses libcomm now returns comm_get_last_error() instead of errno directly. When an error occurs in the libcomm the error number is saved and errno is set to zero. The connect() method returns zero on success, unfortunately even on error it was returning zero. This should fix the tinderbox failures in test_lemming. Revision Changes Path 1.23 +4 -2; commitid: 4652427f244f7ea6; xorp/libxipc/finder_tcp_messenger.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Mon May 9 08:52:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 May 2005 01:53:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j498r1LK068691 for ; Mon, 9 May 2005 01:53:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j498r0S1075340 for ; Mon, 9 May 2005 01:53:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j498r02L021432; Mon, 9 May 2005 01:53:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j498qK2L021418 for ; Mon, 9 May 2005 01:52:20 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j498qKH2075332 for ; Mon, 9 May 2005 01:52:20 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j498qKXV018097 for ; Mon, 9 May 2005 01:52:20 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j498qKvL018096 for xorp-cvs@icir.org; Mon, 9 May 2005 08:52:20 GMT (envelope-from atanu) Date: Mon, 9 May 2005 08:52:20 GMT From: Atanu Ghosh Message-Id: <200505090852.j498qKvL018096@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-09 08:52:20 UTC XORP CVS repository Modified files: libcomm comm_user.c Log message: No longer ignore SIGPIPE in a socket library. Approved by: Pavlin Revision Changes Path 1.14 +1 -6; commitid: 4695427f24c37ea6; xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Mon May 9 22:23:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 May 2005 15:24:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j49MO2Rw073089 for ; Mon, 9 May 2005 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j49MO2hp086674 for ; Mon, 9 May 2005 15:24:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j49MO12L018000; Mon, 9 May 2005 15:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j49MNW2L017975 for ; Mon, 9 May 2005 15:23:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j49MNWFZ086666 for ; Mon, 9 May 2005 15:23:32 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j49MNWV6048639 for ; Mon, 9 May 2005 15:23:32 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j49MNWNd048638 for xorp-cvs@icir.org; Mon, 9 May 2005 22:23:32 GMT (envelope-from atanu) Date: Mon, 9 May 2005 22:23:32 GMT From: Atanu Ghosh Message-Id: <200505092223.j49MNWNd048638@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-09 22:23:32 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: Temporarily don't set errno to 0 we still have code using errno. Revision Changes Path 1.17 +4 -2; commitid: bde3427fe2e27ea6; xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Mon May 9 22:54:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 09 May 2005 15:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j49Mt146079940 for ; Mon, 9 May 2005 15:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j49Mt1R5087044 for ; Mon, 9 May 2005 15:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j49Mt12L018978; Mon, 9 May 2005 15:55:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j49Ms32L018941 for ; Mon, 9 May 2005 15:54:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j49Ms3YL087027 for ; Mon, 9 May 2005 15:54:03 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j49Ms3Zx048973 for ; Mon, 9 May 2005 15:54:03 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j49Ms3gS048972 for xorp-cvs@icir.org; Mon, 9 May 2005 22:54:03 GMT (envelope-from atanu) Date: Mon, 9 May 2005 22:54:03 GMT From: Atanu Ghosh Message-Id: <200505092254.j49Ms3gS048972@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-09 22:54:03 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_user.c Log message: Retrieve a human readable string (in English) for the last error comm_get_last_error_str(). Revision Changes Path 1.13 +8 -1; commitid: bf2f427fea0a7ea6; xorp/libcomm/comm_api.h 1.15 +12 -1; commitid: bf2f427fea0a7ea6; xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Tue May 10 12:25:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 05:26:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ACQ1Ta042299 for ; Tue, 10 May 2005 05:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACQ17s096463 for ; Tue, 10 May 2005 05:26:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACQ12L013144; Tue, 10 May 2005 05:26:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACPH2L013125 for ; Tue, 10 May 2005 05:25:17 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACPH2J096454 for ; Tue, 10 May 2005 05:25:17 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ACPHxN086783 for ; Tue, 10 May 2005 05:25:17 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ACPHLd086782 for xorp-cvs@icir.org; Tue, 10 May 2005 12:25:17 GMT (envelope-from atanu) Date: Tue, 10 May 2005 12:25:17 GMT From: Atanu Ghosh Message-Id: <200505101225.j4ACPHLd086782@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-10 12:25:17 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c comm_user.c Log message: Add a number of functions that are agnostic to address family. These fuctions take a struct *sockaddr, as opposed to an explicit family specific address and port. New fuctions: comm_bind_tcp() comm_sock_bind() comm_sock_connect() These functions will be required by BGP when it is modified to use this library. Revision Changes Path 1.14 +41 -1; commitid: 152df4280a82b7ea6; xorp/libcomm/comm_api.h 1.18 +83 -1; commitid: 152df4280a82b7ea6; xorp/libcomm/comm_sock.c 1.16 +39 -1; commitid: 152df4280a82b7ea6; xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Tue May 10 12:29:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 05:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ACU1Gb043264 for ; Tue, 10 May 2005 05:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACU1Eq096500 for ; Tue, 10 May 2005 05:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACU12L013276; Tue, 10 May 2005 05:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACTN2L013253 for ; Tue, 10 May 2005 05:29:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACTNDe096494 for ; Tue, 10 May 2005 05:29:23 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ACTNqD086875 for ; Tue, 10 May 2005 05:29:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ACTNIa086874 for xorp-cvs@icir.org; Tue, 10 May 2005 12:29:23 GMT (envelope-from atanu) Date: Tue, 10 May 2005 12:29:23 GMT From: Atanu Ghosh Message-Id: <200505101229.j4ACTNIa086874@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-10 12:29:23 UTC XORP CVS repository Modified files: bgp iptuple.cc Log message: Although windows supports the function gai_strerror at the moment we don't have access to it so its temporarily not used. Revision Changes Path 1.10 +16 -3; commitid: 1533f4280a9227ea6; xorp/bgp/iptuple.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Tue May 10 12:54:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 05:55:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ACt1HC049206 for ; Tue, 10 May 2005 05:55:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACt02o096804 for ; Tue, 10 May 2005 05:55:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACt02L013824; Tue, 10 May 2005 05:55:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ACso2L013815 for ; Tue, 10 May 2005 05:54:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ACsn6P096798 for ; Tue, 10 May 2005 05:54:49 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ACsn5l087267 for ; Tue, 10 May 2005 05:54:49 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ACsnLi087266 for xorp-cvs@icir.org; Tue, 10 May 2005 12:54:49 GMT (envelope-from atanu) Date: Tue, 10 May 2005 12:54:49 GMT From: Atanu Ghosh Message-Id: <200505101254.j4ACsnLi087266@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-10 12:54:49 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: In comm_set_blocking() clear the O_NONBLOCK bit rather preserving it when setting blocking. Revision Changes Path 1.19 +2 -2; commitid: 154c74280af187ea6; xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:29 2005 Subject: No subject Tue May 10 15:23:58 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 08:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4AFO1vd081467 for ; Tue, 10 May 2005 08:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4AFO0Mf000229 for ; Tue, 10 May 2005 08:24:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4AFO02L017708; Tue, 10 May 2005 08:24:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4AFNx2L017701 for ; Tue, 10 May 2005 08:23:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4AFNxUU000227 for ; Tue, 10 May 2005 08:23:59 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4AFNw2Z090450 for ; Tue, 10 May 2005 08:23:58 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4AFNw45090449 for xorp-cvs@icir.org; Tue, 10 May 2005 15:23:58 GMT (envelope-from atanu) Date: Tue, 10 May 2005 15:23:58 GMT From: Atanu Ghosh Message-Id: <200505101523.j4AFNw45090449@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-10 15:23:58 UTC XORP CVS repository Modified files: bgp bgp.cc socket.cc socket.hh Log message: Switch to using libcomm for socket operations. The libcomm library prints errors from system calls so the BGP code no longer needs to print the same errors. Revision Changes Path 1.51 +1 -2; commitid: 161324280d20d7ea6; xorp/bgp/bgp.cc 1.24 +48 -62; commitid: 161324280d20d7ea6; xorp/bgp/socket.cc 1.11 +5 -5; commitid: 161324280d20d7ea6; xorp/bgp/socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Tue May 10 16:28:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 09:31:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4AGV0bX064046 for ; Tue, 10 May 2005 09:31:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4AGV033001138 for ; Tue, 10 May 2005 09:31:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4AGV02L019802; Tue, 10 May 2005 09:31:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4AGSh2L019697 for ; Tue, 10 May 2005 09:28:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4AGShT8001100 for ; Tue, 10 May 2005 09:28:43 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4AGShWL091300 for ; Tue, 10 May 2005 09:28:43 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4AGShOh091299 for xorp-cvs@icir.org; Tue, 10 May 2005 16:28:43 GMT (envelope-from atanu) Date: Tue, 10 May 2005 16:28:43 GMT From: Atanu Ghosh Message-Id: <200505101628.j4AGShOh091299@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-10 16:28:43 UTC XORP CVS repository Modified files: bgp socket.cc Log message: Make the connect call non-blocking. Revision Changes Path 1.25 +5 -3; commitid: 164884280e13a7ea6; xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Tue May 10 23:42:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 16:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ANm1GR002241 for ; Tue, 10 May 2005 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANm1hK000252 for ; Tue, 10 May 2005 16:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANm1gY007676; Tue, 10 May 2005 16:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANlDgY007593 for ; Tue, 10 May 2005 16:47:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANlDuh000225 for ; Tue, 10 May 2005 16:47:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ANgk5Z001649 for ; Tue, 10 May 2005 16:42:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ANgkqs001642 for xorp-cvs@icir.org; Tue, 10 May 2005 23:42:46 GMT (envelope-from pavlin) Date: Tue, 10 May 2005 23:42:46 GMT From: Pavlin Radoslavov Message-Id: <200505102342.j4ANgkqs001642@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-10 23:42:21 UTC XORP CVS repository Modified files: pim pim_mfc.cc pim_mfc.hh Log message: * Add XLOG_TRACE() messages when we add or delete dataflow monitors * Add new method PimMfc::update_mfc() * Update the computation of the iif and olist inside PimMfc::recompute_iif_olist_mfc(): - If there is (S,G) SPT entry, then forward on the shortest-path tree rooted at the source, otherwise forward on the shared tree rooted at the RP. - Add a special case for updating the forwarding entry when we are not forwarding multicast traffic, but we need the forwarding entry to prevent unnecessary "no cache" or "wrong iif" upcalls. This fix is based on a bug report by "edrt" , and it was triggered by the following setup: # # # 3 S 4 # |--[vn3]--- # 1 2 | # ---[vn1]----[vn2]---| # RP BSR | # |--[vn4]--- # R 5 # # (All nodes' SPT switchover threshold is geq-3s-0p) Start R first and then S. Basically, after vn4 completes the switch to the SPT toward S, then vn2 is left with forwarding state that eventually will have iif toward RP, and olist = NULL. After the special-case fix, the iif of the forwarding state will be toward S, and olist = NULL. Bug found by: "edrt" Revision Changes Path 1.27 +88 -10; commitid: 5f3428142cc7ea6; xorp/pim/pim_mfc.cc 1.9 +3 -1; commitid: 5f3428142cc7ea6; xorp/pim/pim_mfc.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Tue May 10 23:51:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 16:52:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ANq1ow003232 for ; Tue, 10 May 2005 16:52:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANq08G000394 for ; Tue, 10 May 2005 16:52:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANq0gY007928; Tue, 10 May 2005 16:52:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANpWgY007913 for ; Tue, 10 May 2005 16:51:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANpWGK000384 for ; Tue, 10 May 2005 16:51:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ANpW9W001839 for ; Tue, 10 May 2005 16:51:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ANpWLk001838 for xorp-cvs@icir.org; Tue, 10 May 2005 23:51:32 GMT (envelope-from pavlin) Date: Tue, 10 May 2005 23:51:32 GMT From: Pavlin Radoslavov Message-Id: <200505102351.j4ANpWLk001838@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-10 23:51:32 UTC XORP CVS repository Modified files: pim pim_proto_register.cc Log message: * Use the new PimMfc::update_mfc() method to update the PimMfc entry as appropriate. * Conditionally add an "idle" dataflow monitor only if it is not installed already. * Add the SPT switch dataflow monitor only if "SPT switch monitoring" is desired. Revision Changes Path 1.22 +17 -13; commitid: 711428148a27ea6; xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Tue May 10 23:58:57 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 16:59:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4ANx1LD004956 for ; Tue, 10 May 2005 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANx0Ol000527 for ; Tue, 10 May 2005 16:59:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANx0gY008214; Tue, 10 May 2005 16:59:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4ANwwgY008208 for ; Tue, 10 May 2005 16:58:58 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4ANwwj1000524 for ; Tue, 10 May 2005 16:58:58 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4ANwvdn001960 for ; Tue, 10 May 2005 16:58:57 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4ANwvq6001959 for xorp-cvs@icir.org; Tue, 10 May 2005 23:58:57 GMT (envelope-from pavlin) Date: Tue, 10 May 2005 23:58:57 GMT From: Pavlin Radoslavov Message-Id: <200505102358.j4ANwvq6001959@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-10 23:58:57 UTC XORP CVS repository Modified files: pim pim_mre.hh pim_mre_data.cc pim_mre_track_state.cc Log message: * Modify PimMre::is_monitoring_switch_to_spt_desired_sg() to match the CheckSwitchToSpt(S,G) macro from the spec. Previously, the method automatically returned true if the router was the the RP, but this is not part of the spec. * After the above modification, method PimMreTrackState::track_state_monitoring_switch_to_spt_desired_sg() in the dependency tracking mechanism does not depend on the RP, hence remove that dependency. * Update some of the comments for the following methods: PimMre::is_monitoring_switch_to_spt_desired_sg() PimMre::check_switch_to_spt_sg() Revision Changes Path 1.48 +4 -3; commitid: 762428149377ea6; xorp/pim/pim_mre.hh 1.17 +5 -14; commitid: 762428149377ea6; xorp/pim/pim_mre_data.cc 1.38 +2 -5; commitid: 762428149377ea6; xorp/pim/pim_mre_track_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 00:01:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 17:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4B021iv005766 for ; Tue, 10 May 2005 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B021IZ000602 for ; Tue, 10 May 2005 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B021gY008397; Tue, 10 May 2005 17:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B01tgY008387 for ; Tue, 10 May 2005 17:01:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B01tCE000596 for ; Tue, 10 May 2005 17:01:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4B01tli002053 for ; Tue, 10 May 2005 17:01:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4B01tuQ002052 for xorp-cvs@icir.org; Wed, 11 May 2005 00:01:55 GMT (envelope-from pavlin) Date: Wed, 11 May 2005 00:01:55 GMT From: Pavlin Radoslavov Message-Id: <200505110001.j4B01tuQ002052@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-11 00:01:55 UTC XORP CVS repository Modified files: pim pim_mrt_mfc.cc Log message: Update the PimMrt::receive_data() implementation: * Remove a premature "return". * Use PimMfc::update_mfc() to update the PimMfc entry as appropriate. * Install the SPT switch dataflow monitor only if "SPT switch monitoring" is desired. * Delete a SPT switch dataflow monitor only if it was installed before. Revision Changes Path 1.26 +39 -43; commitid: 7cd42814ad67ea6; xorp/pim/pim_mrt_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 00:32:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 17:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4B0X1P5013921 for ; Tue, 10 May 2005 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B0X1Cb001213 for ; Tue, 10 May 2005 17:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B0X0gY009683; Tue, 10 May 2005 17:33:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B0WagY009668 for ; Tue, 10 May 2005 17:32:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B0WaOZ001206 for ; Tue, 10 May 2005 17:32:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4B0WZIW008144 for ; Tue, 10 May 2005 17:32:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4B0WZHM008143 for xorp-cvs@icir.org; Wed, 11 May 2005 00:32:35 GMT (envelope-from pavlin) Date: Wed, 11 May 2005 00:32:35 GMT From: Pavlin Radoslavov Message-Id: <200505110032.j4B0WZHM008143@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/fea xorp/libcomm xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-11 00:32:35 UTC XORP CVS repository Modified files: bgp socket.cc fea click_socket.cc xrl_socket_server.cc libcomm comm_api.h comm_sock.c comm_user.c libxipc finder_tcp_messenger.cc test_finder_tcp.cc Log message: * Add a new "int *in_progress" argument to the following "high-level" functions: xsock_t comm_connect_tcp4() xsock_t comm_connect_tcp6() xsock_t comm_connect_udp4() xsock_t comm_connect_udp6() xsock_t comm_bind_connect_udp4() xsock_t comm_bind_connect_udp6() The semantic for the "in_progress" value that is filled-in on return is: If the socket is non-blocking and the connect cannot be completed immediately, then the referenced value is set to 1, and the return value is the new socket. If the non-blocking socket was connected, the referenced value is set to 0. If the return value is XORP_BAD_SOCKET or if the socket is blocking, then the return value is undefined. * Add a new "int *in_progress" argument to the following "low-level" functions: comm_sock_connect4() comm_sock_connect6() The semantic for the "in_progress" value that is filled-in on return is: If the socket is non-blocking and the connect cannot be completed immediately, then the referenced value is set to 1, and the return value is XORP_ERROR. For all other errors or if the non-blocking socket was connected, the referenced value is set to 0. If the return value is XORP_OK or if the socket is blocking, then the return value is undefined. * Modify all code that uses one of the above modified functions. The modified code is in bgp, libxipc and fea. Revision Changes Path 1.26 +6 -12; commitid: 1efa428150af7ea6; xorp/bgp/socket.cc 1.22 +3 -2; commitid: 1efa428150af7ea6; xorp/fea/click_socket.cc 1.23 +19 -9; commitid: 1efa428150af7ea6; xorp/fea/xrl_socket_server.cc 1.15 +79 -30; commitid: 1efa428150af7ea6; xorp/libcomm/comm_api.h 1.20 +69 -37; commitid: 1efa428150af7ea6; xorp/libcomm/comm_sock.c 1.17 +171 -74; commitid: 1efa428150af7ea6; xorp/libcomm/comm_user.c 1.24 +4 -2; commitid: 1efa428150af7ea6; xorp/libxipc/finder_tcp_messenger.cc 1.16 +3 -2; commitid: 1efa428150af7ea6; xorp/libxipc/test_finder_tcp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Tue May 10 17:48:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 17:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4B0n100017835 for ; Tue, 10 May 2005 17:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B0n1Hc001465 for ; Tue, 10 May 2005 17:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B0n1gY010224; Tue, 10 May 2005 17:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B0n0gY010218 for ; Tue, 10 May 2005 17:49:00 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B0mx3d001463; Tue, 10 May 2005 17:49:00 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.11) with ESMTP id j4B0mxCR078035; Tue, 10 May 2005 17:48:59 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200505110048.j4B0mxCR078035@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/fea xorp/libcomm xorp/libxipc In-Reply-To: Message from Pavlin Radoslavov of "Wed, 11 May 2005 00:32:35 GMT." <200505110032.j4B0WZHM008143@xorpc.icir.org> Date: Tue, 10 May 2005 17:48:59 -0700 From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , Just for the record, the following log message was suppose to include: "Approved by: Atanu" Sigh... Pavlin > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2005-05-11 00:32:35 UTC > > XORP CVS repository > > > Modified files: > bgp socket.cc > fea click_socket.cc xrl_socket_server.cc > libcomm comm_api.h comm_sock.c comm_user.c > libxipc finder_tcp_messenger.cc test_finder_tcp.cc > > Log message: > * Add a new "int *in_progress" argument to the following "high-level" > functions: > > xsock_t comm_connect_tcp4() > xsock_t comm_connect_tcp6() > xsock_t comm_connect_udp4() > xsock_t comm_connect_udp6() > xsock_t comm_bind_connect_udp4() > xsock_t comm_bind_connect_udp6() > > The semantic for the "in_progress" value that is filled-in on return is: > > If the socket is non-blocking and the connect cannot be > completed immediately, then the referenced value is set to 1, and the > return value is the new socket. If the non-blocking socket was connected, > the referenced value is set to 0. If the return value is XORP_BAD_SOCKET > or if the socket is blocking, then the return value is undefined. > > * Add a new "int *in_progress" argument to the following "low-level" > functions: > > comm_sock_connect4() > comm_sock_connect6() > > The semantic for the "in_progress" value that is filled-in on return is: > > If the socket is non-blocking and the connect cannot be > completed immediately, then the referenced value is set to 1, and the > return value is XORP_ERROR. For all other errors or if the non-blocking > socket was connected, the referenced value is set to 0. If the return value > is XORP_OK or if the socket is blocking, then the return value is undefined. > > * Modify all code that uses one of the above modified functions. > The modified code is in bgp, libxipc and fea. > > Revision Changes Path > 1.26 +6 -12; commitid: 1efa428150af7ea6; xorp/bgp/socket.cc > 1.22 +3 -2; commitid: 1efa428150af7ea6; xorp/fea/click_socket.cc > 1.23 +19 -9; commitid: 1efa428150af7ea6; xorp/fea/xrl_socket_server.cc > 1.15 +79 -30; commitid: 1efa428150af7ea6; xorp/libcomm/comm_api.h > 1.20 +69 -37; commitid: 1efa428150af7ea6; xorp/libcomm/comm_sock.c > 1.17 +171 -74; commitid: 1efa428150af7ea6; xorp/libcomm/comm_user.c > 1.24 +4 -2; commitid: 1efa428150af7ea6; xorp/libxipc/finder_tcp_messenger.cc > 1.16 +3 -2; commitid: 1efa428150af7ea6; xorp/libxipc/test_finder_tcp.cc > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 03:57:23 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 10 May 2005 20:58:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4B3w1Y5070524 for ; Tue, 10 May 2005 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B3w1Kr003935 for ; Tue, 10 May 2005 20:58:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B3w1gY015115; Tue, 10 May 2005 20:58:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B3vNgY015095 for ; Tue, 10 May 2005 20:57:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B3vNWK003931 for ; Tue, 10 May 2005 20:57:23 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4B3vN6k001249 for ; Tue, 10 May 2005 20:57:23 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4B3vNXh001248 for xorp-cvs@icir.org; Wed, 11 May 2005 03:57:23 GMT (envelope-from atanu) Date: Wed, 11 May 2005 03:57:23 GMT From: Atanu Ghosh Message-Id: <200505110357.j4B3vNXh001248@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-11 03:57:23 UTC XORP CVS repository Modified files: bgp socket.cc socket.hh Log message: Call the comm_init() and comm_exit() functions in the Socket constructor and destructor respectively. If a connect fails and the error is in progress return and wait for the async notification. In all other cases call the completion method. Revision Changes Path 1.27 +14 -6; commitid: 4c3428182a17ea6; xorp/bgp/socket.cc 1.12 +3 -1; commitid: 4c3428182a17ea6; xorp/bgp/socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 07:28:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 May 2005 00:29:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4B7T1fQ015902 for ; Wed, 11 May 2005 00:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B7T19B006238 for ; Wed, 11 May 2005 00:29:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B7T0gY019777; Wed, 11 May 2005 00:29:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4B7SpgY019766 for ; Wed, 11 May 2005 00:28:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4B7Sp3P006232 for ; Wed, 11 May 2005 00:28:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4B7SpIf003016 for ; Wed, 11 May 2005 00:28:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4B7SptU003015 for xorp-cvs@icir.org; Wed, 11 May 2005 07:28:51 GMT (envelope-from atanu) Date: Wed, 11 May 2005 07:28:51 GMT From: Atanu Ghosh Message-Id: <200505110728.j4B7SptU003015@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-11 07:28:51 UTC XORP CVS repository Modified files: bgp bgp.cc socket.cc socket.hh Log message: Move the comm_init and comm_exit functions into the main bgp class, the socket class was the wrong place to put them. Bug found by: Pavlin Revision Changes Path 1.52 +4 -1; commitid: ba84281b4327ea6; xorp/bgp/bgp.cc 1.28 +1 -7; commitid: ba84281b4327ea6; xorp/bgp/socket.cc 1.13 +1 -3; commitid: ba84281b4327ea6; xorp/bgp/socket.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 23:01:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 May 2005 16:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4BN21Xu012233 for ; Wed, 11 May 2005 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4BN213Z019150 for ; Wed, 11 May 2005 16:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4BN20gY018857; Wed, 11 May 2005 16:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4BN1UgY018845 for ; Wed, 11 May 2005 16:01:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4BN1TMN019144 for ; Wed, 11 May 2005 16:01:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4BN1Tsb041338 for ; Wed, 11 May 2005 16:01:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4BN1TuT041337 for xorp-cvs@icir.org; Wed, 11 May 2005 23:01:29 GMT (envelope-from pavlin) Date: Wed, 11 May 2005 23:01:29 GMT From: Pavlin Radoslavov Message-Id: <200505112301.j4BN1TuT041337@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-11 23:01:29 UTC XORP CVS repository Modified files: pim pim_mre_track_state.cc Log message: Remove obsolete comments. Revision Changes Path 1.39 +1 -3; commitid: a15f42828ec17ea6; xorp/pim/pim_mre_track_state.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Wed May 11 23:44:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 May 2005 16:45:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4BNj1qQ021492 for ; Wed, 11 May 2005 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4BNj1xw019564 for ; Wed, 11 May 2005 16:45:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4BNj1gY020188; Wed, 11 May 2005 16:45:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4BNi1gY020137 for ; Wed, 11 May 2005 16:44:01 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4BNi111019556 for ; Wed, 11 May 2005 16:44:01 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4BNi1j7041741 for ; Wed, 11 May 2005 16:44:01 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4BNi15d041740 for xorp-cvs@icir.org; Wed, 11 May 2005 23:44:01 GMT (envelope-from pavlin) Date: Wed, 11 May 2005 23:44:01 GMT From: Pavlin Radoslavov Message-Id: <200505112344.j4BNi15d041740@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-11 23:44:01 UTC XORP CVS repository Modified files: pim pim_mfc.cc pim_mfc.hh pim_mrt_mfc.cc pim_proto_register.cc Log message: * Modify PimMfc::update_mfc() to calculate the set of outgoing interfaces for which the WRONGVIF kernel upcalls is disabled. Previously this set was always empty (i.e., we didn't disable the signal on any interfaces). With the new implementation we can eliminate unnecessary WRONGVIF upcalls. Note that this mechanism works only if the kernel supports the new advanced multicast API mechanism that allows us to disable the WRONGVIF upcalls per MFC entry. Currently, this is supported only for IPv4 on {DragonFly,Free,Net,Open}BSD. * Modify the rest of the code which sets or updates the iif or the olist of a PimMfc entry to use the PimMfc::update_mfc() method. Revision Changes Path 1.28 +29 -14; commitid: a1e042828f217ea6; xorp/pim/pim_mfc.cc 1.10 +3 -2; commitid: a1e042828f217ea6; xorp/pim/pim_mfc.hh 1.27 +4 -6; commitid: a1e042828f217ea6; xorp/pim/pim_mrt_mfc.cc 1.23 +8 -6; commitid: a1e042828f217ea6; xorp/pim/pim_proto_register.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 00:08:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 May 2005 17:09:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4C0910P027022 for ; Wed, 11 May 2005 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C091mq019816 for ; Wed, 11 May 2005 17:09:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C091gY020935; Wed, 11 May 2005 17:09:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C08EgY020917 for ; Wed, 11 May 2005 17:08:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C08Dh6019814 for ; Wed, 11 May 2005 17:08:13 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4C08DVr042020 for ; Wed, 11 May 2005 17:08:13 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4C08DM8042019 for xorp-cvs@icir.org; Thu, 12 May 2005 00:08:13 GMT (envelope-from atanu) Date: Thu, 12 May 2005 00:08:13 GMT From: Atanu Ghosh Message-Id: <200505120008.j4C08DM8042019@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libproto Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-12 00:08:13 UTC XORP CVS repository Modified files: libproto spt.cc spt.hh test_spt.cc Log message: The Dijkastra computation visits tentative nodes and recomputes weights, only if a new path has a lower weight does it becomes a candidate. Unfortunately the nexthop to a node was always a function of the last path that visited a node. We now only update the nexthop if it has a lower weight. Bug found by: Adam Barr Regression test demonstrating problem. Obtained from: Adam Barr Also added some new Node types, IPv4Net, IPv6 and IPv6Net. Revision Changes Path 1.5 +24 -7; commitid: a40442829e6d7ea6; xorp/libproto/spt.cc 1.4 +6 -3; commitid: a40442829e6d7ea6; xorp/libproto/spt.hh 1.4 +60 -1; commitid: a40442829e6d7ea6; xorp/libproto/test_spt.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 02:22:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 11 May 2005 19:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4C2N10s055560 for ; Wed, 11 May 2005 19:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C2N0V3021363 for ; Wed, 11 May 2005 19:23:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C2N0gY024509; Wed, 11 May 2005 19:23:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C2M8gY024490 for ; Wed, 11 May 2005 19:22:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C2M7Kd021361 for ; Wed, 11 May 2005 19:22:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4C2M7vs054675 for ; Wed, 11 May 2005 19:22:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4C2M7rR054674 for xorp-cvs@icir.org; Thu, 12 May 2005 02:22:07 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 02:22:07 GMT From: Pavlin Radoslavov Message-Id: <200505120222.j4C2M7rR054674@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 02:22:07 UTC XORP CVS repository Modified files: pim test_pim.cc Log message: Add a "-P " command line option to print debug state by name. Currently, the supported options are: "-P track_state_name" to print the state dependency graph by name "-P track_state_num" to print the state dependency graph by number Requested by: "edrt" Revision Changes Path 1.54 +57 -5; commitid: d55f4282bd3f7ea6; xorp/pim/test_pim.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 09:03:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 02:04:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4C940FA034908 for ; Thu, 12 May 2005 02:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C940IL026133 for ; Thu, 12 May 2005 02:04:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C940gY004291; Thu, 12 May 2005 02:04:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C93DgY004269 for ; Thu, 12 May 2005 02:03:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C93D67026122 for ; Thu, 12 May 2005 02:03:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4C93Dia066421 for ; Thu, 12 May 2005 02:03:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4C93D2j066420 for xorp-cvs@icir.org; Thu, 12 May 2005 09:03:13 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 09:03:13 GMT From: Pavlin Radoslavov Message-Id: <200505120903.j4C93D2j066420@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 09:03:13 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Bug fix: If we are dealing with a scope zone, and if there is a group-RP prefix for the whole zone, this prefix must be in front of the list with group-RP prefixes for that scope zone. Revision Changes Path 1.39 +24 -3; commitid: 1035a42831b947ea6; xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 09:07:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 02:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4C981Vn036055 for ; Thu, 12 May 2005 02:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C9818f026232 for ; Thu, 12 May 2005 02:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C981gY004409; Thu, 12 May 2005 02:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4C97OgY004399 for ; Thu, 12 May 2005 02:07:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4C97O0R026223 for ; Thu, 12 May 2005 02:07:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4C97O5B066505 for ; Thu, 12 May 2005 02:07:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4C97Opf066504 for xorp-cvs@icir.org; Thu, 12 May 2005 09:07:24 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 09:07:24 GMT From: Pavlin Radoslavov Message-Id: <200505120907.j4C97Opf066504@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 09:07:24 UTC XORP CVS repository Modified files: pim pim_proto_bootstrap.cc Log message: Bug fix: If a Cand-BSR is configured for a scope zone, but there are no Cand-RPs for that scope zone, then the transmitted BSR messages were buggy: they didn't contain the scoped zone info. After the fix, the BSR messages contain the scoped zone prefix with no RPs. Bug found by: "edrt" Revision Changes Path 1.19 +12 -8; commitid: 1039a42831c007ea6; xorp/pim/pim_proto_bootstrap.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 10:19:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 03:20:00 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4CAK01M001522 for ; Thu, 12 May 2005 03:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CAK063027344 for ; Thu, 12 May 2005 03:20:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CAK0gY006005; Thu, 12 May 2005 03:20:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CAJ3gY005982 for ; Thu, 12 May 2005 03:19:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CAJ3j5027332 for ; Thu, 12 May 2005 03:19:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4CAJ3pw074685 for ; Thu, 12 May 2005 03:19:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4CAJ3vA074684 for xorp-cvs@icir.org; Thu, 12 May 2005 10:19:03 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 10:19:03 GMT From: Pavlin Radoslavov Message-Id: <200505121019.j4CAJ3vA074684@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 10:19:03 UTC XORP CVS repository Modified files: pim pim_bsr.cc Log message: Remove experimental code that sets the Bootstrap Timer to a randomized value instead of the fixed BS_Timeout (130s) value as it is in the spc. Bug found by: "edrt" Revision Changes Path 1.40 +1 -10; commitid: 123a042832d4a7ea6; xorp/pim/pim_bsr.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 10:21:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 03:22:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4CAM1YX001642 for ; Thu, 12 May 2005 03:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CAM1AB027377 for ; Thu, 12 May 2005 03:22:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CAM1gY006051; Thu, 12 May 2005 03:22:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CALOgY006040 for ; Thu, 12 May 2005 03:21:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CALOBf027375 for ; Thu, 12 May 2005 03:21:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4CALOO2074779 for ; Thu, 12 May 2005 03:21:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4CALOG9074778 for xorp-cvs@icir.org; Thu, 12 May 2005 10:21:24 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 10:21:24 GMT From: Pavlin Radoslavov Message-Id: <200505121021.j4CALOG9074778@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 10:21:24 UTC XORP CVS repository Modified files: pim TODO Log message: Add a TODO entry. Revision Changes Path 1.115 +9 -1; commitid: 1240042832e1f7ea6; xorp/pim/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:30 2005 Subject: No subject Thu May 12 10:42:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 03:43:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4CAh1qU002738 for ; Thu, 12 May 2005 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CAh1Ht027614 for ; Thu, 12 May 2005 03:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CAh0gY006477; Thu, 12 May 2005 03:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CAg3gY006456 for ; Thu, 12 May 2005 03:42:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CAg3R9027611 for ; Thu, 12 May 2005 03:42:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4CAg3Jn075005 for ; Thu, 12 May 2005 03:42:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4CAg3QZ075004 for xorp-cvs@icir.org; Thu, 12 May 2005 10:42:03 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 10:42:03 GMT From: Pavlin Radoslavov Message-Id: <200505121042.j4CAg3QZ075004@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 10:42:03 UTC XORP CVS repository Modified files: pim pim_rp.cc Log message: Bug fix: if we attempt to add the same RP to the RP-Set, but the learned method is different, then don't add the RP. Previously, we would print a warning that the RP won't be added, but then actually it was added. Obtained from: "edrt" Revision Changes Path 1.15 +2 -2; commitid: 124e2428332ef7ea6; xorp/pim/pim_rp.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Thu May 12 17:34:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 12 May 2005 10:35:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4CHZ1Sn026069 for ; Thu, 12 May 2005 10:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CHZ1nE033664 for ; Thu, 12 May 2005 10:35:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CHZ1gY019345; Thu, 12 May 2005 10:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4CHYagY019308 for ; Thu, 12 May 2005 10:34:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4CHYabJ033659 for ; Thu, 12 May 2005 10:34:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4CHYaK0080349 for ; Thu, 12 May 2005 10:34:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4CHYa0V080348 for xorp-cvs@icir.org; Thu, 12 May 2005 17:34:36 GMT (envelope-from pavlin) Date: Thu, 12 May 2005 17:34:36 GMT From: Pavlin Radoslavov Message-Id: <200505121734.j4CHYa0V080348@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-12 17:34:36 UTC XORP CVS repository Modified files: libcomm comm_user.c Log message: Fix a bug when we check whether the socket is non-blocking and the connection couldn't complete. This should fix run-time errors that were exposed only on FreeBSD-5.3/5.4 Bug found by: Mark Handley, Dikshie Submitted by: Mark Handley Revision Changes Path 1.18 +7 -7; commitid: 139b8428392ff7ea6; xorp/libcomm/comm_user.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Fri May 13 16:24:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 May 2005 09:25:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4DGP2Gn015303 for ; Fri, 13 May 2005 09:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4DGP2Vf050524 for ; Fri, 13 May 2005 09:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4DGP1kj001006; Fri, 13 May 2005 09:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4DGOakj000985 for ; Fri, 13 May 2005 09:24:36 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4DGOaDg050512 for ; Fri, 13 May 2005 09:24:36 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4DGOZaA095519 for ; Fri, 13 May 2005 09:24:35 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4DGOZx1095518 for xorp-cvs@icir.org; Fri, 13 May 2005 16:24:35 GMT (envelope-from atanu) Date: Fri, 13 May 2005 16:24:35 GMT From: Atanu Ghosh Message-Id: <200505131624.j4DGOZx1095518@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-13 16:24:35 UTC XORP CVS repository Modified files: bgp iptuple.cc socket.cc Log message: Compilation fix required for Linux. Revision Changes Path 1.11 +5 -5; commitid: 175014284d4987ea6; xorp/bgp/iptuple.cc 1.29 +3 -3; commitid: 175014284d4987ea6; xorp/bgp/socket.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Sat May 14 03:18:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 May 2005 20:19:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4E3J1ID056828 for ; Fri, 13 May 2005 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E3J1Fa057061 for ; Fri, 13 May 2005 20:19:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E3J1kj021761; Fri, 13 May 2005 20:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E3Ihkj021744 for ; Fri, 13 May 2005 20:18:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E3IhP3057059 for ; Fri, 13 May 2005 20:18:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4E3Ih1A013132 for ; Fri, 13 May 2005 20:18:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4E3IheF013131 for xorp-cvs@icir.org; Sat, 14 May 2005 03:18:43 GMT (envelope-from pavlin) Date: Sat, 14 May 2005 03:18:43 GMT From: Pavlin Radoslavov Message-Id: <200505140318.j4E3IheF013131@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/etc/templates xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-14 03:18:43 UTC XORP CVS repository Modified files: pim pim_bsr.hh pim_bsr.cc pim_config.cc pim_node.hh xrl_pim_node.hh xrl_pim_node.cc xrl_pim_shell_funcs.sh etc/templates pimsm4.tp pimsm6.tp xrl/interfaces pim.xif pim_xif.cc pim_xif.hh xrl/targets pim.xrls pim_base.cc pim_base.hh Log message: * Combine the following XRLs add_config_cand_bsr_by_vif_name{4,6} and add_config_cand_bsr_by_addr{4,6} into add_config_cand_bsr{4,6} add_config_cand_rp_by_vif_name{4,6} and add_config_cand_rp_by_addr{4,6} into add_config_cand_rp{4,6} delete_config_cand_rp_by_vif_name{4,6} and delete_config_cand_rp_by_addr{4,6} into delete_config_cand_rp{4,6} The IP address in the XRL is suppose to belong to the specified vif. If it is set to ZERO, then the domain-wide address of the vif is chosen. * Add the optional address to the corresponding rtrmgr template files: cand-bsr-by-vif-addr: ipv{4,6} and cand-rp-by-vif-addr: ipv{4,6} with default values of 0.0.0.0 or :: * If the router is configured as a Cand-BSR or a Cand-RP, then add the corresponding interface's vif_index to the configured BsrZone or BsrRp. Currently, this state is not used, but later it will be used in case the corresponding interface is reconfigured. Revision Changes Path 1.21 +18 -6; commitid: 3252428568657ea6; xorp/etc/templates/pimsm4.tp 1.21 +18 -6; commitid: 3252428568657ea6; xorp/etc/templates/pimsm6.tp 1.41 +27 -9; commitid: 3252428568657ea6; xorp/pim/pim_bsr.cc 1.14 +11 -2; commitid: 3252428568657ea6; xorp/pim/pim_bsr.hh 1.34 +114 -135; commitid: 3252428568657ea6; xorp/pim/pim_config.cc 1.54 +20 -33; commitid: 3252428568657ea6; xorp/pim/pim_node.hh 1.87 +53 -279; commitid: 3252428568657ea6; xorp/pim/xrl_pim_node.cc 1.61 +19 -53; commitid: 3252428568657ea6; xorp/pim/xrl_pim_node.hh 1.29 +50 -148; commitid: 3252428568657ea6; xorp/pim/xrl_pim_shell_funcs.sh 1.22 +17 -37; commitid: 3252428568657ea6; xorp/xrl/interfaces/pim.xif 1.34 +55 -275; commitid: 3252428568657ea6; xorp/xrl/interfaces/pim_xif.cc 1.32 +41 -135; commitid: 3252428568657ea6; xorp/xrl/interfaces/pim_xif.hh 1.47 +11 -19; commitid: 3252428568657ea6; xorp/xrl/targets/pim.xrls 1.50 +67 -261; commitid: 3252428568657ea6; xorp/xrl/targets/pim_base.cc 1.53 +25 -71; commitid: 3252428568657ea6; xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Sat May 14 03:26:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 May 2005 20:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4E3R1M2058393 for ; Fri, 13 May 2005 20:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E3R0ng057140 for ; Fri, 13 May 2005 20:27:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E3R0kj022029; Fri, 13 May 2005 20:27:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E3Q3kj021993 for ; Fri, 13 May 2005 20:26:03 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E3Q36I057135 for ; Fri, 13 May 2005 20:26:03 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4E3Q27K013250 for ; Fri, 13 May 2005 20:26:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4E3Q2rK013249 for xorp-cvs@icir.org; Sat, 14 May 2005 03:26:02 GMT (envelope-from pavlin) Date: Sat, 14 May 2005 03:26:02 GMT From: Pavlin Radoslavov Message-Id: <200505140326.j4E3Q2rK013249@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-14 03:26:02 UTC XORP CVS repository Modified files: rtrmgr config.boot.sample Log message: * Add sample "cand-bsr-by-vif-addr" and "cand-rp-by-vif-addr" * Fix the sample hash-mask-len in case of IPv6: 30 -> 126 Revision Changes Path 1.24 +6 -2; commitid: 339142856f7a7ea6; xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Sat May 14 04:09:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 May 2005 21:10:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4E4A1WD066778 for ; Fri, 13 May 2005 21:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E4A1kr057540 for ; Fri, 13 May 2005 21:10:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E4A1kj022957; Fri, 13 May 2005 21:10:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E494kj022921 for ; Fri, 13 May 2005 21:09:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E494Ot057535 for ; Fri, 13 May 2005 21:09:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4E494j2013614 for ; Fri, 13 May 2005 21:09:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4E494v3013613 for xorp-cvs@icir.org; Sat, 14 May 2005 04:09:04 GMT (envelope-from pavlin) Date: Sat, 14 May 2005 04:09:04 GMT From: Pavlin Radoslavov Message-Id: <200505140409.j4E494v3013613@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-14 04:09:04 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: * Add description for the cand-bsr-by-vif-name and cand-rp-by-vif-name statements. * Fix the hash-mask-len value in the sample IPv6 configuration: 30 -> 126 Revision Changes Path 1.44 +18 -2; commitid: 34e84285799b7ea6; www/getting_started.html 1.18 +17 -1; commitid: 34e84285799b7ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Sat May 14 04:20:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 13 May 2005 21:21:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4E4L1Bk068955 for ; Fri, 13 May 2005 21:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E4L1LG057666 for ; Fri, 13 May 2005 21:21:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E4L1kj023227; Fri, 13 May 2005 21:21:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E4KLkj023214 for ; Fri, 13 May 2005 21:20:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E4KLrx057663 for ; Fri, 13 May 2005 21:20:21 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4E4KLN0013786 for ; Fri, 13 May 2005 21:20:21 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4E4KLrV013785 for xorp-cvs@icir.org; Sat, 14 May 2005 04:20:21 GMT (envelope-from pavlin) Date: Sat, 14 May 2005 04:20:21 GMT From: Pavlin Radoslavov Message-Id: <200505140420.j4E4KLrV013785@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-14 04:20:21 UTC XORP CVS repository Modified files: docs/user_manual config_overview.tex pimsm.tex Log message: * Add description for the new cand-bsr-by-vif-name and cand-rp-by-vif-name statements. * Fix the hash-mask-len value in the sample IPv6 configuration: 30 -> 126 Revision Changes Path 1.8 +18 -2; commitid: 35aa42857c607ea6; xorp/docs/user_manual/config_overview.tex 1.16 +23 -2; commitid: 35aa42857c607ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Sat May 14 07:19:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 14 May 2005 00:20:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4E7K3FY004477 for ; Sat, 14 May 2005 00:20:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E7K2QZ059339 for ; Sat, 14 May 2005 00:20:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E7K2kj026892; Sat, 14 May 2005 00:20:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4E7Jpkj026886 for ; Sat, 14 May 2005 00:19:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4E7Jpj8059332 for ; Sat, 14 May 2005 00:19:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4E7Jp9Q015172 for ; Sat, 14 May 2005 00:19:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4E7JplT015171 for xorp-cvs@icir.org; Sat, 14 May 2005 07:19:51 GMT (envelope-from pavlin) Date: Sat, 14 May 2005 07:19:51 GMT From: Pavlin Radoslavov Message-Id: <200505140719.j4E7JplT015171@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-14 07:19:51 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for the new "cand-bsr-by-vif-addr: " and "cand-rp-by-vif-addr: " statements. Revision Changes Path 1.71 +12 -2; commitid: 3b204285a67f7ea6; xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 13:55:02 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 06:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GDu1OE055658 for ; Mon, 16 May 2005 06:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GDu1G2098503 for ; Mon, 16 May 2005 06:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GDu1Pj020813; Mon, 16 May 2005 06:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GDt2Pj020781 for ; Mon, 16 May 2005 06:55:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GDt23L098477 for ; Mon, 16 May 2005 06:55:02 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GDt2AZ001193 for ; Mon, 16 May 2005 06:55:02 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GDt26k001192 for xorp-cvs@icir.org; Mon, 16 May 2005 13:55:02 GMT (envelope-from bms) Date: Mon, 16 May 2005 13:55:02 GMT From: Bruce Simpson Message-Id: <200505161355.j4GDt26k001192@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-16 13:55:02 UTC XORP CVS repository Modified files: libcomm comm_api.h Log message: Style (comments) Revision Changes Path 1.16 +1 -3; commitid: 48c4288a62b7ea6; xorp/libcomm/comm_api.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 14:00:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 07:01:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GE112B056665 for ; Mon, 16 May 2005 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GE11Fs098589 for ; Mon, 16 May 2005 07:01:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GE11Pj020979; Mon, 16 May 2005 07:01:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GE0dPj020935 for ; Mon, 16 May 2005 07:00:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GE0d6R098578 for ; Mon, 16 May 2005 07:00:39 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GE0dJJ001367 for ; Mon, 16 May 2005 07:00:39 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GE0d9p001366 for xorp-cvs@icir.org; Mon, 16 May 2005 14:00:39 GMT (envelope-from bms) Date: Mon, 16 May 2005 14:00:39 GMT From: Bruce Simpson Message-Id: <200505161400.j4GE0d9p001366@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-05-16 14:00:39 UTC XORP CVS repository Modified files: libcomm comm_api.h comm_sock.c Log message: Introduce a new libcomm API function, comm_sock_is_connected(), which is used to determine if a socket is in the connected state in a platform-independent manner. Reverse IFC pending. Obtained from: p4://xorp_win Revision Changes Path 1.17 +10 -1; commitid: 52a4288a7637ea6; xorp/libcomm/comm_api.h 1.21 +25 -1; commitid: 52a4288a7637ea6; xorp/libcomm/comm_sock.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 19:05:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 12:06:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ61sB018545 for ; Mon, 16 May 2005 12:06:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ60K4004527 for ; Mon, 16 May 2005 12:06:00 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJ60Pj002320; Mon, 16 May 2005 12:06:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJ58Pj002266 for ; Mon, 16 May 2005 12:05:08 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ58Al004520 for ; Mon, 16 May 2005 12:05:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ57F9027523 for ; Mon, 16 May 2005 12:05:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GJ577p027522 for xorp-cvs@icir.org; Mon, 16 May 2005 19:05:07 GMT (envelope-from pavlin) Date: Mon, 16 May 2005 19:05:07 GMT From: Pavlin Radoslavov Message-Id: <200505161905.j4GJ577p027522@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-16 19:05:07 UTC XORP CVS repository Modified files: fea mfea_config.cc Log message: Reorder the actions when the network interface status changes: first add the new vifs and the new addresses, and then remove the vifs and the addresses that don't exist anymore. The reason for the reordering is to eliminate any potential gaps when an interface is left without an assigned address (e.g., if the old address is replaced with a new address). Revision Changes Path 1.12 +39 -39; commitid: 6b5b4288ee597ea6; xorp/fea/mfea_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 19:08:08 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 12:09:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ92j9019133 for ; Mon, 16 May 2005 12:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ920Q004554 for ; Mon, 16 May 2005 12:09:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJ92Pj002418; Mon, 16 May 2005 12:09:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJ88Pj002378 for ; Mon, 16 May 2005 12:08:09 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ88BF004544 for ; Mon, 16 May 2005 12:08:08 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GJ88Xp032174 for ; Mon, 16 May 2005 12:08:08 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GJ88re032173 for xorp-cvs@icir.org; Mon, 16 May 2005 19:08:08 GMT (envelope-from pavlin) Date: Mon, 16 May 2005 19:08:08 GMT From: Pavlin Radoslavov Message-Id: <200505161908.j4GJ88re032173@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-16 19:08:08 UTC XORP CVS repository Modified files: rib vifmanager.cc Log message: Reorder the actions when the network interface status changes: first add the new vifs and the new addresses, and then remove the vifs and the addresses that don't exist anymore. The reason for the reordering is to eliminate any potential gaps when an interface is left without an assigned address (e.g., if the old address is replaced with a new address). Revision Changes Path 1.38 +68 -68; commitid: 6bbe4288ef077ea6; xorp/rib/vifmanager.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 19:11:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 12:12:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GJC2P7019796 for ; Mon, 16 May 2005 12:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJC2xL004618 for ; Mon, 16 May 2005 12:12:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJC2Pj002547; Mon, 16 May 2005 12:12:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJB6Pj002515 for ; Mon, 16 May 2005 12:11:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJB6i4004596 for ; Mon, 16 May 2005 12:11:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GJB62E032369 for ; Mon, 16 May 2005 12:11:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GJB6mw032368 for xorp-cvs@icir.org; Mon, 16 May 2005 19:11:06 GMT (envelope-from pavlin) Date: Mon, 16 May 2005 19:11:06 GMT From: Pavlin Radoslavov Message-Id: <200505161911.j4GJB6mw032368@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-16 19:11:06 UTC XORP CVS repository Modified files: pim pim_config.cc Log message: Reorder the actions when the network interface status changes: first add the new vifs and the new addresses, and then remove the vifs and the addresses that don't exist anymore. The reason for the reordering is to eliminate any potential gaps when an interface is left without an assigned address (e.g., if the old address is replaced with a new address). Revision Changes Path 1.35 +32 -33; commitid: 7e3b4288f00f7ea6; xorp/pim/pim_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 19:17:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 12:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GJI2rB021012 for ; Mon, 16 May 2005 12:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJI2wb004718 for ; Mon, 16 May 2005 12:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJI2Pj002775; Mon, 16 May 2005 12:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GJHTPj002725 for ; Mon, 16 May 2005 12:17:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GJHT7u004697 for ; Mon, 16 May 2005 12:17:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GJHTfo032628 for ; Mon, 16 May 2005 12:17:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GJHSbA032627 for xorp-cvs@icir.org; Mon, 16 May 2005 19:17:29 GMT (envelope-from pavlin) Date: Mon, 16 May 2005 19:17:29 GMT From: Pavlin Radoslavov Message-Id: <200505161917.j4GJHSbA032627@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-16 19:17:28 UTC XORP CVS repository Modified files: pim pim_bsr.cc pim_bsr.hh pim_config.cc pim_node.cc Log message: If a vif is configured as a Cand-BSR or a Cand-RP (by only specifying the vif name, but not the particular address to use), and if the vif address changes, then update the external advertisements to use the new address. Also, update the internal Cand-BSR and Cand-RP configuration to reflect the new address. Requested by: "edrt" Revision Changes Path 1.42 +141 -3; commitid: 7f174288f0fe7ea6; xorp/pim/pim_bsr.cc 1.15 +19 -2; commitid: 7f174288f0fe7ea6; xorp/pim/pim_bsr.hh 1.36 +5 -1; commitid: 7f174288f0fe7ea6; xorp/pim/pim_config.cc 1.70 +11 -1; commitid: 7f174288f0fe7ea6; xorp/pim/pim_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Mon May 16 20:16:52 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 13:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4GKH2CN032619 for ; Mon, 16 May 2005 13:17:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GKH196005481 for ; Mon, 16 May 2005 13:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GKH1KX005183; Mon, 16 May 2005 13:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4GKGrKX005169 for ; Mon, 16 May 2005 13:16:53 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4GKGrdM005478 for ; Mon, 16 May 2005 13:16:53 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4GKGqct033593 for ; Mon, 16 May 2005 13:16:52 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4GKGqAU033592 for xorp-cvs@icir.org; Mon, 16 May 2005 20:16:52 GMT (envelope-from mjh) Date: Mon, 16 May 2005 20:16:52 GMT From: Mark Handley Message-Id: <200505162016.j4GKGqAU033592@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: mjh@xorpc.icir.org 2005-05-16 20:16:52 UTC XORP CVS repository Modified files: . news.html html_src news.html Log message: Fix heading on release date. Add link to NSDI paper. Revision Changes Path 1.13 +10 -1; commitid: 83084288ffa27ea6; www/html_src/news.html 1.44 +11 -2; commitid: 83084288ffa27ea6; www/news.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Tue May 17 03:22:41 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:23:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3N1Dd017387 for ; Mon, 16 May 2005 20:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3N1GI010966 for ; Mon, 16 May 2005 20:23:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3N1KX019611; Mon, 16 May 2005 20:23:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3MfKX019601 for ; Mon, 16 May 2005 20:22:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3MfGE010963 for ; Mon, 16 May 2005 20:22:41 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3MfW7054501 for ; Mon, 16 May 2005 20:22:41 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3Mfe7054500 for xorp-cvs@icir.org; Tue, 17 May 2005 03:22:41 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:22:41 GMT From: Pavlin Radoslavov Message-Id: <200505170322.j4H3Mfe7054500@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:22:41 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Add explicit check for PIM Register vif when we are sending or receiving PIM control messages, because for some type of messages they should never be sent or received on the PIM Register vif. Revision Changes Path 1.53 +43 -1; commitid: d4bb428963487ea6; xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Tue May 17 03:23:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:24:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3O1mR017590 for ; Mon, 16 May 2005 20:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3O1Bk010975 for ; Mon, 16 May 2005 20:24:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3O1KX019674; Mon, 16 May 2005 20:24:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3NdKX019656 for ; Mon, 16 May 2005 20:23:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Ndcd010971 for ; Mon, 16 May 2005 20:23:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Nd6I054567 for ; Mon, 16 May 2005 20:23:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3NdG3054566 for xorp-cvs@icir.org; Tue, 17 May 2005 03:23:39 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:23:39 GMT From: Pavlin Radoslavov Message-Id: <200505170323.j4H3NdG3054566@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:23:39 UTC XORP CVS repository Modified files: pim pim_config.cc Log message: Add explicit check for PIM Register vif, and don't send any PIM Hello messages on such interface after vif reconfiguration. Revision Changes Path 1.37 +72 -40; commitid: d50a428963937ea6; xorp/pim/pim_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Tue May 17 03:33:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:34:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Y1jV019596 for ; Mon, 16 May 2005 20:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Y187011092 for ; Mon, 16 May 2005 20:34:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3Y0KX019925; Mon, 16 May 2005 20:34:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3XoKX019907 for ; Mon, 16 May 2005 20:33:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Xox9011088 for ; Mon, 16 May 2005 20:33:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3Xo4O054761 for ; Mon, 16 May 2005 20:33:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3XopK054760 for xorp-cvs@icir.org; Tue, 17 May 2005 03:33:50 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:33:50 GMT From: Pavlin Radoslavov Message-Id: <200505170333.j4H3XopK054760@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:33:50 UTC XORP CVS repository Modified files: etc/templates pimsm4.tp pimsm6.tp Log message: Add new configuration statement hello-period that can be used to set the PIM Hello messages (in seconds). Revision Changes Path 1.22 +10 -1; commitid: d553428963e57ea6; xorp/etc/templates/pimsm4.tp 1.22 +10 -1; commitid: d553428963e57ea6; xorp/etc/templates/pimsm6.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Tue May 17 03:35:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:36:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3a1Gs020005 for ; Mon, 16 May 2005 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3a1GD011137 for ; Mon, 16 May 2005 20:36:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3a1KX019977; Mon, 16 May 2005 20:36:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3ZPKX019964 for ; Mon, 16 May 2005 20:35:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3ZPqq011125 for ; Mon, 16 May 2005 20:35:25 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3ZPrF054884 for ; Mon, 16 May 2005 20:35:25 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3ZPqx054883 for xorp-cvs@icir.org; Tue, 17 May 2005 03:35:25 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:35:25 GMT From: Pavlin Radoslavov Message-Id: <200505170335.j4H3ZPqx054883@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-17 03:35:25 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the new "hello-period" statement in the PIM-SM configuration. Revision Changes Path 1.45 +8 -3; commitid: d61c428966647ea6; www/getting_started.html 1.19 +7 -2; commitid: d61c428966647ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:31 2005 Subject: No subject Tue May 17 03:39:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3e2TJ020801 for ; Mon, 16 May 2005 20:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3e2Rb011179 for ; Mon, 16 May 2005 20:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3e1KX020061; Mon, 16 May 2005 20:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3dYKX020053 for ; Mon, 16 May 2005 20:39:34 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3dYYu011172 for ; Mon, 16 May 2005 20:39:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3dYYA054990 for ; Mon, 16 May 2005 20:39:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3dYug054989 for xorp-cvs@icir.org; Tue, 17 May 2005 03:39:34 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:39:34 GMT From: Pavlin Radoslavov Message-Id: <200505170339.j4H3dYug054989@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:39:34 UTC XORP CVS repository Modified files: rtrmgr config.boot.sample Log message: Add the new "hello-period" statement to the sample config file. Revision Changes Path 1.25 +3 -1; commitid: d6ab4289675b7ea6; xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Tue May 17 03:42:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:43:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3h2Ma021416 for ; Mon, 16 May 2005 20:43:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3h1mo011229 for ; Mon, 16 May 2005 20:43:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3h1KX020190; Mon, 16 May 2005 20:43:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3gbKX020156 for ; Mon, 16 May 2005 20:42:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3gaJo011227 for ; Mon, 16 May 2005 20:42:36 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3gaJU055386 for ; Mon, 16 May 2005 20:42:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3gapa055385 for xorp-cvs@icir.org; Tue, 17 May 2005 03:42:36 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:42:36 GMT From: Pavlin Radoslavov Message-Id: <200505170342.j4H3gapa055385@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:42:36 UTC XORP CVS repository Modified files: docs/user_manual config_overview.tex pimsm.tex Log message: Document the new "hello-period" statement in the PIM-SM configuration. Revision Changes Path 1.9 +7 -1; commitid: d83d428968287ea6; xorp/docs/user_manual/config_overview.tex 1.17 +14 -1; commitid: d83d428968287ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Tue May 17 03:43:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 16 May 2005 20:44:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4H3i1o5021615 for ; Mon, 16 May 2005 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3i16n011235 for ; Mon, 16 May 2005 20:44:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3i1KX020218; Mon, 16 May 2005 20:44:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4H3hMKX020207 for ; Mon, 16 May 2005 20:43:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4H3hMdp011233 for ; Mon, 16 May 2005 20:43:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4H3hMk9055440 for ; Mon, 16 May 2005 20:43:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4H3hMBA055439 for xorp-cvs@icir.org; Tue, 17 May 2005 03:43:22 GMT (envelope-from pavlin) Date: Tue, 17 May 2005 03:43:22 GMT From: Pavlin Radoslavov Message-Id: <200505170343.j4H3hMBA055439@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-17 03:43:22 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add the new "hello-period" configuration statement to the release notes. Revision Changes Path 1.72 +9 -4; commitid: d8754289683a7ea6; xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 18 00:01:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 May 2005 17:02:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4I021rP070366 for ; Tue, 17 May 2005 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4I0216d029380 for ; Tue, 17 May 2005 17:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4I020KX029111; Tue, 17 May 2005 17:02:00 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4I01NKX029087 for ; Tue, 17 May 2005 17:01:23 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4I01Maa029374 for ; Tue, 17 May 2005 17:01:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4I01MVq079203 for ; Tue, 17 May 2005 17:01:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4I01MYN079202 for xorp-cvs@icir.org; Wed, 18 May 2005 00:01:22 GMT (envelope-from pavlin) Date: Wed, 18 May 2005 00:01:22 GMT From: Pavlin Radoslavov Message-Id: <200505180001.j4I01MYN079202@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual xorp/etc/templates xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-18 00:01:22 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex pimsm.tex etc/templates pimsm4.tp pimsm6.tp rtrmgr config.boot.sample Log message: Add new "hello-triggered-delay" PIM configuration option and document it. Revision Changes Path 1.73 +6 -1; commitid: 13501428a859b7ea6; xorp/RELEASE_NOTES 1.10 +13 -4; commitid: 13501428a859b7ea6; xorp/docs/user_manual/config_overview.tex 1.18 +12 -1; commitid: 13501428a859b7ea6; xorp/docs/user_manual/pimsm.tex 1.23 +10 -1; commitid: 13501428a859b7ea6; xorp/etc/templates/pimsm4.tp 1.23 +10 -1; commitid: 13501428a859b7ea6; xorp/etc/templates/pimsm6.tp 1.26 +3 -1; commitid: 13501428a859b7ea6; xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 18 00:01:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 17 May 2005 17:02:06 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4I026oE070391 for ; Tue, 17 May 2005 17:02:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4I026aT029384 for ; Tue, 17 May 2005 17:02:06 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4I026KX029122; Tue, 17 May 2005 17:02:06 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4I01pKX029105 for ; Tue, 17 May 2005 17:01:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4I01pth029378 for ; Tue, 17 May 2005 17:01:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4I01pLj079265 for ; Tue, 17 May 2005 17:01:51 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4I01pXa079264 for xorp-cvs@icir.org; Wed, 18 May 2005 00:01:51 GMT (envelope-from pavlin) Date: Wed, 18 May 2005 00:01:51 GMT From: Pavlin Radoslavov Message-Id: <200505180001.j4I01pXa079264@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-18 00:01:51 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the new "hello-triggered-delay" PIM configuration option. Revision Changes Path 1.46 +9 -2; commitid: 13571428a85df7ea6; www/getting_started.html 1.20 +8 -1; commitid: 13571428a85df7ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Fri May 20 08:16:17 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 May 2005 01:17:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4K8H1kv030894 for ; Fri, 20 May 2005 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4K8H1ob087217 for ; Fri, 20 May 2005 01:17:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4K8H1qG017114; Fri, 20 May 2005 01:17:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4K8GIqG017091 for ; Fri, 20 May 2005 01:16:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4K8GH1A087197 for ; Fri, 20 May 2005 01:16:18 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4K8GHsS063805 for ; Fri, 20 May 2005 01:16:17 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4K8GHPF063804 for xorp-cvs@icir.org; Fri, 20 May 2005 08:16:17 GMT (envelope-from pavlin) Date: Fri, 20 May 2005 08:16:17 GMT From: Pavlin Radoslavov Message-Id: <200505200816.j4K8GHPF063804@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-20 08:16:17 UTC XORP CVS repository Modified files: pim pim_config.cc Log message: Refactor the implementation of method PimNode::send_test_jp_entry() for sending Join/Prune messages for testing purpose. Now we can send the messages with any upstream neighbor address even if we don't have a neighbor with such address. Revision Changes Path 1.38 +3 -5; commitid: f904428d9c367ea6; xorp/pim/pim_config.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Fri May 20 20:07:22 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 May 2005 13:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4KK82wO086022 for ; Fri, 20 May 2005 13:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4KK82lJ099959 for ; Fri, 20 May 2005 13:08:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4KK81qG011192; Fri, 20 May 2005 13:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4KK7MqG011141 for ; Fri, 20 May 2005 13:07:22 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4KK7MuM099953 for ; Fri, 20 May 2005 13:07:22 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4KK7MXf077024 for ; Fri, 20 May 2005 13:07:22 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4KK7M5n077023 for xorp-cvs@icir.org; Fri, 20 May 2005 20:07:22 GMT (envelope-from pavlin) Date: Fri, 20 May 2005 20:07:22 GMT From: Pavlin Radoslavov Message-Id: <200505202007.j4KK7M5n077023@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-20 20:07:22 UTC XORP CVS repository Modified files: . roadmap.html html_src roadmap.html Log message: Remove "XORP-1.1 release" from the roadmap, because it is already done. Revision Changes Path 1.6 +0 -5; commitid: 12cab428e435f7ea6; www/html_src/roadmap.html 1.8 +3 -8; commitid: 12cab428e435f7ea6; www/roadmap.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Fri May 20 22:51:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 May 2005 17:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4L0U2Do048734 for ; Fri, 20 May 2005 17:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4L0U2Z2003464 for ; Fri, 20 May 2005 17:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4L0U1Pi020107; Fri, 20 May 2005 17:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4KMp7Pi016850 for ; Fri, 20 May 2005 15:51:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4KMp7U3002220 for ; Fri, 20 May 2005 15:51:07 -0700 (PDT) (envelope-from kohler@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4KMp7Ya081513 for ; Fri, 20 May 2005 15:51:07 -0700 (PDT) (envelope-from kohler@xorpc.icir.org) Received: (from kohler@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4KMp7pc081512 for xorp-cvs@icir.org; Fri, 20 May 2005 22:51:07 GMT (envelope-from kohler) Date: Fri, 20 May 2005 22:51:07 GMT From: Eddie Kohler Message-Id: <200505202251.j4KMp7pc081512@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/historic Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: kohler@xorpc.icir.org 2005-05-20 22:51:07 UTC XORP CVS repository Added files: docs/historic piglogo.png Log message: cleaning up my directories, i found this Revision Changes Path 1.1 +342 -0 xorp/docs/historic/piglogo.png (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Sat May 21 01:06:18 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 20 May 2005 18:07:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4L172ow057649 for ; Fri, 20 May 2005 18:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4L172E2003894 for ; Fri, 20 May 2005 18:07:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4L171Pi021069; Fri, 20 May 2005 18:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4L16IPi021053 for ; Fri, 20 May 2005 18:06:18 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4L16Ipo003890 for ; Fri, 20 May 2005 18:06:18 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4L16I7S083311 for ; Fri, 20 May 2005 18:06:18 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4L16IgP083310 for xorp-cvs@icir.org; Sat, 21 May 2005 01:06:18 GMT (envelope-from atanu) Date: Sat, 21 May 2005 01:06:18 GMT From: Atanu Ghosh Message-Id: <200505210106.j4L16IgP083310@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/docs/test_harness Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-21 01:06:18 UTC XORP CVS repository Modified files: bgp route_table_filter.cc bgp/harness peer.cc test_peering1.sh docs/test_harness test_harness.tex Log message: When originating a route don't put our own AS in the AS path for IBGP peerings, doing so causes the loop detection in the neighbour to drop the route. Changed the affected regression tests and add support for testing for an empty AS path. Bug found by: Jake Kim Revision Changes Path 1.61 +6 -2; commitid: 14529428e89887ea6; xorp/bgp/harness/peer.cc 1.31 +3 -3; commitid: 14529428e89887ea6; xorp/bgp/harness/test_peering1.sh 1.29 +5 -2; commitid: 14529428e89887ea6; xorp/bgp/route_table_filter.cc 1.29 +2 -1; commitid: 14529428e89887ea6; xorp/docs/test_harness/test_harness.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Sat May 21 19:48:38 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 21 May 2005 12:49:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4LJn1jM088319 for ; Sat, 21 May 2005 12:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4LJn1MA020153 for ; Sat, 21 May 2005 12:49:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4LJn1Pi018606; Sat, 21 May 2005 12:49:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4LJmdPi018595 for ; Sat, 21 May 2005 12:48:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4LJmcvZ020151 for ; Sat, 21 May 2005 12:48:38 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4LJmcx8098817 for ; Sat, 21 May 2005 12:48:38 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4LJmcRc098816 for xorp-cvs@icir.org; Sat, 21 May 2005 19:48:38 GMT (envelope-from atanu) Date: Sat, 21 May 2005 19:48:38 GMT From: Atanu Ghosh Message-Id: <200505211948.j4LJmcRc098816@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-05-21 19:48:38 UTC XORP CVS repository Modified files: . downloads.html html_src downloads.html Log message: Add Linux 2.6.x to the list of systems that XORP builds on. Requested by: Richard Gold Revision Changes Path 1.40 +4 -3; commitid: 181cb428f903b7ea6; www/downloads.html 1.11 +1 -0; commitid: 181cb428f903b7ea6; www/html_src/downloads.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Mon May 23 19:34:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 23 May 2005 12:35:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4NJZ2nx067565 for ; Mon, 23 May 2005 12:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4NJZ2kB060964 for ; Mon, 23 May 2005 12:35:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4NJZ1Pi027652; Mon, 23 May 2005 12:35:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4NJYXPi027639 for ; Mon, 23 May 2005 12:34:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4NJYXip060956 for ; Mon, 23 May 2005 12:34:33 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4NJYWDK059727 for ; Mon, 23 May 2005 12:34:32 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4NJYWAW059726 for xorp-cvs@icir.org; Mon, 23 May 2005 19:34:32 GMT (envelope-from mjh) Date: Mon, 23 May 2005 19:34:32 GMT From: Mark Handley Message-Id: <200505231934.j4NJYWAW059726@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: other/tinderbox/scripts Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/share/doc/apache/cvs Module name: other Changes by: mjh@xorpc.icir.org 2005-05-23 19:34:32 UTC XORP CVS repository Modified files: tinderbox/scripts config Log message: Increase timeout to 9000 seconds Revision Changes Path 1.13 +1 -1; commitid: e933429230337ea6; other/tinderbox/scripts/config _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Tue May 24 16:27:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 09:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4OGS1S4031388 for ; Tue, 24 May 2005 09:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OGS1En075712 for ; Tue, 24 May 2005 09:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OGS1KM006885; Tue, 24 May 2005 09:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OGR7KM006854 for ; Tue, 24 May 2005 09:27:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OGR7xg075710 for ; Tue, 24 May 2005 09:27:07 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4OGR6O8074711 for ; Tue, 24 May 2005 09:27:06 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4OGR666074710 for xorp-cvs@icir.org; Tue, 24 May 2005 16:27:06 GMT (envelope-from atanu) Date: Tue, 24 May 2005 16:27:06 GMT From: Atanu Ghosh Message-Id: <200505241627.j4OGR666074710@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-05-24 16:27:06 UTC XORP CVS repository Modified files: html_src contributing.html Log message: First cut at wording for licensing and copyright rules for contributing code. Revision Changes Path 1.7 +9 -0; commitid: 123bb429355d97ea6; www/html_src/contributing.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Tue May 24 20:32:00 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 13:33:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4OKX1hO082565 for ; Tue, 24 May 2005 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OKX1wu077941 for ; Tue, 24 May 2005 13:33:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OKX1KM017277; Tue, 24 May 2005 13:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OKW0KM017219 for ; Tue, 24 May 2005 13:32:00 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OKW06T077929 for ; Tue, 24 May 2005 13:32:00 -0700 (PDT) (envelope-from jcardona@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4OKW0O1076817 for ; Tue, 24 May 2005 13:32:00 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4OKW0Qn076816 for xorp-cvs@icir.org; Tue, 24 May 2005 20:32:00 GMT (envelope-from jcardona) Date: Tue, 24 May 2005 20:32:00 GMT From: Javier Cardona Message-Id: <200505242032.j4OKW0Qn076816@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: jcardona@xorpc.icir.org 2005-05-24 20:32:00 UTC XORP CVS repository Modified files: . bootstrap mibs configure Added files: mibs libtool-c++-linker.patch Log message: Bugzilla URL: 135 Bug found by: Javier Submitted by: Javier Requested by: Atanu Revision Changes Path 1.25 +2 -1; commitid: 12b8c42938beb7ea6; xorp/bootstrap 1.13 +1 -1; commitid: 12b8c42938beb7ea6; xorp/mibs/configure 1.1 +16 -0 xorp/mibs/libtool-c++-linker.patch (new) _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Tue May 24 22:11:09 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 15:12:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4OMC1Zl003953 for ; Tue, 24 May 2005 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OMC1WP078712 for ; Tue, 24 May 2005 15:12:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OMC1KM021215; Tue, 24 May 2005 15:12:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4OMB9KM021182 for ; Tue, 24 May 2005 15:11:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4OMB9hJ078704 for ; Tue, 24 May 2005 15:11:09 -0700 (PDT) (envelope-from jcardona@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4OMB9tU077868 for ; Tue, 24 May 2005 15:11:09 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4OMB92b077867 for xorp-cvs@icir.org; Tue, 24 May 2005 22:11:09 GMT (envelope-from jcardona) Date: Tue, 24 May 2005 22:11:09 GMT From: Javier Cardona Message-Id: <200505242211.j4OMB92b077867@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: jcardona@xorpc.icir.org 2005-05-24 22:11:09 UTC XORP CVS repository Modified files: mibs Makefile.am Makefile.in Log message: libstc++ no longer needs to be explicitely linked. Bugzilla URL: 135 Revision Changes Path 1.33 +2 -3; commitid: 130094293a6427ea6; xorp/mibs/Makefile.am 1.41 +1 -1; commitid: 130094293a6427ea6; xorp/mibs/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 25 00:18:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 17:19:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4P0J25i093758 for ; Tue, 24 May 2005 17:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P0J2hA079645 for ; Tue, 24 May 2005 17:19:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P0J1KM025366; Tue, 24 May 2005 17:19:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P0IpKM025359 for ; Tue, 24 May 2005 17:18:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P0Ipck079643 for ; Tue, 24 May 2005 17:18:51 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4P0IpZM079430 for ; Tue, 24 May 2005 17:18:51 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4P0Iplb079429 for xorp-cvs@icir.org; Wed, 25 May 2005 00:18:51 GMT (envelope-from atanu) Date: Wed, 25 May 2005 00:18:51 GMT From: Atanu Ghosh Message-Id: <200505250018.j4P0Iplb079429@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-25 00:18:51 UTC XORP CVS repository Modified files: mibs/tests test_bgpmib.sh.in Log message: Change localhost to 127.0.0.1, otherwise localhost resolves to an IPv6 address. A peering in then attempted with an IPv6 source address and an IPv4 destination address. This was failing. Revision Changes Path 1.34 +2 -2; commitid: 1362a4293c46a7ea6; xorp/mibs/tests/test_bgpmib.sh.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 25 01:37:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 18:38:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4P1c1Vl046101 for ; Tue, 24 May 2005 18:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P1c1mT080215 for ; Tue, 24 May 2005 18:38:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P1c1KM027915; Tue, 24 May 2005 18:38:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P1bTKM027903 for ; Tue, 24 May 2005 18:37:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P1bTua080210 for ; Tue, 24 May 2005 18:37:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4P1bSGC080167 for ; Tue, 24 May 2005 18:37:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4P1bS0x080166 for xorp-cvs@icir.org; Wed, 25 May 2005 01:37:28 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505250137.j4P1bS0x080166@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 25 May 2005 01:37:28 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-25 01:37:28 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Modify an OpenBSD-related note. Revision Changes Path 1.29 +2 -2; commitid: 1390d4293d6c97ea6; xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 25 02:56:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 24 May 2005 19:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4P2v1YW085136 for ; Tue, 24 May 2005 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P2v1h6080819 for ; Tue, 24 May 2005 19:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P2v1KM029767; Tue, 24 May 2005 19:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P2u4KM029733 for ; Tue, 24 May 2005 19:56:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P2u4O2080811 for ; Tue, 24 May 2005 19:56:04 -0700 (PDT) (envelope-from jcardona@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4P2u3dL080759 for ; Tue, 24 May 2005 19:56:03 -0700 (PDT) (envelope-from jcardona@xorpc.icir.org) Received: (from jcardona@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4P2u3ab080758 for xorp-cvs@icir.org; Wed, 25 May 2005 02:56:03 GMT (envelope-from jcardona) From: Javier Cardona Message-Id: <200505250256.j4P2u3ab080758@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 25 May 2005 02:56:03 GMT CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: jcardona@xorpc.icir.org 2005-05-25 02:56:03 UTC XORP CVS repository Modified files: mibs/tests test_bgpmib.sh.in Log message: Modified test script to find libraries under libtool .libs directory. Revision Changes Path 1.35 +5 -5; commitid: 13b3d4293e8e97ea6; xorp/mibs/tests/test_bgpmib.sh.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 25 07:47:42 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 May 2005 00:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4P7m18u057523 for ; Wed, 25 May 2005 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P7m1mI083975 for ; Wed, 25 May 2005 00:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P7m1KM006023; Wed, 25 May 2005 00:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P7lgKM006013 for ; Wed, 25 May 2005 00:47:42 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P7lgFv083965 for ; Wed, 25 May 2005 00:47:42 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4P7lgsm085069 for ; Wed, 25 May 2005 00:47:42 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4P7lg98085068 for xorp-cvs@icir.org; Wed, 25 May 2005 07:47:42 GMT (envelope-from atanu) From: Atanu Ghosh Message-Id: <200505250747.j4P7lg98085068@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 25 May 2005 07:47:42 GMT CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-05-25 07:47:42 UTC XORP CVS repository Modified files: . contributing.html html_src contributing.html Log message: Make a link to the license. Revision Changes Path 1.28 +13 -3; commitid: 14c1642942d9c7ea6; www/contributing.html 1.8 +2 -1; commitid: 14c1642942d9c7ea6; www/html_src/contributing.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Wed May 25 07:56:45 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 May 2005 00:57:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4P7v1cW059708 for ; Wed, 25 May 2005 00:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P7v1tV084226 for ; Wed, 25 May 2005 00:57:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P7v1KM006248; Wed, 25 May 2005 00:57:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4P7ujKM006236 for ; Wed, 25 May 2005 00:56:45 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4P7uj7N084213 for ; Wed, 25 May 2005 00:56:45 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4P7ujNK085601 for ; Wed, 25 May 2005 00:56:45 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4P7ujuR085600 for xorp-cvs@icir.org; Wed, 25 May 2005 07:56:45 GMT (envelope-from atanu) From: Atanu Ghosh Message-Id: <200505250756.j4P7ujuR085600@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 25 May 2005 07:56:45 GMT CVSROOT: /usr/local/www/data/cvs Module name: www Changes by: atanu@xorpc.icir.org 2005-05-25 07:56:45 UTC XORP CVS repository Modified files: . mirrors.html html_src mirrors.html Log message: Another mirror GARR in Italy. Revision Changes Path 1.20 +6 -0; commitid: 14e3042942fbb7ea6; www/html_src/mirrors.html 1.26 +7 -1; commitid: 14e3042942fbb7ea6; www/mirrors.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:32 2005 Subject: No subject Thu May 26 02:05:21 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 25 May 2005 19:06:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4Q262wK040180 for ; Wed, 25 May 2005 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4Q261xo002610 for ; Wed, 25 May 2005 19:06:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4Q261KM010279; Wed, 25 May 2005 19:06:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4Q25LKM010253 for ; Wed, 25 May 2005 19:05:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4Q25Lp1002602 for ; Wed, 25 May 2005 19:05:21 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4Q25Lba031758 for ; Wed, 25 May 2005 19:05:21 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4Q25LQD031757 for xorp-cvs@icir.org; Thu, 26 May 2005 02:05:21 GMT (envelope-from atanu) From: Atanu Ghosh Message-Id: <200505260205.j4Q25LQD031757@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 26 May 2005 02:05:21 GMT CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-26 02:05:21 UTC XORP CVS repository Modified files: mibs bgp4_mib_1657_bgppeertable.cc Log message: Addresses were being stored as type string in a struct that was being allocated by malloc (or snmpd equivalent). The first attempt to manipulate the string instances was causing an exception as they had non been correctly initialised. The struct now contains char arrays. The problem was introduced when BGP was modified to return information about IPv6 peerings. Previously this data structure had been of type IPv4. Revision Changes Path 1.17 +14 -11; commitid: 7bf242952ee07ea6; xorp/mibs/bgp4_mib_1657_bgppeertable.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Thu May 26 10:58:51 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 May 2005 03:59:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4QAx2Un045645 for ; Thu, 26 May 2005 03:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4QAx2cb011947 for ; Thu, 26 May 2005 03:59:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4QAx2KM021773; Thu, 26 May 2005 03:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4QAwpKM021764 for ; Thu, 26 May 2005 03:58:51 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4QAwpln011940 for ; Thu, 26 May 2005 03:58:51 -0700 (PDT) (envelope-from mjh@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4QAwppl047354 for ; Thu, 26 May 2005 03:58:51 -0700 (PDT) (envelope-from mjh@xorpc.icir.org) Received: (from mjh@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4QAwpsG047353 for xorp-cvs@icir.org; Thu, 26 May 2005 10:58:51 GMT (envelope-from mjh) From: Mark Handley Message-Id: <200505261058.j4QAwpsG047353@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 26 May 2005 10:58:51 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-05-26 10:58:50 UTC XORP CVS repository Modified files: libxipc xrl_router.cc Log message: As discussed in the meeting on Monday, add XORP_FINDER_CLIENT_PORT environment variable to permit the setting of the finder port for the rtrmgr, xorpsh, etc. Revision Changes Path 1.46 +14 -1; commitid: b8c24295ab9f7ea6; xorp/libxipc/xrl_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Thu May 26 11:51:34 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 26 May 2005 04:52:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4QBq3lX056446 for ; Thu, 26 May 2005 04:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4QBq3fW012855 for ; Thu, 26 May 2005 04:52:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4QBq3KM022972; Thu, 26 May 2005 04:52:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4QBpZKM022943 for ; Thu, 26 May 2005 04:51:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4QBpY5h012850 for ; Thu, 26 May 2005 04:51:34 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4QBpYaV049098 for ; Thu, 26 May 2005 04:51:34 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4QBpYo4049097 for xorp-cvs@icir.org; Thu, 26 May 2005 11:51:34 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505261151.j4QBpYo4049097@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/mibs xorp/mibs/snmpdscripts xorp/mibs/tests Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 26 May 2005 11:51:34 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-26 11:51:34 UTC XORP CVS repository Modified files: . bootstrap mibs Makefile.in configure configure.in mibs/snmpdscripts Makefile.in mibs/tests Makefile.in Removed files: mibs libtool-c++-linker.patch Log message: * Remove the mibs/libtool-c++-linker.patch because it patches the auto-generated mibs/configure file, and this will stop working the first time we edit mibs/configure.in * Add a hack to mibs/configure.in to fix the generation of shared libraries (inspired by the removed mibs/libtool-c++-linker.patch). Apparently, libtool insists of using the C compiler to link the shared libraries, but this doesn't work for C++ shared libraries. Hence, we temporary replace the CC value with the CXX value when we call AC_PROG_LIBTOOL. Unfortunately, it doesn't seem that we can avoid the above hack unless we modify the corresonding original libtool*.m4 file. Also, even upgrading to libtool-1.5 doesn't seem to solve the problem. * Minor cleanup of mibs/configure.in * Regenerate Revision Changes Path 1.26 +1 -2; commitid: bd784295b4a77ea6; xorp/bootstrap 1.42 +1 -4; commitid: bd784295b4a77ea6; xorp/mibs/Makefile.in 1.14 +1415 -2062; commitid: bd784295b4a77ea6; xorp/mibs/configure 1.8 +42 -30; commitid: bd784295b4a77ea6; xorp/mibs/configure.in 1.2 +0 -16 xorp/mibs/libtool-c++-linker.patch (dead) 1.11 +1 -4; commitid: bd784295b4a77ea6; xorp/mibs/snmpdscripts/Makefile.in 1.11 +1 -4; commitid: bd784295b4a77ea6; xorp/mibs/tests/Makefile.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:01:01 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:02:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RK22gF008567 for ; Fri, 27 May 2005 13:02:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RK218d042745 for ; Fri, 27 May 2005 13:02:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RK21lk019516; Fri, 27 May 2005 13:02:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RK12lk019498 for ; Fri, 27 May 2005 13:01:02 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RK11OQ042725 for ; Fri, 27 May 2005 13:01:01 -0700 (PDT) (envelope-from atanu@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RK11no005706 for ; Fri, 27 May 2005 13:01:01 -0700 (PDT) (envelope-from atanu@xorpc.icir.org) Received: (from atanu@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RK11II005705 for xorp-cvs@icir.org; Fri, 27 May 2005 20:01:01 GMT (envelope-from atanu) From: Atanu Ghosh Message-Id: <200505272001.j4RK11II005705@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:01:01 GMT CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-05-27 20:01:01 UTC XORP CVS repository Modified files: libxorp heap.cc heap.hh test_heap.cc timer.cc timer.hh Log message: The heap code allows a set of objects to be held as a priority queue. The timer code uses the heap code. The heap code itself holds little chunks of data (heap_entry) which it holds in a contiguous block of memory. The heap_entry holds a key and a pointer to the object. When an entry is added it is placed at the end of the heap and is bubbled into position. The most recent entry is at the head of the list. If a an entry is to be removed from the heap then it would necessary to search the whole heap for it, but wait, the heap can be configured to hold an index into the heap in the object itself cool. Both on the MIPS and Sparc the casts required to update the object itself have been causing problems. They require casting a void * to a char * in order to perform the arithmetic and then casting to an int * to do the update. Pavlin points out that an extra void * cast between the char * and int * solves the problem. Introduce a HeapBase, objects that are to be stored on the heap can inherit from it if they require removal from arbitary positions. Approved by: Pavlin Revision Changes Path 1.12 +16 -16; commitid: 162642977c7c7ea6; xorp/libxorp/heap.cc 1.8 +26 -20; commitid: 162642977c7c7ea6; xorp/libxorp/heap.hh 1.3 +16 -11; commitid: 162642977c7c7ea6; xorp/libxorp/test_heap.cc 1.22 +5 -5; commitid: 162642977c7c7ea6; xorp/libxorp/timer.cc 1.22 +2 -3; commitid: 162642977c7c7ea6; xorp/libxorp/timer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:07:54 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RK81qW010031 for ; Fri, 27 May 2005 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RK81k7042839 for ; Fri, 27 May 2005 13:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RK81lk019662; Fri, 27 May 2005 13:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RK7tlk019653 for ; Fri, 27 May 2005 13:07:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RK7smZ042837 for ; Fri, 27 May 2005 13:07:54 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RK7sYX005965 for ; Fri, 27 May 2005 13:07:54 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RK7sF8005964 for xorp-cvs@icir.org; Fri, 27 May 2005 20:07:54 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272007.j4RK7sF8005964@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:07:54 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 20:07:54 UTC XORP CVS repository Modified files: pim pim_mrt_mfc.cc Log message: Bug fix: don't update the PimMfc entry if the data packet came on the wrong interface. Revision Changes Path 1.28 +1 -3; commitid: 173242977e007ea6; xorp/pim/pim_mrt_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:25:55 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RKQ2j5014173 for ; Fri, 27 May 2005 13:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKQ2hB043043 for ; Fri, 27 May 2005 13:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKQ2lk020308; Fri, 27 May 2005 13:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKPtlk020295 for ; Fri, 27 May 2005 13:25:55 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKPt0L043041 for ; Fri, 27 May 2005 13:25:55 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RKPtIK006373 for ; Fri, 27 May 2005 13:25:55 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RKPt8h006372 for xorp-cvs@icir.org; Fri, 27 May 2005 20:25:55 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272025.j4RKPt8h006372@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:25:55 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 20:25:55 UTC XORP CVS repository Modified files: pim pim_mre.cc Log message: If a PIM configured interface is gracefully shutdown, then don't call assert_timer_timeout_wc() or assert_timer_timeout_sg() because this may transmit a regular Assert message which is not what we want. Instead, call process_could_assert_wc() or process_could_assert_sg() respectively so if an Assert message is to be sent, the message will be AssertCancel. Revision Changes Path 1.38 +13 -5; commitid: 18894297818f7ea6; xorp/pim/pim_mre.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:29:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:30:32 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RKUWVx015285 for ; Fri, 27 May 2005 13:30:32 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKUWII043095 for ; Fri, 27 May 2005 13:30:32 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKUVlk020488; Fri, 27 May 2005 13:30:32 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKTVlk020434 for ; Fri, 27 May 2005 13:29:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKTVXA043082 for ; Fri, 27 May 2005 13:29:31 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RKTV4K006465 for ; Fri, 27 May 2005 13:29:31 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RKTVcn006464 for xorp-cvs@icir.org; Fri, 27 May 2005 20:29:31 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272029.j4RKTVcn006464@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:29:31 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 20:29:31 UTC XORP CVS repository Modified files: pim pim_mfc.cc Log message: * When (re)computing the incoming interface and the outgoing interfaces for a PimMfc entry, then check whether the source is directly connected. * When updating the olist_disable_wrongvif set of interfaces, consider whether the SPT switch is desired. * Print the olist_disable_wrongvif set of interfaces in the XLOG_TRACE() message when sending a MFC entry to MFEA. Revision Changes Path 1.29 +22 -6; commitid: 190e429782717ea6; xorp/pim/pim_mfc.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:32:48 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:33:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RKX2kn015980 for ; Fri, 27 May 2005 13:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKX218043135 for ; Fri, 27 May 2005 13:33:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKX1lk020586; Fri, 27 May 2005 13:33:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKWnlk020578 for ; Fri, 27 May 2005 13:32:49 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKWnaG043130 for ; Fri, 27 May 2005 13:32:49 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RKWmL8006648 for ; Fri, 27 May 2005 13:32:48 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RKWm5q006647 for xorp-cvs@icir.org; Fri, 27 May 2005 20:32:48 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272032.j4RKWm5q006647@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:32:48 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 20:32:48 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.cc pim_node.hh Log message: Replace the single _test_jp_header (that is used for sending Join/Prune for test purpose) with a list of headers. Thus, we can send a number of test Join/Prune messages back-to-back. Revision Changes Path 1.39 +24 -12; commitid: 19c24297837a7ea6; xorp/pim/pim_config.cc 1.71 +2 -3; commitid: 19c24297837a7ea6; xorp/pim/pim_node.cc 1.55 +2 -2; commitid: 19c24297837a7ea6; xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 20:37:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 13:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RKc2rV017008 for ; Fri, 27 May 2005 13:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKc29N043217 for ; Fri, 27 May 2005 13:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKc2lk020770; Fri, 27 May 2005 13:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RKb4lk020716 for ; Fri, 27 May 2005 13:37:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RKb4FP043204 for ; Fri, 27 May 2005 13:37:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RKb4om006861 for ; Fri, 27 May 2005 13:37:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RKb4ib006860 for xorp-cvs@icir.org; Fri, 27 May 2005 20:37:04 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272037.j4RKb4ib006860@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim xorp/pim/docs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 20:37:04 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 20:37:04 UTC XORP CVS repository Modified files: pim pim_mre_data.cc pim_mre_track_state.hh pim_mre_track_state.cc pim_mrt.hh pim_mrt_task.cc pim/docs pim_track_state_name.txt pim_track_state_num.txt Log message: * Add a new input event state to the event tracking machinery: INPUT_STATE_WAS_SWITCH_TO_SPT_DESIRED_SG * Use/schedule the above event when the "switch to SPT desired" becomes true so we can perform the appopriate actions. Revision Changes Path 1.25 +4 -0; commitid: 1a4f429784417ea6; xorp/pim/docs/pim_track_state_name.txt 1.24 +15 -14; commitid: 1a4f429784417ea6; xorp/pim/docs/pim_track_state_num.txt 1.18 +13 -1; commitid: 1a4f429784417ea6; xorp/pim/pim_mre_data.cc 1.40 +29 -15; commitid: 1a4f429784417ea6; xorp/pim/pim_mre_track_state.cc 1.22 +17 -14; commitid: 1a4f429784417ea6; xorp/pim/pim_mre_track_state.hh 1.16 +3 -1; commitid: 1a4f429784417ea6; xorp/pim/pim_mrt.hh 1.20 +19 -1; commitid: 1a4f429784417ea6; xorp/pim/pim_mrt_task.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 21:53:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 14:54:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RLs2lg033175 for ; Fri, 27 May 2005 14:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RLs2V7043880 for ; Fri, 27 May 2005 14:54:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RLs1lk022898; Fri, 27 May 2005 14:54:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RLrblk022882 for ; Fri, 27 May 2005 14:53:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RLrbNJ043878 for ; Fri, 27 May 2005 14:53:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RLrbJN026951 for ; Fri, 27 May 2005 14:53:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RLrbhl026950 for xorp-cvs@icir.org; Fri, 27 May 2005 21:53:37 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272153.j4RLrbhl026950@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 21:53:37 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 21:53:37 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add few more release notes for PIM-SM Revision Changes Path 1.74 +9 -3; commitid: 692d429796d67ea6; xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Fri May 27 22:17:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 15:18:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4RMI2qI038323 for ; Fri, 27 May 2005 15:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RMI2f5044103 for ; Fri, 27 May 2005 15:18:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RMI2lk023755; Fri, 27 May 2005 15:18:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4RMHOlk023733 for ; Fri, 27 May 2005 15:17:24 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4RMHOE7044101 for ; Fri, 27 May 2005 15:17:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4RMHOkd027342 for ; Fri, 27 May 2005 15:17:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4RMHO5C027341 for xorp-cvs@icir.org; Fri, 27 May 2005 22:17:24 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505272217.j4RMHO5C027341@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 27 May 2005 22:17:24 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-27 22:17:24 UTC XORP CVS repository Modified files: libxorp timer.cc timer.hh Log message: Remove "static TimerNode _dummy_timer_node", because it is not needed anymore. Revision Changes Path 1.23 +1 -13; commitid: 6aad42979c677ea6; xorp/libxorp/timer.cc 1.23 +1 -3; commitid: 6aad42979c677ea6; xorp/libxorp/timer.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Sat May 28 02:55:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 27 May 2005 19:56:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4S2u1Ii096782 for ; Fri, 27 May 2005 19:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4S2u1x2047692 for ; Fri, 27 May 2005 19:56:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4S2u1lk001764; Fri, 27 May 2005 19:56:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4S2t6lk001732 for ; Fri, 27 May 2005 19:55:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4S2t5mi047682 for ; Fri, 27 May 2005 19:55:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4S2t51u033375 for ; Fri, 27 May 2005 19:55:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4S2t5LC033374 for xorp-cvs@icir.org; Sat, 28 May 2005 02:55:05 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505280255.j4S2t5LC033374@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www/html_src www Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 28 May 2005 02:55:05 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-28 02:55:05 UTC XORP CVS repository Modified files: html_src mailing_lists.html . mailing_lists.html Log message: Add an URL to the recently added xorp-cvs mailing list archive. Requested by: "edrt" Revision Changes Path 1.6 +1 -1; commitid: 82284297dd627ea6; www/html_src/mailing_lists.html 1.18 +4 -4; commitid: 82284297dd627ea6; www/mailing_lists.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Sat May 28 15:31:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 May 2005 08:32:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4SFW2jE075516 for ; Sat, 28 May 2005 08:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4SFW1cO061469 for ; Sat, 28 May 2005 08:32:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4SFW1lk024464; Sat, 28 May 2005 08:32:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4SFVZlk024448 for ; Sat, 28 May 2005 08:31:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4SFVZLL061466 for ; Sat, 28 May 2005 08:31:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4SFVZKe057255 for ; Sat, 28 May 2005 08:31:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4SFVZEO057254 for xorp-cvs@icir.org; Sat, 28 May 2005 15:31:35 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505281531.j4SFVZEO057254@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 28 May 2005 15:31:35 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-28 15:31:35 UTC XORP CVS repository Modified files: . mailing_lists.html html_src mailing_lists.html Log message: Change the URL to the xorp-cvs mailing list archive to point to the new public archive. Approved by: Atanu, Mark Revision Changes Path 1.7 +1 -1; commitid: df6a42988eab7ea6; www/html_src/mailing_lists.html 1.19 +2 -2; commitid: df6a42988eab7ea6; www/mailing_lists.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:33 2005 Subject: No subject Sat May 28 22:13:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 28 May 2005 15:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4SME3kj097192 for ; Sat, 28 May 2005 15:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4SME2tI066866 for ; Sat, 28 May 2005 15:14:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4SME2lk010697; Sat, 28 May 2005 15:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4SMD4lk010643 for ; Sat, 28 May 2005 15:13:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4SMD4J3066854 for ; Sat, 28 May 2005 15:13:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4SMD3NZ063903 for ; Sat, 28 May 2005 15:13:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4SMD398063902 for xorp-cvs@icir.org; Sat, 28 May 2005 22:13:03 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505282213.j4SMD398063902@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 28 May 2005 22:13:03 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-28 22:13:03 UTC XORP CVS repository Modified files: . contributing.html html_src contributing.html Log message: Explicitly mention that each code contributor will be given the appropriate credit for his work. Revision Changes Path 1.29 +3 -1; commitid: f94e4298ecb07ea6; www/contributing.html 1.9 +2 -0; commitid: f94e4298ecb07ea6; www/html_src/contributing.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Tue May 31 21:24:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 14:25:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4VLP2gG081100 for ; Tue, 31 May 2005 14:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLP2EH034440 for ; Tue, 31 May 2005 14:25:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLP2lk003584; Tue, 31 May 2005 14:25:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLOxlk003575 for ; Tue, 31 May 2005 14:24:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLOxak034435 for ; Tue, 31 May 2005 14:24:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4VLOxQ6085665 for ; Tue, 31 May 2005 14:24:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4VLOx7i085664 for xorp-cvs@icir.org; Tue, 31 May 2005 21:24:59 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505312124.j4VLOx7i085664@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Tue, 31 May 2005 21:24:59 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-31 21:24:59 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp Log message: Add "version" statement per vif that can be used to configure the IGMP/MLD version. Revision Changes Path 1.11 +10 -1; commitid: 14e72429cd6007ea6; xorp/etc/templates/igmp.tp 1.11 +10 -1; commitid: 14e72429cd6007ea6; xorp/etc/templates/mld.tp _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Tue May 31 21:28:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 14:29:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4VLT29x081877 for ; Tue, 31 May 2005 14:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLT2L6034481 for ; Tue, 31 May 2005 14:29:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLT2lk003717; Tue, 31 May 2005 14:29:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLSTlk003692 for ; Tue, 31 May 2005 14:28:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLSTtR034475 for ; Tue, 31 May 2005 14:28:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4VLSTAi085812 for ; Tue, 31 May 2005 14:28:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4VLSTGO085811 for xorp-cvs@icir.org; Tue, 31 May 2005 21:28:29 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505312128.j4VLSTGO085811@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Tue, 31 May 2005 21:28:29 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-05-31 21:28:29 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex igmp.tex rtrmgr config.boot.sample Log message: Document the new "version" IGMP/MLD configuration statement. Revision Changes Path 1.75 +8 -1; commitid: 14ee9429cd6d67ea6; xorp/RELEASE_NOTES 1.11 +17 -7; commitid: 14ee9429cd6d67ea6; xorp/docs/user_manual/config_overview.tex 1.13 +12 -5; commitid: 14ee9429cd6d67ea6; xorp/docs/user_manual/igmp.tex 1.27 +3 -1; commitid: 14ee9429cd6d67ea6; xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Tue May 31 21:29:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 14:30:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j4VLU1F8082096 for ; Tue, 31 May 2005 14:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLU1qx034494 for ; Tue, 31 May 2005 14:30:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLU1lk003764; Tue, 31 May 2005 14:30:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j4VLT4lk003729 for ; Tue, 31 May 2005 14:29:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j4VLT40h034483 for ; Tue, 31 May 2005 14:29:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j4VLT4Vm085894 for ; Tue, 31 May 2005 14:29:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j4VLT4AP085893 for xorp-cvs@icir.org; Tue, 31 May 2005 21:29:04 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200505312129.j4VLT4AP085893@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Tue, 31 May 2005 21:29:04 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-05-31 21:29:04 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the new "version" IGMP/MLD configuration statement. Revision Changes Path 1.47 +16 -5; commitid: 14f57429cd71c7ea6; www/getting_started.html 1.21 +15 -4; commitid: 14f57429cd71c7ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:37:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510c26F019100 for ; Tue, 31 May 2005 17:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510c2ms036720 for ; Tue, 31 May 2005 17:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510c2lk010296; Tue, 31 May 2005 17:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510b4lk010271 for ; Tue, 31 May 2005 17:37:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510b4jm036708 for ; Tue, 31 May 2005 17:37:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510b3BJ057756 for ; Tue, 31 May 2005 17:37:03 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510b3gx057755 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:37:03 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010037.j510b3gx057755@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/mld6igmp xorp/pim xorp/rtrmgr xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:37:03 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:37:03 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp pimsm4.tp pimsm6.tp mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_config.cc mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh pim pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh xrl_pim_node.cc xrl_pim_node.hh xrl_pim_shell_funcs.sh rtrmgr config.boot.sample xrl/interfaces mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh pim.xif pim_xif.cc pim_xif.hh xrl/targets mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh pim.xrls pim_base.cc pim_base.hh Log message: * Add new XRLs to get/set/reset the "IP Router Alert option check" flag per vif (for both MLD/IGMP and PIM): - get_vif_ip_router_alert_option_check - set_vif_ip_router_alert_option_check - reset_vif_ip_router_alert_option_check * If the "IP Router Alert option check" flag is enabled per vif, then drop the IGMP/MLD or PIM packets that don't have that IP option. [Note that this check does not apply for some protocol messages]. The default value is "false", i.e., don't check, because some protocol implementations may not set that flag properly (e.g., the OpenBSD IGMP host implementation). * Add new XORP configuration option per interface/vif for MLD/IGMP and PIM: "enable-ip-router-alert-option-check: bool" with default value of "false". Revision Changes Path 1.12 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/igmp.tp 1.12 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/mld.tp 1.24 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/pimsm4.tp 1.24 +9 -1; commitid: e013429d01907ea6; xorp/etc/templates/pimsm6.tp 1.31 +39 -35; commitid: e013429d01907ea6; xorp/mld6igmp/igmp_proto.cc 1.34 +36 -32; commitid: e013429d01907ea6; xorp/mld6igmp/mld6_proto.cc 1.6 +91 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_config.cc 1.23 +39 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_node.hh 1.38 +2 -1; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_vif.cc 1.19 +15 -2; commitid: e013429d01907ea6; xorp/mld6igmp/mld6igmp_vif.hh 1.46 +54 -1; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc 1.32 +56 -7; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_node.hh 1.14 +44 -1; commitid: e013429d01907ea6; xorp/mld6igmp/xrl_mld6igmp_shell_funcs.sh 1.40 +76 -1; commitid: e013429d01907ea6; xorp/pim/pim_config.cc 1.56 +67 -2; commitid: e013429d01907ea6; xorp/pim/pim_node.hh 1.54 +44 -38; commitid: e013429d01907ea6; xorp/pim/pim_vif.cc 1.36 +13 -1; commitid: e013429d01907ea6; xorp/pim/pim_vif.hh 1.88 +52 -1; commitid: e013429d01907ea6; xorp/pim/xrl_pim_node.cc 1.62 +65 -7; commitid: e013429d01907ea6; xorp/pim/xrl_pim_node.hh 1.30 +44 -1; commitid: e013429d01907ea6; xorp/pim/xrl_pim_shell_funcs.sh 1.28 +5 -1; commitid: e013429d01907ea6; xorp/rtrmgr/config.boot.sample 1.6 +46 -10; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp.xif 1.18 +107 -1; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp_xif.cc 1.16 +96 -7; commitid: e013429d01907ea6; xorp/xrl/interfaces/mld6igmp_xif.hh 1.23 +52 -4; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim.xif 1.35 +107 -1; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim_xif.cc 1.33 +107 -8; commitid: e013429d01907ea6; xorp/xrl/interfaces/pim_xif.hh 1.20 +43 -5; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp.xrls 1.25 +106 -1; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp_base.cc 1.26 +70 -5; commitid: e013429d01907ea6; xorp/xrl/targets/mld6igmp_base.hh 1.48 +51 -4; commitid: e013429d01907ea6; xorp/xrl/targets/pim.xrls 1.51 +106 -1; commitid: e013429d01907ea6; xorp/xrl/targets/pim_base.cc 1.54 +81 -5; commitid: e013429d01907ea6; xorp/xrl/targets/pim_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:38:28 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:39:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510d20E019309 for ; Tue, 31 May 2005 17:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510d22T036740 for ; Tue, 31 May 2005 17:39:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510d1lk010339; Tue, 31 May 2005 17:39:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510cSlk010318 for ; Tue, 31 May 2005 17:38:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510cSkv036727 for ; Tue, 31 May 2005 17:38:28 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510cSoE057868 for ; Tue, 31 May 2005 17:38:28 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510cSat057867 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:38:28 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010038.j510cSat057867@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/tex Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:38:28 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:38:28 UTC XORP CVS repository Modified files: docs/tex xorp.bib Log message: * Add RFC2113 to the list of references. * Fix a typo. Revision Changes Path 1.13 +12 -2; commitid: e1f1429d03767ea6; xorp/docs/tex/xorp.bib _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:39:10 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:40:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510e2pS019509 for ; Tue, 31 May 2005 17:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510e1Gn036766 for ; Tue, 31 May 2005 17:40:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510e1lk010373; Tue, 31 May 2005 17:40:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510dAlk010353 for ; Tue, 31 May 2005 17:39:10 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510dATE036745 for ; Tue, 31 May 2005 17:39:10 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510dAre057962 for ; Tue, 31 May 2005 17:39:10 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510dABF057961 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:39:10 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010039.j510dABF057961@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:39:10 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:39:10 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex igmp.tex pimsm.tex Log message: Document the new "enable-ip-router-alert-option-check" configuration option for MLD/IGMP and PIM. Revision Changes Path 1.76 +12 -2; commitid: e226429d038f7ea6; xorp/RELEASE_NOTES 1.12 +15 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/config_overview.tex 1.14 +10 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/igmp.tex 1.19 +11 -1; commitid: e226429d038f7ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:39:24 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:40:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510e2wh019524 for ; Tue, 31 May 2005 17:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510e2Y0036769 for ; Tue, 31 May 2005 17:40:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510e2lk010384; Tue, 31 May 2005 17:40:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510dPlk010357 for ; Tue, 31 May 2005 17:39:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510dORS036750 for ; Tue, 31 May 2005 17:39:24 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510dOB8058031 for ; Tue, 31 May 2005 17:39:24 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510dOGO058030 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:39:24 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010039.j510dOGO058030@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:39:24 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-01 00:39:24 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the new "enable-ip-router-alert-option-check" configuration option for MLD/IGMP and PIM. Revision Changes Path 1.48 +16 -3; commitid: e280429d03b87ea6; www/getting_started.html 1.22 +15 -2; commitid: e280429d03b87ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:47:37 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:48:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510m1E7021097 for ; Tue, 31 May 2005 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510m18Y036867 for ; Tue, 31 May 2005 17:48:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510m1lk010598; Tue, 31 May 2005 17:48:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510lblk010584 for ; Tue, 31 May 2005 17:47:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510lbef036851 for ; Tue, 31 May 2005 17:47:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510lbT7058356 for ; Tue, 31 May 2005 17:47:37 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510lb1s058355 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:47:37 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010047.j510lb1s058355@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:47:37 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:47:37 UTC XORP CVS repository Modified files: mld6igmp TODO Log message: Remove a TODO entry that is done. Revision Changes Path 1.17 +1 -4; commitid: e3d1429d059f7ea6; xorp/mld6igmp/TODO _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 00:58:05 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Tue, 31 May 2005 17:59:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j510x3d5023233 for ; Tue, 31 May 2005 17:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510x3kA037015 for ; Tue, 31 May 2005 17:59:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510x2lk010997; Tue, 31 May 2005 17:59:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j510w5lk010950 for ; Tue, 31 May 2005 17:58:05 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j510w5qT036995 for ; Tue, 31 May 2005 17:58:05 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j510w5mK058671 for ; Tue, 31 May 2005 17:58:05 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j510w5OG058670 for xorp-cvs@icir.org; Wed, 1 Jun 2005 00:58:05 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010058.j510w5OG058670@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 00:58:05 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 00:58:05 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex pimsm.tex Log message: Edit the text that describes the "enable-ip-router-alert-option-check" configuration statement. Revision Changes Path 1.15 +7 -5; commitid: e509429d080d7ea6; xorp/docs/user_manual/igmp.tex 1.20 +5 -4; commitid: e509429d080d7ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 09:34:03 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Jun 2005 02:35:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j519Z4Hd025525 for ; Wed, 1 Jun 2005 02:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519Z4qf045880 for ; Wed, 1 Jun 2005 02:35:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519Z3lk023813; Wed, 1 Jun 2005 02:35:04 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519Y4lk023783 for ; Wed, 1 Jun 2005 02:34:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519Y4VW045855 for ; Wed, 1 Jun 2005 02:34:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j519Y4gD000506 for ; Wed, 1 Jun 2005 02:34:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j519Y3Fa000505 for xorp-cvs@icir.org; Wed, 1 Jun 2005 09:34:03 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010934.j519Y3Fa000505@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/mld6igmp xorp/xrl/interfaces xorp/xrl/targets Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 09:34:03 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:34:03 UTC XORP CVS repository Modified files: etc/templates igmp.tp mld.tp mld6igmp igmp_proto.cc mld6_proto.cc mld6igmp_config.cc mld6igmp_member_query.cc mld6igmp_node.hh mld6igmp_proto.cc mld6igmp_vif.cc mld6igmp_vif.hh xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh xrl_mld6igmp_shell_funcs.sh xrl/interfaces mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh xrl/targets mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh Log message: * Add new XRLs to get/set/reset MLD/IGMP related parameters (per vif): - {get,set,reset}_vif_query_interval - {get,set,reset}_vif_query_last_member_interval - {get,set,reset}_vif_query_response_interval - {get,set,reset}_vif_robust_count * Add new XORP configuration option per interface/vif for MLD/IGMP with default values: - query-interval: u32 = 125 - query-last-member-interval: u32 = 1 - query-response-interval: u32 = 10 - robust-count: u32 = 2 * Use the configuration parameters to control the MLD/IGMP behavior to set timers, etc. Revision Changes Path 1.13 +37 -1; commitid: 67429d7f867ea6; xorp/etc/templates/igmp.tp 1.13 +37 -1; commitid: 67429d7f867ea6; xorp/etc/templates/mld.tp 1.32 +19 -13; commitid: 67429d7f867ea6; xorp/mld6igmp/igmp_proto.cc 1.35 +20 -14; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6_proto.cc 1.7 +289 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_config.cc 1.12 +9 -7; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_member_query.cc 1.24 +137 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_node.hh 1.14 +22 -17; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_proto.cc 1.39 +27 -9; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_vif.cc 1.20 +33 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/mld6igmp_vif.hh 1.47 +217 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc 1.33 +162 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_node.hh 1.15 +176 -1; commitid: 67429d7f867ea6; xorp/mld6igmp/xrl_mld6igmp_shell_funcs.sh 1.7 +122 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp.xif 1.19 +437 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp_xif.cc 1.17 +290 -1; commitid: 67429d7f867ea6; xorp/xrl/interfaces/mld6igmp_xif.hh 1.21 +119 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp.xrls 1.26 +433 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp_base.cc 1.27 +210 -1; commitid: 67429d7f867ea6; xorp/xrl/targets/mld6igmp_base.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 09:36:11 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Jun 2005 02:37:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j519b1rH025928 for ; Wed, 1 Jun 2005 02:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519b1YI045919 for ; Wed, 1 Jun 2005 02:37:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519b1lk023850; Wed, 1 Jun 2005 02:37:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519aBlk023835 for ; Wed, 1 Jun 2005 02:36:11 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519aB1w045903 for ; Wed, 1 Jun 2005 02:36:11 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j519aBWj000685 for ; Wed, 1 Jun 2005 02:36:11 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j519aBff000684 for xorp-cvs@icir.org; Wed, 1 Jun 2005 09:36:11 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010936.j519aBff000684@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/docs/user_manual xorp/rtrmgr Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 09:36:11 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:36:11 UTC XORP CVS repository Modified files: . RELEASE_NOTES docs/user_manual config_overview.tex igmp.tex rtrmgr config.boot.sample Log message: Document the following new MLD/IGMP configuration options: - query-interval - query-last-member-interval - query-response-interval - robust-count Revision Changes Path 1.77 +23 -1; commitid: 24e429d81597ea6; xorp/RELEASE_NOTES 1.13 +32 -1; commitid: 24e429d81597ea6; xorp/docs/user_manual/config_overview.tex 1.16 +55 -7; commitid: 24e429d81597ea6; xorp/docs/user_manual/igmp.tex 1.29 +9 -1; commitid: 24e429d81597ea6; xorp/rtrmgr/config.boot.sample _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 09:36:29 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Jun 2005 02:37:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j519b2P3025955 for ; Wed, 1 Jun 2005 02:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519b2K9045922 for ; Wed, 1 Jun 2005 02:37:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519b2lk023861; Wed, 1 Jun 2005 02:37:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519aTlk023842 for ; Wed, 1 Jun 2005 02:36:29 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519aTrT045910 for ; Wed, 1 Jun 2005 02:36:29 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j519aTgT000762 for ; Wed, 1 Jun 2005 02:36:29 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j519aTZC000761 for xorp-cvs@icir.org; Wed, 1 Jun 2005 09:36:29 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010936.j519aTZC000761@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 09:36:29 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-01 09:36:29 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Document the following new MLD/IGMP configuration options: - query-interval - query-last-member-interval - query-response-interval - robust-count Revision Changes Path 1.49 +29 -4; commitid: 2c6429d81997ea6; www/getting_started.html 1.23 +28 -3; commitid: 2c6429d81997ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 09:45:50 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Jun 2005 02:46:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j519k2dI027776 for ; Wed, 1 Jun 2005 02:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519k21t046112 for ; Wed, 1 Jun 2005 02:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519k2lk024071; Wed, 1 Jun 2005 02:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j519jolk024063 for ; Wed, 1 Jun 2005 02:45:50 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j519jorP046108 for ; Wed, 1 Jun 2005 02:45:50 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j519jo0X001152 for ; Wed, 1 Jun 2005 02:45:50 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j519joMe001151 for xorp-cvs@icir.org; Wed, 1 Jun 2005 09:45:50 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506010945.j519joMe001151@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 09:45:50 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 09:45:50 UTC XORP CVS repository Modified files: docs/user_manual igmp.tex Log message: Formatting nits. Revision Changes Path 1.17 +15 -3; commitid: 462429d83ca7ea6; xorp/docs/user_manual/igmp.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Wed Jun 1 23:45:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 01 Jun 2005 16:46:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j51Nk23l098345 for ; Wed, 1 Jun 2005 16:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j51Nk27I057682 for ; Wed, 1 Jun 2005 16:46:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j51Nk2lk024989; Wed, 1 Jun 2005 16:46:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j51Njklk024978 for ; Wed, 1 Jun 2005 16:45:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j51NjkRj057679 for ; Wed, 1 Jun 2005 16:45:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j51NjkUZ044127 for ; Wed, 1 Jun 2005 16:45:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j51NjkSH044126 for xorp-cvs@icir.org; Wed, 1 Jun 2005 23:45:46 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506012345.j51NjkSH044126@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 1 Jun 2005 23:45:46 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-01 23:45:46 UTC XORP CVS repository Modified files: mrt random.c random.h Log message: * Update the local copy of the random(3) implementation by using the NetBSD version instead of the FreeBSD version. Hopefully, the NetBSD version is more portable and should fix compilation problem on MIPS and other platforms that are sensitive to cast alignment. * Now that most of the code is replaced, update the copyright message as well. Revision Changes Path 1.2 +155 -138; commitid: abf8429e47ed7ea6; xorp/mrt/random.c 1.2 +15 -30; commitid: abf8429e47ed7ea6; xorp/mrt/random.h _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Thu Jun 2 18:37:20 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Jun 2005 11:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j52Ic2nO031826 for ; Thu, 2 Jun 2005 11:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52Ic2H8076658 for ; Thu, 2 Jun 2005 11:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52Ic2lk027731; Thu, 2 Jun 2005 11:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52IbLlk027704 for ; Thu, 2 Jun 2005 11:37:21 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52IbKeW076648 for ; Thu, 2 Jun 2005 11:37:20 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j52IbKMk094035 for ; Thu, 2 Jun 2005 11:37:20 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j52IbKE5094034 for xorp-cvs@icir.org; Thu, 2 Jun 2005 18:37:20 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506021837.j52IbKE5094034@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 2 Jun 2005 18:37:20 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-02 18:37:20 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Use the domain-wide address on an interface as the primary address only in case of IPv4. In case of IPv6 the PIM-SM spec is clear that all multicast messages must be originated from the link-local address of the interface. Revision Changes Path 1.55 +18 -11; commitid: 16f14429f512b7ea6; xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Thu Jun 2 18:59:14 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Jun 2005 12:00:08 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j52J08Jg036145 for ; Thu, 2 Jun 2005 12:00:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52J0815076919 for ; Thu, 2 Jun 2005 12:00:08 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52J05lk028442; Thu, 2 Jun 2005 12:00:05 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52IxElk028401 for ; Thu, 2 Jun 2005 11:59:14 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52IxE42076896 for ; Thu, 2 Jun 2005 11:59:14 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j52IxEHJ094429 for ; Thu, 2 Jun 2005 11:59:14 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j52IxEvC094428 for xorp-cvs@icir.org; Thu, 2 Jun 2005 18:59:14 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506021859.j52IxEvC094428@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/user_manual Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 2 Jun 2005 18:59:14 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-02 18:59:14 UTC XORP CVS repository Modified files: docs/user_manual config_overview.tex igmp.tex pimsm.tex Log message: Add the following info to the configuration documentation: * In case of IGMP each enabled interface must have a valid IPv4 address. * In case of MLD each enabled interface must have a valid IPv6 link-local address. * In case of PIM-SM for IPv4 each enabled interface must have a valid IPv4 address. * In case of PIM-SM for IPv6 each enabled interface must have a valid link-local and a valid domain-wide IPv6 addresses. Revision Changes Path 1.14 +8 -1; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/config_overview.tex 1.18 +15 -4; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/igmp.tex 1.21 +13 -8; commitid: 170ab429f569e7ea6; xorp/docs/user_manual/pimsm.tex _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Thu Jun 2 18:59:36 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Thu, 02 Jun 2005 12:00:13 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j52J0D3Z036199 for ; Thu, 2 Jun 2005 12:00:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52J0DVs076925 for ; Thu, 2 Jun 2005 12:00:13 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52J0Dlk028456; Thu, 2 Jun 2005 12:00:13 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j52Ixblk028411 for ; Thu, 2 Jun 2005 11:59:37 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j52Ixb0F076902 for ; Thu, 2 Jun 2005 11:59:37 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j52Ixa3S094511 for ; Thu, 2 Jun 2005 11:59:36 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j52Ixafj094510 for xorp-cvs@icir.org; Thu, 2 Jun 2005 18:59:36 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506021859.j52Ixafj094510@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: www www/html_src Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Thu, 2 Jun 2005 18:59:36 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: www Changes by: pavlin@xorpc.icir.org 2005-06-02 18:59:36 UTC XORP CVS repository Modified files: . getting_started.html html_src getting_started.html Log message: Add the following info to the configuration documentation: * In case of IGMP each enabled interface must have a valid IPv4 address. * In case of MLD each enabled interface must have a valid IPv6 link-local address. * In case of PIM-SM for IPv4 each enabled interface must have a valid IPv4 address. * In case of PIM-SM for IPv6 each enabled interface must have a valid link-local and a valid domain-wide IPv6 addresses. Revision Changes Path 1.50 +9 -1; commitid: 170fb429f57137ea6; www/getting_started.html 1.24 +8 -0; commitid: 170fb429f57137ea6; www/html_src/getting_started.html _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:34 2005 Subject: No subject Fri Jun 3 19:00:06 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 12:02:49 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53J2nIE049990 for ; Fri, 3 Jun 2005 12:02:49 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J2nEW099300 for ; Fri, 3 Jun 2005 12:02:49 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J2nlk008792; Fri, 3 Jun 2005 12:02:49 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J06lk008695 for ; Fri, 3 Jun 2005 12:00:06 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J06nc099271 for ; Fri, 3 Jun 2005 12:00:06 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53J06gO080371 for ; Fri, 3 Jun 2005 12:00:06 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53J066N080370 for xorp-cvs@icir.org; Fri, 3 Jun 2005 19:00:06 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506031900.j53J066N080370@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 19:00:06 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:00:06 UTC XORP CVS repository Modified files: mld6igmp igmp_proto.cc mld6_proto.cc Log message: Set the querier's address using the appropriate method instead of directly assigning the value. Revision Changes Path 1.33 +2 -2; commitid: 139d042a0a89f7ea6; xorp/mld6igmp/igmp_proto.cc 1.36 +2 -2; commitid: 139d042a0a89f7ea6; xorp/mld6igmp/mld6_proto.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 19:02:33 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 12:04:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53J41aJ050251 for ; Fri, 3 Jun 2005 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J41QJ099318 for ; Fri, 3 Jun 2005 12:04:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J41lk008861; Fri, 3 Jun 2005 12:04:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J2Xlk008772 for ; Fri, 3 Jun 2005 12:02:33 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J2Xoq099298 for ; Fri, 3 Jun 2005 12:02:33 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53J2XF7080502 for ; Fri, 3 Jun 2005 12:02:33 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53J2X1t080501 for xorp-cvs@icir.org; Fri, 3 Jun 2005 19:02:33 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506031902.j53J2X1t080501@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 19:02:33 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:02:33 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_vif.cc Log message: * Refactor the implementation of Mld6igmpVif::update_primary_address() so now it does better job in updating the primary address and the querier's address. * Set the querier's address using the appropriate method instead of directly assigning the value. Revision Changes Path 1.40 +32 -11; commitid: 13a4142a0a8d97ea6; xorp/mld6igmp/mld6igmp_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 19:04:44 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 12:05:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53J52Pj050466 for ; Fri, 3 Jun 2005 12:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J52P5099331 for ; Fri, 3 Jun 2005 12:05:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J52lk008906; Fri, 3 Jun 2005 12:05:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J4ilk008888 for ; Fri, 3 Jun 2005 12:04:44 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J4iu1099322 for ; Fri, 3 Jun 2005 12:04:44 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53J4ipF080581 for ; Fri, 3 Jun 2005 12:04:44 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53J4iXS080580 for xorp-cvs@icir.org; Fri, 3 Jun 2005 19:04:44 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506031904.j53J4iXS080580@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mld6igmp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 19:04:44 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:04:44 UTC XORP CVS repository Modified files: mld6igmp mld6igmp_config.cc mld6igmp_node.hh xrl_mld6igmp_node.cc Log message: Update the mechanism for updating the interfaces info so now it does better job when interface addresses are added or deleted (similar to the PIM-SM implementation). Revision Changes Path 1.8 +101 -1; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/mld6igmp_config.cc 1.25 +9 -1; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/mld6igmp_node.hh 1.48 +34 -30; commitid: 13aa142a0a96c7ea6; xorp/mld6igmp/xrl_mld6igmp_node.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 19:06:12 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 12:07:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53J713s050854 for ; Fri, 3 Jun 2005 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J717o099354 for ; Fri, 3 Jun 2005 12:07:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J71lk008973; Fri, 3 Jun 2005 12:07:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J6Clk008949 for ; Fri, 3 Jun 2005 12:06:12 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J6CgB099345 for ; Fri, 3 Jun 2005 12:06:12 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53J6Cmg080680 for ; Fri, 3 Jun 2005 12:06:12 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53J6CEv080679 for xorp-cvs@icir.org; Fri, 3 Jun 2005 19:06:12 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506031906.j53J6CEv080679@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 19:06:12 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:06:12 UTC XORP CVS repository Modified files: pim pim_vif.cc Log message: Refactor the implementation of PimVif::update_primary_and_domain_wide_address() so now it does better job in updating the primary address, the domain-wide address and the DR address. Revision Changes Path 1.56 +32 -11; commitid: 13b0842a0a9ee7ea6; xorp/pim/pim_vif.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 19:07:30 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 12:08:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53J81Hn051055 for ; Fri, 3 Jun 2005 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J81OQ099363 for ; Fri, 3 Jun 2005 12:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J81lk009016; Fri, 3 Jun 2005 12:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53J7Ulk009001 for ; Fri, 3 Jun 2005 12:07:30 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53J7UMM099361 for ; Fri, 3 Jun 2005 12:07:30 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53J7UTB080777 for ; Fri, 3 Jun 2005 12:07:30 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53J7UGX080776 for xorp-cvs@icir.org; Fri, 3 Jun 2005 19:07:30 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506031907.j53J7UGX080776@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 19:07:30 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 19:07:30 UTC XORP CVS repository Modified files: pim pim_config.cc pim_node.cc pim_node.hh Log message: Update the mechanism for updating the interface addresses, so now it sends the appropriate PIM Hello messages when the interface addresses are added or deleted. Revision Changes Path 1.41 +33 -4; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_config.cc 1.72 +17 -5; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_node.cc 1.57 +7 -1; commitid: 13b6542a0aa3e7ea6; xorp/pim/pim_node.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 21:33:07 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 14:34:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53LY3x3079813 for ; Fri, 3 Jun 2005 14:34:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53LY3kU001159 for ; Fri, 3 Jun 2005 14:34:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53LY3lk013542; Fri, 3 Jun 2005 14:34:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53LX7lk013483 for ; Fri, 3 Jun 2005 14:33:07 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53LX75P001151 for ; Fri, 3 Jun 2005 14:33:07 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53LX7oI008990 for ; Fri, 3 Jun 2005 14:33:07 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53LX74U008989 for xorp-cvs@icir.org; Fri, 3 Jun 2005 21:33:07 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506032133.j53LX74U008989@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 21:33:07 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 21:33:07 UTC XORP CVS repository Modified files: libxipc xrl_router.cc . RELEASE_NOTES Log message: * Add support to set the finder server address from the XORP_FINDER_SERVER_ADDRESS environmental variable. This variable in combination with the existing XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes on different machines. * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable to XORP_FINDER_SERVER_PORT (to reflect better its purpose). Note that we cannot set the client port, because it is automatically assigned/selected by the sockets. * Add release notes. Revision Changes Path 1.78 +6 -3; commitid: 229b42a0cb887ea6; xorp/RELEASE_NOTES 1.47 +26 -8; commitid: 229b42a0cb887ea6; xorp/libxipc/xrl_router.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 22:30:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 15:31:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53MV2Sm091022 for ; Fri, 3 Jun 2005 15:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MV2mI001726 for ; Fri, 3 Jun 2005 15:31:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53MV2lk015173; Fri, 3 Jun 2005 15:31:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53MUhlk015151 for ; Fri, 3 Jun 2005 15:30:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MUhn8001720 for ; Fri, 3 Jun 2005 15:30:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53MUhRv010678 for ; Fri, 3 Jun 2005 15:30:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53MUhEr010677 for xorp-cvs@icir.org; Fri, 3 Jun 2005 22:30:43 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506032230.j53MUhEr010677@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 22:30:43 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:30:43 UTC XORP CVS repository Modified files: . configure configure.in Log message: Conditionally add the user-specified flags that must be after all other compiler flags. Those are specified in the "CFLAGS_END" and "CXXFLAGS_END" environmental variables (for the C and C++ compiler respectively). Revision Changes Path 1.146 +155 -0; commitid: 298142a0d9c77ea6; xorp/configure 1.136 +12 -2; commitid: 298142a0d9c77ea6; xorp/configure.in _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 22:30:59 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 15:31:07 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53MV7KX091061 for ; Fri, 3 Jun 2005 15:31:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MV7Ke001731 for ; Fri, 3 Jun 2005 15:31:07 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53MV7lk015185; Fri, 3 Jun 2005 15:31:07 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53MUxlk015164 for ; Fri, 3 Jun 2005 15:30:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MUxP2001723 for ; Fri, 3 Jun 2005 15:30:59 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53MUxTn010721 for ; Fri, 3 Jun 2005 15:30:59 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53MUxsr010720 for xorp-cvs@icir.org; Fri, 3 Jun 2005 22:30:59 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506032230.j53MUxsr010720@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mibs Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 22:30:59 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:30:59 UTC XORP CVS repository Modified files: mibs configure Log message: Regenerate. Revision Changes Path 1.15 +1 -1; commitid: 29c742a0da1e7ea6; xorp/mibs/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 22:40:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 15:41:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53Mf2FD093010 for ; Fri, 3 Jun 2005 15:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53Mf2xS001875 for ; Fri, 3 Jun 2005 15:41:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53Mf2lk015515; Fri, 3 Jun 2005 15:41:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53Meklk015503 for ; Fri, 3 Jun 2005 15:40:46 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MekOX001865 for ; Fri, 3 Jun 2005 15:40:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53Mekp3010985 for ; Fri, 3 Jun 2005 15:40:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53Mekop010984 for xorp-cvs@icir.org; Fri, 3 Jun 2005 22:40:46 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506032240.j53Mekop010984@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 22:40:46 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:40:46 UTC XORP CVS repository Modified files: . RELEASE_NOTES Log message: Add a release note for the new "CFLAGS_END" and "CXXFLAGS_END" user environmental flags. Revision Changes Path 1.79 +6 -1; commitid: 2ac542a0dc5c7ea6; xorp/RELEASE_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Fri Jun 3 22:50:46 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Fri, 03 Jun 2005 15:51:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j53Mp2mr094949 for ; Fri, 3 Jun 2005 15:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53Mp2EW001976 for ; Fri, 3 Jun 2005 15:51:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53Mp2lk015789; Fri, 3 Jun 2005 15:51:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j53Mollk015769 for ; Fri, 3 Jun 2005 15:50:47 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j53MokDq001972 for ; Fri, 3 Jun 2005 15:50:46 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j53Mok29011217 for ; Fri, 3 Jun 2005 15:50:46 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j53Mokrc011216 for xorp-cvs@icir.org; Fri, 3 Jun 2005 22:50:46 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506032250.j53Mokrc011216@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Fri, 3 Jun 2005 22:50:46 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-03 22:50:46 UTC XORP CVS repository Modified files: . BUILD_NOTES Log message: Add compilation notes for the following environmental variables: CC, CXX, CFLAGS, CXXFLAGS, CFLAGS_END, CXXFLAGS_END. Revision Changes Path 1.30 +16 -1; commitid: 2ba542a0de9d7ea6; xorp/BUILD_NOTES _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Sat Jun 04 10:13:31 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Jun 2005 02:14:03 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j549E33J024806 for ; Sat, 4 Jun 2005 02:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j549E3Rf011336 for ; Sat, 4 Jun 2005 02:14:03 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j549E2lk029237; Sat, 4 Jun 2005 02:14:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j549Delk029229 for ; Sat, 4 Jun 2005 02:13:40 -0700 (PDT) Received: from vulture.xorp.org ([81.187.200.4]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j549Dd9G011320; Sat, 4 Jun 2005 02:13:39 -0700 (PDT) (envelope-from mjh@vulture.xorp.org) Received: from vulture.xorp.org (localhost [127.0.0.1]) by vulture.xorp.org (8.13.1/8.13.1) with ESMTP id j549DVjl048864; Sat, 4 Jun 2005 10:13:31 +0100 (BST) (envelope-from mjh@vulture.xorp.org) From: Mark Handley To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp In-reply-to: Your message of "Fri, 03 Jun 2005 21:33:07 GMT." <200506032133.j53LX74U008989@xorpc.icir.org> Message-ID: <48863.1117876411@vulture.xorp.org> Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 04 Jun 2005 10:13:31 +0100 >Log message: > * Add support to set the finder server address from the > XORP_FINDER_SERVER_ADDRESS environmental variable. > This variable in combination with the existing > XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes > on different machines. > > * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable > to XORP_FINDER_SERVER_PORT (to reflect better its purpose). > Note that we cannot set the client port, because it is automatically > assigned/selected by the sockets. I'm confused. Are you saying that to rib (say) bgp on a different machine, I need to set XORP_FINDER_CLIENT_ADDRESS and XORP_FINDER_SERVER_PORT to communicate with the remote finder? Surely they should be consistent. - Mark _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Sat Jun 4 17:58:35 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Jun 2005 10:59:04 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j54Hx4kI028869 for ; Sat, 4 Jun 2005 10:59:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j54Hx4Vv019434 for ; Sat, 4 Jun 2005 10:59:04 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j54Hx3lk012001; Sat, 4 Jun 2005 10:59:03 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j54HwZlk011987 for ; Sat, 4 Jun 2005 10:58:35 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j54HwZN2019432 for ; Sat, 4 Jun 2005 10:58:35 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j54HwZSi075340 for ; Sat, 4 Jun 2005 10:58:35 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j54HwZBZ075339 for xorp-cvs@icir.org; Sat, 4 Jun 2005 17:58:35 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506041758.j54HwZBZ075339@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 4 Jun 2005 17:58:35 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-04 17:58:35 UTC XORP CVS repository Modified files: libxipc finder_server.cc Log message: Consider the environmental variables XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT when binding the finder to a local address and port. Previously, the only option was to use the "-i " and "-p " command line options (to libxipc/xorp_finder and rtrmgr/xorp_rtrmgr) to add the interface addresses and the port we want to listen to. Revision Changes Path 1.12 +43 -2; commitid: 1254542a1e9007ea6; xorp/libxipc/finder_server.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Sat Jun 04 11:07:49 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Sat, 04 Jun 2005 11:08:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j54I813E030854 for ; Sat, 4 Jun 2005 11:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j54I81vH019525 for ; Sat, 4 Jun 2005 11:08:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j54I81lk012211; Sat, 4 Jun 2005 11:08:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j54I7plk012205 for ; Sat, 4 Jun 2005 11:07:51 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j54I7pmH019523; Sat, 4 Jun 2005 11:07:51 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.11) with ESMTP id j54I7nof012864; Sat, 4 Jun 2005 11:07:49 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200506041807.j54I7nof012864@possum.icir.org> To: Mark Handley cc: Pavlin Radoslavov , xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/libxipc xorp In-Reply-To: Message from Mark Handley of "Sat, 04 Jun 2005 10:13:31 BST." <48863.1117876411@vulture.xorp.org> From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Sat, 04 Jun 2005 11:07:49 -0700 > > >Log message: > > * Add support to set the finder server address from the > > XORP_FINDER_SERVER_ADDRESS environmental variable. > > This variable in combination with the existing > > XORP_FINDER_CLIENT_ADDRESS can be used to run the XORP processes > > on different machines. > > > > * Rename the existing XORP_FINDER_CLIENT_PORT environmental variable > > to XORP_FINDER_SERVER_PORT (to reflect better its purpose). > > Note that we cannot set the client port, because it is automatically > > assigned/selected by the sockets. > > I'm confused. Are you saying that to rib (say) bgp on a different > machine, I need to set XORP_FINDER_CLIENT_ADDRESS and > XORP_FINDER_SERVER_PORT to communicate with the remote finder? Surely > they should be consistent. After the change XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT specify the address and the port of the finder. XORP_FINDER_CLIENT_ADDRESS is the address that the client will choose to communicate with the finder. This also will be the address that the finder will associate with that client. Typically, if you want to communicate with a remote finder you need to set both XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_CLIENT_ADDRESS on the client side: - The server address needs to be set so the client knows where to find the finder. - The client address needs to be set so the client uses that address instead of the default 127.0.0.1 to listen for messages from the finder, and also to create its own instance name. That instance name is sent to the finder and the finder decodes it to obtain the client's address (in other words the client has to explicitly tell the finder its own address). The XORP_FINDER_SERVER_PORT is optional and is an additional clarifier to XORP_FINDER_SERVER_ADDRESS in case the finder is not listening on the default port. On the finder side, you have to tell the finder to listen to a routable address (in addition to the default 127.0.0.1). For that you have to start the libxipc/xorp_finder or the rtrmgr/xorp_rtrmgr binaries with the "-i " command line option (and the "-p " option to change the default port as well); see FinderServer::add_binding(). Though, now that I think of it, it makes sense that the finder itself also should consider the XORP_FINDER_SERVER_ADDRESS and XORP_FINDER_SERVER_PORT environmental variables when binding to local interface addresses. I just committed a modification to the FinderServer constructor that does this, so we are not forced to use the "-i " and "-p " command-line options to xorp_finder xorp_rtrmgr. Pavlin _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 15:25:25 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 08:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56FQ2QJ094098 for ; Mon, 6 Jun 2005 08:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56FQ23L059356 for ; Mon, 6 Jun 2005 08:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56FQ2lk013251; Mon, 6 Jun 2005 08:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56FPPlk013233 for ; Mon, 6 Jun 2005 08:25:25 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56FPPmK059344 for ; Mon, 6 Jun 2005 08:25:25 -0700 (PDT) (envelope-from bms@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56FPPkU050947 for ; Mon, 6 Jun 2005 08:25:25 -0700 (PDT) (envelope-from bms@xorpc.icir.org) Received: (from bms@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56FPPtM050946 for xorp-cvs@icir.org; Mon, 6 Jun 2005 15:25:25 GMT (envelope-from bms) From: Bruce Simpson Message-Id: <200506061525.j56FPPtM050946@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 15:25:25 GMT CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: bms@xorpc.icir.org 2005-06-06 15:25:25 UTC XORP CVS repository Modified files: mrt random.c Log message: Add explicit include file sentinel for to fix build on platforms which do not have this header. Revision Changes Path 1.3 +5 -1; commitid: c6bc42a46ac07ea6; xorp/mrt/random.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 18:15:43 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 11:16:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56IG1GF029805 for ; Mon, 6 Jun 2005 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56IG1TX061534 for ; Mon, 6 Jun 2005 11:16:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56IG1lk018971; Mon, 6 Jun 2005 11:16:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56IFhlk018963 for ; Mon, 6 Jun 2005 11:15:43 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56IFhqv061522 for ; Mon, 6 Jun 2005 11:15:43 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56IFhEl054560 for ; Mon, 6 Jun 2005 11:15:43 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56IFhVM054559 for xorp-cvs@icir.org; Mon, 6 Jun 2005 18:15:43 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506061815.j56IFhVM054559@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 18:15:43 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 18:15:43 UTC XORP CVS repository Modified files: mrt random.c Log message: * Don't "#include ", because it is not needed * Remove duplicated "#include "libxorp/xorp.h"" Revision Changes Path 1.4 +1 -8; commitid: d4e442a492997ea6; xorp/mrt/random.c _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 20:25:13 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 13:26:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56KQ2r2057377 for ; Mon, 6 Jun 2005 13:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KQ2de062970 for ; Mon, 6 Jun 2005 13:26:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KQ2lk024476; Mon, 6 Jun 2005 13:26:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KPDlk024459 for ; Mon, 6 Jun 2005 13:25:13 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KPD3f062964 for ; Mon, 6 Jun 2005 13:25:13 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56KPDZP059573 for ; Mon, 6 Jun 2005 13:25:13 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56KPD8E059572 for xorp-cvs@icir.org; Mon, 6 Jun 2005 20:25:13 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506062025.j56KPD8E059572@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 20:25:13 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:25:13 UTC XORP CVS repository Modified files: fea fticonfig_entry_set_rtsock.cc Log message: Add extra brackets inside the body of macro LONG_ROUNDUP_SIZEOF() Revision Changes Path 1.30 +3 -3; commitid: e87a42a4b1037ea6; xorp/fea/fticonfig_entry_set_rtsock.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 20:26:32 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 13:27:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56KR1HJ057586 for ; Mon, 6 Jun 2005 13:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KR1tI062979 for ; Mon, 6 Jun 2005 13:27:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KR1lk024535; Mon, 6 Jun 2005 13:27:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KQWlk024516 for ; Mon, 6 Jun 2005 13:26:32 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KQWdT062973 for ; Mon, 6 Jun 2005 13:26:32 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56KQWcm059635 for ; Mon, 6 Jun 2005 13:26:32 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56KQWmH059634 for xorp-cvs@icir.org; Mon, 6 Jun 2005 20:26:32 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506062026.j56KQWmH059634@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 20:26:32 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:26:32 UTC XORP CVS repository Modified files: libxorp heap.cc Log message: Fix the implementation of SET_OFFSET() and RESET_OFFSET() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.13 +7 -3; commitid: e8d342a4b13c7ea6; xorp/libxorp/heap.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 20:27:39 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 13:28:01 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56KS1Bo057787 for ; Mon, 6 Jun 2005 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KS1kV062992 for ; Mon, 6 Jun 2005 13:28:01 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KS1lk024577; Mon, 6 Jun 2005 13:28:01 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KRdlk024568 for ; Mon, 6 Jun 2005 13:27:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KRdGr062988 for ; Mon, 6 Jun 2005 13:27:39 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56KRdAi059695 for ; Mon, 6 Jun 2005 13:27:39 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56KRdT1059694 for xorp-cvs@icir.org; Mon, 6 Jun 2005 20:27:39 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506062027.j56KRdT1059694@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 20:27:39 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:27:39 UTC XORP CVS repository Modified files: rip xrl_target_common.hh Log message: Fix the implementation of PORT_TIMER_GET_HANDLER() and PORT_TIMER_SET_HANDLER() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.20 +7 -3; commitid: e90442a4b1927ea6; xorp/rip/xrl_target_common.hh _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:35 2005 Subject: No subject Mon Jun 6 20:29:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 13:30:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56KU2c5058169 for ; Mon, 6 Jun 2005 13:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KU2BW063030 for ; Mon, 6 Jun 2005 13:30:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KU1lk024649; Mon, 6 Jun 2005 13:30:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56KT4lk024619 for ; Mon, 6 Jun 2005 13:29:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56KT4FA063004 for ; Mon, 6 Jun 2005 13:29:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56KT4rN059765 for ; Mon, 6 Jun 2005 13:29:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56KT4nN059764 for xorp-cvs@icir.org; Mon, 6 Jun 2005 20:29:04 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506062029.j56KT4nN059764@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp/policy/common Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 20:29:04 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 20:29:04 UTC XORP CVS repository Modified files: policy/common register_operations.cc Log message: Fix the implementation of a number of ADD_FOO() macros by wrapping the body of the macros in "do { ... } while (0)" Requested by: Bruce M Simpson Revision Changes Path 1.3 +69 -59; commitid: e94642a4b1da7ea6; xorp/policy/common/register_operations.cc _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:36 2005 Subject: No subject Mon Jun 6 21:21:04 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Mon, 06 Jun 2005 14:22:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j56LM2Kg068476 for ; Mon, 6 Jun 2005 14:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56LM2Rc063521 for ; Mon, 6 Jun 2005 14:22:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56LM2lk026725; Mon, 6 Jun 2005 14:22:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j56LL4lk026679 for ; Mon, 6 Jun 2005 14:21:04 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j56LL4N0063511 for ; Mon, 6 Jun 2005 14:21:04 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j56LL4qv060673 for ; Mon, 6 Jun 2005 14:21:04 -0700 (PDT) (envelope-from pavlin@xorpc.icir.org) Received: (from pavlin@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j56LL4gn060672 for xorp-cvs@icir.org; Mon, 6 Jun 2005 21:21:04 GMT (envelope-from pavlin) From: Pavlin Radoslavov Message-Id: <200506062121.j56LL4gn060672@xorpc.icir.org> To: xorp-cvs@icir.org X-XORP-CVS-Branch: HEAD Subject: [Xorp-cvs] XORP cvs commit: xorp xorp/cli/libtecla xorp/config Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Mon, 6 Jun 2005 21:21:04 GMT CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-06 21:21:04 UTC XORP CVS repository Modified files: . configure cli/libtecla config.guess config.sub config config.guess config.sub Log message: Update config.guess and config.sub to the lastest versions from the following URLs: http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub Submitted by: Kristian Larsson Revision Changes Path 1.3 +353 -242; commitid: ec7842a4bd6f7ea6; xorp/cli/libtecla/config.guess 1.3 +136 -48; commitid: ec7842a4bd6f7ea6; xorp/cli/libtecla/config.sub 1.4 +353 -242; commitid: ec7842a4bd6f7ea6; xorp/config/config.guess 1.4 +136 -48; commitid: ec7842a4bd6f7ea6; xorp/config/config.sub 1.147 +1 -1; commitid: ec7842a4bd6f7ea6; xorp/configure _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From bogus@does.not.exist.com Wed Jun 15 17:09:31 2005 From: bogus@does.not.exist.com () Date: Wed Jun 15 17:16:36 2005 Subject: No subject Wed Jun 08 08:37:16 2005 Return-Path: xorp-cvs-admin@icir.org Delivery-Date: Wed, 08 Jun 2005 08:38:02 -0700 Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by tigger.icir.org (8.12.11/8.12.11) with ESMTP id j58Fc2rl082012 for ; Wed, 8 Jun 2005 08:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j58Fc2LC091484 for ; Wed, 8 Jun 2005 08:38:02 -0700 (PDT) (envelope-from xorp-cvs-admin@icir.org) Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j58Fc2Cl015951; Wed, 8 Jun 2005 08:38:02 -0700 (PDT) Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14]) by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id j58FbGCl015928 for ; Wed, 8 Jun 2005 08:37:16 -0700 (PDT) Received: from possum.icir.org (possum.icir.org [192.150.187.67]) by wyvern.icir.org (8.12.11/8.12.11) with ESMTP id j58FbGGA091478; Wed, 8 Jun 2005 08:37:16 -0700 (PDT) (envelope-from pavlin@icir.org) Received: from possum.icir.org (localhost [127.0.0.1]) by possum.icir.org (8.12.11/8.12.11) with ESMTP id j58FbGiX096868; Wed, 8 Jun 2005 08:37:16 -0700 (PDT) (envelope-from pavlin@possum.icir.org) Message-Id: <200506081537.j58FbGiX096868@possum.icir.org> To: Pavlin Radoslavov cc: xorp-cvs@icir.org Subject: Re: [Xorp-cvs] XORP cvs commit: xorp/pim In-Reply-To: Message from Pavlin Radoslavov of "Tue, 26 Apr 2005 01:15:42 GMT." <200504260115.j3Q1Fg5J030388@xorpc.icir.org> From: Pavlin Radoslavov Sender: xorp-cvs-admin@icir.org Errors-To: xorp-cvs-admin@icir.org X-BeenThere: xorp-cvs@icir.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Mailing list for XORP CVS commit messages List-Unsubscribe: , List-Archive: Date: Wed, 08 Jun 2005 08:37:16 -0700 [Just for the record: a correction of the log message below] [Error found by "edrt" ] > CVSROOT: /usr/local/share/doc/apache/cvs > Module name: xorp > Changes by: pavlin@xorpc.icir.org 2005-04-26 01:15:42 UTC > > XORP CVS repository > > > Modified files: > pim pim_mre_assert.cc > > Log message: > Update the implementation of the (*,G) Assert state machine > to match the specification in the newest newest -11 I-D spec: > > * Check the RPTbit when in "I am Assert Loser" state to match > the following events as described in Figure 11: > "Receive acceptable assert from current winner with RPTbit clear [A2]" The above message should say "with RPTbit set" instead of "with RPTbit clear". The code modification itself is correct. Pavlin > "Receive preferred assert with RPTbit set [A2]" > > Note that the above text hasn't changed since the -05 I-D, but > the original implementation didn't consider the RPTbit because > the "with RPTbit set" was only in Figure 11, but not in the > corresponding table or the text that describes the events. > This mismatch is still in the -11 I-D spec. > > Revision Changes Path > 1.32 +6 -4; commitid: 7644426d94d67ea6; xorp/pim/pim_mre_assert.cc > _______________________________________________ > Xorp-cvs mailing list > Xorp-cvs@icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs _______________________________________________ Xorp-cvs mailing list Xorp-cvs@icir.org http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs From pavlin@icir.org Thu Jun 16 20:40:40 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 16 Jun 2005 19:40:40 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Message-ID: <200506161940.j5GJeedl095890@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-16 19:40:40 UTC XORP CVS repository Modified files: pim TODO Log message: Add implementation-related TODO entry. Revision Changes Path 1.116 +5 -1; commitid: 1767942b1d5ad7ea6; xorp/pim/TODO From pavlin@icir.org Thu Jun 16 20:40:03 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 16 Jun 2005 19:40:03 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506161940.j5GJe3to095828@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-16 19:40:02 UTC XORP CVS repository Modified files: fea TODO Log message: Add MFEA-related TODO entry. Revision Changes Path 1.31 +4 -1; commitid: 1763842b1d58b7ea6; xorp/fea/TODO From mjh@icir.org Fri Jun 17 00:12:44 2005 From: mjh@icir.org (Mark Handley) Date: Thu, 16 Jun 2005 23:12:44 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506162312.j5GNCiBN097992@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-16 23:12:44 UTC XORP CVS repository Modified files: rtrmgr cli.cc template_tree.cc template_tree_node.cc template_tree_node.hh Log message: Fix bug number 136, and add improved error reporting when the user types something that fails a type check. Revision Changes Path 1.65 +21 -5; commitid: 17ea542b207277ea6; xorp/rtrmgr/cli.cc 1.27 +3 -2; commitid: 17ea542b207277ea6; xorp/rtrmgr/template_tree.cc 1.37 +90 -24; commitid: 17ea542b207277ea6; xorp/rtrmgr/template_tree_node.cc 1.25 +11 -11; commitid: 17ea542b207277ea6; xorp/rtrmgr/template_tree_node.hh From mjh@icir.org Fri Jun 17 00:29:22 2005 From: mjh@icir.org (Mark Handley) Date: Thu, 16 Jun 2005 23:29:22 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <200506162329.j5GNTMva098137@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-16 23:29:22 UTC XORP CVS repository Modified files: libxorp ipnet.hh Log message: Improve error checking in initialization of IPNet. Previously "10.0.0.0/xxx" was accepted as a valid IPv4Net. Revision Changes Path 1.14 +8 -1; commitid: 17f4042b20af57ea6; xorp/libxorp/ipnet.hh From pavlin@icir.org Fri Jun 17 21:27:21 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 17 Jun 2005 20:27:21 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506172027.j5HKRL99082570@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-17 20:27:21 UTC XORP CVS repository Modified files: rtrmgr util.cc util.hh Log message: Add a new method strip_empty_spaces() that strips the heading and trailing empty spaces from a string. Revision Changes Path 1.12 +23 -1; commitid: 1426242b332067ea6; xorp/rtrmgr/util.cc 1.7 +11 -1; commitid: 1426242b332067ea6; xorp/rtrmgr/util.hh From pavlin@icir.org Fri Jun 17 21:29:51 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 17 Jun 2005 20:29:51 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506172029.j5HKTpGq082689@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-17 20:29:51 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc conf_tree_node.hh Log message: * Fix a bug in ConfigTreeNode::set_variable() so now it searches properly the hierarchy for a varname node * Const-ify one of the arguments of ConfigTreeNode::set_variable() * Nits Revision Changes Path 1.64 +7 -8; commitid: 142c142b3326e7ea6; xorp/rtrmgr/conf_tree_node.cc 1.33 +3 -3; commitid: 142c142b3326e7ea6; xorp/rtrmgr/conf_tree_node.hh From pavlin@icir.org Fri Jun 17 21:31:44 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 17 Jun 2005 20:31:44 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506172031.j5HKViVg082816@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-17 20:31:44 UTC XORP CVS repository Modified files: rtrmgr op_commands.yy y.opcmd_tab.cc Log message: Refactor the implementation of strip_quotes_and_empty_space() so now it uses existing functions in util.{hh,cc} Revision Changes Path 1.11 +4 -14; commitid: 1436442b3330f7ea6; xorp/rtrmgr/op_commands.yy 1.12 +23 -33; commitid: 1436442b3330f7ea6; xorp/rtrmgr/y.opcmd_tab.cc From pavlin@icir.org Fri Jun 17 21:43:31 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 17 Jun 2005 20:43:31 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506172043.j5HKhVYo083110@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-17 20:43:31 UTC XORP CVS repository Modified files: rtrmgr module_manager.cc Log message: * Modify the child_handler() SIGCHLD signal handler so it silently ignores signals from child processes that are not in the map with module PIDs. * Modify the handling of modules so now we can deal with modules even if they are defined with empty execution paths. It could be useful to define a module with an empty execution path if (a) we know that the module is already running, or (b) if we are going to use some alternative mechanism to start a module. * Minor nits. Revision Changes Path 1.44 +35 -6; commitid: 1444242b333ef7ea6; xorp/rtrmgr/module_manager.cc From pavlin@icir.org Fri Jun 17 22:15:14 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 17 Jun 2005 21:15:14 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506172115.j5HLFEtA083640@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-17 21:15:14 UTC XORP CVS repository Modified files: rtrmgr Makefile.am Makefile.in master_conf_tree_node.cc module_command.cc module_command.hh task.cc task.hh template_commands.cc template_commands.hh template_tree_node.cc template_tree_node.hh Added files: rtrmgr unexpanded_program.cc unexpanded_program.hh Log message: Implement a second mechanism for running a command inside the rtrmgr templates. Previously, "xrl" was the only supported mechanism. The new mechanism allows us to run an external program to perform an action. Below are three examples that illustrate its syntax: %create: program "/bin/sleep 10"; %create: program "/bin/echo -n '$(fea.FOO)' >> /tmp/foo"; %create: program "$(fea.foo-program) -> stdout=$(fea.FOO_STDOUT)&stderr=$(fea.FOO_STDERR)"; In the first example the program to execute is "/bin/sleep 10". In the second example, the "/bin/echo" program will append the value of variable "$(rtrmgr.FOO)" as defined in the rtrmgr internal state to file "/tmp/foo". In the third example, the program to execute is the value of the rtrmgr variable "$(fea.foo-program)". Its stdout and stderr output will be written to the internal rtrmgr variables "$(fea.FOO_STDOUT)" and "$(fea.FOO_STDERR)" respectively. Note that currently "$(fea.FOO_STDOUT)" and "$(fea.FOO_STDOUT)" must be defined as template variables/nodes without a type, and they are hidden to xorpsh. Revision Changes Path 1.51 +7 -1; commitid: 145ef42b339027ea6; xorp/rtrmgr/Makefile.am 1.63 +15 -11; commitid: 145ef42b339027ea6; xorp/rtrmgr/Makefile.in 1.11 +14 -14; commitid: 145ef42b339027ea6; xorp/rtrmgr/master_conf_tree_node.cc 1.32 +208 -99; commitid: 145ef42b339027ea6; xorp/rtrmgr/module_command.cc 1.22 +16 -9; commitid: 145ef42b339027ea6; xorp/rtrmgr/module_command.hh 1.48 +771 -65; commitid: 145ef42b339027ea6; xorp/rtrmgr/task.cc 1.31 +206 -22; commitid: 145ef42b339027ea6; xorp/rtrmgr/task.hh 1.51 +543 -51; commitid: 145ef42b339027ea6; xorp/rtrmgr/template_commands.cc 1.25 +44 -6; commitid: 145ef42b339027ea6; xorp/rtrmgr/template_commands.hh 1.38 +31 -1; commitid: 145ef42b339027ea6; xorp/rtrmgr/template_tree_node.cc 1.26 +3 -3; commitid: 145ef42b339027ea6; xorp/rtrmgr/template_tree_node.hh 1.1 +62 -0 xorp/rtrmgr/unexpanded_program.cc (new) 1.1 +55 -0 xorp/rtrmgr/unexpanded_program.hh (new) From pavlin@icir.org Sat Jun 18 02:14:58 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Sat, 18 Jun 2005 01:14:58 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506180114.j5I1EwxR089662@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-18 01:14:57 UTC XORP CVS repository Modified files: rtrmgr util.cc util.hh Log message: * Rename function find_exec_path_name() to find_executable_program_dir() and make it local to util.cc instead of global. * Add new global function find_executable_filename() that is based on the OpCommandList::find_executable_filename() implementation. * Add new global function find_executable_filename_and_arguments() Revision Changes Path 1.13 +111 -15; commitid: 15e0c42b3751a7ea6; xorp/rtrmgr/util.cc 1.8 +35 -15; commitid: 15e0c42b3751a7ea6; xorp/rtrmgr/util.hh From pavlin@icir.org Sat Jun 18 02:17:24 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Sat, 18 Jun 2005 01:17:24 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506180117.j5I1HOHt089793@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-18 01:17:24 UTC XORP CVS repository Modified files: rtrmgr op_commands.cc op_commands.hh op_commands.yy y.opcmd_tab.cc Log message: Remove the OpCommandList::find_executable_filename() method, and instead use the global find_executable_filename() function. Revision Changes Path 1.47 +1 -50; commitid: 15e9642b375c17ea6; xorp/rtrmgr/op_commands.cc 1.25 +1 -3; commitid: 15e9642b375c17ea6; xorp/rtrmgr/op_commands.hh 1.12 +7 -5; commitid: 15e9642b375c17ea6; xorp/rtrmgr/op_commands.yy 1.13 +9 -7; commitid: 15e9642b375c17ea6; xorp/rtrmgr/y.opcmd_tab.cc From pavlin@icir.org Sat Jun 18 02:19:21 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Sat, 18 Jun 2005 01:19:21 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506180119.j5I1JLBR089864@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-18 01:19:21 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: When executing a "program" command, expand the program name to the corresponding executable program name (e.g., relative to the XORP root or by considering the user PATH). Revision Changes Path 1.49 +69 -13; commitid: 15ee942b376407ea6; xorp/rtrmgr/task.cc From atanu@icir.org Sun Jun 19 00:17:34 2005 From: atanu@icir.org (Atanu Ghosh) Date: Sat, 18 Jun 2005 23:17:34 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness xorp/docs/test_harness Message-ID: <200506182317.j5INHYHS003904@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-18 23:17:34 UTC XORP CVS repository Modified files: bgp/harness peer.cc docs/test_harness test_harness.tex Log message: The argument "empty" an be used to an aspath to denote an empty aspath. Revision Changes Path 1.62 +3 -1; commitid: f1042b4ab8b7ea6; xorp/bgp/harness/peer.cc 1.30 +4 -2; commitid: f1042b4ab8b7ea6; xorp/docs/test_harness/test_harness.tex From pavlin@icir.org Mon Jun 20 04:32:10 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 03:32:10 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/docs/rtrmgr Message-ID: <200506200332.j5K3WASR019844@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 03:32:10 UTC XORP CVS repository Modified files: docs/rtrmgr rtrmgr.tex Log message: * Add new section 2.3 Template Tree Command Actions and describe inside this section the "xrl" and "program" actions. * Modify the rest of the document to reflect the fact that now an action can be either "xrl" or "program". Revision Changes Path 1.33 +238 -67; commitid: 4d6142b638717ea6; xorp/docs/rtrmgr/rtrmgr.tex From pavlin@icir.org Mon Jun 20 22:31:44 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 21:31:44 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <200506202131.j5KLViIg036394@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 21:31:43 UTC XORP CVS repository Modified files: libxorp c_format.cc Log message: Add XLOG_UNREACHABLE() at the end of do_c_format() function to pacify the gcc-4.0.0 compiler on MacOS X 10.4 Revision Changes Path 1.7 +5 -1; commitid: 8e0c42b7357c7ea6; xorp/libxorp/c_format.cc From pavlin@icir.org Mon Jun 20 22:37:49 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 21:37:49 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm Message-ID: <200506202137.j5KLbnRo036476@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 21:37:49 UTC XORP CVS repository Modified files: libcomm comm_sock.c Log message: Compilation bug fix: the last argument to getpeername() should be a pointer to socklen_t instead of pointer to int. [Problem found on MacOS X 10.4 with gcc-4.0.] Revision Changes Path 1.22 +3 -2; commitid: 8e4442b736457ea6; xorp/libcomm/comm_sock.c From pavlin@icir.org Mon Jun 20 22:44:26 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 21:44:26 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Message-ID: <200506202144.j5KLiQWm036591@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 21:44:26 UTC XORP CVS repository Modified files: libxipc xrl_parser.cc Log message: Replace: bool foo() { ... if (...) { ... return true; } else { return false; } } With: bool foo() { ... if (...) { ... return true; } return false; } This minor refactoring is needed to pacify the gcc-4.0 compiler on MacOS X 10.4 which complains with: "control reaches end of non-void function" Revision Changes Path 1.11 +2 -3; commitid: 8eaf42b737dc7ea6; xorp/libxipc/xrl_parser.cc From pavlin@icir.org Mon Jun 20 22:46:56 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 21:46:56 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/mrt Message-ID: <200506202146.j5KLkue2036655@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 21:46:56 UTC XORP CVS repository Modified files: mrt mrib_table.cc Log message: Compilation fix: replace ~0 with ~0U when initializing uint32_t values. Problem found on MacOS X 10.4 with gcc-4.0 compiler. Revision Changes Path 1.13 +5 -5; commitid: 8f1142b7391f7ea6; xorp/mrt/mrib_table.cc From pavlin@icir.org Mon Jun 20 23:05:16 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 22:05:16 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Message-ID: <200506202205.j5KM5GFj036839@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 22:05:16 UTC XORP CVS repository Modified files: cli cli_client.cc Log message: Compilation fix: replace ~0 with ~0U when initializing uint32_t value. Problem found on MacOS X 10.4 with gcc-4.0 compiler. Revision Changes Path 1.29 +2 -2; commitid: 8fba42b73d5c7ea6; xorp/cli/cli_client.cc From pavlin@icir.org Mon Jun 20 23:08:18 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 22:08:18 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/cli Message-ID: <200506202208.j5KM8I09036903@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 22:08:18 UTC XORP CVS repository Modified files: cli cli_node_net.cc Log message: Compilation fix: replace ~0 with ~0U when initializing uint32_t values. Problem found on MacOS X 10.4 with gcc-4.0 compiler. Revision Changes Path 1.36 +2 -2; commitid: 8ff442b73df57ea6; xorp/cli/cli_node_net.cc From pavlin@icir.org Mon Jun 20 23:44:55 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 22:44:55 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506202244.j5KMis01037244@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 22:44:54 UTC XORP CVS repository Modified files: fea mfea_mrouter.cc routing_socket_utils.cc Log message: Compilation fix: replace ~0 with ~0U when initializing uint32_t values. Problem found on MacOS X 10.4 with gcc-4.0 compiler. Revision Changes Path 1.31 +15 -15; commitid: 915c42b746ac7ea6; xorp/fea/mfea_mrouter.cc 1.27 +2 -2; commitid: 915c42b746ac7ea6; xorp/fea/routing_socket_utils.cc From pavlin@icir.org Mon Jun 20 23:45:52 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 22:45:52 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506202245.j5KMjqBQ037311@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 22:45:52 UTC XORP CVS repository Modified files: fea netlink_socket_utils.cc Log message: Compilation fix: replace ~0 with ~0U when initializing uint32_t values. Revision Changes Path 1.25 +2 -2; commitid: 91a642b7470e7ea6; xorp/fea/netlink_socket_utils.cc From pavlin@icir.org Tue Jun 21 00:53:11 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 20 Jun 2005 23:53:11 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rib Message-ID: <200506202353.j5KNrBuD037830@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-20 23:53:11 UTC XORP CVS repository Modified files: rib rt_tab_expect.cc Log message: Compilation fix. Replace: ExpectedRouteChange::ExpectedRouteChange with ExpectedRouteChange::ExpectedRouteChange Compilation problem found on MacOS X 10.4 with gcc-4.0 Revision Changes Path 1.13 +3 -3; commitid: 93ad42b7566a7ea6; xorp/rib/rt_tab_expect.cc From pavlin@icir.org Tue Jun 21 01:01:17 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 00:01:17 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506210001.j5L01H93037941@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-21 00:01:17 UTC XORP CVS repository Modified files: bgp route_table_nhlookup.cc Log message: Add XLOG_UNREACHABLE() at the end of a method that contains the following block: if (...) { ... return ...; } else { ... return ...; } This is needed to pacify the gcc-4.0 compiler on MacOS X 10.4 Revision Changes Path 1.17 +2 -1; commitid: 940042b758547ea6; xorp/bgp/route_table_nhlookup.cc From pavlin@icir.org Tue Jun 21 01:03:59 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 00:03:59 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp xorp/pim xorp/rip Message-ID: <200506210003.j5L03xBn038035@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-21 00:03:59 UTC XORP CVS repository Modified files: libxorp ipv4.cc pim pim_bsr.cc rip port.cc test_outputs.cc Log message: Compilation fix: replace ~0 with ~0U when initializing values. Problem found on MacOS X with gcc-4.0 compiler. Revision Changes Path 1.18 +2 -2; commitid: 944e42b7593c7ea6; xorp/libxorp/ipv4.cc 1.43 +2 -2; commitid: 944e42b7593c7ea6; xorp/pim/pim_bsr.cc 1.41 +3 -3; commitid: 944e42b7593c7ea6; xorp/rip/port.cc 1.19 +2 -2; commitid: 944e42b7593c7ea6; xorp/rip/test_outputs.cc From atanu@icir.org Tue Jun 21 01:10:58 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 21 Jun 2005 00:10:58 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Message-ID: <200506210010.j5L0Aw2l038202@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-21 00:10:58 UTC XORP CVS repository Modified files: bgp/harness test_routing1.sh Log message: New test, test7; on an I-BGP peering send an update with an empty aspath. Revision Changes Path 1.17 +52 -2; commitid: 951f42b75b117ea6; xorp/bgp/harness/test_routing1.sh From pavlin@icir.org Tue Jun 21 01:15:37 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 00:15:37 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506210015.j5L0FbFr038278@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-21 00:15:37 UTC XORP CVS repository Modified files: bgp test_plumbing.cc Log message: Compilation fix: cast the last NULL argument of execlp() to "char *". This casting is needed to pacify the gcc-4.0 compiler on MacOS X 10.4 Revision Changes Path 1.14 +2 -2; commitid: 955942b75bdf7ea6; xorp/bgp/test_plumbing.cc From atanu@icir.org Tue Jun 21 01:20:08 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 21 Jun 2005 00:20:08 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Message-ID: <200506210020.j5L0K82X038374@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-21 00:20:08 UTC XORP CVS repository Modified files: bgp/harness test_peering1.sh Log message: Two new tests (test31, test32), both send an update message with an empty aspath. Test32 triggers a failure in the BGP decision process. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=139 Revision Changes Path 1.32 +57 -3; commitid: 95c942b75d377ea6; xorp/bgp/harness/test_peering1.sh From atanu@icir.org Tue Jun 21 01:22:39 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 21 Jun 2005 00:22:39 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Message-ID: <200506210022.j5L0Md0Y038449@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-21 00:22:39 UTC XORP CVS repository Modified files: bgp/harness test_routing2.sh Log message: New test, test11, on two I-BGP peerings introduce the same update packet with an empty aspath, causes the BGP decision process to fail. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=139 Revision Changes Path 1.16 +64 -2; commitid: 961642b75dcf7ea6; xorp/bgp/harness/test_routing2.sh From bms@spc.org Tue Jun 21 12:28:05 2005 From: bms@spc.org (Bruce M Simpson) Date: Tue, 21 Jun 2005 12:28:05 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm In-Reply-To: <200506202137.j5KLbnRo036476@xorpc.icir.org> References: <200506202137.j5KLbnRo036476@xorpc.icir.org> Message-ID: <20050621112805.GA803@empiric.icir.org> On Mon, Jun 20, 2005 at 09:37:49PM +0000, Pavlin Radoslavov wrote: > Log message: > Compilation bug fix: the last argument to getpeername() > should be a pointer to socklen_t instead of pointer to int. > > [Problem found on MacOS X 10.4 with gcc-4.0.] This might need a conditional cast for Windows:- http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/send_2.asp From bms@spc.org Tue Jun 21 16:09:11 2005 From: bms@spc.org (Bruce M Simpson) Date: Tue, 21 Jun 2005 16:09:11 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp xorp/pim xorp/rip In-Reply-To: <200506210003.j5L03xBn038035@xorpc.icir.org> References: <200506210003.j5L03xBn038035@xorpc.icir.org> Message-ID: <20050621150911.GH803@empiric.icir.org> On Tue, Jun 21, 2005 at 12:03:59AM +0000, Pavlin Radoslavov wrote: > Modified files: > libxorp ipv4.cc > pim pim_bsr.cc > rip port.cc test_outputs.cc > > Log message: > Compilation fix: replace ~0 with ~0U when initializing values. > > Problem found on MacOS X with gcc-4.0 compiler. Breaks on FreeBSD 4.10-STABLE with gcc 2.95.4. Specifically the rip/port.cc change. Noticed when trying to build xorp_win after IFC picked up this change for build coverage on non-Windows platforms. BMS From pavlin@icir.org Tue Jun 21 19:11:09 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 18:11:09 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rip Message-ID: <200506211811.j5LIB9ZH074534@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-21 18:11:09 UTC XORP CVS repository Modified files: rip constants.hh port.cc Log message: Introduce a new constant RIP_MAX_COST (equal to 0xffff) and use it instead of assigning "~0U" to the uint16_t cost. This fixes a compilation error with gcc-2.95.4 on FreeBSD-4.10, because gcc-2.95.4 didn't like the implicit downcasting of ~0U to uint16_t. Bug found by: Atanu, Bruce M. Simpson Revision Changes Path 1.16 +7 -1; commitid: 11bfd42b8565d7ea6; xorp/rip/constants.hh 1.42 +3 -3; commitid: 11bfd42b8565d7ea6; xorp/rip/port.cc From bms@spc.org Tue Jun 21 19:15:49 2005 From: bms@spc.org (Bruce M Simpson) Date: Tue, 21 Jun 2005 19:15:49 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/libcomm In-Reply-To: <20050621112805.GA803@empiric.icir.org> References: <200506202137.j5KLbnRo036476@xorpc.icir.org> <20050621112805.GA803@empiric.icir.org> Message-ID: <20050621181549.GA814@empiric.icir.org> On Tue, Jun 21, 2005 at 12:28:05PM +0100, Bruce M Simpson wrote: > On Mon, Jun 20, 2005 at 09:37:49PM +0000, Pavlin Radoslavov wrote: > > Log message: > > Compilation bug fix: the last argument to getpeername() > > should be a pointer to socklen_t instead of pointer to int. > > > > [Problem found on MacOS X 10.4 with gcc-4.0.] > > This might need a conditional cast for Windows:- > http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/send_2.asp After integrating this change and rebuilding, it appears that no such conditional cast is currently required. BMS From pavlin@icir.org Tue Jun 21 19:52:08 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 11:52:08 -0700 Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp xorp/pim xorp/rip In-Reply-To: Message from Bruce M Simpson of "Tue, 21 Jun 2005 16:09:11 BST." <20050621150911.GH803@empiric.icir.org> Message-ID: <200506211852.j5LIq8VS074233@possum.icir.org> > On Tue, Jun 21, 2005 at 12:03:59AM +0000, Pavlin Radoslavov wrote: > > Modified files: > > libxorp ipv4.cc > > pim pim_bsr.cc > > rip port.cc test_outputs.cc > > > > Log message: > > Compilation fix: replace ~0 with ~0U when initializing values. > > > > Problem found on MacOS X with gcc-4.0 compiler. > > Breaks on FreeBSD 4.10-STABLE with gcc 2.95.4. > Specifically the rip/port.cc change. > > Noticed when trying to build xorp_win after IFC picked up this change > for build coverage on non-Windows platforms. Yep, last night Atanu also pointed that to me, but at that time we didn't want to fix it by explicit casting. Now the problem is fixed in CVS by introducing a new constant RIP_MAX_COST. Pavlin From pavlin@icir.org Tue Jun 21 21:33:46 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 21 Jun 2005 20:33:46 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506212033.j5LKXkGd076204@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-21 20:33:46 UTC XORP CVS repository Modified files: rtrmgr task.cc Log message: Nit: replace multiple empty spaces with tabs. Revision Changes Path 1.50 +13 -13; commitid: 1299242b879947ea6; xorp/rtrmgr/task.cc From pavlin@icir.org Thu Jun 23 19:29:59 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 23 Jun 2005 18:29:59 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxipc Message-ID: <200506231829.j5NITxdh027182@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-23 18:29:59 UTC XORP CVS repository Modified files: libxipc xrl_router.cc Log message: Replace XLOG_INFO(string(foo).c_str()) with XLOG_INFO("%s", string(foo).c_str()) The reason for the replacement is because if string(foo) contains some special characters that the printf() syntax interpretates in its own way, then the result is unpredictable. Revision Changes Path 1.48 +2 -2; commitid: 6a0b42baff1f7ea6; xorp/libxipc/xrl_router.cc From pavlin@icir.org Thu Jun 23 20:19:43 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 23 Jun 2005 19:19:43 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506231919.j5NJJhE1027640@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-23 19:19:43 UTC XORP CVS repository Modified files: fea mfea_proto_comm.cc Log message: Modify an XLOG_ERROR() message to print the size of the packet that failed transmission. Revision Changes Path 1.32 +5 -3; commitid: 6bdf42bb0b1b7ea6; xorp/fea/mfea_proto_comm.cc From pavlin@icir.org Thu Jun 23 23:47:33 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 23 Jun 2005 22:47:33 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506232247.j5NMlXFw030027@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-23 22:47:33 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: Fix ConfigTreeNode::expand_expression() and ConfigTreeNode::find_child_varname_node() so they can work even if we search from the root node. Revision Changes Path 1.65 +19 -4; commitid: 74e142bb3a3a7ea6; xorp/rtrmgr/conf_tree_node.cc From pavlin@icir.org Thu Jun 23 23:51:29 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Thu, 23 Jun 2005 22:51:29 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506232251.j5NMpTNe030126@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-23 22:51:29 UTC XORP CVS repository Modified files: rtrmgr xorpsh_main.cc Log message: Increase the lock configuration period from 30 to 60 seconds, because loading new configuration for example could take more than 30 seconds on a not-so-fast diskless machine with NFS. Revision Changes Path 1.40 +4 -4; commitid: 757b42bb3c7c7ea6; xorp/rtrmgr/xorpsh_main.cc From pavlin@icir.org Sat Jun 25 00:37:47 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Fri, 24 Jun 2005 23:37:47 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/pim Message-ID: <200506242337.j5ONblBj047850@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-24 23:37:47 UTC XORP CVS repository Modified files: pim pim_mrt_mfc.cc Log message: Print the size of a WHOLEPKT upcall packet received from the kernel. Revision Changes Path 1.29 +14 -9; commitid: bad142bc992a7ea6; xorp/pim/pim_mrt_mfc.cc From pavlin@icir.org Mon Jun 27 08:08:47 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 27 Jun 2005 07:08:47 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506270708.j5R78lqN087646@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-27 07:08:47 UTC XORP CVS repository Modified files: fea mfea_node.cc Log message: Fix the MfeaNode::add_pim_register_vif() implementation, so now all the addresses of the shadow vif are added to the PIM Register vif. This fixes a run-time startup problem for IPv6. Bug found by: Atanu Ghosh Revision Changes Path 1.54 +17 -13; commitid: 1562642bfa5a07ea6; xorp/fea/mfea_node.cc From atanu@icir.org Mon Jun 27 09:14:36 2005 From: atanu@icir.org (Atanu Ghosh) Date: Mon, 27 Jun 2005 08:14:36 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506270814.j5R8Ea5x008993@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-27 08:14:36 UTC XORP CVS repository Modified files: bgp route_table_nhlookup.cc Log message: 1) Add some more debugging. 2) Change assert -> XLOG_ASSERT. Revision Changes Path 1.18 +43 -11; commitid: 230642bfb56a7ea6; xorp/bgp/route_table_nhlookup.cc From pavlin@icir.org Mon Jun 27 09:38:07 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 27 Jun 2005 08:38:07 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/libxorp Message-ID: <200506270838.j5R8c7f7028752@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-27 08:38:07 UTC XORP CVS repository Modified files: libxorp run_command.cc run_command.hh test_run_command.cc Log message: Modify the RunCommand semantics so now if the executed command has any output on the stderr this does not automatically mean that the command has failed. The reason for the change is because commands like FreeBSD's fetch(1) and traceroute(8) print statistics to stderr even if the command didn't fail. Revision Changes Path 1.5 +21 -25; commitid: 6ba342bfba167ea6; xorp/libxorp/run_command.cc 1.4 +3 -2; commitid: 6ba342bfba167ea6; xorp/libxorp/run_command.hh 1.5 +2 -10; commitid: 6ba342bfba167ea6; xorp/libxorp/test_run_command.cc From pavlin@icir.org Mon Jun 27 18:05:15 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 27 Jun 2005 17:05:15 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506271705.j5RH5FPK060382@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-27 17:05:15 UTC XORP CVS repository Modified files: rtrmgr boot.ll boot.yy conf_tree.cc lex.boot.cc lex.tplt.cc template.ll template.yy template_tree.cc template_tree_node.cc template_tree_node.hh y.boot_tab.cc y.boot_tab.h y.tplt_tab.cc y.tplt_tab.h Log message: Add support to the boot and template parsers so now they can understand URLs. Currently, the only supported URLs are HTTP, FTP, FILE and TFTP. The implementation is based on the BNF-like specification from: - RFC-1738: HTTP, FTP, FILE - RFC-3617: TFTP - RFC-3986: update of RFC-1738 The corresponding new template types are "url_file", "url_ftp", "url_http" and "url_tftp". Revision Changes Path 1.19 +213 -42; commitid: eb2942c0308b7ea6; xorp/rtrmgr/boot.ll 1.11 +20 -0; commitid: eb2942c0308b7ea6; xorp/rtrmgr/boot.yy 1.27 +7 -1; commitid: eb2942c0308b7ea6; xorp/rtrmgr/conf_tree.cc 1.9 +7670 -1211; commitid: eb2942c0308b7ea6; xorp/rtrmgr/lex.boot.cc 1.9 +7246 -1381; commitid: eb2942c0308b7ea6; xorp/rtrmgr/lex.tplt.cc 1.13 +233 -42; commitid: eb2942c0308b7ea6; xorp/rtrmgr/template.ll 1.15 +28 -0; commitid: eb2942c0308b7ea6; xorp/rtrmgr/template.yy 1.28 +13 -1; commitid: eb2942c0308b7ea6; xorp/rtrmgr/template_tree.cc 1.39 +182 -1; commitid: eb2942c0308b7ea6; xorp/rtrmgr/template_tree_node.cc 1.27 +70 -2; commitid: eb2942c0308b7ea6; xorp/rtrmgr/template_tree_node.hh 1.12 +145 -83; commitid: eb2942c0308b7ea6; xorp/rtrmgr/y.boot_tab.cc 1.4 +7 -3; commitid: eb2942c0308b7ea6; xorp/rtrmgr/y.boot_tab.h 1.16 +231 -157; commitid: eb2942c0308b7ea6; xorp/rtrmgr/y.tplt_tab.cc 1.5 +21 -13; commitid: eb2942c0308b7ea6; xorp/rtrmgr/y.tplt_tab.h From pavlin@icir.org Mon Jun 27 18:48:14 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Mon, 27 Jun 2005 17:48:14 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506271748.j5RHmECP062111@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-27 17:48:14 UTC XORP CVS repository Modified files: fea mfea_node.cc Log message: Fix a bug that was introduced with the previous commit. Bug found by: Atanu Ghosh Revision Changes Path 1.55 +2 -2; commitid: f10442c03bc87ea6; xorp/fea/mfea_node.cc From atanu@icir.org Tue Jun 28 02:50:58 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 28 Jun 2005 01:50:58 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506280150.j5S1owhT082017@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-28 01:50:58 UTC XORP CVS repository Modified files: bgp rib_ipc_handler.cc Log message: Add some debugging to start packet; print if this is an "EBGP" or "IBGP" interaction. Revision Changes Path 1.65 +2 -2; commitid: 1404642c0ad007ea6; xorp/bgp/rib_ipc_handler.cc From atanu@icir.org Tue Jun 28 02:52:02 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 28 Jun 2005 01:52:02 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506280152.j5S1q2TZ082079@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-28 01:52:02 UTC XORP CVS repository Modified files: bgp route_table_nhlookup.cc Log message: More debugging. Revision Changes Path 1.19 +6 -1; commitid: 1408442c0ad417ea6; xorp/bgp/route_table_nhlookup.cc From atanu@icir.org Tue Jun 28 02:56:19 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 28 Jun 2005 01:56:19 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Message-ID: <200506280156.j5S1uJuN082256@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-28 01:56:19 UTC XORP CVS repository Modified files: bgp/harness test_routing1.sh Log message: New test (test8) demonstrates that BGP will attempt to delete a route from the EBGP table when it added it to the IBGP table. Revision Changes Path 1.18 +86 -2; commitid: 1413542c0ae427ea6; xorp/bgp/harness/test_routing1.sh From pavlin@icir.org Tue Jun 28 03:05:28 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 28 Jun 2005 02:05:28 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506280205.j5S25S55083784@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-28 02:05:27 UTC XORP CVS repository Modified files: rtrmgr conf_tree_node.cc Log message: Apply fixes to ConfigTreeNode::find_varname_node() and ConfigTreeNode::set_variable() so now they work even if we search for the node starting from the root node. Revision Changes Path 1.66 +14 -5; commitid: 1470942c0b01e7ea6; xorp/rtrmgr/conf_tree_node.cc From pavlin@icir.org Tue Jun 28 08:01:50 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 28 Jun 2005 07:01:50 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506280701.j5S71o0Z088588@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-28 07:01:50 UTC XORP CVS repository Modified files: rtrmgr boot.yy conf_tree.cc conf_tree.hh template_tree.cc template_tree.hh y.boot_tab.cc Log message: Propagate the node type when parsing the configuration, and use the node type to search a maching template node. Revision Changes Path 1.12 +16 -16; commitid: 1599042c0f5577ea6; xorp/rtrmgr/boot.yy 1.28 +21 -13; commitid: 1599042c0f5577ea6; xorp/rtrmgr/conf_tree.cc 1.19 +9 -7; commitid: 1599042c0f5577ea6; xorp/rtrmgr/conf_tree.hh 1.29 +58 -5; commitid: 1599042c0f5577ea6; xorp/rtrmgr/template_tree.cc 1.18 +2 -1; commitid: 1599042c0f5577ea6; xorp/rtrmgr/template_tree.hh 1.13 +16 -16; commitid: 1599042c0f5577ea6; xorp/rtrmgr/y.boot_tab.cc From mjh@icir.org Tue Jun 28 10:30:16 2005 From: mjh@icir.org (Mark Handley) Date: Tue, 28 Jun 2005 09:30:16 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506280930.j5S9UGUm091244@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-28 09:30:16 UTC XORP CVS repository Modified files: bgp peer_handler.cc peer_handler.hh peer_handler_debug.cc peer_handler_debug.hh rib_ipc_handler.cc rib_ipc_handler.hh route_table_ribout.cc test_ribout.cc test_ribout.reference Log message: Fix bug in RibOut/PeerHandler code, where we assumed all routes being pushed together came from the same origin peer. All routes being added do, but routes being deleted as part of a replace don't need to come from the same place. The upshot was that we'd sometimes delete or add to the wrong OriginTable in the RIB, and subsequently not be able to remove the route again. Bug found by: Atanu Revision Changes Path 1.39 +28 -20; commitid: 1641c42c118067ea6; xorp/bgp/peer_handler.cc 1.17 +14 -11; commitid: 1641c42c118067ea6; xorp/bgp/peer_handler.hh 1.10 +56 -24; commitid: 1641c42c118067ea6; xorp/bgp/peer_handler_debug.cc 1.6 +12 -11; commitid: 1641c42c118067ea6; xorp/bgp/peer_handler_debug.hh 1.66 +21 -16; commitid: 1641c42c118067ea6; xorp/bgp/rib_ipc_handler.cc 1.37 +13 -13; commitid: 1641c42c118067ea6; xorp/bgp/rib_ipc_handler.hh 1.28 +11 -6; commitid: 1641c42c118067ea6; xorp/bgp/route_table_ribout.cc 1.24 +39 -4; commitid: 1641c42c118067ea6; xorp/bgp/test_ribout.cc 1.5 +38 -14; commitid: 1641c42c118067ea6; xorp/bgp/test_ribout.reference From bms@spc.org Tue Jun 28 11:05:31 2005 From: bms@spc.org (Bruce M Simpson) Date: Tue, 28 Jun 2005 11:05:31 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp In-Reply-To: <200506280930.j5S9UGUm091244@xorpc.icir.org> References: <200506280930.j5S9UGUm091244@xorpc.icir.org> Message-ID: <20050628100531.GC48705@empiric.icir.org> On Tue, Jun 28, 2005 at 09:30:16AM +0000, Mark Handley wrote: > Log message: > Fix bug in RibOut/PeerHandler code, where we assumed all routes being > pushed together came from the same origin peer. All routes being > added do, but routes being deleted as part of a replace don't need to > come from the same place. The upshot was that we'd sometimes delete > or add to the wrong OriginTable in the RIB, and subsequently not be > able to remove the route again. Good catch, this one has been tripping us up for a while! Glad to see it bite the dust. BMS From M.Handley@cs.ucl.ac.uk Tue Jun 28 12:36:15 2005 From: M.Handley@cs.ucl.ac.uk (Mark Handley) Date: Tue, 28 Jun 2005 12:36:15 +0100 Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp In-Reply-To: Your message of "Tue, 28 Jun 2005 11:05:31 BST." <20050628100531.GC48705@empiric.icir.org> Message-ID: <21945.1119958575@aardvark.cs.ucl.ac.uk> >On Tue, Jun 28, 2005 at 09:30:16AM +0000, Mark Handley wrote: >> Log message: >> Fix bug in RibOut/PeerHandler code, where we assumed all routes being >> pushed together came from the same origin peer. All routes being >> added do, but routes being deleted as part of a replace don't need to >> come from the same place. The upshot was that we'd sometimes delete >> or add to the wrong OriginTable in the RIB, and subsequently not be >> able to remove the route again. > >Good catch, this one has been tripping us up for a while! Glad to see it >bite the dust. Not my catch - Atanu found the problem. All I did was fix my broken code. - Mark From atanu@icir.org Tue Jun 28 17:46:17 2005 From: atanu@icir.org (Atanu Ghosh) Date: Tue, 28 Jun 2005 16:46:17 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp/harness Message-ID: <200506281646.j5SGkHSO001703@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-28 16:46:16 UTC XORP CVS repository Modified files: bgp/harness test_routing1.sh Log message: Move test8 to the set of working tests, now that BGP deletes routes from the same table that it added them to. Revision Changes Path 1.19 +3 -3; commitid: 68c42c17ed77ea6; xorp/bgp/harness/test_routing1.sh From pavlin@icir.org Tue Jun 28 18:55:49 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 28 Jun 2005 17:55:49 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506281755.j5SHtn8k002913@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-28 17:55:49 UTC XORP CVS repository Modified files: rtrmgr template_tree.cc Log message: Modify TemplateTree::find_node_by_type() to relax a bit the template tree node type checking. Now if the type check failed, but if there is a matching template node type of type NODE_TEXT, then we accept this node. The upside of this is that we can use a single template node like "foo @: txt" that can be used with, say, IPv4 or IPv6 addresses, a host name, or any other text string. The downside is that we lose the strict type checking when our template tree contains such nodes. Requested by: Atanu Revision Changes Path 1.30 +22 -2; commitid: b0142c18d367ea6; xorp/rtrmgr/template_tree.cc From pavlin@icir.org Tue Jun 28 19:01:39 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 28 Jun 2005 18:01:39 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/etc/templates Message-ID: <200506281801.j5SI1dZ0003043@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-28 18:01:39 UTC XORP CVS repository Modified files: etc/templates bgp.tp Log message: Move the "import" and "export" nodes out of the block with the BGP help strings to the main block with the actions specifications. Revision Changes Path 1.40 +10 -11; commitid: bca42c190597ea6; xorp/etc/templates/bgp.tp From pavlin@icir.org Tue Jun 28 19:37:50 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Tue, 28 Jun 2005 18:37:50 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/fea Message-ID: <200506281837.j5SIbo6T012701@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-28 18:37:49 UTC XORP CVS repository Modified files: fea ifconfig_set_click.cc Log message: Select a better temporary file name by considering the TMPDIR environmental variable and the system-defiled P_tmpdir instead of using the hard-coded "/tmp" directory. Revision Changes Path 1.23 +36 -2; commitid: 318342c198b97ea6; xorp/fea/ifconfig_set_click.cc From mjh@icir.org Tue Jun 28 21:33:26 2005 From: mjh@icir.org (Mark Handley) Date: Tue, 28 Jun 2005 20:33:26 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506282033.j5SKXQx6021635@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-28 20:33:26 UTC XORP CVS repository Modified files: rtrmgr boot.ll boot.yy conf_tree.cc conf_tree.hh conf_tree_node.cc conf_tree_node.hh lex.boot.cc lex.opcmd.cc lex.tplt.cc template_tree.cc template_tree_node.cc template_tree_node.hh y.boot_tab.cc y.boot_tab.h y.opcmd_tab.cc y.tplt_tab.cc Log message: First stage of support for operators other than ":" in config files. Also make colon operator optional in config files (more like Juniper syntax) - colon is still permitted, but no longer mandatory on terminal nodes. This functionality isn't yet terribly useful, as you can't yet extract the operator, but I'm committing it because it appears to work, and to avoid more potential conflicts with Pavlin's changes. Revision Changes Path 1.20 +71 -0; commitid: 544242c1b35c7ea6; xorp/rtrmgr/boot.ll 1.13 +111 -15; commitid: 544242c1b35c7ea6; xorp/rtrmgr/boot.yy 1.29 +23 -16; commitid: 544242c1b35c7ea6; xorp/rtrmgr/conf_tree.cc 1.20 +8 -4; commitid: 544242c1b35c7ea6; xorp/rtrmgr/conf_tree.hh 1.67 +73 -3; commitid: 544242c1b35c7ea6; xorp/rtrmgr/conf_tree_node.cc 1.34 +21 -1; commitid: 544242c1b35c7ea6; xorp/rtrmgr/conf_tree_node.hh 1.10 +7541 -7283; commitid: 544242c1b35c7ea6; xorp/rtrmgr/lex.boot.cc 1.9 +11 -5; commitid: 544242c1b35c7ea6; xorp/rtrmgr/lex.opcmd.cc 1.10 +11 -5; commitid: 544242c1b35c7ea6; xorp/rtrmgr/lex.tplt.cc 1.31 +4 -1; commitid: 544242c1b35c7ea6; xorp/rtrmgr/template_tree.cc 1.40 +41 -1; commitid: 544242c1b35c7ea6; xorp/rtrmgr/template_tree_node.cc 1.28 +18 -2; commitid: 544242c1b35c7ea6; xorp/rtrmgr/template_tree_node.hh 1.14 +214 -93; commitid: 544242c1b35c7ea6; xorp/rtrmgr/y.boot_tab.cc 1.5 +4 -1; commitid: 544242c1b35c7ea6; xorp/rtrmgr/y.boot_tab.h 1.14 +10 -7; commitid: 544242c1b35c7ea6; xorp/rtrmgr/y.opcmd_tab.cc 1.17 +10 -7; commitid: 544242c1b35c7ea6; xorp/rtrmgr/y.tplt_tab.cc From mjh@icir.org Tue Jun 28 23:24:54 2005 From: mjh@icir.org (Mark Handley) Date: Tue, 28 Jun 2005 22:24:54 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506282224.j5SMOsqJ023940@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: mjh@xorpc.icir.org 2005-06-28 22:24:54 UTC XORP CVS repository Modified files: rtrmgr boot.ll lex.boot.cc lex.opcmd.cc lex.tplt.cc Log message: remove debugging Revision Changes Path 1.21 +0 -7; commitid: 5d6542c1ce067ea6; xorp/rtrmgr/boot.ll 1.11 +14 -21; commitid: 5d6542c1ce067ea6; xorp/rtrmgr/lex.boot.cc 1.10 +0 -0; commitid: 5d6542c1ce067ea6; xorp/rtrmgr/lex.opcmd.cc 1.11 +0 -0; commitid: 5d6542c1ce067ea6; xorp/rtrmgr/lex.tplt.cc From atanu@icir.org Wed Jun 29 01:52:29 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 00:52:29 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506290052.j5T0qT3r029821@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 00:52:28 UTC XORP CVS repository Modified files: bgp route_table_nhlookup.cc Log message: On a peering if a route existed with a unique nexthop and a replacement route arrived with the same unique nexthop, previously a de-registration would be sent to the RIB followed by a registration. Most importantly there was a window during which the nexthop was not resolvable. If the decision process performed a lookup on the peer during this window the lookup would have to return that the status of this nexthop was known as it had been known previously. Unfortunately if the decision process decided that this route was the winner it would attempt to get the IGP distance from the next hop resolver which did not have an answer. This caused an assert in the decision process, by the time a route reaches the decision process its status must be known. The current code no longer does the de-registration first. In the case that the nexthops are the same in both routes, re-ordering the de-registration/registration means there is no longer a window when the status of the nexthop is not known. In the case where the nexthops are different it is necessary to defer the de-registration until the new nexthop has been resolved. The problem was triggered by configuring four routers in a clique with E-BGP peerings. Then introducing a single route and withdrawing that route. Bug found by: Dario Vieira Revision Changes Path 1.20 +38 -6; commitid: 746242c1f0cb7ea6; xorp/bgp/route_table_nhlookup.cc From atanu@icir.org Wed Jun 29 19:04:43 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 18:04:43 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506291804.j5TI4hNS045462@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 18:04:43 UTC XORP CVS repository Modified files: bgp aspath.hh Log message: assert -> XLOG_ASSERT assert -> XLOG_FATAL Revision Changes Path 1.19 +3 -3; commitid: b17b42c2e2ba7ea6; xorp/bgp/aspath.hh From pavlin@icir.org Wed Jun 29 19:14:57 2005 From: pavlin@icir.org (Pavlin Radoslavov) Date: Wed, 29 Jun 2005 18:14:57 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/rtrmgr Message-ID: <200506291814.j5TIEvNh045818@xorpc.icir.org> CVSROOT: /usr/local/share/doc/apache/cvs Module name: xorp Changes by: pavlin@xorpc.icir.org 2005-06-29 18:14:57 UTC XORP CVS repository Modified files: rtrmgr lex.boot.cc lex.opcmd.cc lex.tplt.cc y.boot_tab.cc y.opcmd_tab.cc y.tplt_tab.cc Log message: Regenerate the autogenerated files on FreeBSD-4.10, because the previous version triggered compilation errors with gcc-3.3. Revision Changes Path 1.12 +5 -11; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/lex.boot.cc 1.11 +5 -11; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/lex.opcmd.cc 1.12 +5 -11; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/lex.tplt.cc 1.15 +7 -10; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/y.boot_tab.cc 1.15 +7 -10; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/y.opcmd_tab.cc 1.18 +7 -10; commitid: b2d742c2e4e07ea6; xorp/rtrmgr/y.tplt_tab.cc From atanu@icir.org Wed Jun 29 19:29:57 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 18:29:57 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506291829.j5TITvUS046112@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 18:29:57 UTC XORP CVS repository Modified files: bgp aspath.hh Log message: When making last change, forgot the xlog header file. Revision Changes Path 1.20 +2 -1; commitid: b40542c2e8a57ea6; xorp/bgp/aspath.hh From atanu@icir.org Wed Jun 29 20:07:46 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 19:07:46 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506291907.j5TJ7kKr046601@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 19:07:46 UTC XORP CVS repository Modified files: bgp test_nhlookup.reference Log message: The recent changes in nhlookup mean that the order of registration and de-registration have changed. Revision Changes Path 1.4 +9 -12; commitid: b5ee42c2f1817ea6; xorp/bgp/test_nhlookup.reference From atanu@icir.org Wed Jun 29 20:15:09 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 19:15:09 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506291915.j5TJF9DM046756@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 19:15:09 UTC XORP CVS repository Modified files: bgp aspath_test.cc Log message: Need to include the module name now aspath.hh uses XLOG_ functions. Revision Changes Path 1.12 +2 -1; commitid: b68942c2f33c7ea6; xorp/bgp/aspath_test.cc From atanu@icir.org Wed Jun 29 21:03:09 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 20:03:09 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness Message-ID: <200506292003.j5TK380O047388@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 20:03:08 UTC XORP CVS repository Modified files: bgp route_table_decision.cc bgp/harness test_peering1.sh test_routing2.sh Log message: Fixed the problem of empty aspaths, also enabled the relevant regression tests. Bugzilla URL: http://www.xorp.org/bugzilla/show_bug.cgi?id=139 Revision Changes Path 1.33 +4 -3; commitid: b8ea42c2fe7b7ea6; xorp/bgp/harness/test_peering1.sh 1.17 +4 -3; commitid: b8ea42c2fe7b7ea6; xorp/bgp/harness/test_routing2.sh 1.38 +7 -4; commitid: b8ea42c2fe7b7ea6; xorp/bgp/route_table_decision.cc From atanu@icir.org Wed Jun 29 21:06:15 2005 From: atanu@icir.org (Atanu Ghosh) Date: Wed, 29 Jun 2005 20:06:15 GMT Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp Message-ID: <200506292006.j5TK6FdI047490@xorpc.icir.org> CVSROOT: /usr/local/www/data/cvs Module name: xorp Changes by: atanu@xorpc.icir.org 2005-06-29 20:06:15 UTC XORP CVS repository Modified files: bgp route_table_nhlookup.cc Log message: When debugging is enabled the name of the caller is printed in replace_route, in regression tests the caller can be NULL, allow for this case. Revision Changes Path 1.21 +2 -2; commitid: b96742c2ff377ea6; xorp/bgp/route_table_nhlookup.cc